.hide {
    display: none;
}

.cookie-content a {
    color: #fff !important;
}

.cookie-content a:hover {
    color: rgba(127, 172, 203, 1.0) !important;
}

.cookie-content p {
    margin: 0;
    padding: 0;
}

.cookie-container {
    position: relative;
    font-size: 0.9rem;
    line-height: 1.2rem;
    box-sizing: border-box !important;
    color: #fff;
    z-index: 1000;
}

.cookie-content {
    width: 45vw;
    position: fixed;
    /* bottom: 20px; */
    /* right: 20px; */
    left: 50%;
    bottom: 60px;

    transform: translate(-50%, 50%);

    background: rgba(0, 0, 0, 0.7);
    border-radius: 3rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-sizing: border-box !important;
    padding: 1rem 1.8rem;
    color: #fff;
}

.cookies-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box !important;
}

.cookie-content .cols {
    width: 80%;
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: auto;
}

.cookie-content .cols-10 {
    width: 20%;
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
}

.cookie-content .cookie-btn {
    display: inline-block;
    vertical-align: middle;
    border-radius: 1.5rem;
    padding: 0.4rem 1.5rem;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.7rem;
    cursor: pointer !important;
}

.cookie-btn:hover {
    background-color: #fff;
    color: #000;
    border: none;
    transition: 400ms;
}

@media (min-width: 320px) and (max-width: 640px) {
    .cookie-content {
        width: 90vw;
        left: 10;
        right: 10;
        border-radius: 1rem;
        padding: .9rem .5rem;
    }

    .cookie-content {
        width: 100vw;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translate(0, 0);
        border-radius: 0;
        padding: .5rem 1.1rem;
    }

    .cookie-content .cols {
        width: 100%;
    }

    .cookie-content .cols-10 {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .cookie-content {
        width: 70vw;
        left: 10;
        right: 10;
        border-radius: 1rem;
    }
}