﻿/**************************************************************************************
||||||||||||||||||||||||||       COOKIE             |||||||||||||||||||||||||||||||||||
**************************************************************************************/
@charset "UTF-8";
.cookies-container {
    color: var(--FOCOPDV-B2B-white) !important;
    position: fixed;
    width: 100%;
    bottom: 2rem;
    z-index: 9999999999 !important
}
    .cookies-container p {
        margin: 0;
        font-size: 12px;
        line-height: 16px;
        color: var(--FOCOPDV-B2B-white) !important
    }

.cookies-content {
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
    background: rgba(51,51,51,.95);
    max-width: 95%;
    border-radius: 5px;
    padding: 1rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    /*gap: .5rem;*/
    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp .5s forwards
}

.cookies-content input[type=checkbox],
.cookies-content input[type=radio] {
    margin-right: 5px
}
    .cookies-content a {
        color: var(--FOCOPDV-B2B-rgb-secondary) !important
    }

.cookies-content a:hover {
    color: var(--FOCOPDV-B2B-white) !important;
    text-decoration: underline
}

@keyframes slideUp {
    to {
        transform: initial;
        opacity: initial
    }
}

.cookies-pref label {
    margin-right: 1rem
}


/*--FOCOPDV-global-color-merck-puple: #503291 !important;
--FOCOPDV-global-color-merck-yellow: #ffc832 !important;
--FOCOPDV-global-color-merck-aqua: #2dbecd !important;
--FOCOPDV-global-color-merck-pink: #eb3c96 !important;
--FOCOPDV-global-color-merck-green: #149b5f !important;*/

.cookies-save {
    grid-column: 2;
    grid-row: 1/3;
    cursor: pointer;
    border-radius: 5px;
    padding: .2rem 1rem;
    font-size: .9rem;
    text-transform: uppercase;
}

.cookies-save {
    /*
    --FOCOPDV-global-color-merck-yellow
    --FOCOPDV-global-color-merck-puple
    --FOCOPDV-global-color-merck-aqua
    --FOCOPDV-global-color-merck-pink
    --FOCOPDV-global-color-merck-green
    */

    background-color: transparent !important;
    border: 1px solid var(--FOCOPDV-B2B-rgb-secondary) !important;
    color: var(--FOCOPDV-B2B-rgb-secondary) !important;

    display: inline-block;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 11px;
    text-decoration: unset;
    border-radius: 4px;
    transition: all .3s;
}
    .cookies-save:hover {
        background-color: var(--FOCOPDV-B2B-rgb-secondary) !important;
        border: 1px solid var(--FOCOPDV-B2B-white) !important;
        color: var(--FOCOPDV-B2B-white) !important
    }

@media (max-width: 500px) {
    .cookies-content {
        grid-template-columns:1fr
    }

    .cookies-save {
        grid-column: 1;
        grid-row: 3
    }
}

@media (max-width: 767px) {
    .cookies-container {
        bottom: 0.75rem
    }
}

.hidde {
    display: none!important
}