/* -------------------------Icons------------------------- */
.loupe_blue_ico {
  right: 0px;
  background: url("../img/icons/loupe_blue_ico.svg");
  background-size: cover;
  display: inline-block;
  width: 20px;
  height: 18px;
  background-repeat: no-repeat;
}
.cal_lupe_blue_ico {
  right: 0px;
  background: url("../img/icons/cal_loupe_blue_ico.svg");
  background-size: cover;
  display: inline-block;
  width: 20px;
  height: 18px;
  background-repeat: no-repeat;
}
.quest_round_blue_ico {
  right: 0px;
  background: url("../img/icons/round_quest_blue_ico.svg");
  background-size: cover;
  display: inline-block;
  width: 20px;
  height: 18px;
  background-repeat: no-repeat;
}
.i_round_blue_ico {
  right: 0px;
  background: url("../img/icons/blue_round_info_ico.svg");
  background-size: cover;
  display: inline-block;
  width: 20px;
  height: 18px;
  background-repeat: no-repeat;
}
.docs_blue_ico {
  right: 0px;
  background: url("../img/icons/docs_blue_ico.svg");
  background-size: cover;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
}
.phone_blue_ico {
  right: 0px;
  background: url("../img/icons/phone_blue_ico.svg");
  background-size: cover;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
}
.tickets_blue_ico {
  right: 0px;
  background: url("../img/icons/tickets_blue_ico.svg");
  background-size: cover;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
}
/* -------------------------Icons------------------------- */

.mobile_menu_wrapper {
  position: fixed;
  right: -100%;
  top: 0;
  transition: 0.3s ease-in-out;
  height: 100vh;
  overflow: scroll;
  z-index: 300;
  width: 70%;
  max-width: 270px;
}
.mobile_menu_wrapper.active {
  right: 0;
}
.mobile_menu_mod {
  padding: 8px 16px;
  z-index: 30;
  height: fit-content;
  min-height: 100vh;
  background: #53565b;
}
.mobile_menu_mod > div > div {
  padding: 16px 0;
  padding-top: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}
.mobile_menu_mod > div > h2 {
  font-weight: bold;
  font-size: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.4);
}
.mobile_menu_mod > div > div > a {
  margin-left: 10px;
  text-decoration: none;
  color: #fff;
  width: 100%;
}
.mobile_menu_wrapper::-webkit-scrollbar {
  display: none;
}
.mobile_menu_wrapper {
  -ms-overflow-style: none;
}
.mobile_menu_wrapper.active .dark_layer {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #000;
  opacity: 25%;
  z-index: -1;
}
