@font-face {
    font-family: "Graphik";
    font-weight: 400;
    font-display: swap;
    src: url("/resources/fonts/GraphikRegular.otf");
}
@font-face {
    font-family: "Graphik";
    font-weight: 600;
    font-display: swap;
    src: url("/resources/fonts/Graphik-Semibold.otf");
}
@font-face {
    font-family: "Graphik";
    font-weight: 700;
    font-display: swap;
    src: url("/resources/fonts/GraphikBold.otf");
}
.cookieStyles {
    padding: 26px 56px 26px 48px;
    width: 100%;
    max-width: 1180px;
    background: #000;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: #FCF9F3;
    border: 2px solid #060028;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    transition: 0.4s;
}
.cookieStyles.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    bottom: -100px;
    transition: 0.4s;
}
.cookieStyles svg {
    width: 52px;
    height: 52px;
    margin-right: 16px;
}
.cookieStyles p {
    max-width: 600px;
    margin: 0 5px 0 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: 'Graphik';
    text-align: left;
    color: #727a86;
}
.cookieStyles p a {
    color: #5273ef;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-family: 'Graphik';
}
.cookieStyles a.cookie-btn {
    color: #fff;
    background: #060028;
    border-radius: 100px;
    padding: 16px 40px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin: 0 0 0 auto;
    text-decoration: none;
    font-family: 'Graphik';
}
.cookieStyles div.cookie-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin: 0;
}
.cookieStyles div.cookie-close svg {
    width: 100%;
    height: 100%;
    margin: 0;
}
@media(max-width: 1024px){
    .cookieStyles {
        padding: 24px;
        bottom: 0;
        border: none;
        border-top: 2px solid #060028;
        border-radius: 0;
        bottom: 0;
    }
}
@media(max-width: 767px) {
    .cookieStyles {
        flex-direction: column;
        justify-content: center;
        padding: 24px;
    }
    .cookieStyles svg {
        width: 70px;
        height: 70px;
        margin: 0 0 16px;
    }
    .cookieStyles p {
        text-align: center;
        margin: 0 auto 16px;
    }
    .cookieStyles a.cookie-btn {
        margin: 0 auto;
    }
}