/* Algemene stijlen */

header {
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  -webkit-flex-direction: column;
  display: flex;
  flex-direction: column;
  z-index: 101;
}

.nav-questions .logo {
  position: absolute;
  width: 0;
  left: 0;
  right: 0;
  top: 15px;
  margin: 0 auto;
}

.logo {
  -moz-flex-direction: row;
  -ms-align-items: center;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  -webkit-flex-direction: row;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.logo img {
  width: 65px;
}

nav {
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  -webkit-flex-direction: column;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  color: #333;
  display: flex;
  flex-direction: column;
  height: 60px;
  justify-content: center;
  width: 100%;
}

.nav-fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.nav-fixed-top+div {
  border: none;
  left: 0;
  margin-top: 60px;
  position: relative;
  right: 0;
  top: 0;
}

.navigation {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
  transition: all .2s ease;
}

.nav-shadow {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.menu {
  background-color: rgba(255, 255, 255, 1);
  bottom: 0;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: 0;
  margin: 0;
  margin-left: auto;
  max-width: 320px;
  padding: 0;
  position: fixed;
  top: 0;
  transition: left .4s ease;
  width: 80vw;
  z-index: 99;
}

.menu li a .icon {
  color: red;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  width: 20px;
}

#navigation:not(:checked)~header .menu {
  box-shadow: none;
  left: -80vw;
  transition: left .4s ease;
}

.menu a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  color: #00444C;
  display: block;
  padding: 15px;
  width: 100%;
  white-space: nowrap;
  text-decoration: none;
}

.secondary-items a {
  color: #00ADC3;
}

.menu .secondary-items #dropdownMenuLink,
.menu .secondary-items #dropdownMenuLink:hover{
  color: #00444C;
}

.menu a:hover {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.1);
}

.menu a:active {
  background-color: #f8f9fa;
  color: #00444C;
}

#navigation:checked~header .nav-toggle {
  border-top: 2px solid RGBA(0, 69, 79, 0);
  margin-top: 4px;
}

#navigation:checked~header .nav-toggle::after {
  right: .5px;
  top: 8px;
  transform: rotate(45deg);
}

#navigation:checked~header .nav-toggle::before {
  left: .5px;
  top: 8px;
  transform: rotate(-45deg);
}

.nav-toggle {
  border-top: 2px solid rgba(0, 69, 79, 1);
  cursor: pointer;
  height: 30px;
  margin-top: 13px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s ease all;
  width: 22px;
}

.nav-toggle:after {
  border-top: 2px solid rgba(0, 69, 79, 1);
  bottom: 21px;
  content: "";
  left: 0;
  position: absolute;
  top: -9px;
  transition: .3s ease all;
  width: 22px;
}

.nav-toggle:before {
  border-top: 2px solid rgba(0, 69, 79, 1);
  bottom: 14px;
  content: "";
  left: 0;
  position: absolute;
  top: 5px;
  transition: .3s ease all;
  width: 22px;
}

.hidden-toggle {
  background-color: rgba(0, 0, 0, 0.3);
  bottom: 0;
  cursor: pointer;
  left: 0;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all .4s ease;
}

#navigation:not(:checked)~header .hidden-toggle {
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: all .4s ease;
}

.menu li {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
}

.menu li:last-child {
  margin-right: 0;
}

@media (min-width: 768px) {
  .logo img {
    margin-bottom: 1px;
    width: 75px;
  }

  nav {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-flex-direction: column;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 67px;
    justify-content: center;
    width: 100%;
  }

  .nav-fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
  }

  .nav-fixed-top+div {
    border: none;
    left: 0;
    margin-top: 70px;
    position: relative;
    right: 0;
    top: 0;
  }

  nav .flex-container {
    justify-content: space-between;
  }

  .menu {
    align-items: center;
    background-color: transparent;
    box-shadow: none;
    color: #333;
    display: flex;
    flex-direction: row;
    left: auto;
    max-width: none;
    position: static;
    right: auto;
    width: auto;
  }

  .menu a {
    -ms-align-items: center;
    align-items: center;
    border-bottom: none;
    color: #00444C;
    display: flex;
    /*justify-content: center;*/
    margin: 0 8px;
    overflow: hidden;
    padding: 0 3px;
    position: relative;
    transition: .3s ease all;
    width: auto;
  }

  .menu .chevron {
    font-size: 11px;
  }

  .menu a:hover {
    box-shadow: none;
    color: #00444C;
  }

  .menu a:not(.no-line):after {
    background: #00444C;
    bottom: 0;
    content: "";
    height: 2px;
    left: -100%;
    position: absolute;
    transition: .3s ease all;
    width: 100%;
  }

  .menu li {
    -ms-align-items: center;
    align-items: center;
    display: flex;
    height: 100%;
    width: auto;
  }

  .menu li:last-child {
    margin-right: 0;
  }

  .topbar ul.top-pointers span {
    display: inline-block;
  }

  .secondary-items {
    background-color: #F4F4F4;
  }

  .menu .secondary-items a:not(.no-line):after {
    background: #00ADC3;
  }
  
  .menu .secondary-items span.my-info-container{
	white-space: nowrap;
    color: #6c757d;
    max-width: 250px;
    display: flex;  
  }
  
  .menu .secondary-items span.my-info-container .company{
    display:block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle,
  .hidden-toggle,
  .menu li a .icon {
    display: none;
  }

  .menu li.active a:after,
  .menu a:hover::after {
    left: 0;
  }

  .secondary-items a,
  .menu .secondary-items a:hover {
    color: #00ADC3;
  }
}

@media (min-width: 1200px) {
  .menu a {
    padding: 0 5px;
  }
}

.flag-dropdown {
  min-width: 0;
}

.dropdown-item.active, .dropdown-item:active {
  color: #47AE43;
  text-decoration: underline;
  background-color: transparent;
  
}

/* bottom-menu */
.bottom-menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bottom-menu .btn-opener {
  position: absolute;
  left: 5%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #fff;
  border: none;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.bottom-menu .btn {
  display: inline-flex;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  align-items: center;
/*   justify-content: space-between; */
}

.bottom-menu .btn-opener:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #000;
}

.opened-bottom-menu .bottom-menu {
  transform: translateY(0);
}

.opened-bottom-menu .btn-opener:before {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* Responsieve stijlen */
@media (min-width: 576px) {
  .menu {
    flex-direction: row;
    position: static;
    background-color: transparent;
    box-shadow: none;
    width: auto;
  }

  .menu a {
    margin: 0 8px;
    padding: 0 3px;
    border-bottom: none;
  }

  .bottom-menu .btn-opener {
    width: 30px;
    height: 25px;
  }
}

@media (min-width: 1200px) {
  .menu a {
    padding: 0 5px;
  }
}

/* Mobiel menu onderaan */
.bottom-menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.opened-bottom-menu .bottom-menu {
  transform: translateY(0);
}

/* .bottom-menu .btn {
  margin: 0 17px 10px;
} */

@media (min-width: 992px) {
  .bottom-menu .btn-opener {
    display: none;
  }
}

footer > a {
  color: #333 !important;
}

/* Extra groottes (HD, 2K, 4K) */
@media (min-width: 1920px) {
  .logo img {
    width: 90px;
  }

  nav {
    height: 67px;
  }
}


.non-production-banner {
  background-color:#B71C1C;
  height: auto;
}

.non-production-banner > center {
	margin-bottom: .5rem;
}

/* end bottom-menu */
