.cookie {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 10000;
    width: 610px;
    max-width: calc(100% - 60px);
    padding: 20px;
    background: #E4EAEE;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25); 
}
.cookie__prev {
    overflow: auto;
    max-height: 50vh;
}
.cookie__full {
    display: none;
    overflow: auto;
    max-height: 50vh;
}
.cookie__full p:last-child {
    margin-bottom: 0;    
}
.cookie__buttons {
    width: 100%;
    margin-top: 20px;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;    
}
.cookie__show-close {
    border: 1px solid #004175;
    color: #004175 !important;
}
.cookie__show-close::before,
.cookie__show-close::after {
    display: none;
}
.cookie__close-text {
    display: none;    
}
.show-full .cookie__open-text {
    display: none;    
}
.show-full .cookie__close-text {
    display: block;    
}
@media (max-width: 574px){
    .cookie {
        max-width: 100%;
        right: 0;
        bottom: 0;
    }
}