@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
menu,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */

*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


:root {
  --accent: #12A96A;
}

::-webkit-input-placeholder {
  color: #8E9394;
  font-size: 14px;
}

::-moz-placeholder {
  color: #8E9394;
  font-size: 14px;
}

:-ms-input-placeholder {
  color: #8E9394;
  font-size: 14px;
}

::-ms-input-placeholder {
  color: #8E9394;
  font-size: 14px;
}

::placeholder {
  color: #8E9394;
  font-size: 14px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  background-color: #fff;
  min-width: 320px;
  color: #1C2729;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
  padding: 35px 0;
}

main.lock:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 39, 41, 0.5);
  z-index: 5;
}
main.page{
    padding-top: 0;
}

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

a {
  text-decoration: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mb0{
    margin-bottom: 0;
}
h1 {
  color: #1C2729;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.center {
  text-align: center;
}

strong {
  font-weight: 600;
  color: #1C2729;
}

.color-red {
  color: #E16256;
}

.select2 {
  width: 100%;
}

[type=radio]:checked,
[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  color: #1C2729;
}

[type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #1C2729;
  border-radius: 100%;
  background: #1C2729;
  -webkit-box-shadow: inset 0 0 0 3px #1C2729;
          box-shadow: inset 0 0 0 3px #1C2729;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #1C2729;
  border-radius: 100%;
  background: #fff;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

[type=radio]:checked + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  position: absolute;
  top: 7px;
  left: 7px;
  border-radius: 100%;
}

[type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #1C2729;
  position: absolute;
  top: 7%;
  left: 7px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

[type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.input {
  position: relative;
  margin: 0 0 32px;
}
.input > div{
  position: relative;
}

.input input:not([type=checkbox]) {
  background-color: #FFF;
  border: 1px solid #E2E7E9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 16px;
  line-height: 16px;
  height: 56px;
  outline: 0;
  padding: 15px 16px 0;
  width: 100%;
  border-radius: 12px;
}

.input input:not([type=checkbox]):focus {
  border-color: var(--accent);
}

.input input:not([type=checkbox]):not(:-moz-placeholder-shown) + label {
  top: 3px;
  left: 7px;
  font-size: 11px;
  padding: 2px 10px;
}

.input input:not([type=checkbox]):not(:-ms-input-placeholder) + label {
  top: 3px;
  left: 7px;
  font-size: 11px;
  padding: 2px 10px;
}

.input input:not([type=checkbox]):focus + label,
.input input:not([type=checkbox]):not(:placeholder-shown) + label {
  top: 3px;
  left: 7px;
  font-size: 11px;
  padding: 2px 10px;
}

.input.textarea {
  height: 192px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 22px 16px 16px;
  border-radius: 12px;
  border: 1px solid #E2E7E9;
  position: relative;
}

.input.textarea textarea {
  width: 100%;
  height: 100%;
  resize: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: Inter;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.input.textarea textarea:focus {
  border-color: var(--accent);
}

.input.textarea textarea:not(:-moz-placeholder-shown) + label {
  top: 3px;
  left: 7px;
  font-size: 11px;
  padding: 2px 10px;
}

.input.textarea textarea:not(:-ms-input-placeholder) + label {
  top: 3px;
  left: 7px;
  font-size: 11px;
  padding: 2px 10px;
}

.input.textarea textarea:focus + label,
.input.textarea textarea:not(:placeholder-shown) + label {
  top: 3px;
  left: 7px;
  font-size: 11px;
  padding: 2px 10px;
}

.input.textarea .char-count {
  color: #8E9394;
  font-size: 12px;
  line-height: 16px;
  right: 16px;
  bottom: 16px;
  text-align: right;
  margin-top: 0;
}

.input label:not(.default) {
  color: #8E9394;
  font-size: 14px;
  padding: 5px 10px;
  pointer-events: none;
  position: absolute;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
  top: 12px;
  left: 10px;
}

.input label:not(.default).active {
  top: 3px;
  left: 10px;
  font-size: 11px;
  padding: 2px 10px;
}

.input span {
  font-size: 12px;
  line-height: 16px;
  color: #606869;
  display: block;
  margin-top: 20px;
}

#form_add_auction .input span {
  margin-top: 0;
}

#form_add_auction.error .input span {
  margin-top: 20px;
}

.input small {
  position: absolute;
  right: 16px;
  top: 16px;
}

.input small.view-password {
  width: 20px;
  height: 20px;
  background: url(../img/view.svg) 0 0 no-repeat;
  cursor: pointer;
}

.input small.view-password.view {
  background: url(../img/no-view.svg) 0 0 no-repeat;
}

.checkbox {
  position: relative;
  margin-top: 12px;
}

.checkbox .custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox .custom-checkbox + label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  font-size: 12px;
  color:  #1c2729;
  column-gap: 5px;
  font-weight: 400;
font-size: 16px;
}

.checkbox .custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.checkbox .custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: var(--accent);
}

