/****************************
-- Header --
****************************/
#header {
  max-width: 1440px;
  position: absolute;
  top:0;
  width: 100%;
  z-index: 8000;
  -webkit-transform: translateZ(0);
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}

/* Load Animation */
.on-load-anim #header {
  opacity: 0;
}

.on-load-anim.wf-active #header.loaded {
  -webkit-animation: fadeInFromTop 600ms cubic-bezier(1,0,.5,.1) 500ms forwards;
  animation: fadeInFromTop 600ms cubic-bezier(1,0,.5,.1) 500ms forwards;
}
/* /Load Animation */

#header.fixed {
  background-color: #fff;
  box-shadow: 0 0 7px 0 rgba(0,0,0,0.3);
  position: fixed;
}

#header .wrapper {
  max-width: 1150px;
  padding: 0 15px;
}

#header .arlo-logo {
  position: relative;
  width: 111px;
}

#header.fixed .arlo-logo {
  width: 99px;
}

#header.plain-logo .arlo-logo { /* For Landings mainly */
  width: 180px;
}

#header .arlo-logo a {
  display: block;
  margin-top: 12px;
  padding: 5px 0;
  position: relative;
  width: 100%;
}

#header.fixed .arlo-logo a {
  margin-top: 0;
  padding: 12px 0;
}

#header.plain-logo .arlo-logo a { /* For Landings mainly */
  margin-top: 60px;
}

#header .arlo-logo svg,
#header .arlo-logo .svg-fallback img {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.no-svg #header .arlo-logo > a > .icon-logo,
.no-svg #header .arlo-logo > a > .icon-arlo {
  display: none;
}

#header .arlo-logo .svg-fallback img.fixed {
  display: none;
}

#header.fixed .arlo-logo .svg-fallback img {
  display: none;
}

#header.fixed .arlo-logo .svg-fallback img.fixed {
  display: block;
}

#header .icon-logo {
  float: left;
  height: 0;
  padding-bottom: 27.62%;
  position: relative;
  width: 53.15%;
}

#header .icon-logo svg {
  fill: #fff;
}

#header.fixed .icon-logo svg,
.top-white #header .icon-logo svg {
  fill: #00a84f;
}

#header .icon-arlo {
  height: 0;
  margin-top: -1px;
  padding-bottom: 21.16%;
  position: absolute;
  right: 0;
  width: 49.55%;
}

#header .icon-arlo svg {
  fill: #fff;
}

#header.fixed .icon-arlo svg,
.top-white #header .icon-arlo svg {
  fill: #000;
}

/* Main Nav / Menu - Small Res */
#header .toggleNav {
  height: 16px;
  margin-top: -8px;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 50%;
  width: 18px;
  z-index: 1;
}

.toggleNav:after {
  content: 'm';
  color: #fff;
  font-family: arloicons;
  font-size: 16px;
  line-height: 16px;
  -webkit-transition: color 200ms ease, -webkit-transform 300ms ease;
  transition: color 200ms ease,  transform 300ms ease;
}

.menu-open .toggleNav:after {
  content: 'x';
  -webkit-transform: skew(180deg);
  -ms-transform: skew(180deg);
  transform: skew(180deg); 
}

#header.fixed .toggleNav:after,
.top-white #header .toggleNav:after {
  color: #00a84f;
}

#menu .specialclose {
  padding-left: 30px;
  top: 7px;
  position: absolute;
}

body > #menu {
  background-color: #06a94e;
  border-left: 1px solid #0f6d35;
  opacity: 0.75;
  padding-bottom: 40px;
  padding-top: 25px;
  position: fixed;
  right: 0;
  top: 0;
  width: 68.75%;
  z-index: 1;

  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: -webkit-transform 200ms ease, opacity 200ms ease;
  transition: -ms-transform 200ms ease, opacity 200ms ease;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-open > #menu {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

body > #menu > ul {
  height: 100%;
  overflow: auto;
  padding: 8px 29px;
}

body > #menu h4 {
  border-bottom: 1px solid #40b973;
  position: relative;
}

body > #menu .cta:after {
  color: #0f6d35;
  content: '+';
  font-family: arloicons;
  font-size: 16px;
  height: 16px;
  line-height: 16px;
  margin-top: -8px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  width: 16px;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
}

