.shadow-1 {
  box-shadow: 2px 2px 2px #0a3a65;
}
.shadow-2 {
  box-shadow: 4px 4px 16px #434d56;
}
.shadow-3 {
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.shadow-4 {
  box-shadow: 0 24px 28px -12px black;
}
.shadow-5 {
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.shadow-6 {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 2px, rgba(0, 0, 0, 0.3) 10px 10px 3px 2px;
}
.text-shadow-1 {
  text-shadow: 2px 2px 2px #484848bf;
}
/*
 * Fonts
 */
@font-face {
  font-family: "Portonovo";
  src: url('../resources/fonts/Portonovo/Portonovo-Book.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: "Portonovo";
  src: url('../resources/fonts/Portonovo/Portonovo-SemiBold.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: "FoeDidotModern";
  src: url('../resources/fonts/FoeDidotModern/FOEDidotModern-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "FoeDidotModern";
  src: url('../resources/fonts/FoeDidotModern/FOEDidotModern-Medium.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: "Inter";
  src: url('../resources/fonts/Inter/Inter-Regular.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: "Inter";
  src: url('../resources/fonts/Inter/Inter-SemiBold.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: "Inter";
  src: url('../resources/fonts/Inter/Inter-SemiBold.ttf') format('truetype');
  font-weight: medium;
}
@font-face {
  font-family: "Inter";
  src: url('../resources/fonts/Inter/Inter-Light.ttf') format('truetype');
  font-weight: lighter;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
xbody {
  background-color: #FFFDF8;
  font-family: "Portonovo";
}
body {
  font-family: "Portonovo";
  background-color: #FFFDF8;
  color: #333333;
  font-size: 20px;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
input {
  outline: none;
}
input[type="checkbox"] {
  min-width: 20px;
}
select {
  padding-right: 20px !important;
  background: transparent;
  -webkit-appearance: none;
  background: url(/resources/images/selectArrow.png) no-repeat right 50% #fdfdfd;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-thumb {
  background-color: #333333;
}
h1 {
  padding: 10px 50px 50px 50px;
  text-align: center;
}
/*
 * Common styles 
 */
.all-width {
  width: 100%;
}
.facebook-icon {
  color: #4267b2;
}
.youtube-icon {
  color: red;
}
.spotify-icon {
  color: #1ed760;
}
.amazon-icon {
  color: black;
}
.itunes-icon {
  color: #333333;
}
/* 
 * Buttons 
 */
.ehl-button,
.ehl-smaller-button,
.ehl-reversed-button,
.ehl-naked-button {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-family: "Inter";
}
.ehl-button,
.ehl-smaller-button {
  box-sizing: border-box;
  border: 1px solid #004C3B;
}
.ehl-button {
  padding: 10px 15px;
  font-size: 0.9em;
  background: none;
}
.ehl-reversed-button {
  padding: 11px 19px;
  background-color: #fdfdfd;
  color: #333333;
  border-style: solid;
  border-width: 2px;
  border-color: #333333;
  border-radius: 6px;
  box-sizing: content-box;
}
.ehl-smaller-button {
  padding: 10px 16px;
}
.ehl-naked-button {
  color: #333333;
  font-size: 0.7em;
}
.ehl-button:hover {
  background-color: #004C3B;
  color: #fdfdfd;
}
.ehl-naked-button:hover {
  text-decoration: underline;
}
/*
 * Inputs
 */
.ehl-input-block {
  padding: 12px;
  font-family: "Inter";
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  background-color: #f4f4f4;
}
.ehl-input-block .ehl-text-input,
.ehl-input-block .ehl-password-input {
  font-size: 1em;
}
.ehl-text-input,
.ehl-password-input {
  display: inline-block;
  vertical-align: top;
  color: #333333;
  background-color: #f4f4f4;
  border-style: none;
  text-align: left;
}
.ehl-text-input {
  width: 100%;
}
.ehl-password-input {
  width: calc(100% - 20px);
}
.ehl-password-show {
  position: absolute;
  right: 12px;
  font-size: 0.5em;
  color: #333333;
  cursor: pointer;
}
.ehl-input-error {
  display: block;
  color: #ff0202;
  font-size: 0.9em;
  font-style: italic;
  text-align: right;
}
.ehl-input-label {
  display: block;
  text-align: left;
  color: #333333;
  padding: 8px 0;
  font-size: 0.9em;
}
/*
 * Checkbox
 */
.bootiq-checkbox,
.bootiq-checkbox-selected {
  cursor: pointer;
}
.bootiq-checkbox:before,
.bootiq-checkbox-selected:before {
  padding-right: 2px;
  font-family: "Font awesome 6 Pro";
  font-size: 1em;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.bootiq-checkbox:before {
  content: "\f0c8";
  font-weight: 300;
}
.bootiq-checkbox-selected:before {
  content: "\f14a";
  font-weight: 300;
}
/* 
 * Messages 
 */
#ehl-message-section {
  position: fixed;
  top: 0;
  width: 90%;
  margin: 0 5%;
  top: 200px;
  left: 0;
  text-align: center;
  font-size: 1.5em;
  z-index: 90;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  overflow-y: hidden;
}
.ehl-message-section-hidden {
  max-height: 0;
  transition: max-height 0.5s ease;
}
.ehl-message-section-shown,
.ehl-message-section-error {
  max-height: 200px;
  transition: max-height 2s ease;
  border-top-style: solid;
  border-top-width: 3px;
  border-top-color: #004C3B;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #004C3B;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 2px, rgba(0, 0, 0, 0.3) 10px 10px 3px 2px;
}
.ehl-message-section-shown {
  border-top-color: #004C3B;
  border-bottom-color: #004C3B;
}
.ehl-message-section-error {
  border-top-color: #ff0202;
  border-bottom-color: #ff0202;
}
.ehl-message,
.ehl-message-error {
  display: block;
  margin: 0 20% 0 20%;
  padding: 20px;
  opacity: 1;
  color: #fdfdfd;
}
/* 
 * Modals 
 */
.close-modal {
  position: absolute;
  display: block;
  right: 10px;
  top: 0;
  padding: 2px;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
  z-index: 80;
}
.close-modal::after {
  content: "\00d7";
}
.modal,
.modal-wide {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 80;
}
.modal {
  padding: 15%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.modal-wide {
  width: 100%;
  background-color: #FFFDF8;
}
/*
 * Header
 */
#ehl-header-section {
  position: sticky;
  top: 0;
  z-index: 888;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: #FFFDF8;
}
#ehl-header-top-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
  font-family: Inter, Arial;
  height: 60px;
  border-bottom: 1px solid #f4f4f4;
}
#ehl-header-bottom-section {
  width: 75%;
  margin: 0 auto;
  max-width: 1200px;
}
.logo-container-profile {
  justify-content: start !important;
  gap: 20%;
}
#ehl-header {
  position: relative;
  min-height: 100px;
}
.xehl-header-dev {
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, #ecc 10px, #ecc 20px);
}
.ehl-header-test {
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, #eee 10px, #eee 20px);
}
.logo-container {
  text-align: center;
  padding-top: 13px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.logo-small {
  width: 70%;
}
/* Menu with logo + cart */
#ehl-header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#ehl-header-moto {
  font-size: 0.9em;
}
#ehl-header-menu {
  vertical-align: top;
}
#ehl-menu-hamburger {
  display: none;
  cursor: pointer;
}
.ehl-header-right-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.ehl-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 0.8em;
  padding-left: 50px;
  z-index: 9999;
}
.ehl-menu-item,
.ehl-menu-item-selected {
  padding: 8px 10px;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
}
.ehl-menu-item-selected {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #004C3B;
  font-weight: bold;
  color: #004C3B;
}
.ehl-menu-item-text {
  font-family: "Inter";
  color: #333333;
  cursor: pointer;
  font-style: normal;
  border-bottom: 2px solid #FFFDF8;
}
.ehl-menu-item-text:hover {
  border-bottom: 2px solid #004C3B;
  color: #004C3B;
}
.ehl-menu-item-language {
  font-weight: normal;
  font-size: 0.7em;
  width: 200px;
}
.ehl-menu-item-login {
  font-weight: normal;
  font-size: 0.7em;
}
.ehl-menu-item-login:hover {
  font-weight: normal !important;
  opacity: 0.5;
}
.ehl-menu-item-button {
  position: relative;
  color: #333333;
  cursor: pointer;
  font-weight: normal;
}
.ehl-menu-item-button:hover {
  font-weight: bold;
  color: #004C3B;
}
.ehl-menu-dropdown {
  padding: 2px;
  background-color: #fdfdfd;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-style: solid;
  border-color: #333333;
  border-width: 1px;
  position: absolute;
  z-index: 70;
}
.ehl-menu-dropdown-item {
  background-color: #333333;
  color: #fdfdfd;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 0.8em;
  cursor: pointer;
}
/* Search */
.search-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  width: 100%;
  align-self: center;
  max-width: 800px;
  background-color: #fcf3df;
}
.search-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  height: 30px;
}
.search-text {
  font-family: "Inter";
  border: none;
  border-bottom: 1px solid #333333;
  color: #333333;
  padding: 10px 6px;
  font-size: 0.9em;
  background-color: #FFFDF8;
  width: 100%;
  min-width: 250px;
  max-width: 400px;
}
.search-button {
  vertical-align: top;
  cursor: pointer;
}
.search-button::before {
  position: relative;
  font-size: 0.7em;
  font-weight: normal;
  padding-right: 5px;
}
.search-toggle-block {
  display: flex;
  flex-direction: row;
  gap: 5px;
  font-size: 0.9em;
  cursor: pointer;
}
.search-toggle::before {
  content: "\2502";
  padding: 0 10px 0 0;
}
.search-toggle:first-child::before {
  content: "";
  padding: 0;
}
/* User */
#ehl-menu-user {
  font-size: 0.7em;
}
#ehl-menu-user-dropdown {
  box-sizing: border-box;
  min-width: 120px;
  right: 0;
  top: 37px;
}
#ehl-menu-user-name::after {
  content: "\f0d7";
  padding: 0 0 0 4px;
  color: #333333;
  font-size: 0.7em;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: normal;
}
/* Submenu */
#ehl-submenu-section {
  position: relative;
  display: block;
  padding: 12px 4%;
  text-align: right;
}
/* Language */
.ehl-language {
  display: inline-block;
  padding: 0 4px;
  cursor: pointer;
}
.ehl-language:hover {
  font-weight: bold;
  color: #004C3B;
}
.ehl-language::after {
  content: " |";
}
.ehl-language:last-child::after {
  content: "";
}
.ehl-language-selected {
  font-weight: bold;
  color: #004C3B;
}
/* Body */
#ehl-body-section {
  max-width: 1200px;
  width: 75%;
  margin: 50px auto;
}
/*
 * Footer
 */
