/**
 * WooCommerce
 */
/**
 * Imports
 */
.stock:empty::before {
  display: none;
}
.stock.in-stock {
  color: #28a745;
}
.stock.out-of-stock {
  color: #bc2e3b;
}

.price del {
  opacity: 0.5;
}
.price del + ins {
  margin-left: 0.5em;
}

.required {
  border-bottom: 0 !important;
  color: #bc2e3b;
}

/**
 * General WooCommerce components
 */
.woocommerce-form__label-for-checkbox {
  cursor: pointer;
  display: block;
}
.woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox {
  margin-right: 0.5rem;
}

.form-row label {
  display: block;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
}
.form-row input[type=checkbox],
.form-row input[type=radio] {
  width: auto;
}
.form-row.create-account label {
  display: inline-block;
}

.form-row-last {
  margin-right: 0 !important;
}

.site-content > .col-full > .woocommerce > .woocommerce-message:first-child,
.site-content > .col-full > .woocommerce > .woocommerce-info:first-child,
.site-content > .col-full > .woocommerce > .woocommerce-error:first-child {
  margin-top: 15px;
}

.woocommerce-error {
  list-style: none;
}

.woocommerce-error {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0;
  color: #62181f;
  background-color: #f2d5d8;
  border-color: #ecc4c8;
}
.woocommerce-error hr {
  border-top-color: #e6b1b6;
}
.woocommerce-error .alert-link {
  color: #390e12;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.select2-container .select2-selection--single {
  height: calc(1.5em + 0.75rem + 2px) !important;
}
.select2-container .select2-selection--single .select2-selection__placeholder {
  color: #757575;
  line-height: calc(1.5em + 0.75rem);
}
.select2-container .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3px;
  width: 20px;
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  top: 50%;
  border-color: #343a40 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  width: 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: calc(1.5em + 0.75rem);
}

.select2-container .select2-selection--multiple {
  min-height: calc(1.5em + 0.75rem + 2px) !important;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container .select2-selection--multiple .select2-selection__choice {
  color: #343a40;
  border: 1px solid #bdc6d0;
  border-radius: 0;
  padding: 0;
  padding-right: 5px;
  cursor: pointer;
  float: left;
  margin-top: 0.3em;
  margin-right: 5px;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove {
  color: #bdc6d0;
  font-weight: bold;
  margin-left: 3px;
  margin-right: 1px;
  padding-right: 3px;
  padding-left: 3px;
  float: left;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #343a40;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #ced4da;
  border-radius: 0;
}

.select2-results__message {
  color: #ff681f;
}

.select2-container {
  display: block;
}
.select2-container *:focus {
  outline: 0;
}

.input-group .select2-container {
  flex-grow: 1;
}

.input-group-prepend ~ .select2-container .select2-selection {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .select2-container:not(:last-child) .select2-selection {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container .select2-selection {
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .select2-container .select2-selection {
    transition: none;
  }
}
.select2-container.select2-container--focus .select2-selection {
  border-color: #4d83d5;
  box-shadow: none;
}
.select2-container.select2-container--focus.select2-container--open .select2-selection {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container.select2-container--disabled .select2-selection, .select2-container.select2-container--disabled.select2-container--focus .select2-selection {
  background-color: #e9ecef;
  cursor: not-allowed;
  border-color: #ced4da;
  box-shadow: none;
}
.select2-container.select2-container--disabled .select2-search__field, .select2-container.select2-container--disabled.select2-container--focus .select2-search__field {
  background-color: transparent;
}
select.is-invalid ~ .select2-container .select2-selection, form.was-validated select:invalid ~ .select2-container .select2-selection {
  border-color: #bc2e3b;
}
select.is-valid ~ .select2-container .select2-selection, form.was-validated select:valid ~ .select2-container .select2-selection {
  border-color: #28a745;
}
.select2-container .select2-dropdown {
  border-color: #ced4da;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container .select2-dropdown.select2-dropdown--above {
  border-top: 1px solid #ced4da;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container .select2-dropdown .select2-results__option[aria-selected=true] {
  background-color: #e9ecef;
}
.select2-container .select2-results__option--highlighted,
.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true] {
  background-color: #1f4783;
  color: #f8f9fa;
}
.select2-container .select2-results__option[role=group] {
  padding: 0;
}
.select2-container .select2-results > .select2-results__options {
  max-height: 15em;
  overflow-y: auto;
}
.select2-container .select2-results__group {
  padding: 6px;
  display: list-item;
  color: #ff681f;
}
.select2-container .select2-selection__clear {
  width: 1.2em;
  height: 1.2em;
  line-height: 1.15em;
  padding-left: 0.3em;
  margin-top: 0.5em;
  border-radius: 100%;
  background-color: #ff681f;
  color: #f8f9fa;
  float: right;
  margin-right: 0.3em;
}
.select2-container .select2-selection__clear:hover {
  background-color: #343a40;
}

.star-rating .rating-stars {
  position: relative;
}
.star-rating .rating-stars .star-width {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  top: 0;
  right: 0;
  height: 100%;
}

.product-carousel .products:not(.flickity-enabled) {
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
}
.product-carousel .flickity-slider {
  display: flex;
}
.product-carousel .card-carousel-item {
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 20px;
  width: 100%;
  max-width: 320px;
  min-height: 100%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}
.ie-sucks .product-carousel .card-carousel-item {
  flex-direction: row;
}
.product-carousel .card-carousel-item .product {
  height: 100%;
  flex: 1 0 100%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.product-carousel .card-carousel-item .product .woocommerce-loop-product__link {
  position: relative;
}
.product-carousel .card-carousel-item .product .card-img-badge {
  position: absolute;
  top: 15px;
  left: 15px;
}
.product-carousel .card-carousel-item .product .card-body {
  display: flex;
  flex-direction: column;
}
.product-carousel .card-carousel-item .product .card-body .price {
  margin-bottom: 0.5rem;
}
.product-carousel .card-carousel-item .product .card-body > div:last-child {
  margin-top: auto;
}

@media (min-width: 576px) {
  .product-carousel .card-carousel-item {
    width: calc(80% - 100px - 30px);
    max-width: unset;
  }
}
@media (min-width: 768px) {
  .product-carousel .products:not(.flickity-enabled) {
    display: flex;
    flex-direction: row;
  }
  .product-carousel .card-carousel-item {
    width: calc(50% - 50px - 30px);
  }
}
@media (min-width: 992px) {
  .product-carousel .card-carousel-item {
    width: calc(33% - 33px - 30px);
  }
}
@media (min-width: 1200px) {
  .product-carousel .card-carousel-item {
    width: calc(25% - 25px - 30px);
  }
}
.fab-box {
  display: none;
  visibility: hidden;
}

.widget.woocommerce li .count {
  font-size: 1em;
  float: right;
}

.widget_layered_nav .fa-ul li,
.widget_product_categories .fa-ul li {
  margin-bottom: 0.5rem;
}
.widget_layered_nav li ul,
.widget_product_categories li ul {
  margin-top: 0.5rem;
}

.widget_price_filter .price_slider {
  margin-bottom: 1em;
}
.widget_price_filter .price_slider_amount {
  line-height: 2.4em;
}
.widget_price_filter .price_slider_amount .button {
  float: left;
}
.widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
}
.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  top: auto;
  z-index: 2;
  width: 1em;
  height: 1em;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  cursor: ew-resize;
  background: #1f4783;
  box-sizing: border-box;
  margin-top: -0.25em;
  opacity: 1;
  border: 0;
  margin-left: -0.7em;
}
.widget_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-right: -1em;
}
.widget_price_filter .ui-slider .ui-slider-handle:hover, .widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
  box-shadow: 0 0 0 0.236em rgba(0, 0, 0, 0.1);
}
.widget_price_filter .ui-slider .ui-slider-handle:focus, .widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
  outline: none;
}
.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background: #1f4783;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
}
.widget_price_filter .price_slider_wrapper .ui-widget-content {
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  background: rgba(0, 0, 0, 0.1);
  border: 0;
  margin: 0 1em 1em 1.5em;
}
.widget_price_filter .ui-slider-horizontal {
  height: 0.5em;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}

