/****************************
-- Header Mobile --
****************************/
.hh #header {
  height: 50px;
}

.mobile_header {
  background-color: #fff;
  box-shadow: 0 0 3px 1px rgba(0,0,0,0.1);
  display: none;
  height: 50px;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 100;
}

#header.unfixed .mobile_header {
  position: absolute;
}

.hh .mobile_header {
  display: block;
}

.mobile_header > .container {
  background-color: #fff;
  height: 100%;
  z-index: 2;
}

.mobile_header_products_toggle {
  color: #6B6B6B;
  font-size: 10px;
  font-weight: 700;
  left: 20px;
  line-height: 50px;
  padding-right: 13px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
}

.mobile_header_products_toggle.active {
  color: #06a84e;
}

.mobile_header_products_toggle:after {
  content: '\f107';
  font-family: 'arloicons';
  font-size: 12px;
  position: absolute;
  right: 0;
}

.mobile_header_products_toggle.active:after {
  content: '\f106';
}

.mobile_header_logo {
  height: 50px;
  left: 50%;
  padding: 11px 0;
  position: absolute;
  transform: translateX(-50%);
}

.mobile_header_logo img {
  max-height: 100%;
}

.mobile_header_menu_toggle {
  font-size: 0;
  height: 50px;
  position: absolute;
  right: 20px;
  width: 18px;
}

.mobile_header_menu_toggle span,
.mobile_header_menu_toggle span:before,
.mobile_header_menu_toggle span:after {
  background: #6B6B6B;
  content: '';
  height: 1px;
  position: absolute;
  left: 0;
  width: 100%;
}

.mobile_header_menu_toggle span {
  top: 25px;

  -webkit-transition: background 0s 300ms;
  transition: background 0s 300ms;
}

.mobile_header_menu_toggle span:before,
.mobile_header_menu_toggle span:after {
  -webkit-transition-duration: 300ms, 300ms;
  transition-duration: 300ms, 300ms;
  -webkit-transition-delay: 300ms, 0s;
  transition-delay: 300ms, 0s;
}

.mobile_header_menu_toggle span:before {
  top: -5px;

  -webkit-transition-property: top, -webkit-transform;
  -ms-transition-property: top, -ms-transform;
  transition-property: top, transform;
}

.mobile_header_menu_toggle span:after {
  bottom: -5px;

  -webkit-transition-property: bottom, -webkit-transform;
  -ms-transition-property: bottom, -ms-transform;
  transition-property: bottom, transform;
}

.mobile_header_menu_toggle.active span {
  background: 0;
}

.mobile_header_menu_toggle.active span:before,
.mobile_header_menu_toggle.active span:after {
  -webkit-transition-delay: 0s, 300ms;
  transition-delay: 0s, 300ms;
}

.mobile_header_menu_toggle.active span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile_header_menu_toggle.active span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Shared Menu Styles */
.mobile_header_menu_nav,
.mobile_header_products_nav {
  background-color: #fff;
  box-shadow: 0 0 3px 1px rgba(0,0,0,0.1);
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 50px;
  visibility: hidden;
  z-index: 1;

  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
  transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
}

#header.unfixed .mobile_header_menu_nav,
#header.unfixed .mobile_header_products_nav {
  position: absolute;
}

.mobile_header_menu_nav.active,
.mobile_header_products_nav.active {
  opacity: 1;
  visibility: visible;

  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.mobile_header_menu_nav .overlay,
.mobile_header_products_nav .overlay {
  height: 100%;
  left: 0;
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 0;

  background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}

/* Mobile Menu */
.mobile_header_menu_nav ul {
  background-color: #fff;
  border-bottom: 1px solid #e1e1e1;
  list-style-type: none;
  margin: 0;
  padding: 35px 0 25px;
  position: relative;
  z-index: 1;
}

.mobile_header_menu_nav li {
  text-align: center;
}

.mobile_header_menu_nav li a {
  color: rgba(51,51,51,0.8);
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
}

.mobile_header_country {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.mobile_header_country_cta {
  display: block;
}

.mobile_header_country_cta:after {
    content: '\f107';
    font-family: 'arloicons';
    font-size: 12px;
    color: rgba(51,51,51,0.6);
}

.mobile_header_country_cta.active:after {
    content: '\f106';
}

.mobile_header_country_cta span, #country-list-mobile li a span{
  color: rgba(51,51,51,0.6);
  font-size: 15px;
  line-height: 1;
  padding: 13px 13px 13px 0;
  position: relative;
}

#country-list-mobile li a div {
  transform: translateY(25%) scale(0.5, 0.5);
  -ms-transform: translateY(25%) scale(0.5, 0.5);
  -webkit-transform: translateY(25%) scale(0.5, 0.5);
}