body > #menu .cta.active:after {
  content: '-';
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg); 
}

body > #menu h4 a {
  color: #fff;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  padding: 0.625em 0;
}

body > #menu .dropdown {
  border-bottom: 1px solid #40b973;
  display: none;
  padding: 7px 0 10px;
}

body > #menu .dropdown a {
  color: #0f6d35;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.43em 0;
}

body > #menu .dropdown h5 {
  font-size: 14px;
  font-size: 1.4rem;
}

body > #menu .dropdown h5 a {
  color: #fff;
}

body > #menu .dropdown h5 + ul {
  margin: 0 0 5px 15px;
}

body > #menu .btn {
  margin-top: 19px;
}

body > #menu .last {
  float: none;
}

body > #menu .last h4 {
  border: 0;
  position: static;
}

body > #menu .sep {
  margin: 0;
  padding: 0;
  position: static;
}

body > #menu .sep:after {
  border: 0;
}

body > #menu .reg {
  bottom: 16px;
  color: #0f6d35;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  padding:0;
  position: absolute;
}

body > #menu .last:last-child .reg {
  right: 29px;
}

/* Main Nav / Menu - Big Res */
#header #menu {
  position: absolute;
  right: 15px;
  top: 0;
  -webkit-transition: right 200ms ease, top 200ms ease;
  transition: right 200ms ease, top 200ms ease;
}

#header #menu > ul > li {
  float: left;
  margin-left: 30px;
  padding-top: 40px;
  position: relative;
  -webkit-transition: margin 200ms ease-in-out, padding 200ms ease-in-out;
  transition: margin 200ms ease-in-out, padding 200ms ease-in-out;
}

#header #menu > ul > li:first-child {
  margin: 0;
}

#header #menu li.last {
  margin-left: 20px;
  margin-top: 40px;
  padding-top: 0;
}

#header #menu li.sep {
  margin-left: 30px;
  padding-left: 30px;
  position: relative;
}

#header #menu li.sep:after {
  background-color: #c9c9c9;
  content: '';
  height: 20px;
  left: 0;
  margin-top: -10px;
  position: absolute;
  top: 50%;;
  transition: background-color 200ms ease-in-out, margin 200ms ease-in-out;
  width: 1px;
  z-index: 1;
}

#header #menu .section {
  padding-top: 0;
}

#header #menu .section a {
  color: #fff;
  display: block;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 500;
  padding: 57px 0 24px;
  transition: color 200ms ease-in-out, padding 200ms ease-in-out;
}

#header #menu .section:before {
  color: #fff;
  content: 's';
  font-family: arloicons;
  font-size: 10px;
  font-size: 1rem;
  left: 50%;
  margin-left: -16px;
  position: absolute;
  text-align: center;
  top: -11px;
  width: 32px;
  transition: color 200ms ease, top 200ms ease, opacity 200ms ease;
}

#header #menu .section.active:before,
#header #menu .section:hover:before {
  top: -1px;
}

#header #menu .section.active:before {
  opacity: 0.5;
}

#header #menu .section.active:hover:before {
  opacity: 1;
}

#header.fixed #menu .section:before,
.top-white #header #menu .section:before {
  color: #06a94e;
}

#header.fixed #menu .section h4 a,
.top-white #header #menu .section h4 a {
  color: #06a14e;
}

#header #menu .dropdown {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
  left: 50%;
  margin: 0 0 0 -103px;
  opacity: 0;
  position: absolute;
  top: 100%;;
  visibility: hidden;
  width: 205px;
  -webkit-transition: visibility 0s linear 200ms, opacity 200ms linear;
  transition: visibility 0s linear 200ms, opacity 200ms linear;
}

#header #menu .has-dd:hover .dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

#header #menu .dropdown:before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 25px 25px 0 0 / 13px 13px 0 0;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
  content: '';
  height: 7px;
  left: 50%;
  margin-left: -12px;
  position: absolute;
  top: -6px;
  width: 25px;
}

#header.fixed #menu .dropdown {
  margin-top: -8px;
}

/*#header.fixed #menu .dropdown:before {
  background-color: #06a14e;
}*/

#header #menu .dropdown > ul {
  background-color: #fff;
  border-radius: 7px;
  padding: 12px 20px 14px;
  position: relative;
}

