.cookie{
    position: fixed;
    bottom: -200px;
    width: 600px;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s bottom ease-in-out;
    box-shadow: 0 8px 24px rgba(64, 64, 73, 0.12);
    background: white;
    padding: 16px;
    z-index: 999;
    color: black;
}
.cookie a{
    color: black;
    transition: .5s all ease-in-out;
}
.cookie a:hover{
    text-decoration: none;
}
.cookie__container{
    display: flex;
    gap: 16px;
    align-items: center;
    text-align: center;
}
.cookie-service{
    width: 50vw;
    padding: 0.83vw;
    border-radius: 10px;
}
.cookie-service .cookie__container{
    gap: 0.83vw;
}
@media(max-width:740px){
    .cookie__container{
        gap:8px;
        font-size: 12px;
    }
    .cookie{
        width:90vw;
    }
    .cookie-service{
        width: 90vw;
        padding: 3vw;
        font-size: 3.3vw;
        line-height: 120%;
    }
}