.mobile_header_country_cta span: after {
  content: '\f107';
  font-family: 'arloicons';
  font-size: 12px;
  position: absolute;
  right: 0;
}

.mobile_header_country_select {
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

/* Mobile Product Nav */
.mobile_header_products_nav ul {
  background-color: #fff;
  list-style-type: none;
  margin: 0;
  padding: 16px 0 20px;
  position: relative;
  z-index: 1;
}

.mobile_header_products_nav li {
  margin-bottom: 11px;
}

.mobile_header_products_nav li a {
  display: block;
}

.mobile_header_products_nav a .img-wrap {
  float: left;
  height: 50px;
  margin-right: 5px;
  padding: 0;
  width: 50px;
}

.mobile_header_products_nav a .img-wrap img {
  max-height: 80%;
  max-width: 80%;
}

.mobile_header_products_nav a span {
  color: rgba(51,51,51,0.6);
  float: left;
  font-size: 11px;
  font-weight: 700;
  line-height: 50px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .mobile_header_products_toggle {
    left: 30px;
  }

  .mobile_header_menu_toggle {
    right: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .mobile_header_products_toggle {
    left: 40px;
  }

  .mobile_header_menu_toggle {
    right: 40px;
  }
}

@media screen and (min-width: 1440px) {
  .mobile_header_products_toggle {
    left: 0;
  }

  .mobile_header_menu_toggle {
    right: 0;
  }
}

/****************************
-- Header Desktop --
****************************/
.desktop #header {
  height: 80px;
}

.desktop_header {
  display: none;
  height: 80px;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 100;

  -webkit-transition: height 300ms ease;
  transition: height 300ms ease;
}

#header.unfixed .desktop_header {
  position: absolute;
}

.desktop .desktop_header {
  display: block;
}

.desktop_header .container {
  box-shadow: 0 0 3px 1px rgba(0,0,0,0.1);
  background-color: #fff;
  padding: 0 30px 0 0;
  max-width: 1440px;
}

@media screen and (min-width: 1280px) {
  .desktop_header .container {
    padding: 0 40px;
  }
}

/* First */
.desktop_header_first {
  float: left;
}

.desktop_header_logo {
  float: left;
  padding: 0 3px 0 8px;
}

.desktop_header_logo img {
  height: 80px;
  padding: 16px 0;

  -webkit-transition: height 300ms ease, padding 300ms ease;
  transition: height 300ms ease, padding 300ms ease;
}

.desktop_header_nav {
  float: left;
}

.desktop_header_nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.desktop_header_nav_item {
  float: left;
  margin-left: 30px;
}

.desktop_header_nav_item > a {
  color: rgba(51,51,51,0.8);
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  padding: 32px 0;
  text-transform: uppercase;

  -webkit-transition: padding 300ms ease;
  transition: padding 300ms ease;
}

.desktop_header_nav_item:hover > a {
  color: #06a84e;
}

/* Products Nav */
.desktop_header_products_nav {
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
  transition: opacity 450ms ease, transform 450ms ease, visibility 0ms linear 300ms;
}

