.ddsmoothmenu{float: left; padding-top:47px;  position: relative;}
.ddsmoothmenu > ul > li{ float: left; height: 53px;}
.ddsmoothmenu > ul > li + li{ margin-left:50px;}
.ddsmoothmenu ul li a{font-family: 'Roboto Condensed', sans-serif; font-weight:700; font-size:32px; color: #fff; display: block; text-transform: uppercase;}

/* sub menus */
.ddsmoothmenu .menu_wrap{width:789px; position: absolute; top: 100px !important; left: 10px !important; border: 1px solid #cccccc; background-color: #fff; background-image: url(../images/border.jpg),  url(../images/border.jpg); background-position: 261px top, 522px top; background-repeat: repeat-y; min-height:420px;}
.ddsmoothmenu .menu_wrap:before{ content:"Product Categories"; display: block; background:#e6e6e6; font-size:23px; color: #333333; padding-left: 33px; height:58px; line-height:
 56px; font-family: 'Roboto Condensed', sans-serif; font-weight:700; width: 490px;}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul{width: 261px; padding-top:15px;}
.ddsmoothmenu ul li ul li ul{top: 58px; position: absolute; left: 261px; display: none; border: none; min-height:263px;}



/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{ color: #000; font-family: 'Roboto Condensed', sans-serif; font-weight:500; font-size:16px; display: block; text-transform: uppercase; padding: 9px 10px 8px 33px; box-sizing:border-box;}
.ddsmoothmenu ul li ul li li{ padding: 0 1px;}
.ddsmoothmenu ul li ul li li a{ background: #fff; text-transform:capitalize; padding: 7px 10px 7px 33px;}
.menu_wrap .hover li:hover > a,
.menu_wrap .hover > a{ background: #ff7800; color: #fff;}
.menu_wrap .hover.menu-item a img,
.menu_wrap .hover ul{ display: block}


.ddsmoothmenu > ul > .menu-item-has-children > a{ position: relative; padding-right:10px;}
.ddsmoothmenu > ul > .menu-item-has-children > a span:after{background: url(../images/drop-down.png) no-repeat; width:13px; height:8px; display: block; content: ""; position: absolute; right:-10px; top:15px;}

/* ######### CSS classes applied to dbaown and right arrow images  ######### */
.ddsmoothmenu .menu-item a img{ display: none; position: absolute; right:0px; top:0px; max-height:420px; max-width:266px;}
.menu-item a.menu-image-title-after.menu-image-not-hovered img, .menu-item a.menu-image-hovered.menu-image-title-after .menu-image-hover-wrapper{ padding: 0px !important;}

.downarrowclass{
position: absolute;
top: 12px;
right: 7px;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

.leftarrowclass{
margin-right: 5px;
}

/* ######### Mobile menu container CSS ######### */

div.ddsmoothmobile{ /* main mobile menu container */
background: #414141;
color: white;
position: fixed;
top: 0;
left: 0;
width: 200px; /* width of mobile menu */
height: 300px;
overflow: hidden;
visibility: hidden;
border-radius: 0 0 10px 0;
box-shadow: 0 0 10px gray;
}

div.ddsmoothmobile a{
color: white;
text-decoration: none;
}

div.ddsmoothmobile div.topulsdiv{ /* Single DIV that surrounds all top level ULs before being flattened, or the ULs on the "frontpage" of the menu */
position: relative;
background: #414141;
overflow-y: auto;
width: 100%;
height: 100%;
}


div.ddsmoothmobile ul{ /* style for all ULs in general inside mobile menu */
list-style: none;
width: 100%;
top: 0;
left: 0;
background: #414141;
margin: 0;
padding: 0;
}

div.ddsmoothmobile div.topulsdiv ul.submenu{ /* top level ULs style */
}


div.ddsmoothmobile ul.submenu{ /* sub level ULs style */
position: absolute;
height: 100%;
overflow-y: auto;
}

div.ddsmoothmobile ul li{
border-bottom: 1px solid gray;
position: relative;
font-weight: bold;
}

div.ddsmoothmobile ul li.breadcrumb{ /* breadcrumb LI that's added to the top of every sub level UL */
cursor: pointer;
padding: 10px;
background: black;
}

div.ddsmoothmobile ul li a{
display: block;
padding: 6px;
}

div.ddsmoothmobile ul li a:hover{
background: black;
}

/* ############# Animated Drawer icon (mobile menu toggler) CSS ############# */

.animateddrawer{
	font-size: 10px; /* Base font size. Adjust this value to modify size of drawer icon */
  width: 3em; 
  height: 2.8em; 
  outline: none;
	position: fixed; /* BY default, make toggler fixed on screen */
	display: none;
	top: 10px; /* Position at upper right corner */
	right: 10px;
	background: white;
	z-index: 1000;
}

.animateddrawer:before, .animateddrawer:after{
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 0.6em; /* height of top and bottom drawer line */
  background: black;
  border-radius: 2px;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in; /* set transition type and time */
  transition: all 0.3s ease-in; 
}

.animateddrawer:after{
  top: auto;
  bottom: 0;
}

.animateddrawer span{
  width: 100%;
  height: 0.6em; /* height of middle drawer line */
  background: black;
  position: absolute;
  top: 50%;
  margin-top: -0.3em; /* set this to - half of middle drawer line height */
  border-radius: 2px;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease-in 0.3s; /* set transition type and time */
  transition: all 0.3s ease-in 0.3s;
}

.animateddrawer span::after{
  content: '';
  display: block;
  width: 100%;
  height: 0.6em; /* height of middle drawer line */
  background: black;
  border-radius: 2px;
  position: absolute;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease-in 0.3s; /* set transition type and time */
  transition: all 0.3s ease-in 0.3s;
}

.animateddrawer.open{
}

.animateddrawer.open:before{ /* style when .open class is added to button */
  top: 50%;
  margin-top: -0.3em; /* set this to - half of top drawer line height */
  opacity: 0;
}

.animateddrawer.open:after{ /* style when .open class is added to button */
  bottom: 50%;
  opacity: 0;
}

.animateddrawer.open span{ /* style when .open class is added to button */
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animateddrawer.open span:after{ /* style when .open class is added to button */
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