#ehl-footer-section {
  padding: 20px 4%;
  display: flex;
  flex-direction: column;
  align-content: center;
  background-color: #fcf3df;
  color: #040404;
  z-index: 4;
  font-family: "Inter";
  font-size: 0.7em;
  line-height: 1.7em;
}
.ehl-footer-section a:hover {
  color: #004C3B;
}
#ehl-footer-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #333333;
  margin: auto;
  width: 100%;
}
.ehl-footer-section {
  display: flex;
  flex-direction: column;
}
.ehl-footer-section .ehl-button {
  margin-bottom: 10px;
}
.ehl-footer-logo {
  align-items: center;
}
.ehl-footer-contact-address {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.ehl-footer-section img {
  width: 20%;
}
#ehl-footer-media {
  padding: 20px 0 0 0;
  display: flex;
  justify-content: center;
  color: #333333;
  font-size: 1.4em;
  display: none;
}
.footer-heading {
  font-weight: bold;
}
/*
 * Accept cookies
 */
#accept-cookies {
  font-family: "Inter";
  font-size: 0.7em;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 30px 30px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #333333;
  color: #fdfdfd;
  z-index: 900;
}
#accept-cookies-text-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accept-cookies-link {
  text-decoration: underline;
}
#accept-cookies-button {
  cursor: pointer;
}
/*
 * Information popup
 */
