/* Color styles */
/* Social colors */
/* Effects */
/* Text-size styles */
/* Font family */
/* Effect styles */
/* Grid */
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 12px 0 16px;
  list-style: none;
  font-size: 14px;
  color: #9799b1;
}
.breadcrumbs__item:not(:nth-last-child(2)) {
  display: none;
}
.breadcrumbs__text {
  gap: 0.25em;
}
.breadcrumbs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  color: #585b75;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.breadcrumbs__link:hover {
  color: #6ba100;
}
.breadcrumbs__link svg {
  margin: 0.15em 0.25em 0 -0.25em;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #ccd2e3;
  width: 1.25em;
  height: 1.25em;
}

@media screen and (min-width: 768px) {
  .breadcrumbs {
    margin: 16px 0 24px;
  }
}
@media screen and (min-width: 1004px) {
  .breadcrumbs {
    font-size: 15px;
  }
}
@media screen and (min-width: 1260px) {
  .breadcrumbs {
    margin: 20px 0 28px;
  }
  .breadcrumbs__item:not(:nth-last-child(2)) {
    display: block;
  }
  .breadcrumbs__link {
    display: inline;
  }
  .breadcrumbs__link svg {
    display: inline-block;
    vertical-align: top;
    margin: 0.15em 0.25em 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.page__thumb {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 12px;
}
.page__thumb--full-height {
  height: 100%;
}

.count-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.count-input__number {
  text-align: center;
  font-weight: 700;
  color: #585b75;
  border: 0;
  background: #f6f8fb;
}
.count-input__number--default {
  width: 32px;
  font-size: 14px;
}
.count-input__number--large {
  width: 44px;
  font-size: 16px;
}
.count-input__button {
  position: relative;
  color: #585b75;
  background: #f6f8fb;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.count-input__button:hover:not(:disabled) {
  background: #e6ebf4;
}
.count-input__button:disabled {
  color: #9799b1;
  cursor: not-allowed;
}
.count-input__button--default {
  height: 32px;
  width: 32px;
}
.count-input__button--large {
  width: 44px;
  height: 44px;
}
.count-input__button[data-decrement] {
  border-radius: 4px 0 0 4px;
}
.count-input__button[data-increment] {
  border-radius: 0 4px 4px 0;
}
.count-input__button[data-increment]:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 40%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.count-input__button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 40%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 94vw) {
  .count-input__button--default {
    width: 40px;
    height: 40px;
  }
  .count-input__button--large {
    width: 48px;
    height: 48px;
  }
  .count-input__number--default {
    width: 40px;
  }
  .count-input__number--large {
    width: 48px;
  }
}
.cart {
  padding: 4px 16px 16px;
  border: 1px solid #e6ebf4;
  border-radius: 12px;
}
.cart__table {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
  border-spacing: 0;
  border-collapse: collapse;
}
.cart__table tr {
  position: relative;
  display: block;
  border-bottom: 1px solid #e6ebf4;
  padding: 12px 0;
}
.cart__table td {
  display: block;
}
.cart__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  margin: 0 24px 8px 0;
  color: #585b75;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.cart__info:hover {
  color: #6ba100;
}
.cart__info-img {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 96px;
  border-radius: 4px;
}
.cart__action {
  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;
}
.cart__action-price {
  font-size: 1.15em;
  font-weight: 700;
  color: #21222c;
  white-space: nowrap;
}
.cart__remove {
  position: absolute;
  right: 0;
  top: 12px;
  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;
  width: 24px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  color: #585b75;
  border: 0;
  background: #f6f8fb;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.cart__remove:hover {
  background-color: #e6ebf4;
}
.cart__remove svg {
  width: 16px;
  height: 16px;
}
.cart__order {
  margin: 20px 0 0;
  color: #21222c;
}
.cart__order-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 12px;
}
.cart__clear {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5em;
  padding: 0;
  margin: 1em 0 0;
  color: #9799b1;
  font-size: 0.9em;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.cart__clear:hover {
  color: #585b75;
}
.cart__clear svg {
  width: 1.25em;
  height: 1.25em;
}

.order__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #21222c;
}
.order__title:not(:first-child) {
  margin-top: 28px;
}
.order__info {
  margin: 24px 0 0;
  padding: 16px 16px 24px;
  border: 1px solid #e6ebf4;
  border-radius: 12px;
}
.order__info-foot, .order__info-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #21222c;
}
.order__info-foot {
  margin: 20px 0 0;
}
.order__info-edit {
  color: #ccd2e3;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.order__info-edit:hover {
  color: #9799b1;
}
.order__info-edit svg {
  width: 20px;
  height: 20px;
}
.order__info-edit span {
  display: none;
}
.order__info-amount {
  font-size: 1.1em;
}
.order__table {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
  border-spacing: 0;
  border-collapse: collapse;
  color: #21222c;
}
.order__table tr {
  position: relative;
  display: block;
  border-bottom: 1px solid #e6ebf4;
  padding: 12px 0;
}
.order__table td {
  display: block;
}
.order__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  margin: 0 24px 8px 0;
  color: #585b75;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.order__product:hover {
  color: #6ba100;
}
.order__product-img {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 84px;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .cart {
    padding: 0;
    border: 0;
    border-radius: 0;
  }
  .cart__list {
    padding: 4px 16px 16px;
    border: 1px solid #e6ebf4;
    border-radius: 12px;
  }
  .cart__table {
    font-size: inherit;
  }
  .cart__table tr {
    padding: 16px 0;
  }
  .cart__info {
    gap: 12px;
    margin: 0 40px 8px 0;
  }
  .cart__info-img {
    width: 96px;
  }
  .cart__remove {
    top: 16px;
    width: 28px;
    height: 28px;
  }
  .cart__remove svg {
    width: 20px;
    height: 20px;
  }
  .cart__order {
    margin: 0;
  }
  .cart__order-info {
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 1004px) {
  .cart__list {
    padding: 24px 28px;
  }
  .cart__table {
    display: table;
  }
  .cart__table tr {
    display: table-row;
    padding: 0;
    border: 0;
  }
  .cart__table tr:not(:last-child) td {
    padding-bottom: 16px;
    border-bottom: 1px solid #e6ebf4;
  }
  .cart__table tr:not(:first-child) td {
    padding-top: 16px;
  }
  .cart__table td {
    display: table-cell;
  }
  .cart__table td:last-child {
    padding-left: 24px;
  }
  .cart__info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin: 0 24px 0 0;
  }
  .cart__info-img {
    width: 112px;
  }
  .cart__action {
    gap: 24px;
  }
  .cart__remove {
    position: static;
  }
  .order__form {
    padding: 0 15% 0 0;
  }
  .order__title {
    font-size: 20px;
  }
  .order__info {
    padding: 24px;
  }
  .order__info-edit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
  }
  .order__info-edit span {
    display: block;
  }
  .order__info-button {
    display: inline-block;
  }
  .order__table {
    display: table;
  }
  .order__table tr {
    display: table-row;
    padding: 0;
  }
  .order__table tr td {
    padding-bottom: 12px;
  }
  .order__table tr:not(:first-child) td {
    padding-top: 16px;
  }
  .order__table td {
    display: table-cell;
    vertical-align: top;
  }
  .order__table td:last-child {
    padding-left: 20px;
    white-space: nowrap;
  }
  .order__product {
    gap: 12px;
  }
}
@media screen and (min-width: 1260px) {
  .cart__list {
    padding: 28px 32px;
  }
  .cart__table td:last-child {
    padding-left: 32px;
  }
  .cart__info {
    gap: 20px;
    margin: 0 32px 0 0;
  }
  .cart__info-img {
    width: 120px;
  }
  .cart__action {
    gap: 32px;
  }
  .order__info {
    padding: 28px;
  }
  .order__info-head {
    margin: 0 0 12px;
  }
  .order__table {
    font-size: 16px;
  }
  .order__product {
    gap: 16px;
  }
}
@media screen and (min-width: 1260px) {
  .cart__list {
    padding: 36px 40px;
  }
  .cart__table tr:not(:last-child) td {
    padding-bottom: 20px;
  }
  .cart__table tr:not(:first-child) td {
    padding-top: 20px;
  }
  .cart__table td:last-child {
    padding-left: 52px;
  }
  .cart__info {
    margin: 0 80px 0 0;
  }
  .cart__info-img {
    width: 132px;
  }
  .cart__action {
    gap: 52px;
  }
  .cart__remove {
    width: 32px;
    height: 32px;
  }
  .order__info {
    padding: 32px;
  }
}
/*# sourceMappingURL=cart.css.map */
