.popup-black {
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    background-color: rgba(22, 22, 22, 0.6);
    /* complimenting your modal colors */
}

.popup-white {
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    background-color: #f3f3f4;
    /* complimenting your modal colors */
}

.box {
    z-index: 100;
    width: 50%;
    max-width: 400px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgb(38 40 45 / 40%);
    padding: 50px;
    display: block;
    padding-top: 50px;
}

.box-login {
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #855f6a;
    text-transform: uppercase;
    letter-spacing: .2px;
}

.box-login input {
    display: block;
    width: 100%;
    background-color: #fff;
    color: #676a6c;
    border: 1px solid #cccddd;
    border-radius: 5px;
    -webkit-appearance: none;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    transition: border-color .4s ease;
}

.popup {
    z-index: 100;
    position: fixed;
    left: 50%;
    margin-left: -700px;
    /* Half of the width */
    width: 1400px;
    height: 80%;
    overflow: auto;
    top: 10%;
    border: solid 10px #333333;
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
}

.popup-big {
    z-index: 100;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: auto;
    border: solid 10px #333333;
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
}

.arrow {
    float: left;
    display: block;
    width: 15px;
    height: 15px;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.arrow-white {
    border-right: solid 4px #FFFFFF;
    border-bottom: solid 4px #FFFFFF;
}

.arrow-dark {
    border-right: solid 4px #444444;
    border-bottom: solid 4px #444444;
}

.right {
    transform: rotate(-45deg);
    /* Équivalent à rotateZ(45deg) */
    margin-top: 13px;
    transition: all 0.2s;
}

.bottom {
    transform: rotate(45deg);
    /* Équivalent à rotateZ(45deg) */
    margin-top: 9px;
    transition: all 0.2s;
}

.right_ {
    transform: rotate(-45deg);
    /* Équivalent à rotateZ(45deg) */
    margin-top: 4px;
    transition: all 0.2s;
}

.bottom_ {
    transform: rotate(45deg);
    /* Équivalent à rotateZ(45deg) */
    margin-top: 1px;
    transition: all 0.2s;
}

.star span {
    animation-duration: 0.2s;
    animation-name: shootingStars;
    animation-iteration-count: infinite;
    /*animation-direction: alternate;*/
    margin-right: 5px;
    margin-left: 5px;
}

@keyframes shootingStars {
    from {
        transform: rotate(0deg);
        color: #FFFFFF;
    }
    to {
        transform: rotate(360deg);
        color: #555555;
    }
}