@charset "UTF-8";
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Semibold.woff2") format("woff2"), url("../fonts/OpenSans-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-ExtraboldItalic.woff2") format("woff2"), url("../fonts/OpenSans-ExtraboldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSansLight-Italic.woff2") format("woff2"), url("../fonts/OpenSansLight-Italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Extrabold.woff2") format("woff2"), url("../fonts/OpenSans-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Italic.woff2") format("woff2"), url("../fonts/OpenSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-BoldItalic.woff2") format("woff2"), url("../fonts/OpenSans-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans.woff2") format("woff2"), url("../fonts/OpenSans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-SemiboldItalic.woff2") format("woff2"), url("../fonts/OpenSans-SemiboldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button,
input[type="submit"] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font: 400 14px 'Open Sans', sans-serif;
  color: #1B1725;
  min-width: 375px;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.title {
  font-weight: bold;
  font-size: 40px;
  color: #1B1725;
}

@media only screen and (max-width: 767px) {
  .title {
    font-size: 26px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 70px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  background: linear-gradient(134.67deg, #242A7E -15.4%, #1E88E5 204.87%);
  border: none;
  transition: 300ms;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
}

.btn:hover:after {
  opacity: 1;
}

.btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: linear-gradient(350.67deg, #242A7E -15.4%, #1E88E5 204.87%);
  opacity: 0;
  transition: 300ms;
}

.btn span {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .btn {
    height: 60px;
    font-size: 16px;
  }
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox__inner {
  flex-shrink: 0;
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.checkbox__inner span {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid #BBCCE6;
  transition: 300ms;
  display: block;
  position: relative;
}

.checkbox__inner span:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/tick.svg) no-repeat 50%;
  opacity: 0;
  transition: 300ms;
}

.checkbox__inner input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

.checkbox__inner input:checked + span {
  box-shadow: 0px 4px 20px rgba(180, 190, 208, 0.8);
  border-color: #2156AF;
}

.checkbox__inner input:checked + span:after {
  opacity: 1;
}

.scrollbar-track {
  opacity: 1 !important;
  width: 6px !important;
  border-radius: 6px;
  background: rgba(202, 211, 219, 0.4) !important;
}

.scrollbar-track .scrollbar-thumb {
  width: 6px !important;
  border-radius: 6px !important;
  background: #242A7E !important;
}

.container {
  max-width: 1220px;
  padding: 0;
  margin: 0 auto;
}

@media screen and (max-width: 1300px) {
  .container {
    width: 970px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  .hidden-mobile {
    display: none;
  }
}

/* Burger */
.burger {
  display: none;
  width: 20px;
  position: relative;
  z-index: 999;
}

.burger a {
  display: block;
  cursor: pointer;
  padding: 12px 0;
}

.burger a.active span {
  background: transparent;
}

.burger a.active span:before {
  transform: rotate(45deg) translate(3px, 4px);
}

.burger a.active span:after {
  transform: rotate(-45deg) translate(4px, -6px);
}

.burger a span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: all .2s ease-in-out;
  background-color: #242A7E;
  transform: translateX(-6px);
}

.burger a span:before, .burger a span:after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 6px;
  border-radius: 5px;
  transition: all .2s ease-in-out;
  background-color: #242A7E;
}

.burger a span:before {
  top: -6px;
}

.burger a span:after {
  top: 6px;
}

@media only screen and (max-width: 767px) {
  .burger {
    display: block;
  }
}

/* Header */
.header {
  padding: 17px 0;
}

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

.header__user {
  position: relative;
  height: 47px;
  display: flex;
  align-items: center;
  width: 248px;
}

.header__user-name {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  color: #1B1725;
  cursor: pointer;
}

.header__user-name img {
  flex-shrink: 0;
  transform: translateY(3px);
}

.header__user-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  background: #ffffff;
  box-shadow: 0px 4px 80px rgba(202, 203, 214, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 300ms;
}

.header__user-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__user-menu li a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
}

.header__user-menu li a:hover {
  color: #242A7E;
}

.header__user-menu li img {
  width: 20px;
  margin-right: 10px;
  flex-shrink: 0;
}

.header__user-menu li span {
  flex-grow: 10;
}

.header__user-menu li span.number {
  flex-grow: 0;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 16px;
  color: #242A7E;
}

.header__user-menu li:last-child {
  border-top: 1px solid #CAD3DB;
}

.header__logo {
  flex-shrink: 0;
  margin-right: 35px;
}

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

.header__contacts-item {
  margin-right: 45px;
  display: flex;
  align-items: center;
}

.header__contacts-item:last-child {
  margin-right: 0;
}

.header__contacts-item img {
  margin-right: 10px;
}

.header__contacts-item a {
  color: #242A7E;
  border-bottom: 1px solid transparent;
  font-weight: 600;
}

.header__contacts-item a:hover {
  border-bottom: 1px solid #242A7E;
}

