.mobTabDiv {
  position: relative;
  text-align: center;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  color: #111111;
  background-color: #ffdd00;
  border-radius: 8px;
  margin: 8px 4px 46px 4px;
  padding: 0px;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
}
.mobTabDiv .M_arrow {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #ffdd00;
  padding: 6px 4px 80px;
  top: 40%;
  text-align: center;
  cursor: pointer;
}
.mobTabDiv .M_arrow svg {
  margin-top: 6px;
}
.mobTabDiv .mTab {
  left: 0;
  right: 0;
  text-align: center;
  position: absolute;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  transition: top 0.5s ease-in-out, background 0.5s ease-in-out;
  min-height: 100%;
}
.mobTabDiv .mTab.opened {
  background: #ffdd00;
  color: #111111;
}
.mobTabDiv .mTab b {
  display: block;
  font-size: larger;
  margin: 32px;
  font-weight: 500;
}
.mobTabDiv .mTab .mList {
  display: block;
  left: 0;
  right: 0;
}
.mobTabDiv .mTab .mList .mItem {
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  display: block;
  padding: 8px;
  margin: 0 20px;
}
.mobTabDiv .mTab .mList .mItem:last-child {
  border-bottom: 0px;
}
.mobTabDiv .mTab form input {
  width: 80%;
  padding: 8px 16px;
  border: 0px;
  border-radius: 4px;
  font-weight: 500;
  font-size: smaller;
  background-color: white;
}
/*
@media (max-width: 767px) {
  .TabsApp .tabss {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .TabsApp .panel {
    display: none !important;
  }
}
.TabsApp .mobTabDiv {
  display: none;
}
@media (max-width: 767px) {
  .TabsApp .mobTabDiv {
    display: block;
  }
}*/