.desktop_header_products_toggle:hover .desktop_header_products_nav {
  opacity: 1;
  visibility: visible;

  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.desktop_header_products_nav .container:after {
  content: '';
  height: 100%;
  left: 0;
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 0;

  background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}

.desktop_header_nav .desktop_header_products_nav_list {
  padding-bottom: 30px;
  text-align: center;
  width: 100%;
}

.desktop_header_products_nav_list li {
  display: inline-block;
  max-width: 185px;
  padding: 0 1%;
  width: 16.66%;
}

.desktop_header_products_nav_list a {
  color: rgba(51,51,51,0.8);
  display: block;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.desktop_header_products_nav_list a:hover {
  color: #06a84e;
}

.desktop_header_products_nav_list .img-wrap {
  margin: 20px 0;
}

.desktop_header_products_nav_list .img-wrap img {
  top: auto;
}

.desktop_header_products_bottom {
  border-top: 1px solid #e1e1e1;
  padding: 23px 0 0;
}

.desktop_header_products_bottom .inner {
  margin: 0 auto;
  max-width: 790px;
  text-align: center;
}

.desktop_header_products_bottom a {
  margin-bottom: 23px;
}

.desktop_header_products_bottom a + a {
  margin-left: 70px;
}

/* Last */
.desktop_header_last {
  float: right;
}

.desktop_header_last > a {
  color: rgba(51,51,51,0.8);
  float: left;
  font-size: 16px;
  line-height: 20px;
  margin: 30px 30px 30px 0;

  -webkit-transition: margin 300ms ease;
  transition: margin 300ms ease;
}

.desktop_header_last > a:hover {
  color: rgba(51,51,51,1);
}

/* Country Select */
.desktop_header .countryselector {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  float: left;
  margin: 22px 0 21px;
  position: relative;
  z-index: 1;

  -webkit-transition: margin 300ms ease;
  transition: margin 300ms ease;
}

 #country-selector {
  border-radius: 22px;
  top: 18px;
}

#country-default {
  color: #868686;
  cursor: pointer;
  float: right;
  height: 35px;
  padding: 8px 21px 8px 10px;
  text-align: left;
  transition: all 200ms ease 0s;
}

.countryselector .country-name {
  color: #06a84e;
  float: left;
  font-size: 15px;
  line-height: 19px;
  padding: 0 16px 0 6px;
  position: relative;
  vertical-align: middle;
}

#country-selector.inactive #country-default .country-name {
  color: rgba(33,33,33,0.8);
}

#country-selector.inactive #country-default:hover .country-name {
  color: rgba(33,33,33,1);
}

.countryselector .country-name:after {
  content: '\f106';
  font-family: arloicons;
  font-size: 15px;
  position: absolute;
  right: 0;
}

#country-selector.inactive .country-name:after {
  content: '\f107';
}

#country-default .round-icon {
  box-sizing: content-box;
  float: left;
  vertical-align: middle;
  transition: padding 200ms ease;
  margin: -6px -5px 0;
}

#country-list-wrap {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  clear: both;
  color: #828282;
  margin: 18px 0 0;
  position: absolute;
  right: 0;
  top: 100%;
  transition: margin 200ms ease;
  width: 242px;
}

#country-list-wrap:after {
  background-color: #fff;
  border-color: #e1e1e1;
  border-style: solid;
  border-radius: 4px 0 0 0;
  border-width: 1px 0 0 1px;
  content: '';
  height: 14px;
  position: absolute;
  right: 59px;
  top: -8px;
  width: 14px;
  z-index: 2;

  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#country-selector.inactive #country-list-wrap:before,
#country-selector.inactive #country-list-wrap:after,
#country-selector-mobile{
  display: none;
}

#country-selector.inactive #country-list-wrap {
  border: 0;
  margin: 0;
}

#country-selector.active #country-list-wrap {
  border: 1px solid #e1e1e1;
}

#country-list-wrap .inner {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

#country-list-wrap .inner: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%);
  border-radius: 0 0 7px 7px;
  bottom: 0;
  color: rgba(33,33,33,0.3);
  content: ''; /* Arrow: \f107 */
  font-family: arloicons;
  font-size: 30px;
  height: 78px;
  left: 0;
  line-height: 1;
  padding: 45px 0 3px;
  position: absolute;
  right: 0;
  text-align: center;
  transition: all 200ms ease;
}

#country-selector.inactive #country-list-wrap .inner:after {
  display: none;
}

#country-list-wrap.at-bottom .inner:after {
  border-radius: 0 0 6px 6px;
  height: 0;
  opacity: 0;
  padding: 0 0 10px;
}

#country-list, #country-list-mobile {
  background-color: #fff;
  border-radius: 6px;
  margin: 0;
  max-height: 220px;
  overflow: auto;
  padding: 3px 0 8px;
  position: relative;
  transition: all 200ms ease;
}

#country-selector.inactive #country-list {
  border-bottom: 0;
  margin: 0;
  max-height: 0;
  padding: 0;
}

#country-selector.active #country-list {
  height: 220px;
  max-height: none;
  padding: 3px 0 8px;
}

#country-list.empty {
  border-color: #fff;
  border-bottom: 0;
  border-top: 0;
}

#country-list li {
  color: #06A94E;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  overflow: hidden;
}

#country-list li.hover {
  background-color: #f6f6f6;
}

#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;
}

#country-list li:last-child {
}

