/* Default: Extra-small devices such as small phones (less than 640px) */
header {
  position: relative;
  width: 100%;
  z-index: 500;
  display: flex;
  justify-content: center;
  /* Large devices such as laptops (979px and up) */
}
@media only screen and (min-width: 979px) {
  header {
    position: absolute;
    top: 20px;
  }
}
header #headerinner {
  width: 100%;
  height: 75px;
  max-width: 1440px;
  position: relative;
  padding: 0 18px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 16px;
  transition: all 0.4s ease-out;
  background-color: #fff;
  box-shadow: 0 6px 10px 4px rgba(0, 0, 0, 0.1), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  /* Small devices such as large phones (640px and up) */
  /* Large devices such as laptops (979px and up) */
}
@media only screen and (min-width: 640px) {
  header #headerinner {
    height: 95px;
  }
}
@media only screen and (min-width: 979px) {
  header #headerinner {
    width: 97%;
  }
}
header #headerinner.readyforsticky {
  pointer-events: auto;
  position: fixed;
  box-shadow: 12px 0 20px 0 rgba(0, 0, 0, 0.2);
}
header .header-item {
  display: flex;
  vertical-align: middle;
  text-align: center;
  align-items: center;
  justify-content: center;
}
header .header-item.header-search {
  left: 0;
  display: none;
  /* Largest devices such as desktops (1280px and up) */
}
@media only screen and (min-width: 1280px) {
  header .header-item.header-search {
    display: block;
    left: unset;
  }
}
header .header-item.header-search .btn-search {
  width: 100%;
  display: block;
}
header .header-item.header-search a {
  display: flex;
  gap: 5px;
  width: 100%;
  min-width: 100%;
  font-size: 16px;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: #3D570A;
  border-radius: 0;
  transition: all 0.4s ease-out;
  /* Largest devices such as desktops (1280px and up) */
}
@media only screen and (min-width: 1280px) {
  header .header-item.header-search a {
    min-width: unset;
    background: unset;
    border-radius: 8px;
  }
}
header .header-item.header-search a:hover {
  background: #8CB824;
}
header .header-item.header-search a svg {
  width: 24px;
  height: 24px;
}
header .header-item.header-search a svg path {
  stroke: #fff;
  /* Largest devices such as desktops (1280px and up) */
}
@media only screen and (min-width: 1280px) {
  header .header-item.header-search a svg path {
    stroke: #2C2928;
  }
}
header .header-item.header-lastminute {
  display: none;
  right: 0;
  /* Largest devices such as desktops (1280px and up) */
}
@media only screen and (min-width: 1280px) {
  header .header-item.header-lastminute {
    display: block;
    right: unset;
  }
}
header .header-item.header-lastminute .btn-lastminute {
  width: 100%;
  display: block;
}
header .header-item.header-lastminute a {
  display: flex;
  gap: 5px;
  width: 100%;
  min-width: 100%;
  font-size: 16px;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: #2C2928;
  border-radius: 0;
  transition: all 0.4s ease-out;
  /* Largest devices such as desktops (1280px and up) */
}
@media only screen and (min-width: 1280px) {
  header .header-item.header-lastminute a {
    min-width: 158px;
    border-radius: 8px;
  }
}
header .header-item.header-lastminute a img {
  width: 24px;
  height: 24px;
}
header .header-item.header-lastminute a:hover {
  background: #8CB824;
}

.header-logo {
  width: 100px;
  height: 50px;
  margin-right: auto;
  /* Small devices such as large phones (640px and up) */
}
@media only screen and (min-width: 640px) {
  .header-logo {
    width: 160px;
    height: 95px;
  }
}
.header-logo a {
  display: block;
}
.header-logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 15px 0;
  /* Small devices such as large phones (640px and up) */
}
@media only screen and (min-width: 640px) {
  .header-logo img {
    height: 41px;
  }
}

.header-language {
  position: relative;
  color: #2C2928;
  width: 50px;
  right: 50px;
  font-weight: 600;
  transition: all 0.4s ease-out;
  /* Large devices such as laptops (979px and up) */
}
@media only screen and (min-width: 979px) {
  .header-language {
    right: unset;
  }
}
.header-language .current-language {
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.4s ease-out;
}
.header-language .lang-inline {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 10px 0 0 0;
  width: 100%;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0 0 8px 8px;
}
.header-language .lang-inline li {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none;
}
.header-language .lang-inline li a {
  width: auto;
  height: auto;
  display: block;
  text-decoration: none;
  padding: 4px;
  color: #2C2928;
  transition: color 0.4s ease-out;
}
.header-language .lang-inline li a:hover {
  color: #8CB824;
}

/*# sourceMappingURL=header.css.map */
