.cookie-wrap {
    width: 100vw;
    max-width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #EFEFEF;
    display: none;
}

.cookie 
{
    width: 100vw;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.cookie .cookie-content
{
    width: 100%;
    max-width: 1170px;
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
}

.cookie .cookie-content button 
{
    width: 135px;
    padding: 12px 10px;
    background-color: #0064be;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: all .3s;
}

.cookie .cookie-content p 
{
    font-family: light, sans-serif;
    font-weight: 400;
    font-size: 12.8px;
    display: flex;
    align-items: center;
}

.cookie .cookie-content p a 
{
    /* margin: 0 5px; */
}

@media (max-width: 699px) {
    .cookie-wrap 
    {
        display: none !important;
    }
}

@media (min-width: 700px) and (max-width: 1200px) {
    .cookie-wrap .cookie .cookie-content 
    {
        width: 90%;
    }
}