.user-area-show {
  display: flex;
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  /* padding: 8px; */
  width: 44px;
  height: 42px;
  border-radius: 10px 2px 10px 2px;
  transform: skewX(-10deg);
  background-color: var(--main-red-color);
  z-index: 1;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}
.user-area-show:hover {
  background-color: var(--main-active-red-color);
}
.user-area-show_icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.user-area-show .btn_menu_bars {
  width: 30px;
}
.user-area-show.active .user-area-show_close {
  display: block;
}
.user-area-show.active .user-area-show_bars {
  display: none;
}
.user-area-show_text {
  display: none;
}

/* user-area ------------------------------------------------------------------------- */

.user-area {
  position: fixed;
  left: 0;
  width: 90%;
  height: 0px;
  margin-top: 54px;
  z-index: 21;
  overflow-y: hidden;
  background: #fafafa;
}
.user-area-inner {
  position: relative;
  width: 100%;
  max-width: 1456px;
  margin: 0 auto;
  padding-bottom: 0;
  overflow-y: auto;
}
.user-area.active {
  display: flex;
  flex-direction: column;
  height: calc(100% - 54px - 56px);
  padding: 0;
  overflow-y: visible;
  transition: height 0.2s ease;
}
.user-area-category {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.user-area-category a {
  font-family: "Roboto", sans-serif;
  color: #444;
}
.user-area-category > a {
  display: block;
  padding: 24px 14px 0;
  cursor: pointer;
}
.user-area-category > a:hover {
  text-decoration: none;
}
.user-area-category.active a {
  font-weight: bold;
  color: #444;
}
.user-area-category.active .nav_subcategories_wrap {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  margin-bottom: 16px;
  padding: 0 14px;
}

/* user-car --------------------------------------------------------------------------------------- */

.user-cars-list,
.user-goods-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.user-cars-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 16px 0 0;
  padding: 0 14px;
}
.user-cars-list li {
  display: flex;
  width: calc(50% - 7px);
  margin: 0 0 14px;
}
.user-cars-list a {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 8px;
  font-weight: bold;
}
.user-car-number {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px 0 8px 0;
  font-weight: bold;
  color: #ccc;
}
.user-cars-list .user-car-image {
  width: 100%;
  padding: 0;
}
.user-cars-list .user-car-image img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.user-car-about {
  display: block;
  padding: 14px;
  font-weight: bold;
}
.user-car-body,
.user-car-years,
.user-car-modification {
  font-weight: normal;
  color: #777;
}
.user-area-category .nav_subcategories_title {
  display: block;
  margin: 24px 0;
  color: var(--main-red-color);
}
.user-goods-list {
  display: flex;
  flex-wrap: wrap;
  align-self: flex-end;
  justify-content: space-between;
}
.user-goods-list li {
  width: calc(50% - 7px);
  margin-bottom: 16px;
}
.user-goods-list a {
  display: flex;
  flex-direction: column;
}
.user-goods-list img {
  border-radius: 8px;
}
.user-latest-goods-text {
  padding: 8px;
}
.user-latest-goods-price {
  font-weight: bold;
  white-space: nowrap;
}
.user-car-clear-btn {
  display: none;
  margin: 32px auto;
}
.subcategories-subtitle {
  display: block;
  padding: 8px 0;
  font-family: "Roboto", sans-serif;
  color: var(--main-red-color);
}
.user-area.active .btn-menu-close {
  display: block;
  position: absolute;
  top: 10px;
  right: calc(-5% - 12px);
  color: #fff;
  text-align: center;
  pointer-events: none;
}

@media screen and (min-width: 640px) {
  .user-goods-list .nav_subcategory_image {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .user-area-show {
    display: flex;
    width: 36px;
    height: 36px;
  }
  .user-area-show .btn_menu_bars {
    width: 26px;
  }
  .user-area {
    margin-top: 68px;
  }
  .user-area.active {
    height: calc(100% - 68px);
  }
  .nav_category_title {
    padding: 8px 24px;
  }
  .user-area-category::after {
    content: none;
  }
  .user-goods-list {
    display: grid;
    row-gap: 14px;
    column-gap: 14px;
    grid-template-columns: repeat(3, 1fr);
  }
  .user-goods-list li {
    width: 100%;
    min-width: 25%;
    margin-bottom: 0;
  }
  .user-goods-list img {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .user-area-show {
    width: 44px;
    height: 42px;
  }
  .user-area-show_icons {
    width: 44px;
    height: 44px;
  }
  .user-area-show .btn_menu_bars {
    width: 30px;
  }
  .user-area-show_text {
    display: block;
    padding-right: 12px;
    height: 18px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }
  .user-area {
    width: 100%;
    max-height: 690px;
    max-height: 780px;
  }
  .user-area.active {
    height: calc(100% - 76px);
    margin-top: 76px;
    background-image: linear-gradient(to right, #eee 352px, #fff 352px);
  }
  .user-area-inner {
    height: 100%;
  }
  .user-area-inner .nav_categories {
    width: 352px;
    height: 100%;
  }
  .user-area-category > a {
    padding: 24px 24px 0;
  }
  .user-cars-list {
    height: calc(100% - 96px);
    overflow: auto;
  }
  .user-cars-list li {
    width: 100%;
    margin: 0 0 24px;
    padding: 0 24px;
  }
  .user-cars-list a {
    white-space: normal;
  }
  .user-cars-list a span {
    white-space: normal;
  }
  .user-cars-list .user-car-image {
    width: 100%;
  }
  .user-cars-list .user-car-image img {
    border-radius: 8px 8px 0 0;
  }
  .user-car-about {
    width: 100%;
    white-space: normal;
  }
  .nav_category_title,
  .user-area-category {
    position: static;
  }
  .user-area-category {
    height: 100%;
  }
  .user-area-category.active .nav_subcategories_wrap {
    position: absolute;
    top: 0;
    left: 352px;
    align-items: start;
    justify-content: space-between;
    width: calc(100% - 352px);
    height: 100%;
    padding: 0 24px 0 24px;
    transition: 0s;
    overflow: auto;
  }
  .user-area-category .nav_subcategories_title {
    color: #7d7d7d;
  }
  .user-goods-list {
    grid-template-columns: repeat(5, 1fr);
    row-gap: 24px;
    column-gap: 24px;
  }
  .user-goods-list img {
    display: block;
  }
  .user-goods-list {
    justify-content: flex-start;
  }
  .user-area.active .btn-menu-close {
    top: 32px;
    right: 24px;
    color: #333;
    pointer-events: all;
    cursor: pointer;
  }
}

@media screen and (min-width: 1200px) {
  .user-area-show {
    justify-content: space-between;
    width: auto;
    padding-left: 4px;
  }
    .user-area.active {
    height: calc(100% - 112px);
    margin-top: 112px;
  }
  .user-goods-list {
    column-gap: 44px;
  }
}

@media screen and (min-width: 1456px) {
  .user-area.active {
    background-image: linear-gradient(to right, #eee 22%, #fff 22%);
  }
  .user-area-inner {
    position: relative;
    width: 100%;
    overflow-y: visible;
  }
  .user-area-inner .nav_categories {
    width: 22%;
  }
  .user-area-category.active .nav_subcategories_wrap {
    left: 22%;
    width: 78%;
  }

  .user-area.active .btn-menu-close {
    right: calc((100% - 1456px) / 2 + 24px);
  }
}
