/*---------------------------
** Cookie alert css
---------------------------*/

.cookie-consent {
    position: fixed;
    background-color: #262938;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 0;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    z-index: 10000000000;
    color: #fff;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

button.cookie-consent__agree {
    padding: 5px 16px;
    border: none;
    background-color: #25D06F;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    white-space: nowrap;
    flex: 0 0 auto;
}

span.cookie-consent__message {
    background-color: transparent !important;
    color: #fff;
    font-size: 14px;
    display: block;
    flex: 1 1 320px;
    word-break: break-word;
}

@media only screen and (max-width: 991px) {
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    button.cookie-consent__agree {
        margin-top: 0;
    }

    span.cookie-consent__message {
        line-height: 20px;
        width: 100%;
    }
}