#country-list li a {
  color: #06A94E;
  display:inline-block;
  padding: 7px 16px;
  position: relative;
  text-align: left;
  width:100%;
}

#country-list-mobile li a{
  color: #06A94E;
  display:inline-block;
  position: relative;
  text-align: center;
  width:100%;
  font-weight: normal;
}

#country-list li a div{
  left: 16px;
  margin-top: -6px;
  margin-left: -8px;
  position: absolute;
}

.countryselector .countrynamelist {
  color: rgba(51,51,51,1);
  display: block;
  font-size: 15px;
  line-height: 19px;
  padding-left: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.sprite-flag {
  background-repeat: no-repeat;
  display: inline-block;
  height: 30px;
  transform: scale(0.5, 0.5);
  -ms-transform: scale(0.5, 0.5);
  -webkit-transform: scale(0.5, 0.5);
  width: 30px;
}

.sprite-arlo-flag-asia {
  background-position: -5px -5px;
}

.sprite-arlo-flag-australia {
  background-position: -45px -5px;
}

.sprite-arlo-flag-austria {
  background-position: -85px -5px;
}

.sprite-arlo-flag-belgium {
  background-position: -125px -5px;
}

.sprite-arlo-flag-canada {
  background-position: -165px -5px;
}

.sprite-arlo-flag-china {
  background-position: -5px -45px;
}

.sprite-arlo-flag-denmark {
  background-position: -45px -45px;
}

.sprite-arlo-flag-europe {
  background-position: -85px -45px;
}

.sprite-arlo-flag-finland {
  background-position: -125px -45px;
}

.sprite-arlo-flag-france {
  background-position: -165px -45px;
}

.sprite-arlo-flag-germany {
  background-position: -5px -85px;
}

.sprite-arlo-flag-india {
  background-position: -45px -85px;
}

.sprite-arlo-flag-ireland {
  background-position: -85px -85px;
}

.sprite-arlo-flag-italy {
  background-position: -125px -85px;
}

.sprite-arlo-flag-japan {
  background-position: -165px -85px;
}

.sprite-arlo-flag-malasya {
  background-position: -5px -125px;
}

.sprite-arlo-flag-mexico {
  background-position: -45px -125px;
}

.sprite-arlo-flag-netherlands {
  background-position: -85px -125px;
}

.sprite-arlo-flag-newzealand {
  background-position: -125px -125px;
}

.sprite-arlo-flag-norway {
  background-position: -165px -125px;
}

.sprite-arlo-flag-philipines {
  background-position: -5px -165px;
}

.sprite-arlo-flag-poland {
  background-position: -45px -165px;
}

.sprite-arlo-flag-russia {
  background-position: -85px -165px;
}

.sprite-arlo-flag-safrica {
  background-position: -125px -165px;
}

.sprite-arlo-flag-singapore {
  background-position: -165px -165px;
}

.sprite-arlo-flag-skorea {
  background-position: -205px -5px;
}

.sprite-arlo-flag-spain {
  background-position: -205px -45px;
}

.sprite-arlo-flag-sweden {
  background-position: -205px -85px;
}

.sprite-arlo-flag-switzerland {
  background-position: -205px -125px;
}

.sprite-arlo-flag-thailand {
  background-position: -205px -165px;
}

.sprite-arlo-flag-uk {
  background-position: -5px -205px;
}

.sprite-arlo-flag-unitedarabemirates {
  background-position: -45px -205px;
}

.sprite-arlo-flag-usa {
  background-position: -85px -205px;
}

/* Slim */
.slim .desktop_header {
  height: 65px;
}

.slim .desktop_header_logo img {
  height: 65px;
  padding: 14px 0;
}

.slim .desktop_header_nav_item > a {
  padding: 25px 0 24px;
}

.slim .desktop_header_last > a {
  margin-bottom: 22px;
  margin-top: 23px;
}

.slim .desktop_header .countryselector {
  margin: 14px 0;
}

@media screen and (min-width: 1280px) {
  .desktop_header_nav_item > a {
    font-size: 15px;
  }
}


.product_bottom_links{
  border-top: 1px solid #e8e8e8;
  padding: 20px 0;
}

.product_bottom_links > a {
  display: block;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.product_bottom_links > a:not(:last-child) {
  margin-bottom: 20px;
}

.product_bottom_links > a i{
  font-size: 10px;
  font-weight: bold;
  display: inline-block;
  margin-left: 5px;
}
