.modalWindow { 
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.4); 
    overflow-y: scroll; 
    padding: 15px; 
}
.modal-contentWindow { 
    margin: 0 auto; 
    max-width: 800px; 
    position: relative;   
    top: 50%; 
    transform: translateY(-50%);
    padding: 24px;
    background: linear-gradient(107.08deg, #071947 0%, #380D5B 100.03%);
    border-radius: 32px;
}
.close { 
    position: absolute; 
    right: 30px; 
    top: 30px; 
    z-index: 10; 
    width: 12px;
    height: 12px;
}
.close img{
    display: block;
}
.close:hover,
.close:focus { 
    cursor: pointer; 
    opacity: 0.7;
    transition: all 0.3s ease;
}
.modal-content__title{
    font-family: 'RocknRoll One';
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    color: #F8CA00;
}
.modal-content__text{
    margin-top: 24px;
}
.modal-content__text p{
    font-family: 'Roboto Condensed';
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    color: #FAFBFC;
    margin-bottom: 0;
}
.modal-content__text p:not(:first-child){
    margin-top: 8px;
}
.modal-content__items{
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.modal-content__item{
    background: #012677;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}
.modal-content__item-image img{
    border-radius: 24px;
    display: block;
}
.modal-content__item-text{
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.modal-content__item-name{
    font-family: 'RocknRoll One';
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #F8CA00;
}
.modal-content__item-bonus{
    font-family: 'Roboto Condensed';
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
    color: #FAFBFC;
    margin-top: 8px;
    margin-bottom: 16px;
}
.modal-content__item-button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 25px;
    background: #F8CA00;
    border-radius: 40px;
    margin-top: auto;
    font-family: 'RocknRoll One';
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #492B14 !important;
}
.modal-content__item-button:hover{
    filter: brightness(.9) contrast(1.2);
}
@media(max-width: 767px){
    .modal-contentWindow{
        top: 0;
        transform: none;
    }
    .modal-content__items{
        scroll-behavior: smooth;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
        --stk-column-gap: 0px;
        cursor: grab;
        grid-auto-flow: column;
        overflow-x: auto;
        grid-auto-columns: 240px;
        grid-template-columns: none;
    }
}
