::-webkit-scrollbar {
                                  width: 8px;
                                }
                                /* Track */
                                ::-webkit-scrollbar-track {
                                  background: #f1f1f1; 
                                }
                                 
                                /* Handle */
                                ::-webkit-scrollbar-thumb {
                                  background: #888; 
                                }
                                
                                /* Handle on hover */
                                ::-webkit-scrollbar-thumb:hover {
                                  background: #555; 
                                } /* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ecf0f3;
}

.wrapper {
    max-width: 350px;
    min-height: 500px;
    margin: 80px auto;
    padding: 40px 30px 30px 30px;
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.wrapperform {
    max-width: 756px;
    min-height: 500px;
    margin: 80px auto;
    padding: 40px 30px 30px 30px;
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}
.wrapperform-lg {
    /*max-width: 756px;*/
    max-width: 1000px;
    min-height: 500px;
    margin: 80px auto;
    padding: 40px 30px 30px 30px;
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.logo {
    width: 80px;
    margin: auto; 
}

.logo img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #5f5f5f,
        0px 0px 0px 5px #ecf0f3,
        8px 8px 15px #a7aaa7,
        -8px -8px 15px #fff;
}

.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1.2rem;
    color: #666;
    padding: 10px 15px 10px 10px;
    /* border: 1px solid red; */
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

.wrapper .form-field .fas {
    color: #555;
}

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #203D90;
    color: #fff;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #b1b1b1,
        -3px -3px 3px #fff;
    letter-spacing: 1.3px;
}

.wrapper .btn:hover {
    background-color: #001862;
}

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #03A9F4;
}

.wrapper a:hover {
    color: #039BE5;
}

@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}

/**Formularios**/

.btn-custom{
	color: #fff;
    background-color: #203D90;
    border-color: #203D90;
}

.btn-custom:hover{
	color: #fff;
    background-color: #001862;
    border-color: #001862;
}

.btnadd{
		background-image: url('../img/add.png'); 
		background-repeat:no-repeat;
        height:35px;
        width:35px;
        background-size: 35px 35px;
        background-position:center;
		border:none;
		cursor: pointer;
}

.btndelete{
		background-image: url('../img/delete.png'); 
		background-repeat:no-repeat;
        height:35px;
        width:35px;
        background-size: 35px 35px;
        background-position:center;
		border:none;
		cursor: pointer;
}


/*Textos*/
.hds{
	font-size:18px;
	color:#fff; 
	background-color:#203D90;
}


/*Table*/
.tableadd, tr, td{
 border:none;
 border-collapse: separate;
 border-spacing: 10px 5px;
}



