.cookie {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 100%;
	padding-left: 25px;
    max-width: 500px;
    z-index: 300;
    transform: translateY(110%);
    -webkit-transform: translateY(110%);
    -moz-transform: translateY(110%);
    -ms-transform: translateY(110%);
    -o-transform: translateY(110%);
    transition:  all 0.5s linear 0s;
    -webkit-transition:  all 0.5s linear 0s;
    -moz-transition:  all 0.5s linear 0s;
    -ms-transition:  all 0.5s linear 0s;
    -o-transition:  all 0.5s linear 0s;
}

.cookie.show {
    transform: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    -o-transform: unset;
}

.cookie.hidden {
    transform: translateY(110%);
}

.cookie-body {
    box-shadow: 0 0 10px 1px #c2c2c2;
    display: flex;
    flex-direction: column;
    gap: -3px;
    padding: 15px;
    border-radius: 10px;
    background-color: #cbf6ff;
}

.cookie-title {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #38429e;
    margin: 0;
    margin-bottom: 5px;
    font-size: 24px;
}

.cookie-title span {
    display: inline-block;
    color: inherit;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke-width='0'/%3E%3Cg stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg%3E%3Cpath d='M9 16H9.01M12 11H12.01M7 10H7.01M15 16H15.01M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C12 5.76142 13.7909 8 16 8C16 10.2091 18.2386 12 21 12Z' stroke='%2338429e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cookie-description {
    color: #000000;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
}

.cookie-btn {
    cursor: pointer;
    outline: none;
    border: 2px solid transparent;
    border-radius: 5px;
    display: inline-block;
    width: 100px;
    line-height: 30px;
    font-size: 18px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 300ms linear 0s;
    -webkit-transition: all 300ms linear 0s;
    -moz-transition: all 300ms linear 0s;
    -ms-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
}


.cookie-btn.cookie-btn_accept {
    background-color: #4341c6;
    color: #fff;
}

.cookie-btn.cookie-btn_accept:hover {
    background-color: #38429e;
}

.cookie-body__bot {
    text-align: center;
}

@media(max-width: 479px) {

    .cookie-title {
        justify-content: center;
    }

    .cookie-description {
        text-align: center;
    }
}