.cookies-warning {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    transition: all .7s ease-out;
    font-size: 16px;
    text-align: left;
    visibility: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 16px;
    background-color: rgba(0, 0, 0, .3);
}
.js-cookies-warning-hidden{
    bottom: -400px;
    visibility: hidden;
}
.cookies-warning__inner{
    background: #fff;
    padding: 20px;
    flex: 1 0 100%;
    max-width: 1200px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    align-items: center;
}
.cookies-warning__left{
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    margin-right: 20px;
}
.cookies-warning__right{
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    text-align: right;
}
.cookies-warning__left__title{
    margin-bottom: 5px;
    font-size: .9em;
    font-weight: 700;
}
.cookies-warning__left__text{
    font-size: .8em;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0;
}
.cookies-warning__left__text a{
    display: inline;
    font-weight: 700;
    text-decoration: underline;
}
.cookies-warning__left__text a:hover{
    text-decoration: none;
}
.cookies-warning__btn,
.cookies-warning__right__link{
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.cookies-warning__btn.js-reject-warning{
    opacity: 0.65;
}
.cookies-warning__right button.cookies-warning__right__link{
    background: none !important;
    text-shadow: unset;
    color: #000;
    text-decoration: underline;
    padding: 0;
    border: 0;
}
.cookies-warning__btn:focus,
.cookies-warning__right__link:focus{
    outline: 0;
}
.cookies-warning__btn{
    box-sizing: border-box;
    max-width: 260px;
    padding: 12px 16px;
    margin-bottom: 10px;
    border: 0;
    font-size: .92em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.cookies-warning__btn:focus{
    outline: 0;
}
.cookies-warning__btn:hover{
    opacity: .9;
}
.cookies-warning__right__link{
    font-size: .95em;
    font-weight: 700;
    text-decoration: underline;
    border: 0;
    padding: 0;
    background: transparent;
}
.cookies-warning__right__link:hover{
    text-decoration: none;
}
/*.cookies-warning__right__link::after{
    font-family: 'Font Awesome 5 Pro';
    content: '\f0a9';
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;

    content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3C!--!Font%20Awesome%20Free%206.5.2%20by%20%40fontawesome%20-%20https%3A%2F%2Ffontawesome.com%20License%20-%20https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree%20Copyright%202024%20Fonticons,%20Inc.--%3E%3Cpath%20d%3D%22M256%208c137%200%20248%20111%20248%20248S393%20504%20256%20504%208%20393%208%20256%20119%208%20256%208zm-28.9%20143.6l75.5%2072.4H120c-13.3%200-24%2010.7-24%2024v16c0%2013.3%2010.7%2024%2024%2024h182.6l-75.5%2072.4c-9.7%209.3-9.9%2024.8-.4%2034.3l11%2010.9c9.4%209.4%2024.6%209.4%2033.9%200L404.3%20273c9.4-9.4%209.4-24.6%200-33.9L271.6%20106.3c-9.4-9.4-24.6-9.4-33.9%200l-11%2010.9c-9.5%209.6-9.3%2025.1%20.4%2034.4z%22%2F%3E%3C%2Fsvg%3E");
    width: 1rem;
    filter: invert(1);
}*/
.close-cookies-warning{
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1.2em;
    cursor: pointer;
}
/**popup**/
.cookies-warning-popup{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 16px;
    text-align: left;
}
.cookies-warning-popup.js-cookies-popup-visible{
    opacity: 1;
    pointer-events: all;
}
.cookies-warning-popup__close{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
}
.cookies-warning-popup__content{
    box-sizing: border-box;
    width: 98%;
    max-width: 990px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 1.875em; /*30px*/
    border-radius: 5px;
    background-color: #fff;
}
.cookies-warning-popup__content__head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.379em;
    border-bottom: 1px solid #eee;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
}
.cookies-warning-popup__content__head p{
    margin: 0;
    padding: 0;
    line-height: 120%;
}
.cookies-warning-popup__content__body{
    margin: 1em 0;
    padding: 1em 0;
}
/*formulario*/
.cookies-form{
    width: 100%;
    margin: 0;
    padding: 0;
}
.cookies-form__item{
    position: relative;
    margin-bottom: 1em;
    overflow: hidden;
}
.cookies-form__item [type="checkbox"]:checked,
.cookies-form__item [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.cookies-form__item [type="checkbox"]:checked + label,
.cookies-form__item [type="checkbox"]:not(:checked) + label{
    position: relative;
    float: right;
    padding-left: 30px;
}
.cookies-form__item label{
    font-size: .9em;
    line-height: 1.3;
}
.cookies-form__item label span{
    display: block;
    margin-bottom: .5em;
    font-weight: 700;
    line-height: 1.5;
}
.cookies-form__item [type="checkbox"]:checked + label:before,
.cookies-form__item [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    background: #fff;
}
.cookies-form__item [type="checkbox"]:checked + label:after,
.cookies-form__item [type="checkbox"]:not(:checked) + label:after {
    /*font-family: 'Font Awesome 5 Pro';
    content: '\f00c';*/
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 18px;
    color: #434343;

    content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3C!--!Font%20Awesome%20Free%206.5.2%20by%20%40fontawesome%20-%20https%3A%2F%2Ffontawesome.com%20License%20-%20https%3A%2F%2Ffontawesome.com%2Flicense%2Ffree%20Copyright%202024%20Fonticons,%20Inc.--%3E%3Cpath%20d%3D%22M173.9%20439.4l-166.4-166.4c-10-10-10-26.2%200-36.2l36.2-36.2c10-10%2026.2-10%2036.2%200L192%20312.7%20432.1%2072.6c10-10%2026.2-10%2036.2%200l36.2%2036.2c10%2010%2010%2026.2%200%2036.2l-294.4%20294.4c-10%2010-26.2%2010-36.2%200z%22%2F%3E%3C%2Fsvg%3E");
}
.cookies-form__item [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
.cookies-form__item [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
/*cookies necesarias*/
.cookies-form__item [type="checkbox"].mandatory + label{
    pointer-events: none;
}
.cookies-form__item [type="checkbox"].mandatory:checked + label:before,
.cookies-form__item [type="checkbox"].mandatory:not(:checked) + label:before{
    border: 0;
}
.cookies-form__item [type="checkbox"].mandatory:checked + label:after,
.cookies-form__item [type="checkbox"].mandatory:not(:checked) + label:after{
}
.cookies-form__button{
    box-sizing: border-box;
    width: auto;
    padding: 15px 30px;
    margin-top: 1em;
    border: 0;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    cursor: pointer;
}
.cookies-form__button:focus{
    outline: 0;
}
.cookies-form__button:hover{
    opacity: .9;
}
.cookies-form__button--top{
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
    margin-left: .8em;
    padding: 12px 17px;
    font-size: .8em;
}
.cookies-form__button--top:hover{
}
.cookies-warning-popup__content__footer{
    padding-top: 1.679em;
    border-top: 1px solid #eee;
    font-size: .85em;
    font-weight: 400;
    opacity: .8;
}
.cookies-warning-popup__content__footer p{
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 130%;
}
.cookies-warning-popup__content__footer p a{
    display: inline;
    text-decoration: underline;
}
.cookies-warning-popup__content__footer p a:hover{
    text-decoration: none;
}
/**media queries**/
/*hasta 767px*/
@media screen and (max-width: 47.938em){
    .cookies-warning,
    .cookies-warning-popup{
        font-size: 14px;
    }
    .cookies-warning__inner{
        flex-direction: column;
    }
    .cookies-warning__left{
        margin: 0 0 10px 0;
    }
    .cookies-warning__right{
        width: 100%;
    }
    .cookies-warning__left__text{
        text-align: justify;
    }
    .cookies-warning__btn,
    .cookies-warning__right__link{
        max-width: unset;
    }

    .cookies-warning-popup__content{
        max-height: 85vh;
    }
    .cookies-warning-popup__close{
        top: 5px;
        right: 5px;
    }
    .cookies-warning-popup__content__head{
        flex-direction: column;
    }
    .cookies-warning-popup__content__head p{
        text-align: center;
    }
    .cookies-buttons-block{
        margin-top: .5em;
        text-align: center;
    }
    .cookies-form__button--top{
        margin-top: .8em;
        margin-left: 0;
        font-size: .7em;
    }
}
/*hasta 369px*/
@media screen and (max-width: 23.063em){
    .cookies-warning__right{
        text-align: center;
    }
    .cookies-warning__btn,
    .cookies-warning__right__link{
        width: 100%;
    }
    .cookies-warning__btn{
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: .8em;
    }
    .cookies-form__button{
        padding-left: 22px;
        padding-right: 22px;
    }
}

@media print {
    .cookies-warning,
    .cookies-warning-popup{
        display:none !important;
    }
}

.overflow-hidden {
    overflow: hidden !important;
}

.cookies-scrollInPage.overflow-hidden {
    overflow: unset !important;
}
.cookies-scrollInPage .cookies-warning {
    background: transparent;
}
.cookies-scrollInPage .cookies-warning__inner {
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
}