.apps-mobi .item-app:hover{
    background: #DEDEDE60;
    border-radius: 15px;
    /* border: 1px solid #fff; */
}

.apps-mobi .item-app{
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 5px 5px 5px #EFEFEF;
    border: 1px solid #dedede;
    min-height: 270px;
    flex: 1 0 25%; /* explanation below */
    margin: 10px;
}

.item-app img {
    width: 130px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.item-app .title {
    font-size: 22px;
    margin: 15px 0px 15px;
    font-weight: 500;
}

.item-app .sub-title{
    font-size: 14px;
}

.item-header-mobi {
    position: sticky;
    top: 60px;
    padding: 15px;
    border-radius: 5px;
    background: #efefef;
    box-shadow: 1px 1px 1px #EFEFEF;
    border: 1px solid #dedede;
    margin: 15px 10px 15px;
    
}

.item-header-mobi span{
   font-size: 28px;
   font-weight: 200;
}



div{
    font-family: 'Inter';
}

.nav-menu-mobi{
    overflow-y: auto;
    max-height: 100%;
}

/* Fixed sidenav, full height */
.sidenav {
    width: 100%;
    overflow-x: hidden;
    padding-top: 20px;
    z-index: 9999;
    padding-bottom: 30px;
  }
  
  /* Style the sidenav links and the dropdown button */
  .sidenav a, .dropdown-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    display: block;
    border: none;
    background: none;
    width:100%;
    text-align: left;
    cursor: pointer;
    outline: none;
  }
  
  /* On mouse-over */
  .sidenav a:hover, .dropdown-btn:hover {
    color: #f1f1f1;
    /* font-size: 18px; */
  }
  
  /* Main content */
  .main {
    margin-left: 200px; /* Same as the width of the sidenav */
    font-size: 20px; /* Increased text to enable scrolling */
    padding: 0px 10px;
  }
  
  /* Add an active class to the active dropdown button */
  .active {
    background-color: rgb(90 105 128);
    color: white;
  }
  
  /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
  .dropdown-container {
    display: none;
    background-color: rgb(90 105 128);
    padding-left: 8px;
  }
  
  /* Optional: Style the caret down icon */
  .fa-caret-down {
    float: right;
    padding-right: 8px;
  }

.item-result{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.item-result:hover{
    cursor: pointer;
}
  
.item-result img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
}

.item-result .item-result-text{
    flex: 1;
    text-align: left;
    padding-left: 15px;
}

.item-result .item-result-title{
    font-weight: 400;
}


ul::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}

ul::-webkit-scrollbar
{
	width: 4px;
	background-color: #F5F5F5;
}

ul::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(96,125,139)),
									   color-stop(0.72, rgb(96,125,139)),
									   color-stop(0.86, rgb(96,125,139)));
}

div::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}

div::-webkit-scrollbar
{
    width: 4px;
    height: 8px;
	background-color: #F5F5F5;
}

div::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(96,125,139)),
									   color-stop(0.72, rgb(96,125,139)),
									   color-stop(0.86, rgb(96,125,139)));
}

.sidemenu-header{
    display: flex;
    align-items: center;
    padding: 16px;
    background: #396dbb;
    position: sticky;
    top:0;
}

.sidemenu-header img{
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.sidemenu-header .navbar-mobi-title{
    text-align: left;
}

.sidemenu-header .title{
    font-size: 18px;
    color: #fff;
}

.sidemenu-header .subtitle{
    font-size: 12px;
    margin-top: 2px;
    font-weight: bold;
    color: #fff;
}

.login-fundo-topo{
    width: 50%;
    height: 70%;
    position: fixed;
    top: 0;
    right: 0;

    background-image: url('/imgs/fundo_topo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top;
}