.cookie-consent-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100vw;
    opacity: 0.95;
    background-color: #343a40;
    padding: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: center;
    color: #f8f9fa;
}

.cookie-consent-disappear {
    transition-property: bottom, opacity;
    transition-duration: 1s, 1s;
    transition-timing-function: cubic-bezier(0.96, 0.03, 0.475, 0.47),
        cubic-bezier(0.47, 0.475, 0.03, 0.96);
    opacity: 0;
    bottom: -400px;
}

.btn-consent {
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 16px;
    background-color: rgb(112, 142, 253);
    color: rgba(0, 0, 0, 0.85);
    /* color: white; */
}

.btn-consent:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.85);
    color: rgb(112, 142, 253);
}

.link-cookie {
    text-decoration: none;
    color: rgb(112, 142, 253);
}

.link-cookie:hover {
    color: white;
}
