/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root{
    /* ===== Colors ===== */
    --body-color: #E4E9F7;
    --sidebar-color: #FFF;
    --primary-color: #ff3c3c;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #707070;

    /* ====== Transition ====== */
    --tran-03: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
}

body{
    min-height: 100vh;
    background-color: var(--body-color);
    transition: var(--tran-05);
}

::selection{
    background-color: var(--primary-color);
    color: #fff;
}

body.dark{
    --body-color: #18191a;
    --sidebar-color: #242526;
    --primary-color: #3a3b3c;
    --primary-color-light: #3a3b3c;
    --toggle-color: #fff;
    --text-color: #ccc;
}

/* ===== Sidebar ===== */
 .sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    padding: 10px 14px;
    background: var(--sidebar-color);
    transition: var(--tran-05);
    z-index: 100;  
}
.sidebar.close{
    width: 88px;
}

/* ===== Reusable code - Here ===== */
.sidebar li{
    height: 50px;
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.sidebar header .image,
.sidebar .icon{
    min-width: 60px;
    border-radius: 6px;
}

.sidebar .icon{
    min-width: 60px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sidebar .text,
.sidebar .icon{
    color: var(--text-color);
    transition: var(--tran-03);
}

.sidebar .text{
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
}
.sidebar.close .text{
    opacity: 0;
}
/* =========================== */

.sidebar header{
    position: relative;
}

.sidebar header .image-text{
    display: flex;
    align-items: center;
}
.sidebar header .logo-text{
    display: flex;
    flex-direction: column;
}
header .image-text .name {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
}

header .image-text .profession{
    font-size: 16px;
    margin-top: -2px;
    display: block;
}

.sidebar header .image{
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar header .image img{
    width: 40px;
    border-radius: 6px;
}

.sidebar header .toggle{
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(180deg);
    height: 25px;
    width: 25px;
    background-color: #f70032;
    color: var(--sidebar-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--tran-05);
}

body.dark .sidebar header .toggle{
    color: var(--text-color);
}

.sidebar.close .toggle{
    transform: translateY(-50%) rotate(0deg);
}

.sidebar .menu{
    margin-top: 40px;
}

.sidebar li.search-box{
    border-radius: 6px;
    background-color: var(--primary-color-light);
    cursor: pointer;
    transition: var(--tran-05);
}

.sidebar li.search-box input{
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--primary-color-light);
    color: var(--text-color);
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    transition: var(--tran-05);
}
.sidebar li a{
    list-style: none;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--tran-03);
}

.sidebar li a:hover{
    background-color: var(--primary-color);
}
.sidebar li a:hover .icon,
.sidebar li a:hover .text{
    color: var(--sidebar-color);
}
body.dark .sidebar li a:hover .icon,
body.dark .sidebar li a:hover .text{
    color: var(--text-color);
}

.sidebar .menu-bar{
    height: calc(100% - 55px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
}
.menu-bar::-webkit-scrollbar{
    display: none;
}
.sidebar .menu-bar .mode{
    border-radius: 6px;
    background-color: var(--primary-color-light);
    position: relative;
    transition: var(--tran-05);
}

.menu-bar .mode .sun-moon{
    height: 50px;
    width: 60px;
}

.mode .sun-moon i{
    position: absolute;
}
.mode .sun-moon i.sun{
    opacity: 0;
}
body.dark .mode .sun-moon i.sun{
    opacity: 1;
}
body.dark .mode .sun-moon i.moon{
    opacity: 0;
}

.menu-bar .bottom-content .toggle-switch{
    position: absolute;
    right: 0;
    height: 100%;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
}
.toggle-switch .switch{
    position: relative;
    height: 22px;
    width: 40px;
    border-radius: 25px;
    background-color: var(--toggle-color);
    transition: var(--tran-05);
}

.switch::before{
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background-color: var(--sidebar-color);
    transition: var(--tran-04);
}

body.dark .switch::before{
    left: 20px;
}

.home{
    position: absolute;
    top: 0;
    top: 0;
    left: 250px;
    height: 100vh;
    padding:20px;
    width: calc(100% - 250px);
    background-color: var(--body-color);
    transition: var(--tran-05);
}
.home .text{
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    padding: 12px 60px;
}

.sidebar.close ~ .home{
    left: 78px;
    height: 100vh;
    width: calc(100% - 78px);
}
body.dark .home .text{
    color: var(--text-color);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

th, td {
  text-align: left;
  padding: 8px;
}

.FilaCabecera {
    color: white;
    font-weight: normal;
    font-size: 13px;
    background: red;
    /* background-image: linear-gradient(rgb(0,1,118) 0%, rgb(0,1,118) 44%, rgb(0,1,118) 100%);*/
}
tbody{
    background: #ffff;
}
#solicitudbtnLimpiarFiltros{
    display: none;
}
.panel-body{
    background: white;
    padding: 10px;
   overflow: auto;
}
.col-50{
    width: 50%;
    float:left;
    padding:5px;
}
.col-100{
    width: 100%;
    float:left;
    padding:5px;
    text-align: center;
}
.form-control{
    width: 100%;
    padding:3px;
}
.button-red {
  background-color: #f70032; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
}
.button-blue {
  background-color: #07a; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
}
.Pagina {
    margin: 2px;
    width: 40px;
    height: 30px;
    cursor: pointer;
    -ms-border-radius: 5%;
    border-radius: 5%;
    color: white;
    font-weight: normal;
    font-size: 14px;
    background-image: linear-gradient(rgb(1,29, 58) 0%, rgb(0,26, 54) 44%, rgb(68,124, 183) 100%);
}
.PaginaSeleccionada {
    width: 40px;
    height: 30px;
    cursor: pointer;
    -ms-border-radius: 5%;
    border-radius: 5%;
    font-weight: normal;
    font-size: 14px;
    color: rgb(97, 4, 86);
    background: white;
}
.grupo {
    text-align: justify;
}
.select {
    width: 50px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.Centro{
   text-align: center;
}
.Icono {
    cursor: pointer;
}
.col8{
        flex: 433vw;

 padding-bottom:500px; 
 max-width:100%; 
 background-repeat: no-repeat;
 background-size: 100% 100%;
}
.row1{
    display: flex;
    background: white;
}
.row{
    margin-right: 0px !important;
}
h3 {
    font-size: 2rem;
}
    tr.FilaDatos.solicitud {
        background: white;
    border: outset;
}
.col-md-12 .btn {
    height: 33px;
    width: 83px;
    border-radius: 13px;
    margin-top: 9px;
    background: #fb3a3a8c;
}
    .panel-body .form-control {
    border-color: white;
    border-radius: 8px;
    width: 100%;
    padding: 3px;
}
    .panel-body .form-group {
    bottom: 0px;
}
    .panel-body {
    height: 38rem !important;
    background: #e4e9f7;
    padding: 10px;
    overflow: auto;
}
@media screen and (max-width:480px){
/*    .panel-body .form-control {
    border-color: white;
    border-radius: 8px;
    width: 100%;
    padding: 3px;
}
    .panel-body .form-group {
    bottom: 0px;
}
    .panel-body {
    height: 38rem !important;
    background: #e4e9f7;
    padding: 10px;
    overflow: auto;
}*/
    
    
    .Icono {
    padding-left: 30px;
    
}
    th:nth-child(3) {
    display: none;
}
th:nth-child(4) {
    width: 95px !important;
}
th:nth-child(5) {
    width: 144px !important;
    
}
th:nth-child(6) {
    display: none;
}
th:nth-child(8) {
    margin-left: 26px;
}
    th:nth-child(2) {
    display: none;
}
    th:nth-child(1) {
    display: none;
}
    .FilaCabecera {
    display: flex;
            }
  /*  tr.FilaDatos.solicitud {
    row-gap: 0px;
    background: white;
    border: outset;
    /* border-color: #ff3c3c; */
    /* border-radius: 21px; */
   /* grid-template-columns: 29vw 23vw;
    display: grid;
    grid-template-areas:
        "a1 a1 a3"
        "b b1 b2";
}*/
tr.FilaDatos.solicitud {
        row-gap: 0px;
        background: white;
        border: outset;
        /* border-color: #ff3c3c; */
        /* border-radius: 21px; */
        grid-template-columns: 33vw 15vw 13vw 18vw;
        display: grid;
        grid-template-areas:
        "a1 a1 a3 a4"
        "b b1 b2 b2"
        "c c c c";
    }
td:nth-child(1) {
    display: none;
    /* background: aqua; */
}
td:nth-child(2) {
    text-align: center;
    grid-area: b;
}
td:nth-child(3) {
    grid-area: b1;
}
td:nth-child(4) {
    text-align:center;
    grid-area: c;
}
td:nth-child(5) {
    text-align:center;
    grid-area: a1;
}
td:nth-child(6) {
    grid-area: b2;
    /*text-align: end;*/
}
    
    
    .jumbotron-default div h1 {
    display: none;
}
.titulo{
height: 6rem;
    margin-top: -147px;
    /* display: none; */
    text-align: center;
    color: white!important;
    font-weight: bold;
    /* margin-bottom: 56px; */
     background-color: red;
}

#frmAcceso {
    height: 37rem;
}
.col4 div img {
    left: 111px;
    z-index: 1;
    position: relative;
    top: 157px;
    height: 86px!important;
}
.form-group {
    bottom: -50px;
    position: relative;
    /* z-index: 3; */
    margin-bottom: 0px;
}
.grupo {
    bottom: -58px;
    position: relative;
    z-index: 4;
    text-align: justify;
}

.boton{
  top: 57px;
    position: relative;
    /* z-index: 4; */
    text-align: center;
}
.sidebar.close ~ .home {
    left: 56px;
}
.sidebar.close {
    width: 67px;
}
.sidebar header .image img {
    margin-left: -28px;
}
/*
.btn{
  padding: 15px 100px;
  margin:10px 4px;
  color: #fff;
  font-family: sans-serif;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  text-decoration: none;
  display:inline-block;
  
}

.btn{
    top: 40px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase!important;
    letter-spacing: 2px;
    color: #fff;
    cursor: hand;
    text-align: center;
    text-transform: capitalize;
    border: 1px solid #fff;
    border-radius:50px;
    position: relative;
    overflow: hidden!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: transparent!important;
    z-index:10;
    
}


.btn:hover{
    border: 1px solid #071982;
    color: #80ffd3!important;
}
.btn::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #071982;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg); 
    transform: skewX(-20deg);   
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
     box-shadow:2px 0px 14px rgba(0,0,0,.6);
  } 

.btn::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #80ffd3;
    position: absolute;
  -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg); 
    transform: skewX(-20deg);   
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2,.95,.57,.99);
    -moz-transition: all .4s cubic-bezier(.2,.95,.57,.99);
    -o-transition: all .4s cubic-bezier(.2,.95,.57,.99);
    transition: all .4s cubic-bezier(.2,.95,.57,.99);
    box-shadow: 2px 0px 14px rgba(0,0,0,.6);
}
.btn:hover::before, .btn1O:hover::before{
  opacity:1;
  width: 116%;
}
.btn:hover::after, .btn1O:hover::after{
  opacity:1;
  width: 120%;
}*/

}
@media only screen and (max-width: 500px) {
    .col-50{
     width: 100%;
    }
}
@media screen and (max-width: 1200px) {
    td:nth-child(3) {
    text-align: center;
}
    
    .col8 {
     display:none !important;
    }
    .row1{
        grid-template-areas: "a1";
        grid-template-columns: 0vw 0vw;
        margin-right: 0px;
        margin-left:0px;
    }
}

