.mobile-menu-container {
  display: none;
  justify-content: space-between;
  flex-flow: column;
  background: white;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: black;
  z-index: 10;
  padding-top: 15px;
  padding-bottom: 5%;
}

.sub_menu_panel {
  display: none;
  justify-content: flex-start;
  flex-flow: column;
  background: white;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: black;
  z-index: 10;
  padding-top: 15px;
  padding-bottom: 60px;
}

.mobile-menu-container.show {
  display: flex;
}

.mobile-menu-container ul {
  margin: 0;
  padding: 0px 15px;
}

.menu-back-btn {
  height: 42px !important;
  font-weight: 900;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 15px;
  cursor: pointer;
}

.menu-back-btn svg {
  transform: rotate(180deg);
  height: 12px;
  width: 12px;
  margin-right: 15px;
}

.mobile-menu-container li {
  list-style-type: none;
  line-height: 45px;
  border-top: 1px solid #CBCBCB;
  border-bottom: 1px solid #CBCBCB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  min-height: 47px;
}

.mobile-menu-container li .liTitle.selected {
  color: #00ADE0;
  font-weight: 600;
}

.mobile-menu-container li:first-of-type {
  border-top: 2px solid #CBCBCB;
}

.mobile-menu-container li:last-of-type {
  border-bottom: 2px solid #CBCBCB;
}

.mobile-menu-container .logo-1, .mobile-menu-container .logo-1 svg {
  height: 50px;
  width: 50px;
}

.mobile-menu-container .logo-1 {
  margin-left: 4%;
}

.mobile-menu-container .logo-2 {
  margin-right: 4%;
  cursor: pointer;
}

.mobile-menu-container .logo-2 {
  height: 15px;
  cursor: pointer;
  align-items: center;
  display: flex;
}

.mobile-menu-container li svg {
  height: 10px;
  width: 10px;
}

.sub_menu_panel.show {
  display: flex;
}

.sub_menu_panel ul {
  max-height: 80%;
  overflow: auto;
}

.sub_menu_panel li {
  justify-content: flex-start;
}

.sub_menu_panel input[type=text] {
  border: none;
  outline: none;
  width: 100%;
}

.sub_menu_panel li label {
  margin: 0;
  padding-left: 15px;
}

body.stop-scrolling {
  overflow: hidden;
  height: 100vh;
}

.sub_menu_panel .radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.sub_menu_panel .radio input[type=radio] + .radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 11px;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.sub_menu_panel .radio input[type=radio]:checked + .radio-label:before {
  background-color: #00ADE0;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}
.sub_menu_panel .radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #00ADE0;
}
.sub_menu_panel .radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.sub_menu_panel .radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.subMenuLi input {
  height: 48px;
}

.mobile-menu-container .black-btn{
  background: black;
  width: 165px;
  border-radius: 25px;
  margin: 25px auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.mobile-menu-container .black-btn span{
  color: white;
  z-index: 1;
  font-weight: bold;
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .mobile-menu-container  {
    display: none !important;
  }
}
