@charset "UTF-8";
.ccb-loader {
  border: 6px solid #d2d8e5;
  border-radius: 50%;
  border-top: 6px solid #00b163;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto !important;
  text-align: center;
}
.ccb-loader.front {
  left: 40%;
  position: relative;
  border: 6px solid #fff;
  border-top: 6px solid #00b163;
}

@media screen and (max-width: 800px) {
  .ccb-loader {
    left: 40%;
  }
}
@media screen and (max-width: 540px) {
  .ccb-loader {
    left: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.calc-stripe-wrapper {
  background-color: #ffffff;
}

.calc-two-checkout-wrapper {
  display: flex;
  background: transparent;
  gap: 10px;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
}
.calc-two-checkout-wrapper .calc-payment-details {
  overflow: hidden;
  display: flex;
  position: relative;
  transform: translateX(40px);
  align-items: center;
  transition: all 200ms ease-in-out;
  column-gap: 6px;
}
.calc-two-checkout-wrapper .calc-payment-details.show-card {
  transform: translateX(0);
}
.calc-two-checkout-wrapper .calc-payment-input {
  position: relative;
  overflow: hidden;
}
.calc-two-checkout-wrapper .calc-payment-input .calc-payment-image-wrapper {
  position: relative;
  z-index: 111;
  width: 34px;
  display: flex;
}
.calc-two-checkout-wrapper .calc-payment-input input {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  font-size: 14px !important;
  min-height: unset !important;
  transition: all 200ms ease-in-out;
  position: relative;
}
.calc-two-checkout-wrapper .calc-payment-input.ccb-two-checkout-month-and-year {
  width: 55px;
}
.calc-two-checkout-wrapper .calc-payment-input.ccb-two-checkout-cvv {
  width: 30px;
  margin-right: 5px;
}
.calc-two-checkout-wrapper .calc-payment-input.ccb-two-checkout-zip-code {
  max-width: 30px;
  text-align: right;
}
.calc-two-checkout-wrapper .calc-payment-input.ccb-two-checkout-card {
  width: 50%;
  display: flex;
  gap: 5px;
}
.calc-two-checkout-wrapper .calc-payment-input.ccb-two-checkout-card.show-zip input {
  right: 0;
}

.calc-payments .calc-radio-wrapper {
  flex-wrap: wrap;
}
.calc-payments .calc-radio-wrapper label {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  width: 100%;
  border-radius: 6px;
  background: #EEF1F7;
  border-radius: 6px;
  padding: 0 17px !important;
}
.calc-payments .calc-radio-wrapper label > div {
  width: 100%;
  padding: 15px 0 !important;
}
.calc-payments .calc-radio-wrapper label > div.calc-payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.calc-payments .calc-radio-wrapper label > div.calc-payment-header .calc-payment-header--label {
  display: flex;
  align-items: center;
  width: 100%;
}
.calc-payments .calc-radio-wrapper label > div.calc-payment-header .calc-payment-header--label .calc-radio-label {
  color: #001931;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 300px;
  height: 17px;
}
.calc-payments .calc-radio-wrapper label > div.calc-payment-header img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-40%);
}
.calc-payments .calc-radio-wrapper label > div.calc-payment-body {
  display: flex;
  width: 100%;
  border-top: 1px solid #D5DAE4;
  min-height: 20px;
}
.calc-payments .calc-radio-wrapper label > div.calc-payment-body .ccb-payment-description {
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  text-indent: 1px;
}
.calc-payments .calc-radio-wrapper label .calc-radio-label {
  white-space: nowrap;
}

.calc-payments-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.ccb-btn-wrap {
  min-height: 50px;
  position: relative;
  text-transform: uppercase;
}
.ccb-btn-wrap.ccb-finish {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.ccb-btn-wrap.ccb-finish button {
  padding: 13px 20px;
}
.ccb-btn-wrap.ccb-finish.pdf-enable .ccb-btn-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ccb-btn-wrap.ccb-finish.pdf-enable .ccb-btn-container button {
  width: 48.5%;
}
.ccb-btn-wrap.ccb-finish.pdf-enable .ccb-btn-container button:last-child {
  width: 100%;
  margin-top: 10px !important;
}
.ccb-btn-wrap button {
  transition: opacity 0.2s linear, background-color 0.2s linear;
}
.ccb-btn-wrap button.disabled {
  opacity: 0.7;
  pointer-events: none;
}
.ccb-btn-wrap button:hover {
  text-decoration: none;
  background-color: #047b47 !important;
}
.ccb-btn-wrap button:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.calc-container.horizontal .ccb-finish .calc-buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 540px) {
  .calc-container.horizontal .ccb-finish .calc-buttons {
    justify-content: space-between;
  }
}
.calc-container.horizontal .ccb-finish .calc-buttons button {
  width: fit-content;
}
@media (max-width: 540px) {
  .calc-container.horizontal .ccb-finish .calc-buttons button {
    width: 48.5% !important;
  }
}
.calc-container.horizontal .ccb-finish .calc-buttons button:last-child {
  margin-left: 10px !important;
  width: fit-content;
  margin-top: 0 !important;
}
@media (max-width: 540px) {
  .calc-container.horizontal .ccb-finish .calc-buttons button:last-child {
    width: 100% !important;
    margin-left: 0px !important;
    margin-top: 10px !important;
  }
}

.ccb-payment-info {
  width: 100%;
  display: none;
  margin: 15px 0 !important;
  border-radius: 6px;
  text-align: center;
}
.ccb-payment-info p {
  color: #000;
  padding: 30px;
  font-size: 15px;
}
.ccb-payment-info.danger {
  display: block !important;
  background: rgba(255, 87, 87, 0.3);
}
.ccb-payment-info.success {
  display: block !important;
  background: rgba(0, 177, 97, 0.3);
}

.ccb-form-payments {
  margin-top: 10px;
}
.ccb-form-payments.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.ccb-form-payments.disabled button, .ccb-form-payments.disabled label, .ccb-form-payments.disabled textarea {
  cursor: not-allowed;
  pointer-events: none;
}
.ccb-form-payments.disabled input, .ccb-form-payments.disabled input[readonly] {
  cursor: not-allowed;
  pointer-events: none;
}
.ccb-form-payments .ccb-btn-wrap .ccb-loader.front {
  left: 0;
}

.ccb-pro-feature-header {
  color: #001931;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#text-width {
  font-size: 13px !important;
  position: absolute;
  left: -300px;
  z-index: -1111;
}

.calc-default-form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.calc-default-form .require-fields::before {
  content: "*";
  color: red;
}
.calc-default-form .ccb-error-message,
.calc-default-form .ccb-thanks-message {
  color: green;
  text-align: center;
}
.calc-default-form .ccb-error-message {
  color: #de5f5f;
}

.ccb-btn-wrap {
  margin-top: 10px;
}

.ccb-btn-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.ccb-btn-container button:first-child {
  margin-right: 10px !important;
}
@media (max-width: 540px) {
  .ccb-btn-container button:first-child {
    margin-right: 0px !important;
  }
}
.ccb-btn-container.invoice-button button:first-child {
  margin-right: 0 !important;
}

.two_column .ccb-btn-container {
  flex-direction: column;
}
.two_column .ccb-btn-container button {
  width: 100%;
}
.two_column .ccb-btn-container button:first-child {
  margin-right: 0px !important;
}

.calc-form-wrapper label {
  display: block;
}
.calc-form-wrapper textarea {
  padding: 15px 18px;
}
.calc-form-wrapper .ccb-cf-wrap input,
.calc-form-wrapper .ccb-cf-wrap textarea {
  width: 100%;
  height: auto;
}
.calc-form-wrapper .ccb-cf-wrap .calc-item .calc-radio .calc-radio-item {
  display: flex;
  align-items: center;
}
.calc-form-wrapper .ccb-cf-wrap .calc-item .calc-radio .calc-radio-item label.payment {
  margin: 0;
}
.calc-form-wrapper .ccb-cf-wrap .ccb-terms-wrapper {
  margin-top: 0.5rem;
}
.calc-form-wrapper .ccb-cf-wrap .ccb-terms-wrapper .default-terms {
  bottom: 30px;
  right: 0;
  z-index: 99;
}
.calc-form-wrapper .ccb-cf-wrap .requiredterms {
  box-sizing: border-box;
  outline: 1px solid #D94141;
}
.calc-form-wrapper .ccb-cf-wrap .requiredterms label::before {
  border-color: #D94141 !important;
}
.calc-form-wrapper .ccb-cf-wrap .ccb-terms {
  display: flex;
}
.calc-form-wrapper .ccb-cf-wrap .ccb-terms .ccb-terms-text {
  vertical-align: middle;
  text-transform: none;
}
.calc-form-wrapper .ccb-cf-wrap .ccb-terms .ccb-terms-check {
  padding-top: 1px;
  margin-right: 0.5rem;
  text-transform: none;
  white-space: nowrap;
}
.calc-form-wrapper .ccb-cf-wrap .ccb-terms .calc-terms-link {
  margin-left: 0.3rem;
  margin-bottom: 1px;
  text-decoration: none;
}
.calc-form-wrapper .ccb-cf-wrap p.ccb-error-message, .calc-form-wrapper .ccb-cf-wrap p.ccb-thanks-message {
  color: green;
  text-align: center;
}
.calc-form-wrapper .ccb-cf-wrap p.ccb-error-message {
  color: #de5f5f;
}

.ccb-cf-wrap {
  /** contact Form style **/
  /** contact Form style| End **/
}
.ccb-cf-wrap .wpcf7-response-output {
  display: none !important;
}
.ccb-cf-wrap .wpcf7 form.sent .wpcf7-response-output {
  color: green;
  border: none;
  text-align: center;
}
.ccb-cf-wrap .wpcf7 form.invalid .wpcf7-response-output,
.ccb-cf-wrap .wpcf7 form.spam .wpcf7-response-output,
.ccb-cf-wrap .wpcf7 form.unaccepted .wpcf7-response-output {
  color: #de5f5f;
  border: none;
  text-align: center;
}
.ccb-cf-wrap .wpcf7-submit {
  color: #fff;
  font-size: 13px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #00b163;
  background-color: #00b163;
  padding: 16px 42px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
}
.ccb-cf-wrap.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.ccb-cf-wrap.disabled .wpcf7 form button, .ccb-cf-wrap.disabled .wpcf7 form label, .ccb-cf-wrap.disabled .wpcf7 form textarea {
  cursor: not-allowed;
  pointer-events: none;
}
.ccb-cf-wrap.disabled .wpcf7 form input, .ccb-cf-wrap.disabled .wpcf7 form input[readonly] {
  cursor: not-allowed;
  pointer-events: none;
}

