﻿/* MODALE RATES */

#PricesModal {
    display: none;
    width: 750px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    background: var(--color-white);
    min-height: 250px;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#PricesModal::-webkit-scrollbar {
    display: none;
}

#PricesModal.active {
    display: flex;
    z-index: 20;
}

#PricesModal #PricesContent {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.title-rates img.rateModalClose {
    width: 30px;
    height: 30px;
    object-fit: cover;
    cursor: pointer;
}

@media (max-width: 768px) {

    div#PricesModal {
        width: 100%;
    }

    #PricesModal #PricesContent {
        width: 100%;
        height: 100vh;
        overflow-y: auto;
    }

    #PricesModal.active {
        height: 80vh;
        border-radius: 20px 20px 0 0;
        top: 90px;
        transform: translateX(-50%);
    }

}