.checkbox .custom-checkbox:not(:disabled):active + label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.checkbox .custom-checkbox:focus:not(:checked) + label::before {
  border-color: var(--accent);
}

.checkbox .custom-checkbox:checked + label::before {
  border-color: var(--accent);
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3e%3cpath fill='%23fff' d='M4 9.4L0 5.4L1.4 4L4 6.6L10.6 0L12 1.4L4 9.4Z'/%3e%3c/svg%3e");
}

.checkbox .custom-checkbox:disabled + label::before {
  background-color: #e9ecef;
}

.checkbox .custom-checkbox.black + label {
  color: #1C2729;
}
/*.checkbox.checkbox-row .custom-checkbox.black + label {*/
/*  flex-wrap: wrap;*/
/*}*/

.checkbox .custom-checkbox.black + label strong{
    font-weight: 400;
    /*flex-basis: 100%;*/
    /*padding-left: 28px;*/
}
.checkbox .custom-checkbox.black:not(:disabled):not(:checked) + label:hover::before {
  border-color: #1C2729;
}

.checkbox .custom-checkbox.black:not(:disabled):active + label::before {
  background-color: #1C2729;
  border-color: #1C2729;
}

.checkbox .custom-checkbox.black:focus:not(:checked) + label::before {
  border-color: #1C2729;
}

.checkbox .custom-checkbox.black:checked + label::before {
  border-color: #1C2729;
  background-color: #1C2729;
}

.checkbox .custom-checkbox.black:disabled + label::before {
  background-color: #e9ecef;
}

.hidden {
  display: none;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  background-color: var(--accent);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  border: 1px solid transparent;
  padding: 12px 20px;
}

.button:hover {
  background-color: #14c078;
}

.button:active {
  background-color: #10925c;
}

.button.white {
  background-color: #fff;
  color: #1C2729;
  border-color: #E2E7E9;
}

.button.white:hover {
  background-color: #f1f3f4;
}

.button.white:active {
  background-color: #d4dbde;
}

.button.w100 {
  width: 100%;
}
.button-red {
    background-color: #E16256;
    color: #fff;
}

.button-red:hover {
    background-color: #c7372d;
}

.button-red:active {
    background-color: #a62219;
}

.header {
  border-bottom: 1px solid #F0F3F4;
}

.top__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 0;
}
.top__line-logo a.desktop{
    display: block;
}
.top__line-logo a.mobile{
    display: none;
}

.top__line-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 80px;
  border: 1px solid #E2E7E9;
  padding: 4px;
  height: 48px;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  position: relative;
}

.top__line-filters:hover,
.top__line-filters.active,
.top__line-filters:has(.top__line-search.open),
.top__line-filters:has(.top__line-where-popup.open),
.top__line-filters:has(.top__line-formats-popup.open)
{
  background-color: #F1F5F8;
}

.top__line-filters:has(.top__line-search.open) .top__line-filter {
  display: none;
}

