/*Cookie*/
.cookie {
    position: fixed;
    bottom: 15px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(48, 48, 48, 0.5);
    padding: 10px;
    left: -10000px;
    border-radius: 12px;
    transition: left 2s ease-in-out;
    width: 50%;
    z-index: 99999;
}

.cookie .row {
    position: relative;
    padding: 10px 20px;
}

.cookie.none-visible {
    left: -10000px;
}
.cookie.show {
    left: 15px;
}
.cookie.none-show {
    display: none;
}

.cookie .cookie-img {
    height: 31px;
    background: no-repeat center;
    background-size: contain;
    width: 100%;
}

.cookie .cookie-text {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.4;
}

.cookie .cookie-text a {
    text-shadow: 2px 8px 6px rgba(0, 0, 0, 0.2), 0 -5px 35px rgba(255, 255, 255, 0.3);
}

.cookie .cookie-wrapper__close {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
}

.cookie .cookie-wrapper__close i {
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    position: relative;
    right: 15px;
}

.cookie .cookie-wrapper span {
    position: relative;
    float: left;
}

.cookie .cookie-wrapper__close-ok {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    color: #000000;
    font-weight: 700;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-top: 5px;
}

.cookie-wrapper__img {
    padding: 0;
}