.header__time {
  flex-grow: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__time span {
  opacity: 0.6;
}

.header__time div {
  color: #242A7E;
  font-weight: bold;
  font-size: 24px;
  margin-left: 15px;
}

.header__to-lk {
  display: flex;
  align-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.header__to-lk:hover {
  color: #242A7E;
}

.header__to-lk:hover img {
  transform: translateX(4px);
}

.header__to-lk img {
  margin-right: 14px;
  transition: 300ms;
}

.header__tel {
  position: relative;
  padding-right: 20px;
}

.header__tel:hover:after {
  transform: rotate(135deg) translateY(2px);
}

.header__tel:hover:before {
  opacity: 1;
  visibility: visible;
}

.header__tel:hover .header__social {
  opacity: 1;
  visibility: visible;
}

.header__tel a,
.header__tel img {
  position: relative;
  z-index: 4;
}

.header__tel:before {
  content: '';
  position: absolute;
  left: -20px;
  right: -20px;
  top: -40px;
  bottom: -98px;
  background: #ffffff;
  box-shadow: 0px 4px 60px rgba(30, 30, 34, 0.2);
  border-radius: 0px 0px 6px 6px;
  z-index: 3;
  transition: 300ms;
  opacity: 0;
  visibility: hidden;
}

.header__tel:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border: 2px solid #828A93;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  transition: 300ms;
  z-index: 4;
}

.header__social {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
}

.header__social a {
  border: none !important;
}

.header__social img {
  margin-right: 0;
}

@media only screen and (max-width: 1300px) {
  .header__to-lk {
    margin-left: 30px;
  }
  .header__contacts-item {
    margin-right: 10px;
    width: 150px;
  }
  .header__contacts-item > img {
    display: none;
  }
  .header__tel {
    width: auto;
    padding-right: 15px;
    margin-right: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .header__time span {
    display: none;
  }
  .header__to-lk span {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .header {
    padding: 13px 0;
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.1);
  }
  .header__logo {
    width: 102px;
    margin-right: 0;
  }
  .header__contacts {
    display: none;
  }
  .header__time {
    padding-right: 6px;
  }
  .header__time div {
    font-weight: 600;
    font-size: 16px;
    margin-left: 0;
  }
  .header__to-lk {
    display: none;
  }
}

/* Nav */
.nav {
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav__list {
  position: relative;
}

.nav__list:after {
  content: '';
  display: block;
  position: absolute;
  right: -41px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: #E0E0E0;
}

.nav__list:last-child:after {
  display: none;
}

.nav__list.active a {
  opacity: 1;
  color: #242A7E;
}

.nav__list.active a:after {
  opacity: 1;
}

.nav__list a {
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 18px;
  opacity: 0.4;
}

.nav__list a:hover {
  opacity: 1;
  color: #242A7E;
}

.nav__list a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  height: 4px;
  left: 0;
  right: 0;
  background: #242A7E;
  opacity: 0;
}

@media only screen and (max-width: 1300px) {
  .nav__list:after {
    display: none;
  }
  .nav__list a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 991px) {
  .nav__list a {
    font-size: 15px;
    height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .nav {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
}

@media only screen and (max-width: 767px) {
  .mobile-menu {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 300ms;
    z-index: 998;
  }
  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-menu__title {
    font-weight: bold;
    font-size: 24px;
    color: #242A7E;
    line-height: 60px;
    padding-left: 24px;
  }
  .mobile-menu__list {
    border-top: 1px solid #DADADA;
  }
  .mobile-menu__list li.active a {
    color: #242A7E;
  }
  .mobile-menu__list li a {
    height: 56px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #DADADA;
    color: rgba(27, 23, 37, 0.4);
    font-size: 18px;
  }
  .mobile-menu__list li a:hover {
    color: #242A7E;
  }
  .mobile-menu__footer {
    display: flex;
  }
  .mobile-menu__info {
    padding: 18px 0 0 24px;
    flex-grow: 10;
  }
  .mobile-menu__to-lk {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    font-size: 18px;
  }
  .mobile-menu__to-lk img {
    margin-right: 23px;
  }
  .mobile-menu__social {
    border-left: 1px solid #DADADA;
  }
  .mobile-menu__social ul {
    width: 100%;
  }
  .mobile-menu__social ul li {
    width: 100%;
    border-bottom: 1px solid #DADADA;
  }
  .mobile-menu__social ul li:last-child {
    border: none;
  }
  .mobile-menu__social ul li a {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu__contacts-item {
    display: flex;
    align-items: center;
    margin-bottom: 37px;
  }
  .mobile-menu__contacts-item:last-child {
    margin-bottom: 0;
  }
  .mobile-menu__contacts-item img {
    margin-right: 12px;
    width: 20px;
  }
}

/* Search */
.search {
  background: url(../images/search-bg.jpg) 50%/cover;
  padding: 65px 0 95px;
  margin-bottom: 50px;
  position: relative;
}

.search__title {
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 25px;
}

.search__confirm {
  margin-left: 70px;
  flex-shrink: 0;
}

.search__header {
  display: flex;
  align-items: flex-end;
  margin-bottom: 38px;
  color: #ffffff;
}

.search__number {
  font-weight: bold;
  font-size: 64px;
  line-height: 1;
  margin-right: 32px;
  transform: translateY(4px);
}

.search__date {
  font-weight: bold;
  font-size: 18px;
}

.search__lots {
  flex-grow: 10;
  text-align: right;
  font-weight: 600;
  font-size: 18px;
}

.search__lots span {
  font-weight: bold;
  font-size: 24px;
}

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

.search__field {
  flex-grow: 10;
  background: #FFFFFF;
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  height: 70px;
}

.search__field input {
  flex-grow: 10;
  border: none;
  background: none;
  font-size: 18px;
  padding: 0 24px;
  font-family: inherit;
}

.search__field input::-webkit-input-placeholder {
  color: #1B1725;
  opacity: 0.4;
}

.search__field input:-moz-placeholder {
  color: #1B1725;
  opacity: 0.4;
}

.search__field input::-moz-placeholder {
  color: #1B1725;
  opacity: 0.4;
}

.search__field input:-ms-input-placeholder {
  color: #1B1725;
  opacity: 0.4;
}

.search__country {
  width: 310px;
  flex-shrink: 0;
  position: relative;
  height: 100%;
}

.search__countries {
  position: absolute !important;
  top: 100%;
  right: 0;
  left: 0;
  background: #ffffff;
  height: 250px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 300ms;
  z-index: 100;
}

.search__countries.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search__countries li {
  padding: 10px 15px;
  cursor: pointer;
  transition: 300ms;
}

.search__countries li:hover {
  color: #242A7E;
}

.search__current {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 24px;
  position: relative;
  color: rgba(27, 23, 37, 0.4);
  font-size: 18px;
  cursor: pointer;
  padding-right: 50px;
}

.search__current:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 3px solid #DADADA;
  transform: rotate(45deg);
  border-left: none;
  border-top: none;
  position: absolute;
  right: 24px;
  top: 35%;
}

.search__current:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  background: #DADADA;
  width: 1px;
}

@media only screen and (max-width: 1300px) {
  .search__number {
    font-size: 45px;
  }
}

@media only screen and (max-width: 991px) {
  .search__form {
    display: block;
  }
  .search__field {
    width: 100%;
    margin-bottom: 30px;
  }
  .search__confirm {
    margin-left: 0;
  }
  .search__header {
    margin-bottom: 20px;
  }
  .search__number {
    font-size: 28px;
    transform: translateY(0);
  }
  .search__date {
    font-size: 16px;
  }
  .search__lots {
    font-size: 16px;
  }
  .search__lots span {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .search {
    padding: 48px 0 28px;
  }
  .search__title {
    font-size: 26px;
  }
  .search__country {
    display: none;
  }
  .search__field {
    height: 50px;
    margin-bottom: 93px;
  }
  .search__field input {
    font-size: 16px;
    padding: 0 15px;
  }
  .search__confirm {
    margin: 0 auto;
    display: flex;
  }
  .search__header {
    flex-direction: column;
    align-items: center;
  }
  .search__number {
    font-weight: 800;
    font-size: 40px;
    margin: 0 0 10px 0;
  }
  .search__date {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
  }
  .search__lots {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 110px;
  }
}

/* Auction showcase */
.auction-showcase {
  margin-bottom: 123px;
}

.auction-showcase__inner {
  display: flex;
}

.auction-showcase__item {
  height: 300px;
  width: 384px;
  margin-right: 30px;
  background: #EFF2F5;
  display: flex;
  position: relative;
  border-radius: 8px;
}

.auction-showcase__item:last-child {
  margin-right: 0;
}

.auction-showcase__item.large {
  flex-grow: 10;
  width: auto;
}

.auction-showcase__item.large .auction-showcase__title {
  font-size: 70px;
}

.auction-showcase__label {
  height: 100%;
  width: 72px;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  flex-shrink: 0;
}

.auction-showcase__label span {
  position: relative;
  z-index: 3;
}

.auction-showcase__label:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/auction-label-bg.png) 50%/cover no-repeat;
  transform: rotate(180deg);
}

.auction-showcase__content {
  padding: 28px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.auction-showcase__title {
  font-weight: bold;
  font-size: 32px;
  color: #242A7E;
  margin-bottom: 20px;
}

.auction-showcase__date {
  flex-grow: 10;
  font-weight: 300;
  font-size: 18px;
}

.auction-showcase__link {
  font-weight: 600;
  font-size: 18px;
  color: #242A7E;
  display: flex;
  align-items: center;
}

.auction-showcase__link:hover img {
  transform: translateX(5px);
}

.auction-showcase__link img {
  flex-shrink: 0;
  margin-left: 10px;
  transition: 300ms;
}

.auction-showcase__decoration {
  position: absolute;
  right: -23px;
  bottom: -40px;
}

@media only screen and (max-width: 1300px) {
  .auction-showcase__item.large .auction-showcase__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 991px) {
  .auction-showcase__decoration {
    width: 150px;
    right: -30px;
  }
}

@media only screen and (max-width: 767px) {
  .auction-showcase {
    overflow: hidden;
    margin-bottom: 30px;
  }
  .auction-showcase__inner {
    display: block;
  }
  .auction-showcase__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
    display: block;
    height: auto;
  }
  .auction-showcase__label {
    width: 100%;
    writing-mode: unset;
    transform: rotate(0deg);
    height: 70px;
    background: url(../images/auction-label-mob.jpg) 50%/cover;
    border-radius: 8px 8px 0 0;
  }
  .auction-showcase__label:before {
    display: none;
  }
  .auction-showcase__content {
    padding: 21px 24px;
  }
  .auction-showcase__title {
    font-size: 40px !important;
    margin-bottom: 15px;
  }
  .auction-showcase__date {
    margin-bottom: 100px;
    font-size: 13px;
  }
  .auction-showcase__link {
    font-size: 16px;
  }
  .auction-showcase__decoration {
    width: 180px;
    right: -60px;
  }
}

/* Swiper scrollbar */
.swiper-container-horizontal > .swiper-scrollbar {
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1 !important;
  background: rgba(218, 218, 218, 0.4);
}

.swiper-container-horizontal > .swiper-scrollbar .swiper-scrollbar-drag {
  background: linear-gradient(127.15deg, #242A7E -15.4%, #1E88E5 204.87%);
}

/* Lots */
.lots {
  background: url(../images/lots-bg.jpg) 50%/cover;
  padding: 90px 0 40px;
  overflow: hidden;
  margin-bottom: 120px;
}

.lots.lots--another {
  background: none;
  margin-bottom: 30px;
  padding: 30px 0;
}

.lots .swiper-wrapper {
  padding: 50px 0 105px;
}

.lots .swiper-container {
  overflow: visible;
}

.lots__yours-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #76747C;
  font-size: 16px;
  padding: 0 15px 15px 15px;
}

.lots__yours-info span {
  font-size: 18px;
  font-weight: bold;
  color: #27AE60;
}

.lots__notes-container {
  position: absolute;
  left: 100%;
  margin-left: 20px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lots__notes-container span {
  margin-left: 24px;
  color: #828A93;
}

.lots__notes-container .lots__notes {
  margin-left: 0;
  width: 40px;
  height: 40px;
  background: url(../images/edit-3.svg) no-repeat 50% !important;
  border: 0.5px solid #CAD3DB;
  box-shadow: 0px 10px 20px rgba(33, 29, 71, 0.2);
  border-radius: 5px;
}

.lots__redeemed {
  padding-right: 15px;
  padding-bottom: 15px;
}

.lots__notice {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 20px;
  background: #FFFFFF;
  border: 0.5px solid #CAD3DB;
  box-shadow: 0px 4px 20px rgba(33, 29, 71, 0.2);
  border-radius: 5px;
  width: 280px;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}

.lots__notice.active {
  opacity: 1;
  visibility: visible;
}

.lots__notice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.lots__notice-close {
  cursor: pointer;
}

.lots__notice-title {
  font-weight: 600;
  font-size: 16px;
}

.lots__notice-body {
  font-size: 16px;
}

.lots__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lots__link {
  display: flex;
  font-weight: 600;
  font-size: 18px;
  color: #242A7E;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 10px;
  margin-top: 5px;
}

.lots__link:hover img {
  transform: translateX(5px);
}

.lots__link img {
  flex-shrink: 0;
  margin-left: 24px;
  transition: 300ms;
}

.lots__item {
  background: #FFFFFF;
  border: 1px solid #DADADA;
  box-shadow: 0px 4px 80px rgba(202, 203, 214, 0.4);
  border-radius: 8px;
  width: 384px;
  font-size: 16px;
  transition: 300ms;
}

.lots__item:hover {
  box-shadow: 0px 4px 80px rgba(202, 203, 214, 0.8);
}

.lots__item:hover .lots__favorite-off {
  opacity: 1;
  visibility: visible;
}

.lots__item.bought .lots__number {
  background: #27AE60;
}

.lots__item.not-bought .lots__number {
  background: #828A93;
}

.lots__item.not-bought .lots__bought {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #828A93;
}

.lots__item.not-bought .lots__bought div:first-child {
  margin-bottom: 10px;
}

.lots__item.not-bought .lots__bought div span {
  color: #000000;
}

.lots__item.yours .lots__number {
  background: #27AE60;
}

.lots__item.yours .lots__author a {
  color: #27AE60;
}

.lots__item.yours .lots__price {
  opacity: 0;
  visibility: hidden;
}

.lots__item.yours .lots__footer {
  justify-content: flex-end;
}

.lots__item.yours .lots__confirm {
  background: #27AE60;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lots__item.yours .lots__confirm img {
  margin-right: 5px;
}

.lots__item.yours .lots__confirm:after {
  display: none;
}

.lots__bought {
  height: 150px;
  text-align: center;
}

.lots__bought-label {
  color: rgba(27, 23, 37, 0.6);
  font-size: 16px;
  margin-bottom: 20px;
}

.lots__bought-price {
  color: #27AE60;
  font-size: 40px;
  font-weight: bold;
}

.lots__bought-nick {
  font-size: 16px;
}

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

.lots__number {
  background: #FFB931;
  border-radius: 8px;
  height: 56px;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  margin: -1px 0 0 -1px;
}

.lots__number.bought {
  background: #27AE60;
}

.lots__number.not-bought {
  background: #828A93;
}

.lots__number.extended {
  background: #27AE60;
}

.lots__buttons {
  display: flex;
  align-items: center;
  flex-grow: 10;
  justify-content: flex-end;
}

.lots__buttons a {
  margin: 0 15px;
  transition: 0ms;
}

.lots__favorite {
  width: 26px;
  height: 24px;
  background: url(../images/favorite-icon.png) no-repeat;
}

.lots__favorite.active {
  background-position: bottom;
}

.lots__notification {
  width: 30px;
  height: 30px;
  background: url(../images/notification-icon.png) no-repeat;
}

.lots__notification.active {
  background-position: bottom;
}

.lots__img {
  height: 130px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lots__name {
  font-weight: bold;
  font-size: 18px;
  color: #242A7E;
  margin-bottom: 12px;
  padding: 0 16px;
}

.lots__name:hover {
  color: #FFB931;
}

.lots__list {
  margin-bottom: 14px;
}

.lots__list li {
  border-bottom: 1px solid #E4E7EB;
  padding: 6px 16px;
}

.lots__list li span:last-child {
  font-weight: 600;
}

.lots__list li:first-child {
  border-top: 1px solid #E4E7EB;
}

.lots__list li:nth-child(2n - 1) {
  background: rgba(239, 242, 245, 0.6);
}

.lots__bet {
  padding: 0 16px;
}

.lots__bet span {
  font-weight: 600;
}

.lots__author {
  padding: 0 16px;
  margin-bottom: 12px;
}

.lots__author span,
.lots__author a {
  font-weight: 600;
  color: #FFB931;
  margin-bottom: 12px;
}

.lots__footer {
  display: flex;
  padding: 0 16px 33px;
  align-items: center;
}

.lots__footer.column {
  flex-direction: column;
}

.lots__footer.column .lots__price {
  height: 40px;
  border-radius: 6px 6px 0px 0px;
  width: 100%;
}

.lots__footer.column .lots__confirm {
  border-radius: 0px 0px 6px 6px;
  height: 46px;
  width: 100%;
}

.lots__price {
  width: 45%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
  background: #EFF2F5;
  border-radius: 8px 0px 0px 8px;
  font-weight: 600;
  font-size: 20px;
  color: #242A7E;
}

.lots__price input {
  flex-grow: 10;
  margin-right: 5px;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 20px;
  color: #242A7E;
  min-width: 0;
  font-family: inherit;
}

.lots__price b {
  color: #242A7E;
  opacity: 0.2;
}

.lots__confirm {
  width: 55%;
  border-radius: 0px 8px 8px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  height: 70px;
  text-transform: none;
}

.lots__autobid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-top: 1px solid #CAD3DB;
}

.lots__autobid-label {
  font-weight: 600;
  font-size: 18px;
}

.lots__autobid-form {
  display: flex;
  align-items: center;
}

.lots__autobid-field {
  position: relative;
  background: #EFF2F5;
  border-radius: 6px;
  width: 130px;
  height: 50px;
  display: flex;
  align-items: center;
  margin-right: 11px;
}

.lots__autobid-field span {
  position: absolute;
  font-weight: 600;
  font-size: 20px;
  color: #242A7E;
  left: 10px;
  top: 10px;
  opacity: 0.2;
}

.lots__autobid-field input {
  padding: 0 12px 0 38px;
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 20px;
  color: #242A7E;
  text-align: right;
  width: 100%;
  height: 27px;
}

.lots__autobid-btn {
  width: 180px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  background: #FFB931;
  color: #ffffff;
  transition: 300ms;
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
}

.lots__autobid-btn.stop {
  background: #F33B3B;
}

.lots__autobid-btn:hover {
  background: #242A7E;
}

.lots__notes {
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin-left: 24px;
  background: url(../images/edit-icon.png) no-repeat top;
}

.lots__notes.active {
  background-position: bottom;
}

.lots__history-btn {
  height: 74px;
  background: #F3F5F7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #716F79;
  cursor: pointer;
}

.lots__history-btn.active span:after {
  transform: rotate(225deg);
  top: 8px;
}

.lots__history-btn span {
  position: relative;
}

.lots__history-btn span:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #9D9CA3;
  transform: rotate(45deg);
  border-top: none;
  border-left: none;
  position: absolute;
  right: -20px;
  top: 4px;
  transition: 300ms;
}

.lots__history {
  display: none;
}

.lots__history .pagination {
  padding: 20px 0;
  justify-content: center;
}

.lots__history-table {
  background: #F5F7F9;
  font-size: 14px;
  border-collapse: collapse;
  width: 100%;
}

.lots__history-table th {
  font-weight: 600;
  background: #EFF2F4;
}

.lots__history-table td,
.lots__history-table th {
  height: 50px;
  border: 0.5px solid #CAD3DB;
  text-align: center;
  padding: 5px;
}

.lots__history-table td:first-child,
.lots__history-table th:first-child {
  border-left: none;
}

.lots__history-table td:last-child,
.lots__history-table th:last-child {
  border-right: none;
}

.lots__history-table td:first-child {
  padding-left: 15px;
  text-align: left;
}

.lots__history-table td span {
  color: #FFB931;
  font-weight: bold;
  margin-right: 5px;
}

.lots__history-table tr.number1 {
  box-shadow: 0px 4px 50px rgba(129, 142, 155, 0.25);
}

.lots__history-table tr.number1 td {
  background: #ffffff;
}

.lots__history-table tr:nth-child(2n -1) {
  background: #ffffff;
}

.lots__favorite-off {
  width: 40px;
  height: 40px;
  position: absolute;
  right: -30px;
  top: -16px;
  background: url(../images/close-with-bg.svg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 300ms !important;
}

@media only screen and (max-width: 1500px) {
  .lots__notice, .lots__notes-container {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .lots {
    padding: 40px 0 103px;
    position: relative;
    margin-bottom: 70px;
  }
  .lots .swiper-wrapper {
    padding-bottom: 30px;
  }
  .lots__link {
    position: absolute;
    bottom: 30px;
    left: 15px;
  }
  .lots__item {
    width: 320px;
  }
  .lots__number.extended {
    height: 50px !important;
  }
}

/* Advantages */
.advantages {
  margin-bottom: 200px;
}

.advantages__title {
  margin-bottom: 102px;
}

.advantages__items {
  display: flex;
  justify-content: space-between;
}

.advantages__item {
  width: 25%;
}

.advantages__icon {
  height: 130px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.advantages__head {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

.advantages__text {
  opacity: 0.8;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .advantages {
    margin-bottom: 35px;
  }
  .advantages__items {
    display: block;
  }
  .advantages__item {
    width: 100%;
    margin-bottom: 50px;
  }
  .advantages__title {
    margin-bottom: 65px;
  }
  .advantages__icon {
    height: 90px;
    margin-bottom: 15px;
  }
  .advantages__head {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .advantages__text {
    font-size: 16px;
  }
}

/* Results */
.results {
  margin-bottom: 250px;
}

.results__header {
  margin-bottom: 50px;
}

.results__link {
  text-align: center;
}

.results__link a {
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  color: #242A7E;
}

.results__link a:hover img {
  transform: translateX(5px);
}

.results__link a img {
  flex-shrink: 0;
  margin-left: 24px;
  transition: 300ms;
}

@media only screen and (max-width: 767px) {
  .results {
    margin-bottom: 50px;
  }
  .results .lots__link {
    display: none;
  }
  .results .lots__header {
    margin-bottom: 30px;
  }
}

.large-lot {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 68px;
}

.large-lot__info {
  width: 60%;
  background: url(../images/large-log-bg.jpg) 50%/cover;
  padding: 47px 66px;
  color: #ffffff;
  flex-direction: column;
  display: flex;
}

.large-lot__title {
  font-weight: bold;
  font-size: 48px;
  margin-bottom: 12px;
}

.large-lot__date {
  font-weight: 300;
  font-size: 18px;
  flex-grow: 10;
}

.large-lot__link {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.large-lot__link:hover img {
  transform: translateX(5px);
}

.large-lot__link img {
  flex-shrink: 0;
  margin-left: 24px;
  transition: 300ms;
}

.large-lot__list {
  background: #EFF2F5;
  width: 40%;
}

.large-lot__list-item {
  border-bottom: 1px solid #DADADA;
  padding: 10px 78px 10px 20px;
}

.large-lot__list-item:last-child {
  border: none;
}

.large-lot__label {
  font-weight: 300;
  font-size: 14px;
  opacity: 0.4;
  margin-bottom: 15px;
}

.large-lot__amount {
  font-weight: bold;
  font-size: 56px;
  text-align: right;
  color: #242A7E;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1300px) {
  .large-lot__amount {
    font-size: 40px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .large-lot__list-item {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .large-lot {
    display: block;
    margin-bottom: 40px;
  }
  .large-lot__info {
    width: 100%;
    padding: 24px 20px;
  }
  .large-lot__title {
    font-size: 30px;
    margin-bottom: 8px;
  }
  .large-lot__date {
    font-size: 16px;
    margin-bottom: 67px;
  }
  .large-lot__list {
    width: 100%;
  }
  .large-lot__list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .large-lot__label {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 14px;
  }
  .large-lot__amount {
    margin-bottom: 0;
    font-size: 30px;
    flex-shrink: 0;
    margin-left: 5px;
  }
}

.small-lots {
  display: flex;
  margin-bottom: 81px;
}

@media only screen and (max-width: 767px) {
  .small-lots {
    display: block;
    margin-bottom: 60px;
  }
}

.small-lot {
  width: 31%;
  margin-right: 3.5%;
  background: #EFF2F5;
  border-radius: 8px;
  overflow: hidden;
}

.small-lot:last-child {
  margin-right: 0;
}

.small-lot__header {
  background: url(../images/small-lot-header-bg.jpg) 50%/cover;
  padding: 20px 32px;
  color: #ffffff;
}

.small-lot__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.small-lot__title span {
  font-weight: bold;
  font-size: 24px;
}

.small-lot__title img {
  transition: 300ms;
}

.small-lot__title img:hover {
  transform: translateX(5px);
}

.small-lot__date {
  font-weight: 600;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .small-lot {
    width: 100%;
    margin-bottom: 30px;
  }
  .small-lot__header {
    padding: 20px 17px;
  }
  .small-lot__date {
    font-size: 16px;
    margin-top: 15px;
  }
}

/* Content */
.content {
  line-height: 1.4;
  margin-bottom: 100px;
}

.content h1 {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 40px;
}

.content h2 {
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 32px;
}

.content p {
  opacity: 0.8;
  margin-bottom: 50px;
  font-size: 18px;
}

.content img {
  margin-bottom: 40px;
}

/* Footer */
.footer {
  background: url(../images/footer-bg.jpg) 50%/cover;
  padding: 70px 0;
  color: #ffffff;
  position: relative;
}

.footer__decoration {
  right: 0;
  bottom: 0;
  position: absolute;
  display: flex;
}

.footer__inner {
  display: flex;
}

.footer__info {
  width: 390px;
  flex-shrink: 0;
  margin-right: 100px;
  position: relative;
}

.footer__info:before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: -70px;
  bottom: -70px;
  left: -350px;
  background: rgba(27, 23, 37, 0.5);
}

.footer__logo {
  margin-bottom: 48px;
  position: relative;
  z-index: 3;
}

.footer__info-item {
  margin-bottom: 14px;
  font-size: 16px;
  color: #ffffff;
  position: relative;
  z-index: 3;
}

.footer__info-item span {
  opacity: 0.6;
}

.footer__info-item b,
.footer__info-item a {
  font-weight: 600;
}

.footer__info-item.date {
  margin-bottom: 0;
  margin-top: 62px;
}

.footer__info-item.date b {
  font-weight: bold;
  font-size: 24px;
}

.footer__content {
  display: flex;
  align-items: flex-start;
  flex-grow: 10;
  position: relative;
  z-index: 3;
}

.footer__menu {
  flex-grow: 10;
  flex-shrink: 0;
}

.footer__menu li {
  margin-bottom: 15px;
}

.footer__menu li:last-child {
  margin-bottom: 0;
}

.footer__menu li a {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.4;
}

.footer__menu li a:hover {
  opacity: 1;
}

.footer__search {
  width: 384px;
}

.footer__form {
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 72px;
}

.footer__form input {
  flex-grow: 10;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 18px;
  height: 50px;
  padding: 0 10px;
}

.footer__form button {
  background: #FFB931;
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: 300ms;
  height: 50px;
  width: 50px;
  flex-shrink: 0;
}

.footer__form button img {
  transition: 300ms;
}

.footer__form button:hover img {
  transform: translateX(3px);
}

.footer__title {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer__copyright {
  font-size: 16px;
  opacity: 0.8;
  color: #ffffff;
}

@media only screen and (max-width: 1700px) {
  .footer__decoration {
    display: none;
  }
}

@media only screen and (max-width: 1300px) {
  .footer__info {
    width: 340px;
    margin-right: 60px;
  }
  .footer__search {
    width: 300px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__search {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 0;
  }
  .footer__inner {
    flex-direction: column-reverse;
  }
  .footer__menu {
    padding-top: 36px;
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 10;
  }
  .footer__menu li {
    width: 50%;
    padding-bottom: 24px;
    margin-bottom: 0;
  }
  .footer__menu li a {
    font-size: 13px;
  }
  .footer__info {
    width: 100%;
    padding: 20px 0 25px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .footer__info-items {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .footer__info-item {
    width: 50%;
    margin-bottom: 20px;
    font-size: 13px;
  }
  .footer__info-item span {
    display: block;
  }
  .footer__info-item.date {
    margin-top: 0;
  }
  .footer__info-item.date b {
    font-size: 13px;
  }
  .footer__info:before {
    top: 0;
    bottom: 0;
    right: -15px;
  }
  .footer__logo {
    margin-bottom: 0;
  }
}

/* Catalog */
.catalog {
  padding-bottom: 70px;
}

.catalog .pagination {
  justify-content: center;
}

.catalog__inner {
  display: flex;
  align-items: flex-start;
}

.catalog__sidebar {
  width: 280px;
  margin-right: 31px;
  flex-shrink: 0;
  padding-bottom: 30px;
}

.catalog__container {
  flex-grow: 10;
}

.catalog__lots {
  display: flex;
  flex-wrap: wrap;
}

.catalog__lots .lots__item {
  width: calc(33.33% - 20px);
  margin-right: 30px;
  margin-bottom: 30px;
}

.catalog__lots .lots__item:nth-child(3n) {
  margin-right: 0;
}

@media only screen and (max-width: 1300px) {
  .catalog__lots .lots__item {
    width: calc(50% - 15px);
  }
  .catalog__lots .lots__item:nth-child(3n) {
    margin-right: 30px;
  }
  .catalog__lots .lots__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .catalog__sidebar {
    width: 0;
    overflow: hidden;
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .catalog__lots .lots__item {
    width: 340px;
    margin: 0 auto 30px !important;
  }
}

/* Filter */
.filter__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.filter__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}

.filter__reset {
  display: flex;
  cursor: pointer;
  align-items: center;
}

.filter__reset:hover span {
  opacity: 1;
}

.filter__reset span {
  opacity: 0.6;
  margin-right: 14px;
  transition: 300ms;
}

.filter__container {
  background: #FFFFFF;
  box-shadow: 4px 0px 60px rgba(172, 180, 188, 0.5);
  border-radius: 8px;
  margin-bottom: 15px;
}

.filter__subscribe {
  display: flex;
  align-items: center;
  color: #76747C;
  font-size: 16px;
}

.filter__subscribe:hover {
  color: #242A7E;
}

.filter__subscribe img {
  flex-shrink: 0;
  margin-right: 20px;
}

.filter__item {
  padding: 20px;
  border-bottom: 1px solid #DADADA;
}

.filter__item:last-child {
  border-bottom: none;
}

.filter__item-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
}

.filter__item-header span {
  font-size: 18px;
  font-weight: 600;
  color: #A7B3D5;
}

.filter__add {
  cursor: pointer;
  display: flex;
  transform: translateY(2px);
}

.filter__checkbox {
  margin-bottom: 15px;
}

.filter__elems {
  display: flex;
  flex-wrap: wrap;
}

.filter__elem {
  margin-right: 20px;
  position: relative;
  font-size: 18px;
  color: #22469C;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.filter__elem:last-child:after {
  display: none;
}

.filter__elem:after {
  content: '';
  display: block;
  position: absolute;
  right: -10px;
  top: 0;
  height: 25px;
  background: #DADADA;
  width: 1px;
}

.filter__elem span {
  width: 10px;
  height: 10px;
  background: url(../images/close.svg) 50%/cover;
  cursor: pointer;
  margin-left: 12px;
}

.filter__fields {
  border-radius: 6px;
  background: #F2F5F7;
  display: flex;
  align-items: center;
  padding: 11px 0;
  margin-top: -10px;
}

.filter__field {
  width: 50%;
}

.filter__field:first-child input {
  border-right: 1px solid #CAD3DB;
}

.filter__field.year-from, .filter__field.year-to, .filter__field.bet-from, .filter__field.bet-to {
  position: relative;
}

.filter__field.year-from input, .filter__field.year-to input, .filter__field.bet-from input, .filter__field.bet-to input {
  text-align: right;
  padding-right: 16px;
  padding-left: 38px;
}

.filter__field.year-from:before, .filter__field.year-to:before, .filter__field.bet-from:before, .filter__field.bet-to:before {
  content: 'c';
  display: block;
  position: absolute;
  left: 10px;
  top: 1px;
  font-size: 18px;
  color: #9FAFD3;
}

.filter__field.year-to:before {
  content: 'по';
}

.filter__field.bet-from:before {
  content: 'от';
}

.filter__field.bet-from input {
  text-align: left;
}

.filter__field.bet-to:before {
  content: 'до';
}

.filter__field.bet-to input {
  text-align: left;
}

.filter__field input {
  width: 100%;
  min-width: 0;
  background: none;
  border: none;
  font-weight: 600;
  font-family: inherit;
  font-size: 18px;
  height: 28px;
}

.filter__slider {
  margin-top: 45px;
  width: 100%;
  height: 5px;
  background: #EFF2F5;
  border-radius: 5px;
  position: relative;
}

.filter__slider .ui-slider-range {
  background: #FFB931;
  height: 5px;
  position: absolute;
}

.filter__slider .ui-slider-handle {
  background: #FFB931;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  transform: translate(-7px, -5px);
}

.filter__slider .ui-slider-handle span {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  font-size: 12px;
}

.filter__slider .ui-slider-handle:before {
  content: '';
  display: block;
  position: absolute;
  left: -3px;
  right: -3px;
  top: -3px;
  bottom: -3px;
  background: rgba(255, 185, 49, 0.5);
  border-radius: 50%;
}

.filter__submit {
  margin-bottom: 15px;
  width: 100%;
  text-transform: none;
  font-family: inherit;
  font-weight: 600;
}

.filter__found {
  font-size: 14px;
  text-align: center;
}

.filter__found span {
  color: #242A7E;
  font-weight: bold;
}

@media only screen and (max-width: 991px) {
  .filter {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    height: calc(100vh - 60px);
    overflow: auto;
    display: none;
  }
  .filter__container {
    box-shadow: none;
  }
  .filter__header {
    padding: 15px;
  }
  .filter__found {
    display: none;
  }
  .filter__submit {
    margin: 15px;
    width: calc(100% - 30px);
  }
}

/* Sort */
.sort {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  margin-top: -3px;
}

.sort__img {
  display: flex;
  margin-right: 12px;
  cursor: pointer;
}

.sort__img.up {
  transform: rotate(180deg);
}

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

.sort__item .checkbox {
  margin-right: 24px;
}

.sort__item .checkbox:last-child {
  margin-right: 0;
}

.sort__label {
  font-size: 16px;
  margin-right: 5px;
}

.sort__select {
  border: none;
  background: transparent url(../images/arrow-select.svg) no-repeat 100% 50%;
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 20px;
}

.sort__select::-ms-expand {
  display: none;
}

.sort__type:first-child {
  margin-right: 28px;
  position: relative;
}

.sort__type:first-child:after {
  content: '';
  display: block;
  position: absolute;
  right: -14px;
  top: -4px;
  width: 1px;
  height: 38px;
  background: #DADADA;
}

.sort__type svg {
  fill: #DDDCDE;
}

.sort__type.active svg {
  fill: #242A7E;
}

@media only screen and (max-width: 991px) {
  .sort {
    display: none;
  }
}

/* Autoreload */
.autoreload {
  position: fixed;
  right: 15px;
  bottom: 15px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(202, 203, 214, 0.8);
  border-radius: 6px;
  width: 90px;
  z-index: 9999;
}

.autoreload__text {
  padding: 25px;
  height: 170px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 600;
  text-align: center;
}

.autoreload__text span {
  font-weight: bold;
  color: #242A7E;
}

.autoreload__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(122.97deg, #242A7E -15.4%, #1E88E5 204.87%);
  border-radius: 0px 0px 6px 6px;
  height: 40px;
}

@media only screen and (max-width: 1300px) {
  .autoreload {
    height: 40px;
    width: 40px;
    background: none;
    border-radius: 50%;
  }
  .autoreload__text {
    display: none;
  }
  .autoreload__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
}

/* Catalog toolbar */
.catalog-toolbar {
  display: none;
}

@media only screen and (max-width: 991px) {
  .catalog-toolbar {
    display: block;
    position: relative;
    z-index: 9999;
    margin-top: -50px;
    margin-bottom: 36px;
    height: 60px;
  }
  .catalog-toolbar.lk-toolbar {
    margin-top: 0;
  }
  .catalog-toolbar__inner {
    display: flex;
    height: 60px;
    background: #ffffff;
    box-shadow: 0px 4px 30px rgba(85, 86, 88, 0.15);
  }
  .catalog-toolbar__inner.fixed {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
  }
  .catalog-toolbar__direction {
    border-right: 1px solid #CAD3DB;
    flex-shrink: 0;
    width: 60px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .catalog-toolbar__direction.up img {
    transform: rotate(180deg);
  }
  .catalog-toolbar__sort {
    flex-basis: 50%;
    height: 100%;
    align-items: center;
    padding: 0 12px;
    color: #242A7E;
    display: flex;
    font-weight: bold;
    cursor: pointer;
  }
  .catalog-toolbar__filter {
    flex-basis: 50%;
    background: linear-gradient(125.78deg, #242A7E -15.4%, #1E88E5 204.87%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
  }
  .catalog-toolbar__filter img {
    margin-right: 17px;
  }
}

/* Mobile sort */
.mobile-sort {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-sort {
    position: fixed;
    left: 0;
    right: 0;
    top: 60px;
    background: #ffffff;
    z-index: 999;
    padding: 0 15px 15px;
    border-top: 1px solid #DADADA;
    height: calc(100vh - 60px);
    overflow: auto;
  }
  .mobile-sort__item {
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #A4A2A8;
    font-size: 18px;
    border-bottom: 1px solid #DADADA;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .mobile-sort__item.active {
    font-weight: bold;
    color: #242A7E;
  }
  .mobile-sort .checkbox {
    margin-top: 30px;
  }
  .mobile-sort__submit {
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    width: 100%;
  }
}

/* Catalog list */
.catalog.catalog--list .lots__item {
  width: 100%;
  margin-right: 0 !important;
  position: relative;
  padding-left: 142px;
}

.catalog.catalog--list .lots__img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 142px;
  border-right: 1px solid #CAD3DB;
  height: 100%;
  padding-top: 40px;
}

.catalog.catalog--list .lots__number {
  position: absolute;
  left: 0;
  width: 142px;
  height: 40px;
  top: 0;
  border-radius: 6px 0 6px 0;
}

.catalog.catalog--list .lots__buttons {
  position: absolute;
  right: 15px;
  top: 15px;
}

.catalog.catalog--list .lots__name {
  padding-top: 15px;
  padding-right: 116px;
  padding-bottom: 10px;
}

.catalog.catalog--list .lots__list {
  flex-wrap: wrap;
  display: flex;
  border-top: 1px solid #CAD3DB;
}

.catalog.catalog--list .lots__list li {
  width: 50%;
  background: none;
  border: none;
  border-right: 1px solid #CAD3DB;
  border-bottom: 1px solid #CAD3DB;
}

.catalog.catalog--list .lots__list li:nth-child(2n) {
  border-right: none;
}

.catalog.catalog--list .lots__list-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalog.catalog--list .lots__price {
  width: 130px;
  height: 50px;
  margin-right: 11px;
  border-radius: 6px;
}

.catalog.catalog--list .lots__confirm {
  width: 180px;
  height: 50px;
  border-radius: 6px;
}

.catalog.catalog--list .lots__footer {
  padding-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .catalog.catalog--list .lots__item {
    padding: 0;
    width: 340px;
    margin: 0 auto 30px !important;
  }
  .catalog.catalog--list .lots__img {
    position: static;
    width: 100%;
    height: 130px;
    border: none;
  }
  .catalog.catalog--list .lots__list li {
    width: 100%;
    border-right: none;
  }
  .catalog.catalog--list .lots__list-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog.catalog--list .lots__autobid {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog.catalog--list .lots__autobid-form {
    flex-direction: column;
    width: 100%;
  }
  .catalog.catalog--list .lots__autobid-label {
    margin-bottom: 15px;
  }
  .catalog.catalog--list .lots__autobid-field {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .catalog.catalog--list .lots__autobid-btn {
    width: 100%;
  }
  .catalog.catalog--list .lots__footer {
    flex-direction: column;
    width: 100%;
  }
  .catalog.catalog--list .lots__price {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .catalog.catalog--list .lots__confirm {
    width: 100%;
  }
  .catalog.catalog--list .lots__name {
    padding-right: 0;
  }
  .catalog.catalog--list .lots__buttons {
    top: 7px;
  }
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
}

.pagination__prev, .pagination__next {
  background: #FFFFFF;
  border-radius: 4px;
  width: 38px;
  height: 38px;
  box-shadow: 0px 4px 20px rgba(180, 190, 208, 0.8);
  border: 1px solid #242A7E;
}

.pagination__prev a, .pagination__next a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination__prev.disabled, .pagination__next.disabled {
  opacity: 0.5;
}

.pagination__prev {
  transform: rotate(180deg);
  margin-right: 35px;
}

.pagination__next {
  margin-left: 35px;
}

.pagination li {
  margin: 0 8px;
}

.pagination li.active a {
  color: #242A7E;
}

.pagination li a {
  color: #CAD3DB;
  font-size: 24px;
  font-weight: 600;
}

.pagination li a:hover {
  color: #242A7E;
}

/* Auction result */
.auction-result {
  background: url(../images/final-result-bg.jpg) 50%/cover;
  padding: 70px 0 90px;
  color: #ffffff;
  margin-bottom: 50px;
}

.auction-result__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auction-result__title {
  font-weight: bold;
  font-size: 64px;
  margin-bottom: 9px;
}

.auction-result__date {
  font-size: 24px;
}

.auction-result__items {
  display: flex;
  align-items: center;
}

.auction-result__item {
  margin-right: 64px;
}

.auction-result__item:last-child {
  margin-right: 0;
}

.auction-result__item .text {
  font-weight: 600;
  opacity: 0.8;
}

.auction-result__item .number {
  font-weight: bold;
  font-size: 40px;
  color: #FFB931;
}

@media only screen and (max-width: 1300px) {
  .auction-result__title {
    font-size: 50px;
  }
  .auction-result__date {
    font-size: 20px;
  }
  .auction-result__item {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .auction-result__inner {
    display: block;
  }
  .auction-result__main {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .auction-result {
    padding: 30px 0;
  }
  .auction-result__items {
    display: block;
  }
  .auction-result__item {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .auction-result__item:last-child {
    margin-bottom: 0;
  }
  .auction-result__title {
    font-size: 38px;
  }
  .auction-result__date {
    font-size: 16px;
  }
}

/* Archive */
.archive {
  padding: 60px 0;
}

.archive__title {
  margin-bottom: 60px;
}

.archive__previous {
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 24px;
  color: #242A7E;
}

.archive__list-title {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 24px;
  color: #242A7E;
}

.archive__table {
  margin-bottom: 60px;
}

.archive__table table {
  width: 100%;
  border-collapse: collapse;
}

.archive__table table th {
  color: #1B1725;
  opacity: 0.5;
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 30px;
}

.archive__table table td,
.archive__table table th {
  text-align: center;
  position: relative;
}

.archive__table table td:first-child:after,
.archive__table table th:first-child:after {
  content: '';
  display: block;
  position: absolute;
  left: -1px;
  top: 0;
  height: 25px;
  width: 1px;
  background: #CAD3DB;
}

.archive__table table td:before,
.archive__table table th:before {
  content: '';
  display: block;
  position: absolute;
  right: -1px;
  top: 0;
  height: 25px;
  width: 1px;
  background: #CAD3DB;
}

.archive__table table td {
  color: rgba(27, 23, 37, 0.9);
  font-size: 18px;
  font-weight: bold;
  height: 50px;
}

.archive__table table td:before, .archive__table table td:after {
  top: 13px !important;
  z-index: 100;
}

.archive__table table td:last-child {
  font-weight: 400;
}

.archive__table table tr:nth-child(2n) td {
  background: #EFF2F5;
}

.archive .pagination {
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .archive {
    padding: 20px 0 40px;
  }
  .archive__table {
    overflow: auto;
    margin-right: -15px;
  }
  .archive__table table {
    width: 900px;
  }
  .archive__table table td {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .archive__table table th {
    font-size: 14px;
  }
  .archive__previous, .archive__list-title {
    font-size: 18px;
  }
}

/* About */
.about {
  position: relative;
}

.about__img {
  top: 83px;
  right: 0;
  position: absolute;
}

.about__inner {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 105px 0 108px;
}

.about__title {
  margin-bottom: 64px;
}

.about__text {
  font-size: 18px;
  color: #1B1725;
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 100px;
}

.about__text:last-child {
  margin-bottom: 0;
}

.about .advantages__items {
  margin-bottom: 100px;
}

.about .advantages__item {
  width: 28%;
}

@media only screen and (max-width: 1700px) {
  .about__img {
    display: none;
  }
  .about__inner {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .about__inner {
    padding: 50px 0;
  }
  .about__title {
    margin-bottom: 40px;
  }
  .about__text {
    line-height: 1.4;
    margin-bottom: 90px;
  }
  .about__text:last-child {
    margin-bottom: 0;
  }
  .about .advantages__items {
    margin-bottom: 90px;
  }
  .about .advantages__item {
    width: 100%;
  }
}

/* Payment */
.payment {
  padding-bottom: 80px;
}

.payment__nav {
  display: flex;
  border-bottom: 2px solid #DADADA;
  margin-bottom: 117px;
}

.payment__nav li {
  width: 50%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 32px;
  color: #828A93;
  cursor: pointer;
}

.payment__nav li.active {
  background: url(../images/payment-bg.jpg);
  color: #ffffff;
}

.payment__container {
  padding-left: 415px;
  position: relative;
  display: none;
}

.payment__container.active {
  display: block;
}

.payment__sidebar {
  position: absolute;
  left: 0;
  width: 312px;
  top: 0;
}

.payment__menu {
  width: 312px;
}

.payment__menu.fixed {
  position: fixed;
  top: 15px;
}

.payment__menu li {
  font-size: 18px;
  color: #828A93;
  margin-bottom: 24px;
}

.payment__menu li.active {
  font-weight: bold;
  color: #242A7E;
}

.payment__menu li:hover {
  color: #242A7E;
}

.payment__item {
  margin-bottom: 90px;
}

.payment__header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.payment__icon {
  flex-shrink: 0;
  width: 72px;
  margin-right: 32px;
}

.payment__title {
  font-weight: bold;
  font-size: 28px;
  color: #242A7E;
}

.payment__body {
  font-size: 18px;
}

.payment__body p {
  margin-bottom: 30px;
}

.payment__body p a {
  color: #242A7E;
  text-decoration: underline;
}

.payment__body p a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 991px) {
  .payment__sidebar {
    display: none;
  }
  .payment__container {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .payment__nav {
    margin-bottom: 50px;
  }
  .payment__nav li {
    height: 63px;
    font-size: 24px;
  }
  .payment__title {
    font-size: 18px;
  }
}

/* Guarantee */
.info-title {
  background: url(../images/info-title-bg.jpg) 50%/cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 48px;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .info-title {
    height: 63px;
    font-size: 24px;
  }
}

.guarantee {
  overflow: hidden;
}

.guarantee__showcase {
  padding: 194px 0 225px;
  padding-left: 400px;
  position: relative;
}

.guarantee__img {
  position: absolute;
  left: -292px;
  top: 97px;
}

.guarantee__head {
  font-weight: bold;
  font-size: 28px;
  color: #242A7E;
  margin-bottom: 40px;
}

.guarantee__description p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
}

.guarantee__description p:last-child {
  margin-bottom: 0;
}

.guarantee__list {
  max-width: 728px;
  position: relative;
  margin-bottom: 160px;
}

.guarantee__list-img {
  position: absolute;
  right: -850px;
  top: 30px;
}

.guarantee__items li {
  background: #FFFFFF;
  border: 1px solid #CAD3DB;
  border-radius: 6px;
  min-height: 146px;
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.guarantee__items li b {
  color: #242A7E;
  font-weight: bold;
}

.guarantee__number {
  margin-right: 40px;
  flex-shrink: 0;
  color: #FFB931;
  font-weight: bold;
  font-size: 18px;
}

.guarantee__text {
  font-weight: 300;
  font-size: 18px;
  padding-top: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 1300px) {
  .guarantee__list {
    max-width: 100%;
  }
  .guarantee__list-img {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .guarantee__img {
    display: none;
  }
  .guarantee__showcase {
    padding: 50px 0;
  }
  .guarantee__list {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .guarantee__head {
    font-size: 22px;
  }
  .guarantee__items li {
    display: block;
  }
  .guarantee__text {
    padding-left: 0;
  }
}

/* Rules */
.rules__inner {
  padding: 90px 0 120px;
}

@media only screen and (max-width: 767px) {
  .rules__inner {
    padding: 50px 0;
  }
}

/* Evaluate */
.evaluate__inner {
  padding: 88px 0 138px;
  display: flex;
  align-items: flex-start;
}

.evaluate__form {
  width: 384px;
  background: #FFFFFF;
  border: 0.5px solid #CAD3DB;
  border-radius: 8px;
  box-shadow: 0px 4px 80px rgba(142, 146, 152, 0.25);
  padding: 36px 32px;
  position: relative;
  margin-right: 32px;
  flex-shrink: 0;
}

.evaluate__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

.evaluate__description {
  font-size: 16px;
  margin-bottom: 58px;
}

.evaluate__field {
  margin-bottom: 25px;
  display: block;
}

.evaluate__field input {
  width: 100%;
  border: 1px solid #CAD3DB;
  border-radius: 6px;
  height: 60px;
  font-family: inherit;
  padding: 0 15px;
  font-size: 16px;
}

.evaluate__file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 18px;
}

.evaluate__file input {
  opacity: 0;
  width: 0;
}

.evaluate__file-list {
  display: flex;
  margin-bottom: 55px;
  flex-wrap: wrap;
}

.evaluate__file-list li {
  margin-right: 30px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #242A7E;
  position: relative;
}

.evaluate__file-list li:last-child:after {
  display: none;
}

.evaluate__file-list li:after {
  content: '';
  display: block;
  width: 1px;
  height: 28px;
  background: #DADADA;
  position: absolute;
  right: -15px;
  top: 0;
}

.evaluate__file-list li span {
  margin-left: 10px;
  cursor: pointer;
  width: 10px;
  height: 10px;
  background: url(../images/close.svg) 50%/cover;
}

.evaluate__confirm {
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  text-transform: none;
}

.evaluate__content {
  flex-grow: 10;
}

.evaluate__item {
  margin-bottom: 90px;
}

.evaluate__header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.evaluate__icon {
  flex-shrink: 0;
  width: 72px;
  margin-right: 30px;
}

.evaluate__head {
  font-weight: bold;
  font-size: 32px;
  color: #242A7E;
}

.evaluate__body ul {
  font-size: 18px;
  color: #333333;
}

.evaluate__body ul li {
  margin-bottom: 15px;
}

.evaluate__elem {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.evaluate__elem:last-child .evaluate__number:before {
  display: none;
}

.evaluate__number {
  font-weight: 800;
  font-size: 40px;
  color: #FFB931;
  opacity: 0.8;
  margin-right: 112px;
  position: relative;
}

.evaluate__number:after {
  content: '';
  display: block;
  position: absolute;
  right: -68px;
  top: 15px;
  width: 14px;
  height: 14px;
  border: 7px solid #242A7E;
  border-radius: 50%;
  box-shadow: 0px 10px 10px rgba(106, 109, 139, 0.25);
  background: #ffffff;
}

.evaluate__number:before {
  content: '';
  display: block;
  background: #FFB931;
  width: 2px;
  height: 88px;
  right: -55px;
  top: 42px;
  position: absolute;
}

.evaluate__text {
  font-size: 18px;
  color: #333333;
}

@media only screen and (max-width: 991px) {
  .evaluate__inner {
    display: block;
    padding: 50px 0;
  }
  .evaluate__form {
    margin: 0 auto 30px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .evaluate__form {
    padding: 15px;
  }
  .evaluate__icon {
    display: none;
  }
  .evaluate__head {
    font-size: 24px;
  }
  .evaluate__body ul {
    font-size: 14px;
  }
  .evaluate__number {
    margin-right: 15px;
  }
  .evaluate__number:after, .evaluate__number:before {
    display: none;
  }
}

/* Contacts */
.contacts {
  position: relative;
  padding: 0 0 100px;
}

.contacts__map {
  position: absolute;
  left: 0;
  top: 200px;
  height: 807px;
  width: 50%;
}

.contacts__content {
  padding-top: 56px;
  padding-left: 50%;
  margin-left: 70px;
}

.contacts__title {
  font-weight: bold;
  font-size: 32px;
  color: #242A7E;
  margin-bottom: 52px;
}

.contacts__item {
  margin-bottom: 50px;
}

.contacts__header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contacts__icon {
  margin-right: 17px;
  width: 32px;
}

.contacts__head {
  font-weight: 600;
  font-size: 24px;
}

.contacts__body {
  font-size: 18px;
  color: #333333;
}

.contacts__video {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 37px;
}

@media only screen and (max-width: 767px) {
  .contacts__map {
    position: static;
    width: calc(100% + 30px);
    height: 400px;
    margin-left: -15px;
  }
  .contacts__content {
    padding-left: 0;
    margin-left: 0;
  }
  .contacts__title {
    font-size: 21px;
  }
  .contacts__head {
    font-size: 18px;
  }
  .contacts__body {
    font-size: 14px;
  }
}

/* Lot */
.breadcrumbs {
  flex-grow: 10;
  font-size: 16px;
}

.breadcrumbs li {
  color: #242A7E;
  display: inline;
  font-weight: 600;
}

.breadcrumbs li:after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border: 2px solid #FFB931;
  border-top: none;
  border-left: none;
  transform: rotate(-45deg) translateX(2px);
  margin: 0 14px;
}

.breadcrumbs li:last-child:after {
  display: none;
}

.breadcrumbs li a {
  color: #76747C;
  font-weight: 400;
}

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

.social li {
  margin-right: 30px;
}

.social li a {
  display: flex;
}

.social li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 991px) {
  .social li {
    width: 25px;
    margin-right: 15px;
  }
}

.lot {
  padding: 45px 0 65px;
}

.lot__label {
  width: 211px;
  height: 211px;
  position: absolute;
  bottom: -50px;
  left: -50px;
}

.lot__label.bought {
  background: url(../images/lot-bought.png) no-repeat 50%;
}

.lot__label.not-bought {
  background: url(../images/lot-not-bought.png) no-repeat 50%;
}

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

.lot__left {
  width: 384px;
  margin-left: 32px;
  font-size: 18px;
  text-align: right;
}

.lot__left .red {
  font-weight: bold;
  color: #F33B3B;
}

.lot__closing {
  font-size: 18px;
}

.lot__container {
  display: flex;
  align-items: flex-start;
}

.lot__info {
  flex-grow: 10;
}

.lot__content {
  width: 384px;
  margin-left: 32px;
  flex-shrink: 0;
  max-width: 100%;
}

.lot__gallery {
  display: flex;
  margin-bottom: 35px;
  position: relative;
}

.lot__gallery .lots__number {
  display: none;
}

.lot__main {
  border: 1px solid #CAD3DB;
  border-radius: 8px;
  flex-grow: 10;
  height: 388px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lot__mini {
  display: flex;
  flex-direction: column;
  width: 188px;
  margin-left: 20px;
  flex-shrink: 0;
}

.lot__mini a {
  border: 1px solid #CAD3DB;
  border-radius: 8px;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lot__mini a:first-child {
  margin-bottom: 20px;
}

.lot__description {
  margin-bottom: 60px;
}

.lot__title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 32px;
}

.lot__subtitle {
  font-weight: 600;
  font-size: 18px;
}

.lot__text {
  color: rgba(27, 23, 37, 0.6);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1300px) {
  .lot__closing, .lot__left {
    font-size: 14px;
  }
  .lot .breadcrumbs {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .lot .breadcrumbs {
    display: none;
  }
  .lot__gallery {
    flex-direction: column;
  }
  .lot__mini {
    flex-direction: row;
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
  .lot__mini a {
    width: 48%;
  }
  .lot__mini a:first-child {
    margin-right: 4%;
  }
  .lot__left {
    flex-grow: 10;
  }
  .lot__label {
    width: 150px;
    height: 150px;
    background-size: cover !important;
    bottom: -10px;
    left: -40px;
  }
}

@media only screen and (max-width: 767px) {
  .lot {
    padding-top: 0;
  }
  .lot__header {
    display: block;
  }
  .lot__closing, .lot__left {
    height: 40px;
    width: calc(100% + 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #CAD3DB;
    padding: 0 15px;
    margin: 0 0 0 -15px;
    text-align: right;
  }
  .lot__closing b, .lot__left b {
    font-weight: 400;
  }
  .lot__container {
    flex-direction: column-reverse;
    padding-top: 462px;
    position: relative;
  }
  .lot__main {
    height: 250px;
  }
  .lot__gallery {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .lot__gallery .lots__number {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 127px;
    height: 40px;
  }
  .lot__content {
    margin-left: 0;
    margin-bottom: 30px;
  }
  .lot__text {
    font-size: 14px;
  }
}

.lots__item.lot__item {
  margin-right: 0;
}

.lots__item.lot__item .lots__autobid {
  flex-wrap: wrap;
}

.lots__item.lot__item .lots__autobid-label {
  margin-bottom: 13px;
}

.lots__item.lot__item .lots__autobid-field {
  width: 140px;
  margin-right: 10px;
}

.lots__item.lot__item .lots__autobid-btn {
  width: 186px;
}

.lots__item.lot__item .lots__price {
  height: 50px;
  border-radius: 8px;
  width: 140px;
  margin-right: 10px;
}

.lots__item.lot__item .lots__confirm {
  width: 186px;
  border-radius: 8px;
  height: 50px;
}

@media only screen and (max-width: 991px) {
  .lots__item.lot__item {
    width: 350px;
  }
  .lots__item.lot__item .lots__autobid-btn {
    width: 166px;
  }
}

@media only screen and (max-width: 767px) {
  .lots__item.lot__item {
    width: 100%;
    max-width: 350px;
  }
  .lots__item.lot__item .lots__img {
    display: none;
  }
  .lots__item.lot__item .lots__toolbar {
    margin-bottom: 15px;
    padding-top: 15px;
  }
  .lots__item.lot__item .lots__notes {
    margin-left: 15px;
  }
  .lots__item.lot__item .lots__number {
    display: none;
  }
}

/* Modal notes */
.modal {
  display: none;
}

.modal-notes {
  padding: 22px 40px 40px;
  max-width: 100%;
  width: 600px;
  border-radius: 8px;
}

.modal-notes .fancybox-button {
  color: red;
}

.modal-notes__title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 24px;
}

.modal-notes__field {
  width: 100%;
  height: 280px;
  padding: 18px 20px;
  font-size: 18px;
  font-family: inherit;
  border: 1px solid #CAD3DB;
  border-radius: 10px;
  margin-bottom: 26px;
}

.modal-notes__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-notes__cancel {
  display: flex;
  align-items: center;
}

.modal-notes__cancel span {
  color: #1B1725;
  opacity: 0.5;
}

.modal-notes__cancel img {
  margin-right: 20px;
}

.modal-notes__btn {
  width: 230px;
  height: 60px;
  text-transform: none;
  font-size: 16px;
}

.modal-notes__btn[disabled] {
  background: #CAD3DB;
  cursor: default;
}

.modal-notes__btn[disabled]:after {
  display: none;
}

@media only screen and (max-width: 767px) {
  .modal-notes {
    padding: 15px;
  }
  .modal-notes__cancel img {
    display: none;
  }
  .modal-notes__btn {
    width: 180px;
  }
}

.callback {
  overflow: hidden;
  margin-bottom: 120px;
  padding-top: 80px;
}

.callback__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.callback__content {
  max-width: 556px;
}

.callback__title {
  font-weight: 800;
  color: #242A7E;
  font-size: 24px;
  margin-bottom: 40px;
}

.callback__description {
  font-size: 18px;
}

.callback__form {
  width: 416px;
  max-width: 100%;
  flex-shrink: 0;
  background: #FFFFFF;
  box-shadow: 0px 4px 80px rgba(142, 146, 152, 0.25);
  border-radius: 8px;
  padding: 40px 32px;
}

.callback__form.with-img {
  position: relative;
}

.callback__form.with-img:after {
  content: '';
  display: block;
  position: absolute;
  width: 285px;
  height: 348px;
  background: url(../images/questions.png) no-repeat 50%;
  right: -230px;
  top: 20px;
  z-index: -1;
}

.callback__field {
  margin-bottom: 20px;
}

.callback__field input {
  height: 70px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CAD3DB;
  border-radius: 6px;
  padding: 0 24px;
  font-family: inherit;
  font-size: 18px;
}

.callback__btn {
  margin-top: 60px;
  width: 100%;
  text-transform: none;
  font-size: 18px;
}

@media only screen and (max-width: 1300px) {
  .callback {
    overflow: visible;
    padding-top: 0;
  }
  .callback__form.with-img:after {
    display: none;
  }
  .callback__content {
    max-width: 526px;
  }
}

@media only screen and (max-width: 991px) {
  .callback__inner {
    flex-direction: column;
  }
  .callback__form {
    margin-left: 0;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .callback {
    margin-bottom: 30px;
  }
  .callback__title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .callback__form {
    padding: 30px 15px;
  }
  .callback__field input {
    height: 50px;
  }
}

/* Sign in */
.sign-in {
  overflow: hidden;
}

.sign-in__inner {
  display: flex;
  justify-content: space-between;
}

.sign-in__form {
  width: 520px;
  padding: 79px 0 50px;
  max-width: 100%;
}

.sign-in__sidebar {
  width: 530px;
  padding: 79px 0 50px 108px;
  box-shadow: 0px 4px 80px rgba(153, 156, 165, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
}

.sign-in__sidebar:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 1000px;
  background: #ffffff;
}

.sign-in__sidebar-title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 58px;
  color: #242A7E;
}

.sign-in__advantages {
  flex-grow: 10;
}

.sign-in__advantage {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.sign-in__advantage:last-child {
  margin-bottom: 0;
}

.sign-in__icon {
  width: 60px;
  margin-right: 50px;
}

.sign-in__text {
  font-size: 18px;
}

.sign-in__title {
  font-weight: bold;
  font-size: 32px;
  color: #242A7E;
  margin-bottom: 47px;
}

.sign-in__social {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
}

.sign-in__social li {
  margin-right: 13px;
}

.sign-in__social li:last-child {
  margin-right: 0;
}

.sign-in__forget {
  text-align: right;
}

.sign-in__forget a {
  font-size: 18px;
  color: #242A7E;
  text-decoration: underline;
}

.sign-in__forget a:hover {
  text-decoration: none;
}

.sign-in__btn {
  margin-top: 99px;
  text-transform: none;
  font-size: 18px;
  width: 280px;
  font-weight: 600;
}

.sign-in__to-register {
  width: 280px;
  text-transform: none;
  justify-content: flex-start;
  padding-left: 40px;
}

.sign-in__to-register .arrow {
  position: absolute;
  right: 25px;
  top: 31px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  transform: rotate(45deg);
  border-left: none;
  border-bottom: none;
}

.sign-in__to-register-mob {
  display: none;
}

@media only screen and (max-width: 1300px) {
  .sign-in__sidebar {
    width: 400px;
    padding-left: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .sign-in__sidebar {
    display: none;
  }
  .sign-in__to-register-mob {
    display: flex;
    background: #FFB931;
    margin-top: 50px;
    width: 280px;
    text-transform: none;
  }
  .sign-in__btn {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .sign-in__form {
    padding: 30px 0;
  }
  .sign-in__social {
    margin-bottom: 20px;
  }
  .sign-in__title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .sign-in .btn {
    width: 100%;
    border-radius: 4px;
  }
}

.fieldset {
  position: relative;
}

.fieldset__helpers {
  position: absolute;
  top: 115px;
  left: 100%;
  margin-left: 70px;
  width: 520px;
  font-size: 14px;
  opacity: 0.4;
}

.fieldset__helpers div:last-child {
  margin-top: 140px;
}

.fieldset__field {
  margin-bottom: 12px;
  display: block;
}

.fieldset__field.with-icon input {
  padding-left: 85px;
}

.fieldset__field.fio {
  flex-grow: 10;
}

.fieldset__field.tel {
  width: 488px;
  max-width: 100%;
}

.fieldset__field.birthday {
  flex-grow: 10;
}

.fieldset__field.nick {
  width: 560px;
  max-width: 100%;
}

.fieldset__field.half-width {
  width: 50%;
}

.fieldset__label {
  font-weight: 600;
  font-size: 12px;
  opacity: 0.4;
  display: block;
  margin-bottom: 4px;
}

.fieldset__description {
  margin-top: 7px;
  color: #1B1725;
  opacity: 0.4;
  font-size: 16px;
  display: block;
}

.fieldset__input {
  position: relative;
}

.fieldset__input input {
  width: 100%;
  height: 60px;
  border: 1px solid #CAD3DB;
  border-radius: 4px;
  padding-left: 15px;
  background: #ffffff;
  font-size: 18px;
  font-family: inherit;
  transition: 300ms;
}

.fieldset__input input.datepicker-here {
  background: #fff url(../images/calendar.svg) no-repeat 95% 50%;
}

.fieldset__input input:focus {
  border-color: #242A7E;
}

.fieldset__input select {
  width: 100%;
  height: 60px;
  border: 1px solid #CAD3DB;
  border-radius: 4px;
  padding-left: 15px;
  background: #ffffff url(../images/select-arrow.svg) no-repeat 95% 50%;
  font-size: 18px;
  font-family: inherit;
  transition: 300ms;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.fieldset__input select:focus {
  border-color: #242A7E;
}

.fieldset__input select::-ms-expand {
  display: none;
}

.fieldset__tel {
  margin-top: 80px;
}

.fieldset__tel-another {
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  color: #1B1725;
  opacity: 0.4;
  font-size: 16px;
  text-decoration: underline;
}

.fieldset__tel-another:hover {
  text-decoration: none;
}

.fieldset__icon {
  position: absolute;
  height: 30px;
  width: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #CAD3DB;
}

.fieldset__icon span {
  font-weight: 600;
  font-size: 18px;
}

.fieldset__show {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fieldset__show img {
  display: none;
}

.fieldset__show img.show {
  display: block;
}

.fieldset__show[data-show=show] img.show {
  display: none;
}

.fieldset__show[data-show=show] img.hide {
  display: block;
}

.fieldset__sex-container {
  display: inline-flex;
  align-items: flex-start;
  border: 1px solid #CAD3DB;
  border-radius: 4px;
  overflow: hidden;
  width: auto;
}

.fieldset__sex-item {
  width: 104px;
  font-weight: 600;
  font-size: 14px;
  color: #A4A2A8;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fieldset__sex-item input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

.fieldset__sex-item[data-checked=checked] {
  background: linear-gradient(106.08deg, #242A7E -15.4%, #1E88E5 204.87%);
  color: #ffffff;
}

@media only screen and (max-width: 1300px) {
  .fieldset__helpers {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .fieldset__input input,
  .fieldset__input select {
    height: 50px;
  }
  .fieldset__field.tel {
    padding-bottom: 30px;
  }
  .fieldset__tel-another {
    top: 100%;
    margin-top: 15px;
    transform: none;
    left: 0;
    font-size: 16px;
    right: auto;
  }
}

/* Sign up */
.sign-up {
  padding: 75px 0;
}

.sign-up__form {
  width: 520px;
  max-width: 100%;
}

.sign-up .checkbox {
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  .sign-up {
    padding: 30px 0;
  }
  .sign-up .checkbox {
    margin-bottom: 40px;
  }
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox__text {
  font-weight: 400;
  font-size: 16px;
}

.checkbox__text a {
  color: #242A7E;
  text-decoration: underline;
}

.checkbox__text a:hover {
  text-decoration: none;
}

.checkbox__inner {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(36, 42, 126, 0.5);
  position: relative;
  flex-shrink: 0;
  margin-right: 10px;
}

.checkbox__inner input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  cursor: pointer;
}

.checkbox__inner input:checked + span {
  opacity: 1;
  visibility: visible;
}

.checkbox__inner span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  background: url(../images/tick-icon.svg) no-repeat 50%;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}

/* Success */
.success {
  padding: 100px 0 50px;
  text-align: center;
}

.success__title {
  font-weight: bold;
  font-size: 48px;
  margin-bottom: 64px;
  color: #242A7E;
}

.success__text {
  max-width: 635px;
  margin: 0 auto 50px;
  color: rgba(27, 23, 37, 0.4);
  font-size: 24px;
}

.success__text span {
  font-weight: 600;
  color: #242A7E;
}

.success__link {
  display: inline-flex;
  margin-top: 140px;
  font-weight: 600;
  font-size: 18px;
  color: #242A7E;
  border-bottom: 1px solid #FFB931;
}

.success__link:hover {
  border-color: #242A7E;
}

@media only screen and (max-width: 767px) {
  .success {
    padding: 30px 0;
    text-align: left;
  }
  .success__title {
    font-size: 26px;
    margin-bottom: 36px;
  }
  .success__text {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .success__link {
    margin-top: 94px;
    font-size: 16px;
  }
}

/* Lk page */
@media only screen and (max-width: 991px) {
  .lk-page .header,
  .lk-page .nav,
  .lk-page .mobile-menu {
    display: none;
  }
}

/* Lk */
.lk {
  overflow: hidden;
}

.lk__inner {
  display: flex;
  align-items: flex-start;
}

.lk__mobile-info {
  display: none;
}

.lk__menu-label {
  display: none;
}

.lk__content {
  flex-grow: 10;
  margin-left: 32px;
  padding: 60px 0;
  min-width: 0;
}

.lk__title {
  font-weight: bold;
  font-size: 32px;
}

.lk__header {
  margin-bottom: 35px;
  position: relative;
}

.lk__header .sort__item {
  position: absolute;
  right: 0;
  top: 14px;
}

.lk__profile-status {
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
  color: #27AE60;
}

.lk__sidebar {
  width: 384px;
  flex-shrink: 0;
  position: relative;
  padding: 18px 24px 70px 0;
  color: #ffffff;
}

.lk__sidebar:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: -350px;
  bottom: 0;
  background: url(../images/lk-sidebar-bg.jpg) 50%/cover;
}

.lk__sidebar-inner {
  position: relative;
}

.lk__status {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 33px;
  opacity: 0.8;
}

.lk__info {
  background: linear-gradient(95.81deg, #005FF9 -19.07%, #242A7E 134.77%);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 34px;
}

.lk__name {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 12px;
}

.lk__age {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.8;
}

.lk__age span {
  margin-right: 20px;
}

.lk__age span:last-child {
  margin-right: 0;
}

.lk__menu--bottom {
  margin-top: 60px;
}

.lk__menu li {
  margin-bottom: 22px;
  position: relative;
}

.lk__menu li a {
  display: flex;
  align-items: center;
}

.lk__menu li a.active img,
.lk__menu li a.active span, .lk__menu li a:hover img,
.lk__menu li a:hover span {
  opacity: 1;
}

.lk__menu li a img {
  width: 26px;
  flex-shrink: 0;
  margin-right: 23px;
  opacity: 0.5;
  transition: 300ms;
}

.lk__menu li a span {
  opacity: 0.9;
  font-size: 18px;
}

.lk__menu li .number {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 24px;
  opacity: 1;
}

.lk__back {
  display: none;
}

@media only screen and (max-width: 991px) {
  .lk__inner {
    display: block;
  }
  .lk__sidebar {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 100;
    width: 100vw;
    padding-left: 15px;
    padding-top: 0;
    transform: translateY(68px);
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
  }
  .lk__sidebar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .lk__content {
    margin-left: 0;
    padding: 30px 0;
  }
  .lk__header {
    display: none;
  }
  .lk__menu-label {
    height: 68px;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin-left: -15px;
    width: calc(100% + 40px);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .lk__status {
    display: none;
  }
  .lk__back {
    display: block;
    text-align: center;
    margin-top: 65px;
    font-size: 18px;
    color: #ffffff;
  }
  .lk__back a {
    text-decoration: underline;
  }
  .lk__back a:hover {
    text-decoration: none;
  }
}

/* Notifications */
.notifications {
  margin-bottom: 60px;
}

.notifications__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.notifications__title {
  font-weight: bold;
  font-size: 24px;
  color: #242A7E;
}

.notifications__date {
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 5px;
}

.notifications__all {
  color: #1B1725;
  opacity: 0.4;
  font-size: 18px;
}

.notifications__all:hover {
  opacity: 1;
}

.notifications__item {
  border: 1px solid #CAD3DB;
  box-sizing: border-box;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 15px 32px;
  transition: 300ms;
  position: relative;
  margin-bottom: 10px;
}

.notifications__item:hover {
  box-shadow: -4px 0px 20px rgba(204, 206, 208, 0.3);
}

.notifications__item:hover .notifications__close {
  opacity: 1;
  visibility: visible;
}

.notifications__text {
  font-size: 18px;
}

.notifications__link {
  font-weight: bold;
  font-size: 18px;
  color: #242A7E;
  margin-left: 10px;
  flex-shrink: 0;
}

.notifications__close {
  width: 17px;
  height: 17px;
  background: url(../images/close-red.svg) 50%/cover;
  position: absolute;
  left: 100%;
  margin-left: 17px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}

@media only screen and (max-width: 767px) {
  .notifications {
    padding-bottom: 50px;
    position: relative;
  }
  .notifications__all {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
  }
  .notifications__item {
    padding: 15px;
    flex-direction: column;
  }
  .notifications__text {
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
    padding-right: 30px;
  }
  .notifications__close {
    right: 15px;
    top: 15px;
    opacity: 1;
    visibility: visible;
    left: auto;
    transform: none;
    width: 15px;
    height: 15px;
  }
}

/* Favorite lots */
.favorite-lots__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.favorite-lots__title {
  font-weight: bold;
  font-size: 24px;
  color: #242A7E;
}

.favorite-lots__all {
  color: #1B1725;
  opacity: 0.4;
  font-size: 18px;
}

.favorite-lots__all:hover {
  opacity: 1;
}

.favorite-lots .lots__carousel {
  margin-right: -120px;
  padding-bottom: 45px;
}

.favorite-lots .lots__carousel .swiper-scrollbar {
  width: auto;
  right: 150px;
}

.favorite-lots .lots__item {
  width: 280px;
  box-shadow: none !important;
}

@media only screen and (max-width: 767px) {
  .favorite-lots {
    padding-bottom: 25px;
    position: relative;
    margin-bottom: 50px;
  }
  .favorite-lots__all {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
  }
}

/* Lk mobile */
.lk-mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .lk-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url(../images/payment-bg.jpg) 50%/cover;
    height: 60px;
    padding: 0 15px;
  }
  .lk-mobile__title {
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
  }
  .lk-mobile .burger {
    display: block;
  }
  .lk-mobile .burger span,
  .lk-mobile .burger span:before,
  .lk-mobile .burger span:after {
    background: #ffffff;
  }
}

/* Lk-favorite */
.bordered-select {
  width: 200px;
  height: 50px;
  color: #828A93;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #CAD3DB;
  border-radius: 4px;
  background: #ffffff url(../images/bordered-select-arrow.svg) no-repeat 90% 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  padding: 0 14px;
}

.bordered-select::-ms-expand {
  display: none;
}

.lk-favorite__filter {
  margin-bottom: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lk-favorite__filter-item {
  display: flex;
  align-items: center;
}

.lk-favorite__auction {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 24px;
}

.lk-favorite__auction span {
  color: #DADADA;
}

.lk-favorite .lots__item {
  margin-bottom: 20px;
}

.lk-favorite .sort {
  display: flex;
}

.lk-favorite .sort__item .bordered-select {
  width: 150px;
}

@media only screen and (max-width: 1300px) {
  .lk-favorite .catalog--list .lots__list-container {
    display: block;
  }
  .lk-favorite .lots__autobid {
    display: block;
  }
  .lk-favorite .lots__autobid-label {
    margin-bottom: 15px;
  }
  .lk-favorite .sort {
    flex-wrap: wrap;
  }
  .lk-favorite .sort__item {
    margin: 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  .lk-favorite .bordered-select {
    width: 120px;
  }
}

/* Profile */
.profile__title {
  font-weight: 600;
  font-size: 18px;
  color: #D1D1D3;
  position: relative;
  margin-bottom: 35px;
}

.profile__title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  height: 1px;
  width: 100%;
  background: #CAD3DB;
}

.profile__title span {
  background: #ffffff;
  padding-right: 10px;
  position: relative;
  z-index: 3;
}

.profile__item {
  margin-bottom: 80px;
}

.profile__container {
  margin-bottom: 50px;
}

.profile__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.profile__row .fieldset__field {
  margin-right: 32px;
}

.profile__row .fieldset__field:last-child {
  margin-right: 0;
}

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

.profile__confirm button {
  width: 180px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  border-radius: 6px;
  border: 1px solid #242A7E;
  background: #ffffff;
  cursor: pointer;
  transition: 300ms;
  color: #242A7E;
  font-size: 16px;
  font-family: inherit;
}

.profile__confirm button:hover {
  background: #242A7E;
  color: #ffffff;
}

.profile__notification {
  font-size: 16px;
}

.profile__password-info {
  width: 50%;
  margin-right: 32px;
  color: #1B1725;
  opacity: 0.6;
}

.profile__password-info div {
  margin-bottom: 30px;
}

.profile__password-info div span {
  font-weight: 600;
}

.profile__password-info div:last-child {
  margin-bottom: 0;
}

.profile__mob-nav {
  display: none;
}

@media only screen and (max-width: 1300px) {
  .profile__row {
    display: block;
  }
  .profile__row .fieldset__field {
    margin-right: 0;
  }
  .profile__row .fieldset__field.tel {
    width: 100%;
  }
  .profile__row .fieldset__field.fio {
    width: auto;
  }
  .profile__row .fieldset__field.half-width {
    width: 100%;
  }
  .profile__password-info {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .profile__mob-nav {
    display: flex;
    align-items: center;
    background: #ffffff;
    margin-left: -15px;
    height: 60px;
    margin-top: -30px;
    width: calc(100% + 30px);
    box-shadow: 0px 4px 30px rgba(85, 86, 88, 0.15);
    margin-bottom: 36px;
    padding: 0 15px;
  }
  .profile__mob-nav li {
    flex-grow: 10;
    text-align: center;
    border-right: 1px solid #CAD3DB;
    line-height: 30px;
    font-weight: 600;
    font-size: 12px;
    opacity: 0.4;
    transition: 300ms;
  }
  .profile__mob-nav li.active {
    color: #242A7E;
    opacity: 1;
  }
  .profile__mob-nav li:last-child {
    border-right: none;
  }
  .profile__item {
    display: none;
  }
  .profile__item.active {
    display: block;
  }
  .profile__title {
    display: none;
  }
  .profile__confirm {
    flex-direction: column;
  }
  .profile__confirm button {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.red {
  color: #F33B3B;
}

.green {
  color: #27AE60;
}

.fiol {
  color: #9B51E0;
}

.gray {
  color: rgba(27, 23, 37, 0.4);
}

/* Delivery */
.delivery {
  margin-bottom: 50px;
}

.delivery__item {
  display: none;
}

.delivery__item.active {
  display: block;
}

.delivery__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
  grid-gap: 12px;
  margin-bottom: 40px;
}

.delivery__nav label {
  display: block;
  height: 123px;
  background: #FFFFFF;
  border: 1px solid #CAD3DB;
  border-radius: 4px;
  padding: 15px 10px;
  position: relative;
  cursor: pointer;
  margin-bottom: 12px;
}

.delivery__nav label:before {
  content: '';
  display: block;
  position: absolute;
  right: -1px;
  top: -1px;
  bottom: -1px;
  left: -1px;
  border: 3px solid #FFB931;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
  border-radius: 4px;
}

.delivery__nav label:after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 10px;
  top: 10px;
  left: 10px;
  background: url(../images/tick-orange.svg) no-repeat 50%;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}

.delivery__nav label.active:before, .delivery__nav label.active:after {
  opacity: 1;
  visibility: visible;
}

.delivery__nav label input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.delivery__img {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}

.delivery__text {
  text-align: center;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #242A7E;
  font-size: 12px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .delivery__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pickup */
.pickup__title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 25px;
}

.pickup__title span {
  font-weight: 600;
  font-size: 24px;
  color: #242A7E;
}

.pickup__metro {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pickup__metro ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}

.pickup__metro ul li {
  margin-right: 5px;
}

.pickup__map {
  height: 280px;
}

.courier__title {
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 24px;
}

.courier__row {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
}

.courier__row .fieldset__field {
  margin-right: 32px;
  width: 130px;
  max-width: 100%;
}

.courier__row .fieldset__field:last-child {
  margin-right: 0;
}

.courier__row .fieldset__field:first-child {
  width: 488px;
  max-width: 100%;
}

.courier__to-map {
  display: flex;
  justify-content: center;
  flex-grow: 10;
}

@media only screen and (max-width: 1300px) {
  .courier__row {
    display: block;
  }
  .courier__row .fieldset__field {
    width: 100%;
    margin-right: 0;
  }
  .courier__row .fieldset__field:first-child {
    width: 100%;
  }
  .courier__to-map {
    justify-content: flex-start;
  }
}

.to-map {
  display: flex;
  align-items: center;
}

.to-map:hover span {
  border-color: transparent;
}

.to-map img {
  flex-shrink: 0;
  margin-right: 25px;
}

.to-map span {
  transition: 300ms;
  color: #1B1725;
  opacity: 0.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: 300ms;
}

/* Boxberry */
.boxberry__title {
  font-weight: 600;
  font-size: 24px;
  opacity: 0.6;
  margin-bottom: 32px;
}

.boxberry__map {
  position: relative;
  height: 530px;
  margin-bottom: 34px;
}

.boxberry__search {
  position: absolute;
  left: 24px;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: flex-start;
}

.boxberry__search input {
  flex-grow: 10;
  background: #FFFFFF;
  border: 1px solid #CAD3DB;
  box-sizing: border-box;
  border-radius: 4px 0 0 4px;
  height: 60px;
  padding: 0 15px;
  font-size: 18px;
  font-family: inherit;
}

.boxberry__search button {
  background: none;
  border: none;
  cursor: pointer;
  opacity: 1;
}

.boxberry__label {
  font-weight: 600;
  font-size: 18px;
  color: rgba(27, 23, 37, 0.4);
  margin-bottom: 4px;
  min-height: 24px;
}

.boxberry__text {
  font-weight: 600;
  font-size: 24px;
}

.boxberry__text span {
  color: #FFB931;
}

.boxberry__items {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(214px, 1fr));
  grid-gap: 50px;
}

@media only screen and (max-width: 1300px) {
  .boxberry__label {
    font-size: 14px;
  }
  .boxberry__text {
    font-size: 16px;
  }
  .boxberry__items {
    grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .boxberry__items {
    display: block;
  }
  .boxberry__item {
    margin-top: 20px;
  }
  .boxberry__item:last-child {
    margin-top: 0;
  }
  .boxberry__label {
    min-height: 0;
  }
}

/* Post */
.post__title {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 18px;
}

.post__title span {
  color: #B6B5B9;
}

.post__row {
  display: flex;
  margin-bottom: 12px;
}

.post__row .fieldset__field {
  flex-grow: 10;
  margin-right: 32px;
}

.post__row .fieldset__field:last-child {
  margin-right: 0;
}

.post__row .fieldset__field.half-width {
  width: 50%;
}

.post__row .fieldset__field.small {
  width: 130px;
}

.post__to-map {
  margin-top: 30px;
}

@media only screen and (max-width: 1300px) {
  .post__row {
    display: block;
  }
  .post__row .fieldset__field {
    margin-right: 0;
    width: 100%;
  }
  .post__row .fieldset__field.half-width {
    width: 100%;
  }
  .post__row .fieldset__field.small {
    width: 100%;
  }
}

/* Switch */
.switch {
  width: 43px;
  height: 24px;
  position: relative;
  display: block;
  cursor: pointer;
}

.switch input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.switch input:checked + span {
  background: #242A7E;
}

.switch input:checked + span:before {
  left: 20px;
}

.switch span {
  background: #CAD3DB;
  border-radius: 17px;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  transition: 300ms;
}

.switch span:before {
  content: '';
  display: block;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  width: 30px;
  height: 30px;
  left: -4px;
  top: -4px;
  transition: 300ms;
}

/* Win lots */
.win-lots__filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.win-lots__by-number {
  display: flex;
  align-items: center;
}

.win-lots__by-number-label {
  margin: 0 20px;
  font-weight: 600;
  font-size: 18px;
}

.win-lots__number {
  position: relative;
}

.win-lots__number input {
  width: 105px;
  height: 36px;
  background: #FFFFFF;
  border: 1px solid #CAD3DB;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  color: #242A7E;
  text-align: right;
  padding: 0 15px;
}

.win-lots__number span {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 18px;
  color: #CAD3DB;
}

.win-lots__sort {
  display: flex;
  align-items: center;
}

.win-lots__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.win-lots__head {
  display: flex;
  align-items: center;
}

.win-lots__title {
  font-weight: bold;
  font-size: 24px;
}

.win-lots__link .btn {
  width: 208px;
  height: 50px;
  text-transform: none;
  font-weight: 600;
  font-size: 16px;
}

.win-lots__link .info {
  display: flex;
  align-items: center;
  color: #242A7E;
  font-weight: 600;
  font-size: 16px;
}

.win-lots__link .info img {
  margin-left: 5px;
}

.win-lots__body .lots__item {
  margin-bottom: 20px;
}

.win-lots__ordered {
  display: flex;
  align-items: center;
  margin-left: 30px;
  font-weight: 600;
  font-size: 16px;
  color: #27AE60;
}

.win-lots__ordered img {
  margin-right: 10px;
}

.win-lots__zero {
  padding: 100px 0;
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  opacity: 0.2;
}

@media only screen and (max-width: 1300px) {
  .win-lots__filter {
    display: block;
  }
  .win-lots__by-number {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .win-lots__by-number-label {
    font-size: 14px;
  }
  .win-lots__header {
    display: block;
  }
  .win-lots__head {
    margin-bottom: 20px;
  }
  .win-lots__title {
    font-size: 24px;
  }
  .win-lots__ordered {
    font-size: 14px;
  }
  .win-lots__zero {
    font-size: 24px;
  }
}

/* Modal info */
.modal-info {
  padding: 0;
  border-radius: 10px;
  width: 800px;
  max-width: 100%;
  font-weight: 600;
  font-size: 24px;
  color: #828A93;
}

.modal-info .fancybox-close-small {
  display: none;
}

.modal-info span {
  color: #000000;
  font-weight: bold;
}

.modal-info__header {
  padding: 50px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-info__title {
  font-weight: bold;
  font-size: 32px;
  color: #242A7E;
}

.modal-info__container {
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
}

.modal-info__container li {
  margin-bottom: 18px;
}

.modal-info__container li:nth-child(2n -1) {
  width: 260px;
  margin-right: 80px;
}

.modal-info__post {
  padding: 50px;
}

.modal-info__post div {
  margin-bottom: 18px;
}

.modal-info__post div:last-child {
  margin-bottom: 0;
}

.modal-info__table {
  border-top: 1px solid #CAD3DB;
  padding: 50px;
}

.modal-info__table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

.modal-info__table table td {
  width: 40%;
  padding-bottom: 24px;
}

.modal-info__table table td:nth-child(2n) {
  color: #000000;
  width: 60%;
}

@media only screen and (max-width: 991px) {
  .modal-info {
    font-size: 16px;
  }
  .modal-info__header {
    padding: 15px;
  }
  .modal-info__container {
    padding: 15px;
  }
  .modal-info__post {
    padding: 15px;
  }
  .modal-info__title {
    font-size: 24px;
  }
  .modal-info__table {
    padding: 15px;
  }
  .modal-info__table table {
    font-size: 14px;
  }
  .modal-info__table table td {
    padding: 10px;
  }
}

/* Activity */
.activity__tab {
  display: none;
}

.activity__tab.active {
  display: block;
}

.activity__nav {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #CAD3DB;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}

.activity__nav li {
  width: 50%;
  font-weight: bold;
  font-size: 18px;
  color: #97959B;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity__nav li.active {
  background: linear-gradient(106.08deg, #242A7E -15.4%, #1E88E5 204.87%);
  color: #ffffff;
}

.activity__date {
  font-weight: 600;
  font-size: 18px;
}

.activity__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.activity__datepicker input {
  background: #EFF2F5 url(../images/calendar.svg) no-repeat 14px 50%;
  border-radius: 4px;
  width: 176px;
  height: 52px;
  text-align: right;
  padding: 0 14px;
  border: none;
  font-weight: 600;
  font-size: 18px;
  color: #242A7E;
  font-family: inherit;
}

@media only screen and (max-width: 767px) {
  .activity__nav {
    margin-top: -31px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  .activity__nav li {
    height: 50px;
    font-size: 16px;
  }
}

/* Views */
.views__item {
  border: 1px solid #CAD3DB;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 16px;
}

.views__item.yours .lots__confirm {
  background: #27AE60;
  display: flex;
  align-items: center;
  justify-content: center;
}

.views__item.yours .lots__confirm img {
  margin-right: 5px;
}

.views__item.yours .lots__confirm:after {
  display: none;
}

.views__header {
  display: flex;
  padding: 12px 20px;
  border-bottom: 1px solid #CAD3DB;
  margin-bottom: 17px;
}

.views__number {
  color: #FFB931;
  font-size: 16px;
  font-weight: bold;
  width: 162px;
  border-right: 1px solid #CAD3DB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.views__date {
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #1B1725;
  opacity: 0.5;
  text-align: right;
  flex-shrink: 0;
}

.views__main-info {
  display: flex;
  align-items: center;
  border-right: 1px solid #CAD3DB;
  flex-grow: 10;
  padding-right: 33px;
}

.views__img {
  max-width: 65px;
  max-height: 65px;
  flex-shrink: 0;
  margin-right: 20px;
}

.views__name {
  font-size: 18px;
}

.views__author {
  font-weight: 600;
  font-size: 18px;
  color: #242A7E;
}

@media only screen and (max-width: 1300px) {
  .views__number {
    width: 82px;
  }
  .views__data {
    width: 138px;
  }
}

@media only screen and (max-width: 767px) {
  .views__header {
    flex-wrap: wrap;
  }
  .views__main-info {
    border: none;
    padding-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .views__name {
    font-size: 16px;
  }
  .views__number {
    width: 50%;
  }
  .views__date {
    width: 50%;
    justify-content: center;
  }
  .views__author {
    padding-left: 15px;
    padding-top: 1px;
  }
}

/* Search history */
.search-history {
  margin-bottom: 60px;
}

.search-history__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 28px;
}

.search-history__item:nth-child(2n) {
  background: #F2F5F7;
  border-radius: 6px;
}

.search-history__text {
  font-size: 18px;
  padding-right: 5px;
}

.search-history__date {
  min-height: 40px;
  border-left: 1px solid #CAD3DB;
  width: 180px;
  padding-left: 28px;
  flex-shrink: 0;
  font-size: 16px;
  color: #7A7981;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .search-history__item {
    padding: 0 15px;
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  .search-history__text {
    font-size: 14px;
  }
  .search-history__date {
    font-size: 12px;
    width: 132px;
  }
}

/* Chat */
.chat__elem {
  border: 1px solid #CAD3DB;
  border-radius: 8px;
  padding: 30px 38px;
  margin-bottom: 20px;
}

.chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.chat__date {
  font-size: 12px;
  opacity: 0.4;
}

.chat__status {
  font-weight: bold;
  font-size: 14px;
  color: #FFB931;
  text-transform: uppercase;
}

.chat__name {
  font-weight: 600;
  font-size: 24px;
  color: #242A7E;
  margin-bottom: 2px;
}

.chat__author {
  font-size: 16px;
  opacity: 0.4;
  margin-bottom: 33px;
}

.chat__text {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

.chat__back {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.chat__back:hover span {
  opacity: 1;
}

.chat__back img {
  flex-shrink: 0;
  margin-right: 14px;
}

.chat__back span {
  font-weight: 600;
  font-size: 18px;
  opacity: 0.4;
  transition: 300ms;
}

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

.chat__remove:hover span {
  opacity: 1;
}

.chat__remove img {
  flex-shrink: 0;
  margin-right: 14px;
}

.chat__remove span {
  font-size: 14px;
  opacity: 0.5;
  transition: 300ms;
}

.chat__toggle {
  padding: 32px 0 18px;
  position: relative;
}

.chat__toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: -32px;
  right: -350px;
  background: #CAD3DB;
  top: 45px;
  height: 1px;
}

.chat__toggle-container {
  padding: 0 18px;
  background: #ffffff;
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: #828A93;
  cursor: pointer;
}

.chat__toggle-container .on {
  display: none;
}

.chat__toggle-container.active .on {
  display: block;
}

.chat__toggle-container.active .off {
  display: none;
}

.chat__toggle-container.active img {
  transform: rotate(180deg);
}

.chat__toggle img {
  flex-shrink: 0;
  margin-right: 8px;
  transition: 300ms;
}

.chat__items {
  display: grid;
  grid-template-columns: minmax(0, 100%);
}

.chat__item {
  width: 592px;
  max-width: 100%;
  margin-bottom: 24px;
  border: 1px solid #CAD3DB;
  border-radius: 6px;
  padding: 22px;
}

.chat__item.yours {
  justify-self: end;
  border-color: #242A7E;
}

.chat__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.4;
  margin-bottom: 6px;
}

.chat__form {
  display: flex;
  background: #F2F5F7;
  border-radius: 6px;
  overflow: hidden;
  height: 60px;
  margin-top: 70px;
}

.chat__form input {
  flex-grow: 10;
  padding: 0 32px;
  height: 60px;
  border: none;
  background: none;
  font-size: 14px;
  font-family: inherit;
}

.chat__form button {
  width: 208px;
  height: 60px;
  text-transform: none;
  font-size: 16px;
  font-weight: 400;
}

.chat__form button img {
  position: relative;
  margin-right: 14px;
  z-index: 3;
}

@media only screen and (max-width: 767px) {
  .chat__form {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .chat__form button {
    width: 60px;
    border-radius: 0;
  }
  .chat__form button img {
    margin-right: 0;
  }
  .chat__form button span {
    display: none;
  }
}

/* Subscribe */
.subscribe__item {
  padding-bottom: 48px;
  border-bottom: 1px solid #CAD3DB;
  padding-top: 50px;
}

.subscribe__item.active .subscribe__title {
  color: #242A7E;
}

.subscribe__item.all {
  border-top: 1px solid #CAD3DB;
  border-bottom: none;
}

.subscribe__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.subscribe__title {
  font-weight: bold;
  font-size: 14px;
  color: rgba(27, 23, 37, 0.5);
  transition: 300ms;
}

.subscribe__text {
  font-weight: 400;
  font-size: 12px;
  color: rgba(27, 23, 37, 0.6);
}

.subscribe__current {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 12px;
  margin-top: 28px;
}

.subscribe__current-text {
  flex-grow: 10;
}

.subscribe__current-remove {
  flex-shrink: 0;
  margin-left: 10px;
  width: 10px;
  height: 10px;
  background: url(../images/close-red.svg) 50%/cover;
  cursor: pointer;
}

.subscribe__current li {
  background: #FFFFFF;
  border: 1px solid rgba(202, 211, 219, 0.4);
  box-shadow: 0px 4px 30px rgba(202, 203, 214, 0.4);
  border-radius: 2px;
  padding: 6px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.subscribe__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 32px;
}

.subscribe__items .subscribe__item:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 767px) {
  .subscribe__item {
    padding-top: 0;
    padding-bottom: 60px;
    border-bottom: none;
  }
  .subscribe__item.all {
    border-top: none;
  }
  .subscribe__items {
    display: block;
  }
  .subscribe__current {
    display: block;
  }
  .subscribe__current li {
    margin-bottom: 16px;
  }
}

/* Checkout */
.checkout {
  padding: 0 0 100px;
  position: relative;
  overflow: hidden;
}

.checkout__inner {
  display: grid;
  grid-template-columns: 1fr 384px;
  grid-gap: 136px;
}

.checkout__content {
  padding-top: 50px;
}

.checkout__data .fieldset__field {
  width: 100%;
}

.checkout__title {
  font-weight: 600;
  font-size: 18px;
  color: #CAD3DB;
  position: relative;
  margin-bottom: 35px;
}

.checkout__title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  height: 1px;
  width: 100%;
  background: #CAD3DB;
}

.checkout__title span {
  background: #ffffff;
  padding-right: 10px;
  position: relative;
  z-index: 3;
}

.checkout__item {
  margin-bottom: 90px;
}

.checkout__item:last-child {
  margin-bottom: 0;
}

.checkout .delivery__nav {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 22px;
}

.checkout .courier__row .fieldset__field:first-child {
  width: 376px;
}

.checkout__comment {
  font-weight: bold;
  font-size: 18px;
  color: #828A93;
  margin-bottom: 12px;
}

.checkout__textarea {
  height: 200px;
  width: 100%;
  resize: none;
  padding: 14px 20px;
  background: #FFFFFF;
  border: 1px solid #CAD3DB;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
}

@media only screen and (max-width: 1300px) {
  .checkout__inner {
    grid-gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .checkout .courier__row .fieldset__field:first-child {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .checkout__inner {
    display: block;
  }
}

/* Pay */
.pay__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  grid-gap: 13px;
  margin-bottom: 33px;
}

.pay__item {
  border: 1px solid #CAD3DB;
  border-radius: 4px;
  height: 128px;
  position: relative;
  cursor: pointer;
  padding: 15px 5px;
}

.pay__item.active:before, .pay__item.active:after {
  opacity: 1;
  visibility: visible;
}

.pay__item:before {
  content: '';
  display: block;
  position: absolute;
  right: -1px;
  top: -1px;
  bottom: -1px;
  left: -1px;
  border: 3px solid #FFB931;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
  border-radius: 4px;
}

.pay__item:after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 10px;
  top: 10px;
  left: 10px;
  background: url(../images/tick-orange.svg) no-repeat 50%;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}

.pay__item[data-disable] .pay__img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.pay__item[data-disable] .pay__text {
  color: #1B1725;
  opacity: 0.6;
}

.pay__img {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
}

.pay__text {
  font-size: 14px;
  color: #242A7E;
  text-align: center;
}

.pay__tab {
  color: #73717A;
  font-size: 18px;
}

@media only screen and (max-width: 1300px) {
  .pay__item {
    height: auto;
  }
}

@media only screen and (max-width: 991px) {
  .pay__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Order */
.order {
  background: url(../images/order-bg.jpg) 50%/cover;
  padding: 40px 32px;
  color: #ffffff;
}

.order__title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 14px;
}

.order__number {
  font-weight: 600;
  font-size: 18px;
  color: #C3D2EA;
  margin-bottom: 34px;
}

.order__number span {
  color: #ffffff;
}

.order__show {
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  text-decoration: underline;
  margin-bottom: 34px;
}

.order__show:hover {
  opacity: 1;
  text-decoration: none;
}

.order__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 0;
  border-bottom: 1px solid #919EC6;
  position: relative;
}

.order__item:first-child {
  border-top: 1px solid #919EC6;
}

.order__value {
  font-weight: bold;
  font-size: 24px;
}

.order__value.total {
  font-size: 40px;
  color: #FFB931;
}

.order__label {
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 12px;
  opacity: 0.8;
}

.order__items {
  margin-bottom: 58px;
}

.order__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order__cancel {
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  opacity: 0.6;
  margin-bottom: 30px;
}

.order__cancel:hover {
  opacity: 1;
}

.order__confirm {
  width: 100%;
  height: 70px;
  background: #ffffff;
  font-weight: 600;
  font-size: 16px;
  color: #242A7E;
  border: none;
  cursor: pointer;
  transition: 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.order__confirm:hover {
  background: #242A7E;
  color: #ffffff;
}

.order__mob {
  display: none;
}

@media only screen and (max-width: 767px) {
  .order {
    margin-top: 50px;
  }
}
