/* Header Css */
.header {
  height: 64px;
  background-color: rgba(1, 83, 156, 0.87);
}
.header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: 1.4rem;
  font-weight: 500;
}
.header .nav_bar__list,
.header .userControl__list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.header .nav_bar__item + .nav_bar__item {
  margin-left: 8px;
}
.header .nav_bar__item a {
  display: block;
  padding: 12px 8px;
  color: #fff;
  text-decoration: none;
}
.active-header-nav-bar-item {
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.2);
}
.header .nav_bar__item:hover a,
.header .nav_bar__item.active a {
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.2);
}
.header .nav_bar__logOut--onMobile {
  display: none;
}
.header .userControl__item a {
  display: block;
  border-radius: 6px;
  padding: 9px 17px;

  background-color: #fff;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}
.header .userControl__item:hover a {
  background-color: #01427d;
  color: #fff;
}
.header .header_menu_icon {
  cursor: pointer;
  display: none;
  padding: 8px;
}
.header .header_menu_icon .icon-menu {
  font-size: 32px;
  color: #fff;
}
.header .controlForLogin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}
.header .controlForLogin::after {
  content: "";
  display: inline-block;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.header .userInfo {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header .userInfo--label,
.header .userInfo--userName {
  word-wrap: break-word;
  width: 235px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: right;
}
.header .controlForLogin__logOut {
  padding: 12px 0;
  margin-left: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header .controlForLogin__logOut .controlForLogin__logOut--label {
  color: #fff;
  margin-right: 6px;
}
/* Css for language section */
.header .userControl {
  display: flex;
  align-items: center;
}
.header .userControl__languages {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.header .userControl__languages--icon {
  margin-right: 6px;
}
/*.header .userControl__languages--select select {*/
/*  border: none;*/
/*  outline: none;*/
/*  font-size: 1.4rem;*/
/*  font-weight: 500;*/
/*  color: #fff;*/
/*  background-color: transparent;*/
/*  cursor: pointer;*/
/*}*/
/*.header .userControl__languages--select select option {*/
/*  background: #b3b3b3;*/
/*}*/



/* The container must be positioned relative: */
.header .custom_select {
  position: relative;
  font-family: Arial;
  width: 90px;
}

.header .custom_select select {
  display: none; /*hide original SELECT element: */
}

.header .select-selected {
  background-color: transparent;
}

/* Style the arrow inside the select element: */
.header .select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 2px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.header .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.header .select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 0px 8px 6px;
  /*border: 1px solid transparent;*/
  /*border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;*/
  cursor: pointer;
}

/* Style items (options): */
.header .select-items {
  position: absolute;
  background-color: #bfbfbf;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 3px;
  width: 110%;
}

/* Hide the items when the select box is closed: */
.header .select-hide {
  display: none;
}

.header .select-items div:hover, .same-as-selected {
  background-color: DodgerBlue;
  color: #fff;
  border-radius: 3px;
}





/* Responesive */
@media (min-width: 576px) {

}

@media (max-width: 767px) {
  .header .select-selected:after {
    position: absolute;
    content: "";
    top: 12px;
    right: 2px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
  }
  .header .custom_select {
    font-size: 12px;
  }
  .header .select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 0px 8px 12px;
    /*border: 1px solid transparent;*/
    /*border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;*/
    cursor: pointer;
  }



  .header .userControl{
    position: absolute;
    right: 10px;
  }
}

@media (min-width: 992px) {
  .header .nav_bar__item + .nav_bar__item {
    margin-left: 4px;
  }
  .header .nav_bar__item a {
    padding: 6px 6px;
  }
}

@media (min-width: 1200px) {
  .header .nav_bar__item + .nav_bar__item {
    margin-left: 16px;
  }
  .header .nav_bar__item a {
    padding: 8px 12px;
  }
}

@media (max-width: 575.98px) {
  .header .userControl__languages--icon {
    display: none;
  }
  .header .controlForLogin {
    padding-right: 8px;
  }
  .header .userControl__languages {
    margin-left: 8px;
  }
  .header .userControl__languages--select select,
  .header .userInfo--label,
  .header .userInfo--userName {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
}

@media (max-width: 991.98px) {
  .header {
    position: relative;
    padding-left: 12px;
    padding-right: 12px;
  }
  .header .nav_bar__list {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header .nav_bar__list .nav_bar__item {
    margin-left: 8px;
    margin-right: 8px;
  }
  .header .nav_bar__list .nav_bar__item + .nav_bar__item {
    margin-top: 8px;
  }
  .header .nav_bar {
    display: none;
    position: absolute;
    top: var(--header-height);
    background-color: #1670be;
    left: 0;
    z-index: 1;
    width: 100%;
  }
  .header .header_menu_icon {
    display: block;
  }
  .header .controlForLogin__logOut {
    display: none;
  }
  .header .nav_bar__logOut--separate {
    margin: 0 8px;
    padding: 8px 0;
    border-top: 1px solid #fff;
  }
  .header .nav_bar__logOut--onMobile {
    display: flex;
    align-items: center;
    padding: 12px 8px;
  }
  .header .nav_bar__logOut--onMobile:hover {
    cursor: pointer;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .header .nav_bar__logOut--label {
    width: 100%;
    margin-right: 6px;
    font-size: 1.4rem;
    color: #fff;
  }
}

@media (max-width: 1199.98px) {
  .header .controlForLogin__logOut {
    margin-left: 12px;
  }
  .header .controlForLogin {
    padding-right: 12px;
  }
  .header .userControl__languages {
    margin-left: 12px;
  }
}

.display-none {
  display: none;
}
