.modalOpenBtn {
    position: fixed;
    left: calc(100% - 30px - 80px);
    top: calc(100% - 100px - 80px);
    display: flex;
    width: 80px;
    aspect-ratio: 1 / 1;
    z-index: 99;
}

.modalOpenBtn-btn {
    all: unset;
    position: absolute;
    z-index: 3;
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.5), opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
    transform: scale(1);
    color: white;
    user-select: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    
    background: transparent !important;
}

.modalOpenBtn-btn:focus,
.modalOpenBtn-btn:active {
    outline: none;
}

.modalOpenBtn-btn:hover {
    transform: scale(1.15);
}

.modalOpenBtn-btn:active {
    transform: scale(1.2);
}

.modalOpenBtn-btn-gif {
    all: unset;
    display: block;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}

.modalOpenBtn-btn-waveColor {
    all: unset;
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    color: white;
}

@keyframes modalOpenBtn-btn-waveColor--multi {
    from {
        color: #08c;
    }

    22% {
        color: #08c;
    }

    28.8% {
        color: #25d366;
    }

    82% {
        color: #25d366;
    }

    88% {
        color: #08c;
    }

    to {
        color: #08c;
    }
}

.modalOpenBtn-btn-waveColor--multi {
    animation: modalOpenBtn-btn-waveColor--multi 10s linear infinite;
}

@keyframes modalOpenBtn-btn-waveSonic {
    from {
        transform: scale(1);
        opacity: 0;
    }

    60% {
        transform: scale(1);
        opacity: 0;
    }

    70% {
        opacity: 0.4;
    }

    to {
        transform: scale(2);
        opacity: 0;
    }
}

.modalOpenBtn-btn-wave {
    all: unset;
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(rgb(255, 255, 255, 0), currentColor);
    animation: modalOpenBtn-btn-waveSonic 4s ease infinite;
}





/*MODAL*/

.modalOverlay {
    position: fixed;
    display: none;
    inset: 0px;
    background: rgba(66, 66, 66, 0.48);
    z-index: 100;
}

.modalOverlay--active {
    display: block;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Ubuntu, sans-serif;
    box-sizing: border-box;
    width: 100%;
    max-width: 620px;
    border-radius: 16px;
    background: rgb(255, 255, 255);
    padding: 32px 24px;
    box-shadow: rgba(89, 104, 143, 0.06) 0px 2px 16px 1px;
    text-align: center;
}

.modal-closeBtn {
    cursor: pointer;
    border: none;
    background: none;
    position: absolute !important;
    top: 25px;
    right: 25px;
    border-radius: 50% !important;
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-title {
    font-size: 24px;
    line-height: 133.4%;
    text-align: center;
    color: rgb(33, 33, 33);
    font-weight: 700;
    margin: 0px auto 30px;
    padding: 0 30px;
    overflow-wrap: break-word;
    max-width: 400px;
}

.modal-qrCodes {
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}


.modal-qrCodes-item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    flex: 1;
}

@media (min-width: 960px) {
    .modal-qrCodes-item:not(:last-of-type)::after {
        content: '';
        display: block;

        position: absolute;
        top: 0;
        right: -11px;
        bottom: 0;

        width: 1px;

        background: rgb(238, 238, 238);
    }
}

.modal-qrCodes-title {
    align-items: center;
    display: flex;
    gap: 11px;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0.15px;
    color: rgb(33, 33, 33);
    font-weight: 500;
    margin-bottom: 16px;
}

.modal-continueBtn--wp {
    background: rgb(94, 209, 105);
    color: rgb(255, 255, 255);
}

.modal-continueBtn--teleg {
    background: rgb(42, 171, 238);
    color: rgb(255, 255, 255);
}

.modal-continueBtn {
    width: 100%;
    max-width: 190px;
    min-height: 46px;
    box-shadow: rgba(89, 104, 143, 0.06) 0px 1px 5px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: 0.17px;
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    margin-bottom: 32px;
    overflow-wrap: break-word;
    line-height: 46px;
}

.modal-orMobile {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    margin-bottom: auto;
    max-width: 200px;
    text-align: center;
    overflow-wrap: break-word;
}

.modal-orMobile--wp {
    color: rgb(94, 209, 105);
}

.modal-orMobile--teleg {
    color: rgb(42, 171, 238);
}

.modal-qrImg {
    width: 153px;
    height: 153px;
    border: 4px solid rgb(255, 255, 255);
    border-radius: 8px;
}


.wpc-filter-content.hide-list {
	position: relative;
    max-height: 300px;
	overflow: hidden;
}

.wpc-filter-content.hide-list:before {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: #fff url(http://carav-russia.com/wp-content/uploads/2023/06/free-icon-down-arrow-2985150.png) center center no-repeat;
    background-color: #fff;
    z-index: 999;
    cursor: pointer;
}