/* #####################################################################################################
   MOBILEMENU
   ##################################################################################################### */

/*--- standard variables ---*/
/* @fontFamily1:        'PT Sans', sans-serif;*/
/*--- product item ratio (thumb + content) ---*/
/*--- media queries. When using responsive ---*/
/*--- media queries. When not using responsive ---
@useResponsive:			false;

@breakPointLargePhone:	~"only screen and (min-width : 1px)";
@breakPointTablet:		~"only screen and (min-width : 1px)";
@breakPointDesktop:		~"only screen and (min-width : 1px)";

@breakPointUpToTablet:	~"only screen and (max-width: 1px)";
@breakPointUpToTabletLand:~"only screen and (max-width: 1023px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 1px)";
*/
/*--- media queries. When using responsive: only mobile & desktop ---
@useResponsive:			false;
@breakPointLargePhone:	~"only screen and (min-width : 480px) and (max-width: 768px )";
@breakPointTablet:		~"only screen and (min-width : 999999999px)";
@breakPointDesktop:		~"only screen and (min-width : 768px)";

@breakPointUpToTablet:	~"only screen and (max-width: 768px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 768px)";
*/
/*--- custom class functions ---*/
/*----- Default functions -----*/
/*----- LESS functions -----*/
.showAllText {
  display: none;
}
@media only screen and (max-width: 1023px) {
  #globalNav {
    display: none;
  }
  #headerWrapper {
    -webkit-transition: transform 400ms ease;
    -moz-transition: transform 400ms ease;
    -o-transition: transform 400ms ease;
    transition: transform 400ms ease;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  #mobileNav:before {
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 4;
  }
  #mobileNav a {
    color: black;
  }
  #mobileNav.parentClick li.more > a {
    padding-right: 30%;
  }
  #mobileNav #accountLinks #LoggedOutOptions,
  #mobileNav #accountLinks #LoggedInOptions {
    font-size: 12px;
    line-height: 20px;
    background: white;
  }
  #mobileNav #accountLinks #LoggedOutOptions:after,
  #mobileNav #accountLinks #LoggedInOptions:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    *zoom: 1;
  }
  #mobileNav #accountLinks #LoggedOutOptions li,
  #mobileNav #accountLinks #LoggedInOptions li {
    float: left;
    width: 50%;
    border-bottom: 1px solid #dedede;
  }
  #mobileNav #accountLinks #LoggedOutOptions li.account,
  #mobileNav #accountLinks #LoggedInOptions li.account {
    float: none;
    width: auto;
    padding: 10px 30px 0 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: none;
  }
  #mobileNav #accountLinks #LoggedOutOptions li a,
  #mobileNav #accountLinks #LoggedInOptions li a {
    font-size: 12px;
    color: #383838;
    text-align: center;
    padding: 0 10px;
    height: 45px;
    line-height: 45px;
    text-transform: initial;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #mobileNav #accountLinks > ul.col-1 {
    display: none;
  }
  #mobileNav .mobileSlidePanel {
    display: none;
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 30px;
    position: relative;
    z-index: 5;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  #mobileNav .mobileSlidePanel.active {
    display: block;
    -webkit-animation: fadeIn 300ms;
    -moz-animation: fadeIn 300ms;
    -ms-animation: fadeIn 300ms;
    -o-animation: fadeIn 300ms;
    animation: fadeIn 300ms;
    -webkit-transform: translate(0px);
    -moz-transform: translate(0px);
    -o-transform: translate(0px);
    -ms-transform: translate(0px);
    transform: translate(0px);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #mobileNav .mobileSlidePanel.slideIn {
    opacity: 0;
  }
  .panelOpen #mobileNav .mobileSlidePanel.slideIn {
    -webkit-transform: translate3d(-170px, 0px, 0px);
    -moz-transform: translate3d(-170px, 0px, 0px);
    -o-transform: translate3d(-170px, 0px, 0px);
    -ms-transform: translate3d(-170px, 0px, 0px);
    transform: translate3d(-170px, 0px, 0px);
  }
  #mobileNav .mobileSlidePanel.slideOut {
    opacity: 0;
  }
  .panelOpen #mobileNav .mobileSlidePanel.slideOut {
    -webkit-transform: translate3d(170px, 0px, 0px);
    -moz-transform: translate3d(170px, 0px, 0px);
    -o-transform: translate3d(170px, 0px, 0px);
    -ms-transform: translate3d(170px, 0px, 0px);
    transform: translate3d(170px, 0px, 0px);
  }
  #mobileNav .mobileSlidePanel .panelBack {
    text-transform: uppercase;
    font-size: 11px;
    color: #383838;
    display: block;
    background: white;
    height: 70px;
    line-height: 72px;
    padding: 0 0 0 22px;
    position: relative;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -ms-touch-action: manipulation;
    touch-action: manipulation;
  }
  #mobileNav .mobileSlidePanel .panelBack:after {
    content: '';
    height: 0;
    width: 0;
    border-right: 7px solid #383838;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    position: absolute;
    top: 50%;
    left: 9px;
    margin-top: -4px;
  }
  #mobileNav .mobileSlidePanel .panelTitle {
    position: relative;
    color: black;
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-transform: initial;
    padding: 15px 0px 15px 20px;
    border-bottom: 1px solid #dedede;
  }
  #mobileNav .mobileSlidePanel .panelTitle.noMargin {
    margin: 0;
  }
  .showAllActive#mobileNav .mobileSlidePanel .panelTitle {
    padding-right: 115px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #mobileNav .mobileSlidePanel .panelTitle .showAllText {
    display: block;
    font-size: 10px;
    position: absolute;
    right: 34px;
    top: 50%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    height: 30px;
    line-height: 30px;
    margin-top: -15px;
  }
  #mobileNav .mobileSlidePanel .panelTitle span {
    font-weight: bold;
    text-transform: initial;
    font-size: 14px;
  }
  #mobileNav .mobileSlidePanel .panelTitle span span {
    text-decoration: underline;
  }
  #mobileNav .mobileSlidePanel a.panelTitle:after {
    content: '';
    height: 0;
    width: 0;
    border-top: 6px solid #f0f0f0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
  }
  #mobileNav .mobileSlidePanel .title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 15px 20px 10px 20px;
    border-bottom: 1px solid #479e4b;
  }
  #mobileNav .mobileSlidePanel .column {
    margin-bottom: 25px;
  }
  #mobileNav .mobileSlidePanel .bannerCol {
    margin-bottom: 0px;
  }
  #mobileNav .mobileSlidePanel a {
    padding: 13px 30px 13px 20px;
    display: block;
    position: relative;
    font-size: 14px;
  }
  #mobileNav .mobileSlidePanel ul:not(.slider) li {
    position: relative;
    border-bottom: 1px solid #dedede;
  }
  #mobileNav .mobileSlidePanel ul:not(.slider) li.more > a:after {
    content: '';
    height: 0;
    width: 0;
    border-left: 4px solid black;
    border-bottom: 3px solid transparent;
    border-top: 3px solid transparent;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
  }
  #mobileNav .mobileSlidePanel ul:not(.slider) li .nextPanel {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    z-index: 10;
    cursor: pointer;
  }
  #mobileNav .mobileSlidePanel ul:not(.slider) li .nextPanel:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 8px;
    width: 26px;
    height: 26px;
    margin-top: -13px;
    background: #f0f0f0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-border-top-right-radius: 50%;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topright: 50%;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 0;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  #mobileNav .mobileSlidePanel ul:not(.slider) li .nextPanel:after {
    content: '';
    height: 0;
    width: 0;
    border-left: 4px solid black;
    border-bottom: 3px solid transparent;
    border-top: 3px solid transparent;
    position: absolute;
    top: 50%;
    right: 19px;
    margin: -3px 0 0 -2px;
  }
  #mobileNav .mobileSlidePanel ul:not(.slider) li ul {
    padding: 0;
  }
  #mobileNav .mobileSlidePanel > ul {
    padding-bottom: 20px;
  }
}
/* barcode scanner in app */

.scanner {
  position: relative;
  z-index: 99;
  text-align: left;
}
.scanner a {
  display: block !important;
  color: white !important;
  line-height: 30px;
  padding: 0 30px;
  margin: 0;
  background: #4ca950 url("../images/svg/qr-code.svg") no-repeat left center;
  background-size: 20px 20px;
}
.scanner.showOnDesktop {
  position: fixed;
  color: white;
  bottom: 20px;
  z-index: 999;
  left: 230px;
  z-index: 999999999;
}
@media only screen and (min-width : 1280px) {
  .scanner.showOnDesktop {
    bottom: 30px;
  }
}
.scanner.showOnDesktop a {
  display: block;
  color: white;
  line-height: 30px;
  padding: 5px 20px 5px 50px;
  margin: 0;
  background: #4ca950 url("../images/svg/qr-code.svg") no-repeat 20px center;
  background-size: 20px 20px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}
.mobileSlidePanel .saleCol {
  display: none !important;
}
#mobileNav.hasScanner:before {
  height: 76px;
}
