﻿@media (max-width: 950px) {
    .alert-container {
        top: 5% !important;
        width: 100% !important;
        position: fixed !important;
        z-index: 9999 !important;
        background: #d9d9d9 !important;
        animation-name: fade-in !important;
        animation-duration: 5s !important;
        animation-fill-mode: forwards !important;
    }
}

@media (min-width: 950px) {
    .alert-container {
        top: 30% !important;
        width: 100% !important;
        position: fixed !important;
        z-index: 9999 !important;
        background: #d9d9d9 !important;
        animation-name: fade-in !important;
        animation-duration: 5s !important;
        animation-fill-mode: forwards !important;
    }
}

.minimize-line {
    width: 15px;
    height: 2px;
    background: black;
}

.alert-container-small {
    top: 5%;
    width: 100%;
    position: absolute;
    z-index: 998 !important;
    background: #d9d9d9;
    animation-name: fade-in;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

.hidden {
    display: none !important;
}

.alert-content-quarantine {
    flex-direction: column;
    display: flex;
    row-gap: 10px;
    padding: 0px 20px 20px 20px;
}

.estimation-text {
    font-size: 24px !important;
    text-align: center;
    font-weight: normal;
    margin: 0px;
}

.announcement-description-container {
    row-gap: 10px;
    display: flex;
    flex-direction: column;
}

.alert-container-minimize {
    bottom: 0;
    width: 100%;
    position: fixed;
    z-index: 998 !important;
    background: #d9d9d9;
    animation-name: fade-in;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

#turn-off-in-minimize {
    padding: 10px;
}

.announcement-close-button {
    cursor: pointer;
    font-weight: bold;
    width: 50px;
    height: 50px;
    top: -30px;
    margin: auto;
    display: flex;
    place-items: center;
    text-align: center;
    justify-content: space-around;
    line-height: 100%;
    border-radius: 100%;
    position: relative;
    background-color: #d9d9d9;
}

    .announcement-close-button:hover {
        animation-name: fade-out;
        animation-duration: 5s;
        animation-fill-mode: forwards;
    }

@keyframes fade-out {
    from {
        color: black;
    }

    to {
        color: gray;
    }
}

.alert-container {
    top: 30%;
    width: 100%;
    position: fixed;
    z-index: 9999 !important;
    background: #d9d9d9;
    animation-name: fade-in;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

@keyframes fade-in {
    from {
        opacity: 0.1
    }

    to {
        opacity: 100
    }
}

.announcement-title {
    margin: 0px;
    line-height: 30px !important;
    text-align: center !important;
    font-weight: normal !important;
    font-size: 30px !important;
}

.announcement-title-container {
    column-gap: 10px;
    justify-content: center;
    flex-direction: row;
    display: flex;
}

.announcement-description {
    font-size: 20px !important;
    font-weight: normal;
    margin: 0px;
}
