/* Hide / Show tab's content  */

.tab-content {
  display: none;
  width: 100%;
  max-height: 100%;
  background: #fff;
  border-radius: 12px;
}
.tab-title img {
  background: #fff;
  width: 30px;
  height: 30px;
  padding: 4px;
  border-radius: 0px;
  margin-right: 9px;
}
.tab-content ul li a {
  color: #000;
  text-decoration: none;
  padding:0 10px;
}
a.tab-title {
  text-decoration: none;
  color: black;
}
a.tab-title:focus {
  color: #303091;
}
a.tab-title span i {
  font-size: 14px;
  position: relative;
  top: 0px;
  left: 5px;
}
ul.dropdown-menu.sm-menu.megamenu {
  min-width: 41rem !important;
}
ul.dropdown-menu.sm-menu.megamenu .tab-content ul li:first-child:hover{
	border-top-right-radius:0px;
	border-top-left-radius:0px;
}
ul.dropdown-menu.sm-menu.megamenu .tab-content ul li:last-child:hover{
	border-bottom-right-radius:0px;
	border-bottom-left-radius:0px;
}
.tab.active + .tab-content { display: block; color: #303091; text-align: left;}
.tab:active {
  color: #303091;
}
/* Styling tabs - this is enough for mobile - just like an accordion */

.tab, .tab-content { padding: 10px; } 
.tab { background: #fff; text-align: left;}
.tab-content { background: #fff; }
.tab-content ul{padding-left:0;}
::marker {
  text-decoration: none;
  color: white;
}

    ul .list-icon-add li::marker {
    text-decoration: none;
    color: #000  !important;
}


.megamenu a:hover{
color: #303091;
}

/* Styling for desktop - vertical tabs */

@media (min-width: 992px) {
  .tab { width: 100% }
  .tab-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    min-height: 100%;
    overflow-y: visible;
    line-height: 30px;
  }
/*   this is optional */
  .tabs-container { 
    min-height: 400px; 
    background: #fff;
  }
}
@media (max-width:767px) {
  ul.dropdown-menu.sm-menu.megamenu {
    min-width: 4rem !important;
  }
  .tabs-container { 
    min-height: 400px; 
    background: #252575;
    color: #fff;
  }
  .tab { background: #252575; color: #fff; }
  .tab-content { 
    background: #252575; 
    color: #fff;
    line-height: 30px; 
  }
  a.tab-title {
    color: #fff;
  }
  .tab-content ul li a {
    color: #ffffff;
    text-decoration: none;
}
.tab-title img {
  background: #fff;
  width: 30px;
  height: 30px;
  padding: 4px;
  border-radius: 50px;
  margin-right: 9px;
}
.megamenu a:hover{
  color: #ffffff;
  }
}
