#pageBasket {
  padding-top: 20px;
}
#pageBasket h1 {
  margin: 0;
}
#pageBasket .page-content {
  background: var(--color-bg-adv);
}
#pageBasket .page-content .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
#pageBasket .page-content .content-wrapper .basket-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-title {
  background: var(--color-link);
  margin: 0;
  color: var(--color-white);
  font-family: "Montserrat Bold";
  border: 1px solid var(--color-link);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list {
  background: white;
  border: 1px solid var(--color-link);
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item {
  width: 100%;
  border-bottom: 1px solid var(--color-text-gray);
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item:last-child {
  border-bottom: 0;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-image {
  border: 1px solid #ccc;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-brand {
  height: auto;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-brand img {
  width: 100%;
  object-fit: cover;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-title {
  font-family: Montserrat;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-value {
  font-family: "Montserrat Bold";
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-title {
  font-family: "Montserrat Bold";
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop .prop-title {
  color: #666666;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop .prop-value {
  font-weight: 600;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop.prop-image .prop-value {
  position: relative;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop.prop-image .prop-value img {
  max-height: inherit;
  width: auto;
  object-fit: cover;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices {
  display: flex;
  flex-direction: column;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  align-items: baseline;
  gap: 5px;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-value {
  font-family: "Montserrat Bold";
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-measure {
  font-family: "Montserrat";
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-title {
  font-family: "Montserrat Bold";
  margin-bottom: 5px;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-title {
  font-family: Montserrat;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-value {
  font-family: "Montserrat Bold";
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del {
  height: auto;
  cursor: pointer;
  transition: all 0.3s;
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del svg {
  fill: var(--color-link);
}
#pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del:hover svg {
  fill: var(--color-link-active);
}
#pageBasket .page-content .content-wrapper .basket-totals {
  border: 1px solid var(--color-link);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-x: hidden;
  position: relative;
}
#pageBasket .page-content .content-wrapper .basket-totals .totals-title {
  width: 100%;
  background: var(--color-link);
  margin: 0;
  color: white;
  font-weight: bold;
}
#pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
#pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content hr {
  border-bottom: 1px solid var(--color-text-gray);
  width: 100%;
}

@media screen and (min-width: 1400px) {
  #pageBasket h1 {
    font-family: "Montserrat Bold";
    font-size: 24px;
  }
  #pageBasket .page-content {
    padding: 30px 0;
  }
  #pageBasket .page-content .content-wrapper {
    flex-direction: row;
    gap: 30px;
    flex-wrap: nowrap;
  }
  #pageBasket .page-content .content-wrapper .basket-items {
    flex-grow: 1;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-title {
    width: calc(100% - 40px);
    padding: 10px 20px;
    font-size: 18px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list {
    width: calc(100% - 40px);
    padding: 20px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item {
    margin-bottom: 20px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper {
    gap: 20px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc {
    gap: 20px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block {
    width: 120px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-image {
    width: 120px;
    height: 120px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-brand {
    max-width: 100%;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-title {
    font-size: 11px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-value {
    font-size: 14px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-title {
    font-size: 16px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop .prop-title {
    font-size: 0.9em;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop.prop-image {
    max-height: 40px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices {
    margin-left: auto;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-value {
    font-size: 18px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-measure {
    font-size: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions {
    width: 150px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-title {
    font-size: 18px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-title {
    font-size: 12px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-value {
    font-size: 18px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del {
    width: 15px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del svg {
    width: 15px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals {
    border-radius: 20px;
    width: 350px;
    position: sticky;
    top: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .totals-title {
    width: calc(100% - 40px);
    padding: 10px 20px;
    font-size: 18px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content {
    width: calc(100% - 40px);
    padding: 10px 20px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item {
    display: flex;
    flex-direction: row;
    gap: 5px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item .totals-item-title {
    font-size: 16px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item .totals-item-value {
    font-size: 18px;
    font-family: "Montserrat Bold";
  }
}
@media screen and (max-width: 1399px) {
  #pageBasket h1 {
    font-family: "Montserrat Bold";
    font-size: 24px;
  }
  #pageBasket .page-content {
    padding: 30px 0;
  }
  #pageBasket .page-content .content-wrapper {
    flex-direction: row;
    gap: 30px;
    flex-wrap: nowrap;
  }
  #pageBasket .page-content .content-wrapper .basket-items {
    flex-grow: 1;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-title {
    width: calc(100% - 40px);
    padding: 10px 20px;
    font-size: 18px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list {
    width: calc(100% - 40px);
    padding: 20px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item {
    margin-bottom: 20px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper {
    gap: 20px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc {
    gap: 20px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block {
    width: 120px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-image {
    width: 120px;
    height: 120px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-brand {
    max-width: 100%;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-title {
    font-size: 11px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-value {
    font-size: 14px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-title {
    font-size: 16px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop .prop-title {
    font-size: 0.9em;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop.prop-image {
    max-height: 40px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices {
    margin-left: auto;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-value {
    font-size: 18px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-measure {
    font-size: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions {
    width: 150px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-title {
    font-size: 18px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-title {
    font-size: 12px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-value {
    font-size: 18px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del {
    width: 15px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del svg {
    width: 15px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals {
    border-radius: 20px;
    width: 350px;
    position: sticky;
    top: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .totals-title {
    width: calc(100% - 40px);
    padding: 10px 20px;
    font-size: 18px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content {
    width: calc(100% - 40px);
    padding: 10px 20px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: space-between;
    width: 100%;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item .totals-item-title {
    font-size: 14px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item .totals-item-value {
    font-size: 16px;
    font-family: "Montserrat Bold";
  }
}
@media screen and (max-width: 1199px) {
  #pageBasket h1 {
    font-family: "Montserrat Bold";
    font-size: 20px;
  }
  #pageBasket .page-content {
    padding: 20px 0;
  }
  #pageBasket .page-content .content-wrapper {
    flex-direction: row;
    gap: 20px;
    flex-wrap: nowrap;
  }
  #pageBasket .page-content .content-wrapper .basket-items {
    flex-grow: 1;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-title {
    width: calc(100% - 20px);
    padding: 10px 10px;
    font-size: 16px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list {
    width: calc(100% - 20px);
    padding: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item {
    margin-bottom: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper {
    gap: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc {
    gap: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block {
    width: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-image {
    width: 80px;
    height: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-brand {
    max-width: 100%;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-title {
    font-size: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-value {
    font-size: 11px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-title {
    font-size: 14px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop .prop-title {
    font-size: 0.8em;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop.prop-image {
    max-height: 30px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices {
    margin-left: auto;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-value {
    font-size: 16px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-measure {
    font-size: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions {
    width: 150px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-title {
    font-size: 16px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-title {
    font-size: 11px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-value {
    font-size: 16px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del {
    width: 15px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del svg {
    width: 15px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals {
    border-radius: 20px;
    width: 350px;
    position: sticky;
    top: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .totals-title {
    width: calc(100% - 20px);
    padding: 10px 10px;
    font-size: 16px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content {
    width: calc(100% - 20px);
    padding: 10px 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: space-between;
    width: 100%;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item .totals-item-title {
    font-size: 12px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item .totals-item-value {
    font-size: 14px;
    font-family: "Montserrat Bold";
  }
}
@media screen and (max-width: 1023px) {
  #pageBasket h1 {
    font-family: "Montserrat Bold";
    font-size: 20px;
  }
  #pageBasket .page-content {
    padding: 10px 0;
  }
  #pageBasket .page-content .content-wrapper {
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
  }
  #pageBasket .page-content .content-wrapper .basket-items {
    flex-grow: 1;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-title {
    width: calc(100% - 20px);
    padding: 10px 10px;
    font-size: 14px;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list {
    width: calc(100% - 20px);
    padding: 10px;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item {
    margin-bottom: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper {
    gap: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc {
    gap: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block {
    width: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-image {
    width: 80px;
    height: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-brand {
    max-width: 100%;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-title {
    font-size: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-value {
    font-size: 11px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-title {
    font-size: 12px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop .prop-title {
    font-size: 0.8em;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop.prop-image {
    max-height: 30px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices {
    margin-left: auto;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-value {
    font-size: 13px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-measure {
    font-size: 11px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions {
    width: 150px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-title {
    font-size: 13px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-title {
    font-size: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-value {
    font-size: 13px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del {
    width: 12px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del svg {
    width: 12px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals {
    border-radius: 10px;
    width: 350px;
    position: sticky;
    top: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .totals-title {
    width: calc(100% - 20px);
    padding: 10px 10px;
    font-size: 14px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content {
    width: calc(100% - 20px);
    padding: 10px 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: space-between;
    width: 100%;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item .totals-item-title {
    font-size: 11px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item .totals-item-value {
    font-size: 12px;
    font-family: "Montserrat Bold";
  }
}
@media screen and (max-width: 767px) {
  #pageBasket h1 {
    font-family: "Montserrat Bold";
    font-size: 20px;
  }
  #pageBasket .page-content {
    padding: 10px 0;
  }
  #pageBasket .page-content .content-wrapper {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
  #pageBasket .page-content .content-wrapper .basket-items {
    flex-grow: 1;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-title {
    width: calc(100% - 20px);
    padding: 10px 10px;
    font-size: 14px;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list {
    width: calc(100% - 20px);
    padding: 10px;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item {
    margin-bottom: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper {
    gap: 10px;
    flex-wrap: wrap;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc {
    gap: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block {
    width: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-image {
    width: 80px;
    height: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-brand {
    max-width: 100%;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-title {
    font-size: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .image-block .item-collection .prop-value {
    font-size: 11px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-title {
    font-size: 12px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop .prop-title {
    font-size: 0.8em;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-desc .desc-block .item-props .item-prop.prop-image {
    max-height: 30px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices {
    margin-left: auto;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-value {
    font-size: 13px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-prices .price-item .price-measure {
    font-size: 11px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions {
    width: 150px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .qty-block {
    align-items: flex-end;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .qty-block .block-qty {
    justify-content: flex-end !important;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-title {
    font-size: 13px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list {
    gap: 5px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item {
    flex-direction: row;
    gap: 5px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-title {
    font-size: 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .item-total .item-total-list .list-item .total-value {
    font-size: 13px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del {
    width: 12px;
  }
  #pageBasket .page-content .content-wrapper .basket-items .basket-items-list .basket-item .basket-item-wrapper .item-actions .action-del svg {
    width: 12px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals {
    border-radius: 10px;
    width: 350px;
    position: sticky;
    top: 80px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .totals-title {
    width: calc(100% - 20px);
    padding: 10px 10px;
    font-size: 14px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content {
    width: calc(100% - 20px);
    padding: 10px 10px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: space-between;
    width: 100%;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item .totals-item-title {
    font-size: 11px;
  }
  #pageBasket .page-content .content-wrapper .basket-totals .basket-totals-content .totals-item .totals-item-value {
    font-size: 12px;
    font-family: "Montserrat Bold";
  }
}

/*# sourceMappingURL=style.css.map */