.calculator-settings {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
}
.calculator-settings.ccb-calc-hidden {
  display: none !important;
}
.calculator-settings .ccb-demo-box-styles {
  display: none;
  position: absolute;
  width: 100%;
}
.calculator-settings .ccb-demo-box-styles .ccb-box-styles {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 30px;
  display: flex;
  border-radius: 10px;
  background-color: #D2D8E5;
  box-sizing: border-box;
  padding: 3px;
}
.calculator-settings .ccb-demo-box-styles .ccb-box-styles > div {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  height: 44px;
  border-radius: 8px;
  padding: 0px 20px;
  min-width: 178px;
}
.calculator-settings .ccb-demo-box-styles .ccb-box-styles > div span {
  color: #001931;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
.calculator-settings .ccb-demo-box-styles .ccb-box-styles > div i {
  opacity: 0.7;
  color: #001931;
  font-size: 19px;
}
.calculator-settings .ccb-demo-box-styles .ccb-box-styles > div.ccb-style-active {
  background-color: #ffffff;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}
.calculator-settings .ccb-demo-box-styles .ccb-box-styles > div.ccb-style-active span, .calculator-settings .ccb-demo-box-styles .ccb-box-styles > div.ccb-style-active i {
  opacity: 1 !important;
}
.calculator-settings .ccb-demo-box-styles .ccb-box-styles > div.ccb-style-active i {
  color: #1ab163 !important;
}
.calculator-settings .ccb-demo-box-styles.active {
  display: block;
}
@media (max-width: 768px) {
  .calculator-settings .ccb-demo-box-styles.active {
    display: none;
  }
}
.calculator-settings.ccb-front {
  margin: 50px auto;
}

.calc-thank-you-page-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.calc-container {
  width: 100%;
  display: grid;
  margin: 0 auto;
  padding: 0 10px;
  max-width: 970px;
  position: relative;
  box-sizing: border-box;
  z-index: 100;
}
.calc-container.has-title {
  grid-template-columns: 1fr 1fr;
}
.calc-container.horizontal {
  grid-template-columns: none !important;
}
.calc-container .calc-multi-step-title {
  color: #001931;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  grid-column: 1/-1;
}
.calc-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.calc-container textarea {
  resize: vertical;
}
.calc-container .calc-list {
  height: max-content;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}
.calc-container .calc-list__indexed {
  z-index: 90;
}
.calc-container .calc-list .calc-accordion-btn {
  width: 20px;
  height: 20px;
  display: flex;
  cursor: pointer;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
}
.calc-container .calc-list .calc-accordion-btn > i {
  letter-spacing: 0 !important;
  position: relative;
  top: 0;
  left: 0;
  font-size: 7px;
  transition: all 200ms ease-in-out;
}
.calc-container .calc-list .calc-accordion-btn.open > i {
  transform: rotate(180deg);
}
.calc-container .calc-list .calc-list-inner {
  padding: 45px 40px;
  transition: opacity 0.2s linear;
}
.calc-container .calc-list .calc-list-inner .calc-item-title-description {
  margin-top: -5px !important;
  color: #001931;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  display: block;
  padding-top: 10px;
}
.calc-container .calc-list .ccb-demo-mode-attention {
  position: relative;
  background-color: #d94141;
  color: #ffffff;
  border-radius: 4px;
  padding: 0 10px;
  margin-top: 10px;
  font-size: 14px;
  cursor: pointer;
}
.calc-container .calc-list .calc-fields-container {
  display: grid;
  width: 100%;
  row-gap: 20px;
}
.calc-container .calc-list .calc-fields-container img {
  width: 100%;
}
.calc-container .calc-list .calc-item-title.calc-accordion {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-container .calc-list .calc-item-title h2,
.calc-container .calc-list .calc-item-title .ccb-calc-heading {
  color: #001931;
  font-size: 20px;
  font-weight: 700;
}
.calc-container .calc-list.payment {
  opacity: 0.5 !important;
  pointer-events: none;
}
.calc-container .calc-list.loaded {
  opacity: 1;
  visibility: visible;
}
.calc-container .calc-list .calc-item {
  position: relative;
}
.calc-container .calc-list .calc-item .calc-field-disabled-condition,
.calc-container .calc-list .calc-item .calc-field-disabled {
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.calc-container .calc-list .calc-subtotal-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.calc-container .calc-list .calc-subtotal-list.totals .sub-list-item .ccb-discount-off {
  white-space: nowrap !important;
}
.calc-container .calc-list .calc-subtotal-list .sub-item-unit {
  display: none;
}
.calc-container .calc-list .calc-subtotal-list.unit-enable {
  padding: 0 10px !important;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-list-item {
  border-bottom: 1px dashed #CCCCCC;
  padding-bottom: 6px;
  width: 100%;
  margin: 0 auto;
  gap: 10px;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-list-item[break-border] {
  border: none;
  margin-bottom: -12px;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-list-item.inner {
  padding: 0;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-list-item.inner .sub-inner {
  justify-content: flex-start;
  padding-bottom: 5px;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-item-unit {
  display: block;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-item-space {
  display: none;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-inner {
  padding-bottom: 5px;
  font-size: 1em !important;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-inner:last-child {
  margin-bottom: 10px !important;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-inner .sub-item-value {
  width: 50%;
  display: block;
  word-break: break-all;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-inner .sub-item-title {
  max-width: 70%;
  display: block;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-inner .sub-item-title, .calc-container .calc-list .calc-subtotal-list.show-unit .sub-inner .sub-item-value {
  font-size: 0.9em !important;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-inner .sub-item-value, .calc-container .calc-list .calc-subtotal-list.show-unit .sub-inner .sub-item-title {
  width: auto;
  padding: 0;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-inner .sub-item-title {
  padding: 0 !important;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-inner .sub-item-value {
  padding-right: 7px;
  margin-left: 10px;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-item-title {
  width: 50%;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-item-value {
  text-align: right;
  width: 50%;
  word-break: break-all;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .sub-item-unit {
  width: 100%;
  font-size: 0.9em !important;
  font-weight: 500;
  text-transform: none;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .calc-subtotal-list-header {
  display: flex;
  padding: 5px 10px;
  background-color: #EEEEEE;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .calc-subtotal-list-header span {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .calc-subtotal-list-header__name {
  width: 50%;
}
.calc-container .calc-list .calc-subtotal-list.show-unit .calc-subtotal-list-header__value {
  width: 50%;
  text-align: right;
}
.calc-container .calc-list .calc-subtotal-list .calc-woo-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px;
  border: 2px solid;
  margin-top: 20px;
}
.calc-container .calc-list .calc-subtotal-list .calc-woo-product__info {
  padding-right: 20px;
  font-size: 14px;
  line-height: 20px;
}
.calc-container .calc-list .calc-subtotal-list .calc-woo-product__btn {
  border: none;
  background: none;
}
.calc-container .calc-list .calc-subtotal-list .calc-woo-product__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  text-decoration: none;
  background-color: transparent;
  padding: 10px 20px;
  border: none;
  white-space: nowrap;
}
.calc-container .calc-list .calc-subtotal-list-accordion {
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
  max-height: 6000px;
}
.calc-container .calc-list .calc-subtotal-list-accordion.hidden {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item {
  display: flex;
  color: #001931;
  font-size: 14px;
  font-weight: 500;
  justify-content: space-between;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.next-btn {
  flex-direction: column;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item .sub-item-space {
  color: inherit;
  flex: 1;
  margin: 0 5px 0 9px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item .sub-item-space.text-empty-field {
  margin-right: 0px;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item .sub-item-space:after {
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.5;
  font-size: 16px;
  color: inherit;
  letter-spacing: 1px;
  content: ".....................................................................................................................................................................................................";
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item span {
  font-size: inherit;
  word-break: break-word;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item span.sub-item-value {
  text-transform: none;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.inner {
  flex-direction: column;
  padding: 10px 0;
  font-size: 14px;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.inner .sub-inner {
  display: flex;
  font-size: 14px;
  padding-left: 15px;
  padding-bottom: 15px;
  justify-content: space-between;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.inner .sub-inner .sub-item-title {
  font-size: inherit;
  white-space: pre-wrap;
  word-break: break-all;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.inner .sub-inner .sub-item-value {
  white-space: pre-wrap;
  word-break: break-all;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.inner .sub-inner .sub-item-value span {
  color: #9b9fa5;
  letter-spacing: 3px;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.inner .sub-inner:last-child {
  padding-bottom: 0;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.inner span:first-child {
  padding-right: 5px;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.inner span:last-child {
  white-space: pre-wrap;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item .ccb-discount-wrapper {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item .ccb-discount-wrapper .ccb-discount {
  text-decoration: line-through;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.total {
  color: #001931;
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.total span:first-child {
  width: 75%;
  white-space: pre-wrap;
  word-break: break-all;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.total span:last-child {
  white-space: pre-wrap;
  word-break: break-all;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.next-btn {
  margin-top: 30px;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.next-btn button {
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #00b163;
  background-color: #00b163;
  padding: 0 45px;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: 200ms ease-in-out;
  line-height: 1;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.next-btn button.calc-make-payment {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.next-btn button.ccb-show-pdf-and-invoice {
  width: 100% !important;
  margin-right: 0 !important;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.next-btn button.ccb-show-pdf-only {
  width: 48.5% !important;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item.next-btn button.ispro-wrapper {
  position: relative;
}
.calc-container .calc-list .calc-subtotal-list .sub-list-item .payment-methods .calc-buttons .ccb-loader.front,
.calc-container .calc-list .calc-subtotal-list .sub-list-item .payment-methods .ccb-btn-wrap .ccb-loader.front {
  left: 0;
}
.calc-container.demoSite {
  padding-top: 90px;
}
.calc-container.two-column .calc-horizontal-full-width {
  grid-column: 1/span 2;
}
.calc-container.two-column .calc-horizontal-full-width .calc-radio-image,
.calc-container.two-column .calc-horizontal-full-width .calc-checkbox-image {
  justify-content: flex-start !important;
  row-gap: 10px;
  column-gap: 10px;
}
.calc-container.two-column .calc-horizontal-full-width .calc-radio-image-wrapper,
.calc-container.two-column .calc-horizontal-full-width .calc-checkbox-image-wrapper {
  max-width: 200px !important;
}
.calc-container.horizontal {
  row-gap: 20px;
  column-gap: 0;
}
.calc-container.horizontal .calc-fields-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 35px;
}
.calc-container.horizontal .calc-horizontal-full-width {
  grid-column: 1/span 2;
}
.calc-container.horizontal .calc-horizontal-full-width .calc-radio-image,
.calc-container.horizontal .calc-horizontal-full-width .calc-checkbox-image {
  justify-content: flex-start !important;
  row-gap: 10px;
  column-gap: 10px;
}
.calc-container.horizontal .calc-horizontal-full-width .calc-radio-image-wrapper,
.calc-container.horizontal .calc-horizontal-full-width .calc-checkbox-image-wrapper {
  max-width: 200px !important;
}
.calc-container.horizontal .calc-subtotal .calc-subtotal-list .ccb-next-content .calc-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
.calc-container.horizontal .calc-subtotal .calc-subtotal-list .ccb-next-content .calc-buttons button {
  width: fit-content;
  margin-right: 6px !important;
  margin-bottom: 10px;
  padding: 4px 10px;
  min-width: 150px;
}
.calc-container.horizontal .calc-subtotal .calc-subtotal-list .ccb-next-content .calc-buttons button span {
  letter-spacing: 0.1px;
}
.calc-container.horizontal .calc-subtotal .calc-subtotal-list .ccb-next-content .calc-buttons button:last-child {
  margin-bottom: 0;
  margin-right: 0 !important;
}
.calc-container.vertical {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
}
.calc-container.vertical .calc-list {
  width: 100%;
}
.calc-container.vertical .calc-subtotal .calc-subtotal-list .ccb-next-content .calc-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.calc-container.vertical .calc-subtotal .calc-subtotal-list .ccb-next-content .calc-buttons button {
  letter-spacing: 0.1px;
  width: 48.5%;
  margin-bottom: 10px;
  padding: 4px 10px;
  white-space: nowrap;
}
.calc-container.vertical .calc-subtotal .calc-subtotal-list .ccb-next-content .calc-buttons button span {
  letter-spacing: 0.1px;
}
.calc-container.two_column {
  max-width: 1200px;
  column-gap: 30px;
  grid-template-columns: 2fr 1fr;
}
.calc-container.two_column .calc-fields-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 35px;
}
.calc-container.two_column .calc-fields-container > div {
  width: 100%;
}
.calc-container.two_column .calc-subtotal-list .ccb-next-content .calc-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.calc-container.two_column .calc-subtotal-list .ccb-next-content .calc-buttons button {
  padding: 4px 10px;
  width: 48.5%;
  margin-bottom: 10px;
}
.calc-container.two_column .calc-subtotal-list .ccb-next-content .calc-buttons button span {
  letter-spacing: 0.1px;
}
.calc-container.two_column .calc-subtotal-list .ccb-next-content .calc-buttons button:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .calc-container {
    grid-template-columns: 1fr !important;
    row-gap: 20px;
  }
  .calc-container .calc-fields-container {
    grid-template-columns: 1fr !important;
  }
  .calc-container.two_column {
    display: grid;
  }
  .calc-container.two_column > div:first-child {
    width: 100%;
    max-width: 100%;
  }
  .calc-container.two_column > div:last-child {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .calc-container {
    padding: 0;
    grid-template-columns: 1fr !important;
  }
  .calc-container.vertical .calc-subtotal-list .ccb-next-content .calc-buttons, .calc-container.two_column .calc-subtotal-list .ccb-next-content .calc-buttons, .calc-container.horizontal .calc-subtotal-list .ccb-next-content .calc-buttons {
    display: flex;
    flex-direction: column;
  }
  .calc-container.vertical .calc-subtotal-list .ccb-next-content .calc-buttons button, .calc-container.two_column .calc-subtotal-list .ccb-next-content .calc-buttons button, .calc-container.horizontal .calc-subtotal-list .ccb-next-content .calc-buttons button {
    padding: 4px 10px;
    width: 100% !important;
    margin-bottom: 10px;
  }
  .calc-container .calc-fields-container {
    grid-template-columns: 1fr !important;
  }
}

.calc-checkbox, .calc-radio, .calc-toggle {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}
.calc-checkbox.horizontally-view, .calc-radio.horizontally-view, .calc-toggle.horizontally-view {
  flex-direction: row;
  column-gap: 20px;
}
.calc-checkbox .calc-checkbox-item, .calc-checkbox .calc-radio-item, .calc-checkbox .calc-switch, .calc-radio .calc-checkbox-item, .calc-radio .calc-radio-item, .calc-radio .calc-switch, .calc-toggle .calc-checkbox-item, .calc-toggle .calc-radio-item, .calc-toggle .calc-switch {
  align-items: center;
  flex-grow: 1;
  width: fit-content;
  margin: 5px 0;
  min-height: 22px;
}
.calc-checkbox .calc-checkbox-item input[type=radio], .calc-checkbox .calc-radio-item input[type=radio], .calc-checkbox .calc-switch input[type=radio], .calc-radio .calc-checkbox-item input[type=radio], .calc-radio .calc-radio-item input[type=radio], .calc-radio .calc-switch input[type=radio], .calc-toggle .calc-checkbox-item input[type=radio], .calc-toggle .calc-radio-item input[type=radio], .calc-toggle .calc-switch input[type=radio] {
  margin: 0;
}
.calc-checkbox .calc-checkbox-item label, .calc-checkbox .calc-radio-item label, .calc-checkbox .calc-switch label, .calc-radio .calc-checkbox-item label, .calc-radio .calc-radio-item label, .calc-radio .calc-switch label, .calc-toggle .calc-checkbox-item label, .calc-toggle .calc-radio-item label, .calc-toggle .calc-switch label {
  width: fit-content;
}

.ccb-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.sub-item-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.calc-notice {
  padding: 12px 20px !important;
}
.calc-notice.error {
  background-color: #FBEBEB;
}
.calc-notice.error .calc-notice-title {
  color: #d94141;
}
.calc-notice.success {
  background-color: rgba(0, 177, 99, 0.2);
}
.calc-notice.success .calc-notice-title {
  color: #00B163;
}
.calc-notice.success .calc-notice-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(26, 177, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-notice.success .calc-notice-icon-wrapper .calc-notice-icon-content {
  width: 22px;
  height: 22px;
  background-color: #1ab163;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.calc-notice.success .calc-notice-icon-wrapper .calc-notice-icon-content i {
  font-size: 7px;
  color: #ffffff;
}
.calc-notice .calc-notice-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
}
.calc-notice .calc-notice-wrap .calc-notice-icon {
  width: 22px;
  height: 19px;
  display: flex;
  align-items: center;
}
.calc-notice .calc-notice-wrap .calc-notice-icon img {
  max-width: 22px;
}
.calc-notice .calc-notice-wrap .calc-notice-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.calc-notice .calc-notice-wrap .calc-notice-content .calc-notice-title {
  font-size: 14px;
  font-weight: 700;
}
.calc-notice .calc-notice-wrap .calc-notice-content .calc-notice-description {
  font-size: 13px;
  font-weight: 500;
  color: #001931;
}

.calc-multi-step {
  position: relative;
}
.calc-multi-step.page-totals {
  border-bottom-color: transparent !important;
}
.calc-multi-step .calc-page-navigation {
  width: 100%;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.calc-page.horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 35px;
}

.calc-page {
  display: grid;
  visibility: hidden;
  height: 0;
}
.calc-page.visible {
  height: 100%;
  visibility: visible;
}
@media (max-width: 600px) {
  .calc-page {
    grid-template: none !important;
  }
}

.calc-page-break-subtotal-wrapper .ispro-wrapper, .calc-page-break-subtotal-wrapper .calc-payments, .calc-page-break-subtotal-wrapper .calc-make-payment, .calc-page-break-subtotal-wrapper .payment-methods button {
  opacity: 0.2;
  pointer-events: none;
}

.calc-subtotal-list .calc-buttons.woo-checkout-buttons .ccb-loader {
  top: -20px !important;
}

.calc-item {
  display: flex;
  flex-direction: column;
}
.calc-item button:focus, .calc-item button:hover,
.calc-item input[type=text]:focus,
.calc-item input[type=text]:hover,
.calc-item input[type=email]:focus,
.calc-item input[type=email]:hover,
.calc-item input[type=password]:focus,
.calc-item input[type=password]:hover,
.calc-item input[type=number]:focus,
.calc-item input[type=number]:hover,
.calc-item input[type=date]:focus,
.calc-item input[type=date]:hover {
  resize: none;
  outline: none;
  box-shadow: none;
}
.calc-item button:disabled,
.calc-item input[type=text]:disabled,
.calc-item input[type=email]:disabled,
.calc-item input[type=password]:disabled,
.calc-item input[type=number]:disabled,
.calc-item input[type=date]:disabled {
  box-shadow: none;
}
.calc-item .calc-input-wrapper input,
.calc-item .calc-date-picker-select,
.calc-item .calc-drop-down-with-image-current,
.calc-item textarea,
.calc-item input[type=text],
.calc-item input[type=email],
.calc-item input[type=password],
.calc-item input[type=number],
.calc-item select {
  margin: 0;
  box-shadow: none;
  outline: none;
  line-height: 1;
  padding: 12px 20px;
  border-radius: 4px;
  border: 2px solid #eeeeee;
  background-color: #ffffff;
  box-sizing: border-box;
  color: #001931;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  min-height: 46px;
  text-transform: none;
}
.calc-item textarea:focus, .calc-item textarea:hover {
  outline: none;
  box-shadow: none;
}
.calc-item textarea:disabled {
  box-shadow: none;
}
.calc-item__title {
  color: #001931;
  font-size: 12px;
  font-weight: 700;
}
.calc-item__description {
  line-height: 1;
  display: none;
}
.calc-item__description.before {
  margin-bottom: 4px;
}
.calc-item__description.after {
  margin-top: 4px;
}
.calc-item__description span {
  color: #001931;
  font-size: 12px;
  font-weight: 500;
  word-break: break-all;
}
.calc-item .mx-datepicker .mx-input {
  padding: 25px 10px;
}
.calc-item .mx-datepicker i {
  top: 50%;
  right: 4%;
  cursor: pointer;
  color: #00b163;
  position: absolute;
  transform: translateY(-50%);
}
.calc-item .calc-btn-action {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #001931;
  border-radius: 4px;
  background-color: #eef1f7;
  transition: all 200ms linear;
  white-space: nowrap;
  line-height: 1;
  padding: 14px 50px;
  border: none !important;
  margin: 0 !important;
  outline: none !important;
  box-shadow: none;
}
.calc-item .calc-btn-action.success {
  color: #ffffff;
  background-color: #00b163;
}
.calc-item .calc-btn-action.success:hover {
  background: rgb(0, 151.5, 84.7372881356);
}
.calc-item .calc-btn-action.success-with-border, .calc-item .calc-btn-action.default-with-border {
  padding-left: 15px;
  padding-right: 15px;
  height: 40px !important;
  min-height: 40px !important;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.calc-item .calc-btn-action.success-with-border i, .calc-item .calc-btn-action.default-with-border i {
  font-size: 18px;
}
.calc-item .calc-btn-action.success-with-border {
  color: #00b163 !important;
  border: 1px solid #00b163 !important;
  background-color: #FFFFFF !important;
}
.calc-item .calc-btn-action.success-with-border i {
  opacity: 1 !important;
}
.calc-item .calc-btn-action.success-with-border:hover {
  background: #00b163;
}
.calc-item .calc-btn-action.default-with-border {
  color: #ffffff;
}
.calc-item .calc-btn-action.is-bold {
  font-weight: 700 !important;
}
.calc-item .calc-btn-action.is-disabled {
  pointer-events: none;
  opacity: 0.4;
}
.calc-item .calc-file-upload .calc-file-upload-actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
}
.calc-item .calc-file-upload .calc-file-upload-actions > button {
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 10px !important;
  width: 100%;
}
.calc-item .calc-file-upload .calc-buttons > button {
  height: 42px !important;
}
.calc-item .calc-file-upload .ccb-field-required-tooltip {
  top: -5px !important;
  margin-left: 0 !important;
  position: relative !important;
  width: max-content;
}
.calc-item .calc-file-upload .ccb-label-span {
  position: relative;
}
.calc-item .calc-file-upload .ccb-label-span .ccb-error {
  position: absolute;
  border-radius: 6px;
  padding: 5px 10px;
  background-color: #d94141;
  width: max-content;
  margin-left: 30px;
  top: 0;
  min-height: 21px;
  z-index: 99;
}
.calc-item .calc-file-upload .ccb-label-span .ccb-error::after {
  content: "";
  left: -12px;
  top: 7px;
  position: absolute;
  border: 7px solid #d94141;
  transform: translateY(-10%);
  border-color: transparent #d94141 transparent transparent;
}
.calc-item .calc-file-upload .ccb-label-span .ccb-error .ccb-error-tooltip {
  border-radius: 6px;
  position: relative;
  display: contents;
  background-color: #d94141;
  z-index: 1;
  height: 100%;
  left: 8px;
  color: #ffffff;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}
.calc-item .calc-file-upload .info-tip-block {
  display: inline-block;
  margin-left: 5px;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Icon for info tip */
  /** help tip block **/
}
.calc-item .calc-file-upload .info-tip-block .info-icon {
  position: relative;
  display: block;
  font-size: 11px;
  cursor: pointer;
  color: rgba(0, 25, 49, 0.3019607843) !important;
}
.calc-item .calc-file-upload .info-tip-block .info {
  position: absolute;
  z-index: 2;
  background-color: #fff;
  min-width: 150px;
  width: 153px;
  bottom: 22px;
  left: -75px;
  border-radius: 4px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
}
.calc-item .calc-file-upload .info-tip-block .info::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  z-index: 10;
  border: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  left: calc(50% - 4px);
}
.calc-item .calc-file-upload .info-tip-block .info .info-tip {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 10px 10px;
  box-sizing: border-box;
  text-align: left;
  color: #001931;
}
.calc-item .calc-file-upload .info-tip-block .info .info-tip span {
  font-weight: 500;
  text-transform: capitalize;
}
.calc-item .calc-file-upload .info-tip-block .info .info-tip span:first-child {
  white-space: nowrap;
}
.calc-item .calc-file-upload .info-tip-block .info .info-tip span.bold {
  font-weight: 700;
}
.calc-item .calc-file-upload .info-tip-block .info .info-tip span.uppercase {
  text-transform: uppercase;
}
.calc-item .calc-file-upload .info-tip-block .info .info-tip span.lighter {
  margin-top: 5px;
  opacity: 0.6;
}
.calc-item .calc-file-upload .calc-info {
  opacity: 0.5;
  color: #333333;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
}
.calc-item .calc-file-upload .calc-info .titles {
  text-transform: uppercase;
}
.calc-item .calc-file-upload .calc-buttons {
  margin-bottom: 7px;
  display: flex;
  column-gap: 10px;
}
.calc-item .calc-file-upload .calc-buttons > button {
  cursor: pointer;
  width: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
}
.calc-item .calc-file-upload .calc-buttons input[type=file] {
  display: none;
}
.calc-item .calc-file-upload .calc-buttons button[disabled=disabled] {
  opacity: 0.3;
  cursor: inherit;
}
.calc-item .calc-file-upload button.disabled {
  opacity: 0.7 !important;
  cursor: not-allowed;
  pointer-events: none;
}
.calc-item .calc-file-upload .calc-uploaded-files {
  margin-bottom: 10px;
}
.calc-item .calc-file-upload .calc-uploaded-files .ccb-uploaded-file-list-info {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 8px;
}
.calc-item .calc-file-upload .calc-uploaded-files .ccb-uploaded-file-list-info > i:first-child {
  font-size: 16px;
  color: #00b163;
  margin-right: 5px;
}
.calc-item .calc-file-upload .calc-uploaded-files .ccb-uploaded-file-list-info span {
  color: #001931;
  font-size: 14px;
  font-weight: 500;
}
.calc-item .calc-file-upload .calc-uploaded-files .ccb-uploaded-file-list-info .ccb-select-anchor {
  position: relative;
  display: block;
  cursor: pointer;
  font-size: 8px;
  margin-left: 4px;
}
.calc-item .calc-file-upload .calc-uploaded-files .ccb-uploaded-file-list-info .ccb-select-anchor.open {
  transform: rotate(180deg);
}
.calc-item .calc-file-upload .calc-uploaded-files .ccb-uploaded-file-list-info .fa-check-circle {
  margin-right: 5px;
}
.calc-item .calc-file-upload .calc-uploaded-files .ccb-uploaded-file-list {
  display: flex;
  column-gap: 10px;
  row-gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}
.calc-item .calc-file-upload .calc-uploaded-files .file-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px 6px;
  text-transform: capitalize;
  border-radius: 5px;
  background-color: #eef1f7;
  color: #001931;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  word-break: break-all;
}
.calc-item .calc-file-upload .calc-uploaded-files .file-name .remove {
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
  font-size: 11px;
  opacity: 0.7;
  transition: ease-in-out 200ms;
}
.calc-item .calc-file-upload .calc-uploaded-files .file-name .remove:hover {
  opacity: 0.9;
}
.calc-item .calc-file-upload .calc-input-wrapper.url-file-upload {
  width: 100%;
}
.calc-item .calc-file-upload .calc-input-wrapper.url-file-upload button {
  max-width: 90px;
  width: 100%;
  padding: 0 10px !important;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
}
.calc-item .calc-file-upload .calc-input-wrapper.url-file-upload .ccb-url-file-upload-input {
  max-width: calc(100% - 90px);
  position: relative;
  width: 100%;
}
.calc-item .calc-file-upload .calc-input-wrapper.url-file-upload .ccb-url-file-upload-input input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 10px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg%3E%3Cg opacity='.7'%3E%3Cpath fill='%23333' d='M12 1.414L10.586 0 6 4.586 1.414 0 0 1.414 4.586 6 0 10.586 1.414 12 6 7.414 10.586 12 12 10.586 7.414 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 10px 10px;
  cursor: pointer;
}
.calc-item .calc-file-upload .calc-input-wrapper.url-file-upload .ccb-url-file-upload-input .ccb-input-error-tooltip {
  position: absolute;
  right: 0;
  top: -35px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background: #d94141;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  height: 30px;
  padding: 0 16px;
}
.calc-item .calc-file-upload .calc-input-wrapper.url-file-upload .ccb-url-file-upload-input .ccb-input-error-tooltip::after {
  content: "";
  width: 0;
  height: 0;
  border: 0;
  display: block;
  position: absolute;
  z-index: 10;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #d94141;
  right: 0;
  bottom: -5px;
  margin-right: 15px;
}
.calc-item.html {
  display: block;
}

.calc-make-payment {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
}

.calc-drop-down-with-image-current.calc-dd-toggle.ccb-appearance-field {
  padding: 12px 18px !important;
}

.calc-drop-down-with-image-current.calc-dd-img-toggle.ccb-appearance-field {
  padding: 12px 18px !important;
}

:where(.wp-site-blocks *:focus) {
  outline-style: none !important;
}

.calc-checkbox {
  flex-direction: row;
  row-gap: 10px;
  column-gap: 10px;
  flex-wrap: wrap;
}
.calc-checkbox.default label, .calc-checkbox.boxed-with-description label, .calc-checkbox.boxed-with-checkbox-and-description label, .calc-checkbox.boxed-with-checkbox label {
  line-height: 1;
  cursor: pointer;
  font-weight: normal;
  margin: 0 !important;
  vertical-align: middle;
  padding: 0 0 0 25px;
  display: flex !important;
  align-items: center;
  min-height: 22px;
  position: relative;
}
.calc-checkbox.default label .calc-checkbox-title, .calc-checkbox.boxed-with-description label .calc-checkbox-title, .calc-checkbox.boxed-with-checkbox-and-description label .calc-checkbox-title, .calc-checkbox.boxed-with-checkbox label .calc-checkbox-title {
  color: #001931;
  font-size: 16px;
  font-weight: 500;
}
.calc-checkbox.default label span, .calc-checkbox.boxed-with-description label span, .calc-checkbox.boxed-with-checkbox-and-description label span, .calc-checkbox.boxed-with-checkbox label span {
  display: inline-flex;
  align-items: center;
  color: black;
  font-size: 14px;
}
.calc-checkbox.default label::before, .calc-checkbox.boxed-with-description label::before, .calc-checkbox.boxed-with-checkbox-and-description label::before, .calc-checkbox.boxed-with-checkbox label::before {
  left: 0;
  content: "";
  max-width: 20px;
  min-width: 20px;
  max-height: 20px;
  min-height: 20px;
  height: 20px;
  width: 20px;
  position: absolute;
  margin: 0 !important;
  background-color: #ffffff;
  border: 2px solid #dddddd;
  transition: transform 0.28s ease;
  box-sizing: border-box;
  border-radius: 3px;
}
.calc-checkbox.default label::after, .calc-checkbox.boxed-with-description label::after, .calc-checkbox.boxed-with-checkbox-and-description label::after, .calc-checkbox.boxed-with-checkbox label::after {
  left: 6px;
  height: 5px;
  width: 10px;
  content: "";
  display: block;
  position: absolute;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: transform ease 0.25s;
  transform: rotate(-45deg) scale(0) translateY(-10%);
  box-sizing: border-box;
}
.calc-checkbox.default input[type=checkbox], .calc-checkbox.boxed-with-description input[type=checkbox], .calc-checkbox.boxed-with-checkbox-and-description input[type=checkbox], .calc-checkbox.boxed-with-checkbox input[type=checkbox] {
  display: none !important;
}
.calc-checkbox.default input:checked ~ label:before, .calc-checkbox.boxed-with-description input:checked ~ label:before, .calc-checkbox.boxed-with-checkbox-and-description input:checked ~ label:before, .calc-checkbox.boxed-with-checkbox input:checked ~ label:before {
  border: 1px solid #00b163;
  background-color: #00b163 !important;
}
.calc-checkbox.default .calc-checkbox-item {
  flex-grow: unset !important;
  line-height: 1;
  position: relative;
  margin: 0 !important;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item, .calc-checkbox.boxed-with-description .calc-checkbox-item, .calc-checkbox.boxed-with-checkbox .calc-checkbox-item, .calc-checkbox.boxed .calc-checkbox-item {
  display: flex;
  margin: 0 !important;
  padding: 0;
  min-height: auto;
  flex-grow: unset !important;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label, .calc-checkbox.boxed-with-description .calc-checkbox-item label, .calc-checkbox.boxed-with-checkbox .calc-checkbox-item label, .calc-checkbox.boxed .calc-checkbox-item label {
  padding: 12px 30px;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1.25;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item input:checked + label, .calc-checkbox.boxed-with-description .calc-checkbox-item input:checked + label, .calc-checkbox.boxed-with-checkbox .calc-checkbox-item input:checked + label, .calc-checkbox.boxed .calc-checkbox-item input:checked + label {
  color: #FFFFFF;
  background: #00b163;
  border: 1px solid #00b163;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item input:checked + label .calc-checkbox-title, .calc-checkbox.boxed-with-description .calc-checkbox-item input:checked + label .calc-checkbox-title, .calc-checkbox.boxed-with-checkbox .calc-checkbox-item input:checked + label .calc-checkbox-title, .calc-checkbox.boxed .calc-checkbox-item input:checked + label .calc-checkbox-title {
  color: #FFFFFF !important;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label, .calc-checkbox.boxed-with-description .calc-checkbox-item label, .calc-checkbox.boxed-with-checkbox .calc-checkbox-item label {
  padding: 12px 30px 11px 40px;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label::before, .calc-checkbox.boxed-with-description .calc-checkbox-item label::before, .calc-checkbox.boxed-with-checkbox .calc-checkbox-item label::before {
  left: 16px;
  top: 13px;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label::after, .calc-checkbox.boxed-with-description .calc-checkbox-item label::after, .calc-checkbox.boxed-with-checkbox .calc-checkbox-item label::after {
  left: 22px;
  top: 19px;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label .calc-checkbox-title-wrap .calc-checkbox-description, .calc-checkbox.boxed-with-description .calc-checkbox-item label .calc-checkbox-title-wrap .calc-checkbox-description, .calc-checkbox.boxed-with-checkbox .calc-checkbox-item label .calc-checkbox-title-wrap .calc-checkbox-description {
  word-break: break-all;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item input:checked + label, .calc-checkbox.boxed-with-description .calc-checkbox-item input:checked + label, .calc-checkbox.boxed-with-checkbox .calc-checkbox-item input:checked + label {
  background: rgba(0, 177, 99, 0.1019607843);
  border: 1px solid #00b163;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item input:checked + label .calc-checkbox-title, .calc-checkbox.boxed-with-description .calc-checkbox-item input:checked + label .calc-checkbox-title, .calc-checkbox.boxed-with-checkbox .calc-checkbox-item input:checked + label .calc-checkbox-title {
  color: #001931 !important;
}
.calc-checkbox.boxed-with-description .calc-checkbox-item label {
  align-items: flex-start;
  width: 100%;
}
.calc-checkbox.boxed-with-description .calc-checkbox-item label .calc-checkbox-title-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: flex-start !important;
}
.calc-checkbox.boxed-with-description .calc-checkbox-item label .calc-checkbox-title-wrap .calc-checkbox-description {
  color: #001931;
  font-size: 14px;
  font-weight: 400;
  word-break: keep-all;
}
.calc-checkbox.boxed-with-description .calc-checkbox-item label label::after {
  left: 22px;
  top: 17px;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item {
  width: max-content;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label {
  padding: 10px 38px 10px 20px !important;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label .calc-checkbox-title-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 0;
  align-items: flex-start !important;
  margin-right: 20px;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label .calc-checkbox-title-wrap .calc-checkbox-title {
  color: #001931;
  font-size: 24px !important;
  font-weight: 500;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label .calc-checkbox-title-wrap .calc-checkbox-description {
  word-break: keep-all;
  color: rgba(0, 25, 49, 0.5019607843);
  font-size: 12px !important;
  font-weight: 500;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label::before {
  left: unset !important;
  right: 20px !important;
  top: 25px;
}
.calc-checkbox.boxed-with-checkbox-and-description .calc-checkbox-item label::after {
  left: unset;
  right: 25px !important;
  top: 30px;
}
.calc-checkbox.calc-checkbox-image {
  column-gap: 0;
  row-gap: 10px;
  margin-bottom: 5px;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-item {
  position: absolute;
  bottom: 10px;
  right: 2px;
  min-height: 18px;
  max-width: fit-content;
  margin: 0;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-item label {
  position: relative;
  min-height: 18px;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-item label:before {
  border-radius: 50%;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-image-wrapper {
  border: 2px solid #eeeeee;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 4px;
  cursor: pointer;
  max-width: unset;
  width: 48%;
  min-height: 220px;
  padding: 0;
  margin: 0;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-image-wrapper:before, .calc-checkbox.calc-checkbox-image.default .calc-checkbox-image-wrapper:after {
  display: none !important;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-image-wrapper .calc-checkbox-item label:after {
  top: 6px;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-image-wrapper .calc-checkbox-image-box {
  padding: 18px;
  line-height: 0.7;
  width: 100%;
  height: 100%;
  display: flex;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-info {
  width: 90%;
  padding: 5px 10px 12px 10px;
  position: relative;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-info .calc-checkbox-title-box {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-info .calc-checkbox-title-box span {
  line-height: 1;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-info .calc-checkbox-label {
  color: #001931;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  word-break: break-word;
}
.calc-checkbox.calc-checkbox-image.default .calc-checkbox-info .calc-checkbox-price {
  color: rgba(0, 25, 49, 0.7019607843);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
}
.calc-checkbox.calc-checkbox-image.with-icon {
  justify-content: flex-start;
  flex-direction: row;
  row-gap: 10px;
  column-gap: 10px;
}
.calc-checkbox.calc-checkbox-image.with-icon input {
  display: none;
}
.calc-checkbox.calc-checkbox-image.with-icon .calc-checkbox-image-wrapper {
  cursor: pointer;
  height: 100%;
  line-height: 1;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
}
.calc-checkbox.calc-checkbox-image.with-icon .calc-checkbox-image-wrapper.calc-checkbox-image-selected {
  border: 1px solid #00b163;
  background: rgba(0, 177, 99, 0.1019607843);
}
.calc-checkbox.calc-checkbox-image.with-icon .calc-checkbox-image-wrapper img {
  width: 20px;
  height: 20px;
}
.calc-checkbox.calc-is-vertical.calc-checkbox-image,
.calc-checkbox.calc-is-vertical .calc-checkbox-item {
  width: 100% !important;
}
.calc-checkbox.calc-is-vertical.calc-checkbox-image label,
.calc-checkbox.calc-is-vertical .calc-checkbox-item label {
  width: 100% !important;
}
.calc-checkbox.calc-is-vertical.with-icon .calc-checkbox-item label, .calc-checkbox.calc-is-vertical.boxed .calc-checkbox-item label {
  display: flex;
  justify-content: center;
}
.calc-checkbox.calc-is-vertical.boxed-with-checkbox .calc-checkbox-item label {
  display: flex;
  justify-content: flex-start;
}

.calc-checkbox-item input[type=checkbox]:checked ~ label:before {
  border: 1px solid #00b163;
  background-color: #00b163 !important;
}

.calc-checkbox-item input[type=checkbox]:checked ~ label:after {
  transform: rotate(-45deg) scale(1) translateY(-10%);
}

.calc-checkbox-item input[type=checkbox]:focus + label::before {
  outline: 0;
}

.calc-container.horizontal .calc-checkbox.ccb-horizontal, .calc-container.two_column .calc-checkbox.ccb-horizontal {
  grid-template-columns: repeat(2, 1fr) !important;
}

/** Colors **/
.ccb-datetime {
  width: 100%;
  display: flex;
}
.ccb-datetime div .calc-date-picker-select {
  cursor: pointer;
}
.ccb-datetime div .calc-date-picker-select.error {
  border: 1px solid #d94141 !important;
}
.ccb-datetime div .calc-date-picker-select.error i {
  color: #d94141 !important;
  opacity: 1;
}
.ccb-datetime div .calc-date-picker-select.open {
  border: 2px solid #00b163;
}
.ccb-datetime div .calc-date-picker-select span {
  width: calc(100% - 15px);
}
.ccb-datetime div .calc-date-picker-select i {
  font-size: 22px;
  right: 15px;
  cursor: pointer;
  color: #001931;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ccb-datetime div .calc-date-picker-select i.ccb-icon-close {
  font-size: 15px;
}
.ccb-datetime div .calc-date-picker-select i:hover {
  opacity: 0.8;
}
.ccb-datetime div.hidden {
  display: none;
}
.ccb-datetime div.date {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  margin-bottom: 3px;
}
.ccb-datetime div.date.mobile {
  cursor: pointer;
}
.ccb-datetime div.date .calendar-select, .ccb-datetime div.date .calendar-select-order {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  max-width: 100%;
  width: 100%;
  min-width: 360px;
  position: absolute;
  min-height: 240px;
  box-sizing: border-box;
  border-radius: 4px;
  top: 40px;
  padding: 10px;
  z-index: 99999;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}
.ccb-datetime div.date .calendar-select.hidden, .ccb-datetime div.date .hidden.calendar-select-order {
  display: block !important;
  visibility: hidden;
  top: -9999px;
  left: -9999px;
}
.ccb-datetime div.date .calendar-select .month-slide-control, .ccb-datetime div.date .calendar-select-order .month-slide-control {
  height: 30px;
  display: flex;
}
.ccb-datetime div.date .calendar-select .month-slide-control div, .ccb-datetime div.date .calendar-select-order .month-slide-control div {
  background-color: #00b163;
  color: #ffffff;
}
.ccb-datetime div.date .calendar-select .month-slide-control div.slider-title, .ccb-datetime div.date .calendar-select-order .month-slide-control div.slider-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  width: calc(100% - 58px);
  height: 28px;
  margin: 0 10px;
  border-radius: 4px;
  background-color: #eef1f7;
  color: #272727;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
}
.ccb-datetime div.date .calendar-select .month-slide-control div.next, .ccb-datetime div.date .calendar-select-order .month-slide-control div.next, .ccb-datetime div.date .calendar-select .month-slide-control div.prev, .ccb-datetime div.date .calendar-select-order .month-slide-control div.prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 4px;
  background-color: #eef1f7;
  border: 1px solid transparent;
  cursor: pointer;
}
.ccb-datetime div.date .calendar-select .month-slide-control div.next i, .ccb-datetime div.date .calendar-select-order .month-slide-control div.next i, .ccb-datetime div.date .calendar-select .month-slide-control div.prev i, .ccb-datetime div.date .calendar-select-order .month-slide-control div.prev i {
  font-size: 9px;
  transition: opacity 200ms ease-in-out;
  color: #001931;
  transform: rotate(90deg);
  opacity: 0.5;
}
.ccb-datetime div.date .calendar-select .month-slide-control div.next.next i, .ccb-datetime div.date .calendar-select-order .month-slide-control div.next.next i, .ccb-datetime div.date .calendar-select .month-slide-control div.prev.next i {
  transform: rotate(-90deg);
}
.ccb-datetime div.date .calendar-select .month-slide-control div.next:hover i, .ccb-datetime div.date .calendar-select-order .month-slide-control div.next:hover i, .ccb-datetime div.date .calendar-select .month-slide-control div.prev:hover i, .ccb-datetime div.date .calendar-select-order .month-slide-control div.prev:hover i {
  opacity: 0.7;
}
.ccb-datetime div.date .calendar-select .slider-title > div, .ccb-datetime div.date .calendar-select-order .slider-title > div {
  background: none;
  margin-left: 2px;
}
.ccb-datetime div.date .calendar-select .slider-title > div:hover, .ccb-datetime div.date .calendar-select-order .slider-title > div:hover {
  cursor: pointer;
}
.ccb-datetime div.date .calendar-select .year-decades-list, .ccb-datetime div.date .calendar-select-order .year-decades-list, .ccb-datetime div.date .calendar-select .year-list, .ccb-datetime div.date .calendar-select-order .year-list, .ccb-datetime div.date .calendar-select .month-list, .ccb-datetime div.date .calendar-select-order .month-list {
  display: flex;
  flex-direction: column;
}
.ccb-datetime div.date .calendar-select .year-decades-list .decade, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade, .ccb-datetime div.date .calendar-select .year-decades-list .year, .ccb-datetime div.date .calendar-select-order .year-decades-list .year, .ccb-datetime div.date .calendar-select .year-decades-list .month, .ccb-datetime div.date .calendar-select-order .year-decades-list .month, .ccb-datetime div.date .calendar-select .year-list .decade, .ccb-datetime div.date .calendar-select-order .year-list .decade, .ccb-datetime div.date .calendar-select .year-list .year, .ccb-datetime div.date .calendar-select-order .year-list .year, .ccb-datetime div.date .calendar-select .year-list .month, .ccb-datetime div.date .calendar-select-order .year-list .month, .ccb-datetime div.date .calendar-select .month-list .decade, .ccb-datetime div.date .calendar-select-order .month-list .decade, .ccb-datetime div.date .calendar-select .month-list .year, .ccb-datetime div.date .calendar-select-order .month-list .year, .ccb-datetime div.date .calendar-select .month-list .month, .ccb-datetime div.date .calendar-select-order .month-list .month {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.ccb-datetime div.date .calendar-select .year-decades-list .decade .decade-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .decade-title, .ccb-datetime div.date .calendar-select .year-decades-list .decade .year-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .year-title, .ccb-datetime div.date .calendar-select .year-decades-list .decade .month-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .month-title, .ccb-datetime div.date .calendar-select .year-decades-list .year .decade-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .decade-title, .ccb-datetime div.date .calendar-select .year-decades-list .year .year-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .year-title, .ccb-datetime div.date .calendar-select .year-decades-list .year .month-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .month-title, .ccb-datetime div.date .calendar-select .year-decades-list .month .decade-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .decade-title, .ccb-datetime div.date .calendar-select .year-decades-list .month .year-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .year-title, .ccb-datetime div.date .calendar-select .year-decades-list .month .month-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .month-title, .ccb-datetime div.date .calendar-select .year-list .decade .decade-title, .ccb-datetime div.date .calendar-select-order .year-list .decade .decade-title, .ccb-datetime div.date .calendar-select .year-list .decade .year-title, .ccb-datetime div.date .calendar-select-order .year-list .decade .year-title, .ccb-datetime div.date .calendar-select .year-list .decade .month-title, .ccb-datetime div.date .calendar-select-order .year-list .decade .month-title, .ccb-datetime div.date .calendar-select .year-list .year .decade-title, .ccb-datetime div.date .calendar-select-order .year-list .year .decade-title, .ccb-datetime div.date .calendar-select .year-list .year .year-title, .ccb-datetime div.date .calendar-select-order .year-list .year .year-title, .ccb-datetime div.date .calendar-select .year-list .year .month-title, .ccb-datetime div.date .calendar-select-order .year-list .year .month-title, .ccb-datetime div.date .calendar-select .year-list .month .decade-title, .ccb-datetime div.date .calendar-select-order .year-list .month .decade-title, .ccb-datetime div.date .calendar-select .year-list .month .year-title, .ccb-datetime div.date .calendar-select-order .year-list .month .year-title, .ccb-datetime div.date .calendar-select .year-list .month .month-title, .ccb-datetime div.date .calendar-select-order .year-list .month .month-title, .ccb-datetime div.date .calendar-select .month-list .decade .decade-title, .ccb-datetime div.date .calendar-select-order .month-list .decade .decade-title, .ccb-datetime div.date .calendar-select .month-list .decade .year-title, .ccb-datetime div.date .calendar-select-order .month-list .decade .year-title, .ccb-datetime div.date .calendar-select .month-list .decade .month-title, .ccb-datetime div.date .calendar-select-order .month-list .decade .month-title, .ccb-datetime div.date .calendar-select .month-list .year .decade-title, .ccb-datetime div.date .calendar-select-order .month-list .year .decade-title, .ccb-datetime div.date .calendar-select .month-list .year .year-title, .ccb-datetime div.date .calendar-select-order .month-list .year .year-title, .ccb-datetime div.date .calendar-select .month-list .year .month-title, .ccb-datetime div.date .calendar-select-order .month-list .year .month-title, .ccb-datetime div.date .calendar-select .month-list .month .decade-title, .ccb-datetime div.date .calendar-select-order .month-list .month .decade-title, .ccb-datetime div.date .calendar-select .month-list .month .year-title, .ccb-datetime div.date .calendar-select-order .month-list .month .year-title, .ccb-datetime div.date .calendar-select .month-list .month .month-title, .ccb-datetime div.date .calendar-select-order .month-list .month .month-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 17px 0;
  margin-top: 2px;
}
.ccb-datetime div.date .calendar-select .year-decades-list .decade .decade-title:hover, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .decade-title:hover, .ccb-datetime div.date .calendar-select .year-decades-list .decade .year-title:hover, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .year-title:hover, .ccb-datetime div.date .calendar-select .year-decades-list .decade .month-title:hover, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .month-title:hover, .ccb-datetime div.date .calendar-select .year-decades-list .year .decade-title:hover, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .decade-title:hover, .ccb-datetime div.date .calendar-select .year-decades-list .year .year-title:hover, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .year-title:hover, .ccb-datetime div.date .calendar-select .year-decades-list .year .month-title:hover, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .month-title:hover, .ccb-datetime div.date .calendar-select .year-decades-list .month .decade-title:hover, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .decade-title:hover, .ccb-datetime div.date .calendar-select .year-decades-list .month .year-title:hover, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .year-title:hover, .ccb-datetime div.date .calendar-select .year-decades-list .month .month-title:hover, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .month-title:hover, .ccb-datetime div.date .calendar-select .year-list .decade .decade-title:hover, .ccb-datetime div.date .calendar-select-order .year-list .decade .decade-title:hover, .ccb-datetime div.date .calendar-select .year-list .decade .year-title:hover, .ccb-datetime div.date .calendar-select-order .year-list .decade .year-title:hover, .ccb-datetime div.date .calendar-select .year-list .decade .month-title:hover, .ccb-datetime div.date .calendar-select-order .year-list .decade .month-title:hover, .ccb-datetime div.date .calendar-select .year-list .year .decade-title:hover, .ccb-datetime div.date .calendar-select-order .year-list .year .decade-title:hover, .ccb-datetime div.date .calendar-select .year-list .year .year-title:hover, .ccb-datetime div.date .calendar-select-order .year-list .year .year-title:hover, .ccb-datetime div.date .calendar-select .year-list .year .month-title:hover, .ccb-datetime div.date .calendar-select-order .year-list .year .month-title:hover, .ccb-datetime div.date .calendar-select .year-list .month .decade-title:hover, .ccb-datetime div.date .calendar-select-order .year-list .month .decade-title:hover, .ccb-datetime div.date .calendar-select .year-list .month .year-title:hover, .ccb-datetime div.date .calendar-select-order .year-list .month .year-title:hover, .ccb-datetime div.date .calendar-select .year-list .month .month-title:hover, .ccb-datetime div.date .calendar-select-order .year-list .month .month-title:hover, .ccb-datetime div.date .calendar-select .month-list .decade .decade-title:hover, .ccb-datetime div.date .calendar-select-order .month-list .decade .decade-title:hover, .ccb-datetime div.date .calendar-select .month-list .decade .year-title:hover, .ccb-datetime div.date .calendar-select-order .month-list .decade .year-title:hover, .ccb-datetime div.date .calendar-select .month-list .decade .month-title:hover, .ccb-datetime div.date .calendar-select-order .month-list .decade .month-title:hover, .ccb-datetime div.date .calendar-select .month-list .year .decade-title:hover, .ccb-datetime div.date .calendar-select-order .month-list .year .decade-title:hover, .ccb-datetime div.date .calendar-select .month-list .year .year-title:hover, .ccb-datetime div.date .calendar-select-order .month-list .year .year-title:hover, .ccb-datetime div.date .calendar-select .month-list .year .month-title:hover, .ccb-datetime div.date .calendar-select-order .month-list .year .month-title:hover, .ccb-datetime div.date .calendar-select .month-list .month .decade-title:hover, .ccb-datetime div.date .calendar-select-order .month-list .month .decade-title:hover, .ccb-datetime div.date .calendar-select .month-list .month .year-title:hover, .ccb-datetime div.date .calendar-select-order .month-list .month .year-title:hover, .ccb-datetime div.date .calendar-select .month-list .month .month-title:hover, .ccb-datetime div.date .calendar-select-order .month-list .month .month-title:hover {
  cursor: pointer;
}
.ccb-datetime div.date .calendar-select .year-decades-list .decade .decade-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .decade-title, .ccb-datetime div.date .calendar-select .year-decades-list .year .decade-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .decade-title, .ccb-datetime div.date .calendar-select .year-decades-list .month .decade-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .decade-title, .ccb-datetime div.date .calendar-select .year-list .decade .decade-title, .ccb-datetime div.date .calendar-select-order .year-list .decade .decade-title, .ccb-datetime div.date .calendar-select .year-list .year .decade-title, .ccb-datetime div.date .calendar-select-order .year-list .year .decade-title, .ccb-datetime div.date .calendar-select .year-list .month .decade-title, .ccb-datetime div.date .calendar-select-order .year-list .month .decade-title, .ccb-datetime div.date .calendar-select .month-list .decade .decade-title, .ccb-datetime div.date .calendar-select-order .month-list .decade .decade-title, .ccb-datetime div.date .calendar-select .month-list .year .decade-title, .ccb-datetime div.date .calendar-select-order .month-list .year .decade-title, .ccb-datetime div.date .calendar-select .month-list .month .decade-title, .ccb-datetime div.date .calendar-select-order .month-list .month .decade-title {
  padding: 17px 20px;
}
@media (max-width: 420px) {
  .ccb-datetime div.date .calendar-select .year-decades-list .decade .decade-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .decade-title, .ccb-datetime div.date .calendar-select .year-decades-list .year .decade-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .decade-title, .ccb-datetime div.date .calendar-select .year-decades-list .month .decade-title, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .decade-title, .ccb-datetime div.date .calendar-select .year-list .decade .decade-title, .ccb-datetime div.date .calendar-select-order .year-list .decade .decade-title, .ccb-datetime div.date .calendar-select .year-list .year .decade-title, .ccb-datetime div.date .calendar-select-order .year-list .year .decade-title, .ccb-datetime div.date .calendar-select .year-list .month .decade-title, .ccb-datetime div.date .calendar-select-order .year-list .month .decade-title, .ccb-datetime div.date .calendar-select .month-list .decade .decade-title, .ccb-datetime div.date .calendar-select-order .month-list .decade .decade-title, .ccb-datetime div.date .calendar-select .month-list .year .decade-title, .ccb-datetime div.date .calendar-select-order .month-list .year .decade-title, .ccb-datetime div.date .calendar-select .month-list .month .decade-title, .ccb-datetime div.date .calendar-select-order .month-list .month .decade-title {
    padding: 11px;
  }
}
.ccb-datetime div.date .calendar-select .year-decades-list .decade .selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .selected, .ccb-datetime div.date .calendar-select .year-decades-list .year .selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .selected, .ccb-datetime div.date .calendar-select .year-decades-list .month .selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .selected, .ccb-datetime div.date .calendar-select .year-list .decade .selected, .ccb-datetime div.date .calendar-select-order .year-list .decade .selected, .ccb-datetime div.date .calendar-select .year-list .year .selected, .ccb-datetime div.date .calendar-select-order .year-list .year .selected, .ccb-datetime div.date .calendar-select .year-list .month .selected, .ccb-datetime div.date .calendar-select-order .year-list .month .selected, .ccb-datetime div.date .calendar-select .month-list .decade .selected, .ccb-datetime div.date .calendar-select-order .month-list .decade .selected, .ccb-datetime div.date .calendar-select .month-list .year .selected, .ccb-datetime div.date .calendar-select-order .month-list .year .selected, .ccb-datetime div.date .calendar-select .month-list .month .selected, .ccb-datetime div.date .calendar-select-order .month-list .month .selected {
  border-radius: 4px;
}
.ccb-datetime div.date .calendar-select .year-decades-list .decade .inactive, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .inactive, .ccb-datetime div.date .calendar-select .year-decades-list .year .inactive, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .inactive, .ccb-datetime div.date .calendar-select .year-decades-list .month .inactive, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .inactive, .ccb-datetime div.date .calendar-select .year-list .decade .inactive, .ccb-datetime div.date .calendar-select-order .year-list .decade .inactive, .ccb-datetime div.date .calendar-select .year-list .year .inactive, .ccb-datetime div.date .calendar-select-order .year-list .year .inactive, .ccb-datetime div.date .calendar-select .year-list .month .inactive, .ccb-datetime div.date .calendar-select-order .year-list .month .inactive, .ccb-datetime div.date .calendar-select .month-list .decade .inactive, .ccb-datetime div.date .calendar-select-order .month-list .decade .inactive, .ccb-datetime div.date .calendar-select .month-list .year .inactive, .ccb-datetime div.date .calendar-select-order .month-list .year .inactive, .ccb-datetime div.date .calendar-select .month-list .month .inactive, .ccb-datetime div.date .calendar-select-order .month-list .month .inactive {
  color: #9196A1;
}
.ccb-datetime div.date .calendar-select .year-decades-list .decade .current-year, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .current-year, .ccb-datetime div.date .calendar-select .year-decades-list .decade .current-month, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .current-month, .ccb-datetime div.date .calendar-select .year-decades-list .decade .current-decade, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .current-decade, .ccb-datetime div.date .calendar-select .year-decades-list .year .current-year, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .current-year, .ccb-datetime div.date .calendar-select .year-decades-list .year .current-month, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .current-month, .ccb-datetime div.date .calendar-select .year-decades-list .year .current-decade, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .current-decade, .ccb-datetime div.date .calendar-select .year-decades-list .month .current-year, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .current-year, .ccb-datetime div.date .calendar-select .year-decades-list .month .current-month, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .current-month, .ccb-datetime div.date .calendar-select .year-decades-list .month .current-decade, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .current-decade, .ccb-datetime div.date .calendar-select .year-list .decade .current-year, .ccb-datetime div.date .calendar-select-order .year-list .decade .current-year, .ccb-datetime div.date .calendar-select .year-list .decade .current-month, .ccb-datetime div.date .calendar-select-order .year-list .decade .current-month, .ccb-datetime div.date .calendar-select .year-list .decade .current-decade, .ccb-datetime div.date .calendar-select-order .year-list .decade .current-decade, .ccb-datetime div.date .calendar-select .year-list .year .current-year, .ccb-datetime div.date .calendar-select-order .year-list .year .current-year, .ccb-datetime div.date .calendar-select .year-list .year .current-month, .ccb-datetime div.date .calendar-select-order .year-list .year .current-month, .ccb-datetime div.date .calendar-select .year-list .year .current-decade, .ccb-datetime div.date .calendar-select-order .year-list .year .current-decade, .ccb-datetime div.date .calendar-select .year-list .month .current-year, .ccb-datetime div.date .calendar-select-order .year-list .month .current-year, .ccb-datetime div.date .calendar-select .year-list .month .current-month, .ccb-datetime div.date .calendar-select-order .year-list .month .current-month, .ccb-datetime div.date .calendar-select .year-list .month .current-decade, .ccb-datetime div.date .calendar-select-order .year-list .month .current-decade, .ccb-datetime div.date .calendar-select .month-list .decade .current-year, .ccb-datetime div.date .calendar-select-order .month-list .decade .current-year, .ccb-datetime div.date .calendar-select .month-list .decade .current-month, .ccb-datetime div.date .calendar-select-order .month-list .decade .current-month, .ccb-datetime div.date .calendar-select .month-list .decade .current-decade, .ccb-datetime div.date .calendar-select-order .month-list .decade .current-decade, .ccb-datetime div.date .calendar-select .month-list .year .current-year, .ccb-datetime div.date .calendar-select-order .month-list .year .current-year, .ccb-datetime div.date .calendar-select .month-list .year .current-month, .ccb-datetime div.date .calendar-select-order .month-list .year .current-month, .ccb-datetime div.date .calendar-select .month-list .year .current-decade, .ccb-datetime div.date .calendar-select-order .month-list .year .current-decade, .ccb-datetime div.date .calendar-select .month-list .month .current-year, .ccb-datetime div.date .calendar-select-order .month-list .month .current-year, .ccb-datetime div.date .calendar-select .month-list .month .current-month, .ccb-datetime div.date .calendar-select-order .month-list .month .current-month, .ccb-datetime div.date .calendar-select .month-list .month .current-decade, .ccb-datetime div.date .calendar-select-order .month-list .month .current-decade {
  border-radius: 4px;
}
.ccb-datetime div.date .calendar-select .year-decades-list .decade .current-year.selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .current-year.selected, .ccb-datetime div.date .calendar-select .year-decades-list .decade .current-month.selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .current-month.selected, .ccb-datetime div.date .calendar-select .year-decades-list .decade .current-decade.selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .decade .current-decade.selected, .ccb-datetime div.date .calendar-select .year-decades-list .year .current-year.selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .current-year.selected, .ccb-datetime div.date .calendar-select .year-decades-list .year .current-month.selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .current-month.selected, .ccb-datetime div.date .calendar-select .year-decades-list .year .current-decade.selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .year .current-decade.selected, .ccb-datetime div.date .calendar-select .year-decades-list .month .current-year.selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .current-year.selected, .ccb-datetime div.date .calendar-select .year-decades-list .month .current-month.selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .current-month.selected, .ccb-datetime div.date .calendar-select .year-decades-list .month .current-decade.selected, .ccb-datetime div.date .calendar-select-order .year-decades-list .month .current-decade.selected, .ccb-datetime div.date .calendar-select .year-list .decade .current-year.selected, .ccb-datetime div.date .calendar-select-order .year-list .decade .current-year.selected, .ccb-datetime div.date .calendar-select .year-list .decade .current-month.selected, .ccb-datetime div.date .calendar-select-order .year-list .decade .current-month.selected, .ccb-datetime div.date .calendar-select .year-list .decade .current-decade.selected, .ccb-datetime div.date .calendar-select-order .year-list .decade .current-decade.selected, .ccb-datetime div.date .calendar-select .year-list .year .current-year.selected, .ccb-datetime div.date .calendar-select-order .year-list .year .current-year.selected, .ccb-datetime div.date .calendar-select .year-list .year .current-month.selected, .ccb-datetime div.date .calendar-select-order .year-list .year .current-month.selected, .ccb-datetime div.date .calendar-select .year-list .year .current-decade.selected, .ccb-datetime div.date .calendar-select-order .year-list .year .current-decade.selected, .ccb-datetime div.date .calendar-select .year-list .month .current-year.selected, .ccb-datetime div.date .calendar-select-order .year-list .month .current-year.selected, .ccb-datetime div.date .calendar-select .year-list .month .current-month.selected, .ccb-datetime div.date .calendar-select-order .year-list .month .current-month.selected, .ccb-datetime div.date .calendar-select .year-list .month .current-decade.selected, .ccb-datetime div.date .calendar-select-order .year-list .month .current-decade.selected, .ccb-datetime div.date .calendar-select .month-list .decade .current-year.selected, .ccb-datetime div.date .calendar-select-order .month-list .decade .current-year.selected, .ccb-datetime div.date .calendar-select .month-list .decade .current-month.selected, .ccb-datetime div.date .calendar-select-order .month-list .decade .current-month.selected, .ccb-datetime div.date .calendar-select .month-list .decade .current-decade.selected, .ccb-datetime div.date .calendar-select-order .month-list .decade .current-decade.selected, .ccb-datetime div.date .calendar-select .month-list .year .current-year.selected, .ccb-datetime div.date .calendar-select-order .month-list .year .current-year.selected, .ccb-datetime div.date .calendar-select .month-list .year .current-month.selected, .ccb-datetime div.date .calendar-select-order .month-list .year .current-month.selected, .ccb-datetime div.date .calendar-select .month-list .year .current-decade.selected, .ccb-datetime div.date .calendar-select-order .month-list .year .current-decade.selected, .ccb-datetime div.date .calendar-select .month-list .month .current-year.selected, .ccb-datetime div.date .calendar-select-order .month-list .month .current-year.selected, .ccb-datetime div.date .calendar-select .month-list .month .current-month.selected, .ccb-datetime div.date .calendar-select-order .month-list .month .current-month.selected, .ccb-datetime div.date .calendar-select .month-list .month .current-decade.selected, .ccb-datetime div.date .calendar-select-order .month-list .month .current-decade.selected {
  border: none;
}
.ccb-datetime div.date .calendar-select .day-list, .ccb-datetime div.date .calendar-select-order .day-list {
  display: flex;
  flex-direction: column;
}
.ccb-datetime div.date .calendar-select .day-list .week-titles, .ccb-datetime div.date .calendar-select-order .day-list .week-titles {
  position: relative;
  display: inline-flex;
  margin-bottom: 5px;
  width: 100%;
}
.ccb-datetime div.date .calendar-select .day-list .week-titles .title, .ccb-datetime div.date .calendar-select-order .day-list .week-titles .title {
  position: relative;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  flex: 1 1 13%; /*grow | shrink | basis */
  justify-content: center;
  opacity: 0.5;
  color: #001931;
  font-size: 12px;
  font-weight: 500;
}
.ccb-datetime div.date .calendar-select .day-list .week, .ccb-datetime div.date .calendar-select-order .day-list .week {
  display: inline-flex;
  margin-bottom: 1px;
  color: #00b163;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  column-gap: 2px;
}
.ccb-datetime div.date .calendar-select .day-list .week .day, .ccb-datetime div.date .calendar-select-order .day-list .week .day {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 13%; /*grow | shrink | basis */
  width: 50px;
  height: 41px;
  color: #001931;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  background-color: #eef1f7;
}
.ccb-datetime div.date .calendar-select .day-list .week .day:before, .ccb-datetime div.date .calendar-select-order .day-list .week .day:before {
  content: "";
  display: block;
  padding-top: 100%; /* initial ratio of 1:1*/
}
.ccb-datetime div.date .calendar-select .day-list .week .day:not(.day-off, .inactive):hover, .ccb-datetime div.date .calendar-select-order .day-list .week .day:not(.day-off, .inactive):hover, .ccb-datetime div.date .calendar-select .day-list .week .day:focus, .ccb-datetime div.date .calendar-select-order .day-list .week .day:focus {
  border: 1px solid #00b163;
  background-color: rgba(0, 177, 99, 0.2);
  color: #00b163;
  cursor: pointer;
}
.ccb-datetime div.date .calendar-select .day-list .week .day.today, .ccb-datetime div.date .calendar-select-order .day-list .week .day.today {
  border: 1px solid transparent;
  background-color: rgba(0, 177, 99, 0.2);
}
.ccb-datetime div.date .calendar-select .day-list .week .day.selected, .ccb-datetime div.date .calendar-select-order .day-list .week .day.selected {
  color: #ffffff !important;
  border: 1px solid #00b163 !important;
  background-color: #00b163 !important;
}
.ccb-datetime div.date .calendar-select .day-list .week .day.selected.inactive.not-allowed, .ccb-datetime div.date .calendar-select-order .day-list .week .day.selected.inactive.not-allowed {
  background-color: #eef1f7 !important;
  color: rgba(0, 25, 49, 0.3) !important;
}
.ccb-datetime div.date .calendar-select .day-list .week .day.inactive, .ccb-datetime div.date .calendar-select-order .day-list .week .day.inactive, .ccb-datetime div.date .calendar-select .day-list .week .day.inactive.ccb-not-allowed {
  background-color: #eef1f7;
  color: rgba(0, 25, 49, 0.3);
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}
.ccb-datetime div.date .calendar-select .day-list .week .day:not(.selected).not-current-month, .ccb-datetime div.date .calendar-select-order .day-list .week .day:not(.selected).not-current-month {
  background-color: #eef1f7;
  color: rgba(0, 25, 49, 0.3);
  opacity: 0.3;
}
@media (max-width: 600px) {
  .ccb-datetime div.date .calendar-select, .ccb-datetime div.date .calendar-select-order {
    min-width: 100%;
  }
}
.ccb-datetime div.date .calendar-select-order {
  display: block;
}
.ccb-datetime div.date .error-tip {
  position: absolute;
  right: 0;
  padding: 0px 10px;
  height: 21px;
  bottom: -24px;
  width: max-content;
  max-width: 100%;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  background-color: #d94141;
  text-align: center;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  color: #fff;
  display: flex;
  align-items: center;
  z-index: 101;
}
.ccb-datetime div.date .error-tip::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  z-index: 10;
  border: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #d94141;
  right: 0;
  bottom: 19px;
  margin-right: 15px;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .ccb-datetime div.date .calc-date-picker-select span {
    width: 160px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
}
@media (max-width: 430px) {
  .ccb-datetime div.date .calc-date-picker-select span {
    width: 160px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
}

.two_column .year-decades-list .decade-title, .two_column .year-list .decade-title, .two_column .month-list .decade-title {
  padding: 17px !important;
}
@media (max-width: 420px) {
  .two_column .year-decades-list .decade-title, .two_column .year-list .decade-title, .two_column .month-list .decade-title {
    padding: 11px;
  }
}

body .ccb-field[data-id^=datePicker].required .calc-required-field .ccb-field-required-tooltip {
  position: relative;
  top: -5px;
  margin-left: 0;
  width: max-content;
}

.mx-datepicker-popup {
  min-width: 270px;
}
@media screen and (max-width: 550px) {
  .mx-datepicker-popup {
    left: 0% !important;
    width: 350px !important;
  }
}
.mx-datepicker-popup.range {
  min-width: 530px;
}
.mx-datepicker-popup.range .mx-datepicker-top {
  display: block;
  text-align: center;
}
.mx-datepicker-popup.range .mx-datepicker-top span:last-child:after {
  display: none;
}
@media screen and (max-width: 550px) {
  .mx-datepicker-popup.range div:first-child {
    display: flex;
    flex-direction: column;
  }
  .mx-datepicker-popup.range div:first-child .mx-datepicker-top {
    display: block;
  }
  .mx-datepicker-popup.range div:first-child .mx-calendar {
    width: 100% !important;
  }
  .mx-datepicker-popup.range div:first-child .mx-calendar .mx-calendar-header {
    display: block;
  }
  .mx-datepicker-popup.range div.mx-datepicker-footer {
    text-align: left;
    padding: 10px;
  }
}
.mx-datepicker-popup .mx-datepicker-btn {
  padding: 7px 15px !important;
  margin: 5px !important;
}

.mx-datepicker .range-control-widget {
  display: none;
}

.condition-item .time-picker-overlay {
  display: none;
}
.condition-item .vue__time-picker .dropdown ul li {
  color: #161616 !important;
  background: #fff !important;
}
.condition-item .vue__time-picker .dropdown ul li.active, .condition-item .vue__time-picker .dropdown ul li:hover {
  background: #41b883 !important;
  color: white !important;
}
.condition-item .vue__time-picker .dropdown {
  background: #fff !important;
}

.vue__time-picker-dropdown .hint, .vue__time-picker .dropdown .hint {
  display: none;
}

.ccb-time-picker.calc-field-disabled-condition .vue__time-picker .controls .clear-btn {
  pointer-events: none;
}

.ccb-time-picker .vue__time-picker-dropdown, .ccb-time-picker .vue__time-picker .dropdown {
  top: auto;
}

.ccb-field.required .ccb-time-picker-wrapper {
  border-color: #D94141 !important;
}

.ccb-time-picker-wrapper:focus {
  border-color: black;
}

.ccb-modal-wrapper .modal-window .modal-body .condition-item .action .custom-input-date .vue__time-picker .dropdown {
  position: absolute !important;
  right: auto !important;
}

.vue__time-picker ul.hours::-webkit-scrollbar, .vue__time-picker ul.minutes::-webkit-scrollbar {
  display: none;
}

.ccb-empty-label {
  opacity: 0;
}

span.ccb-error-tip.front.default.active.hidden {
  display: none;
}

.ccb-time-picker {
  position: relative;
}
.ccb-time-picker .ccb-error-tip.default {
  bottom: 55px;
}
@media (max-width: 1023px) {
  .ccb-time-picker .ccb-error-tip.default {
    right: 120px;
  }
}
.ccb-time-picker .ccb-error-tip:after {
  left: 10px;
}
.ccb-time-picker .error-tip:after {
  left: 70px;
}
.ccb-time-picker .ccb-time-picker-no-range {
  left: 8rem;
}
.ccb-time-picker span.error-tip {
  position: absolute;
  right: 13px;
  padding: 5px 10px;
  height: 25px;
  top: -31px;
  width: max-content;
  max-width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  background-color: #d94141;
  text-align: center;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
}
.ccb-time-picker span.error-tip::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  z-index: 10;
  border: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #d94141;
  right: 0;
  top: 24px;
  margin-right: 15px;
}
@media (max-width: 1023px) {
  .ccb-time-picker span.error-tip {
    right: 100px;
  }
}
.ccb-time-picker .ccb-time-picker-wrapper {
  position: relative;
  --value-background: var(--primary-color);
  --value-background-hover: var(--primary-color);
}
.ccb-time-picker .ccb-time-picker-wrapper .dropdownBasic .controls .dropdown-btn {
  display: none;
}
.ccb-time-picker .ccb-time-picker-wrapper .dropdownStart .controls .dropdown-btn {
  display: none;
}
.ccb-time-picker .ccb-time-picker-wrapper .dropdownEnd .controls .dropdown-btn {
  display: none;
}
.ccb-time-picker .ccb-time-picker-wrapper .ccb-time-picker-range {
  display: flex;
}
.ccb-time-picker .ccb-time-picker-wrapper .ccb-time-picker-range .vue__time-picker input.display-time {
  width: 100%;
}
.ccb-time-picker .ccb-time-picker-wrapper .ccb-time-picker-range .separator {
  width: 47px;
  min-height: 44px;
  height: auto;
  flex-shrink: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right-width: 1px;
  border-left-width: 1px;
  border-color: var(--common-colors-gray-3-dddddd, #DDD);
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0;
  background: var(--common-colors-background-eef-1-f-7, #EEF1F7);
  font-family: "Eudoxus Sans", sans-serif;
}
.ccb-time-picker .ccb-time-picker-wrapper i.ccb-icon-timepicker-light-clock {
  font-size: 22px;
  opacity: 0.5;
}
.ccb-time-picker .ccb-time-picker-wrapper i.ccb-icon-timepicker-light-clock:hover {
  opacity: 0.8;
}
.ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker .controls .char {
  font-size: 22px;
  opacity: 0.5;
  padding-top: 1px;
}
.ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker .controls .char:hover {
  opacity: 0.8;
}
.ccb-time-picker .ccb-time-picker-wrapper.focused {
  border-color: var(--value-background) !important;
}
.ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker input.display-time {
  width: 10rem;
  cursor: pointer;
  border: none !important;
}
@media (max-width: 1280px) {
  .ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker input.display-time {
    width: 120px;
  }
}
@media (max-width: 600px) {
  .ccb-time-picker .ccb-time-picker-wrapper .ccb-time-picker-range .time-picker input.display-time, .ccb-time-picker .ccb-time-picker-wrapper .ccb-time-picker-basic .time-picker input.display-time {
    font-size: 14px !important;
  }
}
.ccb-time-picker .ccb-time-picker-wrapper .ccb-time-picker-range .time-picker .controls > *, .ccb-time-picker .ccb-time-picker-wrapper .ccb-time-picker-basic .time-picker .controls > * {
  padding: 0 4px;
}
.ccb-time-picker .ccb-time-picker-wrapper .ccb-time-picker-range .time-picker .ccb-icon-timepicker-light-clock, .ccb-time-picker .ccb-time-picker-wrapper .ccb-time-picker-basic .time-picker .ccb-icon-timepicker-light-clock {
  font-size: 16px;
}
.ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker .controls > * {
  padding: 0 10px;
}
.ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker {
  width: 100%;
  font-size: 16px;
}
.ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker input {
  display: flex;
  padding: 9px 11px 9px 15px !important;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: var(--calculator-colors-white, #FFF);
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  height: 44px;
  min-height: 44px !important;
  margin-bottom: 0;
}
.ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker .dropdown ul li:not([disabled]).active {
  background: var(--value-background);
}
.ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker .dropdown ul li:not([disabled]).active:hover {
  background: var(--value-background-hover);
}
.ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker .controls img {
  width: 22px;
  max-width: 22px;
}

.wp-admin .ccb-time-picker-wrapper .vue__time-picker input, .wp-admin .ccb-time-picker-wrapper .ccb-time-picker-range .separator {
  min-height: 40px;
}

.modal-window.preview .ccb-time-picker .ccb-time-picker-wrapper .vue__time-picker .time-picker-overlay {
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.calc-drop-down {
  margin-bottom: 3px;
}
.calc-drop-down .select {
  display: none !important;
}
.calc-drop-down .ccb-select-arrow {
  top: 54%;
  z-index: 2;
  right: 12px;
  opacity: 0.5;
  font-size: 8px;
  position: absolute;
  transform: translateY(-50%) rotate(180deg);
  transition: all 200ms ease-in-out;
}
.calc-drop-down .ccb-select-arrow.ccb-arrow-down {
  bottom: 14px;
  transform: translateY(-50%) rotate(0deg);
}
.calc-drop-down-current {
  width: 100%;
  display: flex;
  cursor: pointer;
  position: relative;
  align-items: center;
  padding-left: 5px;
}
.calc-drop-down-current.calc-dd-selected {
  border: 2px solid #00B163;
}
.calc-drop-down-current .calc-dd-with-option-label {
  word-break: break-all;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.calc-drop-down-list {
  display: none;
  z-index: 20;
  width: 100%;
  margin-top: 5px;
  border-radius: 4px;
  position: absolute;
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-height: 261px;
  overflow-y: auto;
}
.calc-drop-down-list-items {
  margin: 0 !important;
}
@media screen and (max-width: 500px) {
  .calc-drop-down-list {
    max-height: 170px;
  }
}
.calc-drop-down-list.calc-list-open {
  display: block !important;
}
.calc-drop-down-list-items {
  padding-left: 0 !important;
}
.calc-drop-down-list-items img {
  width: 12px;
}
.calc-drop-down-list-items li {
  padding: 20px;
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  border-bottom: 2px solid #f7f7f7;
  max-height: max-content;
  min-height: 71px;
}
.calc-drop-down-list-items li.disabled {
  display: none !important;
}
.calc-drop-down-list-items li span {
  flex: 1;
  color: inherit;
}
.calc-drop-down-list-items li span.calc-list-wrapper {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}
.calc-drop-down-list-items li span.calc-list-wrapper .calc-list-title {
  color: #001931;
  word-break: break-all;
  font-size: 15px;
  font-weight: 500;
}
.calc-drop-down-list-items li span.calc-list-wrapper .calc-list-price {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 25, 49, 0.7);
}
.calc-drop-down-list-items li:last-child {
  border-color: transparent;
}
.calc-drop-down-list-items li:hover {
  background: rgba(0, 25, 49, 0.1019607843) !important;
}

.calc-drop-down-with-image {
  margin-bottom: 3px;
}
.calc-drop-down-with-image .select {
  display: none !important;
}
.calc-drop-down-with-image .ccb-select-arrow {
  top: 54%;
  z-index: 2;
  right: 12px;
  opacity: 0.5;
  font-size: 8px;
  position: absolute;
  transform: translateY(-50%) rotate(180deg);
  transition: all 200ms ease-in-out;
}
.calc-drop-down-with-image .ccb-select-arrow.ccb-arrow-down {
  bottom: 14px;
  transform: translateY(-50%) rotate(0deg);
}
.calc-drop-down-with-image-current {
  width: 100%;
  display: flex;
  cursor: pointer;
  position: relative;
  align-items: center;
  padding-left: 5px;
}
.calc-drop-down-with-image-current.calc-dd-selected {
  border: 2px solid #00B163;
}
.calc-drop-down-with-image-current .calc-current-image-placeholder {
  width: 30px;
  height: 30px;
  display: block;
  opacity: 0;
  pointer-events: none;
}
.calc-drop-down-with-image-current .calc-dd-with-option-label {
  word-break: break-word;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin-right: 12px;
  line-height: 1.1;
}
.calc-drop-down-with-image-current img {
  width: 30px !important;
  height: 30px;
  border-radius: 4px;
  border: 1px solid transparent;
  object-fit: cover;
  margin-right: 8px;
}
.calc-drop-down-with-image-list {
  display: none;
  z-index: 20;
  width: 100%;
  margin-top: 5px;
  border-radius: 4px;
  position: absolute;
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-height: 261px;
  overflow-y: auto;
}
.calc-drop-down-with-image-list-items {
  margin: 0 !important;
}
@media screen and (max-width: 500px) {
  .calc-drop-down-with-image-list {
    max-height: 170px;
  }
}
.calc-drop-down-with-image-list.calc-list-open {
  display: block !important;
}
.calc-drop-down-with-image-list-items {
  padding-left: 0;
}
.calc-drop-down-with-image-list-items img {
  width: 12px;
}
.calc-drop-down-with-image-list-items li {
  padding: 10px;
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  border-bottom: 2px solid #f7f7f7;
  max-height: max-content;
  min-height: 71px;
}
.calc-drop-down-with-image-list-items li img {
  width: 50px !important;
  height: 50px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin-right: 10px;
  object-fit: cover;
  position: inherit !important;
}
@media screen and (max-width: 500px) {
  .calc-drop-down-with-image-list-items li img {
    width: 40px;
    height: 40px;
  }
}
.calc-drop-down-with-image-list-items li span {
  flex: 1;
  color: inherit;
}
.calc-drop-down-with-image-list-items li span.calc-list-wrapper {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}
.calc-drop-down-with-image-list-items li span.calc-list-wrapper .calc-list-title {
  word-break: break-word;
  color: #001931;
  font-size: 15px;
  font-weight: 500;
}
.calc-drop-down-with-image-list-items li span.calc-list-wrapper .calc-list-price {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 25, 49, 0.7);
}
.calc-drop-down-with-image-list-items li:last-child {
  border-color: transparent;
}

body .ccb-field .calc-required-field {
  color: #d94141;
  position: relative;
}
body .ccb-field .vertical {
  height: unset;
  line-height: unset;
  width: 100%;
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 17px 15px;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  outline: none;
  box-shadow: none;
}
body .ccb-field.required .info-tip-block span {
  color: #d94141 !important;
}
body .ccb-field.required .calc-required-field .ccb-field-required-tooltip {
  top: -170%;
  min-height: 21px;
  display: block;
  margin-left: 8px;
  position: absolute;
  border-radius: 6px;
  background-color: #d94141;
}
body .ccb-field.required .calc-required-field .ccb-field-required-tooltip-text {
  display: none;
  align-items: center;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 5px 10px;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
  white-space: nowrap;
}
body .ccb-field.required .calc-required-field .ccb-field-required-tooltip-text.active {
  display: flex !important;
}
body .ccb-field.required .calc-required-field .ccb-field-required-tooltip-text::after {
  content: "";
  top: 25px;
  position: absolute;
  border: 7px solid #d94141;
  border-color: #d94141 transparent transparent transparent !important;
}

.calc-input-wrapper {
  position: relative;
}
.calc-input-wrapper.url-file-upload {
  display: inline-flex;
  column-gap: 10px;
}
.calc-input-wrapper.url-file-upload .calc-input {
  width: 100%;
}
.calc-input-wrapper.url-file-upload .calc-input.error {
  border: 2px solid #d94141;
  background: #ffcbcb;
}
.calc-input-wrapper .calc-input {
  width: 100%;
}
.calc-input-wrapper .calc-input:focus {
  border: 2px solid #00b163;
}
.calc-input-wrapper input[type=number]::-webkit-outer-spin-button,
.calc-input-wrapper input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-input-wrapper input[type=number] {
  -moz-appearance: textfield;
}
.calc-input-wrapper .input-number-counter {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background-color: #eef1f7;
  right: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-input-wrapper .input-number-counter i {
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 8px;
  content: "";
}
.calc-input-wrapper .input-number-counter.down {
  bottom: 4px;
}
.calc-input-wrapper .input-number-counter.down i {
  line-height: 1;
}
.calc-input-wrapper .input-number-counter.up {
  top: 4px;
}

.ccb-drop-down .ccb-arrow,
.calc-input-wrapper .ccb-arrow {
  width: 10px;
  right: 20px;
  height: 10px;
  display: block;
  cursor: pointer;
  position: absolute;
  border: 2px solid transparent;
  border-left-color: #555;
  border-top-color: #555;
}
@media screen and (max-width: 500px) {
  .ccb-drop-down .ccb-arrow,
  .calc-input-wrapper .ccb-arrow {
    width: 6px;
    height: 6px;
  }
}
.ccb-drop-down .ccb-arrow.ccb-arrow-up,
.calc-input-wrapper .ccb-arrow.ccb-arrow-up {
  top: 14px;
  transform: rotate(45deg);
}
.ccb-drop-down .ccb-arrow.ccb-arrow-down,
.calc-input-wrapper .ccb-arrow.ccb-arrow-down {
  bottom: 14px;
  transform: rotate(-135deg);
}

.ccb-line {
  width: 100%;
  border-bottom-color: #bdc9ca;
  margin: 0 auto;
}

.calc-radio-wrapper.default {
  display: flex;
  column-gap: 20px;
  row-gap: 10px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.calc-radio-wrapper.default label, .calc-radio-wrapper.default span {
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0;
}
.calc-radio-wrapper.default label {
  display: flex !important;
  align-items: center !important;
  cursor: pointer;
}
.calc-radio-wrapper.default label .calc-radio-label {
  color: #001931;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  word-break: break-all;
}
.calc-radio-wrapper.default input[type=radio], .calc-radio-wrapper.boxed-with-radio input[type=radio] {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  max-width: 20px;
  min-width: 20px;
  max-height: 20px;
  min-height: 20px;
  border-radius: 50%;
  position: relative;
  border: 2px solid #dddddd;
  background-color: #ffffff;
  -webkit-appearance: none;
  margin-right: 7px;
  margin-top: 0;
  outline: none !important;
  box-shadow: none !important;
}
.calc-radio-wrapper.default input[type=radio]:focus, .calc-radio-wrapper.boxed-with-radio input[type=radio]:focus {
  outline: none !important;
  box-shadow: none !important;
}
.calc-radio-wrapper.default input[type=radio]:after, .calc-radio-wrapper.boxed-with-radio input[type=radio]:after {
  display: none !important;
}
.calc-radio-wrapper.default input[type=radio]:before, .calc-radio-wrapper.boxed-with-radio input[type=radio]:before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
}
.calc-radio-wrapper.default input[type=radio]:checked, .calc-radio-wrapper.boxed-with-radio input[type=radio]:checked {
  background: #00B163;
  border: 2px solid transparent !important;
}
.calc-radio-wrapper.default input[type=radio]:checked:before, .calc-radio-wrapper.boxed-with-radio input[type=radio]:checked:before {
  background: #fff;
}
.calc-radio-wrapper.boxed-with-radio, .calc-radio-wrapper.boxed {
  display: flex;
  row-gap: 10px;
  column-gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.calc-radio-wrapper.boxed-with-radio .calc-radio-item, .calc-radio-wrapper.boxed .calc-radio-item {
  display: flex;
  margin: 0;
  padding: 0;
  min-height: auto;
  flex-grow: unset !important;
}
.calc-radio-wrapper.boxed-with-radio .calc-radio-item label, .calc-radio-wrapper.boxed .calc-radio-item label {
  margin: 0;
  padding: 12px 30px;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}
.calc-radio-wrapper.boxed-with-radio .calc-radio-item input, .calc-radio-wrapper.boxed .calc-radio-item input {
  display: none !important;
}
.calc-radio-wrapper.boxed-with-radio .calc-radio-item input:checked + label, .calc-radio-wrapper.boxed .calc-radio-item input:checked + label {
  background: #00b163;
  border: 1px solid #00b163;
}
.calc-radio-wrapper.boxed-with-radio .calc-radio-item input:checked + label .calc-radio-label, .calc-radio-wrapper.boxed .calc-radio-item input:checked + label .calc-radio-label {
  color: #FFFFFF !important;
}
.calc-radio-wrapper.boxed-with-radio .calc-radio-item {
  position: relative;
}
.calc-radio-wrapper.boxed-with-radio .calc-radio-item label {
  padding: 12px 30px 12px 40px;
}
.calc-radio-wrapper.boxed-with-radio .calc-radio-item input {
  left: 15px;
  top: 14px;
  position: absolute;
  display: flex !important;
}
.calc-radio-wrapper.boxed-with-radio .calc-radio-item input:checked + label {
  background: rgba(0, 177, 99, 0.1019607843);
  border: 1px solid #00b163;
}
.calc-radio-wrapper.calc-radio-image {
  column-gap: 0;
  row-gap: 10px;
  margin-bottom: 5px;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.calc-radio-wrapper.calc-radio-image.default .calc-radio-image-wrapper {
  min-height: 220px;
  border: 2px solid #eeeeee;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 4px;
  cursor: pointer;
  max-width: unset;
  width: 48%;
}
.calc-radio-wrapper.calc-radio-image.default .calc-radio-image-wrapper .calc-radio-image-box {
  padding: 18px;
  line-height: 0.7;
  display: flex;
  flex: 1;
  width: 100%;
  height: 100%;
}
.calc-radio-wrapper.calc-radio-image.default .calc-radio-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.calc-radio-wrapper.calc-radio-image.default .calc-radio-info {
  width: 90%;
  padding: 5px 10px 12px 10px;
  position: relative;
}
.calc-radio-wrapper.calc-radio-image.default .calc-radio-info .calc-radio-title-box {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.calc-radio-wrapper.calc-radio-image.default .calc-radio-info .calc-radio-label {
  color: #001931;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  word-break: break-word;
}
.calc-radio-wrapper.calc-radio-image.default .calc-radio-info .calc-radio-price {
  color: rgba(0, 25, 49, 0.7019607843);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
}
.calc-radio-wrapper.calc-radio-image.default label {
  position: absolute;
  bottom: 10px;
  right: 2px;
}
.calc-radio-wrapper.calc-radio-image.default.calc-is-vertical .calc-radio-image-wrapper {
  width: 100%;
}
.calc-radio-wrapper.calc-radio-image.with-icon {
  justify-content: flex-start;
  flex-direction: row;
  row-gap: 10px;
  column-gap: 10px;
}
.calc-radio-wrapper.calc-radio-image.with-icon input {
  display: none;
}
.calc-radio-wrapper.calc-radio-image.with-icon .calc-radio-image-wrapper {
  cursor: pointer;
  height: 100%;
  line-height: 1;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
}
.calc-radio-wrapper.calc-radio-image.with-icon .calc-radio-image-wrapper.calc-radio-image-selected {
  border: 1px solid #00b163;
  background: rgba(0, 177, 99, 0.1019607843);
}
.calc-radio-wrapper.calc-radio-image.with-icon .calc-radio-image-wrapper img {
  width: 20px;
  height: 20px;
}
.calc-radio-wrapper.calc-is-vertical.calc-radio-image.with-icon .calc-radio-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.calc-radio-wrapper.calc-is-vertical .calc-radio-item {
  width: 100% !important;
}
.calc-radio-wrapper.calc-is-vertical .calc-radio-item label {
  width: 100%;
  display: flex;
}
.calc-radio-wrapper.calc-is-vertical.boxed .calc-radio-item label {
  justify-content: center;
}
.calc-radio-wrapper.calc-is-vertical.boxed-with-radio .calc-radio-item label {
  justify-content: flex-start;
}

.ccb-range-field {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .ccb-range-field {
    word-break: keep-all !important;
    max-width: 100%;
  }
}

.ccb-range-label {
  width: 80%;
}

.ccb-range-value {
  text-align: right;
  width: 20%;
}

.calc-range-slider-min-max {
  margin: 4px 0 0 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.calc-range-slider-min-max > span {
  font-size: 12px;
  font-weight: 500;
}

.calc-range-slider {
  width: 100% !important;
  min-width: 100% !important;
  border: none !important;
  --progress-shadow: none;
  --progress-flll-shadow: none;
  --primary-color: #00b163;
  --thumb-size: 14px;
  --value-active-color: white;
  --value-background: transparent;
  --value-offset-y: 6px;
  --track-height: 3px;
  --progress-radius: 20px;
  --progress-color: #EEEEEE;
  --ticks-thickness: 0px;
  --ticks-height: 0px;
  --min-max-x-offset: 0%;
  --min-max-opacity: 0.5;
  --ticks-color: #AAAAAA;
  --value-background-hover: var(--primary-color);
  --value-font: 700 12px/1 Arial;
  --fill-color: var(--primary-color);
  --progress-background: #eee;
  --min-max-font: 12px Arial;
  --thumb-color: white;
  --thumb-shadow: 0 0 0 7px var(--primary-color) inset, 0 0 0 99px white inset;
  --thumb-shadow-hover: 0 0 0 9px var(--primary-color) inset, 0 0 0 99px white inset;
  --thumb-shadow-active: 0 0 0 13px var(--primary-color) inset;
  --ticks-gap: var(--ticks-height, 0);
  --step: 1;
  --ticks-count: Calc(var(--max) - var(--min)) / var(--step);
  --maxTicksAllowed: 30;
  --too-many-ticks: Min(1, Max(var(--ticks-count) - var(--maxTicksAllowed), 0));
  --x-step: Max(var(--step), var(--too-many-ticks) * (var(--max) - var(--min)));
  --tickInterval: 100/ ((var(--max) - var(--min)) / var(--step)) * var(--tickEvery, 1);
  --tickIntervalPerc: calc((100% - var(--thumb-size)) / ((var(--max) - var(--min)) / var(--x-step)) * var(--tickEvery, 1));
  --value-a: clamp(var(--min), var(--value, 0), var(--max));
  --value-b: var(--value, 0);
  --text-value-a: var(--text-value, "");
  --completed-a: calc((var(--value-a) - var(--min)) / (var(--max) - var(--min)) * 100);
  --completed-b: calc((var(--value-b) - var(--min)) / (var(--max) - var(--min)) * 100);
  --ca: Min(var(--completed-a), var(--completed-b));
  --cb: Max(var(--completed-a), var(--completed-b));
  --thumbs-too-close: clamp(
          -1,
          1000 * (Min(1, Max(var(--cb) - var(--ca) - 5, -1)) + 0.001),
          1
  );
  --thumb-close-to-min: Min(1, Max(var(--ca) - 2, 0));
  --thumb-close-to-max: Min(1, Max(98 - var(--cb), 0));
  display: inline-block;
  height: max(var(--track-height), var(--thumb-size));
  background: linear-gradient(to right, var(--ticks-color) var(--ticks-thickness), transparent 1px) repeat-x;
  background-size: var(--tickIntervalPerc) var(--ticks-height);
  background-position-x: calc(var(--thumb-size) / 2 - var(--ticks-thickness) / 2);
  background-position-y: var(--flip-y, bottom);
  padding-bottom: var(--flip-y, var(--ticks-gap));
  padding-top: calc(var(--flip-y) * var(--ticks-gap));
  position: relative;
  z-index: 1;
}
.calc-range-slider[data-ticks-position=top] {
  --flip-y: 1;
}
.calc-range-slider::before, .calc-range-slider::after {
  --offset: calc(var(--thumb-size) / 2);
  content: counter(x);
  display: var(--show-min-max, block);
  font: var(--min-max-font);
  position: absolute;
  bottom: var(--flip-y, -2.5ch);
  top: calc(-2.5ch * var(--flip-y));
  opacity: clamp(0, var(--at-edge), var(--min-max-opacity));
  transform: translateX(calc(var(--min-max-x-offset) * var(--before, -1) * -1)) scale(var(--at-edge));
  pointer-events: none;
}
.calc-range-slider::before {
  --before: 1;
  --at-edge: var(--thumb-close-to-min);
  counter-reset: x var(--min);
  left: 0;
  top: 25px;
}
.calc-range-slider::after {
  --at-edge: var(--thumb-close-to-max);
  counter-reset: x var(--max);
  right: 0;
  top: 25px;
}
.calc-range-slider__values {
  position: relative;
  top: 50%;
  line-height: 0;
  text-align: justify;
  width: 100%;
  pointer-events: none;
  margin: 0 auto;
  z-index: 5;
}
.calc-range-slider__values::after {
  content: "";
  width: 100%;
  display: inline-block;
  height: 0;
  background: red;
}
.calc-range-slider__progress {
  --start-end: calc(var(--thumb-size) / 2);
  --clip-end: calc(100% - (var(--cb)) * 1%);
  --clip-start: calc(var(--ca) * 1%);
  --clip: inset(-20px var(--clip-end) -20px var(--clip-start));
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--ticks-gap) * var(--flip-y, 0) + var(--thumb-size) / 2 - var(--track-height) / 2);
  height: calc(var(--track-height));
  background: var(--progress-background, #eee);
  pointer-events: none;
  z-index: -1;
  border-radius: var(--progress-radius);
}
.calc-range-slider__progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  clip-path: var(--clip);
  top: 0;
  bottom: 0;
  background: var(--fill-color, black);
  box-shadow: var(--progress-flll-shadow);
  z-index: 1;
  border-radius: inherit;
}
.calc-range-slider__progress::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: var(--progress-shadow);
  pointer-events: none;
  border-radius: inherit;
}
.calc-range-slider > input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  --thumb-shadow: var(--thumb-shadow-active);
  cursor: grabbing;
  z-index: 2;
  -webkit-appearance: none;
  width: 100%;
  height: var(--thumb-size);
  position: absolute;
  left: 0;
  top: calc(50% - max(var(--track-height), var(--thumb-size)) / 2 + var(--ticks-gap) / 2 * var(--flip-y, -1));
  cursor: grab;
  background: none;
  min-height: auto;
}
.calc-range-slider > input:not(:only-of-type) {
  pointer-events: none;
}
.calc-range-slider > input::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  height: var(--thumb-size);
  width: var(--thumb-size);
  transform: var(--thumb-transform);
  border-radius: var(--thumb-radius, 50%);
  background: var(--thumb-color);
  box-shadow: var(--thumb-shadow);
  border: none;
  pointer-events: auto;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.calc-range-slider > input::-moz-range-thumb {
  appearance: none;
  height: var(--thumb-size);
  width: var(--thumb-size);
  transform: var(--thumb-transform);
  border-radius: var(--thumb-radius, 50%);
  background: var(--thumb-color);
  box-shadow: var(--thumb-shadow);
  border: none;
  pointer-events: auto;
  -moz-transition: 0.1s;
  transition: 0.1s;
}
.calc-range-slider > input::-ms-thumb {
  appearance: none;
  height: var(--thumb-size);
  width: var(--thumb-size);
  transform: var(--thumb-transform);
  border-radius: var(--thumb-radius, 50%);
  background: var(--thumb-color);
  box-shadow: var(--thumb-shadow);
  border: none;
  pointer-events: auto;
  -ms-transition: 0.1s;
  transition: 0.1s;
}
.calc-range-slider > input:focus + output, .calc-range-slider > input:active + output, .calc-range-slider > input:hover + output {
  opacity: 1;
  --value-background: var(--value-background-hover);
  --y-offset: -5px;
  color: var(--value-active-color);
  box-shadow: 0 0 0 3px var(--value-background);
}
.calc-range-slider > input:active {
  --thumb-shadow: var(--thumb-shadow-active);
  cursor: grabbing;
  z-index: 2;
}
.calc-range-slider > input:active + output {
  transition: 0s;
}
.calc-range-slider > input:nth-of-type(1) {
  --is-left-most: clamp(0, (var(--value-a) - var(--value-b)) * 99999, 1);
}
.calc-range-slider > input:nth-of-type(1) + output.cost-calc-range-output-pro {
  --value: var(--value-a);
  --x-offset: calc(var(--completed-a) * -1%);
}
.calc-range-slider > input:nth-of-type(1) + output.cost-calc-range-output-pro:not(:only-of-type) {
  --flip: calc(var(--thumbs-too-close) * -1);
}
.calc-range-slider > input:nth-of-type(1) + output.cost-calc-range-output-pro::after {
  content: var(--prefix, "") var(--text-value-a) var(--suffix, "");
}
.calc-range-slider > input:nth-of-type(1) + output.cost-calc-range-output-free:not(:only-of-type) {
  --flip: calc(var(--thumbs-too-close) * -1);
}
.calc-range-slider > input:nth-of-type(1) + output.cost-calc-range-output-free::after {
  content: var(--prefix, "") var(--text-value-a) var(--suffix, "");
}
.calc-range-slider > input:nth-of-type(2) {
  --is-left-most: clamp(0, (var(--value-b) - var(--value-a)) * 99999, 1);
}
.calc-range-slider > input:nth-of-type(2) + output {
  --value: var(--value-b);
}
.calc-range-slider > input:only-of-type ~ .calc-range-slider__progress {
  --clip-start: 0;
}
.calc-range-slider > input + output {
  min-height: 0.000001vw;
  white-space: nowrap;
  opacity: 0;
  --flip: -1;
  --x-offset: calc(var(--completed-b) * -1%);
  --pos: calc(
          ((var(--value) - var(--min)) / (var(--max) - var(--min))) * 100%
  );
  pointer-events: none;
  position: absolute;
  z-index: 5;
  background: var(--value-background);
  border-radius: 10px;
  padding: 0px 10px;
  left: var(--pos);
  transform: translate(var(--x-offset), calc(150% * var(--flip) - (var(--y-offset, 0px) + var(--value-offset-y)) * var(--flip)));
  transition: all 0.12s ease-out, left 0s;
}
.calc-range-slider > input + output::after {
  content: var(--prefix, "") var(--text-value-b) var(--suffix, "");
  font: var(--value-font);
}

.rtl input[type=range], .rtl .calc-range-slider, .rtl .cost-calc-range-output-free, .rtl .cost-calc-range-output-pro {
  transform: rotate(180deg);
}
.rtl .cost-calc-range-output-free, .rtl .cost-calc-range-output-pro {
  top: 24px;
  left: calc((var(--value) + var(--min)) / (var(--max) + var(--min)) * 90%);
}

.calc-range .ccb-field-required-tooltip {
  top: -5px !important;
  margin-left: 0 !important;
  position: relative !important;
  width: max-content;
}

.ccb-help-tip-block .ccb-help-label-range {
  color: #1AB163 !important;
  text-decoration: none !important;
}

.calc-textarea-box {
  position: relative;
}

.calc-textarea {
  resize: none;
  outline: none;
}
.calc-textarea:focus {
  border-color: #00b163;
}

.calc-html-textarea textarea {
  outline: none !important;
  box-shadow: none !important;
  padding: 10px 20px;
  resize: scroll;
  display: flex;
  max-width: 100%;
  width: 100%;
  min-height: 80px;
  border-radius: 4px;
  border: 1px solid #dddddd !important;
  background-color: #ffffff;
}

.calc-html-textarea .ccb-input-label {
  display: inline-block;
  margin-bottom: 5px;
  color: #001931;
  font-size: 12px;
  font-weight: 700;
}

.calc-toggle-container.default .calc-toggle-item .calc-toggle-wrapper, .calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-wrapper {
  margin: 0;
  margin-left: 10px;
  position: relative;
}
.calc-toggle-container.default .calc-toggle-item .calc-toggle-wrapper.active, .calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-wrapper.active {
  opacity: 0.6;
  pointer-events: none;
}
.calc-toggle-container.default .calc-toggle-item .calc-toggle-wrapper input, .calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-wrapper input {
  display: none;
}
.calc-toggle-container.default .calc-toggle-item .calc-toggle-wrapper label, .calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-wrapper label {
  cursor: pointer;
  width: 45px;
  height: 24px;
  background: #ccc;
  position: relative;
  border-radius: 46px;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.calc-toggle-container.default .calc-toggle-item .calc-toggle-wrapper label:after, .calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-wrapper label:after {
  content: "";
  background: #fff;
  top: 3px;
  width: 18px;
  height: 18px;
  position: absolute;
  border-radius: 100%;
  left: 3px;
  z-index: 2;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}
.calc-toggle-container.default .calc-toggle-item .calc-toggle-wrapper input, .calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-wrapper input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
.calc-toggle-container.default .calc-toggle-item .calc-toggle-wrapper input:checked + label:after, .calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-wrapper input:checked + label:after {
  background: #fff;
  left: 24px;
}
.calc-toggle-container.default .calc-toggle-item .calc-toggle-wrapper input:checked + label, .calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-wrapper input:checked + label {
  background: #00b163;
}
.calc-toggle-container.default {
  display: flex;
  row-gap: 10px;
  column-gap: 20px;
  flex-wrap: wrap;
}
.calc-toggle-container.default .calc-toggle-item {
  display: flex;
  padding: 0;
  vertical-align: middle;
  align-items: center;
}
.calc-toggle-container.default .calc-toggle-item > div {
  display: flex;
  align-items: center;
}
.calc-toggle-container.default .calc-toggle-item .calc-toggle-label-wrap .calc-toggle-label {
  color: #001931;
  font-size: 16px;
  font-weight: 500;
  word-break: break-word;
}
.calc-toggle-container.default .calc-toggle-item .calc-toggle-postfix {
  cursor: pointer;
}
.calc-toggle-container.default .calc-toggle-item .calc-toggle-postfix .calc-postfix-text {
  color: rgba(0, 25, 49, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.calc-toggle-container.boxed-with-toggle-and-description {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item {
  display: flex;
  width: 100%;
  padding: 15px;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1.25;
  column-gap: 10px;
}
.calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}
.calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-label-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}
.calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item .calc-toggle-label-wrap .calc-toggle-description {
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 25, 49, 0.7);
}
.calc-toggle-container.boxed-with-toggle-and-description .calc-toggle-item.calc-is-checked {
  border: 1px solid #00b163;
  background: rgba(0, 177, 99, 0.1019607843);
}
.calc-toggle-container.calc-is-vertical .calc-toggle-item {
  width: 100% !important;
}

.calc-repeater {
  row-gap: 20px;
}
.calc-repeater .calc-repeater-wrapper {
  display: flex;
  flex-direction: column;
  border-left: 2px solid #dddddd;
  padding-left: 15px;
}
.calc-repeater .calc-repeater-wrapper .calc-item__title {
  word-break: break-word;
  position: relative;
}
.calc-repeater .calc-repeater-wrapper .calc-item__title .is-pro {
  cursor: pointer;
  color: #fff !important;
  border-radius: 4px;
  z-index: 3;
  background-color: #22c7fd;
  font-size: 11px;
  padding: 4px 8px;
}
.calc-repeater .calc-repeater-wrapper .calc-item__title .is-pro .pro-tooltiptext {
  visibility: hidden;
  width: 97px;
  z-index: 10;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  box-sizing: content-box;
  padding: 6px 9px !important;
  position: absolute;
  font-size: 12px !important;
  z-index: 1;
  bottom: 185%;
  left: 82%;
  transition: visible 0.1s linear;
  margin-left: -63px !important;
  text-transform: initial;
}
.calc-repeater .calc-repeater-wrapper .calc-item__title .is-pro .pro-tooltiptext:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
}
.calc-repeater .calc-repeater-wrapper .calc-item__title .is-pro:hover .pro-tooltiptext {
  visibility: visible;
}
.calc-repeater .calc-repeater-wrapper .ccb-repeater-field {
  max-width: max-content;
  display: flex;
}
.calc-repeater .calc-repeater-wrapper .ccb-repeater-field span {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 6px;
}
.calc-repeater .calc-repeater-wrapper .ccb-repeater-field span i {
  font-size: 12px;
  transition: all 200ms linear;
}
.calc-repeater .calc-repeater-wrapper .ccb-repeater-field span.ccb-collapsed i {
  transform: rotate(-180deg);
}
.calc-repeater .calc-repeater-wrapper .ccb-repeater-field .ccb-repeater-field-number {
  opacity: 0.6;
  margin-left: 3px;
  min-width: max-content;
}
.calc-repeater .calc-repeater-wrapper .calc-repeater-fields {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 8px;
}

.two_column .calc-repeater .calc-repeater-wrapper .calendar-select .decade-title, .two_column .calc-repeater .calc-repeater-wrapper .ccb-datetime div.date .calendar-select-order .decade-title, .ccb-datetime div.date .two_column .calc-repeater .calc-repeater-wrapper .calendar-select-order .decade-title {
  padding: 15px !important;
}
@media (max-width: 420px) {
  .two_column .calc-repeater .calc-repeater-wrapper .calendar-select .decade-title, .two_column .calc-repeater .calc-repeater-wrapper .ccb-datetime div.date .calendar-select-order .decade-title, .ccb-datetime div.date .two_column .calc-repeater .calc-repeater-wrapper .calendar-select-order .decade-title {
    padding: 11px !important;
  }
}

@media (max-width: 370px) {
  .calc-repeater .calc-repeater-wrapper .calendar-select .decade-title, .calc-repeater .calc-repeater-wrapper .ccb-datetime div.date .calendar-select-order .decade-title, .ccb-datetime div.date .calc-repeater .calc-repeater-wrapper .calendar-select-order .decade-title {
    padding: 7px !important;
  }
}

.calc-preview-mobile .calc-repeater .calc-repeater-wrapper .calendar-select .decade-title, .calc-preview-mobile .calc-repeater .calc-repeater-wrapper .ccb-datetime div.date .calendar-select-order .decade-title, .ccb-datetime div.date .calc-preview-mobile .calc-repeater .calc-repeater-wrapper .calendar-select-order .decade-title {
  padding: 10px 11px !important;
}

.calc-repeater-subtotal {
  padding: 0 0 0 15px;
}
.calc-repeater-subtotal-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 5px;
  max-width: max-content;
  cursor: pointer;
}
.calc-repeater-subtotal-header i {
  font-size: 10px;
  transition: all 200ms linear;
}
.calc-repeater-subtotal-header.ccb-collapsed i {
  transform: rotate(-180deg);
}
.calc-repeater-subtotal .ccb-repeater-field-number {
  opacity: 0.6;
  margin-left: 3px;
}
.calc-repeater-subtotal-fields {
  padding-left: 5px;
}

.calc-group {
  row-gap: 20px;
}
.calc-group .calc-group-wrapper {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #dddddd;
  padding-bottom: 20px;
}
.calc-group .calc-group-wrapper .calc-item__title {
  word-break: break-word;
  position: relative;
}
.calc-group .calc-group-wrapper .calc-item__title .is-pro {
  cursor: pointer;
  color: #fff !important;
  border-radius: 4px;
  z-index: 3;
  background-color: #22c7fd;
  font-size: 11px;
  padding: 4px 8px;
}
.calc-group .calc-group-wrapper .calc-item__title .is-pro .pro-tooltiptext {
  visibility: hidden;
  width: 97px;
  z-index: 10;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  box-sizing: content-box;
  padding: 6px 9px !important;
  position: absolute;
  font-size: 12px !important;
  z-index: 1;
  bottom: 185%;
  left: 82%;
  transition: visible 0.1s linear;
  margin-left: -63px !important;
  text-transform: initial;
}
.calc-group .calc-group-wrapper .calc-item__title .is-pro .pro-tooltiptext:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
}
.calc-group .calc-group-wrapper .calc-item__title .is-pro:hover .pro-tooltiptext {
  visibility: visible;
}
.calc-group .calc-group-wrapper .ccb-group-field {
  max-width: max-content;
}
.calc-group .calc-group-wrapper .ccb-group-field span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 6px;
}
.calc-group .calc-group-wrapper .ccb-group-field span.collapsible {
  cursor: pointer;
}
.calc-group .calc-group-wrapper .ccb-group-field span i {
  font-size: 12px;
  transition: all 200ms linear;
}
.calc-group .calc-group-wrapper .ccb-group-field span.ccb-collapsed i {
  transform: rotate(-180deg);
}
.calc-group .calc-group-wrapper .calc-group-fields {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 8px;
}

.calc-group-subtotal {
  padding: 0 0 0 15px;
}
.calc-group-subtotal-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 5px;
  max-width: max-content;
  cursor: pointer;
}
.calc-group-subtotal-header i {
  font-size: 10px;
  transition: all 200ms linear;
}
.calc-group-subtotal-header.ccb-collapsed i {
  transform: rotate(-180deg);
}
.calc-group-subtotal-fields {
  padding-left: 5px;
}

.calc-preview-mobile .calc-group .calc-group-wrapper .calendar-select .decade-title, .calc-preview-mobile .calc-group .calc-group-wrapper .ccb-datetime div.date .calendar-select-order .decade-title, .ccb-datetime div.date .calc-preview-mobile .calc-group .calc-group-wrapper .calendar-select-order .decade-title {
  padding: 10px 13px !important;
}

.calc-geolocation {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.calc-geolocation__empty {
  color: #9196A1;
}
@media (max-width: 540px) {
  .calc-geolocation__empty {
    text-align: left;
    width: 100%;
  }
}
.calc-geolocation .calc-buttons {
  margin-right: 13px;
}
@media (max-width: 540px) {
  .calc-geolocation .calc-buttons {
    width: 100%;
    margin: 0;
    margin-bottom: 8px;
  }
}
@media (max-width: 540px) {
  .calc-geolocation .calc-buttons button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.calc-geolocation__info {
  display: flex;
  flex-direction: column;
}
.calc-geolocation__info .bold {
  font-weight: 700;
}
@media (max-width: 540px) {
  .calc-geolocation__info {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .calc-geolocation {
    flex-direction: column;
  }
}

.ccb-location-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.59);
  left: 0;
  top: 0;
  z-index: 999;
}
.ccb-location-popup__wrapper {
  max-width: 927px;
  height: 621px;
  width: 100%;
  background-color: #ddd;
  position: relative;
  margin: 10vh auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media (max-width: 1440px) {
  .ccb-location-popup__wrapper {
    width: 800px;
    height: 500px;
  }
}
@media (max-width: 1280px) {
  .ccb-location-popup__wrapper {
    width: 700px;
    height: 400px;
  }
}
@media (max-width: 520px) {
  .ccb-location-popup__wrapper {
    width: 90%;
    height: 460px;
  }
}
.ccb-location-popup__footer {
  width: 100%;
  height: 80px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.ccb-location-popup__footer .ccb-field-actions button {
  cursor: pointer;
}
.ccb-location-popup__footer .ccb-field-actions .disable {
  opacity: 0.4;
  pointer-events: none;
}
.ccb-location-popup__footer .ccb-field-actions .default {
  padding: 11px 25px;
  background: #EEF1F7;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  color: #001931;
  border: none;
  border-radius: 4px;
}
.ccb-location-popup__footer .ccb-field-actions .success {
  padding: 11px 25px;
  background: #1AB163;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  color: #fff;
  border: none;
  border-radius: 4px;
}
@media (max-width: 540px) {
  .ccb-location-popup__footer .ccb-field-actions:first-child button {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .ccb-location-popup__footer .ccb-field-actions:last-child {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 540px) {
  .ccb-location-popup__footer .ccb-field-actions:last-child button {
    width: 49%;
  }
}
@media (max-width: 540px) {
  .ccb-location-popup__footer .ccb-field-actions {
    width: 100%;
    margin-bottom: 5px;
  }
}
@media (max-width: 540px) {
  .ccb-location-popup__footer {
    flex-direction: column;
    height: 115px;
  }
}
.ccb-location-popup__map {
  height: 100%;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media (max-width: 520px) {
  .ccb-location-popup__map {
    flex-direction: column;
  }
}
.ccb-location-popup__map.multiply {
  display: flex;
}
.ccb-location-popup__map.multiply #map {
  width: 100%;
}
.ccb-location-popup__search {
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 99;
}
.ccb-location-popup__search i {
  position: absolute;
  top: 13px;
  left: 11px;
  color: #9FACB9;
}
.ccb-location-popup__search input {
  border-radius: 4px;
  border: 1px solid var(--border, #DDD);
  background: var(--white, #FFF);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  outline: none;
  font-family: Arial;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #001931;
  padding: 11px 11px 11px 36px !important;
  min-width: 327px;
}
.ccb-location-popup__search input:active, .ccb-location-popup__search input:focus {
  outline: none;
  border-color: #ddd;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
}
@media (max-width: 520px) {
  .ccb-location-popup__search input {
    min-width: 90%;
  }
}
.ccb-location-popup-sidebar {
  width: 40%;
  height: 100%;
  background-color: #EEF1F7;
  padding: 30px;
  border-top-left-radius: 8px;
}
@media (max-width: 520px) {
  .ccb-location-popup-sidebar {
    width: 100%;
    padding: 10px 30px;
    height: 50%;
  }
}
.ccb-location-popup-sidebar__two-point .calc-input-wrapper {
  margin-bottom: 20px;
}
.ccb-location-popup-sidebar__two-point .calc-input-wrapper label {
  cursor: pointer;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.ccb-location-popup-sidebar__two-point .calc-input-wrapper input.active {
  border: 1px solid #00B163;
}
.ccb-location-popup-sidebar .ccb-location-popup-sidebar__distance {
  position: absolute;
  bottom: 28px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.ccb-location-popup-sidebar .ccb-location-popup-sidebar__distance span {
  font-weight: 600;
}
.ccb-location-popup-sidebar__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 17px;
}
.ccb-location-popup-sidebar__list {
  max-height: 90%;
  overflow-y: auto;
}
@media (max-width: 520px) {
  .ccb-location-popup-sidebar__list {
    height: 110px;
    overflow-y: scroll !important;
  }
}
.ccb-location-popup-sidebar__list .calc-radio-wrapper {
  display: flex;
  flex-direction: column;
}
.ccb-location-popup-sidebar__list .calc-radio-wrapper label {
  margin-bottom: 15px !important;
}
.ccb-location-popup-sidebar__list .calc-radio-wrapper span {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  color: #001931;
}

.ccb-geolocation-field.calc-field-disabled-condition .ccb-location-popup-sidebar, .ccb-geolocation-field.calc-field-disabled-condition .ccb-location-popup__footer .success, .ccb-geolocation-field.calc-field-disabled-condition .calc-item__title, .ccb-geolocation-field.calc-field-disabled-condition .calc-geolocation__info, .ccb-geolocation-field.calc-field-disabled-condition .clear {
  opacity: 0.5;
  pointer-events: none;
}

.calc-distance-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
}
.calc-distance-popup__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.calc-distance-popup__wrapper {
  padding: 20px;
  border-radius: 8px;
  max-width: 370px;
  background-color: #fff;
  transform: translateY(-100px);
}
@media (max-width: 500px) {
  .calc-distance-popup__wrapper {
    width: 85%;
  }
}
.calc-distance-popup__description {
  display: flex;
  margin-bottom: 20px;
}
.calc-distance-popup__description .calc-distance-popup__icon {
  margin-right: 10px;
  font-size: 36px;
  display: flex;
}
@media (max-width: 500px) {
  .calc-distance-popup__description .calc-distance-popup__icon {
    font-size: 18px;
    margin-top: 3px;
  }
}
.calc-distance-popup__description .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.calc-distance-popup__button {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.calc-distance-popup__button button {
  padding: 11px 32px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  cursor: pointer;
  transition: 300ms ease;
}

.ccb-geolocation-field .ccb-field-required-tooltip {
  position: relative !important;
  display: none !important;
  width: max-content;
  margin-left: 0px !important;
  top: -5px !important;
}
.ccb-geolocation-field .ccb-field-required-tooltip.active {
  display: block !important;
}

body .ccb-field[data-id^=validated_form].required .calc-required-field .ccb-field-required-tooltip {
  position: relative;
  top: -5px;
  margin-left: 0;
  width: max-content;
}

.ccb-order-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.ccb-order-layout .ccb-col-2 {
  grid-column: span 2;
}
.ccb-order-layout .ccb-col-4 {
  grid-column: span 4;
}
.ccb-order-layout .ccb-col-6 {
  grid-column: span 6;
}
.ccb-order-layout .ccb-col-8 {
  grid-column: span 8;
}
.ccb-order-layout .ccb-col-10 {
  grid-column: span 10;
}
.ccb-order-layout .ccb-col-12 {
  grid-column: span 12;
}

.ccb-order-space {
  padding: 20px 12px;
}

.ccb-order-number__title {
  font-size: 12px;
  color: rgba(22, 36, 50, 0.8509803922);
  font-weight: 700;
  line-height: 20px;
}
.ccb-order-number .input-number-counter {
  background: rgba(22, 36, 50, 0.0509803922);
  color: #001931;
  transition: 200ms ease-in-out;
  border-radius: 3px;
  width: 17px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  cursor: pointer;
}
.ccb-order-number .input-number-counter i {
  font-size: 8px;
}
.ccb-order-number .input-number-counter.up {
  top: 5px;
  right: 5px;
}
.ccb-order-number .input-number-counter.down {
  bottom: 5px;
  right: 5px;
}

.ccb-order-radio__title {
  font-size: 12px;
  color: rgba(22, 36, 50, 0.8509803922);
  font-weight: 700;
  line-height: 20px;
}
.ccb-order-radio__wrapper {
  display: flex;
  column-gap: 20px;
  row-gap: 10px;
  flex-wrap: wrap;
  padding: 5px 0;
}
.ccb-order-radio__wrapper.Vertical {
  flex-direction: column;
}
.ccb-order-radio label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.ccb-order-radio label input {
  margin-right: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  max-width: 20px;
  min-width: 20px;
  max-height: 20px;
  min-height: 20px;
  border-radius: 50% !important;
  position: relative;
  border: 2px solid #dddddd;
  background-color: #ffffff;
  -webkit-appearance: none;
  margin-right: 7px;
  margin-top: 0;
  padding: 0;
}
.ccb-order-radio label input:checked {
  background: #00B163;
  border-color: #00B163;
}
.ccb-order-radio label input:checked::before {
  background-color: #fff;
}
.ccb-order-radio label input::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
}
.ccb-order-radio label span {
  word-break: normal !important;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
}

.ccb-order-checkbox__title {
  font-size: 12px;
  color: rgba(22, 36, 50, 0.8509803922);
  font-weight: 700;
  line-height: 20px;
}
.ccb-order-checkbox__wrapper {
  display: flex;
  flex-direction: row;
  row-gap: 10px;
  column-gap: 10px;
  flex-wrap: wrap;
  padding: 5px 0;
}
.ccb-order-checkbox__wrapper.Vertical {
  flex-direction: column;
}
.ccb-order-checkbox .calc-checkbox-item {
  display: flex;
  flex-grow: unset !important;
  line-height: 1;
  position: relative;
  margin: 0 !important;
}
.ccb-order-checkbox .calc-checkbox-item .calc-checkbox-title {
  font-size: 14px !important;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  margin-left: 4px;
}
.ccb-order-checkbox .calc-checkbox-item label {
  line-height: 1;
  cursor: pointer;
  font-weight: normal;
  margin: 0 !important;
  vertical-align: middle;
  padding: 0 0 0 25px;
  display: flex !important;
  align-items: center;
  min-height: 22px;
  position: relative;
}
.ccb-order-checkbox .calc-checkbox-item label::before {
  left: 0;
  content: "";
  max-width: 20px;
  min-width: 20px;
  max-height: 20px;
  min-height: 20px;
  height: 20px;
  width: 20px;
  position: absolute;
  margin: 0 !important;
  background-color: #ffffff;
  border: 2px solid #dddddd;
  transition: transform 0.28s ease;
  box-sizing: border-box;
  border-radius: 3px;
}
.ccb-order-checkbox .calc-checkbox-item label::after {
  left: 6px;
  height: 5px;
  width: 10px;
  content: "";
  display: block;
  position: absolute;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: transform ease 0.25s;
  transform: rotate(-45deg) scale(0) translateY(-10%);
  box-sizing: border-box;
}

.ccb-order-custom-text__content a {
  color: #1AB163;
  text-decoration: none;
}

.ccb-order-dropdown__title {
  font-size: 12px;
  color: rgba(22, 36, 50, 0.8509803922);
  font-weight: 700;
  line-height: 20px;
}
.ccb-order-dropdown .ccb-order-dropdown__wrapper .calc-drop-down-with-image-current {
  background-color: #fff !important;
}
.ccb-order-dropdown .ccb-order-dropdown__wrapper .ccb-order-checkbox-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}
.ccb-order-dropdown .ccb-multi-select {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  font-size: inherit;
  font-weight: inherit;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #dddddd;
  cursor: pointer;
  -webkit-appearance: none;
  text-indent: 8px;
  color: #001931;
  min-height: 30px;
  line-height: 2;
  padding: 4px 2px 5px;
  height: 40px;
}
.ccb-order-dropdown .ccb-multi-select .items {
  display: none;
}
.ccb-order-dropdown .ccb-multi-select .anchor {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  background-size: 8px 6px;
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
}
.ccb-order-dropdown .ccb-multi-select .anchor.ccb-heading-5 {
  height: 2em;
  width: calc(100% - 18px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: " [..]";
}
.ccb-order-dropdown .ccb-multi-select .anchor .selected-payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #CCEFE0;
  border-radius: 4px;
  padding: 4px 8px !important;
  margin-right: 10px;
  text-transform: capitalize;
}
.ccb-order-dropdown .ccb-multi-select .anchor .selected-payment .remove {
  cursor: pointer;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg%3E%3Cg opacity='.7'%3E%3Cpath fill='%23333' d='M12 1.414L10.586 0 6 4.586 1.414 0 0 1.414 4.586 6 0 10.586 1.414 12 6 7.414 10.586 12 12 10.586 7.414 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
  width: 8px;
  height: 8px;
}
.ccb-order-dropdown .ccb-multi-select .anchor .selected {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #EEF1F7;
  border-radius: 4px;
  padding: 0px 10px;
  margin-right: 10px;
  text-transform: capitalize;
}
.ccb-order-dropdown .ccb-multi-select .anchor .selected .ccb-icon-close {
  font-size: 10px;
  color: #001931;
  opacity: 0.5;
}
.ccb-order-dropdown .ccb-multi-select.visible .items {
  display: block;
  position: absolute;
  top: calc(2em + 12px);
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-top: none;
  height: 90px;
  overflow: hidden;
  overflow-y: auto;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  width: calc(100% + 2px);
  margin-left: -11px;
  border-top: none;
  padding: 2px;
}
.ccb-order-dropdown .ccb-multi-select.visible .items .option-item {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
  align-items: center;
}
.ccb-order-dropdown .ccb-multi-select.visible .items .option-item input {
  top: unset;
  margin: 0px 5px 0px 0px;
  pointer-events: none;
  width: 18px;
  border-radius: 4px;
  border: 1px solid #dddddd;
  margin-right: 5px;
}
.ccb-order-dropdown .ccb-multi-select.visible .items .option-item label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.ccb-order-dropdown .ccb-multi-select.visible .items .option-item label input {
  margin-right: 0 !important;
}
@media only screen and (max-width: 1375px) {
  .ccb-order-dropdown .ccb-multi-select.visible .items {
    margin-left: -1px;
  }
}
@media only screen and (max-width: 1320px) {
  .ccb-order-dropdown .ccb-multi-select.visible .items {
    top: calc(2em + 11px);
  }
}
@media only screen and (max-width: 1375px) and (min-width: 1321px) {
  .ccb-order-dropdown .ccb-multi-select.visible .items {
    top: calc(2em + 13px);
  }
}
@media only screen and (max-width: 1800px) and (min-width: 1551px) {
  .ccb-order-dropdown .ccb-multi-select.visible .items {
    top: calc(2em + 14px);
  }
}
.ccb-order-dropdown .ccb-multi-select .ccb-icon-Path-3485 {
  position: absolute;
  right: 15px;
  top: 50%;
  font-size: 8px;
  z-index: 2;
  opacity: 0.5;
  transform: translateY(-50%) rotate(0deg);
  transition: all 200ms ease-in-out;
}
.ccb-order-dropdown .ccb-multi-select .ccb-icon-Path-3485.ccb-arrow-up {
  transform: translateY(-50%) rotate(180deg);
  right: 5px;
}
@media only screen and (max-width: 1400px) {
  .ccb-order-dropdown .ccb-multi-select {
    min-width: 0;
  }
}
.ccb-order-dropdown .ccb-multi-select:focus, .ccb-order-dropdown .ccb-multi-select:hover {
  resize: none;
  outline: none;
  box-shadow: none;
  border-color: #dddddd;
}
@media only screen and (max-width: 1800px) {
  .ccb-order-dropdown .ccb-multi-select {
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 1550px) {
  .ccb-order-dropdown .ccb-multi-select {
    font-size: 13px !important;
  }
}
@media only screen and (max-width: 1375px) {
  .ccb-order-dropdown .ccb-multi-select {
    font-size: 12px !important;
    padding: 5px 13px 5px 0 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.ccb-order-dropdown .ccb-order-checkbox {
  position: absolute;
  width: 100%;
  background-color: #fff;
  z-index: 99;
}
.ccb-order-dropdown .ccb-order-checkbox__title {
  font-size: 12px;
  color: rgba(22, 36, 50, 0.8509803922);
  font-weight: 700;
  line-height: 20px;
}
.ccb-order-dropdown .ccb-order-checkbox__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 0px;
  column-gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0;
}
.ccb-order-dropdown .ccb-order-checkbox__wrapper.Vertical {
  flex-direction: column;
}
.ccb-order-dropdown .ccb-order-checkbox .calc-checkbox-item {
  display: flex;
  flex-grow: unset !important;
  line-height: 1;
  position: relative;
  margin: 0 !important;
  width: 100%;
  padding: 0 10px;
  border-bottom: 1px solid #ddd;
}
.ccb-order-dropdown .ccb-order-checkbox .calc-checkbox-item:last-child {
  border-bottom: none;
}
.ccb-order-dropdown .ccb-order-checkbox .calc-checkbox-item .calc-checkbox-title {
  font-size: 14px !important;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  margin-left: 4px;
}
.ccb-order-dropdown .ccb-order-checkbox .calc-checkbox-item label {
  line-height: 1;
  cursor: pointer;
  font-weight: normal;
  margin: 0 !important;
  vertical-align: middle;
  padding: 10px 0 10px 25px;
  display: flex !important;
  align-items: center;
  min-height: 22px;
  position: relative;
  width: 100%;
}
.ccb-order-dropdown .ccb-order-checkbox .calc-checkbox-item label::before {
  left: 0;
  content: "";
  max-width: 20px;
  min-width: 20px;
  max-height: 20px;
  min-height: 20px;
  height: 20px;
  width: 20px;
  position: absolute;
  margin: 0 !important;
  background-color: #ffffff;
  border: 2px solid #dddddd;
  transition: transform 0.28s ease;
  box-sizing: border-box;
  border-radius: 3px;
}
.ccb-order-dropdown .ccb-order-checkbox .calc-checkbox-item label::after {
  left: 6px;
  height: 5px;
  width: 10px;
  content: "";
  display: block;
  position: absolute;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: transform ease 0.25s;
  transform: rotate(-45deg) scale(0) translateY(-10%);
  box-sizing: border-box;
}

.ccb-order-email.Right {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.ccb-order-email.Right .ccb-order-email__wrapper {
  width: 50%;
}
.ccb-order-email.Vertical {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 5px;
}
.ccb-order-email__wrapper.relative {
  position: relative;
}
.ccb-order-email__wrapper .confirmation-error {
  color: red;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

.ccb-order-time-picker__wrapper {
  border: 1px solid #ddd;
  border-radius: 4px;
}
.ccb-order-time-picker__wrapper.range-time {
  display: flex;
}
.ccb-order-time-picker__wrapper.range-time .ccb-order-time-picker__start, .ccb-order-time-picker__wrapper.range-time .ccb-order-time-picker__end {
  width: 50%;
}
.ccb-order-time-picker__wrapper.range-time .separator {
  padding: 10px 12px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.ccb-order-time-picker .time-picker {
  width: 100%;
}
.ccb-order-time-picker .time-picker .apms {
  text-transform: uppercase;
}
.ccb-order-time-picker .time-picker .display-time {
  width: 100%;
  border-radius: 0;
  border: none;
  padding: 9px 12px;
}
.ccb-order-time-picker .time-picker .controls {
  font-size: 22px;
}
.ccb-order-time-picker .time-picker.hasTime .controls .has-custom-btn {
  display: none;
}
.ccb-order-time-picker .time-picker .dropdown {
  top: auto;
}

.ccb-order-field {
  position: relative;
}
.ccb-order-field .ccb-order-field__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ccb-order-field label {
  font-size: 12px;
  color: rgba(22, 36, 50, 0.8509803922);
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}
.ccb-order-field input {
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  outline: none;
}
.ccb-order-field input::-webkit-outer-spin-button, .ccb-order-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ccb-order-field .ccb-order-required-mark {
  color: red;
}
.ccb-order-field textarea {
  padding: 9px 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  line-height: 20px;
  outline: none;
}
.ccb-order-field .ccb-order-text-counter {
  font-size: 12px !important;
  font-weight: 400;
  line-height: 15.12px;
  text-align: left;
  color: rgba(22, 36, 50, 0.3019607843);
  position: absolute;
  bottom: 0;
  right: 0;
}
.ccb-order-field-required {
  position: absolute;
  top: 2px;
  right: 0;
}
.ccb-order-field-required__tooltip {
  top: -16px;
  right: 2px;
  background-color: #D94141;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  position: relative;
}
.ccb-order-field-required__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 90%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #D94141 transparent transparent transparent;
}
.ccb-order-field-required.left {
  right: auto;
  left: 0;
  top: -20px;
}
.ccb-order-field-required.left .ccb-order-field-required__tooltip::after {
  left: 10%;
}
.ccb-order-field .ccb-datetime .error-tip {
  display: none !important;
}

.ccb-error-tip {
  position: absolute;
  padding: 5px 10px;
  width: max-content;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  background-color: red;
  text-align: center;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  color: #fff;
}
.ccb-error-tip::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  z-index: 10;
  border: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid red;
  right: 0;
  margin-right: 15px;
}
.ccb-error-tip.default {
  bottom: 45px;
  right: 0;
  z-index: 99;
}
.ccb-error-tip.textarea {
  bottom: auto;
  right: 0;
  top: -30px;
}
.ccb-error-tip.front {
  display: none;
  background-color: #d94141;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  width: max-content !important;
}
.ccb-error-tip.front::after {
  border-top: 10px solid #d94141;
}
.ccb-error-tip.front.active {
  display: block;
}

.ccb-notice {
  border-radius: 4px;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}
.ccb-notice .ccb-notice-title {
  font-size: 14px;
  font-weight: 700;
  margin-right: 10px;
}
.ccb-notice .ccb-notice-description {
  font-size: 14px;
  font-weight: 500;
}
.ccb-notice.ccb-error {
  background-color: rgba(217, 65, 65, 0.1);
  color: #d94141;
}

.ccb-required-mark {
  color: #d94141;
}

.ccb-loader-1 {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
}
.ccb-loader-1 div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #00B163;
  border-radius: 50%;
  animation: ccb-loader-1 1.2s linear infinite;
}
.ccb-loader-1 div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.ccb-loader-1 div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}
.ccb-loader-1 div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}
.ccb-loader-1 div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}
.ccb-loader-1 div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}
.ccb-loader-1 div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}
.ccb-loader-1 div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}
.ccb-loader-1 div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}
.ccb-loader-1 div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}
.ccb-loader-1 div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}
.ccb-loader-1 div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}
.ccb-loader-1 div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

.ccb-loader-2 {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
}
.ccb-loader-2 div {
  animation: ccb-loader-2 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.ccb-loader-2 div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00B163;
  margin: -4px 0 0 -4px;
}
.ccb-loader-2 div:nth-child(1) {
  animation-delay: -0.036s;
}
.ccb-loader-2 div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.ccb-loader-2 div:nth-child(2) {
  animation-delay: -0.072s;
}
.ccb-loader-2 div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.ccb-loader-2 div:nth-child(3) {
  animation-delay: -0.108s;
}
.ccb-loader-2 div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.ccb-loader-2 div:nth-child(4) {
  animation-delay: -0.144s;
}
.ccb-loader-2 div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.ccb-loader-2 div:nth-child(5) {
  animation-delay: -0.18s;
}
.ccb-loader-2 div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.ccb-loader-2 div:nth-child(6) {
  animation-delay: -0.216s;
}
.ccb-loader-2 div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.ccb-loader-2 div:nth-child(7) {
  animation-delay: -0.252s;
}
.ccb-loader-2 div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.ccb-loader-2 div:nth-child(8) {
  animation-delay: -0.288s;
}
.ccb-loader-2 div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

.ccb-loader-3 {
  color: #00B163;
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
}
.ccb-loader-3 div {
  transform-origin: 40px 40px;
  animation: ccb-loader-3 1.2s linear infinite;
}
.ccb-loader-3 div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #00B163;
}
.ccb-loader-3 div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.ccb-loader-3 div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.ccb-loader-3 div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.ccb-loader-3 div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.ccb-loader-3 div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.ccb-loader-3 div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.ccb-loader-3 div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.ccb-loader-3 div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.ccb-loader-3 div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.ccb-loader-3 div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.ccb-loader-3 div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.ccb-loader-3 div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

.ccb-loader-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes ccb-loader-3 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ccb-loader-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ccb-loader-1 {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
@page {
  margin: 20px; /* Добавить отступы на всех страницах */
}
.ccb-invoice {
  padding: 50px;
  background: #fff;
  font-family: "Eudoxus Sans", sans-serif;
  min-width: 700px;
}
.ccb-invoice-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ccb-invoice-company {
  width: 100%;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21.23px;
  margin-bottom: 30px;
}
.ccb-invoice-logo img {
  max-width: 50%;
  max-height: 150px;
}
.ccb-invoice-date {
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
}
.ccb-invoice-date span:first-child {
  margin-right: 10px;
}
.ccb-invoice-table__header {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  display: flex;
  padding: 10px 20px;
  border: 1px solid #000;
}
.ccb-invoice-table__body {
  border: 1px solid transparent;
  border-left-color: #000;
  border-right-color: #000;
  border-bottom-color: #000;
  display: flex;
  flex-direction: column;
}
.ccb-invoice-table__total {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  flex-direction: column;
  row-gap: 10px;
}
.ccb-invoice-table__total-item {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.ccb-invoice-table__total.other-totals {
  border: none;
  font-size: 14px !important;
}
.ccb-invoice-table__payment {
  padding: 0 10px;
}
.ccb-invoice-table__payment span {
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: normal;
}
.ccb-invoice-table__payment span:last-child {
  font-weight: 700;
}
.ccb-invoice-table__title {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
}
.ccb-invoice-table__summary {
  padding: 20px;
  width: 100%;
  border: 1px solid transparent;
  border-bottom-color: #000;
}
.ccb-invoice-table__summary ul {
  margin: 0px;
  padding: 0px 10px;
  list-style: none;
  margin-top: 20px;
}
.ccb-invoice-table__summary ul .ccb-invoice-group-title {
  padding-left: 10px;
  font-weight: 800;
  font-size: 14px;
}
.ccb-invoice-table__summary ul li .ccb-invoice-group-wrapper {
  padding-left: 10px;
}
.ccb-invoice-table__summary ul li .ccb-invoice-group-wrapper .ccb-invoice-row-label,
.ccb-invoice-table__summary ul li .ccb-invoice-group-wrapper .ccb-invoice-row-value {
  font-weight: 500;
  font-size: 14px;
  line-height: 12px;
}
.ccb-invoice-table__summary ul li .ccb-invoice-group-wrapper .ccb-invoice-row {
  margin-bottom: 2px;
  border-bottom: 1px dashed #ccc;
}
.ccb-invoice-table__summary ul li.break-border .ccb-invoice-row {
  border: none !important;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row {
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  width: 100%;
  display: flex;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5px;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row .ccb-invoice-sub-item-label {
  margin-right: 10px;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row.ccb-invoice-sub-item {
  border: none;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row.ccb-invoice-sub-item:last-child {
  border-bottom: 1px dashed #ccc;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row.break {
  border: none;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row-label {
  display: block;
  width: 50%;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row-value {
  display: block;
  width: 50%;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row-unit {
  width: 50%;
  font-weight: 500;
  opacity: 0.7;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row-value {
  text-align: right;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row .ccb-invoice-space {
  color: inherit;
  flex: 1;
  margin: 0 5px 0 9px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.ccb-invoice-table__summary ul li .ccb-invoice-row .ccb-invoice-space:after {
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.5;
  font-size: 16px;
  color: inherit;
  letter-spacing: 1px;
  content: ".....................................................................................................................................................................................................";
}
.ccb-invoice-table__summary ul li .ccb-invoice-row.ccb-invoice-sub-item {
  font-size: 12px;
  padding-left: 15px;
  opacity: 0.7;
}
.ccb-invoice-table__summary ul li:last-child {
  margin-bottom: 22px;
}
.ccb-invoice-table__summary ul li ul {
  display: flex;
  flex-direction: column;
}
.ccb-invoice-table__contact {
  padding: 20px;
  width: 100%;
}
.ccb-invoice-table__contact ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  margin-top: 20px;
}
.ccb-invoice-table__contact ul li {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.ccb-invoice-table__contact ul li span {
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  word-break: break-all;
}
.ccb-invoice-table__contact ul li span:first-child {
  text-transform: capitalize;
}
.ccb-invoice-table__contact ul li span:last-child {
  font-weight: 500;
  font-size: 14px;
}

.invoice-button .invoice-btn-loader {
  display: none;
  height: 0;
  width: 0;
  padding: 8px;
  border: 3px solid #ccc;
  border-right-color: #888;
  border-radius: 22px;
  margin: 0 auto;
  -webkit-animation: rotate 1s infinite linear;
  /* left, top and position just for the demo! */
}
@media (max-width: 540px) {
  .invoice-button {
    width: 100%;
    margin-bottom: 10px !important;
  }
}

body.invoice-loader button.invoice-button span {
  display: none;
}
body.invoice-loader button.invoice-button .invoice-btn-loader {
  display: block;
}
.invoice-settings-page textarea {
  height: 200px;
}

.ccb-preview {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 540px) {
  .ccb-preview {
    display: none;
  }
}
.ccb-preview__wrapper {
  position: absolute;
  left: 0;
  bottom: 35px;
  border: 8px solid #dfe2ea;
  background-color: #dfe2ea;
  border-radius: 10px;
  display: none;
}
@media (max-width: 540px) {
  .ccb-preview__wrapper {
    left: -230px;
  }
}
.ccb-preview__wrapper:before {
  border-top: 10px solid #dfe2ea;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: "";
  display: block;
  height: 0px;
  position: absolute;
  right: 90%;
  bottom: -18px;
  width: 0px;
}
.ccb-preview__title {
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21.99px;
  text-align: right;
  text-transform: uppercase;
  color: #1ab163;
  cursor: pointer;
}
.ccb-preview__title:hover .ccb-preview__wrapper {
  display: block;
}
.ccb-preview__img {
  width: 288px;
  height: 221px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 30px 22px 30px;
}
@media (max-width: 540px) {
  .ccb-preview__img {
    width: 263px;
    height: 180px;
  }
}
.ccb-preview__img button {
  border: none;
  width: 48%;
  padding: 7px 15px;
  border-radius: 4px;
  background-color: #008d4f;
  color: #fff;
  font-size: 10px;
}
.ccb-preview__img button:last-child {
  background-color: #f0f0f0;
  color: #0b0b0b;
}

.terms-condition-preview {
  position: relative;
}
.terms-condition-preview .ccb-preview {
  right: -65px;
}
@media (max-width: 1550px) {
  .terms-condition-preview .ccb-preview {
    top: -3px;
  }
}
.terms-condition-preview .ccb-preview__wrapper {
  left: 77px;
  bottom: -8px;
  z-index: 9999;
}
@media (max-width: 1550px) {
  .terms-condition-preview .ccb-preview__wrapper {
    bottom: -22px;
  }
}
@media (max-width: 540px) {
  .terms-condition-preview .ccb-preview__wrapper {
    left: -175px;
    bottom: 35px;
  }
}
.terms-condition-preview .ccb-preview__wrapper:before {
  right: 102%;
  bottom: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #dfe2ea;
}
@media (max-width: 1550px) {
  .terms-condition-preview .ccb-preview__wrapper:before {
    bottom: 16px;
  }
}
.terms-condition-preview .ccb-preview .ccb-preview__img {
  width: 339px;
  height: 237px;
}
@media (max-width: 540px) {
  .terms-condition-preview .ccb-preview .ccb-preview__img {
    width: 270px;
    height: 180px;
  }
}

.vue-html2pdf .pdf-preview {
  box-shadow: 0 0 0 1200px rgba(0, 0, 0, 0.4) !important;
}
.vue-html2pdf .pdf-preview button {
  left: auto !important;
  right: -15px;
}

.ccb-send-quote {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
  visibility: hidden;
}
.ccb-send-quote__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.ccb-send-quote__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #fff;
  max-width: 410px;
  min-width: 410px;
  top: 14vh;
  opacity: 0;
  left: 50%;
  margin-left: -205px;
  position: absolute;
  transition: 500ms ease;
  min-height: 541px;
  z-index: 999999;
}
@media (max-width: 420px) {
  .ccb-send-quote__wrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 340px;
    min-width: 340px;
    margin-left: 0;
  }
}
.ccb-send-quote__wrapper .ccb-send-quote__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ccb-send-quote__wrapper .ccb-send-quote__success-icon {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.ccb-send-quote__wrapper .ccb-send-quote__success-text {
  color: #001931;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 26px;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 50px;
}
.ccb-send-quote__wrapper .ccb-send-quote__success-btn {
  padding: 13px 20px;
  border: none;
  cursor: pointer;
}
.ccb-send-quote__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ccb-send-quote__title {
  color: #001931;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21px;
  text-align: left;
}
.ccb-send-quote__close {
  width: 30px;
  height: 30px;
  font-size: 12px;
  border-radius: 50%;
  background-color: #eef1f7;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 200ms ease;
}
.ccb-send-quote__close:hover {
  background-color: #d2d4d9;
}
.ccb-send-quote__close i {
  opacity: 0.7;
}
.ccb-send-quote__textarea {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.ccb-send-quote__textarea label {
  color: #001931;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21.99px;
}
.ccb-send-quote__textarea textarea {
  border-radius: 4px;
  border: 2px solid #eeeeee;
  background-color: #ffffff;
  color: #001931;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21.99px;
  min-height: 90px;
  max-height: 130px;
  resize: none;
  padding: 12px 20px;
  font-family: "Eudoxus Sans", Arial;
}
.ccb-send-quote__textarea textarea:focus {
  outline: none;
}
.ccb-send-quote__input {
  display: flex;
  flex-direction: column;
}
.ccb-send-quote__input label {
  color: #001931;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21.99px;
}
.ccb-send-quote__input label.required:after {
  content: "*";
  color: red;
}
.ccb-send-quote__input input {
  padding: 0px 20px;
  border-radius: 4px;
  border: 2px solid #eeeeee;
  color: #001931;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21px;
  margin-bottom: 20px;
  height: 40px;
}
.ccb-send-quote__input input:focus {
  outline: none;
}
.ccb-send-quote__file {
  border-radius: 4px;
  background-color: #eef1f7;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  word-break: break-all;
}
.ccb-send-quote__file i {
  color: #011a30;
  opacity: 0.5;
  font-size: 18px;
}
.ccb-send-quote__file span {
  color: #001931;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: normal;
  line-height: 21px;
  opacity: 0.7;
  margin-left: 8px;
}
.ccb-send-quote__submit button {
  border-radius: 4px;
  border: none;
  background-color: #00b163;
  text-align: center;
  width: 100%;
  outline: none;
  height: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.28px;
  cursor: pointer;
  transition: 200ms ease;
}
.ccb-send-quote__submit button:hover {
  background-color: #00a55c;
}
.ccb-send-quote__notice {
  padding: 8px 14px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #FBEBEB;
  border-radius: 10px;
  margin-top: 20px;
}
.ccb-send-quote__notice span {
  color: #d94141;
  font-size: 14px;
  font-weight: 700;
  margin-right: 10px;
}
.ccb-send-quote.active {
  visibility: visible;
}
.ccb-send-quote.active .ccb-send-quote__wrapper {
  opacity: 1;
}

.calc-container.vertical .calc-subtotal .calc-buttons.pdf-enable .ccb-pdf-buttons, .calc-container.two_column .calc-subtotal .calc-buttons.pdf-enable .ccb-pdf-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.calc-container.vertical .calc-subtotal .calc-buttons.pdf-enable .ccb-pdf-buttons button, .calc-container.two_column .calc-subtotal .calc-buttons.pdf-enable .ccb-pdf-buttons button {
  overflow: hidden;
  margin-right: 0 !important;
  padding: 6px 4px;
  width: 48.5% !important;
}
.calc-container.vertical .calc-subtotal .calc-buttons.pdf-enable button:first-child, .calc-container.two_column .calc-subtotal .calc-buttons.pdf-enable button:first-child {
  width: 100%;
  margin-right: 0 !important;
}

.ccb-orders-page .ccb-send-quote__success-icon {
  color: #00b163;
  background-color: rgba(0, 177, 99, 0.1019607843);
}

.ccb-invoice-group-wrapper {
  margin-top: 20px;
}

.thank-you-page {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #dddddd;
  background: #FFFFFF;
  padding: 45px 30px 40px 35px;
  opacity: 0;
  visibility: visible;
  position: relative;
}
.thank-you-page-close {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  padding: 3px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: #EEF1F7;
  transition: background 200ms linear;
}
.thank-you-page-close span {
  font-size: 13px;
  color: rgba(0, 25, 49, 0.4);
}
@media screen and (max-width: 768px) {
  .thank-you-page-close {
    width: 20px;
    height: 20px;
  }
  .thank-you-page-close span {
    font-size: 12px;
    color: rgba(0, 25, 49, 0.4);
  }
}
.thank-you-page.loaded {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .thank-you-page {
    padding: 20px 15px;
  }
}
.thank-you-page .thank-you-page-inner-container {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  margin: 0 auto;
}
.thank-you-page__icon-box .icon-wrapper {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background-color: rgba(26, 177, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-you-page__icon-box .icon-wrapper .icon-content {
  width: 64px;
  height: 64px;
  background-color: #1ab163;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.thank-you-page__icon-box .icon-wrapper .icon-content i {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .thank-you-page__icon-box .icon-wrapper {
    width: 98px;
    height: 98px;
  }
  .thank-you-page__icon-box .icon-wrapper .icon-content {
    width: 48px;
    height: 48px;
  }
}
.thank-you-page__title-box {
  display: flex;
  flex-direction: column;
}
.thank-you-page__title-box span {
  word-break: break-all;
}
.thank-you-page__title-box-title {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
.thank-you-page__title-box-desc {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.thank-you-page__order span {
  display: flex;
  column-gap: 5px;
}
.thank-you-page__order span span {
  color: #001931;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.thank-you-page__order span span:first-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
  width: 100%;
  display: inline-block;
}
.thank-you-page__actions {
  width: 100%;
  display: flex;
  justify-content: center;
}
.thank-you-page__actions-wrapper {
  max-width: 420px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 15px;
  column-gap: 8px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .thank-you-page__actions-wrapper {
    column-gap: 5px;
    row-gap: 10px;
  }
}
.thank-you-page__actions-wrapper div {
  width: 49%;
}
@media screen and (max-width: 480px) {
  .thank-you-page__actions-wrapper div {
    width: 45%;
  }
}
.thank-you-page__actions-wrapper div a,
.thank-you-page__actions-wrapper div button {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  border-radius: 4px;
  border: 2px solid;
  width: 100%;
  height: 40px;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: all linear 200ms;
}
@media screen and (max-width: 480px) {
  .thank-you-page__actions-wrapper div a,
  .thank-you-page__actions-wrapper div button {
    height: 32px;
    padding: 0;
  }
}
.thank-you-page__actions-wrapper div a span,
.thank-you-page__actions-wrapper div button span {
  width: max-content;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
.thank-you-page__actions-wrapper div a i,
.thank-you-page__actions-wrapper div button i {
  position: relative;
  left: -2px;
}
.thank-you-page__actions-wrapper div a.calc-primary,
.thank-you-page__actions-wrapper div button.calc-primary {
  border-color: #EEF1F7;
  background: #EEF1F7;
  color: #011A30;
}
.thank-you-page__actions-wrapper div a.calc-secondary,
.thank-you-page__actions-wrapper div button.calc-secondary {
  border-color: #1AB163;
  background: #ffffff;
  color: #1AB163;
}
.thank-you-page__actions-wrapper div a.calc-success,
.thank-you-page__actions-wrapper div button.calc-success {
  border-color: #1AB163;
  background: #1AB163;
  color: #ffffff;
}

.ccb-modal-wrapper {
  float: unset;
}
.ccb-modal-wrapper .ccb-modal-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  position: fixed;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}
.ccb-modal-wrapper .ccb-modal-window {
  margin: 0 auto;
  max-width: max-content;
  border-radius: 8px;
  position: relative;
  transform: translateY(-200px);
  transition: transform 0.2s linear, opacity 0.2s linear;
}
@media screen and (max-width: 480px) {
  .ccb-modal-wrapper .ccb-modal-window {
    max-width: 420px;
    margin: 0 10px;
  }
}
.ccb-modal-wrapper .ccb-modal-window .ccb-modal-window-content {
  max-height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .ccb-modal-wrapper .ccb-modal-window .ccb-modal-window-content .calc-thank-you-page-container {
    width: unset !important;
  }
}
.ccb-modal-wrapper .ccb-modal-window .ccb-modal-window-content .ccb-modal-body {
  padding: 20px 0;
}
.ccb-modal-wrapper .ccb-modal-body {
  overflow-y: auto;
}
.ccb-modal-wrapper .ccb-modal-body:hover {
  visibility: visible;
}
.ccb-modal-wrapper.open .ccb-modal-window,
.ccb-modal-wrapper.open .ccb-modal-overlay, .ccb-modal-wrapper.hide .ccb-modal-window,
.ccb-modal-wrapper.hide .ccb-modal-overlay {
  opacity: 1;
  z-index: 100000 !important;
}
.ccb-modal-wrapper.open .ccb-modal-window {
  transform: translateY(125px);
}
@media screen and (max-width: 400px) {
  .ccb-modal-wrapper.open .ccb-modal-window {
    transform: translateY(80px);
  }
}
.ccb-modal-wrapper.open .ccb-modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.ccb-modal-wrapper.hide .ccb-modal-overlay {
  background-color: rgba(0, 0, 0, 0);
}
.ccb-modal-wrapper.hide .ccb-modal-window {
  transform: translateY(-500px);
}
.ccb-default-hint,
.ccb-checkbox-hint {
  position: relative;
  width: auto;
  display: inline-flex;
  margin-left: 7px;
  margin-top: 2px;
}
.ccb-default-hint i,
.ccb-checkbox-hint i {
  font-size: 12px;
  opacity: 0.3;
}
.ccb-default-hint__content,
.ccb-checkbox-hint__content {
  width: max-content;
  color: #fff;
  visibility: hidden;
  background-color: #3b3e4a;
  text-align: center;
  position: absolute;
  padding: 5px 15px;
  margin: 0 0 5px 0;
  transform: translateX(-50%);
  left: 50%;
  bottom: 102%;
  z-index: 1221;
  border-radius: 5px;
  transition: opacity 0.3s;
  line-height: normal;
  font-size: 13px;
  max-width: 300px;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.ccb-default-hint__content a,
.ccb-checkbox-hint__content a {
  color: #fff;
  font-size: 13px;
  outline: none !important;
  box-shadow: none !important;
}
.ccb-default-hint__content::after,
.ccb-checkbox-hint__content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #3b3e4a transparent transparent transparent;
}
.ccb-default-hint:hover .ccb-checkbox-hint__content,
.ccb-checkbox-hint:hover .ccb-checkbox-hint__content {
  visibility: visible;
  color: #ffffff;
}
.ccb-default-hint.ccb-right .ccb-checkbox-hint__content,
.ccb-checkbox-hint.ccb-right .ccb-checkbox-hint__content {
  transform: unset;
  left: 105%;
  top: 0;
  max-width: 215px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  bottom: unset;
  text-align: left;
}
.ccb-default-hint.ccb-right .ccb-checkbox-hint__content:after,
.ccb-checkbox-hint.ccb-right .ccb-checkbox-hint__content:after {
  transform: translateY(-50%);
  top: 50%;
  left: -10px;
  margin-left: unset;
  border-color: transparent #3b3e4a transparent transparent;
}
@media screen and (max-width: 768px) {
  .ccb-default-hint,
  .ccb-checkbox-hint {
    display: none !important;
  }
}

.ccb-checkbox-hint-mobile {
  display: none !important;
  margin-left: 7px;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .ccb-checkbox-hint-mobile {
    display: inline-flex !important;
  }
}
.ccb-checkbox-hint-mobile i {
  font-size: 12px;
  opacity: 0.3;
}
.ccb-checkbox-hint-mobile--modal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  width: 100%;
  display: flex;
  background: #ffffff;
  transition: bottom 0.5s ease-in-out;
  z-index: 9999999;
  border-top: 1px solid #DDDDDD;
  border-radius: 4px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}
.ccb-checkbox-hint-mobile--modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px;
}
.ccb-checkbox-hint-mobile--modal-content span {
  color: #001931;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.ccb-checkbox-hint-mobile--modal-content i {
  position: absolute;
  font-size: 14px;
  top: 15px;
  right: 15px;
  color: #001931;
}
.ccb-checkbox-hint-mobile--modal.ccb-hint-active {
  bottom: 0;
}

.calc-promocode-wrapper {
  margin-top: 20px;
}
.calc-promocode-wrapper .calc-promocode-container {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 10px;
  align-items: center;
}
.calc-promocode-wrapper .calc-promocode-container .calc-input-wrapper {
  width: 100%;
}
.calc-promocode-wrapper .calc-promocode-container button {
  width: max-content;
  padding: 14px 15px !important;
}
.calc-promocode-wrapper .calc-applied {
  color: #001931;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  margin-top: 5px;
  opacity: 0.5;
  align-items: center;
}
.calc-promocode-wrapper .ccb-promocode-hint {
  color: #1AB163;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.calc-promocode-wrapper .promocode-body.ccb-promo-body .calc-item__title {
  flex-direction: column;
  align-items: start !important;
}
.calc-promocode-wrapper .promocode-body.ccb-promo-body .calc-item__title .promocode-error-tip {
  display: none;
}
.calc-promocode-wrapper .promocode-body.ccb-promo-body .calc-item__title .promocode-error-tip .ccb-error-tip {
  position: relative;
  top: -2px;
  left: 0;
}
.calc-promocode-wrapper .promocode-body.ccb-promo-body .calc-item__title .promocode-error-tip .ccb-error-tip.front:after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  left: 8px;
}
.calc-promocode-wrapper .promocode-body.ccb-promo-body .calc-item__title .promocode-error-tip.active {
  display: block;
}

.ccb-discount-off {
  font-size: 10px !important;
  font-weight: 500;
  color: #ffffff;
  background: #1ab163;
  padding: 2px 4px;
  border-radius: 4px;
  vertical-align: middle;
}

.ccb-promocodes-list {
  display: flex;
  column-gap: 10px;
  row-gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}

.ccb-promocode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px 6px;
  text-transform: capitalize;
  border-radius: 5px;
  background-color: #eef1f7;
  line-height: 1.3;
  word-break: break-all;
}
.ccb-promocode .remove {
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
  font-size: 11px;
  opacity: 0.7;
  transition: ease-in-out 200ms;
}
.ccb-promocode .remove:hover {
  opacity: 0.9;
}

.calc-have-promocode {
  color: #1AB163;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.ccb-discount.ccb-edit-total-value {
  text-decoration: line-through;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.ccb-order-promocodes {
  color: #001931;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.5;
  display: flex;
  column-gap: 5px;
  padding: 0 10px;
}
.ccb-order-promocodes .ccb-order-promocode-label {
  white-space: nowrap;
}
.ccb-order-promocodes .ccb-order-promocodes-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
}

.sticky-calculator-wrapper {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  align-items: flex-start;
  padding: 0 20px 20px;
}
.sticky-calculator-wrapper .ccb-checkbox-box {
  vertical-align: middle !important;
}
.sticky-calculator-wrapper .ccb-options-tooltip {
  width: 14px !important;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.sticky-calculator-wrapper .ccb-options-tooltip i {
  font-size: 20px !important;
}
.sticky-calculator-wrapper .sticky-settings-label {
  margin-right: 5px;
  color: #001931;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
}

.sticky-calculator-preview {
  width: 100%;
  height: 362px;
  border-radius: 8px;
  background: #ffffff;
  position: sticky;
  top: 0;
}
.sticky-calculator-preview--header {
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #ddd;
}
.sticky-calculator-preview--content {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D2D8E5;
}
.sticky-calculator-preview--content .calc-sticky-placeholder {
  color: #9196A1;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.calc-sticky-positions {
  width: 176px;
  height: 100px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background: #EEF1F7;
}
.calc-sticky-positions .ccb-hint-info-text {
  display: inline-block;
  text-align: left;
  margin-bottom: 5px;
}
.calc-sticky-positions .ccb-titles-info-wrapper {
  display: flex;
  flex-direction: column;
}
.calc-sticky-positions .ccb-titles-info-wrapper span {
  display: inline-flex;
  text-align: start;
}
.calc-sticky-positions div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.calc-sticky-positions div .ccb-position-item {
  width: 24px;
  height: 8px;
  background: #9FACB9;
  border-radius: 2px;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}
.calc-sticky-positions div .ccb-position-item:hover {
  background: rgb(114.7590361446, 133.75, 152.7409638554);
}
.calc-sticky-positions div .ccb-position-item.selected {
  background: #00b163 !important;
}
.calc-sticky-positions div .ccb-position-item.ccb-count-over:not(.selected) {
  cursor: not-allowed;
  pointer-events: none;
  background: #D94141;
  opacity: 0.7;
}

.ccb-sticky-icon-wrapper {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
.ccb-sticky-icon-wrapper button {
  height: 40px;
}
.ccb-sticky-icon-wrapper.icon-selected .image-val {
  width: 100%;
  max-width: 120px;
  height: 40px;
}
.ccb-sticky-icon-wrapper img {
  border-radius: 4px !important;
}

.sticky-calculator-btn {
  cursor: not-allowed;
  position: absolute;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid #DDDDDD;
  background: #ffffff;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.sticky-calculator-btn--icon {
  display: flex;
}
.sticky-calculator-btn--icon i {
  font-size: 24px;
  color: #1AB163;
}
.sticky-calculator-btn--icon img {
  width: 24px;
  height: 24px;
}
.sticky-calculator-btn--icon.is-image {
  width: 24px;
  height: 24px;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  border-radius: 4px;
}
.sticky-calculator-btn--icon.is-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.sticky-calculator-btn--text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 3px;
}
.sticky-calculator-btn--text__title {
  color: #001931;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.sticky-calculator-btn--text__description {
  color: #9196A1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.sticky-calculator-btn .ccb-icon-arrow {
  margin-left: 4px;
  display: flex;
  align-items: center;
}
.sticky-calculator-btn .ccb-icon-arrow i {
  font-size: 12px;
  color: #1AB163;
  transform: rotate(180deg);
}

.sticky-calculator-banner {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 56px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.sticky-calculator-banner--top, .sticky-calculator-banner--left {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.sticky-calculator-banner--top .sticky-bar-icon i, .sticky-calculator-banner--left .sticky-bar-icon i {
  font-size: 24px;
  color: #1AB163;
}
.sticky-calculator-banner--top .sticky-bar-icon img, .sticky-calculator-banner--left .sticky-bar-icon img {
  width: 24px;
  height: 24px;
}
.sticky-calculator-banner--top .sticky-bar-icon.is-image, .sticky-calculator-banner--left .sticky-bar-icon.is-image {
  width: 24px;
  height: 24px;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  border-radius: 4px;
}
.sticky-calculator-banner--top .sticky-bar-icon.is-image img, .sticky-calculator-banner--left .sticky-bar-icon.is-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.sticky-calculator-banner--top .sticky-bar-text, .sticky-calculator-banner--left .sticky-bar-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 5px;
}
.sticky-calculator-banner--top .sticky-bar-text__title, .sticky-calculator-banner--left .sticky-bar-text__title {
  color: #001931;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.sticky-calculator-banner--top .sticky-bar-text__description, .sticky-calculator-banner--left .sticky-bar-text__description {
  color: #9196A1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.sticky-calculator-banner--botom, .sticky-calculator-banner--right {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.sticky-calculator-banner .sticky-bar-totals span {
  color: #001931;
  font-size: 16px;
  font-weight: 700;
}

.calc-pagination.border {
  border-bottom: 1px solid #ddd;
}
.calc-pagination .progress-with-bar, .calc-pagination .progress-with-circle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  width: 100%;
  padding: 20px;
}
.calc-pagination .progress-with-bar__title, .calc-pagination .progress-with-circle__title {
  width: 50%;
}
.calc-pagination .progress-with-bar__bar, .calc-pagination .progress-with-circle__bar {
  display: flex;
  flex-direction: column;
  max-width: 270px;
  width: 50%;
}
.calc-pagination .progress-with-bar__bar .count, .calc-pagination .progress-with-circle__bar .count {
  margin-bottom: 4px;
}
.calc-pagination .progress-with-bar__bar .bar, .calc-pagination .progress-with-circle__bar .bar {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #ddd;
}
.calc-pagination .progress-with-bar__bar .bar span, .calc-pagination .progress-with-circle__bar .bar span {
  display: block;
  background-color: green;
  height: 100%;
  width: 50%;
  border-radius: 4px;
  transition: width 0.5s ease-in-out;
}
.calc-pagination .progress-with-bar__circle, .calc-pagination .progress-with-circle__circle {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
}
.calc-pagination .progress-with-bar__circle .progress-ring, .calc-pagination .progress-with-circle__circle .progress-ring {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.calc-pagination .progress-with-bar__circle .progress-ring svg, .calc-pagination .progress-with-circle__circle .progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}
.calc-pagination .progress-with-bar__circle .progress-ring svg .background, .calc-pagination .progress-with-circle__circle .progress-ring svg .background {
  stroke: #f3f3f3;
}
.calc-pagination .progress-with-bar__circle .progress-ring svg .progress, .calc-pagination .progress-with-circle__circle .progress-ring svg .progress {
  stroke: #4caf50;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.35s;
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}
.calc-pagination .progress-with-bar__circle .progress-ring svg circle, .calc-pagination .progress-with-circle__circle .progress-ring svg circle {
  fill: transparent;
  stroke-width: 3;
}
.calc-pagination .progress-with-bar__circle .count, .calc-pagination .progress-with-circle__circle .count {
  line-height: 1;
}
.calc-pagination .rectangle-tab, .calc-pagination .circle-tab, .calc-pagination .circle-with-line {
  overflow-x: auto;
  padding: 20px 0;
}
.calc-pagination .rectangle-tab .tabs, .calc-pagination .circle-tab .tabs, .calc-pagination .circle-with-line .tabs {
  display: flex;
  justify-content: flex-start;
  width: max-content;
}
.calc-pagination .rectangle-tab .tab, .calc-pagination .circle-tab .tab, .calc-pagination .circle-with-line .tab {
  margin: 0 10px;
  display: flex;
  align-items: center;
}
.calc-pagination .rectangle-tab .tab.done .complete, .calc-pagination .circle-tab .tab.done .complete, .calc-pagination .circle-with-line .tab.done .complete {
  display: flex;
}
.calc-pagination .rectangle-tab .tab.done .count, .calc-pagination .circle-tab .tab.done .count, .calc-pagination .circle-with-line .tab.done .count {
  display: none;
}
.calc-pagination .rectangle-tab .tab.active .tab__title, .calc-pagination .circle-tab .tab.active .tab__title, .calc-pagination .circle-with-line .tab.active .tab__title {
  font-weight: 600;
}
.calc-pagination .rectangle-tab .tab__item, .calc-pagination .circle-tab .tab__item, .calc-pagination .circle-with-line .tab__item {
  margin-right: 6px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  max-width: 140px;
}
.calc-pagination .rectangle-tab .tab__item .complete, .calc-pagination .circle-tab .tab__item .complete, .calc-pagination .circle-with-line .tab__item .complete {
  display: none;
}
.calc-pagination .rectangle-tab .tab__title, .calc-pagination .circle-tab .tab__title, .calc-pagination .circle-with-line .tab__title {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-wrap: nowrap;
}
.calc-pagination .rectangle-tab.hide-title .tab__title, .calc-pagination .circle-tab.hide-title .tab__title, .calc-pagination .circle-with-line.hide-title .tab__title {
  display: none !important;
}
.calc-pagination .rectangle-tab.hide-title .tab, .calc-pagination .circle-tab.hide-title .tab, .calc-pagination .circle-with-line.hide-title .tab {
  min-width: 81px;
}
.calc-pagination .circle-tab .tab__item {
  border-radius: 50%;
}
.calc-pagination .circle-with-line {
  position: relative;
  padding: 20px 10px;
  height: 100px;
}
.calc-pagination .circle-with-line .tabs-wrapper {
  display: flex;
}
.calc-pagination .circle-with-line .tabs {
  display: flex;
  justify-content: space-between;
  position: absolute;
}
.calc-pagination .circle-with-line .tabs .tab {
  z-index: 9;
  flex-direction: column;
  min-width: 81px;
}
.calc-pagination .circle-with-line .tabs .tab__item {
  margin-right: 0px;
  border-radius: 50%;
}
.calc-pagination .circle-with-line .tabs .tab__title {
  margin-top: 10px;
}
.calc-pagination .circle-with-line .bar-overlay {
  position: absolute;
  left: 32px;
  top: 17px;
  z-index: 1;
  background: yellow;
  height: 2px;
}
.calc-pagination .circle-with-line .bar-progress {
  position: absolute;
  left: 32px;
  top: 17px;
  z-index: 2;
  background: red;
  height: 2px;
  transition: width 0.5s;
}
.calc-pagination .circle-with-line.hide-title {
  height: 75px;
  padding: 20px 0px;
}
.calc-pagination .rectangle-steps-with-line .tab__item {
  border-radius: 6px !important;
}
.calc-pagination .rectangle-tab, .calc-pagination .circle-tab {
  height: 74px;
  position: relative;
  padding: 20px 10px;
}
.calc-pagination .rectangle-tab.hide-title .tab, .calc-pagination .circle-tab.hide-title .tab {
  min-width: auto;
}
.calc-pagination .rectangle-tab .tabs, .calc-pagination .circle-tab .tabs {
  position: absolute;
}

.calc-page-navigation {
  padding: 20px 24px;
}
.calc-page-navigation__actions {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.calc-page-navigation__actions button {
  padding: 11px 24px;
  border: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.calc-page-navigation__actions button i {
  display: inline-block;
}
.calc-page-navigation__actions button.next.disable {
  opacity: 0.5;
  pointer-events: none;
}
.calc-page-navigation.show-totals {
  display: flex;
  align-items: flex-end;
}
.calc-page-navigation.show-totals .calc-page-navigation__total, .calc-page-navigation.show-totals .calc-page-navigation__actions {
  width: 50%;
}
.calc-page-navigation.show-totals .calc-page-navigation__total .totals-item {
  margin-bottom: 2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.calc-page-navigation.show-totals .calc-page-navigation__total .totals-item .ccb-discount {
  text-decoration: line-through;
}
.calc-page-navigation.show-totals .calc-page-navigation__total .totals-item .sub-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.calc-page-navigation.show-totals .calc-page-navigation__total .totals-item .sub-list-item .sub-item-title {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 10px;
}
.calc-page-navigation.show-totals .calc-page-navigation__total .totals-item .total:last-child {
  font-weight: 800;
  font-size: 13px;
}
.calc-page-navigation.show-totals .calc-page-navigation__actions {
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 600px) {
  .calc-page-navigation.show-totals .calc-page-navigation__actions {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.calc-page-navigation .summary {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.calc-page-navigation .summary span {
  cursor: pointer;
}
@media (max-width: 600px) {
  .calc-page-navigation {
    display: flex;
    flex-direction: column;
  }
  .calc-page-navigation .calc-page-navigation__total {
    order: 1;
    width: 100% !important;
  }
  .calc-page-navigation .calc-page-navigation__total .sub-list-item {
    justify-content: space-between;
  }
  .calc-page-navigation .calc-page-navigation__actions {
    width: 100% !important;
    flex-direction: column-reverse;
    justify-content: flex-start !important;
    gap: 10px;
  }
}

.calc-summary-popup {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 999999;
}
.calc-summary-popup__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.calc-summary-popup-window {
  border-radius: 6px;
  min-width: 490px;
  background-color: #fff;
  opacity: 0;
  transform: translateY(-300px);
  transition: 300ms ease-in-out;
}
.calc-summary-popup-window.active {
  transform: translateY(0px);
  opacity: 1;
}
@media (max-width: 600px) {
  .calc-summary-popup-window {
    min-width: 90vw;
    width: 90%;
  }
}
.calc-summary-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid #ddd;
}
.calc-summary-popup__body {
  padding: 24px;
  max-height: 500px;
  overflow: auto;
}
.calc-summary-popup__close span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #ccc;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
}

.product-name dt {
  float: unset !important;
}

.is-pro {
  display: none;
}

.ccb-hr {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .calc-subtotal-wrapper {
    position: unset !important;
    transform: unset !important;
    width: 100% !important;
  }
}

.modal-body .ccb-summary-sticky {
  top: 0 !important;
}

.ccb-custom-scrollbar {
  /* Scrollbar Styling */
}
.ccb-custom-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.ccb-custom-scrollbar.ccb-scroll-hide::-webkit-scrollbar {
  display: none;
}
.ccb-custom-scrollbar::-webkit-scrollbar-track {
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  background-color: transparent;
  border-radius: 4px;
}
.ccb-custom-scrollbar::-webkit-scrollbar-thumb {
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  border-radius: 4px;
  background: transparent;
}
.ccb-custom-scrollbar:hover::-webkit-scrollbar {
  background-color: #ebebeb;
}
.ccb-custom-scrollbar:hover::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #808c97;
}
.ccb-custom-scrollbar.large::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.ccb-custom-scrollbar.large::-webkit-scrollbar-track {
  border-radius: 6px;
}
.ccb-custom-scrollbar.large::-webkit-scrollbar-thumb {
  border-radius: 6px;
}
.ccb-custom-scrollbar.large:hover::-webkit-scrollbar-thumb {
  border-radius: 6px;
}

.ccb-calc-edit {
  transition: all 450ms cubic-bezier(0.4, 0.25, 0.3, 1.3);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: -3%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 1239px) {
  .ccb-calc-edit {
    display: none;
  }
}
.ccb-calc-edit span {
  transition: all 400ms cubic-bezier(0.4, 0.25, 0.3, 1.3) 100ms;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  vertical-align: middle;
}
.ccb-calc-edit span:first-of-type {
  font-size: 20px;
  transform: translate(-50%, -50%);
}
.ccb-calc-edit span:last-of-type {
  transform: translate(-50%, 50%);
  text-transform: uppercase;
}
.ccb-calc-edit:hover {
  width: 70px;
  border-radius: 6px;
}
.ccb-calc-edit:hover span:first-of-type {
  transform: translate(-50%, -150%);
}
.ccb-calc-edit:hover span:last-of-type {
  transform: translate(-50%, -50%);
}

[v-cloak] {
  display: none;
}

.multiselect.calc-required {
  border-color: #d94141 !important;
}

.iti-flag {
  width: 20px;
  height: 15px;
  background-image: url("../../dist/img/flags.9c96e0ed.png");
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx), only screen and (min-resolution: 192dpi) {
  .iti-flag {
    background-image: url("../../dist/img/flags.9c96e0ed.png");
  }
}
.input-tel.has-hint .input-tel__input[data-v-e59be3b4], .input-tel.has-value .input-tel__input[data-v-e59be3b4],
.country-selector.has-hint .country-selector__input[data-v-46e105de], .country-selector.has-value .country-selector__input[data-v-46e105de] {
  padding-top: 0 !important;
}

.input-tel.has-hint .input-tel__label[data-v-e59be3b4], .input-tel.has-value .input-tel__label[data-v-e59be3b4],
.country-selector.has-hint .country-selector__label[data-v-46e105de], .country-selector.has-value .country-selector__label[data-v-46e105de] {
  display: none !important;
}

.country-selector__country-flag[data-v-46e105de] {
  top: 51% !important;
  transform: translateY(-50%) !important;
}

.calc-cf7-disabled .wpcf7-form,
.calc-disabled {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}

.calc-item.ccb-fields-tooltip .ccb-field-required-tooltip {
  position: relative !important;
  top: -5px !important;
  width: max-content;
  margin-left: 0 !important;
}
.calc-item.ccb-fields-tooltip .ccb-error-tip {
  position: relative !important;
  top: -5px !important;
  width: max-content;
  margin-left: 0 !important;
}
.calc-item.ccb-fields-tooltip .ccb-error-tip:after {
  left: 10px;
  right: auto;
}