#information-popup {
  padding: 10px 20px;
  display: none;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #004C3B;
  color: #333333;
  opacity: 0.9;
  z-index: 1;
  cursor: pointer;
}
/* 
 * Move to top widget
 */
#move-to-top-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 3px 10px 15px;
  color: #333333;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
  z-index: 50;
  border-style: solid;
  border-width: 1px;
  border-color: #333333;
  cursor: pointer;
  height: 27px;
  width: 30px;
}
#move-to-top-widget:hover {
  background-color: #333333;
  color: #FFFDF8;
}
/* 
 * Move div to top widget
 */
.move-div-to-top-widget {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 3px 10px 15px;
  color: #26CC7D;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
  z-index: 50;
  cursor: pointer;
  font-size: 1.4em;
}
.move-div-to-top-widget:hover {
  color: #333333;
}
@media only screen and (max-width: 1200px) {
  .modal {
    padding: 10% 10%;
  }
}
@media only screen and (max-width: 950px) {
  .modal,
  .modal-wide {
    padding: 0;
  }
  #ehl-body-section {
    padding: 0 20px;
    max-width: 100%;
    width: unset;
  }
  #ehl-header {
    flex-direction: column;
  }
  #ehl-header-section {
    padding: 8px 8px 0 0;
  }
  #ehl-header-center {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  #ehl-header-menu {
    margin-top: 0;
  }
  #ehl-menu-hamburger {
    display: initial;
    padding-left: 10px;
  }
  .ehl-menu {
    position: absolute;
    padding: 10px;
    box-sizing: border-box;
    flex-direction: column;
    display: none;
    left: 0;
    background-color: #fcf3df;
    z-index: 8;
    width: 100vw;
    font-size: 0.7em;
    text-align: left;
    align-items: start;
    top: 50px;
  }
  .ehl-menu-shown {
    display: flex;
  }
  .ehl-menu-item-selected {
    border-bottom-style: #333333;
  }
  .ehl-menu-item,
  .ehl-menu-item-selected {
    padding: 5px;
  }
  .ehl-menu-item-text {
    border: none;
  }
  .ehl-header-right-section {
    font-size: 0.8em;
    padding-top: 5px;
  }
  .ehl-language-block {
    text-align: right;
    display: flex;
  }
  .ehl-language::after {
    display: none;
  }
  .ehl-menu-item-language {
    width: initial;
  }
  .ehl-footer-section {
    padding: 20px;
  }
  .ehl-footer-section img {
    width: 10%;
  }
  .logo-container {
    padding: 0;
  }
  .search-block-shop {
    width: 100%;
  }
  .ehl-section-title {
    font-size: 1.8em;
  }
  #ehl-result-title-block {
    flex-direction: row;
  }
  .ehl-footer-logo {
    align-items: start;
  }
  .accept-cookies {
    width: 100%;
  }
}
@media only screen and (max-width: 1250px) {
  body {
    font-size: 18px;
  }
  .accept-cookies {
    width: 100%;
  }
}
@media only screen and (max-width: 850px) {
  body {
    font-size: 22px;
  }
  #ehl-footer-info {
    flex-direction: column;
    gap: 5px;
  }
  .search-block {
    font-size: 0.8em;
  }
  .search-text {
    width: 80%;
  }
  #ehl-footer-section {
    gap: 5px;
    padding: 10px 15px;
  }
  .ehl-footer-section {
    padding: 10px 0;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #333333;
  }
  .ehl-footer-section:last-child {
    border-bottom-style: none;
  }
  #ehl-footer-about,
  #ehl-footer-contact,
  #ehl-footer-general {
    gap: 10px;
  }
  .accept-cookies {
    width: 100%;
  }
}
