/* main navbar */

.downloadButton {
  border: solid;
  color: white!important;
  background-color: #49DDD1;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
}

.downloadButton:hover{
  background-color: #21B8AC!important;
}

.invertedButton {
  color: #49DDD1!important;
  background-color: white!important;
  border: none;
  border-radius: 10px;
}

.invertedButton:hover {
  color: white!important;
}

#downloadLiElement {
  margin-top: 80px;
  margin-right: 40px;
}

#logo {
  background-image: url("../pics/logo.png");
  background-size: auto 60px;
  background-repeat: no-repeat;
  position: fixed;
  top: 10px;
  left: 30px;
  height: 60px;
  width: 60px;
  z-index: 10000;
  cursor: pointer;
}

#logo-text {
  position: fixed;
  top: 25px;
  left: 110px;
  height: 40px;
  width: 40px;
  z-index: 10000;
  color: grey;
  font-weight: 100;
  cursor: pointer;
}

.index_nav{
  background: white;
  border:none;
  border-radius: 0px;
  box-shadow: 0px 0px 10px grey;
  height: 80px;
  padding-right: 30px;
}

.navbar .nav > li > a {
  border: solid;
  border-color: white;
  color: #49DDD1;
  margin-top: 18px;
  margin-left: 15px;
  margin-right: 15px;
  padding: 10px 15px;
  border-radius: 15px;
  cursor: pointer;
}

.navbar .nav > li > a:hover, .navbar .nav > li > a:hover:focus {
  background-color: #49DDD1;
  color: white;
}

.navbar .nav > li > a:focus {
  color: #49DDD1;
}


#languageSelect {
  border: solid 2px;
}

#languageSelect a :hover{
  background-color: #21B8AC;
  color: #21B8AC;
  border-color: #21B8AC;
  border: solid 2px;
}

/*mobile specific main navbar css*/

#mobileNav {
  display: none;
  position: fixed;
  top: 0px;
  right: -75%;
  max-width: 75%;
  min-width: 60%;
  height: 100%;
  z-index: 11000;
  background-color: #49DDD1;
}

.closeMobileNav {
  color: white;
  position: absolute;
  font-size: 50px;
  top: 10px;
  right: 40px;
  cursor: pointer;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #49DDD1;
  width: 46px;
  height: 4px;
  margin-top: 6px;
}

#dubsmashNavbarToggle:hover {
  background-color: white;
}

#dubsmashNavbarToggle {
  border: none;
  top: 5px;
  right: -30px;
}

.downloadAppMobile, .downloadAppMobile:hover {
  font-weight: 200;
  font-size: 21px;
  border: solid;
  background-color: #49DDD1;
  color: white;
  padding: 6px 25px;
  border-radius: 20px;
  border: solid;
  color: white;
  position: fixed;
  top: 16px;
  right: 100px;
  z-index: 10000;
  text-decoration: none;
}


/*hide stuff when none mobile */

@media all and (min-width: 768px) {
  .downloadAppMobile {
    display: none;
  }
}
/*or too small screen resolution*/
@media all and (max-width: 520px) {
  .downloadAppMobile {
    display: none;
  }
}

#mobileNavList li:first-child, #mobileNavList li:hover:first-child {
  padding-top: 150px;
}

#mobileNavList li, #mobileNavList li:hover {
  list-style: none;
  padding-left: 40px;
  padding-top: 40px;
  font-weight: 100;
  cursor: pointer;
}

@media all and (max-width: 580px) {
  #mobileNavList {
    padding-left: 10px;
  }
}

@media all and (min-width: 580px) {
  #mobileNavList a, #mobileNavList a:hover {
    margin: 40px auto;
    padding-left: 30px;
  }
  #mobileNavList li, #mobileNavList li:hover {
    font-size: 45px;
  }
}
@media all and (max-width: 580px) {
  #mobileNavList li, #mobileNavList a, #mobileNavList li:hover {
    font-size: 28px;
    padding: 5px;
    text-align: left;
    margin: 10px;
  }
}


#mobileNavList a, #mobileNavList a:hover {
  color: white;
  text-decoration: none;
}