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

/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)"; 

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Responsive functions -----*/
#mobileNav {
  display: none;
}
.showAllText {
  display: none;
}
#Form1 {
  width: 100%;
  overflow: hidden;
  background-color: #f8f3ed;
}
#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;
  -ms-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
#mobileNav {
  position: fixed;
  opacity: 0;
  display: none;
  z-index: 1;
  color: white;
  background-color: #00519e;
  top: 0;
  left: 0;
  height: 100%;
  width: 270px;
  overflow-x: hidden;
  -webkit-transition: transform, opacity 400ms ease-in-out;
  -moz-transition: transform, opacity 400ms ease-in-out;
  -ms-transition: transform, opacity 400ms ease-in-out;
  -o-transition: transform, opacity 400ms ease-in-out;
  transition: transform, opacity 400ms ease-in-out;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 768px) {
  #mobileNav {
    width: 500px;
  }
}
#mobileNav:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 57px;
  background: white;
}
#mobileNav a {
  color: white;
}
.mobileNavOpen #mobileNav {
  opacity: 1;
  overflow-y: auto;
  display: block;
  -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  -moz-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  -o-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  -ms-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
.mobileNavOpen #mobileNav .mobilePanel,
.mobileNavOpen #mobileNav .mobilePanel.active {
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -o-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
.mobileNavClosing #mobileNav {
  display: block;
  -webkit-animation: mobileNavClosing 400ms forwards;
  -moz-animation: mobileNavClosing 400ms forwards;
  -ms-animation: mobileNavClosing 400ms forwards;
  -o-animation: mobileNavClosing 400ms forwards;
  animation: mobileNavClosing 400ms forwards;
}
#mobileNav.parentClick li.more > a {
  padding-right: 30%;
}
#mobileNav #LoggedOutOptions,
#mobileNav #LoggedInOptions {
  font-size: 14px;
  line-height: 22px;
  background: #fbf8f4;
}
#mobileNav #LoggedOutOptions:after,
#mobileNav #LoggedInOptions:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  *zoom: 1;
}
#mobileNav #LoggedOutOptions li,
#mobileNav #LoggedInOptions li {
  float: left;
  width: 50%;
  border-bottom: none;
}
#mobileNav #LoggedOutOptions li.account,
#mobileNav #LoggedInOptions li.account {
  float: none;
  width: auto;
  padding: 10px 30px 0 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: none;
}
#mobileNav #LoggedOutOptions li a,
#mobileNav #LoggedInOptions li a {
  font-size: 11px;
  color: #222222;
  text-align: center;
  padding: 0 10px;
  height: 45px;
  line-height: 45px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#mobileNav .mobilePanel {
  display: none;
  font-size: 16px;
  line-height: 24px;
  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 .mobilePanel ul {
  list-style: none;
}
#mobileNav .mobilePanel.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(-30px);
  -moz-transform: translate(-30px);
  -o-transform: translate(-30px);
  -ms-transform: translate(-30px);
  transform: translate(-30px);
  -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 .mobilePanel.slideIn {
  opacity: 0;
}
.mobileNavOpen #mobileNav .mobilePanel.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 .mobilePanel.slideOut {
  opacity: 0;
}
.mobileNavOpen #mobileNav .mobilePanel.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 .mobilePanel .panelBack {
  text-transform: uppercase;
  font-size: 16px;
  color: #222222;
  display: block;
  background: #fbf8f4;
  height: 57px;
  line-height: 57px;
  padding: 0 0 0 25px;
  position: relative;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
