:root{
  --dark_blue: #26146c;
  --light_blue: #f3faff;
  --white: #fff;
}

.mobile-menu.new{
  background: var(--light_blue);
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-width: 350px;
  z-index: 9999999999999;
}

.mobile-menu.new .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Begin menu header */
.mobile-menu.new .inner .title-wrap{
  padding: 0 20px; 
  background: var(--dark_blue);
}
.mobile-menu.new .inner .title-wrap > .container {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}
.mobile-menu.new .inner .menu-categories:not(:last-of-type) .title-wrap > .container {
  border-bottom: 1px solid var(--white);
}
.mobile-menu.new .inner .title-wrap-flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.mobile-menu.new .inner .title-wrap-flex .title{
  font-size: 16px;
}

.mobile-menu.new .inner .title-wrap-flex .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
}

.mobile-menu.new .inner .title-wrap-flex .icon i{
  font-size: 18px;
}
/* End menu header */

/* begin first main menu categories */
.mobile-menu.new .menu-categories{
  padding: 20px 0;
}

.mobile-menu.new .menu-categories:not(.active) .title-wrap-flex i {
  transform: rotate(45deg);
}

.mobile-menu.new .menu-categories-wrap{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.new .menu-categories-wrap .main-category-item,
.mobile-menu.new .secondary-menu-wrap .secondary-item,
.mobile-menu.new .menu-categories-wrap .third-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 14px;
  color: var(--dark_blue);
  font-weight: 800;
}

.mobile-menu.new .menu-categories-wrap .main-category-item a,
.mobile-menu.new .secondary-menu-wrap .secondary-item a,
.mobile-menu.new .menu-categories-wrap .third-item a{
  padding: 0;
  font-size: 14px;
  color: var(--dark_blue);
  font-weight: 800;

  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu.new .menu-categories-wrap .main-category-item span{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
/* End first main menu categories */

/* begin menu footer */
.mobile-menu.new .inner .menu-footer-wrap {
  padding: 20px; 
  background: var(--dark_blue);
}

.mobile-menu.new .inner .footer-wrap-flex {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu.new .inner .footer-wrap-flex .footer-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  padding: 16px 0;
  margin: 0;
  border-bottom: 1px solid var(--light_blue);
  font-size: 14px;
  font-weight: 800;
}

.mobile-menu.new .inner .footer-wrap-flex li:last-child .footer-menu-item {
  border-bottom: none;
}

.mobile-menu.new .inner .footer-menu-item i {
  font-size: 20px;
}

.mobile-menu.new .inner .subs-simple-wrap{
  display: flex;
  flex-direction: column;
  gap: 8px;

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
}

.mobile-menu.new .inner .main-menu-item:has(input:checked) .subs-simple-wrap {
  max-height: 1000px;
}
.mobile-menu.new .inner .main-menu-item .close-submenu{
  display: none;
}

.mobile-menu.new .inner .main-menu-item label{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dark_blue);
  font-weight: 800;
  margin-bottom: 10px;
}

.mobile-menu.new .inner .main-menu-item:has(input:checked) .main-link i{
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

.mobile-menu.new .inner .main-menu-item img{
  max-height: 100px;
  width: 100%;
  object-fit: cover;
}

/* End menu footer */