.top__line-filter {
  border-radius: 80px;
  padding: 2px 16px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  cursor: pointer;
}

.top__line-filter:hover,
.top__line-filter.active,
.top__line-filter:has(> a.open)
{
  background-color: #fff;
  color: var(--accent);
}

.top__line-filter:hover a,
.top__line-filter.active a,
.top__line-filter:has(> a.open) a {
  color: var(--accent);
}

.top__line-filter.top__line-search {
  padding-right: 4px;
  height: 100%;
}

.top__line-where {
  color: #1C2729;
}

.top__line-where-popup {
  padding: 24px;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
  width: 496px;
  position: absolute;
  z-index: 10;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(100% + 28px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.top__line-where-popup span {
  font-weight: 600;
  padding: 12px;
  display: block;
}


.top__line-where-popup.open {
  opacity: 1;
  visibility: visible;
}

.top__line-where-popup ul li a {
  padding: 12px 5px;
  color: #1C2729;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  border-radius: 12px;
}
.top__line-where-result {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #1c2729;
}
.top__line-where-result-title {
  margin: 0px 0px 10px 0px;
}
.top__line-where-popup .result{
  display: none;
}
.top__line-where-popup .result.active{
  display: block;
}
.top__line-where-popup .top__line-where-result-link {
  align-items: center;
  padding: 0px 5px;

}
.top__line-where-popup .top__line-where-result-link:hover {
 background:   #f1f5f8;

}

.top__line-where-popup .top__line-where-result-text {
  font-size: 16px;
line-height: 150%;
}
.top__line-where-popup ul li a span {
  font-size: 14px;
  line-height: 20px;
  color: #606869;
}

.top__line-where-popup ul li a:hover {
  background-color: var(--accent);
  color: #fff;
}

.top__line-where-popup form {
  margin-bottom: 12px;
}

.top__line-where-popup form input {
  border-radius: 12px;
  border: 2px solid #053F33;
  height: 56px;
  width: 100%;
  background: #fff url(../img/location.svg) 12px center no-repeat;
  padding-left: 40px;
  outline: none;
  font-size: 16px;
  color: #1C2729;
}

.top__line-formats {
  color: #1C2729;
  white-space: nowrap;
}

.top__line-formats-popup {
  padding: 24px;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
  width: 496px;
  position: absolute;
  z-index: 10;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(100% + 28px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.top__line-formats-popup.open {
  opacity: 1;
  visibility: visible;
}

.top__line-formats-popup ul {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}

.top__line-formats-popup ul li.active a {
  color: #fff;
  background-color: #053F33;
}

.top__line-formats-popup ul li.active a span {
  color: rgba(255, 255, 255, 0.6);
}

.top__line-formats-popup ul li a {
  padding: 14px 16px;
  color: #1C2729;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  display: -ms-grid;
  display: grid;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  border-radius: 12px;
}

.top__line-formats-popup ul li a span {
  font-size: 14px;
  line-height: 20px;
  color: #606869;
}

.top__line-formats-popup ul li a:not(.top__line-formats-popup ul li.active a):hover {
  background-color: var(--accent);
  color: #fff;
}

.top__line-formats-popup ul li a:not(.top__line-formats-popup ul li.active a):hover span {
  color: rgba(255, 255, 255, 0.6);
}

.top__line-search {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top__line-search.open {
  width: 100%;
}

.top__line-search.open input {
  background-color: #fff;
  width: 100%;
}

.top__line-search.open form {
  width: 100%;
}

.top__line-search form {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.top__line-search button {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-color: var(--accent);
  border: none;
  outline: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
}

.top__line-search input {
  border-radius: 80px;
  width: 80px;
  height: 100%;
  border: none;
  outline: none;
  padding-left: 16px;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  background-color: transparent;
  font-size: 14px;
}

.top__line-search-popup {
  padding: 24px;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
  width: 496px;
  position: absolute;
  z-index: 10;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(100% + 28px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.top__line-search-popup span {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  padding: 12px;
  display: block;
}

.top__line-search-popup.open {
  opacity: 1;
  visibility: visible;
}
.top__line-search-popup ul, .top__line-where-popup ul{
    max-height:300px;
    overflow-y: auto;
}
.top__line-search-popup ul li a {
  padding: 12px 5px;
  color: #1C2729;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  gap: 8px;
}

.top__line-search-popup ul li a:hover {
  background-color: #F1F5F8;
}

.top__line-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.top__line-become a {
  color: #1C2729;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.top__line-become a:hover {
  color: var(--accent);
}

.top__line-languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top__line-languages svg {
  fill: #1C2729;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.top__line-languages a {
  line-height: 1;
}

.top__line-languages a:hover svg {
  fill: var(--accent);
}

.top__line-user {
  position: relative;
}

.top__line-user-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  border-radius: 80px;
  padding: 8px;
  border: 1px solid #E2E7E9;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.top__line-user-show:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arr-down.svg) center no-repeat;
  background-size: contain;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.top__line-user-show:hover {
  background-color: #F1F5F8;
}

.top__line-user-show.open:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.top__line-user-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.top__line-user-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.top__line-user-logo:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #E16256;
  border: 2px solid #fff;
  border-radius: 50%;
  right: 0;
  top: 0;
}
.top__line-user-logo.online:after {
  background-color: var(--accent);
}

.top__line-user-popup {
  padding: 8px;
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
  width: 260px;
  position: absolute;
  z-index: 10;
  right: -1px;
  top: calc(100% + 8px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.top__line-user-popup.open {
  opacity: 1;
  visibility: visible;
}

.top__line-user-popup ul li.bold {
  font-weight: 600;
}

.top__line-user-popup ul li.line {
  background-color: #F0F3F4;
  height: 1px;
  margin: 8px 0;
}

.top__line-user-popup ul li a {
  display: flex;
    justify-content: space-between;
  padding: 12px 16px;
  color: #1C2729;
  font-size: 14px;
  line-height: 20px;
  border-radius: 8px;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.top__line-user-popup ul li a span {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  background: #E16256;
  margin-left: 10px;
}

.top__line-user-popup ul li a:hover {
  background: var(--Background-Secondary, #F1F5F8);
}

.page__header{
    min-height: 640px;
    background: #053F33 url("../img/header-green.png") center no-repeat;
    display: grid;
    justify-content: center;
    align-items: center;
    position: relative;
}
.page__header h1{
    font-size: 128px;
    line-height: 110%;
    font-weight: 600;
    color: #ffffff;
}
.page__header-title h1{
    font-size: 48px;
    max-width: 830px;
    text-align: center;
    line-height: 120%;
}
.page__header:after{
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgb(18, 169, 106) 0%, rgb(255, 255, 255) 100%);
    left: 50%;
    bottom: -25%;
    transform: translateX(-50%);
    z-index: -1;
}
.page__content{
    padding-top: 150px;
}
.page__header-body{
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 48px;
}
.page__header-body .button{
    padding: 18px 45px;
}
.page__header-body .button.white{
    background-color: rgba(255,255,255,0.4);
    border-color: transparent;
}
.page__header-body .button.white:hover{
    background-color: rgba(255,255,255,0.8);
}
.swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;

}

.header__mentors{
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    transform: translateY(50%);
}
.swiper-slide{
    position: relative;
    overflow: hidden;
}

.swiper-slide img{
    max-height: 150px;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.swiper-slide img:after{

}
.wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 402px 1fr 402px;
  grid-template-columns: 402px 1fr 402px;
  gap: 24px;
}

.wrapper.auctions-list {
  -ms-grid-columns: 402px 1fr 200px;
  grid-template-columns: 402px 1fr 200px;
}

.wrapper-chat {
  gap: 0px;
  border: 1px solid #F0F3F4;
}
.gumburger {
    display: none;
    width: 36px;
    height: 36px;
    outline: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    border: none;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    z-index: 11;
    background: none;
    margin-left: 12px;
    margin-bottom: 12px;
}

.gumburger .line {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background-color: var(--accent);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-left: -9px;
}

.gumburger .line:nth-child(1) {
    top: 10px;
}

.gumburger .line:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gumburger .line:nth-child(3) {
    bottom: 10px;
}

.gumburger.open .line:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(45deg);
    -ms-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
}

.gumburger.open .line:nth-child(2) {
    opacity: 0;
}

.gumburger.open .line:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}
.breadcrums ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.breadcrums ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  color: #8E9394;
  font-size: 14px;
}

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

.breadcrums ul li:after {
  content: "·";
  color: #8E9394;
}

.breadcrums ul li a {
  color: #606869;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.breadcrums ul li a:hover {
  color: var(--accent);
}

aside {
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #F0F3F4;
  background: #FFF;
}

.categories {
  padding: 32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* display: -ms-grid;
  display: grid;
  -ms-grid-columns: 156px 1fr 225px;
  grid-template-columns: 156px 1fr 225px; */
}

.categories ul a {
  padding: 14px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #1C2729;
  display: block;
  font-size: 14px;
  line-height: 20px;
  border-radius: 80px;
  border: 1px solid #E2E7E9;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.categories ul a:hover, .categories ul li.active a {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.categories ul a.active {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.categories__all {
  padding: 14px 24px;
  color: #1C2729;
  font-size: 14px;
  line-height: 20px;
  border-radius: 80px;

  gap: 4px;
  border: 1px solid #E2E7E9;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  cursor: pointer;
  text-wrap: nowrap;
}
.categories__all .burger{
  width: 12px;
  height: 10px;
}
.categories__all svg {
  fill: #1C2729;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.categories__all:hover {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.categories__all:hover svg {
  fill: #fff;
}

.categories__panel {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(28, 39, 41, 0.5);
  z-index: 100;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  visibility: hidden;
  opacity: 0;
}

.categories__panel.open {
  visibility: visible;
  opacity: 1;
}

.categories__panel-body {
  overflow-y: auto;
}

.categories__panel-body ul {
  width: 260px;
}

.categories__panel-body ul li a, .categories__panel-body ul li span {
  padding: 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  background-color: #fff;
  color: #1C2729;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  cursor: pointer;
}

.categories__panel-body ul li a:hover {
  background-color: #F1F5F8;
}

.categories__panel-body ul li .submenu {
  position: absolute;
  height: 100%;
  display: none;
  left: 0;
  top: 0;
  min-height: 100vh;
  background-color: #fff;
  overflow-y: auto;
  padding: 24px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.categories__panel-body ul li .submenu.open {
  display: block;
}

.categories__panel-body ul li .submenu.open li a {
  background-color: #fff;
}

.categories__panel-body ul li .submenu.open li a:hover {
  background-color: #F1F5F8;
}

.categories__panel-body ul li .submenu .categories__panel-title {
  color: #1C2729;
  display: block;
}

.categories__panel-body ul li.active a {
  background-color: #F1F5F8;
}

.categories__panel-wrap {
  background-color: #fff;
  padding: 24px 0;
  display: inline-block;
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-duration: 350ms;
       -o-transition-duration: 350ms;
          transition-duration: 350ms;
  z-index: 101;
}

.categories__panel-wrap.show {
  left: 0;
}

.categories__panel--close {
  position: absolute;
  right: -48px;
  top: 36px;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 101;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  border: 1px solid rgba(255, 255, 255, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.categories__panel--close svg {
  fill: #FFF;
}

.categories__panel--close:hover {
  border-color: #fff;
}

.categories__panel-title {
  color: #8E9394;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  padding: 10px 24px;
}

.categories__panel-body ul li.active .categories__panel-title a {
  background: transparent;
  padding: 0;
  margin: 0;
}

.filters__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.filters__wrap a {
  padding: 14px 20px;
  color: #1C2729;
  font-size: 14px;
  line-height: 20px;
  border-radius: 80px;
  border: 1px solid #E2E7E9;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  text-wrap: nowrap;
}

.filters__wrap a:hover, .filters__wrap a.active {
  background-color: #F1F5F8;
}

.filters__item-sort-popup {
  padding: 8px;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
  width: 260px;
  position: absolute;
  z-index: 10;
  right: -1px;
  top: calc(100% + 8px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}

.filters__item-sort-popup.open {
  opacity: 1;
  visibility: visible;
  z-index: 1045;
}


.filters__item-sort-popup ul li {
  position: relative;
}

.filters__item-sort-popup ul li a {
  display: block;
  padding: 12px 16px;
  color: #1C2729;
  border-radius: 12px;
  padding: 8px 16px;
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
          border: none;
}

.filters__item-sort-popup ul li::after {
  content: "";
  background: #f1f5f8;
  color: #1C2729;
  width: 5px;
  height: 5px;
  border-radius: 80px;
  width: 4px;
  height: 4px;
  background-color: #12a96a;;
  position: absolute;
  right: 15px;
  top: 50%;
  display: none;
}
.filters__item-sort-popup ul li.active a {
  background: transparent;
  color: #1C2729;
}
.filters__item-sort-popup ul li.active::after {
display: block;
}
.filters__item-sort-popup ul li a:hover {
  background: #f1f5f8;
  color: #1C2729;

}
.button-menu{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #E2E7E9;
  border-radius: 20px;
  color: #1C2729;
  display: none;
}
.side-left-close{
  position: absolute;
  right: 30px;
  top: 30px;
  display: none;
}
@media (max-width: 1600px) {
    .wrapper {
        grid-template-columns: 250px 1fr 255px;
    }
}
@media (max-width: 1199px) {
  .container {
    max-width: 990px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 750px;
  }
  .top__line-logo a.desktop{
        display: none;
  }
  .top__line-logo a.mobile{
        display: flex;
  }
    .categories ul a, .categories__all, .filters__wrap a{
        padding: 10px 15px;
    }

    .categories {
        grid-template-columns: 145px 1fr;
        grid-template-rows: auto auto;
        padding-top: 0;
        gap: 15px;
    }

    .categories > *:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .categories > *:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .categories > *:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: space-between;
    }
    .top__line-languages{
        display: none;
    }
    .top__line-actions{
        gap: 0;
        justify-content: flex-end;
    }
    .page__header {
      min-height: 200px;
    }
    .page__header-title h1,
    .page__header h1 {
      font-size: 40px;
      padding: 0 20px;
    }
    .page__header.full-page-header  {
      min-height: 640px;
    }
}


@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
    .swiper-button-next, .swiper-button-prev{
        display: none!important;
    }
     .side-left{
      position: fixed;
      top: -100%;
      left: 0px;
      width: 100%;
      height: 70%;
      z-index: 100;
      transition: all 0.5s ease 0s;
    }
    .side-left.active{
      position: fixed;
      top: 0%;
      left: 0px;
      width: 100%;
      height: 100%;
      z-index: 100;
    }
    .button-menu{
      display: inline-flex;
    }
    .side-left.active .side-left-close{
      display: block;
    }
}
@media (max-width: 580px){
    .top__line{
        /* display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        justify-content: space-between;
        gap: 10px; */
        flex-wrap: wrap;
        gap: 20px;
    }
    .top__line > *:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        order: 1;
        flex: 1 1 auto;
    }

    .top__line > *:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
        order: 2;
        flex: 1 1 auto;
    }

    .top__line > *:nth-child(2) {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
        order: 3;
        flex: 1 1 auto;
    }

    .top__line-filters {
        justify-content: space-between;
    }

    .top__line-search input{
        width: 0;
    }
    .top__line-where-popup, .top__line-formats-popup, .top__line-search-popup{
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 479px) {
  .container {
    padding: 0 5px;
  }
}
