/* popup */
.popup{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.pp-std{ /*popup standard*/
    background-color: rgba(0,0,0,0.6);
}

/* popup content */
.pp-content{    
    padding: 7px 7px;   
    background-color: white;
    position: relative;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
    font-size: 14px;
    overflow: auto;
    margin: auto;
}

/* popup width */
.ppw-350{
    width: 350px;
}

.ppw-xs{
    width: 350px;
}

.ppw-s{
    width: 400px;
}

.ppw-m{
    width: 450px;
}

.ppw-l{
    width: 500px;
}

.ppw-xl{
    width: 550px;
}

/* popup height */
.pph-xs{
    height: 150px;
}

.pph-s{
    max-height: 500px;
}

.pph-300{
    height: 300px;
    max-height: 300px;
}

.pph-600{
    height: 600px;
    max-height: 600px;
}

.pph-630{
    height: 630px;
    max-height: 630px;
}

.pph-650{
    height: 650px;
    max-height: 650px;
}

.pph-m{
    height: 600px;
    max-height: 600px;
}

/* popup top */
.ppt-7{
    top: 7%;
}

.ppt-xxs{
    top: 7%;
}

.ppt-xs{
    top: 8%;
}

.ppt-s{
    top: 17%;
}

.ppt-m{
    top: 25%;
}

.ppt-l{
    top: 40%;
}

/* popups titles and texts */
.pp-title{
    font-weight: bold;
    text-align: center;
}

.pp-text{
    text-align: center;
}

/* popups titles and texts sizes*/
.pp-tt-14{
    font-size: 14px;
}
.pp-tt-15{
    font-size: 15px;
}
.pp-tt-16{
    font-size: 16px;
}
.pp-tt-17{
    font-size: 17px;
}

.pp-tt-s{
    font-size: 15px;
}

.pp-tt-m{
    font-size: 17px;
}

.pp-tt-20{
    font-size: 20px;
}

.pp-tt-l{
    font-size: 20px;
}

/* div popup close */
.pp-close{
    width: 100%;
    color: black;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
}

/* div popup close icon*/
.pp-close-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: black;
    color: white;
}

.pp-close-icon:hover{
    background-color:var(--color4);
}

/* div popup close icon sizes*/
.ppc-s{
    font-size: 20px;
}