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

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

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

.ppIcons{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*ICONS*/
.ppIcon1{
    font-size: 18px;
    color: var(--color1);
}

.ppIcon2{
    font-size: 23px;
    color: var(--color1);
}

.ppIcon3{
    font-size: 26px;
    color: var(--color1);
}

/*CLOSE*/
.ppClose1{
    font-size: 20px;
    cursor: pointer;
    color: var(--color1);
}

.ppClose2{
    font-size: 23px;
    cursor: pointer;
    color: var(--color1);
}

.ppClose3{
    font-size: 26px;
    cursor: pointer;
    color: var(--color1);
}

.ppCloseIcon:hover{
    color: var(--color3);
}

/*TITLES AND TEXTS*/
.ppTitleS{
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.ppTitleM{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.ppText{
    font-size: 14px;
    text-align: center;
    line-height: 1.8;
}

.coppQuestion{
    text-align: center;
    font-size: 16px;

}



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

.okContent{    
    padding: 5px 7px;    
    border-radius: 5px;
    position: relative;
    border: green solid 3px;
    background-color: rgb(173, 204, 173);
    font-size: 16px;
    padding: 15px 30px;
    color: green;
    top: 40%;
    left: calc(50vw - 150px);
}

.okDiv{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.okIcon1{
    font-size: 25px;
}

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

.errorContent{    
    padding: 5px 7px;    
    border-radius: 5px;
    position: relative;
    border: var(--errorColor) solid 3px;
    background-color:rgb(228, 156, 156);
    font-size: 16px;
    padding: 15px 30px;
    color: var(--errorColor);
}

.errorDiv{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.errorIcon1{
    font-size: 25px;
}



/*----------POPUPS CONTENTS SIZES AND POSITIONS----------*/
.ppContentHmWm{ /*height medium with medium*/
    top: 20%;
    width: 400px;
    max-height: 500px;
    overflow-y: auto;
    left: calc(50vw - 210px);
}

.ppContentHmWl{ /*height medium with large*/
    top: 20%;
    width: 500px;
    max-height: 500px;
    overflow-y: auto;
    left: calc(50vw - 260px);
}

.ppContentHmWl{ /*height medium with xlarge*/
    top: 20%;
    width: 550px;
    max-height: 500px;
    overflow-y: auto;
    left: calc(50vw - 260px);
}

/*----------OK POPUPS SIZES AND POSITIONS----------*/
.okContentWmTm{ /*width medium top medium*/
    width: 300px;
    top: 40%;
    left: calc(50vw - 183px);
}


