/*
==============================
Page: All
Section: Navbar for header with margin top
==============================
*/

.margin-top-content.margin-top-logged-admin .site-content {
  margin-top: 96.63px;
}
.margin-top-content .site-content {
  margin-top: 72px;
}

@media (min-width:992px) {
  .margin-top-content.margin-top-logged-admin .site-content {
    margin-top: 93.42px;
  }
  .margin-top-content .site-content {
    margin-top: 68.8px;
  }
}


/*
==============================
Page: All
Section: Navbar Brand
==============================
*/

.navbar-brand {
  margin-right: 0;
}
.navbar-brand img {
  width: 88px;
  height: auto;
}

@media (min-width: 992px) {
  .navbar-brand img {
    width: 112px;
  }
}

/*
==============================
Page: All
Section: Navbar Main
==============================
*/

.navbar-main {
  width: 100%;
  background-color: var(--white);
}

/*
==============================
Page: All
Section: Navbar Transition
==============================
*/


.navbar-transition.scrolled {
  background-color:#fff;
  box-shadow:0 0px 2px rgba(0,0,0,.3);
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
}
.navbar-transition.scrolled .navbar-brand {
  opacity:1;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
}

.single-events .navbar-main.navbar-transition {
  box-shadow:0 0px 2px rgba(0,0,0,.3);
}

/*
==============================
Page: All
Section: Navbar Mobile Menu
==============================
*/


#navbar {
	background-color: var(--black);
	color: var(--white);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	height: 100vh;
	padding-top: 5rem;
	z-index: 99;
	overflow-y: scroll;
}
.logged-admin #navbar {
  padding-top:7rem;
}
.navbar-nav {
  padding-left:17px;
  padding-right:19px;
}
.close-menu {
	position: absolute;
	right: 19px;
	top: 19px;
	z-index: 100;
}
.logged-admin .close-menu {
	top: 39px;
	z-index: 100;
}
.close-menu span {
  font-size:2.2rem;
  line-height:1em;
  color: var(--white);
}

@media (min-width: 992px) {
  #navbar {
    background-color: var(--white);
    color: var(--black);
    position: relative;
    height: auto;
    padding: 0;
    overflow-y: visible;
  }
  .navbar-nav {
    padding-left: 0;
    padding-right: 0;
  }
}

/*
==============================
Page: All
Section: Navbar Links
==============================
*/

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: var(--xs);
  border-bottom: 1px solid #717173;
  padding-bottom: var(--xs);
}
.nav-link:visited,
.nav-link:hover,
.nav-link:focus {
  color: var(--white);
}
.nav-link-mobile-wrapper .nav-link {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0.5rem;
}

@media (min-width:992px) {

  .nav-link {
    color: var(--navbarGrey);
    font-size:0.875rem;
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nav-link:visited,
  .nav-link:active {
    color: var(--navbarGrey);
  }
  .nav-item:hover .nav-link,
  .nav-item:hover .icon-language {
    color: var(--navbarGrey);
    /*color: var(--turquoise);*/
    opacity: 0.5;
  }
}

@media (min-width: 1200px) {
  .nav-item {
    margin-right: 1rem;
  }
  .nav-item:last-child {
    margin-right: 0;
  }
}

/*
==============================
Page: All
Section: Navbar Buttons
==============================
*/

.button.navbar-button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  width: 100%;
}
.navbar-button-wrapper {
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .button.navbar-button {
    width: auto;
  }
}


