.featured_nav{
	_margin-top: 30px;
	padding: 30px 10px;
	background: #292D3E;
}
.featured_nav ul{
	list-style: none;
	text-align: center;
	padding-left: 0;
}
.featured_nav ul li{
	display: inline-block;
	text-align: center;
	margin-left: 15px;
	margin-right: 15px;
}
.featured_nav ul li a{
	display: block;
	color: #fff;
	padding: 10px;
}
.featured_nav ul li:hover a{
	color: #F07235;
}
.featured_nav ul li img{
	margin-bottom: 5px;
	display: block;
}


.ip-container{
	position: relative;
	top: auto;
	right: auto;
	display: block;
}

.navShowed{
	position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  display: none;
  z-index: 999;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}
.mobile_nav_menu{
	margin-top: 30px;
}
.open-icon{
	font-size: 30px;
	float: right;
	line-height: 25px;
	color: #2B2E81;
	display: none;
	margin-top: 8px;
}
.close-icon{
	font-size: 30px;
	float: right;
	line-height: 25px;
	margin-top: 15px;
	margin-right: 15px;
	color: #2B2E81;
}
.sub_menu_wrap{
  height: 0;
  visibility: hidden;

	-webkit-transition: all  0s  ease-in  0s;
	-moz-transition: all  0s  ease-in  0s;
	-o-transition: all  0s  ease-in  0s;
	-ms-transition: all  0s  ease-in  0s;
	transition: all  0s  ease-in  0s;
}
.show_child_menu .sub_menu_wrap{
  height: auto;
  visibility: visible;
	-webkit-transition: all  0.3s  ease-in  0s;
	-moz-transition: all  0.3s  ease-in  0s;
	-o-transition: all  0.3s  ease-in  0s;
	-ms-transition: all  0.3s  ease-in  0s;
	transition: all  0.3s  ease-in  0s;
}

.hide_clild_menu .sub_menu_wrap{
  height: 0;
	-webkit-transition: all  0s  ease-in  0s;
	-moz-transition: all  0s  ease-in  0s;
	-o-transition: all  0s  ease-in  0s;
	-ms-transition: all  0s  ease-in  0s;
	transition: all  0s  ease-in  0s;
}
.notification-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  _height: 100%;
  overflow: hidden;
  background: #fff;
  z-index: 2000000001 !important;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}

.selected {
  animation: slide-in 0.5s forwards;
  -webkit-animation: slide-in 0.5s forwards;
}

.dismiss {
  animation: slide-out 0.5s forwards;
  -webkit-animation: slide-out 0.5s forwards;
}

@keyframes slide-in {
  0 {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

@-webkit-keyframes slide-in {
  0 {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes slide-out {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

@-webkit-keyframes slide-out {
  0% {
    -webkit-transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
  }
}
