  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: #edeeee;
    }
    .top {
      width: 100%;
     /* background-color: #000;*/
      color: white;
      padding: 10px 5px;
     /* box-shadow: 0px 0px 5px rgba(18, 23, 39, 0.5);*/
      position: fixed;
      height: 0 auto;
      top: 0;
      left: 0;
      transition: all 0.3s ease-in-out;
      z-index: 994;
    }
    .top .logo{
        float:left;
        width: 240px;
        text-align: center;
    }
    .top img{
        max-height: 50px;
    } 
    .top .user{
        float:right;
        display: flex;
        align-items: center;
        height:50px;
        margin-right: 10px;
    }
    .top .Cliente{
        float:right;
        display: flex;
        align-items: center;
        height:30px;
        margin-right: 5px;
        color:#555;
        font-weight: 600;
        background: #ddd;
        padding:20px;
        border-radius: 20px;
    }
    .top .Cliente i{
        margin-right: 10px;
        font-size:15pt;
        color:#97C91A;
    }
    .top .user .ini-user{
        width: 48px;
        height: 48px;
        border-radius:50%;
        color: #fff;
        background:#97C91A;
        border:2px solid #4E6B06;
        outline: 0;
        font-size: 14pt;
        font-weight: 600;
        color:#000;
    }
    .sidebar {
      height: 100vh;
      background-color: #97C91A;
      color: white;
      position: fixed;
      top: 0;
      left: 0;
      width: 250px;
      padding:10px;
      padding-top:20px;
      transform: translateX(0);
      transition: transform 0.3s ease-in-out;
      z-index: 995;
      box-shadow: 4px 4px 10px rgba(69, 65, 78, 0.08);
      border-radius:0px 60px 0px 0px;
    }
    .sidebar .logo{
        width: 100%;
        
        margin-bottom: 20px;
    }
    .sidebar .logo img{
        max-height: 90px;
    } 
    .sidebar a {
      color: white;
      text-decoration: none;
      display: block;
      padding: 12px 20px;
      border-bottom:1px dashed rgba(0,0,0,0.3);
      margin-bottom:5px;
    }
    .sidebar a i{ 
        width: 20px; 
        text-align: center;
    }
    .sidebar a:last-child{border-bottom: 0px;}
    .sidebar a:hover {
      background-color: #4E6B06;
      border-radius:5px;
      border-bottom:1px solid #4E6B06;
    }

    .sidebar .active {
      background-color: #000;
      border-radius:5px;
     border-bottom:1px solid #000;
    }
    .sidebar.closed {
      transform: translateX(-100%);
    }
    .sidebar .sair{
        width: 100%;
        text-align: center;
        padding-top:20px;
    }
    .sidebar .sair button{
        padding: 5px 15px;
        border-radius:20px;
        color: #fff;
        background:rgb(255, 137, 137);
        border:2px solid  rgb(255, 137, 137);
        transition: all 0.1s ease-in-out;
    }
    .sidebar .sair button:hover{
        color: #fff;
        background: rgb(195, 57, 57);
        border:2px solid  rgb(247, 93, 93);
        transform: scale(1.05);
    }
    .menu-toggle {
      display: none;
      top: 8px;
      left: 15px;
      z-index: 1100;
      background-color: #004080;
      color: white;
      border: none;
      padding: 10px 14px;
      border-radius: 4px;
     float:left;
    }

    .content {
      margin-left: 250px;
      padding: 20px;
      transition: margin-left 0.3s;
      margin-top:40px;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: inline;
      }

      .sidebar {
        position: fixed;
      }

      .content {
        margin-left: 0;
      }
      .top {
        text-align:center;
      }
       .top .logo{
            width: 70%;
            text-align: center;
        }
    }

/**Cards**/
.card{
    border-radius: 5px;
    background-color: #ffffff;
    margin-bottom: 10px;
    -webkit-box-shadow: 2px 6px 15px 0px rgba(69, 65, 78, 0.1);
    -moz-box-shadow: 2px 6px 15px 0px rgba(69, 65, 78, 0.1);
    box-shadow: 2px 6px 15px 0px rgba(69, 65, 78, 0.1);
    border: 0px;
}
.card-header{
    background-color: #fff;
}
.card-header .card-title {
    margin: 0;
    color: #555;
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 1.6;
    text-transform: uppercase;
    background-color: #fff;
}
.box-footer{
    margin-top:20px;
    width: 100%;
    float:left;
    padding:15px;
    border-top:1px solid #eee;
}
.btn-round{
    border-radius:30px;
}
.btn-close {
    float: right;
    margin-top: -30px;
}
.btn-close i {
    color:#666;
    transition: all 0.1s ease-in-out;
}
.btn-close i:hover{
    transform: scale(1.1);
}
/*     Form     */
.form-control {
  font-size: 14px;
  border-color: #dee0e2;
  padding: .6rem 1rem;
  /*border:0px;
  border-bottom: 1.8px solid #ddd;
  border-radius:0px;*/
  height: inherit !important; }
.form-control:focus {
    border-color: #052C60; 
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
}
.form-control:disabled{
    background-color: #f8f8f8; 
    border-color:#f2f2f2;
}
.fotoCadastro{float:left;}
.fotoCadastro img{
    width: 60px;
    border:1px solid #ddd;
    margin-bottom:20px;
    border-radius:5px;
}
.msgRetorno{
    margin-top:-30px;
}
.bt-excluir{
    text-align: right;
}
.alert{
    padding:5px 15px;
}
.swal-footer , .swal-text{
    text-align: center;
}
@media (max-width: 768px) {
   .msgRetorno{
      order: -1;
    } 
    .btn{
        margin-bottom:10px;
    }
    .bt-excluir{
        text-align: left;
    }
}


.contas{
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.contas li {
    padding: 10px;
    font-size: 10pt;
}

.contas li:nth-child(odd) {
    background-color: #f2f2f2;
}

.contas li:nth-child(even) {
    background-color: #ffffff;
}
.contas li button{
    font-size:8pt;
    border-radius:60px;
    padding:5px 15px;
}
.contas li .nomeconta{
    display: flex;
    align-items: center;
}
.contas li .nomeconta small{
    background:#ddd;
    padding:2px 10px;
    border-radius:20px;
    margin-left:20px;
}

.experiencia{
    border-radius:10px;
    background: #f6f6f6;
}
.experiencia .card-body{
    padding:10px;
}
.experiencia .card-title{
    font-size:12pt;
}
.experiencia p{
    font-size: 10pt;
}

.habilidades_adm li{
    display: inline-block;
    margin: 10px 10px 0px 0px;
    vertical-align: middle;
    background: #f5f5f5;
    border-radius:10px;
    padding: 10px 20px;
}


/*login*/

.login{
    background:#fff;
    padding:30px;
    text-align: center;
    border-radius:10px;
}
.login img{
    width: 70%;
    margin-bottom:20px;
}
.login .form-group input[type=text], .login .form-group input[type=email], .login .form-group input[type=date]{
    text-align: center;
}