.menu_cont {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background-color: #06234B;
}

.menu_cont .menu_mobile_top {
  display: none;
}

.menu_cont .menu_items_wrap {
  width: 100%;
  padding: 32px 30px 30px;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.035em;
  line-height: 1.35714;
  font-weight: 600;
  min-height: 100vh;
}

.menu_cont .user_cont {
  width: 100%;
}

.menu_cont .links_wrap {
  width: 100%;
  padding-top: 11vh;
  padding-bottom: 30px;
}

.menu_cont .log_out {
  margin: auto 0 0 auto;
}

.menu_cont .user_img_wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #707070;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

.menu_cont .btn_sm_round:not(.add) {
  position: absolute;
  right: -9px;
  bottom: -9px;
  z-index: 1;
  -webkit-transform: rotate(22deg);
  transform: rotate(22deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  -webkit-animation: buzz_out 1s ease-in-out 0.3s;
  animation: buzz_out 1s ease-in-out 0.3s;
}

.menu_cont .btn_sm_round:not(.add) .fa {
  font-size: 12px;
}

.menu_cont .btn_sm_round:not(.add).new_msg {
  opacity: 1;
}

@-webkit-keyframes buzz_out {
  10% {
    -webkit-transform: translateX(3px) rotate(30deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(14deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(30deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(14deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(26deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(18deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(26deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(18deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(22);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(22);
  }
}

@keyframes buzz_out {
  10% {
    -webkit-transform: translateX(3px) rotate(30deg);
    transform: translateX(3px) rotate(30deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(14deg);
    transform: translateX(-3px) rotate(14deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(30deg);
    transform: translateX(3px) rotate(30deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(14deg);
    transform: translateX(-3px) rotate(14deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(26deg);
    transform: translateX(2px) rotate(26deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(18deg);
    transform: translateX(-2px) rotate(18deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(26deg);
    transform: translateX(2px) rotate(26deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(18deg);
    transform: translateX(-2px) rotate(18deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(22);
    transform: translateX(1px) rotate(22);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(22);
    transform: translateX(-1px) rotate(22);
  }
}

.menu_cont .user_name {
  text-align: center;
  padding-top: 15px;
}

.menu_cont .bg_img {
  width: 70px;
}

.menu_cont .avt_bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 4px;
}

.menu_cont .avt_bg .fa {
  font-size: 66px;
  color: rgba(6, 35, 75, 0.7);
}

.menu_cont .single_link {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.menu_cont .single_link:last-child {
  margin-bottom: 0;
}

.menu_cont .single_link.arrow .link_menu {
  padding-right: 20px;
}

.menu_cont .single_link.arrow::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 2px;
  background-color: #fff;
  top: 23px;
  right: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  pointer-events: none;
}

.menu_cont .single_link.arrow::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 2px;
  background-color: #fff;
  top: 23px;
  right: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  pointer-events: none;
}

.menu_cont .single_link.arrow.active::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu_cont .single_link.arrow.active::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu_cont .single_link.arrow.active .sub_items {
  max-height: 2000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
}

.menu_cont .sub_items {
  font-weight: 300;
  padding: 0 0 0 10px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.menu_cont .link_menu_wrap {
  position: relative;
}

.menu_cont .link_menu {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 1025px) {
  .menu_cont .link_menu:hover {
    color: #38D485;
  }
}

.menu_cont .link_menu_btn {
  position: absolute;
  right: 0;
  top: 53%;
  background-color: #38D485;
  height: 26px;
  border-radius: 13px;
  color: #fff;
  text-transform: uppercase;
  padding: 0 15px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-align: center;
  line-height: 25px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.menu_cont .btn_sm_round.add {
  position: absolute;
  right: 0;
  top: 53%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
}

.menu_cont .btn_sm_round.add::before {
  left: 9px;
}

.menu_cont .btn_sm_round.add::after {
  right: 9px;
}

.menu_cont .select_wrap {
  width: 75%;
  margin: 0 auto;
}

.menu_cont .select_wrap .select_head {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 12px;
}

.menu_cont .select_wrap .cur_select {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu_cont .select_wrap .fake_select {
  padding-left: 10px;
  padding-right: 10px;
}

.menu_cont .select_wrap .arrow::before, .menu_cont .select_wrap .arrow::after {
  background-color: #fff;
}

.menu_cont .ps__thumb-y {
  background-color: rgba(56, 212, 133, 0.9);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.menu_cont .ps__rail-y:hover > .ps__thumb-y, .menu_cont .ps__rail-y:focus > .ps__thumb-y, .menu_cont .ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #38D485;
}

.menu_cont .ps .ps__rail-x:hover, .menu_cont .ps .ps__rail-y:hover, .menu_cont .ps .ps__rail-x:focus, .menu_cont .ps .ps__rail-y:focus, .menu_cont .ps .ps__rail-x.ps--clicking, .menu_cont .ps .ps__rail-y.ps--clicking {
  background-color: transparent;
}

.menu_cont .ps.ps--scrolling-y > .ps__rail-y {
  background-color: transparent;
}

@-moz-document url-prefix() {
  .menu_cont .ps__thumb-y {
    border-radius: 0;
  }
  .menu_cont .avt_bg {
    border-radius: 3px;
  }
}

@media screen and (max-width: 1440px) and (min-width: 1025px) {
  .menu_cont {
    width: 250px;
  }
  .menu_cont .link_menu_btn {
    font-size: 10px;
    height: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .menu_cont {
    width: 100vw;
    height: 70px;
    z-index: 9999;
  }
  .menu_cont perfect-scrollbar {
    position: absolute;
    height: calc(100vh - 70px);
    top: 100%;
    right: 0;
    max-height: calc((var(--vh, 1vh) * 100) - 70px);
    z-index: 1;
    width: 255px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  .menu_cont perfect-scrollbar.menu_open {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu_cont perfect-scrollbar.isIos {
    max-height: calc(100vh - 70px);
  }
  .menu_cont .logo_wrap {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    box-align: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  .menu_cont .logo_left {
    width: 42px;
  }
  .menu_cont .logo_page {
    width: 93px;
    margin-left: 15px;
  }
  .menu_cont .menu_mobile_top {
    width: 100%;
    height: 100%;
    background-color: #0B3162;
    padding: 0 0 0 20px;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    box-align: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    box-pack: justify;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
  .menu_cont .menu_items_wrap {
    position: relative;
    background-color: #06234B;
    width: 255px;
    max-width: 100%;
    padding: 20px 20px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    min-height: calc(100vh - 70px);
    min-height: calc((var(--vh, 1vh) * 100) - 70px);
    margin: 0 0 0 auto;
  }
  .menu_cont .user_cont {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    box-align: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  .menu_cont .user_img_wrap {
    width: 50px;
    height: 50px;
    margin: 0;
  }
  .menu_cont .user_img_wrap .avt_bg .fa {
    font-size: 35px;
  }
  .menu_cont .user_name_wrap {
    width: calc(100% - 50px);
    padding-left: 14px;
  }
  .menu_cont .menu_wrap {
    position: relative;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    box-align: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    height: 100%;
  }
  .menu_cont .menu_wrap .avt_bg {
    width: 40px;
    height: 40px;
    background-color: #fff;
  }
  .menu_cont .menu_wrap .avt_bg .fa {
    font-size: 25px;
  }
  .menu_cont .menu_wrap .ham_btn {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    box-align: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .menu_cont .menu_wrap .ham_btn span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
    display: block;
    border-radius: 5px;
  }
  .menu_cont .user_name {
    font-size: 11px;
    text-align: left;
    padding-top: 0;
  }
  .menu_cont .select_wrap {
    width: 100%;
  }
  .menu_cont .select_wrap .select_head {
    font-size: 10px;
    padding: 0;
    line-height: 22px;
  }
  .menu_cont .select_wrap .arrow {
    top: 31%;
    right: 0;
  }
  .menu_cont .select_wrap .fake_select {
    padding: 10px 10px 0;
  }
  .menu_cont .select_wrap .fake_select li {
    font-size: 10px;
    margin: 0;
    padding: 3px 0;
  }
  .menu_cont .select_wrap .fake_select li:last-child {
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  .menu_cont .links_wrap {
    padding-top: 50px;
  }
  .menu_cont .link_menu {
    padding: 10px 0;
  }
  .menu_cont .link_menu_btn {
    top: 52%;
    height: 22px;
    line-height: 22px;
  }
  .menu_cont .btn_sm_round.add span {
    position: absolute;
    width: 200%;
    height: 110%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .menu_cont .single_link.arrow::before, .menu_cont .single_link.arrow::after {
    top: 19px;
  }
  .menu_cont .btn_close_menu {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FDFAF3;
    width: 120px;
    height: 100%;
    z-index: 1;
    font-size: 10px;
    font-weight: bold;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    box-pack: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    box-align: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    color: #0B3162;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .menu_cont .btn_close_menu .x_icon {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: 12px;
  }
  .menu_cont .btn_close_menu .x_icon::before, .menu_cont .btn_close_menu .x_icon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 23px;
    height: 2px;
    background-color: #0B3162;
  }
  .menu_cont .btn_close_menu .x_icon::before {
    left: 2px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
  .menu_cont .btn_close_menu .x_icon::after {
    right: -5px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }
  .menu_cont .btn_close_menu.menu_open {
    opacity: 1;
    pointer-events: none;
  }
  .menu_cont .overlay {
    position: absolute;
    left: 0;
    top: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(185, 185, 185, 0.9);
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out 0.3s;
    transition: all 0.3s ease-in-out 0.3s;
    opacity: 0;
    pointer-events: none;
  }
  .menu_cont .overlay.menu_open {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .menu_cont .ps__thumb-y {
    background-color: #38D485;
  }
}
/*# sourceMappingURL=menu.css.map */