@charset "utf-8";
/* CSS Document */

/*cookies*/
.cookie-banner{
    position: fixed;
    bottom: 0;

    width: 100%;
    z-index: 10003;

    background-color: #fff;
    padding: 2% 15%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0px 0px 12px #00000014;

    transition: all 0.5s ease-in-out;
}
.cookie-banner p{
    width: 80%;
    font-size: 1vw;
    color: #272727;
}
#cookie-banner a{
    color: #06c;
    font-weight: bold;
}
#cookie-banner a:hover{
    text-decoration: underline;
    cursor: pointer;
}

#accept-cookies{
    width: min-content;
    padding: 1% 2%;
    border-radius: 1vw;
    background-color: #3b3b3b;
    color: #fff;
    cursor: pointer;
    font-size: 1.2vw;

    transition: background-color 0.3s ease-in-out;
}
#accept-cookies:hover{
    background-color: #272727;
}

@media only screen and (max-width: 600px) {
    .cookie-banner{
        flex-direction: column;
        padding: 5%;
    }
    .cookie-banner p{
        font-size: 1.7vh;
        width: 100%;
    }
    #accept-cookies{
        margin-top: 5%;
        padding: 3%;
        width: 30%;
        text-align: center;
        font-size: 1.7vh;
    }
}
/*cookies*/
