
@font-face {
    font-family: "Proxima Nova";
    src: url("/campagne/fonts/proximanova-regular.woff2");
    font-weight: normal;
    font-style: normal
}

/*SCREEN*/

.screen *{
    font-family: Proxima Nova !important;
    font-weight: normal !important;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

.screen-background{
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
}

.screen-content{
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 7%;
}


.screen-count-text{
    color:#FFF;
    font-size:15vh;
    text-align:center;
    text-transform:uppercase;
    letter-spacing:3px;
    text-shadow: rgba(0, 0, 0, 0.325) 0px 4.97711px 21.1527px;
}


.screen-count-text2{
    color:#FFF;
    font-size:11vh;
    text-align:center;
    text-transform:uppercase;
    letter-spacing:3px;
    text-shadow: rgba(0, 0, 0, 0.325) 0px 4.97711px 21.1527px;
}

.screen-progress-bar{
    border-radius: 50px;
    border:5px solid #d4ac73
}

.screen-don-card{
    border:10px solid #d4ac73;
    background:radial-gradient(circle at 50% 50%, rgb(105, 2, 40) 0%, rgb(139, 29, 72) 100%) 0px 0px / 508.433px 256px;
    height: 15vh;

    min-width: 20vw;
    max-width: 20vw;

    animation-duration: 1s;
    animation-fill-mode: both;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:10px;
    overflow-x: hidden;
}

@keyframes screenDonFadeIn {
    from {
        display: none;
        left:3vw;
        opacity: 0;
    }
    to {
        display: flex;
        left:0vw;
        opacity: 1;
    }
}

.screenDonFadeIn {
    animation-name: screenDonFadeIn;
}

.screenDonFadeOut {
    display:none
}