:root {
  --mainmenu: rgba(255, 255, 255, 0.0);
  --menulinkcolor: #333333;
  --linkBgColor: rgb(246, 246, 247);
  --linkBradius: 0.625rem;
  --link-act: #1877F2;
  /* #FF5733*/
  --icon-color: #fff;

}


/* Mobile Menu ============================================= */
.mobile-menu {
  bottom: 24px !important;
  width: 95%;
  margin: 0% 2%;
  display: none;
  z-index: 2;
  padding: 0px !important;
  overflow: hidden;
  height: 100%;
  	    position: fixed;
    left: 0;
	height: auto;
}

.mobile-menu .radius {
  border-radius: 0px;
}

.mobile-menu .tab-bar {
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0px 0px 3px var(--primary-color) !important;
}

.mobile-menu .radius .tab:active::before {
  border-radius: 0px !important;
}

.mobile-menu .border .tab {
  border: 1px solid #5fef8d;
  border-right: none;
}

.mobile-menu .border .tab:last-child {
  border-right: 1px solid #5fef8d;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}

.mobile-menu .border .tab:first-child {
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}

.mobile-menu .border .tab:active::before {
  border-radius: inherit !important;
}

.mobile-menu .tab-bar {
  background-color: var(--secondary-color);
  padding: 0px;
  box-shadow: none;
  display: flex;
  justify-content: space-around;
  margin: 0px;
  color: black;
  z-index: 9;
  position: fixed;
  bottom: 13px;
  width: 95%;
}

.mobile-menu .tab-bar .tab {
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 60px;
  background: inherit;
  padding: 5px;
  display: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s;
  color: var(--icon-color) !important;
}

.mobile-menu .tab-bar .tab::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 10px;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  border-bottom: none;
  background-color: var(--white-color);
  bottom: -8px;
  opacity: 0;
  margin: auto;
}

.mobile-menu .tab-bar .tab:active::before {
  background-color: var(--white-color);
  color: var(--white-color);
  border-top-left-radius: 200px !important;
  border-top-right-radius: 200px !important;

}

.mobile-menu .tab-bar .tab:hover::before {
  opacity: 1;
  bottom: 0px;
  color: var(--white-color);
}


.mobile-menu .tab-bar .tab::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  color: inherit;
  font-size: 10px;
  opacity: 0;
  color: var(--white-color);
}

.mobile-menu .tab-bar .tab:hover {
  padding-top: 15px;
  color: var(--white-color);
}

.mobile-menu .tab-bar .tab:hover::after {
  opacity: 1;
  top: 0px;
}

.mobile-menu .tab-bar .tab.selected {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 0;
  padding-top: 15px;
}

.mobile-menu .tab-bar .tab.selected::after {
  opacity: 1;
  top: 0px;
  color: var(--white-color);
}

.mobile-menu .tab-bar .tab.selected::before {
  opacity: 1;
  bottom: 0px;
  background-color: var(--white-color);
}

.mobile-menu .tab-bar .tab .icon {
  color: inherit;
  z-index: 10;
  font-size: 24px;
  display: inherit;
  color: var(--icon-color);
}

.mobile-menu .tab-bar .tab:hover .icon {
  color: var(--white-color);
}

.mobile-menu .tab-bar .tab.selected .icon {
  color: var(--white-color);
}

.mobile-menu .tab-bar .tab.selected:hover .icon {
  color: var(--white-color);
}

.mobile-menu .tab-bar .tab .icon img {
  margin: auto;
  height: 24px;
}

.mobile-menu .tab-bar .tab .icon .las {
  font-size: 32px;
}

.mobile-panel {
  position: absolute;
  bottom: 12px;
  display: none;
  background: #fff;
  background-image: url(../img/color-bg.svg);
  background-size: contain;
  width: 100%;
  padding-bottom: 50px;
  z-index: -1;
  border-radius: 25px 25px 0px 0px;
  padding: 20px 25px 30px 25px;
}

.mobile-panel h2 {
  margin-top: 0px;
}

.mobile-panel a {
  display: block;
  width: 100%;
  color: var(--secondary-color);
  font-size: 16px;
}

.mobile-panel a:hover {
  color: var(--primary-color);
}

.mobile-panel ul {
  list-style: none;
  display: flex !important;
  height: 170px;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0px 0px 0px 25px;
  margin-top: 10px;
}

.mobile-panel ul li {
  width: 50%;
  position: relative;
  padding: 5px 0px;
}

.mobile-panel ul li:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  left: -24px;
  background-image: url(../img/check-icon.svg);
  top: 12px;
}

.mobile-menu .pannel-bg {
  display: none;
  transition: var(--transaction);
}

.pannel-bg-act .pannel-bg {
  display: block !important;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: rgba(0, 0, 0, 0.5);
  transition: var(--transaction);
}

.pannel-body-act {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  -webkit-transition: 0.3s -webkit-filter linear;
  -o-transition: 0.3s -o-filter linear;
  margin-top: -50px;
}

.loa-popup-content {
  position: absolute !important;
  width: 100% !important;
  overflow: visible !important;
  height: auto !important;
  border-radius: 25px 25px 0 0 !important;
}

#mmPopup1, #mmPopup2, #mmPopup3, #mmPopup4, #mmPopup5 {
  position: fixed;
  bottom: 32px;
  width: 95%;
}

@media only screen and (min-width:300px) and (max-width:767px) {
 
  .mobile-menu {display: block; transition: var(--transaction); height: auto; }

  footer .mobile-menu  ul{    list-style: none;
    display: flex !important;
    height: 240px; max-height: 240px;
    flex-wrap: wrap;
    padding: 0 0 0 25px;
    margin-top: 10px;
}
.elementor-widget-mobile-menu-widget{ z-index: 9999;}
footer {padding-bottom: 70px;}
.btn-whatsapp-pulse, .show-mobiletab{ display: none;}


}

@media only screen and (min-width:300px) and (max-width:360px) {
  footer .mobile-menu ul{ line-height: 25px;}
  .mobile-panel a{ font-size: 14px;}
  

}