/*!*****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/frontend.scss ***!
  \*****************************************************************************************************************/
/* Front-end css goes here */
.rnb-cart * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.rnb-custom-field-option {
  --error: #b91c1c;
  --label-color: #777777;
  --input-border: #ebebeb;
  --border: #e6e6e6;
  --helper-text: 13px;
  --label-text: 15px;
  display: -ms-grid;
  display: grid;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.rnb-custom-field-option label.error {
  display: none;
}
.rnb-custom-field-option input.error {
  border: 1px solid var(--error);
}
.rnb-custom-field-option.last-of-type {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.rnb-custom-field-option .field-label {
  margin: 0;
  padding-top: 0;
  padding-bottom: 7px;
  color: var(--label-color);
  font-size: var(--label-text);
  font-weight: 400;
}
.rnb-custom-field-option .input-wrapper {
  display: -ms-grid;
  display: grid;
}
.rnb-custom-field-option input,
.rnb-custom-field-option textarea {
  border: 1px solid var(--input-border);
  height: 38px;
  padding-left: 12px;
  padding-right: 40px;
}
.rnb-custom-field-option input::-webkit-input-placeholder,
.rnb-custom-field-option textarea::-webkit-input-placeholder {
  opacity: 0.7;
}
.rnb-custom-field-option input::-moz-placeholder,
.rnb-custom-field-option textarea::-moz-placeholder {
  opacity: 0.7;
}
.rnb-custom-field-option input:-ms-input-placeholder,
.rnb-custom-field-option textarea:-ms-input-placeholder {
  opacity: 0.7;
}
.rnb-custom-field-option input::-ms-input-placeholder,
.rnb-custom-field-option textarea::-ms-input-placeholder {
  opacity: 0.7;
}
.rnb-custom-field-option input::placeholder,
.rnb-custom-field-option textarea::placeholder {
  opacity: 0.7;
}
.rnb-custom-field-option input:focus,
.rnb-custom-field-option textarea:focus {
  outline: none;
}
.rnb-custom-field-option textarea {
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 132px;
}
.rnb-custom-field-option .error {
  color: var(--error);
  font-size: var(--helper-text);
  margin: 0;
}
.rnb-custom-field-option .rnb-custom-field-date-picker {
  width: 100%;
  padding-right: 0;
}

/* ------------------------------------------------ */
/* style::rnb custom field quantity */
/* ------------------------------------------------ */
.rnb-custom-field-option-quantity-changer {
  margin-top: 24px;
}
.rnb-custom-field-option-quantity-changer label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.rnb-custom-field-option-quantity-changer label input[type=number] {
  width: 50% !important;
}
.rnb-custom-field-option-quantity-changer span {
  margin: 0;
  font-size: 14px;
}

/* ------------------------------------------------ */
/* style::rnb custom field price */
/* ------------------------------------------------ */
.rnb-custom-field-option-price {
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
  margin-top: 24px;
}
.rnb-custom-field-option-price span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.woocommerce div.product .entry-summary .rnb-custom-field-option-price .price {
  font-size: 14px;
}

/* ------------------------------------------------ */
/* style::rnb custom color field */
/* ------------------------------------------------ */
.rnb-custom-field-color-wrapper {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(56px, 72px));
}

.rnb-custom-field-color {
  cursor: pointer;
}

.rnb-custom-field-color-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--color);
  height: 56px;
  position: relative;
}
.rnb-custom-field-color-label input[type=radio] {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  visibility: hidden;
  position: absolute;
}
.rnb-custom-field-color-label input[type=radio]:checked ~ .rnb-custom-filed-color-checkmark {
  opacity: 1;
  visibility: visible;
}

.rnb-custom-filed-color-checkmark {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 28px;
  height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.12);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}
.rnb-custom-filed-color-checkmark svg {
  width: 18px;
  height: auto;
}

.rnb-custom-field-color-label-text {
  display: block;
  font-size: var(--helper-text);
  word-break: break-word;
  text-transform: capitalize;
  margin-top: 2px;
}

/* ------------------------------------------------ */
/* style::rnb custom checkbox field */
/* ------------------------------------------------ */
.rnb-custom-field-checkbox-wrapper {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
}

.rnb-epo-checkbox {
  position: relative;
}
.rnb-epo-checkbox input[type=checkbox] {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  visibility: hidden;
  position: absolute;
}
.rnb-epo-checkbox input[type=checkbox] ~ label {
  border: 1px solid var(--border);
  display: -ms-grid;
  display: grid;
  gap: 2px;
  padding: 12px;
  margin: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.rnb-epo-checkbox input[type=checkbox] + label:before, .rnb-epo-checkbox input[type=checkbox]:checked + label:after {
  content: none;
}
.rnb-epo-checkbox input[type=checkbox]:checked ~ label {
  border-color: #000000;
  -webkit-box-shadow: inset 0 0 0 0.4px #000000;
  box-shadow: inset 0 0 0 0.4px #000000;
}

.rnb-epo-checkbox-label-text {
  font-size: var(--helper-text);
  word-break: break-word;
  text-transform: capitalize;
}

.rnb-epo-checkbox-price {
  font-size: 14px;
  font-weight: 600;
}

.rnb-custom-field-date-picker i {
  display: inline-block !important;
}

.booking-pricing-info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* ----------------------------------------------- */
/* This style should goes to the Cartsy theme */
/* ----------------------------------------------- */
.cartsy-woocommerce .rnb-custom-field-option textarea {
  border-color: #f1f1f1;
  background-color: #f9f9f9;
}
.cartsy-woocommerce .rnb-custom-field-option textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.cartsy-woocommerce .rnb-custom-field-option .field-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--colorTextMain, #212121);
  padding-bottom: 10px;
}
.cartsy-woocommerce .rnb-custom-field-color-label,
.cartsy-woocommerce .rnb-epo-checkbox input[type=checkbox] ~ label {
  border-radius: 6px;
}

