html {
  overflow-x: hidden;
  height: 100%;
  width: 100%;
}


.header-wrapper {
  width: 100%;
  border-top: 10px solid #012169
}

@media (max-width:767.98px) {
  .header-wrapper {
    border-top: 5px solid #012169
  }
}

.header-wrapper.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  border-top: 5px solid #012169
}

.header-wrapper.fixed .brand-bar-section {
  border: none
}

@media only screen and (min-width:1024px) {
  .header-wrapper.fixed .brand-bar-section {
    position: absolute
  }
  .header-wrapper.fixed .navigation-bar .brand-logo {
    bottom: 4px
  }
  .header-wrapper.fixed .navigation-bar .brand-logo__link {
    max-width: 70px
  }
}

.navigation-bar-section {
  position: relative;
  background: #fafafa;
  z-index: 997;
  box-shadow: 0 3px 3px rgba(51,51,51,.11);
}

.navigation-bar-section.fixed {
  position: fixed;
  width: 100%;
  top: 0;
}

.navigation-bar-section .container {
  background: transparent;
}

.navigation-bar-section .navigation-bar {
  display: flex;
  flex-direction: row;
  height: 60px;
  justify-content: space-between;
}

.navigation-bar-section .navigation-bar.search-active .secondary-nav,
.navigation-bar-section .navigation-bar.search-active .hamburger-menu,
.navigation-bar-section .navigation-bar.search-active .brand-logo {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
}

.navigation-bar-section .navigation-bar.search-active .main-nav {
  pointer-events: none;
}

.navigation-bar-section .navigation-bar.search-active .main-nav ul li {
  animation: fadeOut 0.2s ease-in both;
}

.navigation-bar-section .navigation-bar.search-active .main-nav ul li:nth-of-type(1) {
  animation-delay: 0.4s;
}

.navigation-bar-section .navigation-bar.search-active .main-nav ul li:nth-of-type(2) {
  animation-delay: 0.35s;
}

.navigation-bar-section .navigation-bar.search-active .main-nav ul li:nth-of-type(3) {
  animation-delay: 0.3s;
}

.navigation-bar-section .navigation-bar.search-active .main-nav ul li:nth-of-type(4) {
  animation-delay: 0.25s;
}

.navigation-bar-section .navigation-bar.search-active .main-nav ul li:nth-of-type(5) {
  animation-delay: 0.2s;
}

.navigation-bar-section .navigation-bar.search-active .search-bar {
  opacity: 1;
  pointer-events: auto;
  left: 50%;
  transform: translateX(-50%);
  transition-delay: 0.5s;
  z-index: 999;
}

.navigation-bar-section .navigation-bar.search-active .search-bar .search-bar__end {
  opacity: 1;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.6);
  }
}

.navigation-bar-section .navigation-bar .hamburger-menu {
  display: flex;
  align-items: center;
}

.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon {
  width: 20px;
  height: 20px;
  position: relative;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #012169;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon span:nth-child(1) {
  top: 0px;
}

.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon span:nth-child(2),
.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon span:nth-child(3) {
  top: 8px;
}

.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon span:nth-child(4) {
  top: 16px;
}

.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon.open span {
  width: 120%;
}

.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navigation-bar-section .navigation-bar .hamburger-menu .nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation-bar-section .navigation-bar .brand-logo {
  display: flex;
  max-width: 74px;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: auto;
  margin-right: auto;
  margin-left: 40px;
  transition: 0.3s all ease-in-out;
}

.navigation-bar-section .navigation-bar .brand-logo a {
  padding: 0;
}

.navigation-bar-section .navigation-bar .brand-logo img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.navigation-bar-section .navigation-bar .main-nav {
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  height: calc(100vh - 126px);
  transform: translateX(-100%);
  transition: 0.3s all ease-in-out;
  top: 60px;
  z-index: 999;
  padding: 20px;
}

.navigation-bar-section .navigation-bar .main-nav.open {
  transform: translateX(0%);
}

.navigation-bar-section .navigation-bar .main-nav .navbar-nav {
  margin: 0;
  padding: 0;
  width: 100%;
}

.navigation-bar-section .navigation-bar .main-nav .navbar-nav li {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  padding-right: 0px;
  position: relative;
  float: none;
}

.navigation-bar-section .navigation-bar .main-nav .navbar-nav li.active a {
  color: #2fc48d;
}

.navigation-bar-section .navigation-bar .main-nav .navbar-nav li a {
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #e1e1e1;
  display: block;
  font-size: 14px;
  transition: 0.2s ease-in-out;
  font-family: 'Open Sans', sans-serif;
}

