
.hidden {
  display: none;
}

ul {
  list-style: square;
  margin-left: 20px;
}

.ico {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.button {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 24px 15px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  min-width: 120px;
  background-color: #0a3f78;
  border: none;
  transition: background-color 0.25s;
  display: inline-block;
}
.button .ico {
  vertical-align: bottom;
}
.button:hover {
  color: #fff;
  background-color: #376496;
  text-decoration: none;
}
.button.inverted {
  background-color: #fff;
  color: #0a3f78;
}
.button.inverted:hover {
  color: #376496;
}
.button.simple {
  background-color: initial;
  text-transform: none;
  color: #0a3f78;
  padding: 0;
  letter-spacing: normal;
  min-width: auto;
}
.button.simple:hover {
  color: #376496;
  text-decoration: underline;
}

/* nav menu */
.menu {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.menu li > a,
.menu li > span {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #0a3f78;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 0;
}
.menu li > a:hover,
.menu li > span:hover {
  position: relative;
  color: #000;
}
.menu nav {
  max-width: 1096px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.menu nav:not(.sub-menu) {
  height: 52px;
}
.menu nav:not(.sub-menu) ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  height: 36px;
}
.menu nav ul {
  list-style: none;
  margin-left: 0;
}
.menu nav ul li {
  padding: 0 10px;
  position: relative;
  white-space: nowrap;
}
.menu nav ul li.capitalize a {
  text-transform: capitalize;
}
.menu nav ul li:hover {
  background-color: #e4f5fd;
}
.menu nav ul li.home a {
  width: 18px;
}
.menu nav ul li.home a span {
  display: block;
  overflow: hidden;
  text-indent: 100%;
}
.menu nav ul li.active a {
  color: #000;
  font-weight: 600;
}
.menu nav ul li.active:hover {
  background-color: initial;
}
.menu nav ul li.submenu-anchor {
  padding-right: 20px;
}
.menu nav ul li.submenu-anchor:after {
  content: '';
  position: absolute;
  right: 8px;
  top: calc(50% - 2px);
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #0a3f78;
}

/* header */
header {
  font-family: sans-serif;
  position: relative;
  height: 130px;
  background-color: #fff;
  z-index: 99999;
}
header .header-wrapper {
  position: fixed;
  width: 100%;
  border-bottom: 1px solid #000;
}
header .header-wrapper .hn-lista {
  background-color: #0aaae6;
}
header .header-wrapper .hn-lista .wrapper {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 78px;
}
@media (min-width: 1440px) {
  header .header-wrapper .hn-lista .wrapper {
    justify-content: flex-end;
  }
}
header .header-wrapper .hn-lista .logo {
  margin-left: 40px;
  text-align: left;
}
@media (min-width: 1160px) {
  header .header-wrapper .hn-lista .logo {
    margin-left: calc(50% - 540px);
  }
}
@media (min-width: 1440px) {
  header .header-wrapper .hn-lista .logo {
    margin-left: 0;
    width: 30%;
    text-align: center;
  }
}
@media (max-width: 980px) {
  header .header-wrapper .hn-lista .logo {
    margin-left: 20px;
  }
  header .header-wrapper .hn-lista .logo img {
    height: 17px;
  }
}
@media (min-width: 380px) and (max-width: 640px) {
  header .header-wrapper .hn-lista .logo img {
    height: 20px;
  }
}
@media (min-width: 640px) and (max-width: 980px) {
  header .header-wrapper .hn-lista .logo img {
    height: 24px;
  }
}
@media (max-width: 319px) {
  header .header-wrapper .hn-lista .logo {
    margin-left: 0;
    width: 65px;
    height: 100%;
  }
  header .header-wrapper .hn-lista .logo a {
    display: block;
    width: 100%;
    height: 100%;
    margin-top: 0;
    background: url('../images/HN.svg') no-repeat 50% 50%;
    background-size: 32px 17.33px;
  }
  header .header-wrapper .hn-lista .logo a img {
    display: none;
  }
}
header .header-wrapper .hn-lista .menu-right {
  position: relative;
  width: 50%;
  height: 40px;
  padding-right: 24px;
  color: #fff;
  font-weight: 600;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
header .header-wrapper .hn-lista .menu-right > * {
  margin-left: 24px;
}
header .header-wrapper .hn-lista .menu-right > *:hover {
  text-decoration: none;
  opacity: 0.85;
}
header .header-wrapper .hn-lista .menu-right > * > span {
  vertical-align: middle;
}
@media (max-width: 980px) {
  header .header-wrapper .hn-lista .menu-right .after,
  header .header-wrapper .hn-lista .menu-right .button-subscription {
    display: none;
  }
}
@media (min-width: 981px) {
  header .header-wrapper .hn-lista .menu-right {
    padding-right: 40px;
  }
}
@media (min-width: 1440px) {
  header .header-wrapper .hn-lista .menu-right {
    padding-right: 54px;
    width: 35%;
  }
}
header .header-wrapper .button {
  flex: 0 0 auto;
  padding-top: 9px;
  padding-bottom: 9px;
}
header .header-wrapper .button > span:not(.ico) {
  margin-left: 8px;
}
header .header-wrapper .button.simple {
  color: #fff;
}
header .header-wrapper .button-login {
  color: #fff;
}
header .header-wrapper .button-login .initials,
header .header-wrapper .button-login .text-logged {
  display: none;
}
header .header-wrapper .initials {
  position: relative;
  width: 0;
  height: 0;
  border: 16px solid #fff;
  border-radius: 16px;
}
header .header-wrapper .header-search {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  background-color: #0aaae6;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-wrapper .header-search .search-what {
  width: 100%;
  max-width: 777px;
  padding: 0 16px;
  background-color: #fff;
  border: none;
  font-size: 16px;
  line-height: 48px;
}
header .header-wrapper .header-search .search-button {
  flex: 0 0 auto;
  height: 48px;
  min-width: 48px;
  background-position: 50% 50%;
}
header .header-wrapper .header-search .ico-close {
  flex: 0 0 auto;
  display: inline-block;
  margin-left: 24px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
@media (min-width: 980px) {
  header .header-wrapper .header-search .search-button {
    padding-left: 51px;
    background-position: 24px 50%;
  }
}
header .menu-header {
  display: none;
  background-color: #0aaae6;
}
header .menu-header:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: calc(100% - 40px);
  border-bottom: 1px solid #fff;
}
header .menu-header .wrapper {
  margin: 0 auto;
  max-width: 340px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
}
header .menu-header .wrapper > *:hover {
  text-decoration: none;
  opacity: 0.85;
}
header .menu-header .wrapper > * span {
  vertical-align: middle;
}
header .menu-header .wrapper > a > span:not(.ico) {
  margin-left: 8px;
  color: #fff;
}
header .menu-header .wrapper .button-tts,
header .menu-header .wrapper .button-pocket {
  padding: 11px 0 7px;
}
@media (max-width: 1160px) {
  header:not(.small) .menu {
    padding: 0 32px;
  }
}
@media (max-width: 980px) {
  header {
    height: 68px;
  }
  header .header-wrapper {
    border: none;
  }
  header .header-wrapper .hn-lista .wrapper {
    height: 68px;
  }
  header .menu-right > * {
    margin-left: 40px;
  }
  header .menu-wrapper > .wrapper {
    display: none;
  }
  header .menu-header {
    display: block;
  }
}
@media (max-width: 980px) {
  .desktop-only {
    display: none !important;
  }
}

.no-desktop {
  display: none !important;
}
@media (max-width: 980px) {
  .no-desktop {
    display: revert !important;
  }
}
.hidden {
  display: none !important;
}

.menu nav .home a {
  background-repeat: no-repeat;
  background-position: 50% 40%;
  background-image: url("../images/home.svg");
}

.ico-menu {
  background-image: url("../images/burger.svg");
}

.ico-profile {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("../images/user.svg");
}

.ico-search {
  background-repeat: no-repeat;
  background-image: url("../images/search.svg");
}

.sub-menu > *,
.menu-links {
  padding: 16px;
  font-family: sans-serif;
  font-weight: 600;
  margin: 0;
  list-style-type: none;
}
.sub-menu > * a,
.menu-links a {
  display: block;
  white-space: nowrap;
  border-bottom: 1px solid #000;
  line-height: 44px;
  padding: 0 8px;
}
.sub-menu > * a:hover,
.menu-links a:hover {
  color: #000;
  background: #e4f5fd;
  text-decoration: none;
}
.sub-menu > * li:last-child a,
.menu-links li:last-child a {
  border: none;
}

.account-menu .menu-links {
  min-width: 250px;
}

.sub-menu {
  display: flex;
  padding: 16px;
  overflow-y: auto;
}
.sub-menu > * {
  flex: 1 1 auto;
  width: 100%;
  max-width: 250px;
  padding: 0;
  margin-right: 24px;
}
.sub-menu > *:last-child {
  margin: 0;
}

.account-menu .profile {
  padding: 24px 16px 0;
}
.account-menu .profile .name {
  font-family: sans-serif;
  font-size: 19px;
  line-height: 130%;
  text-align: center;
}
.account-menu .profile .image {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  display: block;
}
.account-menu .profile .image.no-image .initials {
  display: inline-block;
  position: relative;
  width: 0;
  height: 0;
  border: 20px solid #9da3aa;
  border-radius: 20px;
}

.button-tts,
.button-pocket {
  display: none;
}
