
@media (min-width: 320px) {
::-webkit-input-placeholder {
   color: #666;
    font-family: 'roboto', sans-serif;
font-style: italic;
}
:-moz-placeholder { /* Firefox 18- */
   color: #666;
    font-family: 'roboto', sans-serif;
font-style: italic;
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #666;
    font-family: 'roboto', sans-serif;
font-style: italic;
}
:-ms-input-placeholder {  
   color: #666;
    font-family: 'roboto', sans-serif;
font-style: italic;
}

.headerContainer {
    text-align: left!important;
}
input#SearchText:focus::-webkit-input-placeholder { color:transparent; }
input#SearchText:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
input#SearchText:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
input#SearchText:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */
input#SearchText:focus {
    outline-color: #f1df1b;
}

/* Flex-box css ************************************************************************/
.col {
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}
.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.flex-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
}

.flex-last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.flex-unordered {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
      -ms-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -webkit-align-content: flex-start !important;
      -ms-flex-line-pack: start !important;
          align-content: flex-start !important;
}

.align-content-end {
  -webkit-align-content: flex-end !important;
      -ms-flex-line-pack: end !important;
          align-content: flex-end !important;
}

.align-content-center {
  -webkit-align-content: center !important;
      -ms-flex-line-pack: center !important;
          align-content: center !important;
}

.align-content-between {
  -webkit-align-content: space-between !important;
      -ms-flex-line-pack: justify !important;
          align-content: space-between !important;
}

.align-content-around {
  -webkit-align-content: space-around !important;
      -ms-flex-line-pack: distribute !important;
          align-content: space-around !important;
}

.align-content-stretch {
  -webkit-align-content: stretch !important;
      -ms-flex-line-pack: stretch !important;
          align-content: stretch !important;
}

.align-self-auto {
  -webkit-align-self: auto !important;
      -ms-flex-item-align: auto !important;
              -ms-grid-row-align: auto !important;
          align-self: auto !important;
}

.align-self-start {
  -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
          align-self: flex-start !important;
}

.align-self-end {
  -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
          align-self: flex-end !important;
}

.align-self-center {
  -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
              -ms-grid-row-align: center !important;
          align-self: center !important;
}

.align-self-baseline {
  -webkit-align-self: baseline !important;
      -ms-flex-item-align: baseline !important;
          align-self: baseline !important;
}

.align-self-stretch {
  -webkit-align-self: stretch !important;
      -ms-flex-item-align: stretch !important;
              -ms-grid-row-align: stretch !important;
          align-self: stretch !important;
}

/* Flex-box css ************************************************************************/





.header {
    left: 0;
    width: 100%;
    font-family: roboto;
}

.rightmenu {
    position: absolute;
    right: 0;
}

