
.cookie-popup{
    position: fixed;
    box-shadow: 0 5px 20px 0 #0000001f;
    bottom: 20px;
    background-color: rgb(248, 248, 248);
    z-index: 1000;
    display: flex;
    font-size: 15px;
    gap: 30px;
    justify-content: space-between;
    /*width: 90;*/
    padding: 21px 40px 20px 26px;
    width: calc(100% - 60px);
    left: 50%;
    transform: translateX(-50%);
    max-width: 750px;
    align-items: center;
    border-radius: 3px;

}
.cookie-popup__text{
    display: flex;
    flex-direction: column;
    gap: 11px;

}

.cookie-popup__btn{
    padding: 4px 14px;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-popup__buttons-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cookie-popup.cookie-popup--hidden{
    display: none;
}

@media screen and (max-width: 769px) {
    .cookie-popup{
        flex-direction: column;
        width: 100%;
        bottom: 0;
        padding: 21px 25px;
    }
    .cookie-popup__buttons-container{
        flex-direction: row;
    }
    .cookie-popup__title{
        font-size: 15px;
    }
    .cookie-popup__info{
        font-size: 14px;
    }
}


.cookie-page{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.cookie-page h2{
    font-size: 1.8rem !important;
}

@media screen and (max-width: 769px) {
    .cookie-page h2{
        font-size: 1.5rem !important;
    }
}