.cookie-popup {
    position: fixed;
    z-index: 99999;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    width: 100%;
    overflow: auto;
    padding: 20px 60px;
    max-height: 100vh;
}

@media (max-width:1439.98px) {
    .cookie-popup {
        padding: 10px;
    }
}

.cookie-content {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.5);
    background: #000;
}

@media (min-width:991.98px) {
    .cookie-content {
        display: flex;
    }
}

.cookie-icon {
    width: 98px;
    height: 98px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 23px;
    margin-bottom: 0px;
}

@media (max-width: 1439.98px) {
    .cookie-icon {
        margin-right: 15px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 991.98px) {
    .cookie-icon {
        margin-right: 0px;
        margin-bottom: 10px;
    }
}

.cookie-text {
    flex-grow: 1;
}

.cookie-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cookie-text p strong {
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-bottom: 5px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width:991.98px) {
    .cookie-buttons {
        max-width: 281px;
        margin-left: 15px;
    }
}

@media (min-width:991.98px) and (max-width: 1439.98px) {
    .cookie-buttons {
        max-width: 230px;
    }
}

@media (max-width: 991.98px) {
    .cookie-buttons {
        margin-top: 10px;
    }
}

.cookie-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    border: 1px solid #fff;
    border-radius: 5px;
    min-height: 40px;
    cursor: pointer;
}

@media (max-width:1439.98px) {
    .cookie-btn {
        font-size: 14px;
    }
}

@media (any-hover: hover) {
    .cookie-btn:hover {
        opacity: 0.9;
    }
}

.accept {
    background: #fff;
    color: #000;
    margin-bottom: 10px;
}

.settings {
    background: none;
    color: #fff!important;
    text-decoration: none;
    text-align: center;
    font-weight: 400;
    padding: 0 5px;
}