/** Shopify CDN: Minification failed

Line 577:41 Unexpected "\".new-pdp__modal-img--mobile\""

**/
:root {
    --color-primary: #424CAB;
    --color-secondary: #C7CBFF;
    --color-bg: #ffffff;
    --font-primary: "Neue Kabel", serif;
    --font-secondary: "Neue Kabel", serif;
}

.new-pdp-hero {
    padding: 53px 0;
    background-color: var(--color-bg);
}

.new-pdp-hero sup {
    vertical-align: super;
    font-size: 0.7em;
}

.new-pdp-hero__container {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    column-gap: 70px;
}

.new-pdp-hero__left {
    flex: 1 1 auto;
    max-width: 563px;
    height: 522px;
    display: grid;
    gap: 16px;
    grid-template-columns: 89px 462px;
    grid-template-rows: 100%;
}

.new-pdp-hero__list-img {
    width: 100%;
}

.new-pdp-list-img__item,
.new-pdp-list-img__item.slick-slide {
    width: 100%;
    height: 104.5px;
}

.new-pdp-list-img__item.slick-slide+.new-pdp-list-img__item.slick-slide {
    padding-top: 3px;
}

.new-pdp-list-img__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.new-pdp-hero__main-img--desktop .slick-list,
.new-pdp-hero__main-img--desktop .slick-track {
    height: 100%;
}

.new-pdp-hero__main-img {
    width: 462px;
    height: 522px;
}