.TopMenu {
    font-size: 13px;
    margin: 0 0 0 auto;
    clear: right;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.TopMenu,.TopMenu a{color: #ffffff;}
.TopMenu ul {
    padding: 0;
    margin: 0;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.TopMenu li {
    display: inline-block;
    white-space: nowrap;
    list-style: none;
    margin: 0px 1px 0 0;
    font-weight: 500;
    line-height: 14px;
    padding: 7px 15px 7px 15px;
    border-right: 1px solid #516b92;
}
.TopMenu li .icon{margin-right:5px}
.TopMenu li.First a{border-left:0}
.TopMenu li.last{padding-right:0;margin-right: 0px;}
.TopMenu .CartLink .items {
    width: 25px;
    height: 25px;
    line-height: 27px;
    margin-left: 5px;
    text-align: center;
    display: inline-block;
    zoom: 1;
    background-color: #fff200;
    color: #06162e;
    border-radius: 50%;
}
.TopMenu .CartLink .c-items {
    width: 25px;
    height: 25px;
    line-height: 27px;
    margin-left: 5px;
    text-align: center;
    display: inline-block;
    zoom: 1;
    background-color: #fff200;
    color: #06162e;
    border-radius: 50%;
}
.TopMenu .CartLink a{color: #ffffff;}
.TopMenu a{padding:0;margin:0;position:relative;display: block;}
.TopMenu li.last a{*display:inline;*zoom:1}

.normalPhone:before{content:'\f095';font-family:'FontAwesome';margin-right:3px;color: #ffffff;}
.responsivePhone{display:none}
.responsivePhone:before{content:'\f095';font-family:'FontAwesome';font-size: 24px;display:block;margin-bottom: 0px;}
.getQuote > a:before{content:'\f1d8';font-family:'FontAwesome';margin-right:3px;color: #ffffff;display:inline-block;}
.getQuote{border-left: 0px solid #e0e0e0;}
.myAccount a:before {
    content: '\f007';
    font-family: 'FontAwesome';
    margin-right: 5px;
    height: 10px;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
}

.myAccount.acct a:before {
    content: '\f009';
    font-family: 'FontAwesome';
    margin-right: 5px;
    height: 10px;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
}
.viewAccnt a:before {
    content: '\f040';
    font-family: 'FontAwesome';
    margin-right: 3px;
    height: 10px;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
}
.myAccount{border-left: 0px solid #e0e0e0;}
.welcome-box {
    display: flex;
}
span.welcome {
    margin-right: 6px;
    color: #fff200;
    font-style: italic;
}
li.myAccount.acct {
    /*display: none;*/
}
.loggedin li.myAccount.acct {
    display: inline-block;
}
.myAccount .Cat1 {
    font-weight: 500;
    font-size: 13px;
}
.responsiveCart:before{content:'\f07a';font-family:'FontAwesome';font-size: 24px;display:block;margin-bottom: 0px;}
.normalCart:before {
    content: '\f07a';
    font-family: 'FontAwesome';
    color: #ffffff;
    display: inline-block;
    margin-right: 3px;
    font-size: 16px;
}
.phoneIcon {
    color: #ffffff;
}
#phoneTablet,#cartTablet{display:none}
.responsiveCart,.responsivePhone{display:none}
.last.CartLink {
    border-right: 0px solid #e0e0e0;
}

ul.fixed.sm-icons {
    position: fixed;
    margin: 0;
    top: 200px;
    right: 0;
    z-index: 10000000;
	padding:0px;
}
ul.fixed.sm-icons a{
	color:#fff;
}
ul.fixed.sm-icons i {
    font-size: 30px;
}
ul.fixed.sm-icons li {
    padding: 7px;
}
ul.fixed.sm-icons li:hover {
    opacity: .8;
}
li.fb {
    background: #3b5998;
}
li.tw {
    background: #00aced;
}
li.yt {
    background: #cb2027;
}
li.lk {
    background: #0077b5;
}








h1, .h1 {
    margin: 0;
    margin-bottom: .7em;
    color: #000;
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
    text-rendering: optimizeLegibility;
}
a:hover {
    text-decoration: none;
}
.caret{
margin-left: 0px!important;
}
.hidden_menu {
    width: 324px;
    margin-left: -253px;
    top: 24px;
    position: absolute;
    display: none;
    text-decoration: none;
    list-style-type: none;
    z-index: 1001;
}
.row.lower {
    background: #f7f7f7;
    border-bottom: 1px solid rgba(221, 221, 221, 0.3);
    /* background: url(images/bg.png) top center; */
    /* display: none; */
}
.menu_button:focus, .menu_button:hover {
    color: #224671!important;
    text-decoration: none!important;
    outline: none!important;
}



.right {
    padding-right: 0px!important;

}
.wrapper {
    font-size: 16px;
    left: 0;
    width: 100%;
    z-index: 99;
}


.tophead {
    background-color: transparent!important;
    border: none!important;
}
.mid {
    background: #ffffff;
}
.mid .container {
    /* padding: 0px 15px!important; */
    /* width: 100%!important; */
    /* max-width: 100%!important; */
}
.col1 {
    margin-right: auto;
}

.fship {
    float: right;
}
.cart i.material-icons {
    font-size: 20px;
    vertical-align: top;
    color: #e1e1e1;
}


span.items {
    color: #e1e1e1;
    font-weight: bold;
    padding-right: 2px;
    font-size: 14px;
}
span.c-items {
    color: #e1e1e1;
    font-weight: bold;
    padding-right: 2px;
    font-size: 14px;
}
.row.top {
    padding: 0 0px!important;
    margin: 0px!important;
}
.header-middle {
    position: relative;
}
.bottom {
    background: #0f3974;
}
.bottom .container {
    padding: 0 15px!important;
    /* width: 100%!important; */
    /* max-width: 100%!important; */
}
.bottomlinks {
    text-align: right;
    white-space: nowrap;
    margin-left: auto;
    padding-right: 0px;
}
.bottomlinks-sidebar a {
    display: block;
    font-size: 1.5em;
    padding: 5px 0;
}
ul.navlinks-sidebar {
    padding: 0px;
}
ul.navlinks-sidebar a {
    display: block;
    font-size: 1.5em;
    padding: 5px 0;
}
.sidebar-above {
    display: none;

}
.bottomlinks i {
    font-size: 20px;
    vertical-align: top;
    line-height: 22px;
}
.bottomlinks a:first-child {
    margin-left: auto;
}
.bottomlinks a {
    color: #103160;
    font-size: 16px;
    font-weight: 400;
    padding: 14px 15px 13px 15px;
    transition: all .3s;
}
.bottomlinks a:hover {
    background: #0f3974;
    color: white;
}
.bottomlinks a span {
    color: #666;
    padding-left: 3px;
}
.logo {
    display: inline-block;
    z-index: 99;
    padding-left: 0px;
    vertical-align: middle;
    padding: 0 25px 0 15px;
    margin-top: -30px;
}
.logo img {
    width: 195px;
}
a.free {
    color: #c4622d;
    /* float: right; */
    font-size: 13px;
    font-weight: 700;
    padding: 5px;
    text-align: center;
    display: block;
    /* text-transform: uppercase; */
    /* font-family: roboto condensed; */
}
a.free span {
    color: #0f0a0a;
    font-size: 13px;
    text-transform: none;
}

.topsearch {
    position: relative;
    margin-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #192c48;
    padding-left: 0px;
    padding-right: 9px;
    border-radius: 3px;
}

.user-name {
    float: right;
    margin-top: 5px;
    display: none;
}
.myaccnt {
    float: right;
    padding-left: 10px;
    margin-top: 5px;
    display: none;
}
span.b-user:before {
   /*  content: "Welcome ";*/
    padding-right: 4px;
}
a.lowercta {
    padding: 5px;
    display: block;
}
.tag {
    /* display: inline-block; */
    /* vertical-align: middle; */
    float: left;
    /* display: none; */
}
.tagline {
    font-size: 12px;
    /* width: 490px; */
    padding-top: 8px;
    padding-bottom: 10px;
    line-height: 17px;
    padding-left: 0px;
    color: #605f5e;
    font-weight: 600;

}
.tagline span {
    padding-right: 3px;
}
span.color1 {
    color: #00417e;
    font-weight: 700;
}
span.color2 {
    color: #111;
    font-weight: 600;
}
.searchby {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 15px;
    /* border: 1px solid #777777; */
    /* max-width: 750px; */
}
#SearchText {
    width: calc(100% - 44px);
    float: left;
    background: #ffffff;
    border: 0px solid #0f3974;
    font-size: 16px;
    text-indent: 15px;
    height: 42px;
    overflow: hidden;
    animation: blink-caret .75s step-end infinite;

}
#SearchText:focus {
    outline: none;
}
.sbutton {
    display: block;
    width: 44px;
    height: 42px;
    padding: 0px 0 0px;
    background: #ffffff;
    border: 0px solid #6cb7d6;
    border-radius: 0px!important;
    border-left: 0!important;
    font-size: 16px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}
.sbutton i {
    font-size: 26px;
    color: #0f3974;
    line-height: 42px;
    font-weight: 600;
}
.dropdown i.fa.fa-caret-down {
    font-size: 12px;
}
li.dropdown:hover ul.dropdown-menu {
    display: block!important;
    background: rgba(58, 58, 58, 0.99);
    padding-bottom: 20px;
}
li.dropdown:hover {
    cursor: pointer;
}
.navbar-nav>li {
    float: left;
    /* width: 15%; */
}
ul.dropdown-menu span {
    display: block;
    color: #298fc2;
    font-weight: bold;
    /* font-size: 16px; */
    line-height: 20px;
}
ul.dropdown-menu ul {
    padding-left: 10px;
}

.outernav {
    float: left;
    width: 100%;
}
.lower .nav {
    font-family: arial;
}

.nav .material-icons {
    text-align: center;
    font-size: 20px!important;
    vertical-align: middle;
    line-height: 20px;
}

ul.nav.navbar-nav {
    margin: 0px!important;
    display: none;
}
.navbar-default {
    /* color: #fff; */
    border: none!important;
    box-shadow: none!important;
    min-height: 0px!important;
    margin-bottom: 0px!important;
    background-color: transparent;
}

.navbar-default .navbar-nav > li > a {
    color: #fbfbfb;
    font-size: 19px;
    text-shadow: none;
    text-align: center;
    white-space: nowrap;
    padding: 15px 15px;
    font-weight: 500;
    font-family: 'Roboto Condensed', sans-serif;
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    background-color: transparent!important;
    color: #fff;
    text-shadow: none!important;
    background-image: none!important;
}

.downloads .dropdown-menu>li>a:before {
    content: "\E415";
    font-family: 'Material Icons';
    display: inline-block;
    color: #666;
    font-size: 18px;
	padding-right: 3px;
    vertical-align: top;
}
li.dropdown:hover {
    /* background: #fff; */
    cursor: pointer;
}


.navbar-default .navbar-nav  li:last-child a  {
    border-right: none;
}
.navbar-default .navbar-nav > li:first-child a {
    border-left: none;
    padding-left: 5px;
}

.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
    background: transparent!important;
    transition: all .5s;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
    color: #ddd!important;
    text-decoration: none;
    background-color: transparent;
}
.navbar-default .navbar-nav > .dropdown > a .caret {
    border-top-color: #fff;
    border-bottom-color: #fff;
}

.navbar-default .navbar-brand{
	color:#fff;
}
li.dropdown:hover ul.dropdown-menu {
display: block!important;
}

a.pcat {
    color: #fff!important;
    text-shadow: none!important;
    font-size: 18px;
    font-weight: 400;
    padding-left: 15px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-right: 15px;
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}
a.pcat:after {
    color: #fff004;
}
li.dropdown.menu-large:hover {
    /* background: #0f3974; */
    transition: all .5s;
}
li.dropdown.menu-large:hover .pcat {
    color: #ffffff!important;
    background: #0f3974;
}

.browse {
    display: inline-block;
    padding: 12px 30px 12px 25px;
    /* background: #0b2862; */
    color: #ffffff;
    line-height: 18px;
    font-size: 16px;
    text-align: left;
}
.browse:hover {
    cursor: default;
}
ul.topmenu2 {
    margin: 0px;
    list-style: none;
    padding: 0px;
    margin-right: auto;
}
.dropdown-toggle.pcat {
    color: #ffffff;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    padding: 10px 30px 8px 20px;
    border: 1px solid transparent;
    background: #0f3974;
    transition: all .3s;
}
.menu-large {
    /* position: static !important; */
}
.megamenu{
  padding: 20px 0px;
  width:100%;
}
.megamenu> li > ul {
  padding: 0;
  margin: 0;
}
.megamenu> li > ul > li {
  list-style: none;
}
.megamenu> li > ul > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #333333;
    white-space: normal;
    font-size: 12px;
}
.megamenu> li ul > li > a:hover,
.megamenu> li ul > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.megamenu.disabled > a,
.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
  color: #999999;
}
.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.megamenu.dropdown-header {
  color: #428bca;
  font-size: 18px;
}
.dropdown-header {
    padding: 3px 0px;
    font-size: 15px;
    color: #298fc2;
    font-weight: bold;
}
.nonproduct {
    min-width: 500px;
}
.nonproduct li a {
    line-height: 15px!important;
    display: block;
    padding: 4px 0;
    color: #ffffff!important;
    /* background: #ffffff; */
}
.nav li {
    list-style: none!important;
}
a#dLabel {
    cursor: pointer;
}
.quick:hover .qo {
    /*display: block!important; */
}
#dLabel:focus {
    outline: none;
}

.dropdown-menu.qo {
    padding: 10px!important;
    padding-top: 20px!important;
    width: 230px!important;
    border: none!important;
    margin-left: 0px!important;
    margin-top: 0px!important;
    min-width: 200px!important;
    background: #ffffff;
    z-index: 9999;
    font-family: arial!important;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.39);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.39);
}

