/* Notification start */
.notification-wrapper {
    display: none;
    width: 100%;
    padding: 16px 0px;
    background-color: #303030;
    border-bottom: solid 1px #121212;
}

.notification {
    position: relative;
    line-height: 22px;
    font-size: 14px;
    margin: 0 30px;
}


@media (max-device-width: 1024px) and (hover: none) and (pointer: coarse) and (-webkit-min-device-pixel-ratio: 2) {
    .notification-wrapper {
        width: 1160px;
    }

    .notification {
        font-size: 18px;
    }
}

@media (max-device-width: 1024px) and (hover: none) and (pointer: fine) and (-webkit-min-device-pixel-ratio: 2) {
    .notification-wrapper {
        width: 1160px;
    }

    .notification {
        font-size: 18px;
    }
}

@media (max-device-width: 1024px) and (hover: hover) and (pointer: coarse) and (-webkit-min-device-pixel-ratio: 2) {
    .notification-wrapper {
        width: 1160px;
    }

    .notification {
        font-size: 18px;
    }
}

@media (max-device-width: 480px) and (hover: none) and (pointer: coarse) and (-webkit-min-device-pixel-ratio: 2) {
    .notification-wrapper {
        width: 100%;
    }

    .notification {
        /*font-size: 18px;*/
        font-size: 0.8em;
        line-height: 1em;
    }
}

@media (max-device-width: 480px) and (hover: none) and (pointer: fine) and (-webkit-min-device-pixel-ratio: 2) {
    .notification-wrapper {
        width: 100%;
    }

    .notification {
        /*font-size: 18px;*/
        font-size: 0.8em;
        line-height: 1em;
    }
}

@media (max-device-width: 480px) and (hover: hover) and (pointer: coarse) and (-webkit-min-device-pixel-ratio: 2) {
    .notification-wrapper {
        width: 100%;
    }

    .notification {
        /*font-size: 18px;*/
        font-size: 0.8em;
        line-height: 1em;
    }
}

.btn-close-notification {
    position: absolute;
    right: 0;
    cursor: pointer;
    display: inline-block;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1;
    color: #F5F5F5;
}

    .btn-close-notification:hover {
        color: #ffffff;
    }

.notification .desc {
    color: #F5F5F5;
    display: inline-block;
    margin-right: 40px;
    text-align: left;
    margin-left: 40px;
}

    .notification .desc p {
        margin-top: 0;
        margin-bottom: 0;
    }

    .notification .desc a {
        font-weight: bold;
        color: #F5F5F5;
        text-decoration: underline;
    }

        .notification .desc a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

.notification-warning-icon {
    position: absolute;
    left: 0;
    top: 0.4em;
    cursor: pointer;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(/images/icons/exclamation-triangle-solid-white.svg);
    background-repeat: no-repeat;
    background-position: center;
}
/* Notification end */
