@charset "UTF-8";
.window {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.window__title {
  font-size: 22px;
  margin-bottom: 10px;
}
.window__text {
  margin-bottom: 20px;
}
.window__wrapper {
  background: #FFFFFF;
  padding: 20px;
}
.window__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.shoppingcart {
  width: 100%;
  background: #F8F8F8;
  border-collapse: collapse;
  display: table;
}
.shoppingcart__item {
  border-top: 1px solid #EEE;
  position: relative;
  display: table-row;
}
@media only screen and (max-width: 767px) {
  .shoppingcart__item {
    display: grid;
    grid-template-columns: 125px auto;
    grid-template-areas: "A B" "A C" "A D" "A E";
    padding: 20px;
    row-gap: 10px;
  }
}
.shoppingcart__item-header {
  border: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #777777;
}
@media only screen and (max-width: 767px) {
  .shoppingcart__item-header {
    display: none;
  }
}
.shoppingcart__item-header > div {
  display: table-cell;
  padding: 10px 0;
  text-align: center;
}

.overlock {
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: 1px solid #EEE;
  background: #F8F8F8;
}
@media only screen and (max-width: 767px) {
  .overlock {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10px;
  }
}
.overlock__icon {
  background: url(/img/cabinet/checkbox.svg) no-repeat;
  width: 24px;
  height: 24px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  cursor: pointer;
}
.overlock__icon-active {
  background: url(/img/cabinet/checkbox-active.svg) no-repeat;
}

.item {
  padding: 20px 10px;
  vertical-align: top;
  display: table-cell;
}
.item__wrapper {
  width: 100px;
  height: 110px;
  overflow: hidden;
}
.item__wrapper img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .item {
    padding: 0;
  }
}
.item-photo {
  padding-left: 29px;
}
@media only screen and (max-width: 900px) {
  .item-photo {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .item-photo {
    padding-left: 0;
    grid-area: A;
    grid-row: 1/4;
  }
}
@media only screen and (max-width: 767px) {
  .item-name {
    grid-area: B;
  }
}
@media only screen and (max-width: 767px) {
  .item-size {
    grid-area: C;
  }
  .item-size::before {
    content: "Размер";
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #777777;
  }
}
@media only screen and (max-width: 767px) {
  .item-count {
    grid-area: D;
  }
  .item-count::before {
    content: "Кол-во шт.";
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #777777;
  }
}
.item-sum {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #000000;
  white-space: nowrap;
  text-align: right;
  padding-top: 23px;
}
@media only screen and (max-width: 767px) {
  .item-sum {
    padding: 0;
    grid-area: E;
    text-align: left;
  }
}
.item-sum::after {
  content: " ₽";
  font-family: "PT Sans", serif;
}
.item-delete {
  padding-right: 39px;
  padding-top: 25px;
}
@media only screen and (max-width: 900px) {
  .item-delete {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .item-delete {
    padding-top: 0;
    padding-right: 0;
    position: absolute;
    right: 5px;
    top: 5px;
  }
}
.item__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 5px;
  color: #000000;
  text-decoration: none;
}
.item__info {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #777777;
}
@media only screen and (max-width: 499px) {
  .item__info {
    display: none;
  }
}

.counter {
  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;
}
@media only screen and (max-width: 767px) {
  .counter {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.counter__value {
  background: #FFFFFF;
  width: 36px;
  height: 36px;
  border: none;
  border-top: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
  text-align: center;
  font-family: Open Sans;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #000000;
}
.counter__minus {
  border: 1px solid #D1D1D1;
  width: 36px;
  height: 36px;
  background: #FFFFFF url(/img/cart/minus.svg) no-repeat center;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.counter__minus:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0.7;
}
.counter__plus {
  border: 1px solid #D1D1D1;
  width: 36px;
  height: 36px;
  background: #FFFFFF url(/img/cart/plus.svg) no-repeat center;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.counter__plus:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0.7;
}

.sizeselector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #777777;
  white-space: nowrap;
  gap: 10px;
}
.sizeselector__select {
  background: #FFFFFF;
  height: 36px;
  border: 1px solid #D1D1D1;
  font-family: Open Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  padding: 0 5px;
  width: 100%;
}

.cabinet {
  width: 100%;
  display: grid;
  grid-template-columns: 295px auto;
  gap: 30px;
}
@media only screen and (max-width: 1200px) {
  .cabinet {
    grid-template-columns: auto;
  }
}
.cabinet__nav_wrapper {
  border: 1px solid #EEE;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cabinet__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.cabinet__link-exit {
  margin-top: 40px;
  position: relative;
}
.cabinet__link-exit::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  border-top: 1px solid #EEE;
  content: "";
}
.cabinet__link_icon {
  width: 30px;
  height: 30px;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 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;
}
.cabinet__link_text {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.cabinet__link_status {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 24px;
  height: 24px;
  background: #E8455F;
  color: #FFFFFF;
  text-align: center;
  border-radius: 100%;
  display: block;
  overflow: hidden;
}
.cabinet__link:hover, .cabinet__link-active {
  background: #F8F8F8;
  color: #E8455F;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.cabinet__link:hover svg > path, .cabinet__link-active svg > path {
  stroke: #E8455F;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.cabinet__link:hover > .cabinet__link_status, .cabinet__link-active > .cabinet__link_status {
  color: #FFFFFF;
}
.cabinet__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.cabinet__content > div, .cabinet__content > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.block {
  border: 1px solid #EEE;
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 499px) {
  .block {
    padding: 20px;
  }
}
.block__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}
.block__title > span::after {
  content: " ₽";
  font-family: "PT Sans", serif;
}
@media only screen and (max-width: 499px) {
  .block__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.block__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media only screen and (max-width: 499px) {
  .block__text {
    font-size: 12px;
    line-height: 16px;
  }
}
.block__wrapper {
  max-width: 895px;
}
.block__wrapper-user {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media only screen and (max-width: 499px) {
  .block__wrapper-user {
    grid-template-columns: auto;
  }
}
.block__wrapper-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.block__wrapper-password {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  max-width: 432px;
}
@media only screen and (max-width: 499px) {
  .block__wrapper-password {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.block__wrapper-payment, .block__wrapper-delivery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.block__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 389px) {
  .block__control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
.block__control_button {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #E8455F;
  border: none;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.block__control_button:hover {
  background: #000000;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.block__control_button:disabled {
  background: #444;
  opacity: 0.3;
}
.block__control_button-cancel {
  background: #777777;
}
.block__control_legend {
  font-size: 14px;
  color: #777777;
}
.block__control_legend > span {
  color: #E8455F;
}
.block__control_address {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #E8455F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.block__control_address::before {
  content: "";
  background: url(/img/cabinet/add.svg) no-repeat;
  width: 24px;
  height: 24px;
}
.block__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 1px solid #EEE;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  gap: 20px;
}
@media only screen and (max-width: 499px) {
  .address {
    padding: 20px;
  }
}
.address__wrapper {
  display: grid;
  width: 100%;
  row-gap: 5px;
  grid-template-columns: auto 68px;
  grid-template-areas: "A B" "C B";
}
@media only screen and (max-width: 499px) {
  .address__wrapper {
    row-gap: 10px;
    grid-template-areas: "A B" "C C";
  }
}
.address__id {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  grid-area: A;
}
.address__title {
  color: #444;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  grid-area: C;
}
.address__buttons {
  grid-area: B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.address__button {
  width: 24px;
  height: 24px;
  display: block;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.address__button:hover {
  opacity: 1;
}
.address__button-edit {
  background: url(/img/cabinet/edit.svg) no-repeat center;
}
.address__button-delete {
  background: url(/img/cabinet/delete.svg) no-repeat center;
}
.address + .address {
  border-top: none;
}
.address__edit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  max-width: 895px;
  width: 100%;
}
@media only screen and (max-width: 499px) {
  .address__edit {
    grid-template-columns: auto;
  }
}
.address__edit > .block__control {
  grid-column: span 2;
}
@media only screen and (max-width: 499px) {
  .address__edit > .block__control {
    grid-column: span 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 499px) {
  .address__edit > .block__control > .block__control_button {
    width: 100%;
  }
}

.field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
}
.field__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #000000;
}
.field__title > span {
  color: #E8455F;
}
.field__input {
  width: 100%;
  border: 1px solid #D1D1D1;
  height: 48px;
  padding: 15px 12px;
}
.field__wrapper {
  position: relative;
  width: 100%;
}
.field__switch {
  background: url(/img/cabinet/eye.svg) no-repeat center;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 15px;
  top: 12px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0.5;
}
.field__switch-active {
  opacity: 1;
}
.field__switch:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0.5;
}

.paymentoption,
.deliveryoption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  cursor: pointer;
}
.paymentoption__icon,
.deliveryoption__icon {
  background: url(/img/cabinet/option.svg) no-repeat;
  width: 24px;
  height: 24px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.paymentoption__icon-checkbox,
.deliveryoption__icon-checkbox {
  background: url(/img/cabinet/checkbox.svg) no-repeat;
}
.paymentoption__wrapper,
.deliveryoption__wrapper {
  font-size: 14px;
  font-weight: 400;
  color: #444;
}
.paymentoption__wrapper div,
.deliveryoption__wrapper div {
  font-size: 16px;
  color: #000000;
}
@media only screen and (max-width: 499px) {
  .paymentoption__wrapper div,
  .deliveryoption__wrapper div {
    font-size: 14px;
  }
}
.paymentoption__wrapper em, .paymentoption__wrapper a,
.deliveryoption__wrapper em,
.deliveryoption__wrapper a {
  font-size: 14px;
  display: block;
  margin-top: 5px;
  font-style: normal;
}
.paymentoption__wrapper span,
.deliveryoption__wrapper span {
  font-weight: 600;
  font-family: "PT Sans", serif;
}
.paymentoption-active .paymentoption__icon, .paymentoption-active .deliveryoption__icon,
.deliveryoption-active .paymentoption__icon,
.deliveryoption-active .deliveryoption__icon {
  background: url(/img/cabinet/option-active.svg) no-repeat;
}
.paymentoption-active .paymentoption__icon-checkbox, .paymentoption-active .deliveryoption__icon-checkbox,
.deliveryoption-active .paymentoption__icon-checkbox,
.deliveryoption-active .deliveryoption__icon-checkbox {
  background: url(/img/cabinet/checkbox-active.svg) no-repeat;
}

.historygrid {
  border: 1px solid #EEE;
  border-collapse: collapse;
  table-layout: fixed;
}
@media only screen and (max-width: 899px) {
  .historygrid {
    border: none;
  }
}
.historygrid__item {
  border-top: 1px solid #EEE;
  font-size: 14px;
  font-weight: 600;
}
@media only screen and (max-width: 899px) {
  .historygrid__item {
    display: grid;
    row-gap: 5px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    grid-template-columns: 135px auto;
    grid-template-rows: repeat(4, auto);
    padding: 15px 0px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media only screen and (max-width: 899px) {
  .historygrid__item-header {
    display: none;
  }
}
.historygrid__item-header .historyitem {
  padding: 10px 5px;
  font-weight: 400;
  color: #8E838E;
  background: #F8F8F8;
  text-align: center;
}
.historygrid__button {
  padding: 10px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFFFFF;
  background: #E8455F;
  border: 1px solid #E8455F;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.historygrid__button:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 1px solid #000000;
  background: #000000;
  color: #FFFFFF;
}
.historygrid__button-repeat {
  background: #FFFFFF;
  color: #E8455F;
  border: 1px solid #E8455F;
}

.historyitem {
  padding: 20px 5px;
  text-align: center;
}
.historyitem:first-child {
  padding-left: 15px;
}
@media only screen and (max-width: 899px) {
  .historyitem:first-child {
    padding-left: 0;
  }
}
.historyitem:last-child {
  padding-right: 15px;
}
@media only screen and (max-width: 899px) {
  .historyitem:last-child {
    padding-right: 0;
  }
}
@media only screen and (max-width: 899px) {
  .historyitem {
    padding: 0;
    text-align: left;
  }
}
.historyitem-id {
  color: #E8455F;
  white-space: nowrap;
}
@media only screen and (max-width: 899px) {
  .historyitem-id {
    text-align: left;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.historyitem-date {
  white-space: nowrap;
}
@media only screen and (max-width: 899px) {
  .historyitem-date {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-weight: 400;
  }
}
.historyitem-count {
  white-space: nowrap;
}
@media only screen and (max-width: 899px) {
  .historyitem-count {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    font-weight: 400;
    color: #777777;
  }
}
.historyitem-sum {
  white-space: nowrap;
}
.historyitem-sum::after {
  content: " ₽";
  font-family: "PT Sans", serif;
}
@media only screen and (max-width: 899px) {
  .historyitem-sum {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.historyitem-payment {
  white-space: nowrap;
}
@media only screen and (max-width: 899px) {
  .historyitem-payment {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    white-space: wrap;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
  }
  .historyitem-payment::before {
    content: "Оплата";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #777777;
  }
}
.historyitem-delivery {
  white-space: nowrap;
}
@media only screen and (max-width: 899px) {
  .historyitem-delivery {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    white-space: wrap;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
  }
  .historyitem-delivery::before {
    content: "Доставка";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #777777;
  }
}
.historyitem-pending {
  color: #F46210;
}
.historyitem-success {
  color: #48A51D;
}
.historyitem-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media only screen and (max-width: 899px) {
  .historyitem-buttons {
    margin-top: 20px;
    grid-column: span 2;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
}

.historytabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 499px) {
  .historytabs {
    width: 100%;
  }
}
.historytabs__item {
  padding: 0 26px 15px 26px;
  border-bottom: 2px solid #EEE;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #444;
  cursor: pointer;
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
}
@media only screen and (max-width: 499px) {
  .historytabs__item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center;
  }
}
@media only screen and (max-width: 420px) {
  .historytabs__item {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    padding: 0 14px 15px 14px;
  }
}
.historytabs__item:hover, .historytabs__item-active {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  color: #E8455F;
  border-color: #E8455F;
}

.historyfilter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 499px) {
  .historyfilter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.historyfilter__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #444;
  cursor: pointer;
}
.historyfilter__item > span {
  color: #8E838E;
}
.historyfilter__item::before {
  background: url(/img/cabinet/filter.svg) no-repeat;
  width: 20px;
  height: 20px;
  content: "";
}
.historyfilter__item-active::before {
  background: url(/img/cabinet/filter-active.svg) no-repeat;
}

.historypages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 499px) {
  .historypages {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.historypages__item {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid #D1D1D1;
  background: #FFFFFF;
  padding: 10px 5px;
  color: #444;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
.historypages__item:hover {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  background: #777777;
  color: #FFFFFF;
}
.historypages__item-active {
  background: #E8455F;
  color: #FFFFFF;
}
.historypages__dummy {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid #D1D1D1;
  background: #FFFFFF;
  padding: 10px 5px;
  color: #444;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.historypages__prev {
  width: 24px;
  height: 24px;
  background: url(/img/cabinet/pages-prev.svg) no-repeat center;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.historypages__prev:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.historypages__next {
  width: 24px;
  height: 24px;
  background: url(/img/cabinet/pages-next.svg) no-repeat center;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.historypages__next:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.notification {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.notification__status {
  border-radius: 5px;
  padding: 3px 7px;
  font-size: 10px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.notification__status-reed {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #D1D1D1;
}
.notification__status-new {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #E8455F;
  color: #FFFFFF;
}
.notification__item {
  font-size: 14px;
  padding: 20px 74px 20px 30px;
  gap: 10px;
  border: 1px solid #EEE;
  background: #F8F8F8;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 499px) {
  .notification__item {
    padding: 20px 54px 20px 20px;
  }
}
.notification__close {
  background: url(/img/cabinet/close.svg) no-repeat;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.notification__close:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (max-width: 499px) {
  .notification__close {
    right: 20px;
  }
}

.notificationfilter {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  color: #E8455F;
}
@media only screen and (max-width: 499px) {
  .notificationfilter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.notificationfilter__item {
  cursor: pointer;
}
.notificationfilter__item-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.notificationfilter__item-check::before {
  content: "";
  background: url(/img/cabinet/checkall.svg) no-repeat center;
  width: 20px;
  height: 20px;
  display: block;
}
.notificationfilter__item-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.notificationfilter__item-delete::before {
  content: "";
  background: url(/img/cabinet/removeall.svg) no-repeat center;
  width: 20px;
  height: 20px;
  display: block;
}

.loader {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.loader-complete {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dummy {
  display: none;
}/*# sourceMappingURL=cabinet.css.map */