/* stylelint-disable */
:root {
  --cf-color__black: #000000;
  --cf-color__gray--dark: #808080;
  --cf-color__gray: #5b5b5b;
  --cf-color__gray--light: #c4c4c4;
  --cf-color__gray--lighter: #ececec;
  --cf-color__white: #ffffff;
  --cf-color__pink: #fdeaea;
  --cf-color__red: #ff0000;
  --cf-color__red--light: #ff4d00;
  --cf-color__blue: #001aff;
  --cf-color__blue--light: #8bb1eb;
  --cf-color__green: #19890F;
  --cf-layout__z-index: var(--z-index__chat-form, 10);
  --cf-layout__message-gap: 16px;
  --cf-global-setting__message_width: 458px;
  --cf-global-setting__toolbar_background_color: #ffd79b;
  --cf-global-setting__toolbar_font_color: #000000;
  --cf-global-setting__chat_background_color: #8bb1eb;
  --cf-global-setting__operator_message_background_color: #ffffff;
  --cf-global-setting__operator_message_font_color: #000000;
  --cf-global-setting__operator_message_no_frame_background_color: rgba(0, 0, 0, 0.2);
  --cf-global-setting__operator_message_no_frame_font_color: #ffffff;
  --cf-global-setting__user_message_background_color: #ffffff;
  --cf-global-setting__user_message_font_color: #000000;
  --cf-global-setting__validation_error_background_color: #fdeaea;
  --cf-global-setting__validation_error_font_color: #ff0000;
  --cf-global-setting__next_button_background_color: #ff4d00;
  --cf-global-setting__next_button_font_color: #ffffff;
  --cf-global-setting__update_button_background_color: #ff4d00;
  --cf-global-setting__update_button_font_color: #ffffff;
}

.cf {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--cf-color__black);
}
.cf *,
.cf *::before,
.cf *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 1.17;
}
.cf fieldset {
  height: 100%;
  border: none;
}
.cf table {
  border-spacing: 0;
  border-collapse: collapse;
}
.cf table th,
.cf table td {
  font-weight: normal;
}
.cf :disabled:is(fieldset, button, input, select, option, textarea) {
  pointer-events: none;
}

