/* MODAL LOADING */
.modal-general{
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999999;
    background-color: rgba(35, 40, 45, .4);
	display: none;
}

.img-load{
    width: 80px;
    display: block;
    margin: 20% auto;
}

/* MODAL MODIFICAR */

.modal-window{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display:none;
    z-index: -1;
    background-color: rgba(35, 40, 45, .4);
    position: fixed;
    opacity:0;
    transition: all .45s;
    -webkit-transition: all .45s;
}

.modal-window:target {
    opacity:1;
    z-index: 99999;
    display: block;
}

.modal-content{
    background: white;
    padding: 17px;
    border-radius: 14px;
    border: 5px solid #007D7F;
    margin: 65px auto;
    width: 90%;
    max-width: 980px;
}

.modal-content > a{
    position: absolute;
    top: -30px;
    right: -20px;
}

.modal-form{
    overflow: auto;
    padding-right: 15px;
}

/* ESTILO SCROLL */
.modal-form::-webkit-scrollbar {
    width: 8px;
}

.modal-form::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
}

.modal-form::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
/* END ESTILO SCROLL */


/* MODAL ALERTS */

#modal-message{
	width: 320px;
	padding: 10px;
	border-radius: 10px;
    text-align: center;
    margin: 20% auto;
	color: white;
	background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}

.modal-success{
	background-color: #5cb85c;
}

.modal-error{
	background-color: #d9534f;
}

@media screen and (max-width: 765px)  {
    .img-load{
  		margin-top : 40vh;
  	}
	#modal-message{
		margin-top: 42vh;
	}
    .modal-content{
        width: 90%;
    }
    .modal-form{
        max-height: 350px;
    }
}


/* ESTILOS DEL POPUP DE NOTIFICACION ELIMINAR*/

.boxNotificacion{
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: 300;
 }
 .boxNotificacion:target {
	opacity:1;
	pointer-events: auto;
}
.conteinerNotification{
  width: 380px;
  min-height: 170px;
  margin: 20% auto;
  border-radius: 5px;
  background: rgba(0,0,0,0.70);
  border: 1px solid rgba(0,0,0,0.2);
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.5), 0 2px 2px rgba(0,0,0,0.1);
}
.boxNotificacion p {
  font-size: 13px;
  margin: 0;
  padding: 0;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,1);
  border-bottom: 1px solid rgba(0,0,0,0.3);
  box-shadow: 0 1px 1px rgba(255,255,255,0.2);
  letter-spacing: 1px;
}
.boxNotificacion .inner {
  border-radius: 5px;
  background: linear-gradient(top,  rgba(239,239,239,0.1) 0%,rgba(0,0,0,0.3) 100%);
  box-shadow: inset 0 8px 10px rgba(255,255,255,0.1), inset 0 1px 2px rgba(255,255,255,0.3),inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(255,255,255,0.1);
}

.boxNotificacion .btn {
	margin-top: 20px;
	width: 80px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,0.7);
	box-shadow: inset 0 4px 6px rgba(255,255,255,0.3),
	inset 0 0 2px rgba(255,255,255,0.3), 0 2px 2px rgba(0,0,0,0.15);
	-webkit-transition: all 0.3s ease;
}

.boxNotificacion .btn-accept {
background-color: rgb(100,142,49);
background-image: -moz-linear-gradient(top,  rgba(100,142,49,1) 0%, rgba(57,93,15,1) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(100,142,49,1)), color-stop(100%,rgba(57,93,15,1)));
background-image: -webkit-linear-gradient(top,  rgba(100,142,49,1) 0%,rgba(57,93,15,1) 100%);
background-image: -o-linear-gradient(top,  rgba(100,142,49,1) 0%,rgba(57,93,15,1) 100%);
background-image: -ms-linear-gradient(top,  rgba(100,142,49,1) 0%,rgba(57,93,15,1) 100%);
background-image: linear-gradient(to bottom,  rgba(100,142,49,1) 0%,rgba(57,93,15,1) 100%);
margin-right: 10px;
}
.boxNotificacion .btn-accept:hover { background: rgba(100,142,49,1); }
.boxNotificacion .btn-accept:active { background: rgba(57,93,15,1); box-shadow: inset 0 0 3px rgba(0,0,0,0.5); }
.boxNotificacion .btn-decline {
background-color: rgb(203,90,90);
background-image: -moz-linear-gradient(top,  rgba(203,90,90,1) 0%, rgba(141,62,62,1) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(203,90,90,1)), color-stop(100%,rgba(141,62,62,1)));
background-image: -webkit-linear-gradient(top,  rgba(203,90,90,1) 0%,rgba(141,62,62,1) 100%);
background-image: -o-linear-gradient(top,  rgba(203,90,90,1) 0%,rgba(141,62,62,1) 100%);
background-image: -ms-linear-gradient(top,  rgba(203,90,90,1) 0%,rgba(141,62,62,1) 100%);
background-image: linear-gradient(to bottom,  rgba(203,90,90,1) 0%,rgba(141,62,62,1) 100%);
margin-left: 10px;
}
.boxNotificacion .btn-decline:hover { background: rgba(203,90,90,1); }
.boxNotificacion .btn-decline:active { background: rgba(141,62,62,1); box-shadow: inset 0 0 3px rgba(0,0,0,0.5); }


.boxNotificacion .icon { background: url(../images/notification_icons.png) no-repeat; display: inline-block; margin-top: 5px; }
.boxNotificacion .icon-arrow { width:  19px; height: 15px; background-position: 0 0; }
.boxNotificacion .icon-x { width: 15px; height: 15px; background-position: -19px 0; }

@media screen and (max-width: 420px)  {
    .conteinerNotification{
      width: 300px;
    }

    .boxNotificacion p {
      font-size: 11px;
    }
}
