.cookie-banner {
    border-radius: 0.5rem;
    z-index: 100;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 600px;
    background-color: #efefef;
    color: #646670;
    padding: 10px;
    font-size: larger;
    text-align: center;
    font-family: Arial, sans-serif;
    display: none;
    animation: fadeInOut 0.5s ease-in-out;
    box-shadow: 0px 5px 5px #11111188;
}
.cookie-banner a {
    color: #393b40;
    text-decoration: underline;
}
.cookie-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.cookie-icon {
    display: flex;
    align-items: center;
    margin-right: 5px;
    font-size: 60px;
}
.cookie-title {
    color: #353538;
    font-weight: bold;
    font-size: 40px;
}
.cookie-text {
    font-size: 14px;
    margin-bottom: 20px;
    font-size: large;
}
.cookie-buttons {
    display: flex;
    justify-content: center;
}
.cookie-button {
    margin: 0 10px;
    padding: 5px 10px;
    border: 1px solid #fff;
    border-radius: 0.5rem;
    color: #393b40;
    cursor: pointer;
}
.cookie-button.accept {
    background-color: var(--main-ci-color);
}
.cookie-button.decline {
    background-color: #c5c5c5;
}

.reset-cookies {
    padding: 5px 10px;
    color: #393b40;
    cursor: pointer;
    border-width: 2px;
    border-style: dashed;
    border-radius: 6px;
}

.reset-cookies:hover,
.reset-cookies:focus {
    color: var(--main-ci-color) !important;
    border-color: var(--main-ci-color) !important;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