.cf-c-textbox {
  width: 100%;
  height: 44px;
  max-height: 44px;
  padding: 8px;
  background-color: var(--cf-color__gray--lighter);
  border: solid 1px #b4b4b4;
  border-radius: 10px;
}
.cf-c-textbox--disabled, .cf-c-textbox[data-disabled], .cf-c-textbox:disabled {
  background-color: var(--cf-color__gray--light);
  border-color: var(--cf-color__gray--light);
}
.cf-c-textbox[name$=_zip] {
  width: 70%;
}
.cf-c-secure-textbox {
  position: relative;
  width: 100%;
}
.cf-c-secure-textbox::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 11px;
  content: "";
  background: url("/assets/svg/lock.svg") center center no-repeat;
}
.cf-c-password {
  position: relative;
}
.cf-c-password__icon {
  position: absolute;
  top: 1px;
  right: 0;
  width: 44px;
  height: 100%;
  cursor: pointer;
  content: "";
  background: center center no-repeat;
  background-image: url("/assets/svg/eye_close");
  background-size: 1.5em;
}
.cf-c-password--visible .cf-c-password__icon {
  top: 0;
  background-image: url("/assets/svg/eye_open");
}
.cf-c-select {
  width: 100%;
  height: 44px;
  max-height: 44px;
  padding: 8px;
  padding-right: 30px;
  overflow-x: hidden;
  color: var(--cf-color__black);
  cursor: pointer;
  background: linear-gradient(45deg, transparent 50%, var(--cf-color__gray) 50%), linear-gradient(135deg, var(--cf-color__gray) 50%, transparent 50%);
  background-color: var(--cf-color__white);
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%, 100% 0;
  background-size: 5px 5px, 5px 5px, 30px 44px;
  border: solid 1px #b4b4b4;
  border-radius: 10px;
  -webkit-appearance: none;
  appearance: none;
}
.cf-c-select--disabled, .cf-c-select:disabled {
  background-color: var(--cf-color__gray--light);
  border-color: var(--cf-color__gray--light);
}
.cf-c-select[name$=_pref] {
  width: 50%;
}
@media screen and (max-width: 450px) {
  .cf-c-select[name$=_pref] {
    width: 60%;
  }
}
.cf-c-radio {
  display: grid;
  place-content: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: text-top;
  background-color: var(--cf-color__white);
  border: solid 1px #b4b4b4;
  border-radius: 50%;
  -webkit-appearance: none;
  appearance: none;
}
.cf-c-radio:checked::before {
  display: block;
  width: 8px;
  height: 8px;
  pointer-events: all;
  content: "";
  background-color: var(--cf-color__blue);
  border-radius: 50%;
}
.cf-c-checkbox {
  display: grid;
  place-content: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: text-top;
  background-color: var(--cf-color__white);
  border: solid 1px #b4b4b4;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}
.cf-c-checkbox:checked::before {
  display: block;
  width: 10px;
  height: 10px;
  clip-path: polygon(13% 47%, 0% 69%, 44% 98%, 100% 14%, 81% 1%, 39% 63%);
  content: "";
  background-color: var(--cf-color__blue);
  transform-origin: bottom left;
}
.cf-c-radio-label, .cf-c-checkbox-label {
  display: flex;
  cursor: pointer;
}
.cf-c-form-input--error.cf-c-radio:checked::before, .cf-c-form-input--error.cf-c-checkbox:checked::before {
  background-color: var(--cf-color__red);
}
.cf-c-form-input-container {
  position: relative;
}
.cf-c-form-input-mask {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}
.cf-c-section--disabled:not(.cf-c-section--locked) .cf-c-form-input-mask {
  display: block;
}

.cf-c-form-label {
  display: inline-block;
  margin-bottom: 10px;
}
.cf-c-form-label:empty {
  display: none;
}
.cf-c-form-text {
  font-size: 18px;
}
.cf-c-form-groups + .cf-c-form-groups {
  margin-top: 20px;
}
.cf-c-form-groups + .cf-c-form-groups--no-gap {
  margin-top: 0;
}
.cf-c-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cf-c-form-group:empty {
  display: none;
}
.cf-c-form-group--row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cf-c-form-group--align-center {
  align-items: center;
}
.cf-c-form-attention {
  display: block;
  margin-top: 5px;
  color: var(--cf-color__gray);
}
.cf-c-date-input {
  width: 100%;
  height: 44px;
  max-height: 44px;
  padding: 8px;
  background-color: var(--cf-color__gray--lighter);
  border: solid 1px #b4b4b4;
  border-radius: 10px;
  display: inline-flex;
  gap: 2px;
  align-items: center;
  width: unset;
}
.cf-c-date-input--disabled, .cf-c-date-input[data-disabled], .cf-c-date-input:disabled {
  background-color: var(--cf-color__gray--light);
  border-color: var(--cf-color__gray--light);
}
.cf-c-date-input input {
  min-width: 20px;
  height: unset;
  padding: 0;
  background: none;
  border-color: transparent;
  border-radius: 0;
}
.cf-c-date-input input:focus {
  outline: none;
}
.cf-c-date-input input[maxlength="1"] {
  width: 0.7em;
}
.cf-c-date-input input[maxlength="2"] {
  width: 1.4em;
}
.cf-c-date-input input[maxlength="3"] {
  width: 2.1em;
}
.cf-c-date-input input[maxlength="4"] {
  width: 2.8em;
}
.cf-c-radio-group {
  display: flex;
  width: 100%;
}
.cf-c-radio-group > * {
  flex: 1;
}
.cf-c-radio-group > *:first-child label {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cf-c-radio-group > *:last-child label {
  border-right: solid 1px #b4b4b4;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cf-c-radio-group label {
  width: 100%;
  height: 44px;
  max-height: 44px;
  padding: 8px;
  background-color: var(--cf-color__gray--lighter);
  border: solid 1px #b4b4b4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: none;
  border-radius: 0;
}
.cf-c-radio-group label--disabled, .cf-c-radio-group label[data-disabled], .cf-c-radio-group label:disabled {
  background-color: var(--cf-color__gray--light);
  border-color: var(--cf-color__gray--light);
}
.cf-c-radio-group input[type=radio] {
  position: absolute;
  visibility: hidden;
}
.cf-c-radio-group input[type=radio]:checked + label {
  color: var(--cf-color__white);
  background-color: var(--cf-color__gray--dark);
}
.cf-c-radio-group input[type=radio]:disabled:not(:checked) + label {
  background-color: var(--cf-color__gray--light);
}
.cf-c-radio-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cf-c-radio-image--1n {
  grid-template-columns: repeat(1, 1fr);
  width: 93%;
  margin: 0 auto;
}
.cf-c-radio-image--3n {
  grid-template-columns: repeat(3, 1fr);
}
.cf-c-radio-image .cf-c-radio {
  position: relative;
  width: 0;
  min-width: auto;
  height: 0;
  margin: 0;
  overflow: hidden;
  border: none;
}
.cf-c-radio-image .cf-c-radio::before {
  display: none;
}
.cf-c-radio-image .cf-c-radio + .cf-c-radio-label .cf-c-img--error {
  width: 100%;
  padding: 12px;
}
.cf-c-radio-image .cf-c-radio + .cf-c-radio-label .cf-c-radio-label__text {
  padding: 12px;
}
.cf-c-radio-image .cf-c-radio + .cf-c-radio-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  box-shadow: inset 0px 0px 0px 6px var(--cf-global-setting__next_button_background_color);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cf-c-radio-image .cf-c-radio:checked + .cf-c-radio-label::after {
  opacity: 0.75;
}

.cf-c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0;
  margin: 0;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.cf-c-button:hover {
  opacity: 0.9;
}
.cf-c-button--default {
  color: var(--cf-color__white);
  background-color: var(--cf-color__red--light);
}
.cf-c-button--primary {
  color: var(--cf-color__white);
  background-color: var(--cf-color__green);
}
.cf-c-button--secondary {
  color: var(--cf-color__white);
  background-color: #9c9c9c;
}
.cf-c-button--disabled, .cf-c-button:disabled {
  color: var(--cf-color__white);
  cursor: default;
  background-color: var(--cf-color__gray--dark);
}
.cf-c-button--disabled:hover, .cf-c-button:disabled:hover {
  opacity: 1;
}
.cf-c-button--ok {
  color: var(--cf-global-setting__next_button_font_color);
  background-color: var(--cf-global-setting__next_button_background_color);
}
.cf-c-button--edit {
  color: var(--cf-global-setting__update_button_font_color);
  background-color: var(--cf-global-setting__update_button_background_color);
}
.cf-c-button--sm {
  min-width: 56px;
  height: 20px;
  padding: 0 10px;
  font-size: 10px;
  border-radius: 10px;
}
.cf-c-button--md {
  min-width: 114px;
  height: 30px;
  padding: 0 20px;
  font-size: 18px;
  border-radius: 15px;
}
@media screen and (max-width: 450px) {
  .cf-c-button--md {
    height: auto;
    min-height: 30px;
    padding: 0 5px;
  }
}
.cf-c-button--lg {
  min-width: 224px;
  height: 46px;
  padding: 0 20px;
  font-size: 18px;
  border-radius: 23px;
}
.cf-c-button--start-chat {
  position: fixed;
  right: 15px;
  bottom: 15px;
}
.cf-c-button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
.cf-c-button-container--center {
  align-items: center;
  justify-content: center;
}
.cf-c-button-container--column {
  flex-direction: column;
  gap: 10px;
}

.cf-c-table th,
.cf-c-table td {
  padding: 5px;
  text-align: left;
  vertical-align: top;
}
.cf-c-table th {
  min-width: 110px;
}
.cf-c-table td {
  word-break: break-all;
}
.cf-c-table--vertical-align-middle th,
.cf-c-table--vertical-align-middle td {
  vertical-align: middle;
}
.cf-c-table--customer-info tr :nth-child(2) {
  width: 100%;
}
.cf-c-table--customer-info tr :nth-child(3) {
  padding: 0;
  text-align: right;
}
.cf-c-table--colored-th {
  color: var(--cf-color__black);
  background-color: var(--cf-color__white);
}
.cf-c-table--colored-th th {
  background-color: var(--cf-color__gray--lighter);
}
.cf-c-table--colored-th th,
.cf-c-table--colored-th td {
  border: 1px solid var(--cf-color__gray--light);
}
@media screen and (max-width: 450px) {
  .cf-c-table--small-screen-optimized-layout {
    display: block;
  }
  .cf-c-table--small-screen-optimized-layout thead,
  .cf-c-table--small-screen-optimized-layout tbody,
  .cf-c-table--small-screen-optimized-layout tr,
  .cf-c-table--small-screen-optimized-layout th,
  .cf-c-table--small-screen-optimized-layout td {
    display: block;
  }
}

.cf-c-bold {
  font-weight: bold;
}
.cf-c-attention {
  color: var(--cf-color__red);
}
.cf-c-font-xs {
  font-size: 10px;
}
.cf-c-font-sm {
  font-size: 12px;
}
.cf-c-font-lg {
  font-size: 18px;
}
.cf-c-font-xl {
  font-size: 22px;
}
.cf-c-align-center {
  text-align: center;
}
.cf-c-align-right {
  text-align: right;
}
.cf-c-margin-left-auto {
  margin-left: auto;
}
.cf-c-link, .cf-c-link:visited, .cf-c-link:active, .cf-c-link:hover {
  color: var(--cf-color__blue);
  text-decoration: underline;
}
.cf-c-hr {
  margin: 10px 0;
  border-top: 1px solid var(--cf-color__black);
}
.cf .cf-c-width-50 {
  width: 50px;
  min-width: 50px;
}
.cf .cf-c-width-60 {
  width: 60px;
  min-width: 60px;
}
.cf .cf-c-width-70 {
  width: 70px;
  min-width: 70px;
}
.cf .cf-c-width-80 {
  width: 80px;
  min-width: 80px;
}
.cf .cf-c-width-90 {
  width: 90px;
  min-width: 90px;
}
.cf .cf-c-width-100 {
  width: 100px;
  min-width: 100px;
}
.cf .cf-c-width-110 {
  width: 110px;
  min-width: 110px;
}
.cf .cf-c-width-120 {
  width: 120px;
  min-width: 120px;
}
.cf .cf-c-width-130 {
  width: 130px;
  min-width: 130px;
}
.cf .cf-c-width-140 {
  width: 140px;
  min-width: 140px;
}
.cf .cf-c-width-150 {
  width: 150px;
  min-width: 150px;
}
.cf-c-adhoc-error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--cf-color__red);
  background-color: var(--cf-color__pink);
}
.cf-c-indent-second-line {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.cf-c-modal {
  position: absolute;
  top: 0;
  left: 0;
  z-index: calc(var(--cf-layout__z-index) + 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.cf-c-modal-tmp-root {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.cf-c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: calc(var(--cf-layout__z-index) + 1);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.cf-c-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 300px;
  height: 80%;
  max-height: 200px;
  padding: 24px;
  background-color: var(--cf-color__white);
  border-radius: 20px;
}
.cf-c-modal__panel-body {
  display: flex;
  flex-grow: 1;
  align-items: center;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.cf-c-modal__panel-body-content {
  min-height: 50%;
  margin-top: auto;
  word-break: break-all;
}
.cf-c-modal__panel-actions {
  gap: 10px;
}
.cf-c-modal__panel-actions > * {
  min-width: auto;
}

.cf-c-balloon {
  position: absolute;
  top: 0;
  padding: 5px 10px;
  color: var(--cf-color__white);
  white-space: nowrap;
  background-color: var(--cf-color__red);
  border-radius: 8px;
  transform: translateY(calc(-100% - 8px));
}
.cf-c-balloon::after {
  position: absolute;
  top: 8px;
  display: block;
  width: 0;
  height: 0;
  margin-top: 18px;
  content: "";
  border-top: 8px solid var(--cf-color__red);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.cf-c-balloon--left {
  left: 0;
}
.cf-c-balloon--left::after {
  left: 6px;
}
.cf-c-balloon--right {
  right: 0;
}
.cf-c-balloon--right::after {
  right: 16px;
}

.cf-close-app-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.cf-close-app-confirm {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2010;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.cf-close-app-confirm-message {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.cf-c-button-close-app {
  position: absolute;
  top: 0;
  right: 4px;
  z-index: 1001;
  width: 49px;
  height: 49px;
  font-size: 12px;
  color: var(--cf-color__black);
  text-align: center;
}

.cf .c-bundle-combination {
  display: flex;
  flex-direction: column;
  overflow-wrap: anywhere;
  position: relative;
  z-index: 1;
}
.cf .c-bundle-combination button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.cf .c-bundle-combination button:not(:disabled) {
  cursor: pointer;
}
.cf .c-bundle-combination .c-bundle-combination-cart-item-delete-button, .cf .c-bundle-combination .c-bundle-product__product-button {
  font-size: 10px;
  border-radius: 3px;
  line-height: 1.5;
  padding: 1px 6px;
  white-space: nowrap;
}
.cf .c-bundle-combination .c-bundle-product__product-button--quantity-increment {
  color: #6c9925;
  border: solid 1px #6c9925;
}
.cf .c-bundle-combination .c-bundle-combination-cart-item-delete-button, .cf .c-bundle-combination .c-bundle-product__product-button--quantity-decrement {
  color: #333333;
  border: solid 1px #979797;
}
.cf .c-bundle-combination .c-bundle-combination-cart-item-delete-button:disabled, .cf .c-bundle-combination .c-bundle-product__product-button:disabled {
  color: gray;
  cursor: default;
  background-color: lightgray;
  border: solid 1px gray;
}
.cf .c-bundle-combination__product-root {
  order: 2;
  width: 100%;
  padding-top: 10px;
}
.cf .c-bundle-combination__cart-root {
  position: sticky;
  top: 0;
  order: 1;
  width: 100%;
}
.cf .c-bundle-combination .c-bundle-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cf .c-bundle-combination .c-bundle-product--na {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: red;
  background-color: pink;
}
.cf .c-bundle-combination .c-bundle-product__header {
  display: none;
}
.cf .c-bundle-combination .c-bundle-product__tab {
  display: flex;
}
.cf .c-bundle-combination .c-bundle-product__tab-button {
  flex: 1 1 0px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  color: #808080;
  border-bottom: solid 3px #ececec;
}
.cf .c-bundle-combination .c-bundle-product__tab-button:hover, .cf .c-bundle-combination .c-bundle-product__tab-button--active {
  color: #333333;
  border-bottom: solid 3px #0ab14d;
}
.cf .c-bundle-combination .c-bundle-product__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf .c-bundle-combination .c-bundle-product__list-header {
  padding: 5px;
  font-size: 16px;
  border-bottom: solid 2px #000000;
}
.cf .c-bundle-combination .c-bundle-product__list-status {
  display: flex;
  font-size: 16px;
}
.cf .c-bundle-combination .c-bundle-product__list-status-text {
  flex: 1;
}
.cf .c-bundle-combination .c-bundle-product__list-status-current-quantity {
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.cf .c-bundle-combination .c-bundle-product__list-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.cf .c-bundle-combination .c-bundle-product__product {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-self: flex-start;
  width: 100%;
  padding: 8px 10px;
  font-size: 10px;
  background-color: #ffffff;
  border: solid 1px #b3b3b3;
  border-radius: 4px;
}
.cf .c-bundle-combination .c-bundle-product__product-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #ebebeb;
  border: solid 1px rgba(0, 0, 0, 0.5);
}
.cf .c-bundle-combination .c-bundle-product__product-image-frame .image {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
.cf .c-bundle-combination .c-bundle-product__product-meta ::after {
  display: table;
  clear: both;
  content: "";
}
.cf .c-bundle-combination .c-bundle-product__product-description {
  display: inline-block;
}
.cf .c-bundle-combination .c-bundle-product__product-extra-price {
  width: fit-content;
  padding: 2px 5px;
  font-size: 10px;
  line-height: 1.1;
  color: #ffffff;
  border-radius: 3px;
}
.cf .c-bundle-combination .c-bundle-product__product-extra-price--plus {
  background-color: #8bb5f4;
}
.cf .c-bundle-combination .c-bundle-product__product-extra-price--minus {
  background-color: #f48b8b;
}
.cf .c-bundle-combination .c-bundle-product__product-extra-price--align-right {
  float: right;
}
.cf .c-bundle-combination .c-bundle-product__product-classcategories {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cf .c-bundle-combination .c-bundle-product__product-classcategories div:last-child {
  flex: 1;
}
.cf .c-bundle-combination .c-bundle-product__product-classcategories label {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 10px;
  font-weight: normal;
}
.cf .c-bundle-combination .c-bundle-product__product-classcategories-label-value {
  width: 40px;
  min-width: 40px;
}
.cf .c-bundle-combination .c-bundle-product__product-classcategories select {
  width: 100%;
  height: 22px;
  font-size: 10px;
  font-weight: normal;
}
.cf .c-bundle-combination .c-bundle-product__product-classcategories .c-select select {
  padding-right: 24px;
  padding-left: 4px;
}
.cf .c-bundle-combination .c-bundle-product__product-classcategories .c-select i {
  width: 20px;
}
.cf .c-bundle-combination .c-bundle-product__product-button-group {
  display: flex;
  gap: 10px;
}
.cf .c-bundle-combination .c-bundle-product__product-button {
  flex-grow: 1;
}
.cf .c-bundle-combination .c-bundle-product__product-quantity {
  display: flex;
  justify-content: flex-end;
  letter-spacing: 0.1rem;
}
.cf .c-bundle-combination .c-bundle-product__product-unavailable-temporarily {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.cf .c-bundle-combination .c-bundle-combination-cart-container--ok .c-bundle-combination-cart-container__header {
  background-color: #ebf7f1 !important;
}
.cf .c-bundle-combination .c-bundle-combination-cart-container__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 10px;
  font-size: 16px;
  background-color: #d9d9d9;
  border: solid 1px #999999;
}
.cf .c-bundle-combination .c-bundle-combination-cart-container__header-quantity {
  font-weight: bold;
}
.cf .c-bundle-combination .c-bundle-combination-cart-container__header-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.cf .c-bundle-combination .c-bundle-combination-cart-container__header-cart-icon img {
  width: 30px;
  height: auto;
}
.cf .c-bundle-combination .c-bundle-combination-cart-container__header-cart-icon-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  background-color: #ed4040;
  border-radius: 50%;
  white-space: nowrap;
}
.cf .c-bundle-combination .c-bundle-combination-cart-container__body {
  position: absolute;
  width: 100%;
  padding: 10px;
  margin-top: 2px;
  background-color: #ffffff;
  border: solid 1px #000000;
  border-radius: 10px;
}
.cf .c-bundle-combination .c-bundle-combination-cart-container__body::before {
  position: absolute;
  top: -13px;
  right: 20px;
  display: block;
  width: 0;
  content: "";
  border-color: #000000 transparent;
  border-style: solid;
  border-width: 0 13px 13px;
}
.cf .c-bundle-combination .c-bundle-combination-cart-container__body::after {
  position: absolute;
  top: -12px;
  right: 20px;
  display: block;
  width: 0;
  content: "";
  border-color: #ffffff transparent;
  border-style: solid;
  border-width: 0 13px 13px;
}
.cf .c-bundle-combination .c-bundle-combination-cart-container__body-scroll-container {
  max-height: 50vh;
  overflow-y: auto;
}
.cf .c-bundle-combination .c-bundle-combination-cart {
  background-color: #ebebeb;
  border: solid 1px #b3b3b3;
}
.cf .c-bundle-combination .c-bundle-combination-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  color: #333333;
}
.cf .c-bundle-combination .c-bundle-combination-cart-header-quantity {
  font-size: 13px;
  font-weight: bold;
}
.cf .c-bundle-combination .c-bundle-combination-cart-header-delete-all {
  font-size: 10px;
}
.cf .c-bundle-combination .c-bundle-combination-cart-item {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  padding: 8px 5px;
  margin-top: 1px;
  background-color: #ffffff;
}
.cf .c-bundle-combination .c-bundle-combination-cart-item--error {
  background-color: var(--color__pink, #fdeaea);
}
.cf .c-bundle-combination .c-bundle-combination-cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  width: 20px;
}
.cf .c-bundle-combination .c-bundle-combination-cart-item-actions-quantity {
  font-size: 10px;
}
.cf .c-bundle-combination .c-bundle-combination-cart-item-actions-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 20px;
}
.cf .c-bundle-combination .c-bundle-combination-cart-item-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  min-width: 67px;
  background-color: #ebebeb;
  border: solid 1px rgba(0, 0, 0, 0.5);
}
.cf .c-bundle-combination .c-bundle-combination-cart-item-image-frame .image {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
.cf .c-bundle-combination .c-bundle-combination-cart-item-meta {
  flex-grow: 1;
}
.cf .c-bundle-combination .c-bundle-combination-cart-item-name {
  font-size: 10px;
}
.cf .c-bundle-combination .c-bundle-combination-cart__font--sm {
  font-size: 11px;
}
.cf .c-bundle-combination .c-bundle-combination-cart__alert {
  color: red;
}
.cf .c-bundle-combination__hidden_until_all_requirements_are_fulfilled {
  display: none;
}

.cf--closed .cf-layout {
  display: none;
}
.cf-layout {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: var(--cf-layout__z-index);
  width: var(--cf-global-setting__message_width);
  max-width: calc(100% - 32px);
  height: 600px;
  max-height: calc(100vh - 32px);
  padding-top: 49px;
  background-color: var(--cf-global-setting__chat_background_color);
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 450px) {
  .cf-layout {
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    box-shadow: none;
  }
}
.cf-root-form-control {
  height: 100%;
}
.cf-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: calc(var(--cf-layout__z-index) + 2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 49px;
  padding: 0 49px;
  overflow: hidden;
  font-family: var(--cf-global-setting__toolbar_font);
  font-size: 22px;
  color: var(--cf-global-setting__toolbar_font_color);
  background: var(--cf-global-setting__toolbar_background_color);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.cf-scroll-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.cf-c-scenario {
  padding: 18px;
}
.cf-c-section {
  margin-bottom: 16px;
}
.cf-c-section--locked .cf-c-operator-message__body {
  background-color: var(--cf-color__gray--dark);
}
.cf-c-section--locked .cf-c-operator-message__body input,
.cf-c-section--locked .cf-c-operator-message__body select,
.cf-c-section--locked .cf-c-operator-message__body button,
.cf-c-section--locked .cf-c-user-message__body input,
.cf-c-section--locked .cf-c-user-message__body select,
.cf-c-section--locked .cf-c-user-message__body button {
  cursor: not-allowed;
}
.cf-c-section--locked .cf-c-operator-message__triangle {
  border-right-color: var(--cf-color__gray--dark);
}
.cf-c-operator-message {
  display: flex;
  margin-bottom: var(--cf-layout__message-gap);
}
.cf-c-operator-message__operator-image {
  width: 46px;
  height: 46px;
  margin-right: 8px;
}
.cf-c-operator-message__triangle {
  width: 0;
  height: 0;
  margin-top: 18px;
  border-top: 4px solid transparent;
  border-right: 8px solid var(--cf-global-setting__operator_message_background_color);
  border-bottom: 4px solid transparent;
}
.cf-c-operator-message__body {
  padding: 16px 13px;
  font-size: 18px;
  color: var(--cf-global-setting__operator_message_font_color);
  background-color: var(--cf-global-setting__operator_message_background_color);
  border-radius: 20px;
}
.cf-c-operator-message--no-frame, .cf-c-operator-message--notice, .cf-c-operator-message--warn {
  width: 100%;
}
.cf-c-operator-message--no-frame .cf-c-operator-message__operator-image, .cf-c-operator-message--no-frame .cf-c-operator-message__triangle, .cf-c-operator-message--notice .cf-c-operator-message__operator-image, .cf-c-operator-message--notice .cf-c-operator-message__triangle, .cf-c-operator-message--warn .cf-c-operator-message__operator-image, .cf-c-operator-message--warn .cf-c-operator-message__triangle {
  display: none;
}
.cf-c-operator-message--no-frame .cf-c-operator-message__body, .cf-c-operator-message--notice .cf-c-operator-message__body, .cf-c-operator-message--warn .cf-c-operator-message__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  margin: 0 auto;
  font-size: 14px;
  background-color: transparent;
  border-radius: none;
}
.cf-c-operator-message--no-frame .cf-c-operator-message__body .cf-c-element, .cf-c-operator-message--notice .cf-c-operator-message__body .cf-c-element, .cf-c-operator-message--warn .cf-c-operator-message__body .cf-c-element {
  padding: 8px 12px;
  color: var(--cf-global-setting__operator_message_no_frame_font_color);
  text-align: center;
  background: var(--cf-global-setting__operator_message_no_frame_background_color);
  border-radius: 20px;
}
.cf-c-operator-message--no-frame .cf-c-operator-message__body .cf-c-element + .cf-c-element, .cf-c-operator-message--notice .cf-c-operator-message__body .cf-c-element + .cf-c-element, .cf-c-operator-message--warn .cf-c-operator-message__body .cf-c-element + .cf-c-element {
  margin-top: 24px;
}
.cf-c-operator-message--no-frame .cf-c-operator-message__body .cf-c-element--has-cf-c-img, .cf-c-operator-message--notice .cf-c-operator-message__body .cf-c-element--has-cf-c-img, .cf-c-operator-message--warn .cf-c-operator-message__body .cf-c-element--has-cf-c-img {
  padding: 0;
}
.cf-c-user-message {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: var(--cf-layout__message-gap);
}
.cf-c-user-message__body {
  float: right;
  width: 100%;
  padding: 24px;
  color: var(--cf-global-setting__user_message_font_color);
  background-color: var(--cf-global-setting__user_message_background_color);
  border-radius: 20px;
}
.cf-c-user-message__body-title {
  margin-bottom: 20px;
  font-size: 18px;
}
.cf-c-user-message__body-title:empty {
  display: none;
}
.cf-c-user-message__triangle {
  width: 0;
  height: 0;
  margin-bottom: 18px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid var(--cf-global-setting__user_message_background_color);
}
.cf-c-element + .cf-c-element {
  margin-top: 15px;
}
.cf-c-element__error-message {
  color: var(--cf-global-setting__validation_error_font_color);
  background-color: var(--cf-global-setting__validation_error_background_color);
}
.cf-c-element__error-message:empty {
  display: none;
}
.cf-c-element--clickable {
  cursor: pointer;
}
.cf-c-img {
  max-width: 100%;
  height: auto;
}
.cf-c-fatal-error {
  padding: 10px;
  color: var(--cf-global-setting__validation_error_font_color);
  background-color: var(--cf-color__pink);
  border: solid 1px var(--cf-global-setting__validation_error_font_color);
}
.cf-c-product-select__class-category-selects:empty {
  display: none;
}
.cf-c-payment__affaires {
  margin: 20px 0;
  color: var(--cf-color__red);
}
.cf-c-payment__affaires:empty {
  display: none;
}
.cf-c-payment__image {
  max-width: 100%;
  margin: 20px 0;
}
.cf-c-payment__cvv-img {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 5px;
}
.cf-c-payment__cvv-img::before, .cf-c-payment__cvv-img::after {
  display: block;
  width: 66px;
  height: 40px;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
}
.cf-c-payment__cvv-img::before {
  background-image: url("/assets/svg/cvv1.svg");
}
.cf-c-payment__cvv-img::after {
  background-image: url("/assets/svg/cvv2.svg");
}
.cf-c-confirm-block__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: solid 1px var(--cf-color__black);
}
.cf-c-confirm-block__header-title {
  font-size: 18px;
  font-weight: bold;
}
.cf-c-confirm-block__body {
  margin-bottom: 45px;
  font-size: 18px;
}
.cf-c-confirm-block:last-child .cf-c-confirm-block__body {
  margin-bottom: 0;
}
@media screen and (max-width: 320px) {
  .cf-c-confirm-block__table--small-screen-optimized-layout {
    display: block;
  }
  .cf-c-confirm-block__table--small-screen-optimized-layout thead,
  .cf-c-confirm-block__table--small-screen-optimized-layout tbody,
  .cf-c-confirm-block__table--small-screen-optimized-layout tr,
  .cf-c-confirm-block__table--small-screen-optimized-layout th,
  .cf-c-confirm-block__table--small-screen-optimized-layout td {
    display: block;
  }
  .cf-c-confirm-block__table--small-screen-optimized-layout tr {
    display: grid;
    grid-template-areas: "label" "value" "button";
    grid-template-rows: auto;
    grid-template-columns: auto;
    margin-bottom: 16px;
  }
  .cf-c-confirm-block__table--small-screen-optimized-layout tr th {
    grid-area: label;
  }
  .cf-c-confirm-block__table--small-screen-optimized-layout tr td:nth-of-type(1) {
    grid-area: value;
  }
  .cf-c-confirm-block__table--small-screen-optimized-layout tr td:nth-of-type(2) {
    grid-area: button;
    padding: 0;
    text-align: right;
  }
}
.cf-c-confirm-block__tax-info {
  font-size: 12px;
  color: var(--cf-color__gray);
  text-align: right;
}
.cf-c-confirm-block__regular-important-matter-body {
  max-height: 300px;
  padding: 20px 15px;
  margin-top: 10px;
  overflow-y: auto;
  word-break: break-all;
  background-color: #e1e1e1;
}
.cf-c-confirm-block__return-link {
  display: block;
  margin-top: 10px;
  text-align: right;
}
.cf-c-confirm-block__regular-number-of-times-title {
  color: var(--cf-color__white);
  background-color: var(--cf-color__gray);
}
.cf-c-confirm-block__product-detail-title {
  margin-top: 20px;
  font-weight: bold;
}
.cf-c-confirm-block__product-detail {
  margin-top: 5px;
}
.cf-c-confirm-block__regular-info {
  margin-top: 10px;
}
.cf-c-confirm-block__regular-info-table {
  width: 100%;
  margin-top: 10px;
  background-color: var(--cf-color__white);
}
.cf-c-confirm-block__regular-info-table th {
  background-color: var(--cf-color__gray--lighter);
}
.cf-c-confirm-block__regular-info-table th,
.cf-c-confirm-block__regular-info-table td {
  border: 1px solid var(--cf-color__gray--light);
}
.cf-c-confirm-block__regular-info-title {
  margin-top: 20px;
}
.cf-c-confirm-block__time-sale {
  width: 100%;
  margin-top: 20px;
  background-color: var(--cf-color__white);
}
.cf-c-confirm-block__time-sale th {
  background-color: var(--cf-color__gray--lighter);
}
.cf-c-confirm-block__time-sale th,
.cf-c-confirm-block__time-sale td {
  border: 1px solid var(--cf-color__gray--light);
}
.cf-c-confirm-block__regular-extra-interval {
  margin-top: 5px;
}
.cf-c-confirm-block__products .cf-c-table {
  width: 100%;
}
.cf-c-confirm-block__products .cf-c-table th {
  width: 110px;
}
.cf-c-confirm-block__products .cf-c-table td {
  display: flex;
  gap: 4px;
  justify-content: space-between;
}
.cf-c-confirm-block__products .cf-c-table tbody {
  position: relative;
  border-top: 16px solid transparent;
}
.cf-c-confirm-block__products .cf-c-table tbody::before {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 85%;
  height: 1px;
  content: "";
  background-color: var(--cf-color__black);
  transform: translateX(-50%);
}
.cf-c-confirm-block__products .cf-c-table:first-of-type tbody:first-of-type {
  border-top: none;
}
.cf-c-confirm-block__products .cf-c-table:first-of-type tbody:first-of-type::before {
  content: none;
}
.cf-c-confirm-block__survey .question-title::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  vertical-align: middle;
  content: "";
  background-color: var(--cf-color__black);
  border-radius: 50%;
}
.cf-c-after-completion-order-info-block {
  margin-top: 10px;
}
.cf-c-after-completion-order-info-block:first-child {
  margin-top: 0;
}
.cf-c-after-completion-order-info-block iframe {
  display: none;
}
.cf-c-after-completion-order-info-block .cf-c-table {
  width: 100%;
}
.cf-c-after-completion-guidance-block {
  margin: 10px 0;
}
.cf-c-after-completion-guidance-block:last-child {
  margin-bottom: 0;
}

