.cookies-msg{
    display: flex;
    padding: 20px;
    max-width: 840px;
    position: fixed;
    background-color: #fff;
    box-shadow: 0px 4px 20px 0px rgba(118, 118, 132, 0.25);
    bottom: 25px;
    right: 65px;
    align-items: flex-end;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.cookies-msg.show{
    opacity: 1;
    visibility: visible;
}
.cookies-msg-btns{
    display: flex;
    margin-left: 20px;
}
.cookies-msg-btns button{
    width: 130px;
}
.cookies-msg-btns button:first-child{
    margin-right: 8px;
}
.cookies-msg-text{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.cookies-modal{
    position: fixed;
    background: rgba(27, 27, 25, 0.60);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.cookies-modal.open{
    opacity: 1;
    visibility: visible;
}
.cookies-modal-content{
    position: relative;
    width: 620px;
    height: fit-content;
    flex-shrink: 0;
    background: #FFF;
    box-shadow: 0px 10px 20px 0px rgba(118, 118, 132, 0.40);
    padding: 40px;
}
.cookies-modal-content .icon-close{
    position: absolute;
    right: 16px;
    top: 16px;
}
.cookies-modal-title{
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 26px */
    letter-spacing: -0.8px;
    margin-bottom: 24px;
}
.cookies-modal-text{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    max-height: 40vh;
    overflow: auto;
}
.cookies-modal-text::-webkit-scrollbar {
    width: 4px;
}
.cookies-modal-text::-webkit-scrollbar-track {
    background-color: #fff;
}
.cookies-modal-text::-webkit-scrollbar-thumb {
    background-color: #D4D4DE;
    box-shadow: inset 0 0 6px #D4D4DE;

}
body.noscroll .cookies-msg{
    right: 73px;
}
@media screen and (max-width: 1000px) {
    .cookies-msg{
        flex-direction: column;
        right: 16px;
        bottom: 88px;
        left: 16px;
        width: calc(100% - 32px);
        padding: 16px;
    }
    .cookies-msg-text{
        margin-bottom: 16px;
        font-size: 12px;
    }
    .cookies-msg-btns{
        margin: 0;
        width: 100%;
        justify-content: space-between;
    }
    .cookies-msg-btns button {
        width: 100%;
    }
    .cookies-modal-content{
        width: 100vw;
        height: 100vh;
        padding: 0;
    }
    .cookies-modal-title{
        border-bottom: 1px solid #E6E9F0;
        padding: 17px;
        text-align: center;
        font-size: 16px;
        margin: 0;
    }
    .cookies-modal-text{
        padding: 16px;
        max-height: 98vh;
    }
}