@media (max-width: 576px) {
  .archive-box .row {
    display: block;
  }
}
@media (max-width: 768px) {
  body.filter-open {
    position: fixed;
  }

  .archive-box {
    position: relative;
  }

  #archive_filters {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -110vw;
    bottom: 0;
    width: 100%;
    margin-top: 15px;
    z-index: 1100;
    overflow-y: scroll;
    transition: all 0.2s ease-in-out;
  }
  #archive_filters.active {
    left: 0;
  }

  .fab-box {
    display: block;
    visibility: visible;
    position: sticky;
    top: 15px;
    bottom: 0;
    width: 100%;
    z-index: 1101;
    pointer-events: none;
  }
  body.filter-open .fab-box {
    position: fixed;
  }

  .archive-filters-fab {
    float: right;
    width: 38px;
    height: 38px;
    line-height: 0;
    padding: 10px;
    margin-right: 15px;
    pointer-events: initial;
  }
  .archive-filters-fab svg {
    width: 16px;
    height: 16px;
  }
}
.pswp .pswp__bg {
  background-color: #fff;
}
.pswp .pswp__ui--fit .pswp__caption,
.pswp .pswp__ui--fit .pswp__top-bar {
  background-color: rgba(255, 255, 255, 0.3);
}
.pswp .pswp__caption__center,
.pswp .pswp__counter {
  color: #212529;
  text-align: center;
}
.pswp .pswp__button,
.pswp .pswp__ui--fit .pswp__button {
  color: #1f4783;
}
.pswp .pswp__button::before,
.pswp .pswp__ui--fit .pswp__button::before {
  display: block;
  content: "";
  width: 50%;
  height: 50%;
  transform: translate(50%);
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.pswp .pswp__button--close::before {
  background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3e%3cpath fill='%231f4783' d='M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z'/%3e%3c/svg%3e");
}
.pswp .pswp__button--share::before {
  background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3e%3cpath fill='%231f4783' d='M561.938 190.06L385.94 14.107C355.79-16.043 304 5.327 304 48.047v80.703C166.04 132.9 0 159.68 0 330.05c0 73.75 38.02 134.719 97.63 173.949 37.12 24.43 85.84-10.9 72.19-54.46C145.47 371.859 157.41 330.2 304 321.66v78.28c0 42.64 51.73 64.15 81.94 33.94l175.997-175.94c18.751-18.74 18.751-49.14.001-67.88zM352 400V272.09c-164.521 1.79-277.44 33.821-227.98 191.61C88 440 48 397.01 48 330.05c0-142.242 160.819-153.39 304-154.02V48l176 176-176 176z'/%3e%3c/svg%3e");
}
.pswp .pswp__button--fs::before {
  background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath fill='%231f4783' d='M0 212V88c0-13.3 10.7-24 24-24h124c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H48v100c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12zM352 76v24c0 6.6 5.4 12 12 12h100v100c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12V88c0-13.3-10.7-24-24-24H364c-6.6 0-12 5.4-12 12zm148 212h-24c-6.6 0-12 5.4-12 12v100H364c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24V300c0-6.6-5.4-12-12-12zM160 436v-24c0-6.6-5.4-12-12-12H48V300c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v124c0 13.3 10.7 24 24 24h124c6.6 0 12-5.4 12-12z'/%3e%3c/svg%3e");
}
.pswp.pswp--fs .pswp__button--fs::before {
  background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath fill='%231f4783' d='M500 224H376c-13.3 0-24-10.7-24-24V76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v100h100c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12zm-340-24V76c0-6.6-5.4-12-12-12h-24c-6.6 0-12 5.4-12 12v100H12c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 236V312c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v24c0 6.6 5.4 12 12 12h100v100c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12zm240 0V336h100c6.6 0 12-5.4 12-12v-24c0-6.6-5.4-12-12-12H376c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h24c6.6 0 12-5.4 12-12z'/%3e%3c/svg%3e");
}
.pswp .pswp__button--zoom::before {
  background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath fill='%231f4783' d='M312 196v24c0 6.6-5.4 12-12 12h-68v68c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-68h-68c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h68v-68c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v68h68c6.6 0 12 5.4 12 12zm196.5 289.9l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L347.5 387.1c-2.3-2.3-3.5-5.3-3.5-8.5v-13.2c-36.5 31.5-84 50.6-136 50.6C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 52-19.1 99.5-50.6 136h13.2c3.2 0 6.2 1.3 8.5 3.5l121.4 121.4c4.7 4.7 4.7 12.3 0 17zM368 208c0-88.4-71.6-160-160-160S48 119.6 48 208s71.6 160 160 160 160-71.6 160-160z'/%3e%3c/svg%3e");
}
.pswp.pswp--zoomed-in .pswp__button--zoom::before {
  background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath fill='%231f4783' d='M312 196v24c0 6.6-5.4 12-12 12H116c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h184c6.6 0 12 5.4 12 12zm196.5 289.9l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L347.5 387.1c-2.3-2.3-3.5-5.3-3.5-8.5v-13.2c-36.5 31.5-84 50.6-136 50.6C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 52-19.1 99.5-50.6 136h13.2c3.2 0 6.2 1.3 8.5 3.5l121.4 121.4c4.7 4.7 4.7 12.3 0 17zM368 208c0-88.4-71.6-160-160-160S48 119.6 48 208s71.6 160 160 160 160-71.6 160-160z'/%3e%3c/svg%3e");
}
.pswp .pswp__button--arrow--left::before {
  background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3e%3cpath fill='%231f4783' d='M238.475 475.535l7.071-7.07c4.686-4.686 4.686-12.284 0-16.971L50.053 256 245.546 60.506c4.686-4.686 4.686-12.284 0-16.971l-7.071-7.07c-4.686-4.686-12.284-4.686-16.97 0L10.454 247.515c-4.686 4.686-4.686 12.284 0 16.971l211.051 211.05c4.686 4.686 12.284 4.686 16.97-.001z'/%3e%3c/svg%3e");
}
.pswp .pswp__button--arrow--right::before {
  background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3e%3cpath fill='%231f4783' d='M17.525 36.465l-7.071 7.07c-4.686 4.686-4.686 12.284 0 16.971L205.947 256 10.454 451.494c-4.686 4.686-4.686 12.284 0 16.971l7.071 7.07c4.686 4.686 12.284 4.686 16.97 0l211.051-211.05c4.686-4.686 4.686-12.284 0-16.971L34.495 36.465c-4.686-4.687-12.284-4.687-16.97 0z'/%3e%3c/svg%3e");
}

.asp_theme-sorting {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.asp_theme-sorting .woocommerce-result-count {
  font-size: 0.875rem;
  line-height: calc(1.5em + 0.5rem + 2px);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .asp_theme-sorting {
    margin-bottom: 30px;
  }

  .woocommerce-ordering {
    margin-right: 1em;
  }

  .woocommerce-pagination {
    margin-left: auto;
  }
  .woocommerce-pagination .pagination {
    margin-bottom: 0;
  }
}
ul.products,
.wc-blocks-grid__products {
  margin-bottom: 0;
  padding-inline-start: 0;
}
ul.products li.product,
ul.products .wc-blocks-grid__product,
.wc-blocks-grid__products li.product,
.wc-blocks-grid__products .wc-blocks-grid__product {
  list-style: none;
  margin-bottom: 100px;
}
ul.products li.product a,
ul.products .wc-blocks-grid__product a,
.wc-blocks-grid__products li.product a,
.wc-blocks-grid__products .wc-blocks-grid__product a {
  text-decoration: none;
}
ul.products li.product .woocommerce-LoopProduct-link,
ul.products .wc-blocks-grid__product .woocommerce-LoopProduct-link,
.wc-blocks-grid__products li.product .woocommerce-LoopProduct-link,
.wc-blocks-grid__products .wc-blocks-grid__product .woocommerce-LoopProduct-link {
  display: block;
}
ul.products li.product .price,
ul.products .wc-blocks-grid__product .price,
.wc-blocks-grid__products li.product .price,
.wc-blocks-grid__products .wc-blocks-grid__product .price {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
ul.products li.product img,
ul.products .wc-blocks-grid__product img,
.wc-blocks-grid__products li.product img,
.wc-blocks-grid__products .wc-blocks-grid__product img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
  margin-bottom: 15px;
}
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .wc-block-grid__product-title,
ul.products .wc-blocks-grid__product .woocommerce-loop-product__title,
ul.products .wc-blocks-grid__product .wc-block-grid__product-title,
.wc-blocks-grid__products li.product .woocommerce-loop-product__title,
.wc-blocks-grid__products li.product .wc-block-grid__product-title,
.wc-blocks-grid__products .wc-blocks-grid__product .woocommerce-loop-product__title,
.wc-blocks-grid__products .wc-blocks-grid__product .wc-block-grid__product-title {
  font-size: 1.75rem;
}
@media (max-width: 1200px) {
  ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .wc-block-grid__product-title,
ul.products .wc-blocks-grid__product .woocommerce-loop-product__title,
ul.products .wc-blocks-grid__product .wc-block-grid__product-title,
.wc-blocks-grid__products li.product .woocommerce-loop-product__title,
.wc-blocks-grid__products li.product .wc-block-grid__product-title,
.wc-blocks-grid__products .wc-blocks-grid__product .woocommerce-loop-product__title,
.wc-blocks-grid__products .wc-blocks-grid__product .wc-block-grid__product-title {
    font-size: calc(1.3rem + 0.6vw);
  }
}
ul.products li.product .button,
ul.products .wc-blocks-grid__product .button,
.wc-blocks-grid__products li.product .button,
.wc-blocks-grid__products .wc-blocks-grid__product .button {
  white-space: nowrap;
}
ul.products li.product.product-category .woocommerce-loop-category__title,
ul.products li.product.product-category .woocommerce-loop-product__title,
ul.products .wc-blocks-grid__product.product-category .woocommerce-loop-category__title,
ul.products .wc-blocks-grid__product.product-category .woocommerce-loop-product__title,
.wc-blocks-grid__products li.product.product-category .woocommerce-loop-category__title,
.wc-blocks-grid__products li.product.product-category .woocommerce-loop-product__title,
.wc-blocks-grid__products .wc-blocks-grid__product.product-category .woocommerce-loop-category__title,
.wc-blocks-grid__products .wc-blocks-grid__product.product-category .woocommerce-loop-product__title {
  font-size: 1.5rem;
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 7.5px;
}
@media (max-width: 1200px) {
  ul.products li.product.product-category .woocommerce-loop-category__title,
ul.products li.product.product-category .woocommerce-loop-product__title,
ul.products .wc-blocks-grid__product.product-category .woocommerce-loop-category__title,
ul.products .wc-blocks-grid__product.product-category .woocommerce-loop-product__title,
.wc-blocks-grid__products li.product.product-category .woocommerce-loop-category__title,
.wc-blocks-grid__products li.product.product-category .woocommerce-loop-product__title,
.wc-blocks-grid__products .wc-blocks-grid__product.product-category .woocommerce-loop-category__title,
.wc-blocks-grid__products .wc-blocks-grid__product.product-category .woocommerce-loop-product__title {
    font-size: calc(1.275rem + 0.3vw);
  }
}
ul.products li.product.product-category img,
ul.products .wc-blocks-grid__product.product-category img,
.wc-blocks-grid__products li.product.product-category img,
.wc-blocks-grid__products .wc-blocks-grid__product.product-category img {
  margin-bottom: 0.5rem;
}

.shop-loop-badges {
  margin-bottom: 0.5rem;
}

/**
 * Single Product
 */
.single-product .pswp__button {
  background-color: transparent;
}
.single-product .pswp__caption__center {
  text-align: center;
}
.single-product div.product .woocommerce-product-gallery {
  position: relative;
}
.single-product div.product .woocommerce-product-gallery .zoomImg {
  background-color: #fff;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 15px;
  left: 15px;
  display: block;
  font-size: 1.5rem;
  padding: 0.5rem;
  line-height: 0;
  z-index: 99;
  text-align: center;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger::before {
  content: " ";
  display: block;
  height: 24px;
  width: 24px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M319.8 204v8c0 6.6-5.4 12-12 12h-84v84c0 6.6-5.4 12-12 12h-8c-6.6 0-12-5.4-12-12v-84h-84c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h84v-84c0-6.6 5.4-12 12-12h8c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12zm188.5 293L497 508.3c-4.7 4.7-12.3 4.7-17 0l-129-129c-2.3-2.3-3.5-5.3-3.5-8.5v-8.5C310.6 395.7 261.7 416 208 416 93.8 416 1.5 324.9 0 210.7-1.5 93.7 93.7-1.5 210.7 0 324.9 1.5 416 93.8 416 208c0 53.7-20.3 102.6-53.7 139.5h8.5c3.2 0 6.2 1.3 8.5 3.5l129 129c4.7 4.7 4.7 12.3 0 17zM384 208c0-97.3-78.7-176-176-176S32 110.7 32 208s78.7 176 176 176 176-78.7 176-176z"/></svg>') no-repeat center center/contain;
}
.single-product div.product .woocommerce-product-gallery img {
  margin: 0;
}
.single-product div.product .woocommerce-product-gallery .flex-viewport {
  margin-bottom: 30px;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  padding: 0;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
  flex: 0 0 20%;
  max-width: 20%;
  padding-right: 5px;
  padding-left: 5px;
  margin-bottom: 10px;
  list-style: none;
  cursor: pointer;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%;
  opacity: 0.5;
  transition: all, ease, 0.2s;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
  opacity: 1;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a img {
  width: 100%;
}
.single-product div.product .images .woocommerce-main-image {
  margin-bottom: 0.5rem;
  display: block;
}
.single-product div.product .images .thumbnails a.zoom {
  display: block;
  width: 22.05%;
  margin-right: 3.8%;
  float: left;
  margin-bottom: 1em;
}
.single-product div.product .images .thumbnails a.zoom.last {
  margin-right: 0;
}
.single-product div.product .images .thumbnails a.zoom.first {
  clear: both;
}
.single-product div.product form.cart .table {
  margin-bottom: 0;
}
.single-product div.product p.price {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #6c757d;
}
.single-product div.product .product_meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #6c757d;
  font-weight: bold;
}
.single-product div.product .product_meta .meta-item {
  display: block;
  border-bottom: 0.5rem;
}
.single-product div.product .product_meta .meta-item:last-child {
  border-bottom: 0;
}
.single-product div.product .product_meta .meta-item a {
  color: #1f4783;
}
.single-product div.product .product_meta .meta-item a:hover {
  text-decoration: none;
}
.single-product div.product .product_meta .meta-term {
  color: #343a40;
  display: inline-block;
  margin-right: 0.5rem;
}
.single-product table.variations {
  width: 100%;
}
.single-product table.variations td {
  padding-bottom: 1rem;
}
.single-product table.variations .label {
  width: 40%;
  line-height: calc(1.5em + .75rem + 2px);
  vertical-align: top;
}
.single-product table.variations .value {
  width: 60%;
}
.single-product table.variations a.reset_variations {
  margin-top: 1rem;
  float: right;
}
.single-product #product_nav_bar a {
  color: #fff;
  text-decoration: underline;
}
.single-product #product_nav_bar a:hover {
  color: #e9ecef;
}
.single-product .stars a {
  color: transparent;
  position: relative;
  width: 1.3rem;
  display: inline-block;
}
.single-product .stars a:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%231f4783' d='M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}
.single-product .stars a.active ~ a:before, .single-product .stars a:hover ~ a:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%231f4783' d='M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z'/%3E%3C/svg%3E");
}
.single-product #product_accordion .card {
  box-shadow: none;
  border-right: none;
  border-left: none;
  border-color: #1f4783;
}
.single-product #product_accordion .card-header {
  border-color: #1f4783;
  background-color: #fff;
  padding: 0;
}
.single-product #product_accordion .card-header button {
  padding-right: 0;
  padding-left: 0;
}
.single-product #product_accordion .card-header button .expand-icon {
  transition: transform 0.3s ease-in-out;
}
.single-product #product_accordion .card-header button.collapsed .expand-icon {
  transform: rotate(180deg);
}

