.cookie{
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #EA5400;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    position: fixed;
    display: none;
    grid-gap: 20px;
    max-width: 350px;
    z-index: 150;
    bottom: 80px;
    right: 15px;
}
.cookie.show{
    display: grid;
}
.cookie__btn-close{
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
}
.cookie__top{
    display: flex;
    align-items: center;
    gap: 10px;
}
.cookie__top b {
    font-size: 16px;
    font-weight: 700;
}
.cookie__middle-text p{
    font-size: 14px;
    font-weight: 400;
}
.cookie__btn-or{
    background: #EA5400;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 10px;
    border: 1px solid #EA5400;
}
.cookie__btn-bor{
    background: #fff;
    border-radius: 5px;
    color: #3A5072;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 10px;
    border: 1px solid #3A5072;
}
.cookie__bottom{
    display: flex;
    gap: 10px;
}
.cookie .checkbox__input:checked + label:after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: -2px;
    left: -25px;
    border-radius: 3px;
    background:url(https://smsactivate.s3.eu-central-1.amazonaws.com/assets/img/icons/whiteArrow.svg) no-repeat center;
}
.cookie .checkbox__input + label:before{
    box-shadow: none;
    border: 1px solid #EA5400;
    background-image: none;
}
.cookie .checkbox__input:checked + label:before{
    background-color: #EA5400;
    background-image: none;
}
@media only screen and (min-width: 767px){
    .cookie{
        bottom: 50px;
        right: 50px;
    }
}
