/*
.acceptCookies {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 40%;
    background-color: rgba(0, 0, 0, .8);
    color: #fff;
    padding: 1em;
    z-index: 2000;
    border-top-left-radius: var(--basicRadius);
    border-top-right-radius: var(--basicRadius);
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.acceptCookies h2 {
    color: #fff;
    text-align: left;
}

.cookiesTxt {
    text-align: left;
    font-size: .9em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.buttons button {
    display: inline-block;
    width: 40%;
    padding: .5em;
    font-weight: 700;
    border: 0 solid transparent;
    font-size: 1.2em
}

.denyCookies {
    margin-right: 3%;
    color: Silver;
    font-size: .8em !important;
    background-color: transparent;
    text-align: right
}

.buttons button.defaultBackgroundGreen {
    color: var(--basicColor1);
    border-radius: var(--basicRadius);
    cursor: pointer;
}

@media screen and (max-width: 800px) {
    .acceptCookies {
        width: 60%
    }
}

@media screen and (max-width: 600px) {
    .acceptCookies {
        width: 98%;
        left: 1%;
        bottom: 1em
    }
}*/

.acceptCookies {
    position: fixed;
    bottom: 1em;
    left: -100%;
    background-color: white;
    -webkit-box-shadow: 0px 0px 35px 4px rgba(0,0,0,0.17);
    box-shadow: 0px 0px 35px 4px rgba(0,0,0,0.17);
    width: 20em;
    border-radius: 15px;
    transition: ease all .8s;
    z-index: 1000;
}

.acceptCookies.active{
    left: 1em;
}

.acceptCookies img{
    width: 50%;
    height: auto;
    object-fit: contain;
}

.acceptCookies .containerTitle{
    display: flex;
    gap: 1em;
    padding: 30px 30px 0 30px;

}

.acceptCookies .containerTitle h2{
    font-size: 1.2em;
}

.acceptCookies p{
    font-size: .8em;
    padding: 10px 30px 30px 30px;
}

.acceptCookies a {
    font-size: 1em;
    color: var(--basicColor1);
}

.acceptCookies .buttons{
    display: flex;
    border-top: 1px solid #e0e0e0;
}

.acceptCookies .buttons button{
    width: 50%;
    text-align: center;
    border: none;
    background-color: initial;
    cursor: pointer;
}

.acceptCookies .buttons button:first-child{
    border-right: 1px solid #e0e0e0;
    padding: 10px 0 10px 10px;

}

.acceptCookies .buttons button:last-child{
    padding: 10px 10px 10px;
}