table.order_details th:last-child,
table.order_details td:last-child {
  text-align: right;
}

table.cart .product-thumbnail {
  width: calc(100px + 30px);
}
table.cart .product-thumbnail img {
  max-width: 100px;
}
table.cart .product-info {
  width: calc(100% - 100px - 30px);
}
table.cart .product-info .qty {
  display: block;
  width: unset;
}
table.cart .product-subtotal {
  font-weight: bold;
}

.cart_totals th {
  vertical-align: top;
  padding-bottom: 0.5rem;
}
.cart_totals .shipping-title {
  padding-bottom: 0.5rem;
}
.cart_totals .shipping-freight-note {
  padding-left: 40px;
}
.cart_totals .shipping-method-description {
  color: #6c757d;
  font-size: 80%;
}
.cart_totals .woocommerce-shipping-destination {
  padding-left: 40px;
}
.cart_totals .woocommerce-shipping-calculator {
  padding-left: 40px;
}
.cart_totals .woocommerce-shipping-calculator .shipping-calculator-form {
  margin-top: 1rem;
}
.cart_totals .woocommerce-shipping-calculator .form-row {
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.cart_totals .woocommerce-shipping-calculator .select2-selection {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.cart_totals .woocommerce-shipping-calculator .select2-selection .select2-selection__rendered,
.cart_totals .woocommerce-shipping-calculator .select2-selection .select2-selection__placeholder {
  line-height: 1.5;
  padding-left: 0;
}

#shipping_method {
  list-style: none;
}

.wc-block-grid__product-add-to-cart .added_to_cart.wc-forward,
.add-to-cart-area .added_to_cart.wc-forward {
  display: none;
}

.ajax_add_to_cart.added::after, .ajax_add_to_cart.loading::after {
  display: none !important;
}
.ajax_add_to_cart.loading {
  position: relative;
  border-color: #6c757d;
}
.ajax_add_to_cart.loading::before {
  content: "Processing";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.375rem 0.75rem;
  background-color: #6c757d;
}

@media (max-width: 575.98px) {
  table.cart tr {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  table.cart tr:not(:last-child)::after {
    content: "";
    position: relative;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    width: calc(100% - 30px);
    background-color: #dee2e6;
    z-index: 1;
  }
  table.cart td {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    border-top: none;
  }
  table.cart .product-thumbnail {
    padding-bottom: 0;
  }
  table.cart .product-info {
    padding-bottom: 0;
  }
  table.cart .product-info .qty {
    width: 100%;
  }
  table.cart .product-price {
    font-size: 0.875rem;
    color: #6c757d;
  }
  table.cart .product-subtotal {
    padding-top: 0;
    width: 100%;
  }
}
@media (min-width: 576px) {
  table.cart td:not(.actions):first-child {
    padding-left: 0;
  }
  table.cart td:not(.actions):last-child {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  table.cart .product-thumbnail {
    width: calc(150px + 0.75rem);
  }
}
.site-header-cart {
  position: relative;
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1rem;
  padding-left: 0;
  display: block;
  outline: none;
}
.site-header-cart .cart-contents {
  padding: 1.5rem 0;
  display: block;
  position: relative;
  background-color: transparent;
  height: auto;
  width: auto;
  text-indent: 0;
  line-height: 1.5;
}
.site-header-cart .cart-contents .amount {
  margin-right: 0.5rem;
}
.site-header-cart .cart-contents .count {
  color: #6c757d;
}
.site-header-cart .cart-contents .cart-icon {
  display: inline-block;
  vertical-align: baseline;
  height: 1.5rem;
  float: right;
}
.site-header-cart:hover .widget_shopping_cart, .site-header-cart:focus .widget_shopping_cart {
  left: 0;
  display: block;
}
.site-header-cart:hover .widget_shopping_cart .product_list_widget, .site-header-cart:focus .widget_shopping_cart .product_list_widget {
  max-height: 15em;
  overflow-y: auto;
}

.widget_shopping_cart {
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 999999;
  left: 0;
  display: none;
  background: #f8f9fa;
  overflow-y: auto;
  max-height: calc(100vh - 4.5rem);
}
.widget_shopping_cart .total {
  padding: 1rem 0;
  margin: 0;
  text-align: center;
  border-bottom: 1px solid #dee2e6;
  text-transform: uppercase;
}
.widget_shopping_cart .buttons {
  padding: 0.5rem;
  margin: 0;
}
.widget_shopping_cart .buttons .btn {
  display: block;
}
.widget_shopping_cart .buttons .btn:not(:first-child) {
  margin-top: 0.5rem;
}

.woocommerce-mini-cart {
  list-style: none;
  padding-left: 0;
}
.woocommerce-mini-cart .mini_cart_item {
  padding: 1rem 0 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
}
.woocommerce-mini-cart .mini_cart_item .remove {
  display: inline-block;
  float: left;
  font-size: 1rem;
  line-height: 2rem;
  margin-right: 1rem;
}
.woocommerce-mini-cart .mini_cart_item .product_title {
  display: block;
  font-size: 0.9rem;
}
.woocommerce-mini-cart .mini_cart_item .product_title .title-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.woocommerce-mini-cart .mini_cart_item .product_title img {
  float: right;
  width: 4rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
  object-fit: scale-down;
}
/**
 * Checkout
 *
 * 1 - Required to make the blockUI overlay cover the entire page rather than just the checkout form. We do this because
 *     otherwise our sticky order review can break out of the checkout form (and the blockUI element).
 */
form.checkout {
  position: static !important;
  /* 1 */
}
form.checkout .form-row {
  display: block;
  margin-left: 0;
  margin-right: 0;
}
form.checkout > .blockUI {
  position: fixed !important;
  /* 1 */
}

#payment .payment_methods li {
  margin-left: 0;
  position: relative;
}
#payment .payment_methods li img {
  max-height: 1.5rem;
  margin-left: 1rem;
  display: inline;
}
#payment .payment_methods li p {
  margin: 0;
}
#payment .payment_methods li .payment_box fieldset {
  padding-top: 1rem;
}
#payment .payment_methods li .payment_box fieldset .form-row {
  margin-bottom: 1em;
}
#payment .payment_methods li .payment_box fieldset .form-row input[type=checkbox] {
  margin-right: 5px;
}
#payment .payment_methods li .payment_box fieldset .help {
  width: 75%;
  float: right;
}
#payment .payment_methods li .payment_box .woocommerce-SavedPaymentMethods {
  padding-top: 1em;
  margin: 0;
}
#payment .payment_methods li .payment_box .woocommerce-SavedPaymentMethods li {
  margin-top: 0.25rem;
}
#payment .payment_methods li .payment_box .woocommerce-SavedPaymentMethods li input[type=radio] {
  margin-right: 0.236em;
}
#payment .payment_methods li .payment_box ul.wc-saved-payment-methods {
  margin-left: 0;
}
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number {
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 31px 20px;
  background-image: url("../../assets/images/credit-cards/unknown.svg");
}
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.visa {
  background-image: url("../../assets/images/credit-cards/visa.svg");
}
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.mastercard {
  background-image: url("../../assets/images/credit-cards/mastercard.svg");
}
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.laser {
  background-image: url("../../assets/images/credit-cards/laser.svg");
}
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.dinersclub {
  background-image: url("../../assets/images/credit-cards/diners.svg");
}
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.maestro {
  background-image: url("../../assets/images/credit-cards/maestro.svg");
}
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.jcb {
  background-image: url("../../assets/images/credit-cards/jcb.svg");
}
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.amex {
  background-image: url("../../assets/images/credit-cards/amex.svg");
}
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.discover {
  background-image: url("../../assets/images/credit-cards/discover.svg");
}

