/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
.block-quick-access {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.block-quick-access .block-quick-access-inner-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.block-quick-access .quick-access-btn {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.block-quick-access .quick-access-container {
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.25);
  background-color: white;
  position: fixed;
  z-index: 9999;
  margin-left: 0;
}
.block-quick-access .form-select {
  padding-right: 1px;
  width: 178px;
  text-align: left;
}
.block-quick-access button.form-select.uk-select {
  background-image: url("../images/global/chevron-bottom.png");
  background-position: right 1em top 50%;
  border-color: #b9b9b9;
  color: #b9b9b9;
}
.block-quick-access button.form-select.uk-select:hover {
  cursor: pointer;
}
.block-quick-access button.form-select.uk-select.opened {
  border-color: #fd5312;
  color: black;
  background-image: url("../images/global/chevron-top.png");
}
.block-quick-access .quick-access-employers-container, .block-quick-access .quick-access-collectivites-container {
  padding: 16px;
  font-size: 16px;
}
.block-quick-access .quick-access-employers-container a, .block-quick-access .quick-access-collectivites-container a {
  color: #212121;
  font-weight: 400;
  margin-top: 1rem;
  display: inline-block;
}

.quick-access--mobile {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.quick-access--mobile .js-level-0 {
  position: fixed !important;
}
.quick-access--mobile .collectivites-btn {
  background-image: url("../images/global/chevron-bottom.png");
  background-position: right 1em top 50%;
}
.quick-access--mobile .collectivites-btn:hover {
  cursor: pointer;
}
.quick-access--mobile .employers-content, .quick-access--mobile .collectivites-content {
  padding-top: 3rem;
}
.quick-access--mobile .employers-content div, .quick-access--mobile .collectivites-content div {
  background-image: url("../images/global/arrow-right.png");
  background-position: left 0.5em top 50%;
  background-repeat: no-repeat;
  padding-left: 3rem;
  text-align: left;
}
.quick-access--mobile .employers-content div a, .quick-access--mobile .collectivites-content div a {
  background: transparent !important;
  font-size: 2rem !important;
  padding: 0.5rem 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}