#mobileNav .mobilePanel .panelBack:hover {
  background: white;
}
#mobileNav .mobilePanel .panelBack:after {
  content: '';
  height: 14px;
  width: 7px;
  background: url("../images/svg/arrowLeft.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 7.5px;
  margin-top: -7px;
}
#mobileNav .mobilePanel .panelTitle {
  position: relative;
  color: white;
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px 25px;
  border-bottom: 1px solid #00498f;
}
#mobileNav .mobilePanel .panelTitle.noMargin {
  margin: 0;
}
.showAllActive#mobileNav .mobilePanel .panelTitle {
  padding-right: 115px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#mobileNav .mobilePanel .panelTitle .showAllText {
  display: block;
  font-size: 12px;
  position: absolute;
  right: 34px;
  top: 50%;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  height: 30px;
  line-height: 30px;
  margin-top: -15px;
}
#mobileNav .mobilePanel .panelTitle > span {
  margin-left: 5px;
}
#mobileNav .mobilePanel .panelTitle span {
  font-weight: 400;
  text-transform: lowercase;
  font-size: 14px;
}
#mobileNav .mobilePanel .panelTitle span span {
  text-decoration: underline;
}
#mobileNav .mobilePanel a.panelTitle:after {
  content: '';
  height: 10px;
  width: 18px;
  background: url("../images/svg/arrowDownWhite.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -5px;
}
#mobileNav .mobilePanel .title {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  padding: 15px 20px 10px 20px;
  border-bottom: 1px solid #00498f;
}
#mobileNav .mobilePanel .column {
  margin-bottom: 25px;
}
#mobileNav .mobilePanel a {
  padding: 16.5px 35px 16.5px 25px;
  display: block;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  -webkit-transition: all 100ms ease-out;
  -moz-transition: all 100ms ease-out;
  -o-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
  /*-moz-backface-visibility: hidden;*/

  /*.textOverflowEllipsis();*/

}
#mobileNav .mobilePanel a:hover {
  background: #00498f;
  text-decoration: none;
}
#mobileNav .mobilePanel ul li {
  position: relative;
  border-bottom: 1px solid #00498f;
}
#mobileNav .mobilePanel ul li#homeLi {
  background: white;
}
#mobileNav .mobilePanel ul li#homeLi a {
  color: #222222;
  background: white;
}
#mobileNav .mobilePanel ul li#homeLi a:hover {
  background: white;
}
#mobileNav .mobilePanel ul li.more > a:after {
  content: '';
  height: 18px;
  width: 10px;
  background: url("../images/svg/arrowRightWhite.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
}
#mobileNav .mobilePanel ul 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 .mobilePanel ul li .nextPanel:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  background: #f3eade;
  -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;
}
#mobileNav .mobilePanel ul li .nextPanel:after {
  content: '';
  height: 0;
  width: 0;
  border-left: 4px solid white;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
  position: absolute;
  top: 50%;
  right: 19px;
  margin: -3px 0 0 -2px;
}
#mobileNav .mobilePanel ul li ul {
  padding: 0;
}
#pageContainer {
  position: relative;
  background: #fbf8f4;
  z-index: 2;
  width: 100%;
  padding: 57px 0 0 0;
  overflow: hidden;
  -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;
}
.mobileNavOpen #pageContainer,
.mobileNavOpen #headerWrapper {
  -webkit-transform: translate3d(270px, 0, 0) scale3d(1, 1, 1);
  -moz-transform: translate3d(270px, 0, 0) scale3d(1, 1, 1);
  -o-transform: translate3d(270px, 0, 0) scale3d(1, 1, 1);
  -ms-transform: translate3d(270px, 0, 0) scale3d(1, 1, 1);
  transform: translate3d(270px, 0, 0) scale3d(1, 1, 1);
}
@media only screen and (min-width: 768px) {
  .mobileNavOpen #pageContainer,
  .mobileNavOpen #headerWrapper {
    -webkit-transform: translate3d(500px, 0, 0) scale3d(1, 1, 1);
    -moz-transform: translate3d(500px, 0, 0) scale3d(1, 1, 1);
    -o-transform: translate3d(500px, 0, 0) scale3d(1, 1, 1);
    -ms-transform: translate3d(500px, 0, 0) scale3d(1, 1, 1);
    transform: translate3d(500px, 0, 0) scale3d(1, 1, 1);
  }
}
.no-csstransforms3d.mobileNavOpen #pageContainer,
.no-csstransforms3d.mobileNavOpen #headerWrapper {
  margin-left: 270px;
}
@media only screen and (min-width: 768px) {
  .no-csstransforms3d.mobileNavOpen #pageContainer,
  .no-csstransforms3d.mobileNavOpen #headerWrapper {
    margin-left: 400px;
  }
}
/*Animations
---------------------------------------------------------------------- */

/*fadeIn*/

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*fadeOut*/

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*mobileNavClosing*/

@keyframes mobileNavClosing {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@-moz-keyframes mobileNavClosing {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@-webkit-keyframes mobileNavClosing {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@-ms-keyframes mobileNavClosing {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@-o-keyframes mobileNavClosing {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
