﻿.Encabezado {
    text-align:center;
    font-size:x-large;
    font-family:Montserrat;
    color:#930000
}

.MsgError {
    text-align:center;
    font-size:medium;
    font-family:Montserrat;
    border:solid 1px #830101;
    background-color:#ffb4b4;
    width:90%;
    margin-left:5%;
    margin-right:5%;
    display:block;
    border-radius:5px;
    padding:8px
}

.MsgAdvertencia {
    text-align:center;
    font-size:medium;
    font-family:Montserrat;
    border:solid 1px #ffb403;
    background-color:#ffdf94;
    width:90%;
    margin-left:5%;
    margin-right:5%;
    display:block;
    border-radius:5px;
    padding:8px
}

.MensajeVerde {
    text-align:justify;
    font-family:Montserrat;
    font-size:medium;
    padding:10px;
    width:90%;
    margin-left:5%;
    margin-right:5%;
    border:solid 1px #14451a;
    border-radius:5px;
    background-color:#d7f5db
}

.MensajeCafe {
    text-align:justify;
    font-family:Montserrat;
    font-size:medium;
    padding:10px;
    width:90%;
    margin-left:5%;
    margin-right:5%;
    border:solid 1px #A57F2C;
    border-radius:5px;
    background-color:#fcebc4
}

.MensajeDocumentos {
    font-family:Montserrat;
    border: 1px solid; 
    background-color: #eae7e7; 
    border-radius: 5px; 
    border-color: #b6b6b6; 
    padding: 10px; 
    text-align: center; 
    margin-top: 40px; 
    margin-bottom: 40px; 
    padding: 15px; 
    color: #565656; 
    font-size: medium;
}

.Notificaciones {
    font-family:Montserrat;
    border: 1px solid; 
    background-color: #eae7e7; 
    border-radius: 3px; 
    border-color: #b6b6b6; 
    color: #565656; 
    font-size: small;
    text-align:justify;
    box-shadow:3px 3px 3px gray;
    width:92%;
    padding:3%;
}

.CajaTexo {
    border: 1px solid #808080;
    background-color:#efefef;
}

.BotonAceptar {
   font-family:Montserrat;
    font-size:medium;
    padding:10px;
    width:98%;
    border:solid 1px #A57F2C;
    border-radius:5px;
    background-color:#A57F2C;
    color:white;
    height:40px;
    width:130px
}

.BotonEliminar {
   font-family:Montserrat;
    font-size:medium;
    padding:10px;
    width:98%;
    border:solid 1px #830101;
    border-radius:5px;
    background-color:#830101;
    color:white;
    height:40px;
    width:130px
}

.BotonBuscar {
   font-family:Montserrat;
    font-size:medium;
    padding:10px;
    width:98%;
    border:solid 1px #007db5;
    border-radius:5px;
    background-color:#007db5;
    color:white;
    height:40px;
    width:130px
}

.DatosUsuario {
    font-family:Montserrat;
    font-size:small;
    text-align:right;
    font-weight:bold
}

h2 {
    font-family:Montserrat;
    color:#830101;
    font-size:large;
    font-weight:bold;
    text-shadow: 0px 0px 8px gray;
}

fieldset {
    font-family:Montserrat;
    font-size:medium;
}

#carrusel {
    float:left;
    width:65%;
    overflow:hidden;
    height:300px;
    position:relative;
    margin-top:20px;
    margin-bottom:20px;
    margin-left:17.5%;
    margin-right:17.5%;
}
 
/*Carrusel*/
#carrusel .left-arrow {
    position:absolute;
    left:10px;
    z-index:1;
    top:50%;
    margin-top:-9px;
}
 
#carrusel .right-arrow {
    position:absolute;
    right:10px;
    z-index:1;
    top:50%;
    margin-top:-9px;
}
 
.carrusel {
    width:4000px;
    left:0px;
    position:absolute;
    z-index:0;
}
 
.carrusel>div {
    float: left;
    height: 300px;
    margin-right: 5px;
    width: 300px;
    text-align:center;
}
 
.product {
    border:#CCCCCC 1px solid;
}

/*Tab*/
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  /*border: 1px solid #ccc;
  border-top: none;*/
}

/*Ventana MODAL*/
.modalWindow {
        position: fixed;
        font-family: arial;
        font-size:80%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.2);
        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;
    }
    .modalHeader h2 { color: #189CDA; border-bottom: 2px groove #efefef; }
    .modalWindow:target {
        opacity:1;
        pointer-events: auto;
    }
    .modalWindow > div {
        width: 650px;
        position: relative;
        margin: 10% auto;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        background: #fff;
    }
    .modalWindow .modalHeader  {    padding: 5px 20px 0px 20px; }
    .modalWindow .modalContent {    padding: 0px 20px 5px 20px; }
    .modalWindow .modalFooter  {    padding: 8px 20px 8px 20px; }
    .modalFooter {
        background: #F1F1F1;
        border-top: 1px solid #999;
        -moz-box-shadow: inset 0px 13px 12px -14px #888;
        -webkit-box-shadow: inset 0px 13px 12px -14px #888;
        box-shadow: inset 0px 13px 12px -14px #888;
    }
    .modalFooter p {
        color:#D4482D;
        text-align:right;
        margin:0;
        padding: 5px;
    }
    .ok, .close, .cancel {
        background: #606061;
        color: #FFFFFF;
        line-height: 25px;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        -moz-box-shadow: 1px 1px 3px #000;
        -webkit-box-shadow: 1px 1px 3px #000;
        box-shadow: 1px 1px 3px #000;
    }
    .close {
        position: absolute;
        right: 5px;
        top: 5px;
        width: 22px;
        height: 22px;
        font-size: 10px;
 
    }
    .ok, .cancel {
        width:80px;
        float:right;
        margin-left:20px;
    }
    .ok:hover { background: #189CDA; }
    .close:hover, .cancel:hover { background: #D4482D; }
    .clear { float:none; clear: both; }
