/**
 * Banner de cookies — mismos estilos que bexen.com (tema mkt228-child)
 */

#cookie-banner-wr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
}

#cookie-banner-wr #cookie-banner {
    box-shadow: rgba(0, 0, 0, 0.3) 0 4px 8px;
    background-color: rgb(234, 236, 239);
    border-radius: 8px;
    position: relative;
    bottom: 20px;
    right: 20px;
    padding: 16px;
    border: 1px solid rgb(234, 236, 239);
    width: min(700px, 90%);
    display: block;
    z-index: 9999;
}

#cookie-banner-wr #cookie-banner .cookie-banner-logo {
    width: 80px;
    height: auto;
    margin-bottom: 12px;
}

#cookie-banner-wr #cookie-banner .cookie-banner-title {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

#cookie-banner-wr #cookie-banner .cookie-banner-text {
    font-size: 13px;
    line-height: 1.3;
}

#cookie-banner-wr #cookie-banner .cookie-config-wr label {
    font-size: 13px;
}

#cookie-banner-wr #cookie-banner .cookie-actions-wr {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

#cookie-banner-wr #cookie-banner .cookie-actions-wr .btn {
    width: 50%;
    text-decoration: none;
}

#cookie-banner-wr #cookie-banner .cookie-actions-wr #reject-cookies {
    width: 50%;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}

#cookie-banner-wr #cookie-banner .cookie-actions-wr #config-cookies {
    font-size: 13px;
    text-decoration: underline;
    padding-right: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
}

#cookie-banner-wr #cookie-banner .cookie-actions-wr #config-cookies:hover {
    opacity: 1;
}

#cookie-trigger {
    background-color: rgb(234, 236, 239);
    border-radius: 8px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 14px;
    border: 1px solid rgb(234, 236, 239);
    display: none;
    background-image: url("../images/icon-cookies.svg");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center center;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
    z-index: 9999;
    width: 44px;
    height: 44px;
}

#cookie-trigger:hover {
    opacity: 1;
}
