@charset "UTF-8";
@font-face {
  font-family: "Assistant";
  src: url("/assets/fonts/Assistant-Light.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 300;
}
@font-face {
  font-family: "Assistant";
  src: url("/assets/fonts/Assistant-Regular.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 400;
}
@font-face {
  font-family: "Assistant";
  src: url("/assets/fonts/Assistant-Medium.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 500;
}
@font-face {
  font-family: "Assistant";
  src: url("/assets/fonts/Assistant-SemiBold.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 600;
}
@font-face {
  font-family: "Assistant";
  src: url("/assets/fonts/Assistant-Bold.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 700;
}
@font-face {
  font-family: "Bebas Kai";
  src: url("/assets/fonts/BebasKai.ttf") format("truetype"); /* Legacy iOS */
  font-weight: 400;
}
body {
  font-size: 14px;
  font-family: Assistant, sans-serif;
  padding: 50px 0 0;
  margin: 0;
  color: #000;
  font-weight: 300;
  background-color: transparent;
  overflow-x: hidden;
}
body a {
  color: inherit;
}

* {
  font-size: inherit;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: inherit;
  line-height: 1.4em;
  text-decoration: none;
}

input,
textarea {
  font-family: Assistant, sans-serif;
}

button {
  outline: none;
  border: none;
  background-color: transparent;
  background-image: none;
  color: inherit;
  font-family: Assistant, sans-serif;
}

li {
  display: inline-block;
}

img {
  height: auto;
  -o-object-position: center;
     object-position: center;
  max-width: 100%;
}

figure {
  max-width: 100%;
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.modal-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

body > .modal-overlay {
  z-index: 5;
}

.modal {
  display: table;
  position: static;
  border-radius: 10px;
  background-color: #fff;
  margin: auto;
  max-width: 500px;
  width: 100%;
  padding: 15px 15px 17px;
  z-index: 11;
}

.modal-container {
  pointer-events: none;
  position: fixed;
  width: 100%;
  z-index: 11;
  height: 100%;
  left: 0;
  top: 0;
  overflow: auto;
  padding: 15px;
  display: flex;
}
.modal-container.active {
  display: flex;
}
.modal-container > * {
  pointer-events: auto;
}

.modal__close {
  width: 50px;
  height: 50px;
  position: relative;
  opacity: 0.7;
  transition: 0.2s;
  cursor: pointer;
  transform: scale(0.9);
}
.modal__close:after, .modal__close:before {
  content: "";
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
  display: block;
  top: 50%;
  left: 50%;
  position: absolute;
  background-color: #000;
}
.modal__close:before {
  width: 50%;
  height: 1px;
}
.modal__close:after {
  width: 1px;
  height: 50%;
}
.modal__close:hover {
  transform: scale(1);
  opacity: 1;
}

html[dir=ltr] .modal__heading {
  font-family: Bebas Kai, Assistant, Sans-serif;
  font-size: 18px;
}
html[dir=ltr] .modal__close {
  margin: -15px -15px 0 auto;
}

html[dir=rtl] .modal__heading {
  font-size: 16px;
}
html[dir=rtl] .modal__close {
  margin: -15px auto 0 -15px;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 4;
  font-family: Assistant, Sans-serif;
}
.header * {
  font-family: inherit;
}

.header__top {
  background-color: #fff;
}

.header__container {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
}

.header__account {
  cursor: pointer;
  margin: 0 7px;
}
.header__account:hover .header__account-dropdown {
  pointer-events: auto;
  opacity: 1;
}

.header__account-text {
  display: none;
  position: relative;
  z-index: 1;
}

.header__account-dropdown {
  position: absolute;
  top: 0;
  padding-top: 50px;
  pointer-events: none;
  transition: 0.4s;
  opacity: 0;
}

.header__account-menu {
  background-color: #fff;
  box-shadow: 6px 0 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 200px;
  padding: 12px 0;
  cursor: auto;
}

.header__account-username {
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px 17px;
}

.header__account-form {
  padding: 10px 19px 0;
  display: block;
}
.header__account-form.first {
  border-top: 1px solid #f4f4f4;
}

.header__account-btn {
  height: 38px;
  line-height: 38px;
  padding: 0 19px;
  border-radius: 5px;
  display: block;
  width: 100%;
  transition: 0.2s;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.header__account-btn:hover {
  background-color: #f9f9f9;
  color: #00427c;
}

.header__logo-link {
  display: block;
  position: absolute;
  max-width: 68px;
  top: 0;
  border-radius: 50%;
  border: 3px solid #fff;
}

.header__logo-image {
  width: 100%;
  display: block;
}

.header__menu-btn {
  width: 16px;
  height: 14px;
  border-top: 2px solid #aeaeae;
  border-bottom: 2px solid #aeaeae;
  position: relative;
  transition: 0.1s;
  cursor: pointer;
  order: 6;
}
.header__menu-btn:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #aeaeae;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.1s;
}
.header__menu-btn:hover {
  border-top: 2px solid #00427C;
  border-bottom: 2px solid #00427C;
}
.header__menu-btn:hover:before {
  background-color: #00427C;
}

.header__wishlist,
.header__message,
.header__search-btn,
.search-form__btn,
.header__account-icon,
.header__icon-facebook {
  background-size: 95%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: 0 7px;
  transition: 0.1s;
}

.header__wishlist {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26.372' height='24.828'%3e%3cpath fill='none' stroke='%232b2b2b' d='M25.846 7.468C25.479 3.434 22.545.5 19.061.5a6.557 6.557 0 0 0-5.865 3.3A6.7 6.7 0 0 0 7.51.5C3.843.5.91 3.434.542 7.468a7.962 7.962 0 0 0 .183 2.75 11.466 11.466 0 0 0 3.484 5.867l8.8 8.068 8.987-8.067a11.466 11.466 0 0 0 3.484-5.867 6.154 6.154 0 0 0 .366-2.751Z'/%3e%3c/svg%3e");
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}
.header__wishlist:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26.372' height='24.828'%3e%3cpath fill='%23CB1F2F' stroke='%23CB1F2F' d='M25.846 7.468C25.479 3.434 22.545.5 19.061.5a6.557 6.557 0 0 0-5.865 3.3A6.7 6.7 0 0 0 7.51.5C3.843.5.91 3.434.542 7.468a7.962 7.962 0 0 0 .183 2.75 11.466 11.466 0 0 0 3.484 5.867l8.8 8.068 8.987-8.067a11.466 11.466 0 0 0 3.484-5.867 6.154 6.154 0 0 0 .366-2.751Z'/%3e%3c/svg%3e");
}

.header__message {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='29.571' height='23'%3e%3cg fill='%23424242' data-name='Group 171'%3e%3cpath d='M26.833 0h-24.1A2.741 2.741 0 0 0 0 2.738v17.524A2.741 2.741 0 0 0 2.738 23h24.1a2.741 2.741 0 0 0 2.738-2.738V2.738A2.741 2.741 0 0 0 26.833 0Zm1.643 20.262a1.645 1.645 0 0 1-1.643 1.643h-24.1a1.645 1.645 0 0 1-1.643-1.643V2.738a1.645 1.645 0 0 1 1.643-1.643h24.1a1.645 1.645 0 0 1 1.643 1.643Z' data-name='Path 70'/%3e%3cpath d='m26.475 2.323-10.39 8.973a2.081 2.081 0 0 1-2.6 0L3.095 2.323a.547.547 0 1 0-.715.829l10.389 8.973a3.183 3.183 0 0 0 4.032 0L27.19 3.152a.547.547 0 1 0-.715-.829Z' data-name='Path 71'/%3e%3c/g%3e%3c/svg%3e");
  width: 19px;
  height: 19px;
  position: relative;
  z-index: 1;
}
.header__message:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='29.571' height='23'%3e%3cg fill='%2300427C' data-name='Group 171'%3e%3cpath d='M26.833 0h-24.1A2.741 2.741 0 0 0 0 2.738v17.524A2.741 2.741 0 0 0 2.738 23h24.1a2.741 2.741 0 0 0 2.738-2.738V2.738A2.741 2.741 0 0 0 26.833 0Zm1.643 20.262a1.645 1.645 0 0 1-1.643 1.643h-24.1a1.645 1.645 0 0 1-1.643-1.643V2.738a1.645 1.645 0 0 1 1.643-1.643h24.1a1.645 1.645 0 0 1 1.643 1.643Z' data-name='Path 70'/%3e%3cpath d='m26.475 2.323-10.39 8.973a2.081 2.081 0 0 1-2.6 0L3.095 2.323a.547.547 0 1 0-.715.829l10.389 8.973a3.183 3.183 0 0 0 4.032 0L27.19 3.152a.547.547 0 1 0-.715-.829Z' data-name='Path 71'/%3e%3c/g%3e%3c/svg%3e");
}

.header__icon-facebook {
  width: 19px;
  height: 19px;
  position: relative;
  z-index: 1;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15.903' height='15.807'%3e%3cpath fill='%23acacac' d='M15.9 7.952a7.952 7.952 0 1 0-9.194 7.855V10.25h-2.02v-2.3h2.02V6.2a2.805 2.805 0 0 1 3-3.093 12.237 12.237 0 0 1 1.78.155v1.956h-1a1.149 1.149 0 0 0-1.3 1.242v1.493H11.4l-.353 2.3H9.194v5.557A7.954 7.954 0 0 0 15.9 7.952Z'/%3e%3c/svg%3e");
}

.header__search-btn {
  width: 19px;
  height: 19px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' data-name='icon/action/search_24px'%3e%3cpath fill='none' d='M0 0h24v24H0z'/%3e%3cpath fill='%23424242' d='m19.467 21-5.146-5.134v-.813l-.278-.288a6.7 6.7 0 1 1 .721-.721l.288.278h.813L21 19.467 19.468 21ZM9.689 5.058a4.631 4.631 0 1 0 4.631 4.631 4.637 4.637 0 0 0-4.631-4.631Z' data-name='↳Color'/%3e%3c/svg%3e");
  cursor: pointer;
  order: 4;
}
.header__search-btn:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' data-name='icon/action/search_24px'%3e%3cpath fill='none' d='M0 0h24v24H0z'/%3e%3cpath fill='%2300427C' d='m19.467 21-5.146-5.134v-.813l-.278-.288a6.7 6.7 0 1 1 .721-.721l.288.278h.813L21 19.467 19.468 21ZM9.689 5.058a4.631 4.631 0 1 0 4.631 4.631 4.637 4.637 0 0 0-4.631-4.631Z' data-name='↳Color'/%3e%3c/svg%3e");
}

.language-switcher__text {
  display: none;
}

.language-switcher__flag {
  width: 26px;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #efefef;
}

.header__language-switcher {
  display: block;
  order: 5;
  position: relative;
  cursor: pointer;
}
.header__language-switcher:hover .languages-list {
  pointer-events: auto;
  opacity: 1;
}

.languages-list {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateY(100%) translateX(-50%);
  min-width: 30px;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  padding: 30px 0 0;
  border: 1px solid #efefef;
}

.languages-list__inner-wrapper {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}

.languages-list__item {
  padding: 4px;
  background-color: #fff;
  width: 100%;
  display: flex;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.15em;
  font-weight: 500;
  font-size: 0;
  border: 1px solid #efefef;
}
.languages-list__item:hover {
  background-color: #f9f9f9;
}

.languages-list__item-image {
  min-width: 26px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border: 1px solid #efefef;
}

.header__account-icon {
  width: 17px;
  height: 17px;
  margin: 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='25.343' height='24.754'%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='%232b2b2b' d='M0 0h25.343v24.754H0z' data-name='Rectangle 9'/%3e%3c/clipPath%3e%3c/defs%3e%3cg data-name='Group 10'%3e%3cg fill='%232b2b2b' clip-path='url(%23a)' data-name='Group 9'%3e%3cpath d='M25.343 24.753H23.87a11.2 11.2 0 1 0-22.4 0H0a12.672 12.672 0 0 1 25.343 0' data-name='Path 5'/%3e%3cpath d='M12.669 13.408a6.7 6.7 0 1 1 6.7-6.7 6.712 6.712 0 0 1-6.7 6.7m0-11.934A5.23 5.23 0 1 0 17.902 6.7a5.237 5.237 0 0 0-5.233-5.226' data-name='Path 6'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.header__account-icon:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='25.343' height='24.754'%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='%2300427C' d='M0 0h25.343v24.754H0z' data-name='Rectangle 9'/%3e%3c/clipPath%3e%3c/defs%3e%3cg data-name='Group 10'%3e%3cg fill='%2300427C' clip-path='url(%23a)' data-name='Group 9'%3e%3cpath d='M25.343 24.753H23.87a11.2 11.2 0 1 0-22.4 0H0a12.672 12.672 0 0 1 25.343 0' data-name='Path 5'/%3e%3cpath d='M12.669 13.408a6.7 6.7 0 1 1 6.7-6.7 6.712 6.712 0 0 1-6.7 6.7m0-11.934A5.23 5.23 0 1 0 17.902 6.7a5.237 5.237 0 0 0-5.233-5.226' data-name='Path 6'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

.header__nav {
  position: fixed;
  width: 230px;
  top: 0;
  height: 100%;
  background-color: #00427C;
  color: #fff;
  z-index: 10;
}
.header__nav:not(.mobile-menu) {
  display: none;
}

.header__menu {
  display: block;
  margin: 0;
  padding: 0;
}

header-menu.header__menu .header__submenu {
  display: none;
}

.header__menu-item {
  display: block;
  border-bottom: 1px solid #00427c;
  position: relative;
}
.header__menu-item.has-children {
  position: relative;
}
.header__menu-item.has-children::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  right: 3px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(135deg);
  top: 16px;
  pointer-events: none;
}

.header__submenu {
  position: absolute;
  top: 100%;
  background: #fff;
  color: #00427c;
}
.header__submenu.is-child .header__submenu {
  top: 0;
  right: 100%;
}
.header__submenu .header__menu-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.header__submenu .header__menu-item.has-children::after {
  width: 6px;
  height: 6px;
  right: unset;
  left: 8px;
  top: 18px;
  transform: rotate(225deg);
  border-color: #00427c;
}

.header__menu-link {
  display: block;
  padding: 10px 15px;
  font-family: Assistant, Sans-Serif;
  text-transform: uppercase;
  transition: 0.2s;
  font-weight: 600;
  font-size: 15px;
}
.header__menu-link:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  z-index: 5;
}

.header__search-form {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  z-index: 9;
  padding: 5px;
  transition: 0.3s;
  display: none;
}
.header__search-form.init {
  display: flex;
}
.header__search-form .modal__close {
  transform: none;
  background-color: #333;
  min-width: 50px;
  min-height: 50px;
  margin: 0 !important;
  top: -5px;
}
.header__search-form .modal__close:before, .header__search-form .modal__close:after {
  background-color: #fff;
}

.search-form__input {
  height: 100%;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 50px;
  padding: 0 15px;
  font-weight: 400;
  font-size: 14px;
}

.search-form__btn {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 9px;
  border-radius: 50%;
  background-color: #00427C;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' data-name='icon/action/search_24px'%3e%3cpath fill='none' d='M0 0h24v24H0z'/%3e%3cpath fill='%23ffffff' d='m19.467 21-5.146-5.134v-.813l-.278-.288a6.7 6.7 0 1 1 .721-.721l.288.278h.813L21 19.467 19.468 21ZM9.689 5.058a4.631 4.631 0 1 0 4.631 4.631 4.637 4.637 0 0 0-4.631-4.631Z' data-name='↳Color'/%3e%3c/svg%3e");
  background-size: 55%;
  cursor: pointer;
  transition: 0.2s;
}
.search-form__btn:hover {
  opacity: 0.7;
}

.popup-message {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  background-color: #005CAC;
  color: #fff;
  font-size: 16px;
  padding: 5px 20px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  z-index: 8;
  min-height: 50px;
}
.popup-message.error {
  background-color: #CB1F2F;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

html[dir=rtl] .header__logo-link {
  right: 5px;
}
html[dir=rtl] .header__container {
  padding: 15px 75px 15px 10px;
}
html[dir=rtl] .header__language-switcher {
  margin: 0 auto 0 15px;
}
html[dir=rtl] .header__search-btn {
  margin: 0 auto 0 15px;
}
html[dir=rtl] .header__search-btn ~ .header__language-switcher {
  margin: 0 0 0 15px;
}
html[dir=rtl] .header__nav {
  right: 0;
}
html[dir=rtl] .search-form__btn {
  left: 2px;
}
html[dir=rtl] .header__account-dropdown {
  transform: translateY(-10%) translateX(50%);
}
html[dir=rtl] .header__account:hover .header__account-dropdown {
  transform: translateY(0) translateX(50%);
}
html[dir=rtl] .header__account-btn {
  text-align: right;
}
html[dir=rtl] .header__search-form .modal__close {
  right: -5px;
}

html[dir=ltr] .header__logo-link {
  left: 5px;
}
html[dir=ltr] .header__submenu.is-child .header__submenu {
  left: 100%;
  right: unset;
}
html[dir=ltr] .header__submenu .header__menu-item.has-children::after {
  right: 8px;
  top: 18px;
  left: unset;
  transform: rotate(45deg);
}
html[dir=ltr] .header__container {
  padding: 15px 10px 15px 75px;
}
html[dir=ltr] .header__language-switcher {
  margin: 0 15px 0 auto;
}
html[dir=ltr] .header__search-btn {
  margin: 0 15px 0 auto;
}
html[dir=ltr] .header__search-btn ~ .header__language-switcher {
  margin: 0 15px 0 0;
}
html[dir=ltr] .header__nav {
  left: 0;
}
html[dir=ltr] .search-form__btn {
  right: 2px;
}
html[dir=ltr] .header__account-dropdown {
  transform: translateY(-10%) translateX(-50%);
}
html[dir=ltr] .header__account:hover .header__account-dropdown {
  transform: translateY(0) translateX(-50%);
}
html[dir=ltr] .header__account-btn {
  text-align: left;
}
html[dir=ltr] .header__search-form .modal__close {
  left: -5px;
}

@media (min-width: 581px) {
  .header__account:hover .header__account-dropdown {
    transform: translateY(0) translateX(-100%);
  }
  .header__account-dropdown {
    transform: translateX(-100%);
  }
  .header__search-btn {
    display: none;
  }
  .header__search-form {
    position: relative;
    display: block;
    padding: 0 15px;
    height: 40px;
    width: auto;
    flex: 1;
    z-index: 0;
    max-width: 610px;
    margin: 0 auto;
  }
  .search-form__btn {
    top: 4px;
  }
  html[dir=ltr] .header__container {
    padding: 5px 10px 5px 75px;
  }
  html[dir=ltr] .search-form__btn {
    right: 12px;
  }
  html[dir=ltr] .header__icon-facebook {
    margin: 0 auto 0 7px;
  }
  html[dir=ltr] .header__account-dropdown {
    transform: translateY(-10%) translateX(-90%);
  }
  html[dir=ltr] .header__account {
    margin: 0 15px 0 auto;
  }
  html[dir=ltr] .header__account:hover .header__account-dropdown {
    transform: translateY(0) translateX(-90%);
  }
  html[dir=rtl] .header__container {
    padding: 5px 75px 5px 10px;
  }
  html[dir=rtl] .search-form__btn {
    left: 12px;
  }
  html[dir=rtl] .header__account {
    margin: 0 auto 0 15px;
  }
  html[dir=rtl] .header__account:hover .header__account-dropdown {
    transform: translateY(0) translateX(90%);
  }
  html[dir=rtl] .header__icon-facebook {
    margin: 0 7px 0 auto;
  }
  html[dir=rtl] .header__account-dropdown {
    transform: translateY(-10%) translateX(90%);
  }
}
@media (min-width: 767px) {
  .header__logo-link {
    max-width: 80px;
  }
  body {
    padding-top: 60px;
  }
  .popup-message {
    height: 60px;
  }
  html[dir=ltr] .header__container {
    padding: 10px 15px 10px 100px;
  }
  html[dir=ltr] .header__logo-link {
    left: 10px;
  }
  html[dir=rtl] .header__container {
    padding: 10px 100px 10px 15px;
  }
  html[dir=rtl] .header__logo-link {
    right: 10px;
  }
}
@media (min-width: 1201px) {
  body {
    padding-top: 103px;
  }
  .header__nav {
    position: static;
    transform: none !important;
    width: 100%;
  }
  .header__nav:not(.mobile-menu) {
    display: block;
  }
  .header__menu {
    display: flex;
    justify-content: center;
  }
  .header__menu-link {
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 16px;
  }
  .header__menu-btn {
    display: none;
  }
  .header__wishlist {
    width: 20px;
    height: 20px;
    margin: 0 10px;
  }
  .header__message {
    width: 23px;
    height: 23px;
  }
  .header__icon-facebook {
    width: 23px;
    height: 23px;
  }
  .header__logo-link {
    max-width: 130px;
    width: 120px;
    height: 120px;
    border: 5px solid #fff;
    top: 0;
  }
  .header__logo-link:before {
    content: "";
    top: 53px;
    width: 208px;
    height: 24px;
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .language-switcher__text {
    display: block;
    font-weight: 600;
    font-size: 14px;
    align-self: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }
  .header__language-switcher {
    margin: 0 !important;
    display: flex;
    position: relative;
  }
  .header__language-switcher:before {
    content: "";
    position: absolute;
    width: 1px;
    background-color: #DDDDDD;
    height: 100%;
  }
  .languages-list {
    bottom: 29px;
    padding: 33px 0 0;
    min-width: 70px;
  }
  .languages-list__item {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 7px;
    font-weight: 600;
  }
  .languages-list__item-image {
    min-width: 26px;
  }
  .language-switcher__flag {
    width: 26px;
    align-self: center;
  }
  .header__account-icon {
    width: 20px;
    height: 20px;
  }
  .header__logo-image {
    position: relative;
    z-index: 1;
  }
  .header__account-text {
    display: block;
    color: #707070;
    font-weight: 500;
    font-size: 14px;
  }
  .header__account {
    display: flex;
    align-items: center;
  }
  .header__account .header__account-text a:hover {
    color: #00427C;
  }
  .header__account-menu {
    width: 250px;
  }
  .popup-message {
    top: 60px;
    height: 43px;
    max-height: 43px;
    min-height: 43px;
    padding: 5px 15px;
  }
  html[dir=ltr] .header__icon-facebook {
    margin: 0 auto 0 10px;
  }
  html[dir=ltr] .header__logo-link {
    left: 29px;
  }
  html[dir=ltr] .header__logo-link:before {
    left: 111px;
    background-image: url("/assets/images/logo-wave.png");
  }
  html[dir=ltr] .header__container {
    padding: 10px 50px 10px 186px;
  }
  html[dir=ltr] .language-switcher__text {
    margin: 0 0 0 8px;
  }
  html[dir=ltr] .header__account {
    margin: 0 29px 0 auto;
  }
  html[dir=ltr] .header__account:hover .header__account-dropdown {
    transform: translateY(0) translateX(-50%);
  }
  html[dir=ltr] .header__language-switcher:before {
    left: -15px;
  }
  html[dir=ltr] .languages-list__item-image {
    margin: 0 8px 0 0;
  }
  html[dir=ltr] .header__account-text {
    margin: 0 9px 0 0;
  }
  html[dir=ltr] .header__account-dropdown {
    transform: translateY(-10%) translateX(-50%);
  }
  html[dir=rtl] .header__logo-link {
    right: 29px;
  }
  html[dir=rtl] .header__logo-link:before {
    right: 111px;
    transform: revert;
    background-image: url("/assets/images/logo-wave-rtl.png");
  }
  html[dir=rtl] .header__icon-facebook {
    margin: 0 10px 0 auto;
  }
  html[dir=rtl] .header__container {
    padding: 10px 186px 10px 50px;
  }
  html[dir=rtl] .language-switcher__text {
    margin: 0 8px 0 0;
  }
  html[dir=rtl] .header__account {
    margin: 0 auto 0 29px;
  }
  html[dir=rtl] .header__account:hover .header__account-dropdown {
    transform: translateY(0) translateX(50%);
  }
  html[dir=rtl] .header__language-switcher:before {
    right: -15px;
  }
  html[dir=rtl] .languages-list__item-image {
    margin: 0 0 0 8px;
  }
  html[dir=rtl] .header__account-text {
    margin: 0 0 0 9px;
  }
  html[dir=rtl] .header__account-dropdown {
    transform: translateY(-10%) translateX(50%);
  }
}
@media (min-width: 1600px) {
  body {
    padding-top: 138px;
  }
  .header__account-dropdown {
    padding-top: 75px;
  }
  .header__account-username {
    font-size: 16px;
  }
  .header__account-link {
    font-size: 14px;
  }
  .header__account-btn {
    font-size: 15px;
  }
  .header__account-text {
    font-size: 18px;
  }
  .header__wishlist {
    width: 27px;
    height: 27px;
    margin: 0 20px;
  }
  .header__message {
    width: 31px;
    height: 31px;
  }
  .header__icon-facebook {
    width: 31px;
    height: 31px;
  }
  .header__logo-link {
    max-width: 156px;
    width: 150px;
    height: 150px;
    border: 10px solid #fff;
  }
  .header__logo-link:before {
    content: "";
    top: 72px;
  }
  .header__menu-item.has-children::after {
    right: 10px;
    top: 23px;
  }
  .header__submenu .header__menu-item.has-children::after {
    left: 13px;
    top: 25px;
  }
  .languages-list {
    bottom: 38px;
    padding: 44px 0 0;
    min-width: 80px;
  }
  .languages-list__item {
    padding: 8px;
    font-size: 16px;
  }
  .languages-list__item-image {
    min-width: 30px;
  }
  .language-switcher__flag {
    width: 30px;
  }
  .header__account-icon {
    width: 26px;
    height: 26px;
  }
  .header__search-form {
    height: 52px;
    max-width: 640px;
  }
  .search-form__input {
    font-size: 18px;
    padding: 0 20px;
  }
  .search-form__btn {
    width: 43px;
    height: 43px;
  }
  .header__menu-link {
    font-size: 20px;
    padding: 14px 27px;
  }
  .language-switcher__text {
    font-size: 17px;
  }
  .popup-message {
    top: 82px;
    height: 57px;
    max-height: 57px;
    min-height: 57px;
  }
  html[dir=ltr] .header__icon-facebook {
    margin: 0 auto 0 20px;
  }
  html[dir=ltr] .header__submenu.is-child .header__submenu {
    left: 100%;
  }
  html[dir=ltr] .header__submenu .header__menu-item.has-children::after {
    right: 10px;
    top: 23px;
  }
  html[dir=ltr] .header__container {
    padding: 15px 50px 15px 220px;
  }
  html[dir=ltr] .language-switcher__text {
    margin: 0 0 0 8px;
  }
  html[dir=ltr] .header__account {
    margin: 0 79px 0 auto;
  }
  html[dir=ltr] .header__language-switcher:before {
    left: -40px;
  }
  html[dir=ltr] .header__logo-link:before {
    left: 130px;
  }
  html[dir=ltr] .languages-list__item-image {
    margin: 0 8px 0 0;
  }
  html[dir=rtl] .header__logo-link:before {
    right: 130px;
  }
  html[dir=rtl] .header__icon-facebook {
    margin: 0 20px 0 auto;
  }
  html[dir=rtl] .header__container {
    padding: 15px 220px 15px 50px;
  }
  html[dir=rtl] .language-switcher__text {
    margin: 0 8px 0 0;
  }
  html[dir=rtl] .header__account {
    margin: 0 auto 0 79px;
  }
  html[dir=rtl] .header__language-switcher:before {
    right: -40px;
  }
  html[dir=rtl] .languages-list__item-image {
    margin: 0 0 0 8px;
  }
}
.p-tooltip .p-tooltip-text {
  font-size: 16px;
  color: #ffffff;
  padding: 5px;
}

@media (max-width: 1200px) {
  .header__submenu {
    position: static;
    background: transparent;
    color: #fff;
  }
  .header__submenu .header__menu-item.has-children::after {
    transform: rotate(135deg);
    border-color: #ffffff;
    right: unset;
    left: 20px;
    top: 15px;
  }
  .header__menu-item.has-children .header__menu-link {
    width: -moz-fit-content;
    width: fit-content;
  }
  .header__menu-item.has-children::after {
    right: unset;
    left: 20px;
    top: 15px;
  }
  .header__menu-item.has-children.active::after {
    transform: rotate(315deg);
    top: 17px;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.listing {
  z-index: 0;
  position: relative;
}
.listing .swiper-slide {
  height: auto;
}
.listing .swiper-button-prev,
.listing .swiper-button-next {
  width: 51px;
  height: 51px;
  border-radius: 5px;
  border: 1px solid #DDDDDD;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transform: scale(0.7);
  transition: 0.2s;
  opacity: 0.8;
}
.listing .swiper-button-prev:after,
.listing .swiper-button-next:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  position: absolute;
}
.listing .swiper-button-prev:hover,
.listing .swiper-button-next:hover {
  transform: scale(1);
  opacity: 1;
}
.listing .swiper-button-prev {
  left: -15px;
}
.listing .swiper-button-prev:after {
  transform: rotate(-135deg);
  margin: 0 0 0 4px;
}
.listing .swiper-button-next {
  right: -15px;
}
.listing .swiper-button-next:after {
  transform: rotate(45deg);
  margin: 0 4px 0 0;
}
.listing .swiper-pagination {
  position: static;
  margin: 5px 0 0;
}

.listing-item__currency.ils {
  font-size: 16px;
  font-weight: 700;
}

.progress-circle {
  transform: rotate(-90deg);
  width: 40px;
  height: 40px;
  position: relative;
  margin: 5px 0;
}
.progress-circle:before {
  content: "";
  width: 27px;
  height: 27px;
  border-radius: 50%;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  border: 6px solid #EAEBEE;
  box-sizing: content-box !important;
}
.progress-circle svg {
  position: relative;
  z-index: 1;
}

.listing-slider {
  padding: 0;
  max-width: none;
  margin: -15px;
}
.listing-slider .swiper-slide {
  padding: 15px;
}

.listing-item {
  border-radius: 10px;
  border: 1px solid transparent;
  transition: 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.listing-item .color-red {
  color: #CB1F2F;
}
.listing-item .color-blue {
  color: #005CAC;
}
.listing-item:hover {
  border: 1px solid #E4E4E4;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.listing-item .progress-circle {
  display: none;
  transform: rotate(-90deg) scale(0.8);
  position: absolute;
  top: 5px;
}

.listing-item__image-wrap {
  position: relative;
  padding: 33.5% 0;
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.listing-item__image {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.listing-item__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2em;
  display: block;
  position: relative;
  padding: 10px;
}
.listing-item__title:hover {
  text-decoration: underline;
}

.listing-item__description {
  padding: 0 10px 10px;
}

.listing__btns {
  display: none;
}

.listing__btn {
  flex: 1;
  min-width: 90%;
  background-color: #CB1F2F;
  border: 1px solid #CB1F2F;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  height: 35px;
  display: block;
  line-height: 33px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  max-height: 35px;
  font-family: Bebas Kai, Assistant, Sans-serif;
  font-weight: 400;
  margin: 4px 0 auto;
}
.listing__btn:hover {
  background-color: #b91928;
}

.listing__secondary-btn {
  color: #00427C;
  min-width: 90%;
  background-color: transparent;
  transition: 0.3s;
  text-align: center;
  border-radius: 10px;
  height: 35px;
  line-height: 33px;
  font-family: Bebas Kai, Assistant, Sans-serif;
  font-weight: 400;
  max-height: 35px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #00427C;
  margin: 4px 0;
}
.listing__secondary-btn:hover {
  background-color: #00427C;
  color: #fff;
}

.listing-item__badges {
  position: absolute;
  top: 12px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.listing__favorite-btn.added {
  font-size: 0;
  position: relative;
}
.listing__favorite-btn.added:after {
  content: attr(data-added);
  font-size: 14px;
  position: absolute;
  display: block;
  white-space: nowrap;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.listing-item__wishlist {
  background-size: 95%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  transition: 0.1s;
  width: 20px;
  height: 20px;
  margin: 10px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26.372' height='24.828'%3e%3cpath fill='%23fff' stroke='%23fff' d='M25.846 7.468C25.479 3.434 22.545.5 19.061.5a6.557 6.557 0 0 0-5.865 3.3A6.7 6.7 0 0 0 7.51.5C3.843.5.91 3.434.542 7.468a7.962 7.962 0 0 0 .183 2.75 11.466 11.466 0 0 0 3.484 5.867l8.8 8.068 8.987-8.067a11.466 11.466 0 0 0 3.484-5.867 6.154 6.154 0 0 0 .366-2.751Z'/%3e%3c/svg%3e");
  cursor: pointer;
}
.listing-item__wishlist.added, .listing-item__wishlist:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26.372' height='24.828'%3e%3cpath fill='%23ff5e6d' stroke='%23ff5e6d' d='M25.846 7.468C25.479 3.434 22.545.5 19.061.5a6.557 6.557 0 0 0-5.865 3.3A6.7 6.7 0 0 0 7.51.5C3.843.5.91 3.434.542 7.468a7.962 7.962 0 0 0 .183 2.75 11.466 11.466 0 0 0 3.484 5.867l8.8 8.068 8.987-8.067a11.466 11.466 0 0 0 3.484-5.867 6.154 6.154 0 0 0 .366-2.751Z'/%3e%3c/svg%3e");
}
.listing-item__wishlist.disabled {
  animation: pulse 1s 1 ease-in-out;
}

.listing-item__views {
  margin: 10px;
  max-width: 20px;
  text-align: center;
  font-family: "Bebas Kai", "Assistant", Sans-Serif;
  font-size: 14px;
  line-height: 0.8em;
  font-weight: 400;
}

.listing-item__views-image {
  max-width: 20px;
  display: block;
  margin: 0 0 5px;
}

.listing-item__metas {
  display: flex;
  padding: 7px 10px 15px;
  justify-content: space-between;
  margin: auto 0 0;
  position: relative;
}
.listing-item__metas:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 1px;
  display: block;
  background-color: #000;
  top: 0;
}

.listing-item__meta-name {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.listing-item__meta-reserve-not-met {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #CB1F2F;
}

.listing-item__meta-value {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  font-family: "Bebas Kai", "Assistant", Sans-serif;
  line-height: 1em;
}
.listing-item__meta-value * {
  line-height: 0;
}

.listing-col {
  padding: 15px;
  min-width: 100%;
  max-width: 100%;
}

.listing-item__category-badge {
  padding: 5px 10px;
  left: 10px;
  top: 10px;
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 5px;
  font-family: "Bebas Kai", "Assistant", Sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 17px;
}

.listing-item__date {
  font-family: "Bebas Kai", "Assistant", Sans-serif;
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
  padding: 20px 15px 0;
}

.search-dropdown {
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 5px;
  right: 5px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 7px 7px;
  overflow: auto;
}
.search-dropdown .listing-col {
  padding: 15px;
  min-width: 100%;
  max-width: 100%;
}
.search-dropdown .listing-item {
  flex-direction: row;
  flex-wrap: wrap;
  box-shadow: none !important;
  border: none !important;
}
.search-dropdown .listing-item .progress-circle {
  transform: rotate(-90deg) scale(0.65);
}
.search-dropdown .listing-item__image-wrap {
  width: 80px;
  padding: 0;
  height: 55px;
  border-radius: 7px;
}
.search-dropdown .listing-item__title {
  flex: 1;
  padding: 0 10px;
  align-self: center;
  font-size: 15px;
  max-height: 55px;
  overflow: hidden;
}
.search-dropdown .listing-item__metas {
  flex: 1;
  min-width: 100%;
  padding: 7px 0 0;
}
.search-dropdown .listing-item__metas:before {
  content: none;
}
.search-dropdown .listing-item__meta-value {
  font-size: 18px;
}
.search-dropdown .listing-col:not(:last-child) {
  border-bottom: 1px solid #efefef;
}

html[dir=ltr] .listing-item .progress-circle {
  right: 4px;
}
html[dir=ltr] .listing-item__badges {
  right: 12px;
}
html[dir=ltr] .listing-item__meta:nth-of-type(2) {
  margin: 0 0 0 auto;
}
html[dir=ltr] .listing__secondary-btn,
html[dir=ltr] .listing__btn {
  letter-spacing: 0.7px;
}

html[dir=rtl] .listing-item .progress-circle {
  left: 4px;
}
html[dir=rtl] .listing-item__badges {
  left: 12px;
}
html[dir=rtl] .listing-item__meta:nth-of-type(2) {
  margin: 0 auto 0 0;
}
html[dir=rtl] .listing-item__meta:last-child:first-child .listing-item__meta-value {
  font-weight: bold;
}
html[dir=rtl] .listing__secondary-btn,
html[dir=rtl] .listing__btn {
  font-weight: bold;
}

@media (min-width: 320px) {
  .listing-item .progress-circle {
    display: block;
  }
  html[dir=ltr] .listing-item__metas.contain-progress-circle .listing-item__meta:nth-of-type(2) {
    margin: 0 40px 0 auto;
  }
  html[dir=ltr] .search-dropdown .listing-item .progress-circle {
    right: -7px;
  }
  html[dir=ltr] .search-dropdown .listing-item__metas.contain-progress-circle .listing-item__meta:nth-of-type(2) {
    margin: 0 32px 0 auto;
  }
  html[dir=rtl] .listing-item__metas.contain-progress-circle .listing-item__meta:nth-of-type(2) {
    margin: 0 auto 0 40px;
  }
  html[dir=rtl] .search-dropdown .listing-item .progress-circle {
    left: -7px;
  }
  html[dir=rtl] .search-dropdown .listing-item__metas.contain-progress-circle .listing-item__meta:nth-of-type(2) {
    margin: 0 auto 0 32px;
  }
}
@media (min-width: 480px) {
  .listing-col-2-4 {
    min-width: 50%;
    max-width: 50%;
  }
}
@media (min-width: 581px) {
  .search-dropdown {
    left: 35px;
    right: 35px;
  }
}
@media (min-width: 620px) {
  .listing:not(.upcoming-sale-listing) .swiper-pagination {
    display: none;
  }
}
@media (min-width: 810px) {
  .listing-row.listing {
    margin: 10px -11px -11px;
  }
  .listing-row .listing-col {
    min-width: 100% !important;
    padding: 11px;
  }
  .listing-row .listing-item__title {
    margin: 10px 0;
    padding: 0 10px;
    max-height: 39px;
    overflow: hidden;
  }
  .listing-row .listing-item {
    height: 160px;
    position: relative;
    border: none !important;
    box-shadow: none !important;
  }
  .listing-row .listing-item .progress-circle {
    top: 4px;
    transform: rotate(-90deg) scale(0.55);
  }
  .listing-row .listing-item__image-wrap {
    position: absolute;
    height: 100%;
    width: 270px;
    top: 0;
    padding: 0;
    border-radius: 5px;
  }
  .listing-row .listing-item__image-wrap > a {
    position: absolute;
    display: block;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .listing-row .listing-item__metas {
    max-width: 100% !important;
    justify-content: space-between;
    padding: 7px 10px 11px;
  }
  .listing-row .listing-item__metas:before {
    content: none;
  }
  .listing-row .listing-item__description {
    max-height: 39px;
    overflow: hidden;
    margin: 0 0 10px;
    padding: 0 10px;
    font-size: 13px;
  }
  .listing__btns {
    display: flex;
    position: absolute;
    flex-direction: column;
    width: 195px;
    top: 0;
    height: 100%;
    padding: 5px 15px;
    justify-content: flex-end;
  }
  html[dir=ltr] .listing-row .listing-item {
    padding: 0 195px 0 285px;
  }
  html[dir=ltr] .listing-row .listing__btns {
    border-left: 1px solid #DEE4EC;
    right: 0;
  }
  html[dir=ltr] .listing-row .listing-item__meta:first-child {
    margin: 0 30px 0 0;
  }
  html[dir=ltr] .listing-row .listing-item__image-wrap {
    left: 0;
  }
  html[dir=ltr] .listing-row .listing-item__image-wrap > a {
    left: 0;
  }
  html[dir=rtl] .listing-row .listing-item {
    padding: 0 285px 0 195px;
  }
  html[dir=rtl] .listing-row .listing__btns {
    border-right: 1px solid #DEE4EC;
    left: 0;
  }
  html[dir=rtl] .listing-row .listing-item__meta:first-child {
    margin: 0 0 0 30px;
  }
  html[dir=rtl] .listing-row .listing-item__image-wrap {
    right: 0;
  }
  html[dir=rtl] .listing-row .listing-item__image-wrap > a {
    right: 0;
  }
}
@media (min-width: 1050px) {
  .listing-col-2-4 {
    min-width: 25%;
    max-width: 25%;
  }
}
@media (min-width: 1000px) and (max-width: 1099px), (min-width: 1240px) {
  .listing-row .listing-item__title {
    font-size: 17px;
  }
  .listing-row .listing-item__image-wrap {
    width: 320px;
  }
  .listing-row .listing-item__meta-name {
    font-size: 14px;
  }
  .listing-row .listing-item__meta-value {
    font-size: 20px;
  }
  .listing-row .listing-item__metas {
    max-width: 310px;
  }
  .listing-row .listing-item {
    height: 165px;
  }
  .listing-row .listing-item .progress-circle {
    transform: rotate(-90deg) scale(0.7);
    top: 6px;
  }
  .listing__btns {
    width: 210px;
  }
  html[dir=ltr] .listing-row .listing-item__metas.contain-progress-circle .listing-item__meta:nth-of-type(2) {
    margin: 0 41px 0 auto;
  }
  html[dir=ltr] .listing-row .listing-item {
    padding: 0 225px 0 330px;
  }
  html[dir=ltr] .listing__btn {
    right: 7px;
  }
  html[dir=rtl] .listing-row .listing-item__metas.contain-progress-circle .listing-item__meta:nth-of-type(2) {
    margin: 0 auto 0 41px;
  }
  html[dir=rtl] .listing-row .listing-item {
    padding: 10px 225px 10px 195px;
  }
  html[dir=rtl] .listing__btn {
    left: 7px;
  }
}
@media (min-width: 1100px) {
  .listing-row.listing {
    margin: -11px;
  }
}
@media (min-width: 1385px) {
  .listing-row .listing-item__image-wrap {
    width: 350px;
  }
  html[dir=ltr] .listing-row .listing-item {
    padding: 0 225px 0 360px;
  }
  html[dir=rtl] .listing-row .listing-item {
    padding: 0 360px 0 225px;
  }
}
@media (min-width: 1640px) {
  .listing-row {
    margin: -25px !important;
  }
  .listing-row .listing-col {
    padding: 25px;
  }
  .listing-row .listing-item {
    height: 217px;
  }
  .listing-row .listing-item .progress-circle {
    transform: rotate(-90deg) scale(0.8);
    top: 0;
  }
  .listing-row .listing-item__title {
    font-size: 22px;
    padding: 0 !important;
    max-height: 50px;
  }
  .listing-row .listing-item__description {
    font-size: 12px;
    padding: 0 !important;
    margin: 5px 0 0;
  }
  .listing-row .listing-item__meta-value {
    font-size: 27px;
  }
  .listing-row .listing-item__metas {
    max-width: 375px;
    padding: 0 !important;
    margin: auto 0 15px;
  }
  .listing-row .listing__btns {
    width: 245px;
    padding: 16px 40px;
  }
  .listing-row .listing__btn {
    height: 45px;
    font-size: 16px;
    line-height: 44px;
    max-height: 45px;
  }
  .listing-row .listing__secondary-btn {
    height: 37px;
    max-height: 37px;
    font-size: 14px;
    line-height: 36px;
  }
  .listing-row .listing__secondary-btn:after {
    font-size: 0;
  }
  .listing-row .listing__favorite-btn.added {
    font-size: 0;
  }
  .listing-row .listing__favorite-btn:after {
    font-size: 14px;
  }
  .listing-item__currency.ils {
    font-size: 17px;
  }
  html[dir=ltr] .listing-row .listing-item__metas.contain-progress-circle .listing-item__meta:nth-of-type(2) {
    margin: 0 48px 0 auto;
  }
  html[dir=ltr] .listing-row .listing-item {
    padding: 5px 285px 5px 395px;
  }
  html[dir=ltr] .listing-row .listing-item .progress-circle {
    right: 3px;
  }
  html[dir=ltr] .listing__btn {
    right: 7px;
  }
  html[dir=rtl] .listing-row .listing-item__metas.contain-progress-circle .listing-item__meta:nth-of-type(2) {
    margin: 0 auto 0 48px;
  }
  html[dir=rtl] .listing-row .listing-item {
    padding: 5px 395px 5px 285px;
  }
  html[dir=rtl] .listing-row .listing-item .progress-circle {
    left: 3px;
  }
  html[dir=rtl] .listing__btn {
    left: 7px;
  }
}
@media (min-width: 521px) and (max-width: 580px), (min-width: 721px) {
  .search-dropdown .listing-item {
    min-height: 65px;
  }
  .search-dropdown .listing-item__image-wrap {
    position: absolute;
    top: 0;
    width: 100px;
    height: 65px;
  }
  .search-dropdown .listing-item__metas {
    min-width: 100px;
    flex-direction: column;
    padding: 0;
    flex: none;
    margin: -3px 0;
  }
  .search-dropdown .listing-item__meta {
    margin: 0 !important;
    flex: none;
  }
  .search-dropdown .listing-item__meta:first-child:last-child {
    margin: auto 0 !important;
  }
  .search-dropdown .progress-circle {
    display: none;
  }
  .search-dropdown .listing-item__meta-name {
    font-size: 12px;
  }
  .search-dropdown .listing-item__meta-value {
    font-size: 16px;
  }
  html[dir=ltr] .search-dropdown .listing-item {
    padding: 0 0 0 105px;
  }
  html[dir=ltr] .search-dropdown .listing-item__image-wrap {
    left: 0;
  }
  html[dir=rtl] .search-dropdown .listing-item {
    padding: 0 105px 0 0;
  }
  html[dir=rtl] .search-dropdown .listing-item__image-wrap {
    right: 0;
  }
}
.footer {
  background-color: #00427C;
  margin: 60px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 0;
  min-width: 100%;
  justify-content: center;
}

.footer__menu-col {
  padding: 15px 30px;
  color: #fff;
  flex: 1;
  min-width: 210px;
}
.footer__menu-col.active .footer-menu__heading:before {
  transform: rotate(225deg);
  margin: 4px 0 0;
}
.footer__menu-col.active > ul {
  height: 100%;
}
.footer__menu-col > p {
  display: block;
}
.footer__menu-col ul {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: 0.2s;
}
.footer__menu-col ul > li {
  display: block;
}
.footer__menu-col ul > li > a {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  padding: 2px 0;
}
.footer__menu-col ul > li > a:hover {
  text-decoration: underline !important;
}

.footer-menu__heading {
  font-family: Bebas Kai, Regular, Sans-serif;
  font-size: 23px;
  font-weight: 400;
  margin: 0 0 15px;
  line-height: 1em;
  position: relative;
  cursor: pointer;
}
.footer-menu__heading:before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 9px;
  transform: rotate(45deg);
  transition: 0.2s;
}

.footer__brand-col {
  order: 5;
  min-width: 100%;
  margin: 15px 0 0;
  flex: 1;
  padding: 30px;
  background-color: #013A6D;
}

.footer__brand-image {
  display: block;
  max-width: 245px;
  margin: 0 auto;
  width: 100%;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 17px 0 0;
}

.footer-social {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.2s;
  margin: 0 12px;
}

.footer-social__twitter {
  width: 18px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16.416' height='13.333'%3e%3cpath fill='%23acacac' d='M14.729 3.318c.01.146.01.292.01.437a9.507 9.507 0 0 1-9.573 9.573A9.508 9.508 0 0 1 0 11.818a6.961 6.961 0 0 0 .812.042 6.738 6.738 0 0 0 4.177-1.437A3.37 3.37 0 0 1 1.843 8.09a4.242 4.242 0 0 0 .635.052 3.558 3.558 0 0 0 .885-.115 3.365 3.365 0 0 1-2.7-3.3v-.042a3.388 3.388 0 0 0 1.521.427 3.369 3.369 0 0 1-1.042-4.5 9.563 9.563 0 0 0 6.937 3.521A3.8 3.8 0 0 1 8 3.364a3.368 3.368 0 0 1 5.823-2.3 6.624 6.624 0 0 0 2.135-.812 3.355 3.355 0 0 1-1.479 1.854 6.745 6.745 0 0 0 1.937-.521 7.232 7.232 0 0 1-1.687 1.733Z'/%3e%3c/svg%3e");
}
.footer-social__twitter:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16.416' height='13.333'%3e%3cpath fill='%23fff' d='M14.729 3.318c.01.146.01.292.01.437a9.507 9.507 0 0 1-9.573 9.573A9.508 9.508 0 0 1 0 11.818a6.961 6.961 0 0 0 .812.042 6.738 6.738 0 0 0 4.177-1.437A3.37 3.37 0 0 1 1.843 8.09a4.242 4.242 0 0 0 .635.052 3.558 3.558 0 0 0 .885-.115 3.365 3.365 0 0 1-2.7-3.3v-.042a3.388 3.388 0 0 0 1.521.427 3.369 3.369 0 0 1-1.042-4.5 9.563 9.563 0 0 0 6.937 3.521A3.8 3.8 0 0 1 8 3.364a3.368 3.368 0 0 1 5.823-2.3 6.624 6.624 0 0 0 2.135-.812 3.355 3.355 0 0 1-1.479 1.854 6.745 6.745 0 0 0 1.937-.521 7.232 7.232 0 0 1-1.687 1.733Z'/%3e%3c/svg%3e");
}

.footer-social__youtube {
  width: 20px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='17.51' height='12.312'%3e%3cpath fill='%23acacac' d='M17.145 1.926A2.2 2.2 0 0 0 15.597.368 52 52 0 0 0 8.755 0a52 52 0 0 0-6.841.368A2.2 2.2 0 0 0 .367 1.926a24.773 24.773 0 0 0 0 8.484 2.167 2.167 0 0 0 1.548 1.533 52 52 0 0 0 6.841.368 52 52 0 0 0 6.841-.368 2.167 2.167 0 0 0 1.548-1.533 24.773 24.773 0 0 0 0-8.484ZM6.967 8.772V3.565l4.577 2.6-4.577 2.6Z'/%3e%3c/svg%3e");
}
.footer-social__youtube:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='17.51' height='12.312'%3e%3cpath fill='%23fff' d='M17.145 1.926A2.2 2.2 0 0 0 15.597.368 52 52 0 0 0 8.755 0a52 52 0 0 0-6.841.368A2.2 2.2 0 0 0 .367 1.926a24.773 24.773 0 0 0 0 8.484 2.167 2.167 0 0 0 1.548 1.533 52 52 0 0 0 6.841.368 52 52 0 0 0 6.841-.368 2.167 2.167 0 0 0 1.548-1.533 24.773 24.773 0 0 0 0-8.484ZM6.967 8.772V3.565l4.577 2.6-4.577 2.6Z'/%3e%3c/svg%3e");
}

.footer-social__facebook {
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15.903' height='15.807'%3e%3cpath fill='%23acacac' d='M15.9 7.952a7.952 7.952 0 1 0-9.194 7.855V10.25h-2.02v-2.3h2.02V6.2a2.805 2.805 0 0 1 3-3.093 12.237 12.237 0 0 1 1.78.155v1.956h-1a1.149 1.149 0 0 0-1.3 1.242v1.493H11.4l-.353 2.3H9.194v5.557A7.954 7.954 0 0 0 15.9 7.952Z'/%3e%3c/svg%3e");
}
.footer-social__facebook:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15.903' height='15.807'%3e%3cpath fill='%23fff' d='M15.9 7.952a7.952 7.952 0 1 0-9.194 7.855V10.25h-2.02v-2.3h2.02V6.2a2.805 2.805 0 0 1 3-3.093 12.237 12.237 0 0 1 1.78.155v1.956h-1a1.149 1.149 0 0 0-1.3 1.242v1.493H11.4l-.353 2.3H9.194v5.557A7.954 7.954 0 0 0 15.9 7.952Z'/%3e%3c/svg%3e");
}

.footer__bottom {
  color: #fff;
  font-size: 13px;
  height: 30px;
  line-height: 30px;
  background-color: #002E57;
  min-width: 100%;
  text-align: center;
}

html[dir=ltr] .footer-menu__heading:before {
  right: 5px;
}

html[dir=rtl] .footer-menu__heading:before {
  left: 5px;
}

@media (min-width: 640px) {
  .footer-menu__heading:before {
    content: none;
  }
  .footer__menu-col {
    pointer-events: none;
  }
  .footer__menu-col ul {
    height: auto;
  }
  .footer__menu-col ul a {
    pointer-events: auto;
  }
}
@media (min-width: 1201px) {
  .footer__brand-col {
    order: 0;
    min-width: auto;
    margin: -30px 0 0;
    padding: 30px 80px 22px;
    max-width: 540px;
  }
  .footer__menu-col {
    flex: none;
  }
}
@media (min-width: 1600px) {
  .footer__brand-col {
    margin: -30px 50px 0;
  }
  .footer {
    margin: 60px 0 0;
  }
  .footer-menu__heading {
    font-size: 26px;
  }
  .footer__menu-col {
    padding: 15px 50px;
  }
  .footer__menu-col ul > li > a {
    font-size: 18px;
  }
}
.bid-form .listing-item {
  pointer-events: none;
  min-width: 90%;
  margin: 0 7px;
  flex: 1;
}
.bid-form .listing-item__image-wrap {
  border-radius: 10px;
}
.bid-form .listing-item__title {
  color: #181c32;
}
.bid-form .listing-item__metas:before {
  background-color: #ddd;
}
.bid-form .listing-item__meta .listing-item__meta-value {
  color: #2c3e50;
}

.bid-form__details {
  border-radius: 10px;
  padding: 0 10px;
  min-width: 90%;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  margin: 0 7px 0;
}
.bid-form__details .bid-form__detail,
.bid-form__details .field {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  padding: 14px 7px;
  border-bottom: 1px solid #ddd;
  font-weight: 700;
}
.bid-form__details .bid-form__detail-value {
  font-weight: 400;
}
.bid-form__details .input {
  min-width: auto;
  max-width: 100px;
}
.bid-form__details .user-bid-input {
  position: relative;
}
.bid-form__details .user-bid-input .input__amount {
  direction: ltr;
  padding-left: 30px;
  padding-right: 5px;
}
.bid-form__details .user-bid-input:before {
  content: attr(data-currency);
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  display: table;
  font-weight: normal;
  left: 20px;
}

.bid-form__description {
  font-size: 12px;
  padding: 14px;
}

.bid-form__error {
  margin: 20px 7px 0;
}

.bid-completed-form__description {
  font-size: 14px;
  padding: 7px;
}

@media (min-width: 430px) {
  .bid-form .listing-item {
    padding: 0 0 0 125px;
    min-height: 92px;
  }
  .bid-form .listing-item__image-wrap {
    position: absolute;
    left: 0;
    top: 2px;
    width: 120px;
    padding: 0;
    height: 90px;
    max-height: 90px;
  }
  .bid-form .listing-item__title {
    padding-top: 0 !important;
  }
  .bid-form .listing-item__metas {
    padding-bottom: 0 !important;
  }
  .bid-form__details {
    margin: 20px 7px 0;
  }
}
.form {
  display: flex;
  flex-wrap: wrap;
  min-width: 100%;
  margin: 0 -5px;
}

.form.await-request {
  opacity: 0.3;
}
.form.await-request button[type=submit] {
  pointer-events: none;
}

.auth-btn {
  flex: 1;
  justify-content: center;
  text-align: center;
  white-space: pre;
  margin: 7px;
  cursor: pointer;
}
.auth-btn:after {
  content: "";
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 0 0 5px;
  transition: 0.2s;
}
.auth-btn.auth-google:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' width='48px' height='48px'%3e%3cpath fill='%23fbc02d' d='M43.611,20.083H42V20H24v8h11.303c-1.649,4.657-6.08,8-11.303,8c-6.627,0-12-5.373-12-12 s5.373-12,12-12c3.059,0,5.842,1.154,7.961,3.039l5.657-5.657C34.046,6.053,29.268,4,24,4C12.955,4,4,12.955,4,24s8.955,20,20,20 s20-8.955,20-20C44,22.659,43.862,21.35,43.611,20.083z'/%3e%3cpath fill='%23e53935' d='M6.306,14.691l6.571,4.819C14.655,15.108,18.961,12,24,12c3.059,0,5.842,1.154,7.961,3.039 l5.657-5.657C34.046,6.053,29.268,4,24,4C16.318,4,9.656,8.337,6.306,14.691z'/%3e%3cpath fill='%234caf50' d='M24,44c5.166,0,9.86-1.977,13.409-5.192l-6.19-5.238C29.211,35.091,26.715,36,24,36 c-5.202,0-9.619-3.317-11.283-7.946l-6.522,5.025C9.505,39.556,16.227,44,24,44z'/%3e%3cpath fill='%231565c0' d='M43.611,20.083L43.595,20L42,20H24v8h11.303c-0.792,2.237-2.231,4.166-4.087,5.571 c0.001-0.001,0.002-0.001,0.003-0.002l6.19,5.238C36.971,39.205,44,34,44,24C44,22.659,43.862,21.35,43.611,20.083z'/%3e%3c/svg%3e");
}
.auth-btn.auth-apple:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='iso-8859-1'?%3e%3c!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3e%3csvg fill='%23000000' height='800px' width='800px' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 22.773 22.773' xml:space='preserve'%3e%3cg%3e%3cg%3e%3cpath d='M15.769,0c0.053,0,0.106,0,0.162,0c0.13,1.606-0.483,2.806-1.228,3.675c-0.731,0.863-1.732,1.7-3.351,1.573 c-0.108-1.583,0.506-2.694,1.25-3.561C13.292,0.879,14.557,0.16,15.769,0z'/%3e%3cpath d='M20.67,16.716c0,0.016,0,0.03,0,0.045c-0.455,1.378-1.104,2.559-1.896,3.655c-0.723,0.995-1.609,2.334-3.191,2.334 c-1.367,0-2.275-0.879-3.676-0.903c-1.482-0.024-2.297,0.735-3.652,0.926c-0.155,0-0.31,0-0.462,0 c-0.995-0.144-1.798-0.932-2.383-1.642c-1.725-2.098-3.058-4.808-3.306-8.276c0-0.34,0-0.679,0-1.019 c0.105-2.482,1.311-4.5,2.914-5.478c0.846-0.52,2.009-0.963,3.304-0.765c0.555,0.086,1.122,0.276,1.619,0.464 c0.471,0.181,1.06,0.502,1.618,0.485c0.378-0.011,0.754-0.208,1.135-0.347c1.116-0.403,2.21-0.865,3.652-0.648 c1.733,0.262,2.963,1.032,3.723,2.22c-1.466,0.933-2.625,2.339-2.427,4.74C17.818,14.688,19.086,15.964,20.67,16.716z'/%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.auth-btn:hover {
  background-color: #f9f9f9;
  color: #00427c;
}

.form__sep {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  text-align: center;
  color: #222;
  margin: 20px 0;
  flex: 1;
  min-width: 100%;
  padding: 0 7px;
}
.form__sep:after, .form__sep:before {
  content: "";
  flex: 1;
  height: 1px;
  display: block;
  background-color: #f4f4f4;
}
.form__sep:after {
  margin: 0 0 0 15px;
}
.form__sep:before {
  margin: 0 15px 0 0;
}

.form__heading {
  font-size: 18px;
  font-weight: 700;
  display: block;
  text-align: center;
  min-width: 100%;
  flex: 1;
  margin: 0 0 15px;
}

.form__subheading {
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-align: center;
  margin: -10px 0 20px;
  flex: 1;
  min-width: 100%;
  color: #a1a5b7;
}

.form__fields {
  margin: 18px -7px -7px;
}

.textarea-description {
  display: flex;
}

.textarea-chars-counter {
  font-weight: bold;
  margin-top: 3px;
  width: -moz-fit-content;
  width: fit-content;
}

.textarea-chars-counter.counter-error {
  color: #b02a37;
}

.auth-btn,
.input {
  border: 1px solid #e1e3ea;
  border-radius: 6px;
  line-height: 32px;
  height: 35px;
  font-size: 13px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-weight: 400;
  font-family: Assistant, Sans-serif;
  box-shadow: none !important;
  outline: none !important;
}
.auth-btn::-moz-placeholder, .input::-moz-placeholder {
  color: #a5a8b0;
  font-weight: 400;
  font-family: Assistant, Sans-serif;
}
.auth-btn::placeholder,
.input::placeholder {
  color: #a5a8b0;
  font-weight: 400;
  font-family: Assistant, Sans-serif;
}

.input {
  min-width: 100%;
}
.input:focus {
  border-color: #b5b5c3;
}

textarea.input {
  line-height: 1.3em;
  min-height: 100px;
  padding: 10px 15px;
}

.field {
  padding: 7px;
  flex: 1;
}
.field.field__password_confirmation, .field.field__password, .field.field__email {
  min-width: 90%;
}
.field.invalid .input {
  background-color: #fdd !important;
  border: 1px solid #ff8e8e !important;
}
.field.invalid .vue-tel-input {
  background-color: #fdd !important;
  border: 1px solid #ff8e8e !important;
}
.field.invalid .field__description {
  margin: 0 0 3px;
}

.field__title {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.field__description {
  font-size: 12px;
  color: #a1a5b7;
  line-height: 1.2em;
  display: block;
  margin: 5px 0 0;
}

.form__footer {
  text-align: center;
  font-size: 13px;
  margin: 15px 0 0;
  font-weight: 400;
  min-width: 90%;
  flex: 1;
  color: #a1a5b7;
}
.form__footer a {
  color: #00427c;
  margin: 0 2px;
  cursor: pointer;
}
.form__footer a:hover {
  text-decoration: underline;
}

.checkbox,
.checkbox-item {
  margin: 10px 0 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.checkbox:nth-child(1),
.checkbox-item:nth-child(1) {
  margin: 0;
}

.checkbox {
  font-size: 13px;
  margin: 0;
  font-weight: 500;
  padding: 10px 7px;
  flex-wrap: wrap;
}
.checkbox.field__toc {
  padding: 20px 7px 10px;
}
.checkbox .checkbox-label {
  color: #5e6278;
}
.checkbox .checkbox-label:before {
  border-color: #e1e3ea;
}
.checkbox.invalid .checkbox-label:before {
  background-color: #fdd !important;
  border: 1px solid #ff8e8e !important;
}

.checkbox-input {
  display: none;
}
.checkbox-input:checked ~ .checkbox-label:before {
  background-color: #00427c;
  background-image: url("/assets/images/check.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

.checkbox-label {
  display: flex;
  cursor: pointer;
}
.checkbox-label:before {
  content: "";
  width: 15px;
  height: 15px;
  min-width: 15px;
  border-radius: 4px;
  border: 1px solid #00427c;
  background-color: #fff;
  margin: 0 5px 0 0;
}
.checkbox-label a {
  margin: 0 2px;
  color: #00427c;
}
.checkbox-label a:hover {
  text-decoration: underline;
}

.checkbox-badge {
  color: #1C1C1C;
  background-color: #F7F7F7;
  border-radius: 5px;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 400;
}

.form__btn {
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #00427c;
  border-radius: 6px;
  padding: 0 30px;
  margin: 20px 7px 0;
  min-width: 90%;
  flex: 1;
  cursor: pointer;
  transition: 0.2s;
}
.form__btn:hover {
  background-color: #00336d;
}
.form__btn.warning {
  background-color: #C2863D;
}
.form__btn.warning:hover {
  background-color: #946122;
}

.field__link {
  font-size: 13px;
  display: table;
  color: #00427c;
  font-weight: 400;
}
.field__link:hover {
  text-decoration: underline;
}

.field__error {
  font-weight: 700;
  color: #b02a37;
  font-size: 12px;
  min-width: 100%;
}

html[dir=ltr] .checkbox-label:before {
  margin: 0 5px 0 0;
}
html[dir=ltr] .field__link {
  margin: 4px 0 0 auto;
  text-align: right;
}
html[dir=ltr] .textarea-chars-counter {
  margin-left: auto;
}
html[dir=ltr] .form__subheading.text-full-align {
  text-align: left;
}

html[dir=rtl] .checkbox-label:before {
  margin: 0 0 0 5px;
}
html[dir=rtl] .field__link {
  margin: 4px auto 0 0;
  text-align: left;
}
html[dir=rtl] .textarea-chars-counter {
  margin-right: auto;
}
html[dir=rtl] .form__subheading.text-full-align {
  text-align: right;
}
html[dir=rtl] .auth-btn:after {
  margin: 0 5px 0 0;
}

@media (min-width: 1640px) {
  .checkbox-label:before {
    margin: 0 10px 0 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  .checkbox-item {
    margin: 15px 0 0;
  }
  .checkbox-item .checkbox-label {
    line-height: 21px;
    font-size: 18px;
  }
  .checkbox-badge {
    height: 20px;
    line-height: 20px;
    min-width: 20px;
    text-align: center;
  }
  html[dir=ltr] .checkbox-label:before {
    margin: 0 10px 0 0;
  }
  html[dir=rtl] .checkbox-label:before {
    margin: 0 0 0 10px;
  }
}
.bid-form .listing-item {
  pointer-events: none;
  min-width: 90%;
  margin: 0 7px;
  flex: 1;
}
.bid-form .listing-item__image-wrap {
  border-radius: 10px;
}
.bid-form .listing-item__title {
  color: #181c32;
}
.bid-form .listing-item__metas:before {
  background-color: #ddd;
}
.bid-form .listing-item__meta .listing-item__meta-value {
  color: #2c3e50;
}

.bid-form__details {
  border-radius: 10px;
  padding: 0 10px;
  min-width: 90%;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  margin: 0 7px 0;
}
.bid-form__details .bid-form__detail,
.bid-form__details .field {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  padding: 14px 7px;
  border-bottom: 1px solid #ddd;
  font-weight: 700;
}
.bid-form__details .bid-form__detail-value {
  font-weight: 400;
}
.bid-form__details .input {
  min-width: auto;
  max-width: 100px;
}
.bid-form__details .user-bid-input {
  position: relative;
}
.bid-form__details .user-bid-input .input__amount {
  direction: ltr;
  padding-left: 30px;
  padding-right: 5px;
}
.bid-form__details .user-bid-input:before {
  content: attr(data-currency);
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  display: table;
  font-weight: normal;
  left: 20px;
}

.bid-form__description {
  font-size: 12px;
  padding: 14px;
}

.bid-form__error {
  margin: 20px 7px 0;
}

.bid-completed-form__description {
  font-size: 14px;
  padding: 7px;
}

@media (min-width: 430px) {
  .bid-form .listing-item {
    padding: 0 0 0 125px;
    min-height: 92px;
  }
  .bid-form .listing-item__image-wrap {
    position: absolute;
    left: 0;
    top: 2px;
    width: 120px;
    padding: 0;
    height: 90px;
    max-height: 90px;
  }
  .bid-form .listing-item__title {
    padding-top: 0 !important;
  }
  .bid-form .listing-item__metas {
    padding-bottom: 0 !important;
  }
  .bid-form__details {
    margin: 20px 7px 0;
  }
}
.modal-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

body > .modal-overlay {
  z-index: 5;
}

.modal {
  display: table;
  position: static;
  border-radius: 10px;
  background-color: #fff;
  margin: auto;
  max-width: 500px;
  width: 100%;
  padding: 15px 15px 17px;
  z-index: 11;
}

.modal-container {
  pointer-events: none;
  position: fixed;
  width: 100%;
  z-index: 11;
  height: 100%;
  left: 0;
  top: 0;
  overflow: auto;
  padding: 15px;
  display: flex;
}
.modal-container.active {
  display: flex;
}
.modal-container > * {
  pointer-events: auto;
}

.modal__close {
  width: 50px;
  height: 50px;
  position: relative;
  opacity: 0.7;
  transition: 0.2s;
  cursor: pointer;
  transform: scale(0.9);
}
.modal__close:after, .modal__close:before {
  content: "";
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
  display: block;
  top: 50%;
  left: 50%;
  position: absolute;
  background-color: #000;
}
.modal__close:before {
  width: 50%;
  height: 1px;
}
.modal__close:after {
  width: 1px;
  height: 50%;
}
.modal__close:hover {
  transform: scale(1);
  opacity: 1;
}

html[dir=ltr] .modal__heading {
  font-family: Bebas Kai, Assistant, Sans-serif;
  font-size: 18px;
}
html[dir=ltr] .modal__close {
  margin: -15px -15px 0 auto;
}

html[dir=rtl] .modal__heading {
  font-size: 16px;
}
html[dir=rtl] .modal__close {
  margin: -15px auto 0 -15px;
}

.container-mt {
  padding: 0 15px;
  width: 100%;
  max-width: 1697px;
  margin: 15px auto 0;
}

.heading {
  padding: 30px 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.heading__text {
  font-family: Bebas Kai, Assistant, Sans-serif;
  font-size: 26px;
  font-weight: 500;
  position: relative;
  line-height: 22px;
}

.breadcrumbs {
  margin: 10px 0 0;
}

.filter-search {
  position: relative;
}

.filter-tabs {
  display: flex;
  border-radius: 5px;
}

.filter-input {
  width: 100%;
  height: 38px;
  line-height: 38px;
  padding: 0 15px;
  border: 1px solid #DEE4EC;
  border-radius: 5px;
  outline: none !important;
  color: #707070;
  font-size: 14px;
  font-family: Assistant, Sans-Serif;
}
.filter-input ~ .filter-option__items {
  margin: 15px 0 -15px;
  padding: 0 10px 15px 0;
}

select.filter-input {
  cursor: pointer;
}

.filter-input::-moz-placeholder {
  color: #707070;
}

.filter-input::placeholder {
  color: #707070;
}

.filter-search__btn {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' data-name='icon/action/search_24px'%3e%3cpath fill='none' d='M0 0h24v24H0z'/%3e%3cpath fill='%2300427C' d='m19.467 21-5.146-5.134v-.813l-.278-.288a6.7 6.7 0 1 1 .721-.721l.288.278h.813L21 19.467 19.468 21ZM9.689 5.058a4.631 4.631 0 1 0 4.631 4.631 4.637 4.637 0 0 0-4.631-4.631Z' data-name='↳Color'/%3e%3c/svg%3e");
  background-size: 95%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  cursor: pointer;
}

.filter-option__heading,
.filter-heading {
  font-size: 20px;
  font-family: Bebas Kai, Assistant, Sans-serif;
  color: #00427c;
  padding: 20px 15px 19px;
  line-height: 0.9em;
  border-bottom: 1px solid #DEE4EC;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-heading {
  background-color: #F9FAFB;
  font-size: 0;
  padding: 0;
  width: 38px;
  height: 38px;
  border-bottom: none;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: 0.3s;
  box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  flex-direction: column;
}
.filter-heading span {
  display: none;
  line-height: 0;
}
.filter-heading:hover {
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.filter-heading:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16.401' viewBox='0 0 16 16.401'%3e%3cpath id='filter_1_' data-name='filter (1)' d='M15.31,0H.688A.687.687,0,0,0,.076.373.7.7,0,0,0,.13,1.1L5.487,8.644l.006.008a1.53,1.53,0,0,1,.3.908v6.152a.684.684,0,0,0,.684.688.705.705,0,0,0,.27-.054L9.756,15.2a.652.652,0,0,0,.449-.643v-5a1.531,1.531,0,0,1,.3-.908l.006-.008L15.868,1.1a.7.7,0,0,0,.054-.725A.687.687,0,0,0,15.31,0Zm0,0' transform='translate(0.001 0)' fill='%2300427c'/%3e%3c/svg%3e ");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 95% auto;
  margin: 3px 0 0;
}

.filter-option__heading {
  cursor: pointer;
  transition: 0.3s;
}
.filter-option__heading:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg) translateY(-50%);
  margin: 0 6px 0 0;
}
.filter-option__heading:hover {
  background-color: #F9FAFB;
}

.filter-options {
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #fff;
  height: 100%;
  overflow: auto;
  padding: 0;
  width: 270px;
  transition: 0.3s;
  scrollbar-color: #DEE4EC #F4F4F4;
  scrollbar-width: thin;
}
.filter-options .filter-heading {
  font-size: 22px;
  border-bottom: 1px solid #DEE4EC;
  box-shadow: none;
  width: auto;
  height: auto;
  justify-content: space-between;
  pointer-events: none;
  flex-direction: row;
  padding: 20px 10px 17px;
}
.filter-options .filter-heading span {
  display: block;
}
.filter-options .filter-heading:before {
  margin: 0;
  order: 2;
}
.filter-options::-webkit-scrollbar {
  width: 7px;
}
.filter-options::-webkit-scrollbar-track {
  background: #F4F4F4;
}
.filter-options::-webkit-scrollbar-thumb {
  background-color: #DEE4EC;
  border-radius: 20px;
}

.filter-option {
  padding: 0 15px;
  height: 0;
  overflow: hidden;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}
.filter-option.active {
  padding: 15px;
  border-bottom: 1px solid #DEE4EC;
}

.filter-option__items {
  max-height: 200px;
  overflow: auto;
  margin: 0;
  padding: 0;
  scrollbar-color: #DEE4EC #F4F4F4;
  scrollbar-width: thin;
}
.filter-option__items::-webkit-scrollbar {
  width: 7px;
}
.filter-option__items::-webkit-scrollbar-track {
  background: #F4F4F4;
}
.filter-option__items::-webkit-scrollbar-thumb {
  background-color: #DEE4EC;
  border-radius: 20px;
}

.filter-options__container {
  overflow: hidden;
}

.period-option {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 -3px;
  max-width: none;
}
.period-option > label {
  min-width: 80px;
  flex: 1;
  padding: 3px;
}
.period-option.active {
  margin: -3px;
}

.filter-inputs-sep {
  padding: 0 5px;
  display: flex;
  align-items: center;
}

.filter-tabs__container {
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 5px;
  display: flex;
  font-weight: bold;
  color: #00427C;
  overflow: auto;
  padding: 5px 1px;
  width: 100%;
  scrollbar-color: #DEE4EC #F4F4F4;
  scrollbar-width: thin;
}
.filter-tabs__container::-webkit-scrollbar {
  height: 6px;
}
.filter-tabs__container::-webkit-scrollbar-track {
  background: #F4F4F4;
}
.filter-tabs__container::-webkit-scrollbar-thumb {
  background-color: #DEE4EC;
  border-radius: 20px;
}

.tab-item {
  flex: 1;
  white-space: nowrap;
  margin: 0px -1px -1px 0;
  max-width: none;
}
.tab-item:hover {
  background-color: #EFEFEF;
}
.tab-item:last-child .tab-label {
  border-right: 2px solid #DEE4EC;
  border-radius: 0 5px 5px 0;
}
.tab-item:first-child .tab-label {
  border-left: 2px solid #DEE4EC;
  border-radius: 5px 0 0 5px;
}

.tab-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 13px;
  border-top: 2px solid #DEE4EC;
  border-bottom: 2px solid #DEE4EC;
  border-right: 1px solid #DEE4EC;
  border-left: 1px solid #DEE4EC;
  background-color: #fff;
}
.tab-label:hover {
  background-color: #f9f9f9;
}

.tab-input {
  display: none;
}
.tab-input:checked ~ .tab-label {
  position: relative;
  z-index: 2;
  background-color: #00427C;
  color: #fff;
  border-color: #00427C !important;
}

.tab-count {
  font-weight: 300;
  font-size: 12px;
}

.listing-item__title {
  font-size: 16px;
  padding: 10px;
}

.filter-applied__title {
  margin: 0 0 8px;
}

.filter-applied {
  font-size: 14px;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0 15px;
  border-bottom: 1px solid #DEE4EC;
  padding: 0 0 15px;
}
.filter-applied > * {
  flex: 1;
}

.filter-applied__list {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: -3px;
}

.filter-applied__item {
  border-radius: 30px;
  border: 1px solid #00427C;
  height: 26px;
  line-height: 26px;
  display: flex;
  font-weight: 500;
  align-items: center;
  font-size: 12px;
  margin: 3px;
}

.filter-applied__clear {
  text-align: center;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
  flex: 0;
  white-space: pre;
}
.filter-applied__clear:hover {
  text-decoration: none;
}

.filter-applied__item-remove {
  width: 26px;
  height: 100%;
  position: relative;
  border-radius: 50%;
  transform: rotate(-45deg);
  cursor: pointer;
}
.filter-applied__item-remove:after, .filter-applied__item-remove:before {
  content: "";
  background-color: #CB1F2F;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.filter-applied__item-remove:before {
  width: 1px;
  height: 10px;
}
.filter-applied__item-remove:after {
  width: 10px;
  height: 1px;
}
.filter-applied__item-remove:hover:before {
  width: 1px;
  height: 12px;
}
.filter-applied__item-remove:hover:after {
  width: 12px;
  height: 1px;
}

.auction-catalog {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.view-action {
  display: none;
  background-color: #F9FAFB;
  align-items: center;
  justify-content: center;
  padding: 15px;
  order: -3;
  margin: 0;
}

.view-action__btn {
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
  cursor: pointer;
}
.view-action__btn.grid-view {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='25.4' height='25.4'%3e%3cg data-name='menu (2)'%3e%3cg data-name='Group 1011'%3e%3cg fill='%23000' data-name='Group 1010'%3e%3cpath d='M9.312 0H2.2A2.2 2.2 0 0 0 0 2.2v7.112a2.2 2.2 0 0 0 2.2 2.2h7.112a2.2 2.2 0 0 0 2.2-2.2V2.2a2.2 2.2 0 0 0-2.2-2.2Zm.41 9.312a.411.411 0 0 1-.41.41H2.2a.411.411 0 0 1-.41-.41V2.2a.411.411 0 0 1 .41-.41h7.112a.411.411 0 0 1 .41.41v7.112Z' data-name='Path 667'/%3e%3cpath d='M23.201 0h-7.115a2.2 2.2 0 0 0-2.2 2.2v7.112a2.2 2.2 0 0 0 2.2 2.2h7.113a2.2 2.2 0 0 0 2.2-2.2V2.2A2.2 2.2 0 0 0 23.201 0Zm.41 9.312a.411.411 0 0 1-.41.41h-7.115a.411.411 0 0 1-.41-.41V2.2a.411.411 0 0 1 .41-.41h7.113a.411.411 0 0 1 .41.41Z' data-name='Path 668'/%3e%3cpath d='M9.312 13.887H2.2a2.2 2.2 0 0 0-2.2 2.2V23.2a2.2 2.2 0 0 0 2.2 2.2h7.112a2.2 2.2 0 0 0 2.2-2.2v-7.113a2.2 2.2 0 0 0-2.2-2.2Zm.41 9.312a.411.411 0 0 1-.41.41H2.2a.411.411 0 0 1-.41-.41v-7.112a.411.411 0 0 1 .41-.41h7.112a.411.411 0 0 1 .41.41V23.2Z' data-name='Path 669'/%3e%3cpath d='M23.201 13.887h-7.115a2.2 2.2 0 0 0-2.2 2.2V23.2a2.2 2.2 0 0 0 2.2 2.2h7.113a2.2 2.2 0 0 0 2.2-2.2v-7.113a2.2 2.2 0 0 0-2.198-2.2Zm.41 9.312a.411.411 0 0 1-.41.41h-7.115a.411.411 0 0 1-.41-.41v-7.112a.411.411 0 0 1 .41-.41h7.113a.411.411 0 0 1 .41.41Z' data-name='Path 670'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.view-action__btn.grid-view.active {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='25.4' height='25.4'%3e%3cg data-name='menu (2)'%3e%3cg data-name='Group 1011'%3e%3cg fill='%2300427c' data-name='Group 1010'%3e%3cpath d='M9.312 0H2.2A2.2 2.2 0 0 0 0 2.2v7.112a2.2 2.2 0 0 0 2.2 2.2h7.112a2.2 2.2 0 0 0 2.2-2.2V2.2a2.2 2.2 0 0 0-2.2-2.2Zm.41 9.312a.411.411 0 0 1-.41.41H2.2a.411.411 0 0 1-.41-.41V2.2a.411.411 0 0 1 .41-.41h7.112a.411.411 0 0 1 .41.41v7.112Z' data-name='Path 667'/%3e%3cpath d='M23.201 0h-7.115a2.2 2.2 0 0 0-2.2 2.2v7.112a2.2 2.2 0 0 0 2.2 2.2h7.113a2.2 2.2 0 0 0 2.2-2.2V2.2A2.2 2.2 0 0 0 23.201 0Zm.41 9.312a.411.411 0 0 1-.41.41h-7.115a.411.411 0 0 1-.41-.41V2.2a.411.411 0 0 1 .41-.41h7.113a.411.411 0 0 1 .41.41Z' data-name='Path 668'/%3e%3cpath d='M9.312 13.887H2.2a2.2 2.2 0 0 0-2.2 2.2V23.2a2.2 2.2 0 0 0 2.2 2.2h7.112a2.2 2.2 0 0 0 2.2-2.2v-7.113a2.2 2.2 0 0 0-2.2-2.2Zm.41 9.312a.411.411 0 0 1-.41.41H2.2a.411.411 0 0 1-.41-.41v-7.112a.411.411 0 0 1 .41-.41h7.112a.411.411 0 0 1 .41.41V23.2Z' data-name='Path 669'/%3e%3cpath d='M23.201 13.887h-7.115a2.2 2.2 0 0 0-2.2 2.2V23.2a2.2 2.2 0 0 0 2.2 2.2h7.113a2.2 2.2 0 0 0 2.2-2.2v-7.113a2.2 2.2 0 0 0-2.198-2.2Zm.41 9.312a.411.411 0 0 1-.41.41h-7.115a.411.411 0 0 1-.41-.41v-7.112a.411.411 0 0 1 .41-.41h7.113a.411.411 0 0 1 .41.41Z' data-name='Path 670'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.view-action__btn.row-view {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='28' height='19.6'%3e%3cpath d='M0 1.4A1.4 1.4 0 0 1 1.4 0h25.2a1.4 1.4 0 0 1 0 2.8H1.4A1.4 1.4 0 0 1 0 1.4Zm26.6 7H1.4a1.4 1.4 0 1 0 0 2.8h25.2a1.4 1.4 0 1 0 0-2.8Zm0 8.4H1.4a1.4 1.4 0 0 0 0 2.8h25.2a1.4 1.4 0 0 0 0-2.8Z'/%3e%3c/svg%3e");
}
.view-action__btn.row-view.active {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='28' height='19.6'%3e%3cpath  fill='%2300427c' d='M0 1.4A1.4 1.4 0 0 1 1.4 0h25.2a1.4 1.4 0 0 1 0 2.8H1.4A1.4 1.4 0 0 1 0 1.4Zm26.6 7H1.4a1.4 1.4 0 1 0 0 2.8h25.2a1.4 1.4 0 1 0 0-2.8Zm0 8.4H1.4a1.4 1.4 0 0 0 0 2.8h25.2a1.4 1.4 0 0 0 0-2.8Z'/%3e%3c/svg%3e");
}

.listing {
  margin: 12px -7px -7px;
  display: flex;
  flex-wrap: wrap;
}

.listing-col {
  flex: 1;
  padding: 7px;
}

.tabs-col {
  order: -4;
  flex: 1;
  min-width: 60%;
}

.search-col {
  margin: 15px 0 0;
  flex: 1;
  min-width: 65%;
}

.filter-col {
  margin: 15px 0 0 15px;
  width: 38px;
  height: 38px;
}
.filter-col.active .filter-options {
  transform: translateX(0);
}

.catalog-col {
  min-width: 100%;
}

.listing-item__badges {
  top: 9px;
}

.listing-item__meta-value {
  font-size: 14px;
}

.listing-item .progress-circle {
  top: 3px;
  transform: rotate(-90deg) scale(0.7);
}

.auctions-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.pagination-link {
  margin: 7px;
}
.pagination-link a {
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 400;
}
.pagination-link a.active {
  background-color: #00427c;
  cursor: default;
  color: #fff;
}
.pagination-link a:hover:not(.active) {
  background-color: #f9f9f9;
}

html[dir=ltr] .heading {
  background-image: url("/assets/images/header.jpg");
}
html[dir=ltr] .listing-item__badges {
  right: 9px;
}
html[dir=ltr] .filter-col {
  margin: 15px 0 0 15px;
}
html[dir=ltr] .listing-item__metas.contain-progress-circle .listing-item__meta:nth-of-type(2) {
  margin: 0 35px 0 auto;
}
html[dir=ltr] .filter-search__btn {
  right: 5px;
}
html[dir=ltr] .tab-item {
  margin: 0px -1px -1px 0;
}
html[dir=ltr] .tab-item:last-child .tab-label {
  border-right: 2px solid #DEE4EC;
  border-radius: 0 5px 5px 0;
}
html[dir=ltr] .tab-item:first-child .tab-label {
  border-left: 2px solid #DEE4EC;
  border-radius: 5px 0 0 5px;
}
html[dir=ltr] .tab-count {
  margin: 0 0 0 10px;
}
html[dir=ltr] .filter-search .filter-input {
  padding: 0 35px 0 15px;
}
html[dir=ltr] .view-action__btn.grid-view {
  margin: 0 15px 0 0;
}
html[dir=ltr] .filter-input ~ .filter-option__items {
  padding: 0 10px 15px 0;
}
html[dir=ltr] .filter-applied__item {
  padding: 0 0 0 10px;
}
html[dir=ltr] .view-action {
  border-radius: 0 5px 5px 0;
}
html[dir=ltr] .filter-option__heading span {
  margin: auto auto auto 5px;
}
html[dir=ltr] .filter-heading span {
  margin: 0 auto 0 3px;
}
html[dir=ltr] .filter-options {
  left: 0;
  transform: translateX(-100%);
}

html[dir=rtl] .listing-item__badges {
  left: 9px;
}
html[dir=rtl] .filter-col {
  margin: 15px 15px 0 0;
}
html[dir=rtl] .listing-item__meta:last-of-type:first-of-type .listing-item__meta-value {
  font-weight: bold;
}
html[dir=rtl] .listing-item__metas.contain-progress-circle .listing-item__meta:nth-of-type(2) {
  margin: 0 auto 0 35px;
}
html[dir=rtl] .filter-search__btn {
  left: 5px;
}
html[dir=rtl] .tab-item {
  margin: 0px 0 -1px -1px;
}
html[dir=rtl] .tab-item:last-child .tab-label {
  border-left: 2px solid #DEE4EC;
  border-radius: 5px 0 0 5px;
}
html[dir=rtl] .tab-item:first-child .tab-label {
  border-right: 2px solid #DEE4EC;
  border-radius: 0 5px 5px 0;
}
html[dir=rtl] .tab-count {
  margin: 0 10px 0 0;
}
html[dir=rtl] .filter-search .filter-input {
  padding: 0 15px 0 35px;
}
html[dir=rtl] .filter-heading {
  font-weight: bold;
  font-size: 0;
}
html[dir=rtl] .filter-heading span {
  margin: 1px 3px 0 auto;
}
html[dir=rtl] .filter-option__heading {
  font-weight: bold;
  font-size: 16px;
}
html[dir=rtl] .filter-option__heading span {
  margin: auto 5px auto auto;
  font-weight: 400;
}
html[dir=rtl] .filter-options {
  right: 0;
  transform: translateX(100%);
}
html[dir=rtl] .filter-options .filter-heading {
  font-size: 19px;
}
html[dir=rtl] .view-action__btn.grid-view {
  margin: 0 0 0 15px;
}
html[dir=rtl] .filter-input ~ .filter-option__items {
  padding: 0 0 15px 10px;
}
html[dir=rtl] .filter-applied__item {
  padding: 0 10px 0 0;
}
html[dir=rtl] .view-action {
  border-radius: 5px 0 0 5px;
}
html[dir=rtl] .heading {
  background-image: url("/assets/images/header-rtl.jpg");
}

@media (min-width: 420px) {
  .heading {
    padding: 45px 18px;
  }
  .heading__text {
    font-size: 33px;
    line-height: 33px;
  }
  .breadcrumbs {
    font-size: 16px;
  }
}
@media (min-width: 520px) {
  .container-mt {
    margin: 30px auto 0;
    padding: 0 30px;
  }
  .container {
    padding: 0 30px;
  }
  .auction-catalog {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .filter-col {
    margin: 15px 0 0;
  }
  .catalog-col {
    flex: 1;
    margin: 0;
    min-width: 100%;
  }
  .tabs-col {
    min-width: 80%;
    flex: 1;
    order: -4;
  }
  .search-col {
    min-width: 55%;
    order: -2;
  }
  .filter-applied {
    flex-wrap: nowrap;
  }
  .filter-applied__title {
    display: none;
  }
  .filter-applied__clear {
    order: 2;
    height: 20px;
  }
  .filter-applied__list {
    min-width: auto;
  }
  html[dir=ltr] .search-col {
    margin: 15px 0 0;
  }
  html[dir=ltr] .filter-applied__clear {
    margin: 3px 0 0 15px;
  }
  html[dir=ltr] .filter-tabs {
    border-radius: 5px 0 0 5px;
  }
  html[dir=rtl] .search-col {
    margin: 15px 0 0;
  }
  html[dir=rtl] .filter-applied__clear {
    margin: 3px 15px 0 0;
  }
  html[dir=rtl] .filter-tabs {
    border-radius: 0 5px 5px 0;
  }
}
@media (min-width: 580px) {
  .listing-col {
    min-width: 50%;
    max-width: 50%;
  }
}
@media (min-width: 645px) {
  .tab-item {
    border: none;
  }
  .tab-item:last-child .tab-label {
    border-right: 2px solid #DEE4EC;
    border-radius: 0 5px 5px 0;
  }
  .tab-item:first-child .tab-label {
    border-left: 2px solid #DEE4EC;
    border-radius: 5px 0 0 5px;
  }
  .tab-label {
    border-top: 2px solid #DEE4EC;
    border-bottom: 2px solid #DEE4EC;
    border-right: 1px solid #DEE4EC;
    border-left: 1px solid #DEE4EC;
  }
  .tab-input:checked ~ .tab-label {
    border-color: #00427C !important;
  }
}
@media (min-width: 810px) {
  .view-action {
    display: flex;
  }
  .filter-tabs {
    background-color: rgba(244, 245, 247, 0.5294117647);
    padding: 10px 15px;
  }
  .tab-item {
    flex: 0;
  }
  .results-count {
    margin: 0 15px;
  }
  .results-count span {
    font-weight: bold;
  }
  .tabs-col {
    min-width: 60%;
  }
}
@media (min-width: 910px) {
  .listing-col {
    min-width: 33.333333%;
    max-width: 33.333333%;
  }
  .search-col {
    order: -3;
    min-width: auto;
    margin: 0 15px;
  }
  .filter-heading,
.filter-col {
    width: 68px;
    height: 68px;
  }
  .filter-heading {
    font-size: 14px;
  }
  .filter-heading:before {
    width: 20px;
    height: 20px;
    margin: 3px 0 5px;
  }
  .tabs-col {
    min-width: auto;
    flex: 0;
  }
  .listing-item__title {
    padding: 10px 15px;
  }
  .listing-item__metas {
    padding: 10px 15px 15px;
  }
  .listing-item .progress-circle {
    top: 7px;
  }
  .listing-item__description {
    padding: 0 15px 10px;
  }
  .heading__text {
    font-size: 45px;
    line-height: 42px;
  }
  .breadcrumbs {
    font-size: 18px;
    margin: 15px 0 0;
  }
  .filter-search {
    padding: 15px;
    background-color: rgba(244, 245, 247, 0.5);
  }
  html[dir=ltr] .search-col {
    margin: 0;
  }
  html[dir=ltr] .filter-col {
    margin: 0 0 0 15px;
  }
  html[dir=ltr] .listing-item .progress-circle {
    right: 9px;
  }
  html[dir=ltr] .filter-search__btn {
    right: 25px;
  }
  html[dir=rtl] .search-col {
    margin: 0;
  }
  html[dir=rtl] .filter-col {
    margin: 0 15px 0 0;
  }
  html[dir=rtl] .listing-item .progress-circle {
    left: 9px;
  }
  html[dir=rtl] .filter-search__btn {
    left: 25px;
  }
  html[dir=rtl] .filter-heading {
    font-size: 12px;
    font-weight: bold;
  }
}
@media (min-width: 810px) and (max-width: 1099px) {
  .filter-search {
    border-radius: 0;
  }
  .filter-tabs {
    height: 68px;
  }
}
@media (min-width: 1100px) {
  .search-col {
    flex: 1;
    max-width: 240px;
    padding: 0 30px 0 0;
    order: -5;
    min-width: auto;
    margin: 0;
  }
  .filter-search {
    border-radius: 5px;
  }
  .filter-col,
.search-col {
    min-width: 25%;
    max-width: 25%;
  }
  .tabs-col {
    flex: 1;
    min-width: 45%;
  }
  .filter-col {
    height: auto;
    padding: 0 30px 0 0;
    margin: 30px 0 0;
  }
  .catalog-col {
    min-width: 75%;
    max-width: 75%;
    margin: 30px 0 0;
  }
  .listing {
    margin: -7px;
  }
  .listing-col {
    min-width: 50%;
    max-width: 50%;
  }
  .filter-options {
    position: static;
    transform: none !important;
    width: auto;
    height: auto;
  }
  .filter-options .filter-heading {
    display: none;
  }
  .filter-applied {
    margin: 15px 0 25px;
  }
  .filter-heading {
    pointer-events: none;
    border-radius: 0;
    width: 100%;
    flex-direction: row;
    font-size: 22px;
    justify-content: space-between;
    box-shadow: none;
    height: 57px;
    padding: 10px 13px 7px;
    border-bottom: 1px solid #DEE4EC;
  }
  .filter-heading span {
    display: block;
    line-height: 0.7em;
  }
  .filter-heading:before {
    order: 2;
    width: 18px;
    height: 18px;
    margin: 0;
  }
  .filter-tabs {
    border-radius: 5px 0 0 5px;
  }
  .filter-tabs__container {
    width: auto;
  }
  html[dir=ltr] .search-col {
    padding: 0 30px 0 0;
  }
  html[dir=ltr] .filter-col {
    margin: 30px 0 0;
    padding: 0 30px 0 0;
  }
  html[dir=rtl] .search-col {
    padding: 0 0 0 30px;
  }
  html[dir=rtl] .filter-col {
    margin: 30px 0 0;
    padding: 0 0 0 30px;
  }
  html[dir=rtl] .filter-heading {
    font-size: 18px;
  }
}
@media (min-width: 1201px) {
  .heading__text {
    font-size: 55px;
    line-height: 42px;
  }
  .breadcrumbs {
    font-size: 18px;
    margin: 23px 0 0;
  }
  .listing-item__meta-name {
    font-size: 12px;
  }
  .listing-col {
    min-width: 33.333333%;
    max-width: 33.333333%;
  }
  .tabs-col {
    min-width: 55%;
  }
}
@media (min-width: 1360px) {
  .filter-col,
.search-col {
    min-width: 20%;
    max-width: 20%;
  }
  .tabs-col {
    min-width: 60%;
  }
  .catalog-col {
    min-width: 80%;
    max-width: 80%;
  }
}
@media (min-width: 1420px) {
  .listing-col {
    min-width: 25%;
    max-width: 25%;
  }
  .heading {
    padding: 65px 18px;
  }
}
@media (min-width: 1640px) {
  .container-mt {
    margin: 65px auto 0;
  }
  .heading {
    padding: 85px 0;
  }
  .heading .container {
    padding: 0 60px;
  }
  .filter-applied {
    padding: 0 0 19px;
    margin: 20px 0 35px;
  }
  .filter-applied__list {
    margin: -5px;
  }
  .filter-applied__item {
    font-size: 14px;
    margin: 5px;
  }
  .filter-input {
    height: 47px;
    line-height: 47px;
    font-size: 16px;
  }
  .filter-input ~ .filter-option__items {
    margin: 30px 0 -22px;
    padding: 0 15px 22px 0;
  }
  .filter-heading {
    padding: 24px 20px 21px;
    height: 66px;
    font-size: 24px;
  }
  .filter-heading:before {
    margin: 0 5px 0 0;
    width: 22px;
    height: 22px;
  }
  .filter-option__heading {
    font-size: 22px;
    padding: 0 22px;
    height: 77px;
  }
  .filter-option__heading:after {
    width: 8px;
    height: 8px;
  }
  .filter-option {
    padding: 0 22px;
  }
  .filter-option.active {
    padding: 22px;
  }
  .filter-option__items {
    max-height: 250px;
  }
  .filter-inputs-sep {
    padding: 0 15px;
    font-size: 18px;
  }
  .tab-label {
    padding: 10px 14px;
    font-size: 16px;
  }
  .tab-count {
    font-size: 14px;
    position: relative;
    top: -1px;
  }
  .filter-search {
    padding: 21px 22px;
  }
  .filter-tabs {
    padding: 16px 32px;
  }
  .view-action {
    height: 89px;
  }
  .view-action__btn {
    width: 25px;
    height: 25px;
  }
  .listing-col {
    min-width: 25%;
    max-width: 25%;
    padding: 12px;
  }
  .listing {
    margin: -12px;
  }
  .filter-col,
.search-col {
    min-width: 26.3%;
    max-width: 26.3%;
  }
  .tabs-col {
    min-width: 50%;
  }
  .results-count {
    font-size: 16px;
    margin: 0 30px;
  }
  .catalog-col {
    min-width: 73.7%;
    max-width: 73.7%;
    margin: 40px 0 0;
  }
  html[dir=ltr] .filter-search__btn {
    right: 30px;
  }
  html[dir=ltr] .view-action {
    height: 89px;
    padding: 15px 32px 15px 15px;
  }
  html[dir=ltr] .filter-search .filter-input {
    padding: 0 40px 0 15px;
  }
  html[dir=ltr] .filter-input ~ .filter-option__items {
    padding: 0 15px 22px 0;
  }
  html[dir=ltr] .listing-item__title {
    padding: 10px 15px 10px 20px;
  }
  html[dir=ltr] .listing-item__metas {
    padding: 10px 15px 15px 20px;
  }
  html[dir=ltr] .filter-col,
html[dir=ltr] .search-col {
    padding: 0 64px 0 0;
  }
  html[dir=ltr] .filter-col {
    margin: 40px 0 0;
  }
  html[dir=rtl] .filter-search__btn {
    left: 30px;
  }
  html[dir=rtl] .filter-heading {
    font-size: 22px;
  }
  html[dir=rtl] .filter-option__heading {
    font-size: 20px;
  }
  html[dir=rtl] .view-action {
    height: 89px;
    padding: 15px 15px 15px 32px;
  }
  html[dir=rtl] .filter-search .filter-input {
    padding: 0 15px 0 40px;
  }
  html[dir=rtl] .filter-input ~ .filter-option__items {
    padding: 0 0 22px 15px;
  }
  html[dir=rtl] .listing-item__title {
    padding: 10px 20px 10px 15px;
  }
  html[dir=rtl] .listing-item__metas {
    padding: 10px 20px 15px 15px;
  }
  html[dir=rtl] .filter-col,
html[dir=rtl] .search-col {
    padding: 0 0 0 64px;
  }
  html[dir=rtl] .filter-col {
    margin: 40px 0 0;
  }
}
