@charset "UTF-8";
.mini-basket {
  position: absolute;
  z-index: 201;
  top: calc(100% + 30px);
  right: 0;
  width: 100%;
  max-width: 740px;
  max-height: calc(100vh - 250px);
  display: flex;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  padding: 32px 8px 32px 32px;
  transition: all .3s ease;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.16); }
  .mini-basket:before {
    position: absolute;
    bottom: 100%;
    right: 0;
    left: 0;
    height: 30px;
    content: ''; }
  .mini-basket.active {
    top: calc(100% + 20px);
    visibility: visible;
    opacity: 1; }
  .mini-basket__inner {
    display: flex;
    flex-direction: column; }
  .mini-basket__body {
    max-height: 460px;
    overflow: auto;
    flex-grow: 1;
    padding-right: 20px; }
    .mini-basket__body::-webkit-scrollbar {
      width: 4px;
      /* ширина для вертикального скролла */
      height: 4px;
      /* высота для горизонтального скролла */
      border-radius: 8px;
      background-color: #DEDFE8;
      cursor: pointer; }
      @media (max-width: 767px) and (hover: none) and (pointer: coarse) {
        .mini-basket__body::-webkit-scrollbar {
          -ms-overflow-style: none;
          scrollbar-width: none; }
          .mini-basket__body::-webkit-scrollbar::-webkit-scrollbar {
            display: none; } }
    .mini-basket__body::-webkit-scrollbar-thumb {
      border-radius: 8px;
      background-color: #AEB6BE; }
      .mini-basket__body::-webkit-scrollbar-thumb:hover {
        background-color: #9A9CA1; }
  .mini-basket__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-right: 16px; }
  .mini-basket__title {
    font-size: 24px;
    font-weight: 600; }
  .mini-basket__count {
    font-size: 16px; }
  .mini-basket__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    background-color: #F0F2F6; }
  .mini-basket__total {
    display: flex;
    align-items: center;
    gap: 16px; }
  .mini-basket__total-sum {
    font-weight: 600; }
  .mini-basket__control {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 600; }
  .mini-basket--empty {
    max-height: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 48px 32px;
    gap: 48px; }
  .mini-basket__empty-image {
    display: flex;
    align-items: center;
    flex: 0 0 160px;
    justify-content: center;
    aspect-ratio: 1/1; }
    .mini-basket__empty-image img {
      max-width: 100%;
      max-height: 100%; }
  .mini-basket__empty-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 24px; }
  .mini-basket__empty-title {
    text-align: center;
    font-weight: 600; }
  .mini-basket__empty-control {
    display: flex;
    justify-content: center; }
  @media (max-width: 1099px) {
    .mini-basket {
      display: none; } }

.search-active .mini-basket-container {
  z-index: 200; }