/*#header.fixed #menu .dropdown > ul {
  background-color: #06a14e;
}*/

#header #menu .dropdown a {
  color: #717171;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 2px 0;
}

#header #menu .dropdown a:hover {
  text-shadow: 0 0 5px rgba(113,113,113,0.2);
}

/*#header.fixed #menu .dropdown a {
  color: #176c37;
}

#header.fixed #menu .dropdown a:hover {
  text-shadow: 0 0 5px rgba(23,108,55,0.2);
}*/

#header #menu .dropdown h5 a {
  color: #00a04f;
  padding: 3px 0;
}

#header #menu .dropdown h5 a:hover {
  text-shadow: 0 0 5px rgba(0,160,79,0.3);
}

/*#header.fixed #menu .dropdown h5 a {
  color: #fff;
}

#header.fixed #menu .dropdown h5 a:hover {
  text-shadow: 0 0 5px rgba(255,255,255,0.5);
}*/

#header #menu .dropdown h5 + ul {
  margin: 0 0 3px 15px;
}

#header #menu .reg {
  color: #fff;
  display: block;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 17px 0;
  transition: color 200ms ease-in-out, margin 200ms ease-in-out, padding 200ms ease-in-out;
}

#header #menu .reg:hover {
  text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

#header.fixed #menu .reg,
.top-white #header #menu .reg {
  color: #717171;
}

/*---------------------
Country Select
---------------------*/
#header .countryselector {
  background-color: #f0f0f0;
  position: relative;
  z-index: 1;
  width: 100%;
}

#header #country-default {
  color: #868686;
  cursor: pointer;
  float: right;
  padding: 0 9px 0 15px;
  position: relative;
  text-align: left;
  transition: all 200ms ease 0s;
}

#header #country-default:after {
  content: 'u';
  color: #868686;
  display: inline-block;
  font-family: arloicons;
  font-size: 6px;
  font-weight: 700;
  line-height: 1.25;
  position: static;
  right: 0;
  transition: margin-bottom 200ms ease 0s;
  vertical-align: middle;
}

#header #country-default:hover:after {
  margin-bottom: 4px;
}

#header #country-selector.inactive #country-default:after {
  content: 'l';
}

#header #country-selector.inactive #country-default:hover:after {
  margin-bottom: -4px;
}

#header .country-name {
  display: inline-block;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 25px;
  margin: 0 4px 0 10px;
  vertical-align: middle;
}

#header #country-default img {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 18px;
}

#header #country-default .round-icon {
  display: none;
}

#header #country-default .small-icon {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

#header #country-list-wrap {
  clear: both;
  color: #828282;
  margin: 0 -15px;
  overflow: hidden;
  position: relative;
}

#header #country-list-wrap:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjcwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(70%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1)));
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 70%,rgba(255,255,255,1) 100%);
  bottom: 1px;
  content: 'l';
  font-family: arloicons;
  font-size: 5px;
  font-size: 0.5rem;
  left: 0;
  line-height: 1;
  padding: 45px 0 15px;
  position: absolute;
  right: 0;
  text-align: center;
  transition: all 200ms ease;
}

#header #country-list-wrap.at-bottom:after {
  height: 0;
  opacity: 0;
  padding: 0 0 10px;
}

#header #country-list {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  max-height: 195px;
  overflow: auto;
  padding: 10px 0 15px;
  position: relative;
  transition: all 200ms ease;
  /* box-sizing: content-box; Had to use this for a bug in IE9, it changed to content-box when hovering on <li> */
}

#header #country-selector.inactive #country-list {
  border-bottom: 0;
  margin: 0;
  max-height: 0;
  padding: 0;
}

#header #country-selector.active #country-list {
  height: 195px;
  max-height: none;
  padding: 10px 0 15px;
}

#header #country-list.empty {
  border-color: #fff;
  border-bottom: 0;
  border-top: 0;
}

#header #country-list li {
  color: #06A94E;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  overflow: hidden;
  padding: 0 15px 0 19px;
}

#header #country-list li.hover {
  background-color: #f6f6f6;
}

#header #country-list li:first-child { /* This was originally a padding: 5px 0; on the <ul> but the padding bottom didn't show on some browsers */
  margin-top: 5px;
}

#header #country-list li:last-child {
}

