/** Shopify CDN: Minification failed

Line 230:56 Expected ":"

**/
/*
    Overlay
*/
.zrp-ps {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: fixed;
    align-items: center;
    justify-content: center;
    background-color: #1a1b26;
    background-image: var(--zrp-cover-mobile-bg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: opacity 0.5s ease;
    opacity: 0;
    pointer-events: all;    
}

@media (min-width: 768px) {
    .zrp-ps {  
        background-image: var(--zrp-cover-bg);
    }
}

.zrp-ps--show {
    display: flex !important;
    opacity: 1 !important;
}

.zrp-ps__inner {
    position: relative;
    width: calc(100% - 60px);
    color: #ffffff;
    padding: 6px;
    margin-top: calc(calc(100vh - 600px) * -1)
}

.zrp-ps__inner::before {
    z-index: 1;
    position: absolute;
    display: block;
    content: '';
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    border: 2px solid #ffffff;
}

@media (min-width: 431px) {
    .zrp-ps__inner {
        width: 420px;
        color: #ffffff;
    }
}

@media (min-width: 768px) {
    .zrp-ps__inner {
        margin-top: 0;
    }
}

.zrp-ps__logo {
    z-index: 1;
    top: 50px;
    left: 50%;
    width: 160px;
    display: block;
    position: absolute;
    transform: translateX(-50%)
}

@media (max-height: 600px) and (orientation: landscape) {

    .zrp-ps__logo {
        display: none;
    }

}

@media (min-width: 768px) {

    .zrp-ps__logo {
        top: 115px;
        width: 300px;
    }

}

.zrp-ps__star {
    z-index: 3;
    position: absolute;
    width: 18px;
    height: 18px;
    display: block;
    content: '';
    background-image: var(--zrp-star);
    background-repeat: no-repeat;
}

.zrp-ps__star--tl {
    top: 0;
    left: 0;
}

.zrp-ps__star--tr {
    top: 0;
    right: 0;
}

.zrp-ps__star--bl {
    bottom: 0;
    left: 0;
}

.zrp-ps__star--br {
    bottom: 0;
    right: 0;
}


.zrp-ps__title {
    font-size: 16px;
    margin-bottom: 0;
}

.zrp-ps__title::after {
    display: block;
    content: '';
    height: 1px;
    margin-top: 26px;
}

.zrp-ps__btn-send {
    border: 0;
    background: #2a4c39;
    height: 60px;
    width: 100%;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

@media (hover:hover) {
    .zrp-ps__btn-send:hover {
        background: #000000;
    }
}


.zrp-ps__btn-send:focus {
    outline: none;
    border-color: #2a4c39;
    box-shadow: 0 0 0 3px rgba(42, 76, 57, 0.3);
}

/* Select container */
.zrp-ps__select-container {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 26px 16px 42px 16px;
    font-size: 14px;
    border: 1px solid #ffffff;
}

@media (min-width: 431px) {
   .zrp-ps__select-container {
     padding: 26px 42px 42px 42px;
   }
}

/* ============================================== */

/*
    Select
*/
/* ============================================== */

.zrp-ps__select {
    position: relative;
    margin-bottom: 10px;
}

/* Кнопка селекта */
.zrp-ps__button {
    width: 100%;
    height: 54px;
    background: white;
    border: 1px solid #f2f2f2;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-align: left;
}

/* Стили для фокуса - важная часть доступности */
.zrp-ps__button:focus {
    outline: none;
    border-color: #2a4c39;
    box-shadow: 0 0 0 3px rgba(42, 76, 57, 0.3);
}

.zrp-ps__button:hover {
    border-color: #2a4c39;
}

.zrp-ps__button[aria-expanded="true"] {
    border-color: #2a4c39;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.zrp-ps__selected-label {
    min-width: 68px;
    font-weight: 400;
    color: #000000;
}

html[dir="rtl"] .zrp-ps__selected-label{select-container
    text-align: right;
}

.zrp-ps__selected-value {
    color: #424242;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
}

.zrp-ps__arrow {
    color: #2a4c39;
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-right: 0;
    margin-left: auto;
}

html[dir="rtl"] .zrp-ps__arrow {
    margin-right: auto;
    margin-left: 0;
}

.zrp-ps__button[aria-expanded="true"] .zrp-ps__arrow {
    transform: rotate(180deg);
}

/* List of options */
.zrp-ps__options-list {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #2a4c39;
    border-top: none;
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.zrp-ps__options-list:not([hidden]) {
    display: block;
}

.zrp-ps__option {
    display: flex;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #424242;
    align-items: center;
}

/* Стили для фокуса на опциях */
.zrp-ps__option:focus {
    outline: none;
    background: #f0f0f0;
    box-shadow: inset 0 0 0 2px #2a4c39;
}

.zrp-ps__option:hover {
    background: #f5f5f5;
}

.zrp-ps__option[aria-selected="true"] {
    background: #2a4c39;
    color: white;
    font-weight: 500;
}

.zrp-ps__option[aria-selected="true"]:hover {
    background: #2a4c39;
}

/* Select scroll */
.zrp-ps__options-list::-webkit-scrollbar {
    width: 8px;
}

.zrp-ps__options-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.zrp-ps__options-list::-webkit-scrollbar-thumb {
    background: #cccccc;
}

.zrp-ps__options-list::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
}

/* Screen reader */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================== */
