.runtec_popups {

}

.runtec_popups .cover{
	height: 100%;
    width: 100%;
    background: #000;
    position: fixed;
    top: 0;
    z-index: 50;
    opacity: 0.5;
    display: none;
}

.runtec_popups.active .cover{
    display: block;
}

.runtec_popups .content{
	position: fixed;
    z-index: 55;
    top: 10%;
    width: 100%;
	display: none;
}

.runtec_popups.active .content{
	display: block;
}

.runtec_popups .close_popup {
    cursor: pointer;
}

.runtec_popups button {
    cursor: pointer;
}

.runtec_popups label {
    cursor: pointer;
}

.runtec_popups .show_password {
    cursor: pointer;
    width: 30px;
    height: 30px;
    top: 40px;
}

.runtec_popups .content .main{
    width: 500px;
}

@media (max-width: 768px) {


.runtec_popups .content{
    top: 5%;
}
.runtec_popups .content .main{
    width: 100%;
    overflow: auto;
    max-height: 600px;
}
.runtec_popups .show_password {
    top: 35px;
}

}