#header #country-list li a {
  color: #06A94E;
  display:inline-block;
  padding: 5px 0;
  text-align: left;
  width:100%;
}

#header #country-list li a img {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
}

#header .countrynamelist {
  display: inline-block;
  line-height: 20px;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 14px;
}

/****************************
-- Media Queries --
****************************/
@media screen and (min-width: 40.0625em) {
  /*---------------------
  Header
  ---------------------*/
  #header .arlo-logo {
    max-width: 220px;
    min-width: 140px;
    width: 17.1875%;
  }

  #header.fixed .arlo-logo {
    width: 153px;
  }
}

@media screen and (min-width: 56.25em) {
  #header .arlo-logo a {
    margin-top: 35px;
  }

  #header.fixed .arlo-logo a {
    margin-top: 0;
    padding: 20px 0;
  }

  /*---------------------
  Menu
  ---------------------*/
  #header.fixed #menu {
    right: 190px;
  }

  #header.fixed #menu > ul > li {
    padding-top: 15px;
  }

  #header.fixed #menu .section {
    padding-top: 0;
  }

  #header.fixed #menu .last {
    margin-top: 0;
    padding-top: 0;
  }

  #header.fixed #menu h4 a {
    padding: 32px 0;
  }

  .desktop #header .toggleNav {
    display: none;
  }

  /*---------------------
  Country Select
  ---------------------*/
  .desktop #header #country-selector {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
    position: absolute;
    right: 15px;
    top: -1px;
    transition: all 200ms ease;
  }

  .desktop #header #country-selector.inactive {
    box-shadow: none;
  }

  .desktop #header #country-selector.inactive:hover {
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
  }

  .desktop #header #country-default .round-icon {
    box-sizing: content-box;
    display: inline-block;
    height: 15px;
    padding: 10px 0;
    vertical-align: middle;
    transition: padding 200ms ease;
    width: auto;
  }

  .desktop #header #country-default .small-icon {
    display: none;
  }

  .desktop #header .country-name {
    color: #4e4e4e;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-left: 6px;
    text-transform: uppercase;
    width: 90px;
  }

  .desktop #header #country-default:after {
    color: #4e4e4e;
    font-size: 4px;
  }

  .desktop #header #country-list-wrap {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
    margin: 0;
    margin-top: 25px;
    overflow: visible;
    position: absolute;
    right: 0;
    top: 100%;
    transition: margin 200ms ease;
    width: 240px;
  }

  .desktop #header #country-selector.inactive #country-list-wrap {
    border: 0;
  }

  .desktop #header #country-selector.active #country-list-wrap {
    border: 1px solid #ddd;
  }

  .desktop #header #country-list-wrap:after {
    border-radius: 0 0 6px 6px;
  }  

  .desktop #header #country-list-wrap:before {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 25px 25px 0 0 / 13px 13px 0 0;
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
    content: '';
    height: 7px;
    position: absolute;
    right: 50px;
    top: -6px;
    width: 25px;
  }

  .desktop #header #country-selector.inactive #country-list-wrap:before,
  .desktop #header #country-selector.inactive #country-list-wrap:after {
    display: none;
  }

  .desktop #header #country-list-wrap .inner {
    border-radius: 6px;
    overflow: hidden;
  }

  .desktop #header #country-list {
    background-color: #fff;
    border-radius: 6px;
    max-height: 185px;
    padding: 3px 0 8px;
  }

  .desktop #header #country-selector.active #country-list {
    height: 185px;
    padding: 3px 0 8px;
  }

  /* Fixed */
  .desktop #header.fixed #country-selector {
    border-radius: 22px;
    top: 18px;
  }

  .desktop #header.fixed #country-selector #country-default {
    transition: opacity 200ms ease;
  }

  .desktop #header.fixed #country-default .round-icon {
    padding: 15px 0;
  }

  .desktop #header.fixed .country-name {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.1;
  }

  .desktop #header.fixed .country-name,
  .desktop #header.fixed #country-default:after {
    opacity: 0.6;
    transition: all 200ms ease;
  }

  .desktop #header.fixed #country-selector:hover .country-name,
  .desktop #header.fixed #country-selector:hover #country-default:after {
    opacity: 1;
  }

  .desktop #header.fixed #country-list-wrap {
    margin-top: 10px;
  }
}