.quicklabel, .quicklabel2 {
    color: #605f5e;
    line-height: 15px;
    font-size: 14px;
    font-weight: bold;
}
.innerbox input[type="text"] {
    margin-bottom: 5px;
    margin-top: 5px;
    width: 95%;
    background: #f9f9f9;
}

.innerbox #quickorderbutton {
    /* width: 97%; */
    float: left;
    color: #ffffff;
    border: 0px solid #227ca9;
    padding: 9px 34px;
    margin: 7px 0px 19px 0px;
    background: #0f3974;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 600;
}
.fullpad {
    color: #757575!important;
    font-size: 12px;
    padding: 5px 1px 5px 3px!important;
    width: 100%;
    display: block;
    font-weight: 600;
    text-align: left;
	margin-top: 10px!important;
}
a.fullpad:hover {
    color: #fff;
}





/*footer */
.footerlinks a {
    font-size: 16px;
    color: #fff;
    padding: 10px 15px;
}
	.footerlinks {
    padding: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
footer.footer {
    background: #06162e;
}
div#headerfooter_tr_8 {
    display: none;
}
div#headerfooter_tr_10 {
    display: none;
}

.copyright {
    color: #eee;
    padding: 0 40px;
    font-size: 13px;
    padding: 20px;
}
.copyright a {
    color: #EF6C00;
    text-decoration: underline;
}


}


