/*--------
    LOGIN
---------*/
.body-login{
    background-color: whitesmoke;
}
::selection{
    background: #ed3238;
    color: #ffffff;
    text-shadow: none;
}
#login{
    width: 24%;
    position: relative;
    height: 600px;
    margin: auto;
    top: 90px;
    background-color: whitesmoke;
    background-position-x: center;
    background-position-y: center;
}
#img_fondo_login{
    position: absolute;
    left: 39px;
    top: 87px;
    width: 230px !important;
    z-index: -1;
    opacity: 0.1;
}
#login #frm-intro{
    width: 70%;
    min-width: 300px;
    max-width: 480px;
    position: absolute;
    top: 15%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    z-index: 5;
}
#frm-intro img{
    display: block;
    margin: auto;
    margin-top: -25px;
    border-radius: 25%;
    width: 135px;
    margin-bottom: 10px;
}
#frm-intro .ip-c{
    width: 40% !important;
    border: 1px solid gray;
    margin: 8px 0px;
    padding: 5px;
}
#frm-intro .oc-l-c{
    display: none;
}
#frm-intro #btn-send-contra{
    border-radius: 4px;
    background: #aa0000;
    color: #fff;
    margin: 0px;
    font-weight: bold;
}
#login label{
    width: 16%;
    display: inline-block;
    text-align: right;
}
#login .input-group-text{
    border: none;
    width: 13%;
    padding: 0.80rem 0.75rem;
    display: inline-block;
    border-bottom: 1px solid #e5e5e5;
    font-size: 1rem;
    line-height: 14px;
    color: #aa0000;
}
#frm-intro input, select{
    background-color: transparent;
    border: none;
    margin-left: -8px;
    border-bottom: 1px solid #e5e5e5;
    max-width: 380px;
    width: 85%;
    display:inline-block;
    font-size: 1rem;
    padding: 0.63rem .75rem;
    line-height: 14px;
    font-weight: 300;
    outline: none;
}
#frm-intro select{
    width: 85% !important;
    font-size: 14px;
}
#login #error{
    width: 100%;
    position: absolute;
    /*outline: 1px solid gray;*/
    text-align: center;
    margin: 0px;
    padding: 5px; 
    transition: all 0.3s;
    left: 0px;
}
#login #btn-ingresar{
    height: 40px;
    font-size: 17px;
    background: #aa0000;
    /*position: relative;*/
    margin-top: 30px;
    margin-right: 0px;
    border-radius: 5px;
    color: white;
    transition: all 0.3s;
}
#login span{
    display: block;
}
#login #btn-ingresar:hover{
    background: #aa0000b0;
    transition: all 0.3s;
}

 /*===================== body ===================== */
.table-info tr td{
    padding: 2px;
}


/*==================== frm delete ====================*/
.cnt-modal, .cnt-mod {
    position: fixed;
    background: rgba(66, 66, 66, 0.78);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.cnt-modal{display:none;}

.modal-delete{
    position: fixed;
    max-width: 450px;
    width: 100%;
    height: 180px;
    box-shadow: black 0px 0px 8px;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 120;
    text-align: center;
    padding: 25px 0px;
    background: white;
    border-radius: 3px;
    margin: auto;
    animation: 1s ease 0s 1 normal none running modaltrend;
}
.modal-delete form {
    padding: 0px; 
    background: transparent; 
    border-radius: 0px; 
    margin-top: 0px; 
    box-shadow: none;
    position: relative; 
    margin: auto; 
    left: 0px; 
    right: 0px; 
    top: 0px; 
    margin-bottom: 0px;
}
.modal-delete h2 {
    font-size: 18px;
    color: gray;
}
.btn-confirm {
    font-size: 15px;
    padding: 14px 25px;
    color: white;
    background: seagreen !important;
    border-radius: 3px;
    margin: 5px 5px;
}
.btn-confirm:hover{
    background: #2e8b57b0 !important;
}
.btn-cancel {
    font-size: 15px;
    padding: 14px 25px;
    color: white;
    background: indianred !important;
    border-radius: 3px;
    margin: 5px 5px;
}
.btn-cancel:hover{
    background: #cd5c5cb0 !important;
}

/* -----------------ATRIBUTOS PARA LOGIN (RESPONSIVE)-------------- */
@media (max-width: 30em){
    /*    ---------------- LOGIN ----------------   */
    #login{
        width: 100%;
        top: 0px;
        border-radius: 0px;
        height: 650px;
    }
    #login #frm-intro{
        top: 25%;
    }
}

@keyframes modaltrend{
	0%{
		opacity: 0;
		transform: scale(1.2);
	}

		100%{
			opacity: 1;
			transform: scale(1);
		}
}

@keyframes bouncetrend{
	0%{
		opacity: 0;
		transform: scale(1.1);
	}

		100%{
			opacity: 1;
			transform: scale(1);
		}
}

@keyframes trend{
	0%{
		opacity: 0;
	}

		100%{
			opacity: 1;
		}
}