body {
    font-family: parisplus-clair,sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
}

.covid-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    z-index: 999999999;
}

.covid-window {
    border-radius: 6px;
    background-color: #fff;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    box-sizing: border-box;
}

.covid-close {
    z-index: 1;
    width: 22px;
    height: 22px;
    position: absolute;
    background-color: #7C3E00;
    -webkit-mask: url(svg/close-form.svg) no-repeat 0 0;
    mask: url(svg/close-form.svg) no-repeat 0 0;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.covid-logo {
    width: 245px;
    height: 45px;
    background: transparent url(svg/logo-signature.svg) no-repeat 0 0;
    background-size: cover;
}

.covid-titre {
    font-size: 1.75rem;
    position: relative;
    color: #57264b;
    padding: 40px 0;
    font-weight: 600;
}

.covid-args {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: column;
}

@media only screen and (min-width: 450px) {
    .covid-args {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }    
}

.covid-args > div {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
}

@media only screen and (min-width: 450px) {
    .covid-args > div {
        width: calc((100% / 3) - 20px);   
        flex-direction: column;
        justify-content: start;
        align-items: center;
        text-align: center;
    }
}

.covid-args > div > div {
    width: 120px;
    height: 120px;
    background: #3f464f;
    background: radial-gradient(circle farthest-corner at top,#4f5863,#3f464f);
    border-radius: 999px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.covid-args > div > span {
    width: calc(100% - 140px);
    margin-left: 20px;
}

@media only screen and (min-width: 450px) {
    .covid-args > div > span {
        width: 100%;
        margin-left: 0;
    }
}