.is-opened-drawer {
    overflow: hidden;
}
.consumer-default {
    background: var(--white-secondary-ffffff);
}
.consumer-default .consumer-catalog-item {
    display: flex;
    gap: 24px;
    padding: 48px;
    align-items: center;
}
.consumer-default .consumer-catalog-item .catalog-thumbnail {
    width: 160px;
    height: 160px;
    min-width: 160px;
}
.consumer-default .consumer-catalog-item .catalog-detail .item-name {
    font-family: var(--secondary-font);
    font-size: 2.6rem;
    line-height: 3.4rem;
    letter-spacing: 0.04em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--black-primary-text-222222);
}
.consumer-default .consumer-catalog-item .item-desc-mobile {
    display: none;
}
.consumer-default .consumer-catalog-item .item-desc-mobile,
.consumer-default .consumer-catalog-item .catalog-detail .item-desc {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-top: 28px;
}
.consumer-list {
    padding: 24px 48px;
    background: var(--page-background-f7f7f7);
}
.consumer-list .consumer-list-header {
    display: flex;
    flex-direction: column;
    gap:24px;
}
.consumer-list .go-to-cart {
    font-family: var(--secondary-font);
    font-size: 1.2rem;
    line-height: 1.2rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--white-secondary-ffffff);
    background: var(--transact-107605);
    padding: 14px 35.5px;
    display: flex;
    width: fit-content;
    align-self: flex-end;
    cursor: pointer;
}
.consumer-list .consumer-list-header ul.consumer-categories {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    overflow-x: auto;
}
.consumer-list .consumer-list-header ul.consumer-categories li {
    font-family: var(--secondary-font);
    font-size: 1.2rem;
    line-height: 1.2rem;
    letter-spacing: 0.08em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--black-primary-text-222222);
    padding-bottom: 8px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    white-space: nowrap;
    text-transform: uppercase;
}
.consumer-list .consumer-list-header ul.consumer-categories li.active {
    border-bottom: 1px solid var(--black-primary-text-222222);
}
.consumer-list-detail {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax(320px, 1fr) );
    gap: 24px;
}
.consumer-list-detail .consumer-item {
    padding: 8px 8px 16px;
    border-radius: 8px;
    background: var(--white-secondary-ffffff);
    cursor: pointer;
}

.consumer-list-detail .consumer-item .item-thumb img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.consumer-list-detail .consumer-item .item-name {
    font-family: var(--secondary-font);
    font-size: 1.8rem;
    line-height: 2.6rem;
    letter-spacing: 0.04em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--black-primary-text-222222);
    margin-top: 14px;
}
.consumer-list-detail .consumer-item .item-price {
    margin-bottom: -7px;
    font-family: var(--primary-font);
    font-size: 1.2rem;
    line-height: 1.8rem;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--black-primary-text-222222);
}
.consumer-list-detail .consumer-item .item-price span {
    font-family: var(--secondary-font);
    font-size: 1.6rem;
    line-height: 3rem;
}
.button-cart-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}
.contact-information {
    padding: 40px 48px 150px;
}
.contact-information h4 {
    font-family: var(--secondary-font);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 2.2rem;
    letter-spacing: 0.04em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--black-primary-text-222222);
    margin-bottom: 32px;
}
.contact-information p {
    line-height: 22px;
}
/*DRAWER*/
.non-club__wrapper,
.selection-open__wrapper {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 22;
    background: rgba(0, 0, 0, 0.6);
}
.non-club__wrapper.expanded,
.selection-open__wrapper.expanded {
    display: block;
}
.selection-open__drawer {
    width: 520px;
    height: 100%;
    overflow-y: auto;
    margin-left: auto;
    padding: 8px 0 10px 15px;
    transform: translateX(100%);
    transition: transform .5s ease-in-out;
    background: var(--page-background-f7f7f7);
    border-left: 1px solid rgba(0, 0, 0, 0.6);
}
.selection-open__drawer.expanded {
    transform: translateX(0);
}
.selection-open__indicator {
    display: none;
}
.selection-open__drawer .drawer-close {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.consumer-detail-swiper {
    padding-right: 16px;
}
.consumer-detail-swiper .swiper-slide {
    width: unset;
}
.consumer-detail-swiper .swiper-slide img {
    width: 240px;
    height: 240px;
}
.selection-open__title {
    margin-top: 28px;
    font-family: var(--secondary-font);
    font-size: 3.2rem;
    line-height: 4rem;
    letter-spacing: 0.04em;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--black-primary-text-222222);
}
.selection-open__price {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    margin-top: 10px;
    color: var(--black-primary-text-222222);
}
.selection-open__price p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8rem;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding-bottom: 2px;
}
.selection-open__price span {
    font-family: var(--secondary-font);
    font-size: 2rem;
    line-height: 2.6rem;
    letter-spacing: 0.08em;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.selection-open__form, .non-club__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px 16px 24px;
    border-radius: 8px;
    background: var(--white-secondary-ffffff);
    margin-right: 16px;
    margin-top: 28px;
}

.selection-open__form .is-floating-label label {
    text-overflow: unset;
}

