.multiple_menu {
  position: fixed;
  background: #ffffff;
  height: 100%;
  top: 0;
  left: -295px;
  z-index: 50;
  border-right: 2px solid #6b92c4;
}
.overflow {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 30px 30px 0 50px;
}
.overflow::before {
  content: "";
  background: url("../img/menu_bg.png") no-repeat;
  width: 575px;
  height: 443px;
  position: absolute;
  left: -30px;
  bottom: -12px;
}
.multiple_menu .menuButton {
  background: url("../img/fix_img.png") center center no-repeat;
  width: 64px;
  height: 70px;
  position: absolute;
  z-index: 15;
  border: none;
  outline: none;
  right: -65px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #6b92c4;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.menuButton:hover{
  right: -84px;
  width: 84px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.multiple_menu .multiple_menu_title {
  font-size: 28px;
  font-family: "RobotoLight";
  color: #5882b8;
  margin: 10px 0 20px 0;
}
.multiple_menu .renderBox {
  position: relative;
  z-index: 5;
  height: 87%;
  display: flex;
}
.multiple_menu .renderBox > ul {
  border-right: 1px solid #6b92c4;
  width: 230px;
  height: 100%;
}
.multiple_menu .renderBox > ul:nth-of-type(4) {
  border-right: none;
}
.multiple_menu .renderBox > ul li {
  display: block;
  list-style: none;
}
.multiple_menu .renderBox ul:first-child li a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.multiple_menu .renderBox > ul li a {
  display: block;
  text-decoration: none;
  color: #484848;
  padding: 9px 35px 9px 14px;
}
.multiple_menu .renderBox > ul li a:hover {
  background: #6189be;
  transition: all 0.3s ease;
  color: #fff;
}
.multiple_menu .renderBox ul li a.active {
  position: relative;
  background: #6189be;
  text-decoration: none;
  color: #fff;
}
.multiple_menu .renderBox ul li a.active:after {
  content: "";
  background: url("../img/next_icon.png") no-repeat;
  width: 12px;
  height: 19px;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-100%, -50%);
  margin: 0 0 0 -10px;
}
.multiple_menu .renderBox ul ul {
  display: none;
}
.multiple_menu .renderBox ul.width_style {
  width: 500px;
}
.multiple_menu .renderBox ul.width_style li.title {
  position: absolute;
  background: #fff;
  z-index: 1;
  font-size: 18px;
  width: inherit;
  font-family: "Robotolight";
  color: #2975d4;
  margin: -5px 0 0 0;
  padding: 10px 10px 10px 25px;
}
.multiple_menu .renderBox ul.width_style li {
  position: relative;
  display: inline-block;
  margin: 5px 0 5px 25px;
}
.multiple_menu .renderBox ul.width_style li:nth-of-type(2) {
  margin-top: 40px;
}
.multiple_menu .renderBox ul.width_style li a {
  border-left: 1px solid #6b92c4;
}
.multiple_menu .renderBox ul.width_style li a.active {
  background: transparent;
  font-weight: 600;
  color: #484848;
}
.multiple_menu .renderBox ul.width_style li a:hover {
  background: transparent;
  text-decoration: underline;
  color: #484848;
}
.xscroll {
  position: relative;
  overflow: hidden;
}
#scroll {
  position: relative;
  overflow: hidden;
}
.closebtn {
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
