/* Write Your CSS Here */

.cookie-modal {
    background-color: #2B3146  !important;
    position: fixed;
    z-index: 99999999;
    bottom: 10px;
    width: 40%;
    padding: 26px;
    color: #fff;
    left: 50%;
    border-radius: 5px;
    text-align: center;
    transform: translateX(-50%);
}

@media only screen and (max-width: 1199px) {
    .cookie-modal {
        width: 80%;
        left: 20px;
        transform: translateX(0);
    }
    
    .cookie-consent__message-text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media only screen and (max-width: 575px) {
    .cookie-modal {
        width: calc(100% - 40px);
        left: 20px;
    }
}

.cookie-consent__message {
    display: block;
    text-align: justify;
    color: #505050;
}

.cookie-modal button {
    display: block;
    width: 100%;
    margin-top: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #DED4CD;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.image-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line {
    line-height: 1rem;
}

