html {
  box-sizing: border-box;
  padding: 0;
}
.no-scroll {
  overflow: hidden;
}
* {
  box-sizing: border-box;
  text-decoration: none;
}
body {
  min-height: 100vh;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  margin: 0;
}
.mainCont {
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
  background-color: #19398a;
}
.leftCont {
  width: 100%;
  min-height: 100vh;
  max-width: 550px;
  background: #19398a;
  background-size: 100% auto;
  text-align: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  color: #424242;
  font-size: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.moreMenu {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
}

.moreMenu .tab_header {
  background: #19398a;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 16px;
  color: white;
  font-size: 12px;
}
.moreMenu .tab_header h3 {
  font-size: 12px;
  margin: 0;
}
.moreMenu .tab_header img {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

.moreMenu .listCont {
  flex: 1;
  background-color: #f2f2f2;
  padding: 16px 12px;
}

.moreMenu .listCont .listSection {
  flex: 1;
  background-color: #ffffff;
  padding: 16px 12px;
  border-radius: 8px;
  padding-bottom: 0px;
}

.moreMenu .listCont .listSection + .listSection {
  margin-top: 16px;
}

.moreMenu .listCont .listSection p {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  color: #333333;
  text-align: left;
}

.moreMenu .listCont .listSection ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 8px 0 0;
}

.moreMenu .listCont .listSection ul li {
  padding: 16px 0;
  font-size: 12px;
  color: #333333;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f3f3f3;
}

.moreMenu .listCont .listSection ul li .arrowImg {
  width: 12px;
  transform: rotate(-90deg);
}

.moreMenu .listCont .listSection ul li a:last-child {
  padding-bottom: 0;
}

.moreMenu .logoutBtn {
  height: 44px;
  padding: 0 24px;
  background-color: #19398a;
  border: 0;
  color: #ffffff;
  border-radius: 4px;
  width: 100%;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 768px) and (orientation: landscape) {
  .rightCont {
    flex: 1;
    background: url(https://images.my11circle.com/website/v2.0/background/iplMainBg2025V1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
