

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
a:active,
a:hover {
  outline: 0;
}
a.nav-expander {
    background:url(../img/rightmenuicon.png) no-repeat center center;
    color: #e74b10;
    height: 40px;
    width: 40px;
    display: block;
    margin-right: 0px;
    margin-top: 0px;
    padding-top: 0px;
    position: absolute;
    right: 0;
    text-decoration: none;
    text-transform: uppercase;
    top: 0;
    transition: right 0.3s ease-in-out 0s;
    z-index: 12;
    transition: right 0.3s ease-in-out 0s;
    -webkit-transition: right 0.3s ease-in-out 0s;
    -moz-transition: right 0.3s ease-in-out 0s;
    -o-transition: right 0.3s ease-in-out 0s;

}
a.nav-expander:hover {
    cursor: pointer;
}

a.nav-expander.fixed {
    position: relative;
}
.nav-expanded a.nav-expander.fixed {
    right: 0em;
	/*Setting it to 20em will lead to left side animation with menu*/
}
.rightmenunav {
    background: #f2f9fe;
    display: block;
    height: 100%;
    overflow: auto;
    position: fixed;
    right: -300px;
    font-size: 15px;
    top: 0;
    width: 290px;
    z-index: 2000;
    transition: right 0.3s ease-in-out 0s;
    -webkit-transition: right 0.3s ease-in-out 0s;
    -moz-transition: right 0.3s ease-in-out 0s;
    -o-transition: right 0.3s ease-in-out 0s;
    box-shadow: 0 0px 20px rgb(0 0 0 / 20%)
	

}
.nav-expanded .rightmenunav {
    right: 0;
}

body.nav-expanded {
    margin-left: 0em;
    transition: right 0.4s ease-in-out 0s;
    -webkit-transition: right 0.4s ease-in-out 0s;
    -moz-transition: right 0.4s ease-in-out 0s;
    -o-transition: right 0.4s ease-in-out 0s;
}
#nav-close {
    font-weight: 500;
    font-size: 16px;
    color:#e83870;
    padding-right: 0px;
    z-index:999999999;
}
.main-menu {
    padding: 0px 0px;
}
.main-menu li:first-child {
    padding: 10px 15px 15px 15px !important;
}
.main-menu li {
    font-size: 18px;
	font-weight: 300;
    padding: 0px 20px 15px 20px !important;
    text-align: left;
    display: block !important;
	border-bottom: dotted 0px #b4b8b7;
}
.main-menu li a {
    color: #000;
    text-decoration: none;
    outline: none;
}
.main-menu li a:hover {
    color: #2396d8;
    text-decoration: none;
    outline: none;
}
.main-menu li li a {
    color: #000;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 14px;
    outline: none;
	padding: 5px 0px;
}
.main-menu li li a:hover {
    color: #2396d8;
    text-decoration: none;
}
.main-menu li .sub-nav {
    margin-top: 5px;
    border-bottom: 0px;
    padding: 2px 0px !important;
}
.main-menu a .caret {
    width: 0;
    height: 0;
    display: inline-block;
    vertical-align: top;
    border-top: 4px solid #727376;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
    right:20px;
    position:absolute;
    margin-top: 9px;
}
.main-menu a:hover .caret {
	border-top-color: #e83870;
}
.main-menu li.open > a > .caret {
	border-top: none;
	border-bottom: 4px solid #727376;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.main-menu li.open > a:hover > .caret {
	border-bottom-color: #e83870;
}
.icon:before {
    font-family: 'FontAwesome';
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    content: '\f105';
}
.main-menu li > a > span.icon {
    float: right;
    margin: 0.1em 1.7em -0.1em 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}
.main-menu li > a:hover > span.icon {
    float: right;
    margin: 0.1em 0.8em -0.1em 0;
    opacity: 1;
}


@media (max-width: 800px) {
 a.nav-expander {
  margin-right: 0px;
}

}













