/* reserved space home only with carousel */

.toppanel {
	background: var(--toppanel-bg-color);
	color: var(--toppanel-link-color);
}


.nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  p/adding: 0px 20px;
	background: var(--navbar-bg-color);
	color: var(--navbar-link-color);
	border-bottom: 1px solid var(--navbar-border-bottom-color);
}

.nav-container .drop-left {
  left: unset !important;
  right: -30px !important;
}

/** * Desktop Navigation */

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
	color: var(--navbar-link-color);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
	text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -5px;
  left: 0;
  visibility: hidden;
  width: 0px;

  height: var(--navbar-link-underline-thickness);
  background-color: var(--navbar-link-underline-color);
  transition: all var(--navbar-link-underline-transition) ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
	color: black;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
	color: var(--navbar-link-hover-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--navbar-dropdown-bg-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.1s; /* select menu transition time */
  border-radius: 8px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
	font-size: 1.0rem;
  text-transform: none;
	color: var(--navbar-dropdown-link-color);
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	background-color: var(--navbar-dropdown-link-bg-hover-color);
	color: var(--navbar-dropdown-link-hover-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* Mobile Navigation  - hamburger */
.mobile-nav-toggle {
	color: var(--navbar-icon-color);
  font-size: 28px;
  cursor: pointer !important;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle:hover {
	color: var(--navbar-icon-hover-color);
}

.mobile-nav-toggle.bi-x {
	color: var(--text-color);
}

.mobile-nav-toggle.bi-x:hover {
	color: var(--navbar-icon-hover-color);
}

@media (max-width: 767px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

@media screen and ( max-width: 767px) {
	.nav-link {
		color: black !important;
		background: pink;
		background: #eee;
		border-top: 1px solid #fff;
		border-bottom: 1px solid white;
	}

	.nav-link:hover {
		color: black !important;
		background: #ddd !important;
		background: #ddd;
	}

}


.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
	background: var(--color2);
	background: var(--navbar-bg-color);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}


.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
	color: var(--color2);
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: black;
	background: #eee;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f6b024;
	color: var(--color2);
color: black;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  background: #ecf6fe;
  margin-top: 130px;
}

/* DASHBOARD LINKS */

nav a.red { 
	color: white !important; 
	background-color: orangered !important; 
}
nav a:hover.red { 
	color: white !important; 
	background-color: red !important; 
}

nav a.blue { 
	color: white !important; 
	background-color: blue !important; 
}
nav a:hover.blue { 
	color: white !important; 
	background-color: darkblue !important; 
}

nav a.dashboard { 
	color: white !important; 
	background-color: blue !important; 
}
nav a:hover.dashboard { 
	color: white !important; 
	background-color: navy !important; 
}

nav a.administration { 
	color: white !important; 
	background-color: orangered !important; 
}
nav a:hover.administration { 
	color: white !important; 
	background-color: red !important; 
}