.woocommerce-checkout-review-order-table {
  margin-bottom: 30px;
}
.woocommerce-checkout-review-order-table thead tr:last-child th,
.woocommerce-checkout-review-order-table thead tr:last-child td,
.woocommerce-checkout-review-order-table tbody tr:last-child th,
.woocommerce-checkout-review-order-table tbody tr:last-child td {
  padding-bottom: 1rem;
}
.woocommerce-checkout-review-order-table tfoot tr:not(:last-child) th,
.woocommerce-checkout-review-order-table tfoot tr:not(:last-child) td {
  padding-bottom: 1rem;
}
.woocommerce-checkout-review-order-table .product-name {
  width: 100%;
}
.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout-review-order-table .order-total td,
.woocommerce-checkout-review-order-table .tax-total td {
  text-align: right;
  width: 150px;
}
.woocommerce-checkout-review-order-table .shipping-method-description {
  font-size: 80%;
  color: #6c757d;
}

@media (min-width: 768px) {
  /**
   * Checkout
   */
  #ship-to-different-address {
    position: relative;
  }
  #ship-to-different-address label {
    font-weight: 300;
  }
  #ship-to-different-address .woocommerce-form__input-checkbox {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: 0;
  }
}
.login-register-separator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}
.login-register-separator .separator-text::before, .login-register-separator .separator-text::after {
  content: "";
  width: 1px;
  background: #ced4da;
  height: 40%;
  position: absolute;
  left: 50%;
}
.login-register-separator .separator-text::before {
  top: 0;
}
.login-register-separator .separator-text::after {
  bottom: 0;
}

