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

.popupContent{    
    padding: 5px 7px;    
    border-radius: 5px;
    background-color: white;
    position: relative;
    border: var(--color1) solid 3px;
    font-size: 14px;
    overflow: auto;
    margin: auto;
}

/*---------SIZES---------*/
.popupWmHl{ /*width M height L*/
    top: 13%;
    width: 600px;
    max-height: 500px;
    overflow-y: auto;
}

.popupWlHl{ /*width L height L*/
    top: 13%;
    width: 700px;
    max-height: 500px;
    overflow-y: auto;
}

/*---------CLOSE ICON---------*/
.popupClose{
    width: 100%;
    text-align: right;
    font-size: 25px;
    color: var(--color1);
}

.popupCloseM{
    font-size: 18px;
}

.popuppTitleS{
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}