.cookies {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    height: auto;
    width: 500px;
    font-weight: 200;
    font-size: 12px;
    text-transform: none;
    flex-flow: column;
    justify-content: center;
    align-items: start;
    background: rgba(22,17,17,0.83);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50), inset 0 1px 3px 0 rgba(0,0,0,0.50);
    z-index: 99999;
}

.cookies .inner {
    background-color: rgba(0, 0, 0, .7);
    padding: 30px;
    z-index: 100;
}

.cookies .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(207, 170, 101, .3);
    padding: 20px;
    filter: blur(20px);
    z-index: -1;
}

.cookies.visible {
    display: flex;
}

.cookies-btn {
    height: 30px;
    text-transform: uppercase;
    cursor: pointer;
    background: rgba(22,17,17,0.9);
    padding: 0 70px;
    margin: 20px 0 10px;
    border: 1px solid #C8A563;
    transition: all .5s ease-in-out;
    font-family: Helvetica;
    font-size: 12px;
    color: #C8A563;
    letter-spacing: 0.97px;
    text-align: center;
    line-height: 23px;

}

.cookies-btn:hover {
    background-color: #4F483A;
}

.cookies-link {
    font-weight: 600;
    transition: all .2s ease-in-out;
}

.cookies-link:hover {
    text-decoration: underline;
}

.cookies-paragraph {
    font-family: Helvetica;
    font-size: 14px;
    color: #776C5A;
    letter-spacing: 0.15px;
    line-height: 23px;
}

.cookies-title {
    font-family: Helvetica;
    font-size: 17px;
    color: #C8A563;
    letter-spacing: 1.24px;
    line-height: 23px;
    margin-bottom: 5%;
}

@media (max-width: 768px) {
    .cookies {
        width: 100%;
    }
}
