/* 
    Archivo CSS - Portfriendly
*/

html, body{
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
}

.image-full{
    background-position: center;
    background-repeat: no-repeat; 
    background-size: cover;
}

.text-shadow{
    color: white;
    text-shadow: 2px 2px 4px #000000;
}
  
.main{
    padding-top: 100px;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .btn, .btn-group {
        width:100%;
    }
}

a.menu-link:link, a.menu-link:visited{    
    text-decoration: none; 
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

a.enlace{
    text-decoration: none;
    cursor: pointer;
}

p{
    font-size: 14px;
}

.card-body{
    font-size: 14px;
}

.card-img-top {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Inicio Ribbon */
.ribbon {
    position: absolute;
    right: -5px; top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px; height: 75px; 
    text-align: right;
 }
 .ribbon span {
    font-size: 10px;
    color: #fff; 
    text-transform: uppercase; 
    text-align: center;
    font-weight: bold; line-height: 20px;
    transform: rotate(45deg);
    width: 100px; display: block;
    background: #79A70A;
    background: linear-gradient(#9BC90D 0%, #79A70A 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px; right: -21px;
 }
 .ribbon span::before {
    content: '';
    position: absolute; 
    left: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid #79A70A;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #79A70A;
 }
 .ribbon span::after {
    content: '';
    position: absolute; 
    right: 0%; top: 100%;
    z-index: -1;
    border-right: 3px solid #79A70A;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #79A70A;
 }
 .red span {background: linear-gradient(#F70505 0%, #8F0808 100%);}
 .red span::before {border-left-color: #8F0808; border-top-color: #8F0808;}
 .red span::after {border-right-color: #8F0808; border-top-color: #8F0808;}
 
 .blue span {background: linear-gradient(#2989d8 0%, #1e5799 100%);}
 .blue span::before {border-left-color: #1e5799; border-top-color: #1e5799;}
 .blue span::after {border-right-color: #1e5799; border-top-color: #1e5799;}

 /*  Fin Ribbon */

 .datepicker{
     font-size: 12px;
     border-radius: 0px;
 }

 .table-condensed, .datepicker-days, .datepicker, .datepicker-inline{
     width: 100%;
 }

 /* Spinner Loading */
#loading {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: block; 
    background: #111;
    opacity: .75;
    z-index: 999
  }
  
  #loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
    z-index: 998
  } 

  .table td{
      vertical-align: middle;
  }
/*
.custom-control-label::before{
    width:25px !important; 
    height:16px !important;
}
.custom-control-label::after{
    width:12px !important; 
    height:13px !important;
}
*/

/* Para los Imput Materialize */
.custom-file-control, .form-control, .is-focused .custom-file-control, .is-focused .form-control {
    background-image: linear-gradient(0deg,#e17774 2px,rgba(0,150,136,0) 0),linear-gradient(0deg,rgba(0,0,0,.26) 1px,transparent 0) !important;
}

.color-rojo{
    /*color: #e17774;*/
    color: #DB3445;
}

.color-azul{
    /*color: #5494da;*/
    color: #3498DB;
}

.multilinea {
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */ 
    width: 100%;   
   }