@keyframes bounceDown {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(6px);
  }
  57% {
    transform: scale(1, 1) translateY(-2px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes bounce2 {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateX(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateX(2px);
  }
  57% {
    transform: scale(1, 1) translateX(-2px);
  }
  64% {
    transform: scale(1, 1) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
/* Fonts */
.tax-calculator {
  padding: 64px 0;
  background: #F1F5F9;
}
.tax-calculator__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.tax-calculator__head {
  flex: 0 0 100%;
  width: 100%;
  text-align: center;
}
.tax-calculator__title {
  font-size: 32px;
  line-height: 48px;
  margin-bottom: 8px;
}
.tax-calculator__box {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #FFF;
  border-radius: 32px;
  padding: 40px;
}
.tax-calculator__box .box {
  flex: 0 0 100%;
  width: 100%;
  max-width: calc(50% - 12px);
  border: 1px solid #D0D6DD;
  border-radius: 16px;
}
.tax-calculator__box .box.highlight {
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.05), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.tax-calculator__box .box__header {
  padding: 16px 24px;
  background: #edf0f2;
  border-bottom: 1px solid #D0D6DD;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.tax-calculator__box .box__title {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.tax-calculator__box .box__body {
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.tax-calculator__box .box__form {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.tax-calculator__box .box__row {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 12px;
}
.tax-calculator__box .box__row.action {
  padding-top: 24px;
  justify-content: flex-end;
  gap: 16px;
}
.tax-calculator__box .box__row.action .btn {
  padding: 8px 16px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: 6px;
}
.tax-calculator__box .box__row.copy {
  padding-bottom: 16px;
}
.tax-calculator__box .box__row.copy .box__field {
  max-width: 248px;
  position: relative;
}
.tax-calculator__box .box__row.copy .box__field .box__alert {
  font-size: 12px;
  line-height: 16px;
  color: #3C914D;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  position: absolute;
  bottom: -18px;
  left: 0;
  display: none;
}
.tax-calculator__box .box__row .notification {
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  line-height: 24px;
  color: #232933;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.tax-calculator__box .box__row .notification .icon {
  flex: 0 0 24px;
  width: 24px;
}
.tax-calculator__box .box__row .notification .message {
  flex: 0 0 calc(100% - 36px);
  width: calc(100% - 36px);
}
.tax-calculator__box .box__row .notification.warning {
  background: #FBF3DD;
}
.tax-calculator__box .box__row .notification.info {
  background: #EAECFB;
}
.tax-calculator__box .box__row .notification a {
  color: #4B61DD;
  text-decoration: underline;
}
.tax-calculator__box .box__row .notification a:hover {
  text-decoration: none;
}
.tax-calculator__box .box__copy {
  display: inline-flex;
  cursor: pointer;
}
.tax-calculator__box .box__field {
  flex: 0 0 100%;
  width: 100%;
  max-width: 284px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tax-calculator__box .box__field .select.bootstrap-select > .dropdown-toggle {
  font-size: 14px;
  line-height: 20px;
  padding: 8px 12px;
  border: 1px solid #D0D6DD;
  border-radius: 6px;
}
.tax-calculator__box .box__field .form-check {
  display: inline-flex;
}
.tax-calculator__box .box__field .form-check .form-check-label {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.tax-calculator__box .box__field .form-check .form-check-label .form-check-input {
  width: 18px;
  height: 18px;
  border: 1px solid #D0D6DD;
  border-radius: 50%;
  background-color: #FFF;
}
.tax-calculator__box .box__field .form-check .form-check-label .form-check-input:checked {
  border-color: #4B61DD;
  background-color: #4B61DD;
}
.tax-calculator__box .box__field .form-control {
  border: 1px solid #D0D6DD;
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding: 8px 12px;
}
.tax-calculator__box .box__field .form-control::disabled {
  background: #EDF0F2;
  color: #8B95A5;
}
.tax-calculator__box .box__field.currency {
  position: relative;
}
.tax-calculator__box .box__field.currency::before {
  content: "Rp";
  width: auto;
  height: auto;
  position: absolute;
  z-index: 2;
  left: 4px;
  top: 4px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  padding: 6px;
  border-radius: 4px 0 0 4px;
  background: #EDF0F2;
  mix-blend-mode: multiply;
  width: 32px;
  height: 32px;
  text-align: center;
}
.tax-calculator__box .box__field.currency .form-control {
  padding: 8px 12px 8px 44px;
  text-align: right;
}
.tax-calculator__box .box__field.percentage {
  position: relative;
}
.tax-calculator__box .box__field.percentage::after {
  content: "%";
  width: auto;
  height: auto;
  position: absolute;
  z-index: 2;
  right: 4px;
  top: 4px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  padding: 6px;
  border-radius: 0 4px 4px 0;
  background: #EDF0F2;
  mix-blend-mode: multiply;
  width: 32px;
  height: 32px;
  text-align: center;
}
.tax-calculator__box .box__field.percentage .form-control {
  padding: 8px 44px 8px 12px;
}
.tax-calculator__box .box__mark {
  flex: 0 0 100%;
  width: 100%;
  max-width: 4px;
}
.tax-calculator__box .box__label {
  flex: 0 0 100%;
  width: 100%;
  max-width: calc(100% - 288px - 24px);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .tax-calculator__box .box__field {
    max-width: 100%;
  }
  .tax-calculator__box .box__label {
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .tax-calculator__box .box__row.copy .box__field {
    max-width: calc(100% - 36px);
  }
}
@media (max-width: 1024px) {
  .tax-calculator__box .box {
    max-width: 100%;
  }
  .tax-calculator__box .box__body {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .tax-calculator__box .box__field {
    max-width: 284px;
  }
  .tax-calculator__box .box__label {
    max-width: calc(100% - 288px - 24px);
  }
  .tax-calculator__box .box__row.copy .box__field {
    max-width: 248px;
  }
}
@media (max-width: 991px) {
  .tax-calculator {
    padding: 32px 0;
  }
}
@media (max-width: 560px) {
  .tax-calculator__box {
    padding: 16px;
  }
  .tax-calculator__box .box__field {
    max-width: 100%;
  }
  .tax-calculator__box .box__label {
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .tax-calculator__box .box__row.copy .box__field {
    max-width: calc(100% - 36px);
  }
  .tax-calculator__box .box__row.action .btn {
    width: -moz-max-content;
    width: max-content;
  }
}/*# sourceMappingURL=tax-calculator.css.map */