.cookies {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

.back-arrow {
    z-index: 999999;
}

.cookies .main {
    display: flex;
    align-items: center;
    max-width: 79.5vw;
    margin: auto;
    padding: 2rem;
    background-color: #125FAB;
    box-shadow: -1px -16px 50px -30px rgba(0, 0, 0, 0.57);
    -webkit-box-shadow: -1px -16px 50px -30px rgba(0, 0, 0, 0.57);
    -moz-box-shadow: -1px -16px 50px -30px rgba(0, 0, 0, 0.57);
}

.cookies .main .content,
.cookies .main .actions {
    padding: 0 2rem;
}

.cookies .main .content p {
    color: white;
    margin-bottom: unset;
}

.cookies .main .content p a {
    text-decoration: underline !important;
    font-weight: bold;
    color: white;
}

.cookies .main .actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cookies .main .actions .btn-approve,
.cookies .main .actions .btn-reject {
    color: #125FAB;
    width: 170px;
    border-radius: unset;
    padding: .5rem !important;
}

/* Mobile */
@media screen and (max-width: 767px) {
    .cookies {
        z-index: 9999999;
    }

    .cookies .main {
        max-width: unset;
        display: block;
    }

    .cookies .main .content {
        margin-bottom: 2rem;
    }

    .cookies .main .content p {
        text-align: center;
    }

    .cookies .main .actions .btn-approve,
    .cookies .main .actions .btn-reject {
        width: 50%;
    }

    .cookies .main .content,
    .cookies .main .actions {
        padding: 0;
    }
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cookies {
        z-index: 9999999;
    }

    .cookies .main {
        max-width: 100vw;
    }
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .cookies .main {
        display: flex;
        height: 15vh;
    }

    .cookies .main .content {
        width: 70%;
    }

    .cookies .main .actions {
        width: 30%;
    }

    .cookies .main .actions .btn-approve,
    .cookies .main .actions .btn-reject {
        padding: unset;
    }
}