.woocommerce-input-wrapper {
  display: block;
  width: 100%;
}

/* As seen on /my-account/lost-password/. This is the weak password check. */
.password-input {
  display: block;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  width: 100%;
}
.woocommerce-password-strength.strong {
  color: #28a745;
}
.woocommerce-password-strength.short {
  color: #bc2e3b;
}
.woocommerce-password-strength.bad {
  color: #bc2e3b;
}
.woocommerce-password-strength.good {
  color: #138598;
}

.wc-block-handpicked-products .wc-block-grid__products {
  justify-content: center;
}

.wapf-wrapper {
  margin-left: 0 !important;
}
.wapf-wrapper .wapf-field-group, .wapf-wrapper .wapf-section {
  display: block;
}
.wapf-wrapper .wapf-field-container {
  width: auto !important;
  display: block;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  margin-bottom: 1rem;
}
.wapf-wrapper .wapf-field-container .wapf-field-label,
.wapf-wrapper .wapf-field-container .wapf-field-input,
.wapf-wrapper .wapf-field-container .wapf-field-description {
  position: relative;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}
.wapf-wrapper .wapf-field-container .wapf-field-label {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.wapf-wrapper .wapf-field-container .wapf-field-label label {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .wapf-wrapper .wapf-field-container .wapf-field-label {
    padding-top: 2em;
  }
}
.wapf-wrapper .wapf-field-label.wapf--above {
  margin-bottom: 0;
}
.wapf-wrapper .wapf-field-description {
  color: #6c757d;
  font-size: 80%;
  opacity: initial;
  display: block;
  margin-top: 0.25rem;
  padding-top: 0;
}
.wapf-wrapper .wapf-pricing-hint {
  color: #6c757d;
  opacity: 1;
}
.wapf-wrapper .wapf-ttp {
  background-color: #000 !important;
  color: #fff !important;
  padding: 0.25rem 0.5rem;
  border-radius: 0;
  font-size: 0.875rem;
  z-index: 1070;
}
.wapf-wrapper .wapf-ttp::after {
  border-top-color: #000;
}

@media (min-width: 576px) {
  .wapf-wrapper .wapf-field-container:not(.not-inline) {
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
  }
  .wapf-wrapper .wapf-field-container:not(.not-inline) .wapf-field-label,
.wapf-wrapper .wapf-field-container:not(.not-inline) .wapf-field-input,
.wapf-wrapper .wapf-field-container:not(.not-inline) .wapf-field-description {
    padding-right: 15px;
    padding-left: 15px;
    max-width: 100%;
  }
  .wapf-wrapper .wapf-field-container:not(.not-inline) .wapf-field-label {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .wapf-wrapper .wapf-field-container:not(.not-inline) .wapf-field-input,
.wapf-wrapper .wapf-field-container:not(.not-inline) .wapf-field-description {
    flex: 0 0 60%;
    max-width: 100%;
  }
  .wapf-wrapper .wapf-field-container:not(.not-inline).wapf-field-file .wapf-field-input {
    flex: 0 0 calc(60% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
}
input.wapf-input,
textarea.wapf-input {
  display: block;
  width: 1em;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #e9ecef;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  input.wapf-input,
textarea.wapf-input {
    transition: none;
  }
}
input.wapf-input::-ms-expand,
textarea.wapf-input::-ms-expand {
  background-color: transparent;
  border: 0;
}
input.wapf-input:-moz-focusring,
textarea.wapf-input:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
input.wapf-input:focus,
textarea.wapf-input:focus {
  color: #495057;
  background-color: #e9ecef;
  border-color: #4d83d5;
  outline: 0;
  box-shadow: none;
}
input.wapf-input::placeholder,
textarea.wapf-input::placeholder {
  color: #6c757d;
  opacity: 1;
}
input.wapf-input:disabled, input.wapf-input[readonly],
textarea.wapf-input:disabled,
textarea.wapf-input[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

textarea.wapf-input {
  height: auto;
}

select.wapf-input {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #e9ecef url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0;
  appearance: none;
}
select.wapf-input:focus {
  border-color: #4d83d5;
  outline: 0;
}
select.wapf-input:focus::-ms-value {
  color: #495057;
  background-color: #e9ecef;
}
select.wapf-input[multiple], select.wapf-input[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
select.wapf-input:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
select.wapf-input::-ms-expand {
  display: none;
}
select.wapf-input:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.wapf-field-true-false {
  position: relative;
}
.wapf-field-true-false .wapf-field-label.wapf--above label {
  margin-bottom: 0;
}
.wapf-field-true-false .wapf-field-input {
  top: 0;
  left: 0;
}

.wapf-wrapper .wapf-field-container.wapf-field-true-false .wapf-field-label.wapf--above {
  padding: 0 0 0 1.5rem;
}
.wapf-wrapper .wapf-field-container.wapf-field-true-false .wapf-field-input {
  position: absolute;
}

@media (min-width: 576px) {
  .wapf-wrapper .wapf-field-container.wapf-field-true-false:not(.not-inline) .wapf-field-label.wapf--above {
    padding-left: 15px;
  }
  .wapf-wrapper .wapf-field-container.wapf-field-true-false:not(.not-inline) .wapf-field-input {
    position: relative;
  }
}
.wapf-field-true-false .wapf-label-text,
.wapf-field-checkboxes .wapf-label-text,
.wapf-field-radio .wapf-label-text {
  padding-left: 0;
}
.wapf-field-true-false .wapf-custom,
.wapf-field-checkboxes .wapf-custom,
.wapf-field-radio .wapf-custom {
  display: none;
}

.wapf-custom {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.wapf-custom::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #e9ecef;
  border: #adb5bd solid 1px;
}
.wapf-custom::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.wapf-field-color-swatch .wapf-swatch--color,
.wapf-field-multi-color-swatch .wapf-swatch--color {
  color: #1f4783 !important;
  width: 38px !important;
  height: 38px !important;
}
.wapf-field-color-swatch .wapf-swatch--color:hover .wapf-ttp,
.wapf-field-multi-color-swatch .wapf-swatch--color:hover .wapf-ttp {
  opacity: 0.9;
}
.wapf-field-color-swatch .wapf-swatch--color.wapf--rounded,
.wapf-field-multi-color-swatch .wapf-swatch--color.wapf--rounded {
  border-radius: 0;
}

.wapf-field-image-swatch .wapf-swatch--image,
.wapf-field-multi-image-swatch .wapf-swatch--image {
  border: 2px solid #dee2e6;
  border-radius: 0;
}
.wapf-field-image-swatch .wapf-swatch--image:hover:not(.wapf-checked),
.wapf-field-multi-image-swatch .wapf-swatch--image:hover:not(.wapf-checked) {
  border: 2px solid #adb5bd;
}
.wapf-field-image-swatch .wapf-swatch--image .wapf-swatch-label,
.wapf-field-multi-image-swatch .wapf-swatch--image .wapf-swatch-label {
  color: #1f4783;
  font-size: 80%;
}
.wapf-field-image-swatch .wapf-swatch--image.wapf-checked,
.wapf-field-multi-image-swatch .wapf-swatch--image.wapf-checked {
  border: 2px solid #1f4783;
}

.wapf-field-text-swatch .wapf-swatch--text,
.wapf-field-multi-text-swatch .wapf-swatch--text {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #1f4783;
  border-color: #1f4783;
}
@media (prefers-reduced-motion: reduce) {
  .wapf-field-text-swatch .wapf-swatch--text,
.wapf-field-multi-text-swatch .wapf-swatch--text {
    transition: none;
  }
}
.wapf-field-text-swatch .wapf-swatch--text:hover,
.wapf-field-multi-text-swatch .wapf-swatch--text:hover {
  color: #fff;
  background-color: #1f4783;
  border-color: #1f4783;
}
.wapf-field-text-swatch .wapf-swatch--text:focus, .wapf-field-text-swatch .wapf-swatch--text.focus,
.wapf-field-multi-text-swatch .wapf-swatch--text:focus,
.wapf-field-multi-text-swatch .wapf-swatch--text.focus {
  box-shadow: 0 0 0 0 rgba(31, 71, 131, 0.5);
}
.wapf-field-text-swatch .wapf-swatch--text.disabled, .wapf-field-text-swatch .wapf-swatch--text:disabled,
.wapf-field-multi-text-swatch .wapf-swatch--text.disabled,
.wapf-field-multi-text-swatch .wapf-swatch--text:disabled {
  color: #1f4783;
  background-color: transparent;
}
.wapf-field-text-swatch .wapf-swatch--text:not(:disabled):not(.disabled):active, .wapf-field-text-swatch .wapf-swatch--text:not(:disabled):not(.disabled).active, .show > .wapf-field-text-swatch .wapf-swatch--text.dropdown-toggle,
.wapf-field-multi-text-swatch .wapf-swatch--text:not(:disabled):not(.disabled):active,
.wapf-field-multi-text-swatch .wapf-swatch--text:not(:disabled):not(.disabled).active,
.show > .wapf-field-multi-text-swatch .wapf-swatch--text.dropdown-toggle {
  color: #fff;
  background-color: #1f4783;
  border-color: #1f4783;
}
.wapf-field-text-swatch .wapf-swatch--text:not(:disabled):not(.disabled):active:focus, .wapf-field-text-swatch .wapf-swatch--text:not(:disabled):not(.disabled).active:focus, .show > .wapf-field-text-swatch .wapf-swatch--text.dropdown-toggle:focus,
.wapf-field-multi-text-swatch .wapf-swatch--text:not(:disabled):not(.disabled):active:focus,
.wapf-field-multi-text-swatch .wapf-swatch--text:not(:disabled):not(.disabled).active:focus,
.show > .wapf-field-multi-text-swatch .wapf-swatch--text.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(31, 71, 131, 0.5);
}
.wapf-field-text-swatch .wapf-swatch--text:hover,
.wapf-field-multi-text-swatch .wapf-swatch--text:hover {
  text-decoration: none;
}
.wapf-field-text-swatch .wapf-swatch--text:focus,
.wapf-field-multi-text-swatch .wapf-swatch--text:focus {
  outline: 0;
}
.wapf-field-text-swatch .wapf-swatch--text:disabled,
.wapf-field-multi-text-swatch .wapf-swatch--text:disabled {
  opacity: 0.65;
}
.wapf-field-text-swatch .wapf-swatch--text.wapf-checked, .wapf-field-text-swatch .wapf-swatch--text:hover,
.wapf-field-multi-text-swatch .wapf-swatch--text.wapf-checked,
.wapf-field-multi-text-swatch .wapf-swatch--text:hover {
  border-color: #1f4783;
  background: #1f4783;
}
.wapf-field-text-swatch .wapf-swatch--text.wapf-checked .wapf-pricing-hint, .wapf-field-text-swatch .wapf-swatch--text:hover .wapf-pricing-hint,
.wapf-field-multi-text-swatch .wapf-swatch--text.wapf-checked .wapf-pricing-hint,
.wapf-field-multi-text-swatch .wapf-swatch--text:hover .wapf-pricing-hint {
  color: #dee2e6;
}

.wapf-field-file .wapf-field-input {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
  cursor: pointer;
}
.wapf-field-file .wapf-field-input:hover .wapf-psudo-label::after {
  background-color: #183664;
}
.wapf-field-file .wapf-field-input .wapf-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.wapf-field-file .wapf-field-input .wapf-input:focus ~ .wapf-psudo-label {
  border-color: #4d83d5;
  box-shadow: none;
}
.wapf-field-file .wapf-field-input .wapf-input[disabled] ~ .wapf-psudo-label, .wapf-field-file .wapf-field-input .wapf-input:disabled ~ .wapf-psudo-label {
  background-color: #e9ecef;
}
.wapf-field-file .wapf-field-input .wapf-psudo-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0;
  cursor: pointer;
}
.wapf-field-file .wapf-field-input .wapf-psudo-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #fff;
  content: "Browse";
  background-color: #1f4783;
  border-left: inherit;
  border-radius: 0 0 0 0;
}

/*# sourceMappingURL=woocommerce.css.map */
