.header {
  width: 100%;
  height: 122px;
  position: relative;
}

.header__mobile-menu {
  display: none;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me input {
    margin-right: 5px;
    width: 13px !important;
    margin-bottom: 0 !important;
}

.remember-me label {
    white-space: nowrap;
}

.auth-name {
    margin-right: 20px;
    font-size: 20px;
    font-family: georgia, palatino, book antiqua, palatino linotype, serif;
    display: flex;
    align-items: center;
}

.header__content {
  padding-bottom: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 122px;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  border-top: 0px solid #2f2e2e;
  border-bottom: 0px solid #2f2e2e;
}

.header__top {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

.header__top__left {
  margin-top: 15px;
}

.header__top__right {
  display: flex;
  align-items: center;
}

.header__logo {
  font-size: 36px;
  font-style: italic;
}

.header__logo span {
  font-family: Sacramento;
}

.header__facebook {
  font-size: 13px;
  font-family: georgia, palatino, book antiqua, palatino linotype, serif;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #587855;
          text-decoration-color: #587855;
}

.header__logo span,
.header__facebook span {
  color: #587855;
}

.header__cart {
  width: 34px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  margin-top: 15px;
  position: relative;
  cursor: pointer;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.header__cart:focus {
  outline: none;
}

.header__cart span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 15px;
  color: white;
  margin-top: 4px;
}

.header__cart__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  display: none;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.header__cart__overlay.active {
  display: block;
}

.header__cart__overlay.active .header__cart__overlay__bg {
  display: block;
}

.header__cart__overlay__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.header__cart__overlay__bg.active {
  opacity: 0.5;
}

.header__cart__overlay__sidebar {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 350px;
  max-width: 350px;
  height: 100%;
  z-index: 1;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  background: #EFF0E1;
  display: flex;
  flex-direction: column;
}

.header__cart__overlay__sidebar.active {
  transform: translateX(0);
}

.header__cart__overlay__sidebar__header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #404041;
  position: relative;
}

.header__cart__overlay__sidebar__header button {
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}

.header__cart__overlay__sidebar__header button:focus {
  outline: none;
}

.header__cart__overlay__sidebar__header button img {
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__cart__overlay__sidebar__header h2 {
  text-align: center;
  color: #EFF0E1;
  font-size: 23px;
  font-weight: 400;
}

.header__cart__overlay__sidebar__content {
  overflow-y: auto;
  padding: 0 30px;
}

.header__cart__overlay__sidebar__item {
  display: flex;
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid #CECECF;
}

.header__cart__overlay__sidebar__item:last-of-type {
  border: none;
}

.header__cart__overlay__sidebar__item:hover .header__cart__overlay__sidebar__item__cross {
  opacity: 1;
}

.header__cart__overlay__sidebar__item__cross {
  width: 18px;
  height: 18px;
  opacity: 0;
  position: absolute;
  top: 20px;
  right: 0;
  cursor: pointer;
  border: 1px solid #706C6C;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.header__cart__overlay__sidebar__item__cross img {
  width: 8px;
  height: 8px;
}

.header__cart__overlay__sidebar__item__left img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 80px;
  height: 80px;
}

.header__cart__overlay__sidebar__item__right {
  padding-left: 10px;
}

.header__cart__overlay__sidebar__item__right h3 {
  color: #706C6C;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 3px;
  padding-right: 20px;
}

.header__cart__overlay__sidebar__item__right .price {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 5px;
  display: flex;
}

.header__cart__overlay__sidebar__item__right .amount {
  border: 1px solid black;
  display: flex;
  font-size: 12px;
  padding: 3px 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.header__cart__overlay__sidebar__item__right .amount input {
  padding: 0 10px;
  background: none;
  border: none;
  outline: none;
  max-width: 40px;
  text-align: center;
}

.header__cart__overlay__sidebar__item__right .amount .button {
  cursor: pointer;
}

.header__cart__overlay__sidebar__footer {
  margin-top: auto;
}

.header__cart__overlay__sidebar__footer .price-text {
  padding: 0 30px;
  margin-bottom: 50px;
  font-size: 26px;
}

.header__cart__overlay__sidebar__footer .cart-link-area {
  border-top: 1px solid #CECECF;
  padding: 30px;
}

.header__cart__overlay__sidebar__footer .cart-link-area a {
  text-align: center;
  display: block;
  padding: 10px;
  width: 100%;
  color: #EFF0E1;
  background: #A57D6B;
  transition: opacity 0.4s ease;
}

.header__cart__overlay__sidebar__footer .cart-link-area a:hover {
  opacity: 0.7;
}

.header__nav {
  margin-top: 10px;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.header__nav ul {
  padding: 0;
  margin-right: 20px;
  list-style-type: none;
  display: flex;
}

.header__nav ul li {
  margin-right: 15px;
  border-top: 1px solid rgba(239, 240, 225, 0.8);
}

.header__nav ul li:last-of-type {
  margin-right: 0;
}

.header__nav ul li a {
  padding: 20px 5px;
  border-top: 4px solid rgba(239, 240, 225, 0);
  height: 53px;
  font-family: georgia, palatino, book antiqua, palatino linotype, serif;
  font-size: 17px;
  color: #587855;
  white-space: nowrap;
  display: block;
}

.header__nav ul li a.active,
.header__nav ul li a:hover {
  border-top-width: 4px;
  border-top-color: #404041;
  color: #404041;
}

.header__production {
  position: relative;
}

.header__production__a {
  cursor: default;
  border-top: 1px solid rgba(239, 240, 225, 0.8);
  color: #587855;
}

.header__production:hover .header__production__dropdown {
  display: block;
}

.header__production__dropdown {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  white-space: nowrap;
  padding: 15px 5px 0 5px;
  background-color: rgba(239, 240, 225, 0.8);
  transform: translateY(100%);
  z-index: 1;
}

.header__production__dropdown ul {
  flex-direction: column;
  text-align: right;
  margin: 0;
}

.header__production__dropdown ul li {
  margin: 0;
}

.header__bottom {
  display: flex;
  justify-content: flex-end;
}

.header__bottom__langs, .header__bottom__search {
  margin-right: 50px;
}

.header__bottom__search {
    position: relative; 
}

.header__bottom__langs select, .header__bottom__search input {
  width: 80px;
  border: 1px solid rgba(64, 64, 65, 0.2);
  font-size: 16px;
  color: #404041;
  background: transparent;
  padding: 10px;
  outline: none;
  font-family: georgia, palatino, book antiqua, palatino linotype, serif;
}

.header__bottom__search input {
    width: 300px; 
}

.header__bottom__login-register {
  margin-right: 40px;
  background: none;
  border: none;
  color: #68B04D;
  font-weight: 600;
  font-style: italic;
  font-size: 15px;
  cursor: pointer;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.header__bottom__login-register:focus {
  outline: none;
}

.header__bottom__play {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #587855 url(https://static.parastorage.com/services/skins/2.1229.80/images/wysiwyg/core/themes/base/shiny1button_bg.png) 50% 50% repeat-x;
  text-align: center;
  cursor: pointer !important;
  border: 0px solid white;
  transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s, color 0.4s ease 0s;
  border-radius: 100px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.header__bottom__play .play {
  width: 20px;
  height: 13px;
  margin-left: 4px;
}

.header__bottom__play .pause {
  margin-left: 1px;
}

.header__bottom__play:hover {
  background-color: rgba(43, 108, 163, 0.8);
}

.header__bottom__play:focus {
  outline: none;
}

.header__bottom__login-register__button {
     border: 1px solid rgba(64, 64, 65, 0.2);
     font-size: 16px;
     font-weight: 400;
     color: #404041;
     background: transparent;
     padding: 10px;
     outline: none;
     margin-right: 20px;
     cursor: pointer; 
     white-space: nowrap;
     font-family: georgia, palatino, book antiqua, palatino linotype, serif;
}
 

  
.header__bottom__search__submit {
  position: absolute;
  right: 10px; 
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  border: none;
  
}

.header__bottom__search__submit img { 
  width: 20px;
  height: 20px;
}


.login-register-profile-modal {
	 display: none;
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 justify-content: center;
	 align-items: center;
	 z-index: 25000;
	 overflow-y: auto;
}
 .login-register-profile-modal__pic {
	 margin-bottom: 20px;
	 cursor: pointer;
}
 .login-register-profile-modal__pic img {
	 width: 100px;
	 height: 100px;
	 border-radius: 50%;
	 object-fit: cover;
}
 .login-register-profile-modal .login-modal, .login-register-profile-modal .register-modal, .login-register-profile-modal .profile-modal {
	 display: none;
}
 .login-register-profile-modal .login-modal.active, .login-register-profile-modal .register-modal.active, .login-register-profile-modal .profile-modal.active {
	 display: block;
}
 .login-register-profile-modal__content {
	 padding: 20px;
}
 .login-register-profile-modal__content form {
	 display: flex;
	 align-items: center;
	 flex-direction: column;
}
 .login-register-profile-modal__content form .info {
	 margin-bottom: 20px;
	 font-size: 16px;
}
 .login-register-profile-modal__content form .info, .login-register-profile-modal__content form .response {
	 font-family: georgia, palatino, book antiqua, palatino linotype, serif;
	 font-weight: 400;
	 color: #404041;
}
 .login-register-profile-modal__content form .response {
	 font-size: 12px;
	 margin-top: 5px;
}
 .login-register-profile-modal__content h2 {
	 font-size: 22px;
	 font-weight: 400;
	 margin-bottom: 30px;
}
 .login-register-profile-modal__content input {
	 width: 100%;
	 border: 1px solid rgba(64, 64, 65, 0.2);
	 font-size: 16px;
	 font-weight: 400;
	 margin-bottom: 20px;
	 color: #404041;
	 background: transparent;
	 padding: 10px;
	 outline: none;
	 font-family: georgia, palatino, book antiqua, palatino linotype, serif;
}
 .login-register-profile-modal__content button {
	 width: 100%;
	 background-color: #74806a;
	 border: none;
	 height: 42px;
	 color: #eff0e1;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 padding: 8px;
	 cursor: pointer;
	 font-size: 16px;
	 font-weight: 400;
	 font-family: georgia, palatino, book antiqua, palatino linotype, serif;
}
 .login-register-profile-modal__bg {
	 background: rgba(0, 0, 0, .5);
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
}
 .login-register-profile-modal__card {
	 max-width: 320px;
	 width: 100%;
	 min-height: 300px;
	 background: white;
	 z-index: 1;
	 position: relative;
}
 .login-register-profile-modal__card__cross {
	 position: absolute;
	 right: 20px;
	 top: 20px;
	 cursor: pointer;
}
 .login-register-profile-modal__top {
	 display: flex;
	 margin-top: 60px;
}
 .login-register-profile-modal__top__item {
	 width: 100%;
	 border-bottom: 1px solid rgba(64, 64, 65, 0.2);
	 font-family: georgia, palatino, book antiqua, palatino linotype, serif;
	 font-size: 17px;
	 font-weight: 400;
	 text-align: center;
	 cursor: pointer;
}
 .login-register-profile-modal__top__item.active {
	 border-bottom: 1px solid #74806a;
	 font-weight: 500;
}
 .login-register-profile-modal.active {
	 display: flex;
}

@media (max-width: 960px) {
  .header {
    height: auto;
  }

  .header__mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    font-family: Arial;
  }
  
  .header__bottom__login-register__button {
      margin-right: 0;
      margin-bottom: 20px; 
  }
  

  .header__mobile-menu.active .header__mobile-menu__nav {
    display: block;
  }

  .header__mobile-menu.active .header__mobile-menu__toggler .open {
    display: block;
  }

  .header__mobile-menu.active .header__mobile-menu__toggler .closed {
    display: none;
  }

  .header__mobile-menu__toggler {
    width: 50px;
    height: 50px;
    background-color: #f6dcd0;
    border: solid 1px #404041;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header__mobile-menu__toggler svg {
    width: 20px;
    overflow: visible;
    stroke-width: 3px;
    stroke: #404041;
    height: 17px;
  }

  .header__mobile-menu__toggler .open {
    display: none;
  }

  .header__mobile-menu__toggler:focus {
    outline: none;
  }

  .header__mobile-menu__nav {
    display: none;
    background-color: #f6dcd0;
    border: 1px solid #404041;
    width: 280px;
  }

  .header__mobile-menu__nav ul {
    padding: 0;
    list-style-type: none;
  }
  
  .header__bottom__search {
      margin-bottom: 30px;
      margin-right: 0;
  }

  .header__mobile-menu__nav ul li a {
    display: block;
    line-height: 48px;
    padding: 0 15px;
    font-size: 16px;
    color: #404041;
    border-bottom: 1px solid #404041;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header__mobile-menu__nav ul li:last-of-type a {
    border-bottom: none;
  }

  .header__mobile-menu__production__dropdown {
    display: none;
  }

  .header__mobile-menu__production__dropdown.active {
    display: block;
  }

  .header__mobile-menu__production li a {
    border-bottom: 1px solid #404041 !important;
  }

  .header__mobile-menu__production__button {
    display: flex !important;
    justify-content: space-between;
    padding: 0 !important;
  }

  .header__mobile-menu__production__button span,
  .header__mobile-menu__production__button button {
    padding: 0 15px;
  }

  .header__mobile-menu__production__button button {
    cursor: pointer;
    font-size: 30px;
    background: none;
    border: none;
    border-left: 1px solid #404041;
  }

  .header__mobile-menu__production__button button:focus {
    outline: none;
  }

  .header__content {
    position: relative;
    height: auto;
  }

  .header__logo {
    margin-bottom: 15px;
  }

  .header__nav {
    display: none;
  }

  .header__top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header__top__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
  }

  .header__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header__bottom__langs {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .header__bottom__login-register {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .header__cart {
    margin-bottom: 20px;
  }
}
 