.selection-open__form .rep-catalog__selector .is-floating-label {
    margin-bottom: 0;
}
.selection-open__form .text_form-title {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8rem;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--black-primary-text-222222);
}
.radio-group__custom {
    display: flex;
    gap: 8px;
    align-items: center;
}
.radio-group__custom .radio__item input[type="radio"] {
    display: none;
}
.radio-group__custom .radio__item input[type="radio"] + label {
    width: 59px;
    height: 56px;
    border: 1px solid  var(--input-field-border-949494);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.radio-group__custom .radio__item input[type="radio"]:checked + label {
    width: 67px;
    border: 2px solid var(--black-primary-text-222222);
}
.radio-group__custom .radio__item input[type="radio"]:checked + label::before {
    content: url('/oamsso/global/images/newui/icons/icon_check.svg');
    position: absolute;
    top: -2px;
    right: 0;
}
.row__add-to-cart {
    display: flex;
    gap: 8px;
    align-items: center;
}

.qty-box-container {flex: 1;gap: 10px;display: flex;}
.ci-button-container{margin-top: 24px;}
.custom-number-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--input-field-border-949494);
    width: 80px;
    height: 74px;
    padding: 1.2rem 2.7rem 0.7rem 1.7rem;
    position: relative;
    border-radius: 0;
    background-color: var(--white-secondary-ffffff);
}
.custom-number-input label {
	line-height: 1;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
    font-size: 1.3rem;
    position: absolute;
    top: 12px;
}
.custom-number-input input[type="number"] {
    border: none;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
    line-height: 1;
    font-size: 1.6rem;
    font-family: var(--primary-font);
    color: var(--black-primary-text-222222);
    max-width: 100%;
}
.custom-spinner {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 16px;
    top: 52%;
    transform: translateY(-52%);
    gap: 4px;
}
.up-arrow,
.down-arrow {
    width: 10px;
    height: 5px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: 100%;
}
.up-arrow {
    background-image: url("/oamsso/global/images/newui/icons/icon_arrow-up-black.svg");
}
.down-arrow {
    background-image: url("/oamsso/global/images/newui/icons/icon_arrow-down-black.svg");
}
.row__add-to-cart .btn-primary {
    width: 100%;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
	height: 74px;
}
.row__add-to-cart .btn-primary.completed {
    color: var(--white-secondary-ffffff);
    background: var(--transact-107605);
}

/* Non club  */
.non-club__form .non-club__value, .selection-open__form .non-club__value {
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.non-club__form .non-club__value span, .selection-open__form .non-club__value span.label, .custom-number-input-container span.label {
    margin-right: 8px;
    font-family: var(--secondary-font);
}
.non-club__form .list-ball, .selection-open__form .list-ball {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.non-club__form .list-ball__item, .selection-open__form .list-ball__item {
    width: 72px;
    aspect-ratio: 1;
    border: 1px solid var(--input-field-border-949494);
    cursor: pointer;
    position: relative;
}
.non-club__form .list-ball__item.active, .selection-open__form .list-ball__item.active {
    border: 2px solid var(--black-primary-text-222222);
}

.non-club__form .list-ball__item.active::before, .selection-open__form .list-ball__item.active::before {
    content: url('/oamsso/global/images/newui/icons/icon_check.svg');
    position: absolute;
    top: -2px;
    right: 0;
}


.ci-item-prop {display: none;}
.error-message{color: #e80008;}
.go-to-cart-link{cursor: pointer;}

/*RESPONSIVE*/
@media screen and (max-width: 768px) {
    .consumer-list {
        padding: 24px 32px;
    }
    .consumer-list-detail {
        grid-template-columns: repeat( auto-fit, minmax(218.67px, 1fr));
    }
    .consumer-list-detail .consumer-item .item-name {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
    .consumer-header {
        padding: 32px;
    }
    .contact-information {
        padding: 48px 32px 160px;
    }
    .consumer-default .consumer-catalog-item {
        padding: 48px 32px;
    }
}
@media screen and (max-width: 576px) {
    .consumer-list {
        padding: 16px;
    }
    .consumer-list-detail {
        grid-template-columns: repeat( auto-fit, minmax(167px, 1fr));
    }
    .consumer-list .go-to-cart {
        font-size: 1.2rem;
        width: 100%;
        justify-content: center;
    }
    .consumer-list-detail .consumer-item .item-name,
    .consumer-list-detail .consumer-item .item-price {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
    .consumer-header .logo {
        width: 120px;
        height: 23px;
    }
    .consumer-header {
        padding: 31px 16px;
    }
    .contact-information {
        padding: 32px 16px 120px;
    }
    .consumer-default .consumer-catalog-item {
        padding: 32px 16px;
        flex-wrap: wrap;
        gap: 16px;
    }
    /*DRAWER*/
    .selection-open__drawer {
        position: fixed;
        bottom: 0;
        left: 0;
        top: auto;
        margin-top: auto;
        width: 100%;
        height: calc(100% - 56px);
        margin-left: 0;
        border-left: none;
        padding: 4px 0 10px 16px;
        border-radius: 16px 16px 0 0;
    }
    .selection-open__drawer .drawer-close {
        display: none;
    }
    .selection-open__indicator {
        display: block;
        padding-bottom: 8px;
    }
    .selection-open__indicator::after {
        content: "";
        display: block;
        width: 64px;
        height: 4px;
        border-radius: 2px;
        background: var(--secondary-hover-cccccc);
        margin: auto;
    }
    .selection-open__title {
        font-size: 2.4rem;
        line-height: 3.2rem;
        margin-top: 24px;
    }
    .selection-open__form {
        margin-top: 24px;
    }
    .selection-open__price {
        margin-top: 4px;
    }
    .selection-open__drawer {
        transform: translateY(100%);
    }
    .selection-open__drawer.expanded {
        transform: translateY(0);
    }
    .consumer-default .consumer-catalog-item .item-desc-mobile {
        display: block;
        width: 100%;
        margin-top: 0;
    }
    .consumer-default .consumer-catalog-item .catalog-detail .item-name {
        font-size: 2rem;
    }
    .consumer-default .consumer-catalog-item .catalog-detail .item-desc {
        display: none;
    }
    .consumer-default .consumer-catalog-item .catalog-thumbnail {
        width: 72px;
        height: 72px;
        min-width: 72px;
    }
    .qty-box-container {}
}