.modalCookiesInfo {

    width: 100%;
    height: 100%;
    padding-top: 100px;
    display: none;   
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); /* Черный фон с прозрачностью */
}

.modalCookiesInfo-content {

    width: 50%;
    padding: 20px;
    margin: auto;
    border: 1px solid #888;
    background-color: #fefefe;
    overflow-y: scroll;
    scrollbar-width: none; /* Для Firefox */
    -ms-overflow-style: none; /* Для Internet Explorer и Edge */
}

.modalCookiesInfo-content::-webkit-scrollbar {

   display: none; /* Для WebKit-браузеров (Chrome, Safari) */

   }

.modalCookiesInfo-closeButton {

    background: none;
    border: none;
    font: inherit;
    color: inherit;
    text-align: inherit;
    outline: none;

    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    float: right;
}

.modalCookiesInfo-closeButton:hover,
.modalCookiesInfo-closeButton:focus {

    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modalCookiesInfo-title {

    font-size: 30px;
}

.modalCookiesInfo-subTitle {

 
 font-size: 18px;

}

.modalCookiesInfo-description, .modalCookiesInfo-label{

    margin-top: 10px;
    margin-bottom: 12px;
    font-size: 12px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modalCookiesInfo-label div{

    margin-right: 15px;
}

.modalCookiesInfo-description {

    margin-top: 20px;

}

@media (max-width: 860px) {

.modalCookiesInfo-content {

 width: 100%;

    }
}