.navigation-bar-section .navigation-bar .main-nav .navbar-nav li a:hover {
  color: #2fc48d;
}

.navigation-bar-section .navigation-bar .secondary-nav {
  display: flex;
  align-items: center;
  transition: 0.3s all ease-in-out;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav {
  margin: 0;
  padding: 0;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li {
  display: inline;
  padding-left: 16px;
  cursor: pointer;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li:hover .my-account__span {
  color: #2fc48d;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li:hover > .icon {
  fill: #2fc48d;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li.my-account__nav > span {
  display: none;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li .my-account__span {
  color: #012169;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li a {
  outline: 0;
  color: inherit;
  text-decoration: underline;
  padding-bottom: 0;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li a:hover {
  color: #2FC48D !important;
  text-decoration: none;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li a .icon:hover {
  fill: #2fc48d;
  outline: 0;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li a:hover > .icon {
  fill: #2fc48d;
  outline: 0;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li .icon {
  fill: #012169;
  font-size: 24px;
  transition: 0.2s all ease-in-out;
}

.navigation-bar-section .navigation-bar .account-section .icon-close {
  margin-left: auto;
  display: block;
  margin-bottom: 1.6rem !important;
}

.navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li .icon-plus-text span {
  color: #012169;
  display: none;
  font-size: 12px;
}

.navigation-bar-section .navigation-bar .account-section {
  position: absolute;
  width: 100%;
  background: #fff;
  padding: 20px;
  height: 100vh;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: 0.3s all ease-in-out;
}

.navigation-bar-section .navigation-bar .account-section .account-section__details .bttn {
  margin-bottom: 1.6rem !important;
}

.navigation-bar-section .navigation-bar .account-section:after {
  content: "";
  display: block;
  position: absolute;
  top: -14px;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid white;
}

.navigation-bar-section .navigation-bar .account-section.active {
  transform: translateX(0);
  z-index: 888;
  cursor: auto;
}

.navigation-bar-section .navigation-bar .account-section .account-section__details {
  text-align: center;
  border-bottom: 4px solid #012169;
  margin-bottom: 2rem !important;
}

.navigation-bar-section .navigation-bar .account-section .account-section__details span {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 2rem !important;
}

.navigation-bar-section .navigation-bar .account-section .account-section__details h2 {
  color: #012169;
  margin-bottom: 0.8rem !important;
}

.navigation-bar-section .navigation-bar .account-section .account-section__details .icon-user {
  font-size: 36px !important;
}

.navigation-bar-section .navigation-bar .account-section .account-section__options {
  margin: 0;
  padding: 0 20px;
}

.navigation-bar-section .navigation-bar .account-section .account-section__options li {
  display: block;
  padding: 0;
  margin-bottom: 0.4rem !important;
}

.navigation-bar-section .navigation-bar .account-section .account-section__options li a {
  padding: 0;
  text-decoration: none;
}

.navigation-bar-section .navigation-bar .account-section .account-section__options li a:hover {
  text-decoration: underline;
}

.navigation-bar-section .navigation-bar .account-section .account-section__options li .icon {
  font-size: 16px;
  fill: #666;
  margin-top: -2px;
  margin-right: 4px;
}

.navigation-bar-section .navigation-bar .search-bar {
  position: absolute;
  width: 100%;
  left: 58%;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
  max-width: 620px;
  padding: 0 15px;
}

.navigation-bar-section .navigation-bar .search-bar .icon {
  font-size: 20px;
  fill: #012169;
  margin-left: 1rem;
}

.navigation-bar-section .navigation-bar .search-bar .icon-search {
  margin-right: 20px;
  margin-left: 10px;
}

.navigation-bar-section .navigation-bar .search-bar__start,
.navigation-bar-section .navigation-bar .search-bar__end {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigation-bar-section .navigation-bar .search-bar__start {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}

.navigation-bar-section .navigation-bar .search-bar__end {
  opacity: 0;
  transition: 0.5s all ease-in-out;
  transition-delay: 0.7s;
}

.navigation-bar-section .navigation-bar .search-bar #nav-search {
  background: transparent;
  border: 0;
  color: #333;
  width: 100%;
  outline: 0;
  font-size: 16px;
  height: 100%;
}

.navigation-bar-section .navigation-bar .search-bar #nav-search::placeholder,
.navigation-bar-section .navigation-bar .search-bar #nav-search::-webkit-input-placeholder {
  color: #a9a9a9;
  font-size: 16px;
}

.bubble-counter {
  position: relative;
  text-align: center;
  color: #fff !important;
  font-size: 12px;
  line-height: 20px;
}

.bubble-counter:after {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  right: -6px;
  top: -12px;
}

.bubble-counter__primary:after {
  background-color: #2fc48d;
  content: attr(data-counter);
}

.bubble-counter__ecom:after {
  background-color: #f47920;
  content: attr(data-counter);
}

.main-nav .m-myacc-item,
.main-nav .m-scrapbook-item {
  display: none !important;
}

.account-section__login:hover {
  text-decoration: none !important;
}

.clear-search {
  display: none;
  color: inherit;
  font-size: 16px;
}

.navigation-bar-section .navigation-bar.search-active .search-bar .search-bar__end .vertical-divider {
  width: 2px;
  height: 34px;
  background: #dfdfdf;
  margin-left: 1rem;
}

.page-overlay--typeahead {
  position: fixed;
  animation: show-type-ahead-overlay .25s ease-in-out;
  display: none;
  background: #000;
  height: 100%;
  left: 0;
  top: 0;
  opacity: .45;
  width: 100%;
  z-index: 7;
}

@media screen and (min-width: 768px) {
  .navigation-bar-section .navigation-bar .main-nav {
    max-width: 320px;
  }
  
  .navigation-bar-section .navigation-bar .account-section {
    width: 250px;
    max-width: 250px;
    top: 74px;
    right: 0;
    left: auto;
    height: auto;
    display: none;
  }
  
  .navigation-bar-section .navigation-bar .account-section.active {
    display: block;
  }
  
  .navigation-bar-section .navigation-bar .account-section .icon-close {
    display: none;
  }

  .navigation-bar-section .navigation-bar .account-section .account-section__details span {
    margin-bottom: 2.4rem !important;
  }

  .navigation-bar-section .navigation-bar .account-section .account-section__details h2 {
    margin-bottom: 1.2rem !important;
  }

  .navigation-bar-section {
    z-index: 999;
    background: #ffffff;
  }
}

@media screen and (min-width: 1024px) {
  
  .navigation-bar-section.fixed .navigation-bar .brand-logo {
    max-width: 70px;
    bottom: 4px;
  }
  
  .navigation-bar-section .navigation-bar.search-active .brand-logo {
    opacity: 1;
  }
  
  .navigation-bar-section .navigation-bar .brand-logo {
    max-width: 110px;
    bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .navigation-bar-section .navigation-bar .main-nav {
    transform: translateX(0%);
    max-width: none;
    position: static;
    height: auto;
    background: transparent;
    align-items: center;
    padding: 0px;
    transition: 0s all ease-in-out;
  }
  
  .navigation-bar-section .navigation-bar .hamburger-menu {
    display: none;
  }
  
  .navigation-bar-section .navigation-bar .main-nav .navbar-nav li {
    display: inline-block;
    padding: 0 10px;
    font-weight: 600;
  }
  
  .navigation-bar-section .navigation-bar .main-nav .navbar-nav li a {
    color: #012169;
    padding: 0;
    border-bottom: 0px;
    display: inline;
  }
  
  .navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li.my-account__nav > span {
    display: inline;
    margin-left: 4px;
  }

  .navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li {
   // position: relative;
  }
  
  .navigation-bar-section .navigation-bar .secondary-nav .secondary-nav__nav li .icon-plus-text span {
    display: inline-block;
    padding-left: 4px;
  }
  
  .navigation-bar-section .navigation-bar .account-section .account-section__details .icon-user {
    font-size: 24px !important;
  }
  
  .navigation-bar-section .navigation-bar .search-bar {
    height: 60px;
    transform: translateX(50px);
    left: 30%;
  }

  .navigation-bar-section .navigation-bar .account-section .account-section__details span {
    margin-bottom: 1.2rem !important;
  }

  .navigation-bar-section .navigation-bar .account-section .account-section__details h2 {
    margin-bottom: 0.4rem !important;
  }
}

@media (max-width: 1023px) {
  .hidden-md-down {
    display: none !important;
  }

  

  .navigation-bar-section .navigation-bar .brand-logo a {
    width: 74px;
    height: 37px;
  }	
}

@media screen and (min-width: 1024px) and (min-width: 768px) {
  .navigation-bar-section .navigation-bar .account-section .account-section__details span {
    margin-bottom: 1.6rem !important;
  }

  .navigation-bar-section .navigation-bar .account-section .account-section__details h2 {
    margin-bottom: 0.8rem !important;
  }
}


@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
  .navigation-bar-section .navigation-bar .main-nav {
    z-index: 994;
  }
}