.hide-field {
  display: none;
}

.epo-has-help-text {
  position: relative;
}
.epo-has-help-text .epo-help-text-wrapper {
  position: absolute;
  right: 0;
  top: -34px;
}

.epo-help-text-wrapper {
  display: block !important;
}
.epo-help-text-wrapper div {
  display: inline-block;
}
.epo-help-text-wrapper .epo-help-text {
  min-width: 100px;
  right: 50%;
  position: absolute;
  font-size: 12px;
  text-align: right;
  bottom: calc(100% + 4px);
  border: 1px solid var(--input-border);
  padding: 5px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  background-color: #ffffff;
}
.epo-help-text-wrapper:hover .epo-help-text {
  visibility: visible;
  opacity: 1;
}

.epo-help-icon {
  margin-top: 5px;
}

.input-wrapper.epo-has-help-text {
  position: relative;
  width: 100%;
}

body.rnb-epo-field {
  overflow-x: hidden;
}

/* ======================= */
/* radio box style start  */
/* ===================== */
.rnb-custom-field-option.type-radio .field-area-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--label-color);
}
.rnb-custom-field-option.type-radio .rnb-radio-box-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.rnb-custom-field-option.type-radio .rnb-radio-box-container input[type=radio] {
  width: 20px !important;
  height: 20px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 50%;
  border: 1px solid var(--label-color);
}
.rnb-custom-field-option.type-radio .rnb-radio-box-container input[type=radio]:checked {
  background-color: #212121 !important;
  border: 1px solid #212121 !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox=%270 0 16 16%27 fill=%27%23fff%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%278%27 cy=%278%27 r=%273%27/%3E%3C/svg%3E") !important;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 120% 120%;
}
.rnb-custom-field-option.type-radio .rnb-radio-box-container label {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--label-color);
}

/* ======================== */
/* select box style start  */
/* ====================== */
.rnb-custom-field-option.type-select .select2 {
  width: 100% !important;
}
.rnb-custom-field-option.type-select .select2.select2-container--open {
  box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.15);
}
.rnb-custom-field-option.type-select .select2.select2-container--open .select2-selection {
  border-bottom: none;
}
.rnb-custom-field-option.type-select .select2 .select2-selection {
  border-color: #dfdfdf;
  height: 48px;
  min-height: 38px;
  border-radius: 4px;
  box-shadow: none;
  display: flex;
  align-items: center;
}
.rnb-custom-field-option.type-select .select2 .select2-selection__rendered {
  padding-right: 30px;
  vertical-align: middle;
  padding-left: 12px;
  font-size: 14px;
}
.rnb-custom-field-option.type-select .select2 .select2-selection__arrow {
  height: 100%;
}
.rnb-custom-field-option.type-select .select2 .select2-selection__placeholder {
  font-size: 14px;
  text-transform: capitalize;
  color: var(--label-color);
}
.rnb-custom-field-option.type-select .select2-container .select2-selection--single {
  margin: 0;
}
.rnb-custom-field-option.type-select .select2-container .select2-selection--multiple .select2-selection__rendered {
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.rnb-custom-field-option.type-select .select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  margin: 0;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  background-color: rgba(221, 221, 221, 0.3294117647);
  font-size: 14px;
  padding: 1px 8px;
}
.rnb-custom-field-option.type-select .select2-container .select2-selection--multiple .select2-selection__rendered li span {
  margin-right: 6px;
}
.rnb-custom-field-option.type-select .select2-container .select2-selection--multiple .select2-selection__rendered .select2-search {
  margin: 0;
  font-size: 14px;
  height: 100%;
  border: none;
  background-color: transparent;
  padding: 0;
}
.rnb-custom-field-option.type-select .select2-container .select2-selection--multiple .select2-selection__rendered .select2-search input {
  height: 100%;
}

.single-product .select2-container .select2-dropdown {
  padding: 0;
  margin-top: 32px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-top: none;
  border-radius: 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
.single-product .select2-container .select2-search {
  padding: 12px;
}
.single-product .select2-container .select2-search__field {
  padding: 6px 10px;
  height: auto;
  margin-bottom: 0;
  border: 1px solid #c4c4c4;
  font-size: 14px;
  border-radius: 4px;
}
.single-product .select2-container .select2-search__field:focus {
  outline: none;
  box-shadow: none;
}
.single-product .select2-container .select2-results {
  padding-top: 8px;
}
.single-product .select2-container .select2-results__option {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-brand);
  border: none;
  padding: 8px 12px;
}
.single-product .select2-container .select2-results__option--highlighted {
  background-color: #f3f4f6;
}

/* ======================= */
/* checkbox style start  */
/* ====================== */
.rnb-custom-field-checkbox-wrapper,
.rnb-custom-field-color-wrapper,
.input-wrapper.epo-input-required,
.epo-select-wrapper,
.rnb-custom-field-option.type-radio {
  position: relative;
}
.rnb-custom-field-checkbox-wrapper .error-message,
.rnb-custom-field-color-wrapper .error-message,
.input-wrapper.epo-input-required .error-message,
.epo-select-wrapper .error-message,
.rnb-custom-field-option.type-radio .error-message {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 12px;
  color: var(--error);
}
