/* COOKIES BANNER */
#cookie-notice {
    width: 35%;
    min-width: 35% !important;
    top: 50%;
    left: 50% !important;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content !important;
}

#cookie-notice .cookie-notice-container {
    box-shadow: 0 0 100px 800px rgb(0 0 0 / 50%);
}

#cookie-notice .cn-notice-text {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 20px;
}

@media screen and (max-width: 1200px) {
    #cookie-notice {
        width: 65%;
    }
    .cookie-notice-container {
        padding: 15px 40px;
    }
}

@media screen and (max-width: 520px) {
    #cookie-notice {
        width: 90%;
    }

    #cn-accept-cookie {
        width: 40%;
    }

    #cn-refuse-cookie {
        width: 40%;
    }

    #cn-more-info {
        width: 100%;
        display: block !important;
        margin-top: 10px !important;
    }

    .cn-close-icon {
        right: 5px !important;
    }
}