/* main menu
----------------------------*/

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
#cstmenu {
    display: block;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    letter-spacing: normal;
    background: #ea572f;
    position: relative;
    z-index: 9;
}
#cstmenu ul {
    margin: 0 auto;
    padding: 0px;
    text-align: center;
    width: 100%;
    font-size: 0;
    background: #ea572f;
    display: inline-block;
    list-style: none;
    position: relative;
    z-index: 999999990;
    max-width: 1360px;
    border: none;
    border-radius: 0px;
}
#cstmenu li {
    margin: 0;
    padding: 0;
    font-size: 12px;
    display: inline-block;
    *display: inline;
    zoom: 1;
    /*for IE6-7*/
    position: relative;
    color: #eee;
    line-height: 60px;
    vertical-align: middle;
    transition: background-color 0.2s;
    outline: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
#cstmenu .full-width {
    position: static;
}
#cstmenu .over {
    color: #FFF;
    background-color: #ea572f;
}
#cstmenu .over.no-sub {}
#cstmenu .top-heading {
    font-weight: 400;
    margin: 0 16px;
    color: inherit;
    text-decoration: none;
    display: inline-block;
    outline: 0;
    cursor: pointer;
    text-transform: uppercase;
}

/* links of top-heading */

#cstmenu a,
#cstmenu a:link,
#cstmenu a:hover {
    color: inherit;
}
#cstmenu a:hover {
    text-decoration: none;
}
#cstmenu a:focus {
    outline: none;
}


/* caret(arrow icon) */

#cstmenu .caret {
    color: inherit;
    left: -12px;
    width: 0;
    height: 0;
    overflow: hidden;
    /*for IE6*/
    vertical-align: middle;
    margin-bottom: 2px;
    border-top: 4px solid;
    /*caret size is 4px now*/
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    display: inline-block;
    position: relative;
}


/* sub-menu layout
----------------------------*/

#cstmenu .dropdown {
    width: auto;
    left: 0px;
    color: #000;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    overflow: hidden;
    top: 100%;
    border-bottom: 8px solid rgb(249, 192, 164);
    border-top: none;
    border-radius: 0px;
    background-color: transparent;
}
#cstmenu .full-width .dropdown {
    width: 100%;
    padding: 0;
    margin: 0;
}
#cstmenu .offset300 {
    left: -300px;
    right: auto;
}
#cstmenu .right-aligned {
    left: auto;
    right: 0px;
}
#cstmenu .over .dropdown {
    display: block;
}
#cstmenu .dd-inner {
    text-align: center;
    padding: 10px 10px 20px;
    margin: 0px;
    background-color: #FFF;
    white-space: nowrap;
    font-size: 13px;
}
#cstmenu ul ul {
    margin: 0;
    padding: 0;
    text-align: left;
    width: auto;
    background: none;
    border: none;
    display: block;
    position: static;
    z-index: 0;
    border-radius: 0;
}
#cstmenu ul ul li {
    font-size: 13px;
    padding: 6px 0;
    /*It determines the line height*/
    color: inherit;
    line-height: 1;
    margin: 0;
    display: block;
    position: static;
    background: none;
    border: none;
    transition: none;
    border-radius: 0;
}

/* links in sub menu
----------------------------*/
#cstmenu .dropdown a {
    color: #555;
    line-height: 20px;
    text-decoration: none;
    transition: color 0.4s;
    font-size: 15px;
    font-weight: 300;
    text-transform: capitalize;
}
#cstmenu .dropdown a:hover,
#cstmenu .dropdown a:focus {
    text-decoration: none;
}


/* blocks within the sub-menu
-----------------------------*/
#cstmenu .column {
    text-align: left;
    vertical-align: top;
    /*or middle*/
    display: inline-block;
    *display: inline;
    *zoom: 1;
    white-space: normal;
    width: auto;
    min-width: 200px;
    padding: 0 10px;
    border: none;
}
#cstmenu .dd-inner ul:last-child {
    border-right: none;
}
#cstmenu h3 a {
    line-height: 1.1;
    margin: 8px 0px 5px;
    font-weight: 600!important;
    color: #424a52;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid #dadada;
    display: inline-block;
    padding-bottom: 2px;
}
#cstmenu div.column h3 a {
    text-transform: uppercase;
}


/* useful when http://www.menucool.com/ddmenu/one-menu-for-all-pages */
#cstmenuLink {
    display: none;
}


/*######## add additional styles for mobile-friendly responsive menu ########*/
#cstmenu .mobmenuserch {
    display: none;
    /* hide menu icon initially */
}

@media only screen and (min-width: 1025px) {
#cstmenu ul.cstmenuul {
	padding: 0px 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#cstmenu .column {
	min-width: 300px;
}
#cstmenu .column.onefour {
	width: 25%;
}
ul.cstmenuul>li:after {
    position: absolute;
    display: block!important;
    content: "";
    background: #f9c0a4;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    z-index: 10;
}
ul.cstmenuul>li:hover:after {
    width: 100%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
#cstmenu .dropdown {
    margin-top: 0px !important;
}
}


/*styles for mobile*/

@media only screen and (max-width: 1024px) {
#cstmenu .column.mayHide {
	display: none;
}
/*override the original settings*/
#cstmenu ul {
	width: 100%;
	display: none;
	border-radius: 0;
	background: #34495e;
}
#cstmenu li {
	position: relative;
	display: block;
	font-size: 16px;
	text-align: left;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0;
	line-height: 45px;
}
#cstmenu .full-width {
	position: relative;
}
#cstmenu .dropdown {
	position: relative;
	*top: auto;
	/*for IE7*/
	border: none;
	border-radius: 0;
	box-shadow: none;
	background-color: #FFF;
}
#cstmenu .offset300 {
	left: 0;
}
#cstmenu .full-width .dropdown {
	width: auto;
}
#cstmenu .dd-inner {
	margin: 0;
	background: none;
	text-align: left;
}
/*turn each column to list vertically instead of horizontally */
#cstmenu .column {
	width: auto;
	padding: 0;
	border: none;
	display: block;
}
/*move the arrow icon to right*/
#cstmenu .caret {
	position: absolute;
	left: auto;
	right: 14px;
	top: 20px;
	border-width: 5px;
}
/* All the following are for the .menu-icon (pure CSS) */
#cstmenu .mobmenuserch {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 0px;
	box-sizing: border-box;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	line-height: 50px;
}
#cstmenu .mobmenuserch .menu-icon {
    padding-left: 15px;
    padding-right: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #ea572f;
    text-transform: uppercase;
    outline: none;
    border-right: 1px solid #ccc;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	min-width: 132px;
}
#cstmenu .mobmenuserch .menu-icon img {
	margin-right: 15px;
}
.header_cnt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header_cnt .logo {
    margin-top: 0px;
}
.header_cnt .right_sr_sec .icon_up_box.clearfix {
    margin-bottom: 0px;
}
.header_cnt .right_sr_sec .srch_lor_sec.mob_hide {
    display: none;
}
#cstmenu .mobmenuserch .mob_menu_serch {
	display: block;
	width: -webkit-calc(100% - 132px);
	width: -moz-calc(100% - 132px);
	width: calc(100% - 132px);
	outline: none;
	padding: 0px;
	color: #999;
	border: none;
	border-radius: 0px;
}
#cstmenu .mobmenuserch .mob_menu_serch .srch_lor_sec {
    padding: 0px;
}
#cstmenu .mobmenuserch .mob_menu_serch form.product-search-form input.product-search-field {
    border: none !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 18px !important;
    padding: 0 22px !important;
    line-height: 50px !important;
    height: 50px !IMPORTANT;
}
}