/*Sidebar Menu*/
*{
    margin: 0;
    padding: 0;
    user-select: none;
    box-sizing: border-box;
  }
  .btnMenu{
    position: absolute;
    top: 69px;
    left: 45px;
    height: 45px;
    width: 45px;
    text-align: center;
    /* background: #1b1b1b; */
    background-image: linear-gradient(to right top, #203d90, #203d90, #203d90, #203d90, #203d90);
    border-radius: 3px;
    cursor: pointer;
    transition: left 0.4s ease;
  }
  .btnMenu.click{
    left: 260px;
  }
  .btnMenu span{
    color: white;
    font-size: 28px;
    line-height: 45px;
  }
  .btnMenu.click span:before{
    content: '\f00d';
  }
  .sidebar{
    position: fixed;
    width: 250px;
    height: 100%;
    left: -250px;
    background-image: linear-gradient(to right top, #203d90, #203d90, #203d90, #203d90, #203d90);
    transition: left 0.4s ease;
    margin-top:-82px;
  }
  .sidebar.show{
    left: 0px;
  }
  .sidebar .text{
    color: white;
    font-size: 25px;
    font-weight: 600;
    line-height: 65px;
    text-align: center;
    /* background: #1e1e1e; */
    background-image: linear-gradient(to right top, #203d90, #203d90, #203d90, #203d90, #203d90);
    letter-spacing: 1px;
  }
  nav ul{
    /* background: #1b1b1b; */
    background-image: linear-gradient(to right top, #203d90, #203d90, #203d90, #203d90, #203d90);
    height: 100%;
    width: 100%;
    list-style: none;
  }
  nav ul li{
    line-height: 55px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  nav ul li:last-child{
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  nav ul li a{
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding-left: 40px;
    font-weight: 500;
    display: block;
    width: 100%;
    border-left: 3px solid transparent;
  }
  /* nav ul li.active a{
    color: cyan;
    background: #1e1e1e;
    border-left-color: cyan; 
  } */
   nav ul li a:hover{
    /* background: #1e1e1e; */
    background-color:#fff;
    opacity:0.8; 
    text-decoration: none;
  } 
  nav ul ul{
    position: static;
    display: none;
  }
  nav ul .feat-show.show{
    display: block;
  }
  nav ul .feat-show1.show1{
    display: block;
  }
  nav ul .feat-show2.show2{
    display: block;
  }
  nav ul .feat-show3.show3{
    display: block;
  }
  nav ul .feat-show4.show4{
    display: block;
  }
  nav ul .feat-show5.show5{
    display: block;
  }  

  nav ul ul li{
    line-height: 42px;
    border-top: none;
  }
  nav ul ul li a{
    font-size: 17px;
    color: #e6e6e6;
    padding-left: 60px;
  }
   /*nav ul li.active ul li a{
    color: #e6e6e6;
    background-color:#fff;
    opacity:0.8;
    border-left-color: transparent;
  } 
  nav ul ul li a:hover{
    color: cyan!important;
    background: #1e1e1e!important;
  } */
  nav ul li a span{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 22px;
    transition: transform 0.4s;
  }
  nav ul li a span.rotate{
    transform: translateY(-50%) rotate(-180deg);
  } 

  /* ----------- Media querys ----------- */

/* ----------- Laptops-Non-Retina Screens ----------- */
/* For 1024 Resolution */  
@media only screen   
and (min-device-width : 768px)   
and (max-device-width : 1024px)  
{
  
  .sidebar{
  position: fixed; 
  width: 150px;
  height: 100%;
  left: -149px;
  margin-top:-40px;
  overflow-y: scroll; 
  white-space: nowrap;
}

.sidebar .text {
    font-size: 20px;
    line-height: 50px;
}

nav ul li a{
  font-size: 14px;
  padding-left: 4px;
  font-weight: 500;
}

nav ul ul li a {
    font-size: 11px;
    color: #e6e6e6;
    padding-left: 6px;
}
   
nav ul li a span{
  right: 7px;
}

.btnMenu{
  height: 42px;
  width: 31px;
}
.btnMenu.click{
  left: 155px;
}


.wrapperform {
        margin: 40px 150px 40px 175px;
		width: 600px;
        /* padding: 40px 15px 15px 15px; */
		/* margin: 40px 150px 40px 150px; */ 
}



}


/* For 1366 Resolution */  
@media only screen   
and (min-width: 1030px)   
and (max-width: 1366px)  
{
  
  .sidebar{
  position: fixed; 
  width: 204px;
  height: 100%;
  left: -220px;
  margin-top:-40px;
  overflow-y: scroll; 
  white-space: nowrap;
}

.sidebar .text {
    font-size: 20px;
    line-height: 50px; 
}

nav ul li a{
  font-size: 16px;
  padding-left: 16px;
  font-weight: 500;
}

nav ul ul li a {
    font-size: 14px;
    color: #e6e6e6;
    padding-left: 20px;
}
   
nav ul li a span{
  right: 7px;
}

.btnMenu{
  height: 45px;
  width: 45px;
}
.btnMenu.click{
  left: 213px;
}


.wrapperform {
        margin: 40px 150px 40px 400px;
		width: 800px;
        /* padding: 40px 15px 15px 15px; */
		/* margin: 40px 150px 40px 150px; */ 
}



}





