
@font-face {
    font-family: "Proxima Nova";
    src: url("/campagne/screen/custom-or-babait/Proxima Nova/proximanova_regular.ttf");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Proxima Nova Bold";
    src: url("/campagne/screen/custom-or-babait/Proxima Nova/proximanova_bold.otf");
    font-weight: 800;
    font-style: normal
}

/*SCREEN*/

.screen *{
    font-family: Proxima Nova Bold !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:10vh;
    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:8vh;
    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:10px solid #FFF;
    background-color: #FFF;
}

.screen-progress-bar-container{
    width:70vw;
    height:7vh;
    overflow: hidden;
    background-color: #FFF;
    border-radius: 50px;
}

.screen-don-card{
    border: 20px solid #FFF;
    border-radius: 25px;

    background-color:#FFF;
    height: 18vh;

    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: space-between;
    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
}