/* COOKIE DIALOG*/

.cookieDialog {
    position: fixed;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 250px;
}

.button.cookies_button {
    color: #fffdf6;
    font-weight: bold;
    padding: 0 15px;
    cursor: pointer;
}

.button.cookies_button:hover {
    background-color: #fffdf6;
    border-color: #9CAF88;
    color: #9CAF88;

}

.info a {
    position: relative;
    color: #9CAF88;
    text-decoration: none;
    font-weight: bold;
}

.info a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: currentColor;
    transition: width 0.3s linear;
}

.info a:hover::after {
    width: 100%;
}


.info span {
    position: relative;
    color: #9CAF88;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.info span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: currentColor;
    transition: width 0.3s linear;
}

.info span:hover::after {
    width: 100%;
}