@media (min-width: 577px) {
.logo-m  {
	display:none;
}
}

@media (min-width: 768px) {

.logo.mobile {
    display: none;
}
.tagline {
    font-size: 13px;
}
.TopTickerRight {
    float: right;
    padding: 15px 0 0px 0;
    font-size: 20px;
    font-weight: 500;
    color: #f7f7f7;
}

ul.nav.navbar-nav {
    display: block;
}

#foot-navigation .main-menu {
    width: 25%;
}
}


@media (min-width: 1000px) {
.user-name {
    display: block;
}
.myaccnt {
    display: block;
}
.searchrow {
    width: 85%;
}

span.tag4 {
    color: #298fc2;
}


}


@media (min-width: 1200px) {

.navbar-default .navbar-nav > li > a {
    font-size: 20px;
}

}
@media screen and (max-width: 1200px) {

.logo {
    padding: 0 15px 0 15px;
}
.bottomlinks {
    padding-right: 20px;
}

}

@media screen and (max-width: 1024px) {
.flex-sm-wrap {
  -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important;
}
.col-sm-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
}
li.js-drawermenu-store-phone-container, li.myAccount {
    display: none;
}
.normalCart, .normalPhone, li.getQuote{display:none}
.responsiveCart{
    display: block;
    font-size: 11px;
    line-height: 19px;
}
.responsivePhone {
    display: block;
    font-size: 11px;
    line-height: 19px;
}
.TopMenu a {
    line-height: 19px;
}
.myAccount a:before{content:'\f007';font-family:'FontAwesome';margin-right:0px;margin-bottom: 0px;height: auto;font-size: 24px;display: block;}
.myAccount .Cat1 {
    font-weight: normal;
    font-size: 11px!important;
    text-transform: uppercase;
    line-height: 19px!important;
}
.loggedin li.myAccount.acct {
    display: none;
}
.col2 {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.logo {
    margin-top: -36px;
}
.logo img {
    width: 158px;
}
.TopMenu {
    padding: 5px 0;
}
.TopMenu ul {

    margin-left: auto;
}
.TopMenu li {
    margin: 5px 10px 0 0;
    padding: 0 0 0 20px;
    background: transparent;
    border: none;
    text-align: center;
}
.last.CartLink, .myAccount {
    border: none;
}
.welcome-box {
    display: inline-block;
}
span.welcome {
    display: none;
}
.bottomlinks.d-flex {
    display: none!important;
}
.topsearch {
    margin-top: 18px;
}
.searchby {
    margin-left: 0px;
}

.sidebar-above {
    display: block!important;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}
.sidebar-above .h4{
text-transform: uppercase;
    color: #757575;
}
.sidebar-above a {
    color: #298fc2;
}


.navbar-toggle {
    display: block;
}
.navbar-collapse.table2.collapse {
display: none!important;
}

.navbar-collapse.table2.collapse.in {
    display: block!important;
    visibility: visible;
}

.fship {
 float: none; 
}

.tagline {
    padding-top: 0px;
}
ul.fixed.sm-icons {
    display: none;
}
li.viewAccnt {display: none;}

li.acct {display: none;}

li.dropdown.menu-large {
    display: none;
}
}

