.woosuite-tax-toggle-button {
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: flex-end;
  margin-right: 10px;
  margin-top: 10px;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}
.woosuite-tax-toggle-button .switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 23px;
}
.woosuite-tax-toggle-button .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.woosuite-tax-toggle-button .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #008060;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.woosuite-tax-toggle-button .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.woosuite-tax-toggle-button input:checked + .slider {
  background-color: rgba(182, 5, 5, 0.631372549);
}
.woosuite-tax-toggle-button input:focus + .slider {
  box-shadow: 0 0 1px rgba(182, 5, 5, 0.631372549);
}
.woosuite-tax-toggle-button input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
.woosuite-tax-toggle-button .slider.round {
  border-radius: 34px;
}
.woosuite-tax-toggle-button .slider.round:before {
  border-radius: 50%;
}

#woosuite-tax-exemption-checkout-message {
  background-color: #f8f8f8;
  padding: 1.41575em;
  margin-bottom: 3.706325903em;
}

/* Absolute Center Spinner */
.woo-tax-loading {
  position: fixed;
  z-index: 999999;
  height: 2em;
  width: 2em;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.woo-tax-loading.hidden {
  display: none !important;
  visibility: hidden !important;
}

/* Transparent Overlay */
.woo-tax-loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, 0.2), rgba(0, 0, 0, 0.2));
  background: -webkit-radial-gradient(rgba(20, 20, 20, 0.2), rgba(0, 0, 0, 0.2));
}

/* :not(:required) hides these rules from IE9 and below */
.woo-tax-loading:not(:required) {
  /* hide "wooaio-loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.woo-tax-loading:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 128, 96, 0.75) 1.5em 0 0 0, rgba(0, 128, 96, 0.75) 1.1em 1.1em 0 0, rgba(0, 128, 96, 0.75) 0 1.5em 0 0, rgba(0, 128, 96, 0.75) -1.1em 1.1em 0 0, rgba(0, 128, 96, 0.75) -1.5em 0 0 0, rgba(0, 128, 96, 0.75) -1.1em -1.1em 0 0, rgba(0, 128, 96, 0.75) 0 -1.5em 0 0, rgba(0, 128, 96, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 128, 96, 0.75) 1.5em 0 0 0, rgba(0, 128, 96, 0.75) 1.1em 1.1em 0 0, rgba(0, 128, 96, 0.75) 0 1.5em 0 0, rgba(0, 128, 96, 0.75) -1.1em 1.1em 0 0, rgba(0, 128, 96, 0.75) -1.5em 0 0 0, rgba(0, 128, 96, 0.75) -1.1em -1.1em 0 0, rgba(0, 128, 96, 0.75) 0 -1.5em 0 0, rgba(0, 128, 96, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.wte-tax-validator-error {
  color: #ff6900;
  font-weight: bold;
}

.wte-tax-validator-success {
  color: #3FB28F;
  font-weight: bold;
}

#tax_number_field {
  position: relative;
}
#tax_number_field .hidden {
  display: none !important;
  visibility: hidden !important;
}
#tax_number_field .tax_validation_loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, 0.2), rgba(0, 0, 0, 0.2));
  background: -webkit-radial-gradient(rgba(20, 20, 20, 0.2), rgba(0, 0, 0, 0.2));
}
#tax_number_field .tax_validation_loader:after {
  content: "";
  display: block;
  font-size: 6px;
  width: 6px;
  height: 6px;
  margin: 30px auto;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 128, 96, 0.75) 1.5em 0 0 0, rgba(0, 128, 96, 0.75) 1.1em 1.1em 0 0, rgba(0, 128, 96, 0.75) 0 1.5em 0 0, rgba(0, 128, 96, 0.75) -1.1em 1.1em 0 0, rgba(0, 128, 96, 0.75) -1.5em 0 0 0, rgba(0, 128, 96, 0.75) -1.1em -1.1em 0 0, rgba(0, 128, 96, 0.75) 0 -1.5em 0 0, rgba(0, 128, 96, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 128, 96, 0.75) 1.5em 0 0 0, rgba(0, 128, 96, 0.75) 1.1em 1.1em 0 0, rgba(0, 128, 96, 0.75) 0 1.5em 0 0, rgba(0, 128, 96, 0.75) -1.1em 1.1em 0 0, rgba(0, 128, 96, 0.75) -1.5em 0 0 0, rgba(0, 128, 96, 0.75) -1.1em -1.1em 0 0, rgba(0, 128, 96, 0.75) 0 -1.5em 0 0, rgba(0, 128, 96, 0.75) 1.1em -1.1em 0 0;
}

.woosuite-tax-mode-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.woosuite-tax-mode-popup.is-visible {
  opacity: 1;
  z-index: 9999;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container {
  position: relative;
  width: 90%;
  max-width: 400px;
  top: 40%;
  margin: 0 auto;
  transform: translateY(-40%);
  background: #FFF;
  border-radius: 0.25em 0.25em 0.4em 0.4em;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container p {
  padding: 3em 1em 1em 1em;
  font-size: 1.2em;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-buttons {
  -webkit-font-smoothing: antialiased;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-buttons:after {
  content: "";
  display: table;
  clear: both;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-buttons li {
  float: left;
  width: 50%;
  list-style: none;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-buttons li:first-child span {
  background: #fc7169;
  border-radius: 0 0 0 0.25em;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-buttons li:first-child span:hover {
  background-color: #fc8982;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-buttons li:last-child span {
  background: #b6bece;
  border-radius: 0 0 0.25em 0;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-buttons li:last-child span:hover {
  background-color: #c5ccd8;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-buttons span {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
  cursor: pointer;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-popup-close::before, .woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-popup-close::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: #8f9cb5;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-popup-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container .woosuite-tax-mode-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 8px;
}
.woosuite-tax-mode-popup .woosuite-tax-mode-popup-container.is-visible .woosuite-tax-mode-popup-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

@media only screen and (min-width: 1170px) {
  .woosuite-tax-mode-popup-container {
    margin: 0 auto;
  }
}

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