.vat-option {
  padding: 14px 24px 8px;
  border-radius: 10px;
  position: relative;
}

.vat-option::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 25px;
  background: #fff;
  border-bottom-left-radius: 32px 16px;
  border-bottom-right-radius: 32px 16px;
  z-index: 2;
}

.vat-option__title {
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
}

.vat-option__group {
  display: flex;
  align-items: flex-start;
  margin: 0;
}

body .vat-option__group-checkbox {
  margin-right: 10px;
  margin-top: 2px;
  min-height: inherit !important;
}

.vat-option__group-details {
  font-size: 14px;
  line-height: 1.37;
}

.vat-option__group-details a {
  text-decoration: underline;
  color: inherit;
}

.vat-option__error-message {
  color: #f00;
  padding: 0.5rem 0;
  display: block;
  font-size: 14px;
}

.shake {
  animation: shake .8s ease-in-out;
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(+2px, 0, 0); }
  30%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(+4px, 0, 0); }
  50% { transform: translate3d(-4px, 0, 0); }
}

.hide {
  display: none !important;
}

.vat-exemption-popup {
  max-width: 700px;
  min-width: 428px;
  width: 45%;
}
.vat-exemption-popup-content {
  padding: 28px 20px;
  overflow-y: auto;
  max-height: 64vh;
  text-align: start;
  font-size: 16px;
}

.disabled_checkout_btn {
  cursor: pointer;
}