@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800");
  

*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
    font-family: 'Montserrat';
}
body.preload *{
animation-duration: 0s !important;
-webkit-animation-duration: 0s !important;
transition:background-color 0s, opacity 0s, color 0s, width 0s, height 0s, padding 0s, margin 0s !important;}
body{
	background: #f5f5f5;
}

.wrapper {
  display: flex;
  width: 100%;
}


.top_navbar{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: rgba(48,48,48,0.8);
	box-shadow: 1px 0 2px rgba(0,0,0,0.125);
	display: flex;
	align-items: center;
    cursor: pointer;
    z-index: 100;
    border-right: 1px solid #f5f5f5;
}
.top_navbar .logos{
	width: 50%;
    color: #fff;
    white-space: nowrap;
    vertical-align: bottom;
    align-items: baseline;
    display: flex;
    justify-content: start;
}

.top_navbar .logo{
	color: white;
    max-width: 20rem;
    margin-bottom: 5px;
    padding-right: 10px;
}

.loginpage .logos{
	width: 100%;
    height: 100px;
    text-align: center;
}

.loginpage .logo{
	color: white;
    max-width: 100%;
    margin-top: 5px;
}
.logos img {
	display: inline-block;
}
.top_navbar .hamburger{
	font-size: 25px;
	cursor: pointer;
	color: white;
}
.top_navbar .menu{
	padding: 2rem;
    display: flex;
    justify-content: flex-end;
	align-items: center;
    cursor: pointer;
    z-index: 20;
}

.top_navbar .hamburger:hover{
	color: #3ebde2;
}
.dropbtn { 
  background: rgba(48,48,48,0);
  color: white;
  padding: 40px 16px 40px 0px;
  font-size: 16px;
  border: none;
  cursor: pointer;
    min-width: 250px;
    max-width:50rem;
        text-align: right;
}
.dropbtn a {
  color: white;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
    width: 40%;
    align-content: flex-end;
    text-align: right;
    padding-right: 30px;
}
.dropdown2 {
  position: relative;
  display: inline-block;
    width: 70%;
    align-content: flex-end;
    text-align: right;
}


/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  top:98px;
    align-content: flex-end;
  background-color: #f9f9f9;
  min-width: 16rem;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
animation: fadeIn linear 0.6s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
}
@keyframes fadeIn {
            0% {
                opacity: 0;
            }
 
            100% {
                opacity: 1;
            }
        }

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 25px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
    transition: 0.6s;}

/* Show the dropdown menu on hover */

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown a:hover {
  color: #3ebde2;
  transition: 0.6s;
}
.dropbtn a:hover {
  color: #3ebde2;
  transition: 0.6s;
}
.dropdown:hover .dropdown-content {
  display: block;
    align-content: flex-end;
    right:0;
  transition: 0.6s;
}


.hover_collapse .sidebar{
 width: 80px;
}

.hover_collapse .sidebar ul li a .text{
 display: none;
}



/* Now I have determined what the sidebar will look like for a responsive device */

.sidebar{
	position: fixed;
	top: 100px;
	left: 0;
	width: 300px;
	height: 100vh;
	background: #155976;
    padding-top: 30px;
    transition: width 0.5s;
    z-index: 10;
}

.sidebar ul li a{
	display: block;
	padding: 25px;
	border-bottom: 1px solid #155976;
	color: #3ebde2;
    transition: 0.6s;
    overflow: hidden;
}

.sidebar ul li a .icon{
	font-size: 1.5rem;
    color: #C8C8C8;
}

.sidebar ul li a:hover .icon{
	color: #FFF;
    transition: 0.6s;
}

.sidebar ul li a .text{
    position: absolute;
	left: 5rem;
	color: #C8C8C8;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
    transition: width 1s;
}

.sidebar ul li a:hover .text {
	color: #FFF;
    transition: 0.6s;
}
.sidebar ul li a:hover{
	background: #3ebde2;
	color: #FFF;
}

.click_collapse .sidebar{
    transition: width 0.6s;
}

.sidebar .disconnect {
    display: none;
    }
.homenav {
    padding-left: 6rem;    
    }

@media screen and (max-width:768px) {
.top_navbar .logo2{
   display: none;
}
.homenav {
    padding-left: 1.25rem;    
    }
.centerthis {
   align-items: center ;
    justify-content: center;
    }  
}




@media screen and (max-width:480px) {
    
.top_navbar{
	height: 80px;
}
.top_navbar .logos, .top_navbar .logo, .top_navbar .logo2 {
    width: 0%;
        display: none; /* Hide logos */
    }
.top_navbar .hamburger {
    padding: 10px 20px;
        font-size: 20px; /* Adjust size as needed */
    }

.top_navbar .menu{
    justify-content: flex-start;
	padding: 0;
}

.top_navbar .hamburger:hover{
	color: #3ebde2;
}
.hover_collapse .sidebar ul li a, .hover_collapse .sidebar ul li a .text, .hover_collapse .sidebar ul li a .icon {
 display: none;
    transition: 0.3s;
    overflow: hidden;
}
.hover_collapse .sidebar{
      width: 0px;
   animation: slideout ease-in 0.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-direction: normal;
}
.dropdown {
    display: flex; 
    justify-content: center;
    white-space: nowrap;
    width: 90%;
    }

.dropbtn {
  padding: 0;
  font-size: 14px;
  min-width: auto;
    margin-right: 5px;
}
.dropdown-content {
  min-width: auto;
}
.sidebar{
	top: 0px;
    width: 220px;
    padding-top: 60px;
    animation: slidein linear 0.3s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
       animation-direction: normal;
    overflow-x: hidden
}
.sidebar ul li a .icon{
	font-size: 14px;
}
.sidebar ul li a .text{
  left: 60px;
  font-size: 14px;
    
}  
.sidebar .disconnect {
    display: block;
    }
.sidebar #menu1, .sidebar #menu2, .sidebar #menu3, .sidebar #menu4, .sidebar #menu5 {
        
    } 
@keyframes slidein {
            from {
    margin-left: 0%;
    width: 0%;
  }

  to {
    width: 220px;
  }
        }
@keyframes slideout {
            from {
    display: block;
    width: 220px;
  }

  to {
    display: none;
    width: 0px;
  }
        }
.dropdown-content a {
  display: none;
}
.centerthis {
   align-items: center !important;
    justify-content: center !important;
    }
}