


.popup-overlap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: none;
}

.popup{
    position: fixed;
    top: -150%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38%;
    height: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
}

.popup .popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    padding: 5px;
    background-color: rgb(206, 212, 212);
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
}

body.popup-active  .popup{
    top: 50%;
}
body.popup-active .popup-overlap {
    display: block;
}



#pop{
    height: 90%;
    width: 90%;
    /* border: 1px solid red; */
    margin: auto;
   
}

#pop1{
    height: 30%;
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    align-items: flex-start;
   
}
#pop1>h2{
    font-size: 25px;
}

#pop2{
    height: 50%;
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
}
#pop2a{
    height: 40%;
    width: 100%;
    /* border: 1px solid red; */
    margin: auto;
    display: flex;
}
#pop21{
    height: 100%;
    width: 30%;
    border: 1px solid rgb(224, 221, 221);
    margin: auto;
    display: flex;
}
#pop21>div{
    height: 65%;
    width: 35%;
    margin: auto;
}
#pop21>div>img{
    height: 100%;
    width: 100%;
}
#pop21>div>select{
    height: 100%;
    width: 100%;
    font-size: 15px;
    border: 0px;
}






#pop22{
    height: 100%;
    width: 65%;
    /* border: 1px solid red; */
    margin: auto;
}
#pop22>input{
    height: 90%;
    width: 100%;
    font-size: 20px;
}



#pop3{
    height: 20%;
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: center;
}
#pop3>button{
    height: 70%;
    width: 100%;
}
#pop3>button:hover{
    background-color: #10A310;
    color: white;
    border: 0px;
}





























/* 


*{
    margin: 0px;
    padding: 0px;
    text-decoration: none;

}

#sidebar{
    position: fixed;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: aqua;
}
#sidebar header{
    font-size: 20px;
    color: white;
}
#sidebar ul a{
    display: block;
    height: 100%;
    width: 100%;
    line-height: 60px;
    font-size: 20px;
    padding-left: 20px;
    color: red;
} */
