.lots-contests-header {
    height: 2.2em;
}

.lots-contests-header-container {
    display: flex;
    position: relative;
    background: var(--background-color-black);
    color: var(--text-color-white);
    height: 2em;
    align-items: center;
    width: 100%;
    z-index: 100;
}

.contest-header-logo {
    width: 2.5em;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contest-header-text {
    align-items: center;
    display: flex;
    font-size:0.825em;
    flex: 2;
    font-variation-settings: 'wght' 600;
}

.final-alert-2 {
    background-color: var(--secondary-color-red);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--background-color-white);
    position: absolute;
    top: 2px;
    left: 2px;
}


.final-alert {
    background-color: var(--secondary-color-red);
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0px;
}

.animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}


.animated.flip {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both ;
    animation-iteration-count: initial !important;
}

@-webkit-keyframes flip {
    0%{
        -webkit-transform: rotateY(0deg);
    }

    100% {
        -webkit-transform: rotateY(180deg);
    }
}

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(180deg);
    }
}

.flip {
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipreset {
    0%{
        -webkit-transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@keyframes flipreset {
    0% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

.flipreset {
    -webkit-animation-name: flipreset;
    animation-name: flipreset;
}

.animated.flip, .animated.flipreset {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both ;
    animation-iteration-count: initial !important;
}