.new-pdp-main-img__item img {
    margin: 0 auto;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.new-pdp-hero__arrow {
    position: absolute;
    top: 50%;
    width: 50%;
    height: 100%;
    background: var(--color-secondary);
    transform: translateY(-50%);
    display: none;
    z-index: 2;
    opacity: 0;
}

.new-pdp-hero__arrow-prev {
    left: 10px;
    clip-path: polygon(50% 0%, 100% 0%, 50% 50%, 100% 100%, 50% 100%, 0% 50%);
}

.new-pdp-hero__arrow-next {
    right: 10px;
    clip-path: polygon(0% 0%, 50% 0%, 100% 50%, 50% 100%, 0% 100%, 50% 50%);
}

.new-pdp-hero__dots {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.new-pdp-hero__dots li button {
    width: 41px;
    height: 4px;
    background: white;
    font-size: 0;
}

.new-pdp-hero__dots li.slick-active button {
    background: var(--color-primary);
}

/* Right block */

.new-pdp-hero__right {
    flex: 1 1 auto;
    max-width: 544px;
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    padding-right: 15px;
    padding-top: 24px;
}

.new-pdp-hero__title {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}

.new-pdp-hero__title,
.new-pdp-hero__price {
    font-family: var(--font-primary);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
}

.new-pdp-hero__subtitle {
    font-family: var(--font-primary);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
}

.new-pdp-hero__subtitle i,
.new-pdp-hero__subtitle em {
    font-style: italic;
}

.new-pdp-hero__info {
    font-family: var(--font-primary);
    font-size: 30px;
    line-height: 1.4;
    font-weight: 500;
}

.new-pdp-hero__description {
    font-family: var(--font-secondary);
    font-size: 26px;
    line-height: 1.4;
    font-weight: 500;
    margin-top: 4px;
}

.new-pdp-hero__description p+p {
    margin-top: 12px;
}

/* Form style */

.new-pdp-hero__form {
    display: flex;
    column-gap: 18px;
    align-items: center;
    margin: 28px auto 0;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

.new-pdp-hero__qty {
    display: flex;
    align-items: center;
    column-gap: 17px;
}

.new-pdp-hero__error_message {
    position: absolute;
    left: 0;
    top: -22px;
    font-family: var(--font-primary);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #eb5252;
    text-transform: none;
    margin-left: 0;
    /* display: none; */
    opacity: 0;
    transition: opacity 0.1s ease;
    will-change: opacity;
}

.new-pdp-hero__error_message.active {
    opacity: 1;
}

.new-pdp-hero__qty-decrease,
.new-pdp-hero__qty-increase {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 25px;
    line-height: 1.4;
    font-weight: 500;
}

.new-pdp-hero__qty-input {
    width: 42px;
    height: 42px;
    border: 2px solid var(--color-primary);
    text-align: center;
    background: none;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    pointer-events: none;
}

.new-pdp-hero__qty-input[type="number"]::-webkit-outer-spin-button,
.new-pdp-hero__qty-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.new-pdp-hero__variants {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 36px;
    flex: 1 1 100%;
    gap: 17px;
}
.new-pdp-hero__variant-select {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.09299 7.04703L15.9496 0L18 1.95532L9.09299 12.1895L0 1.95532L2.23641 0L9.09299 7.04703Z' fill='%23424CAB'/%3E%3C/svg%3E");
}

.new-pdp-hero__variant-button {
    min-width: 65px;
    height: 66px;
    padding: 0 6px;
    text-align: center;
    line-height: 62px;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    background-color: var(--color-bg);
    border-radius: 12px;
    cursor: pointer;
    font-family: "Neue Kabel Bold";
    font-size: 22px;
    align-content: center;
}

.new-pdp-hero__variant-button.is-active {
    border-color: var(--color-secondary);
    pointer-events: none;
}

.new-pdp-hero__variant-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.new-pdp__button.new-pdp-hero__button {
    min-width: 284px;
    width: auto;
}

.new-pdp-hero__button .new-pdp__button-label {
    padding: 16px 28px;
}

.new-pdp-hero__button .new-pdp__button-label,
.new-pdp-hero__button .new-pdp__button-label .new-pdp-hero__button-price {
    font-size: 24px;
}

.new-pdp__button,
.new-pdp__button.new-pdp-hero__button {
    position: relative;
    background-color: var(--color-secondary);
    margin: 0 5px;
    display: inline-block;
    text-align: center;
    min-width: 248px;
    border-radius: 10px;
}

.new-pdp__button-label {
    padding: 15px 20px;
    position: relative;
    background-color: var(--color-secondary);
    z-index: 1;
    border-radius: 10px;
}

.new-pdp__button,
.new-pdp__button.new-pdp-hero__button,
.new-pdp__button span,
.new-pdp__button-label {
    color: var(--color-primary, #a81919);
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.new-pdp__button:before {
    content: "";
    position: absolute;
    left: -24px;
    top: 0;
    width: 25px;
    height: 100%;
    clip-path: polygon(90% 0, 100% 0%, 100% 100%, 90% 100%, 0% 50%);
    background-color: var(--color-secondary);
    z-index: 1;
    display: none;
}

.new-pdp__button:after {
    content: "";
    position: absolute;
    right: -24px;
    top: 0;
    width: 25px;
    height: 100%;
    clip-path: polygon(0% 0%, 10% 0, 100% 50%, 10% 100%, 0% 100%);
    background-color: var(--color-secondary);
    z-index: 1;
    display: none;
}

.new-pdp__button--bg {
    position: absolute;
    left: -24px;
    top: 0;
    width: calc(100% - 2px);
    height: 100%;
    background-color: var(--color-primary);
    margin: 0 25px;
    z-index: 0;
    transform: translate(0, 4px);
    transition: transform 100ms ease;
    pointer-events: none;
    border-radius: 10px;
}

.new-pdp__button:hover .new-pdp__button--bg {
    transform: translate(0, 0);
}

.new-pdp__button--bg:before {
    content: "";
    position: absolute;
    left: -24px;
    top: 0;
    width: 25px;
    height: 100%;
    clip-path: polygon(90% 0, 100% 0%, 100% 100%, 90% 100%, 0% 50%);
    background-color: var(--color-primary);
    display: none;
}

.new-pdp__button--bg:after {
    content: "";
    position: absolute;
    right: -24px;
    top: 0;
    width: 25px;
    height: 100%;
    clip-path: polygon(0% 0%, 10% 0, 100% 50%, 10% 100%, 0% 100%);
    background-color: var(--color-primary);
    display: none;
}

/* Bottom info style */

.new-pdp-hero__bottom-info {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    text-align: center;
}

.new-pdp-hero-bottom-info__title {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
}

.new-pdp-hero-bottom-info__link {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    text-decoration: underline;
    align-self: center;
}

div.new-pdp-hero-bottom-info__link {
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    text-decoration: none;
    pointer-events: none;
}

/* Modal container */
.new-pdp__modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.new-pdp__modal-wrapper {
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
}

.new-pdp__modal-content {
    position: relative;
    background-color: #fff;
    padding: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.new-pdp__close-button {
    position: absolute;
    top: -25px;
    right: -15px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: var(--color-secondary);
}

.new-pdp__modal-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.new-pdp__modal-img img {
    width: 100%;
}

.new-pdp__modal-img--desktop {
    display: block;
}

.new-pdp__modal-img--mobile {
    display: none;
}

@media (min-width: 1129px) {
    .new-pdp-hero__left--mobile {
        display: none;
    }

    .new-pdp-hero__title {
        justify-content: flex-start;
        gap: 41px;
    }
}

@media (min-width: 1024px) {
    .new-pdp-hero--lemon-iced-tea-merch .new-pdp-hero__right {
        padding-top: 0;
    }
}

@media (max-width: 1128px) {
    .new-pdp-hero__left--desktop {
        display: none;
    }
}

@media (max-width: 1280px) {
    .new-pdp-hero__left {
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .new-pdp-hero__left--mobile {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .new-pdp-hero__container {
        column-gap: 40px;
    }
}

@media (max-width: 1023px) {
    .new-pdp-hero__container {
        display: flex;
        flex-direction: column;
    }

    .new-pdp-hero__left {
        max-width: 100%;
        justify-items: center;
    }

    .new-pdp-hero__main-img {
        width: 100%;
        max-width: 462px;
        height: auto;
    }

    .new-pdp-hero__right {
        max-width: 660px;
        align-self: center;
        padding: 24px 16px 16px;
    }

    .new-pdp-hero__title {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .new-pdp__modal-img--desktop {
        display: none;
    }

    .new-pdp__modal-img--mobile {
        display: block;
    }

    .new-pdp__modal-img--desktop+div:not(".new-pdp__modal-img--mobile") {
        display: block;
    }
}

@media (max-width: 767px) {
    .new-pdp-hero {
        padding: 0 0 21px;
    }

    .new-pdp-hero--lemon-iced-tea-merch.new-pdp-hero {
        padding: 0 0 21px;
    }
}

@media (max-width: 576px) {
    .new-pdp-hero__left {
        width: 100%;
        overflow-x: clip;
    }

    .new-pdp-hero__main-img {
        width: 100vw;
        max-width: none;
    }

    .new-pdp-main-img__item img {
        width: 100%;
        height: 427px;
        object-fit: contain;
    }

    .new-pdp-hero__right {
        padding: 16px;
        text-align: left;
    }

    .new-pdp-hero__title {
        align-self: self-start;
    }

    .new-pdp-hero__title,
    .new-pdp-hero__price {
        font-size: 36px;
    }

    .new-pdp-hero__subtitle {
        font-size: 16px;
    }

    .new-pdp-hero__info {
        font-size: 22px;
        letter-spacing: -0.01em;
    }

    .new-pdp-hero__description {
        font-size: 22px;
        margin-top: 4px;
    }

    .new-pdp-hero--lemon-iced-tea-merch .new-pdp-hero__description {
        font-size: 12px;
        margin-top: 4px;
    }

    .new-pdp-hero__description p+p {
        margin-top: 2px;
    }

    .new-pdp-hero__form {
        gap: 14px;
        margin: 16px auto 0;
    }

    .new-pdp-hero__variants {
        margin-bottom: 24.5px;
        gap: 12px;
    }

    .new-pdp-hero__variant-button {
        min-width: 53px;
        height: 54px;
        line-height: 44px;
    }

    .new-pdp-hero__qty {
        column-gap: 13px;
    }

    .new-pdp-hero__qty-decrease,
    .new-pdp-hero__qty-increase {
        font-size: 20px;
    }

    .new-pdp-hero__qty-input {
        width: 33px;
        height: 33px;
        font-size: 20px;
    }

    .new-pdp__button {
        position: relative;
        background-color: var(--color-secondary);
        display: inline-block;
        text-align: center;
        border-radius: 10px;
    }

    .new-pdp__button.new-pdp-hero__button {
        min-width: 200px;
    }

    .new-pdp-hero--lemon-iced-tea-merch .new-pdp__button.new-pdp-hero__button {
        min-width: 202px;
    }

    .new-pdp-hero__button .new-pdp__button-label,
    .new-pdp__button-label {
        padding: 10px 20px;
        position: relative;
        background-color: var(--color-secondary);
        z-index: 1;
        border-radius: 10px;
    }

    .new-pdp-hero__button .new-pdp__button-label,
    .new-pdp-hero__button .new-pdp__button-label .new-pdp-hero__button-price,
    .new-pdp__button,
    .new-pdp__button span,
    .new-pdp__button-label {
        font-size: 16px;
    }

    .new-pdp-hero__bottom-info {
        margin-top: 14px;
        row-gap: 7px;
    }

    div.new-pdp-hero-bottom-info__link {
        font-size: 12px;
    }
}

@media (max-width: 420px) {

    .new-pdp-hero__error_message {
        width: 100%;
        text-align: center;
    }

    .new-pdp-hero__variants {
        justify-content: space-around;
        padding: 0 11px;
    }
}

@media (max-width: 368px) {
    .new-pdp-hero__form {
        flex-wrap: wrap;
        justify-content: center;
    }

    .new-pdp-hero__error_message {
        right: 0;
        text-align: center;
        margin-left: 0;
    }
}

@media (max-width: 350px) {
    .new-pdp__button {
        min-width: 180px;
    }

    .new-pdp-hero__error_message {
        font-size: 10px;
    }
}

input.kl-private-reset-css-Xuajs1 {
    background-color: var(--color-bg) !important;
    color: var(--color-primary) !important;
}

input.kl-private-reset-css-Xuajs1::placeholder {
    color: var(--color-primary) !important;
}

button.kl-private-reset-css-Xuajs1 {
    color: var(--color-bg) !important;
}