@media screen and (max-width: 767px) {
.logo.desk {
    display: none;
}
.bottomlinks {
    display: none!important;
}
}

@media screen and (max-width: 576px) {
.col2, .col1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    padding: 0 0px;
    margin-left: 0px;
}
.browse {
    padding: 12px 15px;
    color: #fff200;
}

.col.col2 {
     padding: 0px; 
}
.mid .container {
    padding: 0px 0px!important;
}
.logo {
    display:none;
}
.logo-m  {
	display:block;
}
.logo-m h1 {
    margin: 0px;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    max-width: 140px;
}
.logo-m h1 a {
    color: white;
}
.topsearch {
	border-radius: 0px;
	margin-top: 0px;
	padding-right: 9px;
	padding-left: 9px;
	padding-bottom: 9px;
	padding-top: 9px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
ul.topmenu2 {
    max-width: 100%;
    width: 100%;
	-webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
}
.myAccount a:before {
    font-size: 18px;
}
.responsivePhone:before {
    font-size: 24px;
}
.responsiveCart:before {
    font-size: 18px;
}
.TopMenu ul {
    float: none;
}

.TopMenu a {
    font-weight: normal;
    font-size: 11px!important;
    text-transform: uppercase;
    line-height: 19px;
}
.footerlinks.d-flex.align-items-center {
    display: block!important;
}
.footerlinks a {
    display: block;
}


tr.table-row.amount-row td {
    border: none;
}
tr.table-row.amount-row td:first-child {
    display: none;
}
.row.export-buttons {
    display: block;
}
.btn.btn-csv, .btn.btn-pdf {
    padding: 1px 7px;
	margin: 5px;
}
}


@media screen and (max-width: 320px) {
.TopMenu li {
    margin: 5px 0px 0 0!important;
}
}




