.cookie {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    margin-left: 1rem;
    background-color: #FFFFFF;
    padding: 1.5rem;
    outline: 1px solid #03428E !important;
    outline-offset: -1px;
    border-radius: 30px;
    box-sizing: border-box;
    width: fit-content;
    max-width: 645px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}
.cookie--show {
    opacity: 1;
    pointer-events: auto;
}
@media (min-width: 768px) {
    .cookie {
        margin-left: 0;
        left: auto;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}
#cookie-text {
    font-size: 14px;
}
.cookie__text {
    font-size: 14px;
    line-height: 20px;
    color: #21272A;
    margin: 0;
    text-align: justify;
}
.cookie__link {
    transition: color 0.3s ease-in-out;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-decoration: none;
    color: #03428E;
}

.cookie__btn-accept {
    background-color: #03428E;
    color: #FFFFFF;
    border: none;
    width: 125px;
    height: 32px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.cookie__btn-accept:hover {
    background-color: #379FFF;
}

.cookie__btn-reject {
    background-color: transparent;
    border: 1.5px solid #1a1a1a;
    width: 125px;
    height: 32px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.cookie__btn-reject:hover {
    background-color: #e8e8e8;
}

.buttons-cookie {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media (hover: hover)
{
    .cookie__link:hover {
        color:#003594;
    }
}