@charset "UTF-8";
/*Обнуление*/
* {
  margin: 0;
  padding: 0;
  border: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input {
  outline: none;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*----------------*/
body {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

[class*=main__container] {
  padding-left: calc(15px + 25 * calc(100vw - (320px)) / 1120);
  padding-right: calc(15px + 25 * calc(100vw - (320px)) / 1120);
}

/* containers
[class*="__container"]{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


@media(max-width: 1199.98px){
    [class*="__container"]{
        max-width: 970px;
    }
}

@media(max-width: 990.98px){
    [class*="__container"]{
        max-width: 750px;
    }
}

@media(max-width: 767.98px){
    [class*="__container"]{
        max-width: 650px;
    }
}*/
.header {
  z-index: 5;
  position: fixed;
  width: 100%;
  background-color: #141920;
  display: grid;
  grid-template-rows: 1fr;
  padding-top: 2px;
  padding-bottom: 2px;
}
.header__container {
  padding: 0px 15px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__logo {
  padding: 5px;
  margin-right: 20px;
  cursor: pointer;
}
.header__logo img {
  min-width: 100%;
  height: 55px;
}
.header__location {
  padding: 10px;
  cursor: pointer;
}
.header__search {
  border-radius: 6px;
  border: 2px solid transparent;
}
.header__search:focus {
  border: 2px solid #f19d38;
}
.header__search.__active {
  border: 2px solid #f19d38;
}
.header__links {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
.header__links a {
  color: #fff;
}
.header__link:first-child {
  display: flex;
  flex: 0 1 50%;
  flex-direction: column;
  margin-right: 5px;
  padding: 13px 13px 15px 13px;
}
.header__link:first-child .link__text-light {
  font-weight: 400;
  margin-bottom: 5px;
}
.header__link:last-child {
  flex: 0 1 50%;
  align-items: flex-end;
  display: flex;
  text-align: center;
  padding: 12px 8px 15px 8px;
  justify-content: center;
}
.header__burger {
  display: none;
}
.header__logo:hover, .header__location:hover, .header__links > .header__link:hover {
  border: 1px solid #fff;
}
.header__logo, .header__location, .header__links > .header__link {
  border: 1px solid transparent;
}

.nav-header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  margin-right: 20px;
}

.location__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.location__icon {
  width: calc(18px + 7 * calc(100vw - (320px)) / 1120);
  margin-right: 5px;
}
.location__text {
  display: flex;
  flex-direction: column;
  max-width: 120px;
  font-size: calc(14px + 4 * calc(100vw - (320px)) / 1120);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nav-header-centr {
  flex: 1 1 auto;
  margin-right: 20px;
  padding: 10px 0;
}

.search {
  display: flex;
  height: 50px;
}
.search__input {
  flex: 1 1 auto;
  padding: 10px;
  border-radius: 4px 0 0 4px;
  font-size: calc(16px + 4 * calc(100vw - (320px)) / 1120);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
}
.search__btn {
  flex: 0 1 45px;
  padding: 8px 10px;
  background: #f4bf76;
  text-align: center;
  border-radius: 0 4px 4px 0;
}
.search__btn img {
  width: 100%;
}
.search__btn:hover {
  background: #f7ac43;
}

.nav-header-right {
  width: 25%;
  flex: 0 1 25%;
}

.link {
  display: block;
}
.link__sprite {
  position: relative;
}
.link__sprite img {
  width: calc(38px + 12 * calc(100vw - (320px)) / 1120);
}
.link__counter {
  position: absolute;
  top: -8px;
  left: calc(50% + 9px);
  transform: translateX(-50%);
  font-weight: 700;
  color: #ff9900;
  font-size: calc(16px + 4 * calc(100vw - (320px)) / 1120);
}
.link__text {
  font-size: calc(14px + 4 * calc(100vw - (320px)) / 1120);
  font-style: normal;
  line-height: 15px;
  font-weight: 700;
}

.page {
  padding: 110px 0 0 0;
  margin-bottom: 30px;
  flex: 1 1 auto;
}

.cards {
  padding-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 10px;
}

.card {
  width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(20, 25, 32, 0.0941176471);
  padding: 15px 15px 15px 10px;
  border-radius: 5px;
  opacity: 0;
}
.card__img {
  flex: 0 1 50%; /* 234/659 */
  margin-bottom: 20px;
}
.card__img img {
  /*
  position: absolute;//
  top: 0;//
  left: 0;//
  width: 100%;//
  height: 100%;//
  padding-bottom: 100%;//*/
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  max-width: 100%;
  height: calc(180px + 70 * calc(100vw - (320px)) / 1120);
  width: 100%;
}
.card__content {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  flex: 0 1 50%; /* 155/659 */
}
.card__text {
  display: flex;
  align-items: center;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  min-height: 45px;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.card__rating {
  display: flex;
  -moz-column-gap: 2px;
       column-gap: 2px;
  margin-bottom: 10px;
  align-items: flex-end;
}
.card__rating .rating__stars {
  display: flex;
  justify-content: space-between;
  margin-right: 5px;
  align-items: flex-end;
  font-size: 1.25rem;
}
.card__rating .rating__stars li {
  list-style: none;
}
.card__rating .rating__stars img {
  max-width: 20px;
  width: 100%;
}
.card__rating .stars-quantity {
  margin-right: 7px;
}
.card__rating .stars {
  display: flex;
}
.card__rating .stars__star.last-star {
  width: 16px;
  overflow: hidden;
}
.card__rating .stars__star.last-star img {
  -o-object-fit: cover;
     object-fit: cover;
}
.card__rating .rating__votes {
  color: #017cb6;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 600;
}
.card__price {
  font-size: calc(16px + 6 * calc(100vw - (320px)) / 1120);
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.card__quality {
  width: 30%;
  outline: none;
  color: rgb(33, 33, 33);
  background-color: rgb(240, 240, 240);
  border: 1px solid rgb(213, 217, 217);
  border-radius: 8px;
  padding: 3px 5px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
  margin-bottom: 10px;
}
.card__quality:hover {
  background: #fff;
}
.card__link {
  font-size: calc(16px + 2 * calc(100vw - (320px)) / 1120);
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
}
.card__link li {
  margin-bottom: 10px;
  margin-right: 8px;
}
.card__link li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.card__link a {
  color: #ff9900;
}
@media (hover: hover) {
  .card__link a:hover {
    color: #1c1f25;
    -webkit-text-decoration: underline #ff9900;
            text-decoration: underline #ff9900;
  }
}
@media (hover: none) {
  .card__link li:active {
    -webkit-text-decoration: underline #ff9900;
            text-decoration: underline #ff9900;
  }
  .card__link li:active a {
    color: #1c1f25;
  }
}
.card__message {
  display: flex;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease-out 0s;
  font-size: 18px;
  color: #40c057;
  font-weight: 600;
}
.card__message img {
  overflow: hidden;
  margin-right: 15px;
}
.card__message.__active {
  opacity: 1;
}
.card__btn {
  flex: 0 1 6%; /* 43/659 */
  width: 100%;
  padding: 8px;
  border-radius: 50px;
  font-size: calc(16px + 4 * calc(100vw - (320px)) / 1120);
  color: rgb(33, 33, 33);
  background-color: rgb(255, 216, 20);
  border: 1px solid rgb(252, 210, 0);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
}
@media (hover: hover) {
  .card__btn:hover {
    background: #333;
    border: 1px solid rgb(33, 33, 33);
    color: rgb(255, 216, 20);
  }
}
@media (hover: none) {
  .card__btn:active {
    background: #333;
    border: 1px solid rgb(33, 33, 33);
    color: rgb(255, 216, 20);
  }
}

.card.show {
  opacity: 1;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #232f3e;
}
.footer__btn {
  width: 100%;
  text-align: center;
  color: #fff;
  background: #37475a;
  padding: 15px 0;
  line-height: 19px;
  font-size: 14px;
  font-size: calc(16px + 2 * calc(100vw - (320px)) / 1120);
  margin-bottom: 40px;
}
.footer__btn:hover {
  background: #465a74;
}
.footer__content {
  width: 100%;
}
.footer__items {
  display: grid;
  grid-template: 1fr/repeat(auto-fit, minmax(120px, 1fr));
  -moz-column-gap: 80px;
       column-gap: 80px;
  margin-bottom: 40px;
  padding-left: calc(40px + 40 * calc(100vw - (320px)) / 1120);
  padding-right: calc(40px + 40 * calc(100vw - (320px)) / 1120);
}
.footer__logo_box {
  position: relative;
  border-top: 1px solid rgba(221, 221, 221, 0.6235294118);
  background: inherit;
  display: flex;
  justify-content: center;
  margin: 0 0 30px;
}
.footer__logo_box .footer__logo {
  max-width: 200px;
  text-align: center;
  padding: 10px 5px;
}
.footer__logo_box img {
  width: 100%;
}
.footer__text {
  text-align: center;
  background-color: #131a22;
  padding: 30px 0 60px;
  color: #fff;
  line-height: 30px;
  font-size: 16px;
}
.footer__text span {
  padding: 0 10px;
}

.item {
  margin-bottom: 15px;
}
.item__title {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  margin: 6px 0 14px 0;
}
.item__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  line-height: 20px;
}
.item__link {
  margin-bottom: 15px;
}
.item__link a {
  color: #fff;
  font-size: 14px;
  line-height: 16px;
}
.item__link:hover {
  text-decoration: underline;
}

.checkout__container {
  min-height: 50vh;
  padding-left: calc(15px + 85 * calc(100vw - (320px)) / 1120);
  padding-right: calc(15px + 85 * calc(100vw - (320px)) / 1120);
}

.checkout__title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 18px;
}
.checkout__content {
  display: grid;
  grid-template: 1fr/1fr 28.5%;
  justify-content: space-between;
  align-items: center;
  font-size: calc(14px + 4 * calc(100vw - (320px)) / 1120);
}
.order {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.order:first-child {
  border-top: 2px solid #e7e7e7;
}
.order__cart {
  margin-bottom: 15px;
  padding: 20px 0 20px 20px;
  border-bottom: 2px solid #e7e7e7;
}

.cart__delivery-date {
  color: rgb(0, 113, 133);
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 22px;
}
.cart__content {
  display: grid;
  grid-template: 1fr/30% 1fr 30% 1fr 33%;
  align-items: center;
}
.cart__img {
  height: 100%;
  width: 100%;
  position: relative;
}
.cart__img img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.cart__info {
  height: auto;
  display: flex;
  flex-direction: column;
  grid-column: 3/4;
  font-weight: 500;
  margin-right: 15px;
}
.cart__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: calc(20px + 5 * calc(100vw - (320px)) / 1120);
  line-height: calc(25px + 10 * calc(100vw - (320px)) / 1120);
  max-width: 100%;
  margin-bottom: 8px;
  color: #0f1111;
}
.cart__price {
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 5px;
  color: #b12704;
}
.cart__quantity {
  display: flex;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
.cart__quantity .quantity-label {
  margin: 0px 10px 0;
}
.cart__quantity .quantity-label.__hidden {
  opacity: 0;
  display: none;
}
.cart__quantity-change {
  display: none;
}
.cart__quantity-change.__active {
  text-align: center;
  display: block;
  width: 50%;
  margin-left: 10px;
  padding: 6px;
  border-radius: 20px;
  background: #f2c200;
  color: #000;
  font-weight: 700;
  font-size: calc(14px + 4 * calc(100vw - (320px)) / 1120);
  line-height: calc(18px + 2 * calc(100vw - (320px)) / 1120);
  cursor: pointer;
}
.cart__btn {
  font-size: calc(16px + 2 * calc(100vw - (320px)) / 1120);
  background: transparent;
  color: rgb(0, 113, 133);
  font-weight: 650;
  line-height: 24px;
  padding: 5px;
}
.cart__btn_del {
  margin-left: 10px;
}
@media (max-width: 1500px) {
  .cart__btn-box {
    margin-top: 10px;
  }
}
.cart__btn:hover {
  color: #b12704;
}
.cart__delivery-options {
  grid-column: 5/6;
}

.delivery-options {
  display: flex;
  flex-direction: column;
}
.delivery-options__title {
  font-weight: 700;
  margin-bottom: 10px;
}

.delivery-option {
  display: flex;
  margin-bottom: 15px;
}
.delivery-option__content {
  align-self: center;
  margin-left: 8px;
}
.delivery-option__date {
  color: rgb(0, 113, 133);
  font-weight: 600;
  margin-bottom: 5px;
  line-height: calc(18px + 6 * calc(100vw - (320px)) / 1120);
}
.delivery-option__price {
  color: rgb(120, 120, 120);
  font-size: 15px;
}

.order-payment {
  align-self: flex-start;
  margin-left: 15px;
  padding: 18px 18px 5px;
  border-radius: 3px;
  border: 2px solid #e7e7e7;
}
.order-payment__info {
  margin-bottom: 20px;
}
.order-payment__title {
  font-weight: 700;
  margin-bottom: 12px;
}
.order-payment__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.order-payment__row div:first-child {
  margin-right: 10px;
}
.order-payment__row:last-child {
  border-top: 2px solid #e7e7e7;
  padding-top: 18px;
  color: #b12704;
  font-weight: 650;
}
.order-payment__use-service {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.order-payment__use-service input {
  cursor: pointer;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-left: 10px;
}
.order-payment__btn {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 8px;
  background-color: rgb(247, 202, 0);
  border: 1px solid rgb(242, 194, 0);
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
}

.page__title {
  font-weight: 700;
  font-size: calc(20px + 15 * calc(100vw - (320px)) / 1120);
  margin-bottom: 20px;
}

.orders__order {
  background-color: rgba(241, 241, 241, 0.3215686275);
  border-radius: 35px;
  border-right: 8px solid rgba(95, 95, 95, 0.2196078431);
  box-shadow: 7px 7px 20px 0px #b5b5b5;
}

.order {
  margin-bottom: 25px;
}
.order__title-body {
  /* display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; */
  display: grid;
  background: #141920;
  color: #fff;
  border-radius: 20px 15px 0 0;
  padding: 15px 10px;
  row-gap: 10px;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 30px;
}
@media (min-width: 767.777px) {
  .order__title-body {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}
.order {
  padding: 0;
}
.order__date-block {
  margin-right: 10%;
}

.title-body__left {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
}
.date-block__label {
  margin-bottom: 5px;
}
.ord-label {
  font-weight: 500;
  font-size: calc(18px + 4 * calc(100vw - (320px)) / 1120);
}

.ord-text {
  font-size: calc(16px + 2 * calc(100vw - (320px)) / 1120);
  margin-left: 10px;
  background-color: #394c64;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
}

.total__label {
  margin-bottom: 5px;
}
.id__label {
  margin-bottom: 5px;
}
.product {
  padding: 0px 10px 0px 10px;
  border-bottom: 2px solid #e7e7e7;
  display: grid;
  grid-template-rows: minmax(75px, 180px) 1fr minmax(45px, 50px);
  row-gap: 10px;
  margin-bottom: 35px;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.product:last-child {
  margin-bottom: 15px;
  border-bottom: 0px solid #e7e7e7;
}
@media (min-width: 767.777px) {
  .product {
    grid-template-columns: minmax(75px, 195px) 1fr minmax(200px, 1fr);
    grid-row: 1fr;
  }
}
@media (min-width: 767.777px) {
  .product__img img {
    height: 100%;
    max-width: 255px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.product__img img {
  border-radius: 15px;
  max-height: 180px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.product__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767.777px) {
  .product__details {
    margin-bottom: 5px;
  }
}
.product__name {
  font-weight: 700;
  font-size: calc(16px + 2 * calc(100vw - (320px)) / 1120);
  margin-bottom: 10px;
}
.product__delivery-date {
  font-size: calc(16px + 2 * calc(100vw - (320px)) / 1120);
  margin-bottom: 5px;
}
.product__quantity {
  font-size: calc(16px + 2 * calc(100vw - (320px)) / 1120);
  margin-bottom: 10px;
}
.product__buy-again-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 6%; /* 43/659 */
  width: 100%;
  max-width: 250px;
  padding: 5px;
  border-radius: 50px;
  font-size: calc(16px + 2 * calc(100vw - (320px)) / 1120);
  color: rgb(33, 33, 33);
  background-color: rgb(255, 216, 20);
  border: 1px solid rgb(252, 210, 0);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
}
.product__buy-again-btn img {
  height: 25px;
  width: 25px;
  margin-right: 5px;
}
.track-package-btn {
  font-size: calc(16px + 2 * calc(100vw - (320px)) / 1120);
  padding: 8px;
  width: 100%;
  max-width: 250px;
  color: rgb(33, 33, 33);
  background: white;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
}

.page {
  background: rgba(33, 33, 33, 0.071);
}

.back-to-orders-link {
  display: inline-block;
  position: relative;
  float: right;
  padding: 10px 15px 10px 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.37);
  border-radius: 15px;
  text-align: right;
}
.back-to-orders-link a {
  position: relative;
  font-size: calc(14px + 6 * calc(100vw - (320px)) / 1120);
  color: #000000;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
}
.back-to-orders-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.37);
  z-index: 1;
  opacity: 0;
  border-radius: 15px;
  background-color: #10111a;
  transition: all 0.3s ease-in-out 0s;
}
@media (hover: hover) {
  .back-to-orders-link:hover::before {
    width: 100%;
    opacity: 0.9;
  }
  .back-to-orders-link:hover {
    cursor: pointer;
  }
  .back-to-orders-link:hover a {
    color: #ffae00;
  }
}
@media (hover: none) {
  .back-to-orders-link:active a {
    color: #ff9900;
  }
}

.text-grey {
  color: #757575;
  font-weight: 600;
  margin-bottom: 5px;
}

.order-tracking {
  margin-top: 35px;
}
.order-tracking__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.order-tracking__map {
  flex: 0 1 51%;
}
.order-tracking__map iframe {
  border-radius: 15px;
  height: 100%;
  width: 100%;
}

.tracking-info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin-right: 25px;
  font-size: calc(14px + 4 * calc(100vw - (320px)) / 1120);
  color: #000;
  font-weight: 600;
  padding: 10px 15px 10px 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.37);
  border-radius: 15px;
}

.product-id {
  margin-bottom: 15px;
  font-weight: 700;
}

.product-name {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.delivery-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}
.delivery-date img {
  max-width: 30px;
  margin-right: 8px;
}

.product-quantity {
  margin-bottom: 15px;
}

.product-img-block {
  margin-bottom: 15px;
}
.product-img-block img {
  max-width: 50%;
  border-radius: 15px;
}

/* .product-img {
    img {
        width: 10px;
        border-radius: 5px;
    }
    margin-bottom: 15px;
} */
.tracking-progress__labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #ff5f0f;
}
.tracking-progress__bar {
  width: 100%;
  height: 15px;
  background-color: #aeaeae;
  border-radius: 15px;
  box-shadow: 2px 3px 10px 1px rgba(0, 0, 0, 0.4196078431);
}

.progress-bar__line {
  width: 15%;
  height: 100%;
  border-radius: 15px;
  background-color: rgb(255, 154, 47);
  box-shadow: 2px 1px 1px rgba(255, 154, 47, 0.457);
}

@media (max-width: 767.777px) {
  .order-tracking__container {
    flex-direction: column;
  }
  .tracking-info {
    margin-bottom: 25px;
    margin-right: 0;
  }
  .product-img-block {
    margin-bottom: 15px;
  }
  .product-img-block img {
    min-width: 100%;
    height: 85%;
    border-radius: 15px;
  }
}
@media (max-width: 1024px) {
  .checkout__content {
    grid-template: auto 1fr/1fr;
    row-gap: 35px;
  }
  .checkout__order-payment {
    grid-row: 1/2;
    margin-left: 0;
  }
  .cart__content {
    align-items: start;
    grid-template: minmax(150px, 350px) minmax(80px, 1fr) minmax(120px, 200px)/1fr;
    grid-template-columns: 1fr;
    row-gap: 35px;
  }
  .cart .cart__delivery-options {
    grid-column: auto;
  }
  .cart__info {
    grid-column: auto;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .cart__quantity {
    justify-content: start;
  }
  .cart__quantity span {
    margin-left: 0px;
  }
  .cart__quantity-change {
    width: auto;
    margin-bottom: 0;
  }
  .cart__quantity-box {
    margin-bottom: 0;
  }
  .cart__btn-box {
    margin-left: 10px;
    margin-top: 0;
  }
}
@media (max-width: 767.777px) {
  .header {
    height: 75px;
    /* &__container {
               flex-direction: column;
               flex: 1 1 auto;
               padding-top: 5px;

               .nav-header-left,
               .nav-header-centr {
                   flex: 1 1 auto;
                   width: auto;
                   margin-right: 0;
               }
               .nav-header-left {
                   margin-bottom: 5px;
               }
           }

    */
  }
  .header__container .nav-header-left {
    margin-right: 5px;
  }
  .header__container .nav-header-left a {
    width: 100px;
  }
  .header__container .nav-header-left a img {
    -o-object-fit: cover;
       object-fit: cover;
    color: #fff;
    height: calc(50px + 5 * calc(100vw - (320px)) / 448);
  }
  .header__container .nav-header-centr {
    width: 85%;
  }
  .header__container .nav-header-centr form {
    max-width: 85%;
  }
  .header .location__text {
    display: none;
  }
  .header .location__icon {
    width: 100%;
    margin-right: 0;
  }
  .header .location__icon img {
    height: calc(25px + 15 * calc(100vw - (320px)) / 448);
  }
  .header__logo {
    margin-right: 0;
    padding: calc(0px + 8 * calc(100vw - (320px)) / 448);
  }
  .header__burger {
    transition: all 0.3s ease 0s;
    position: absolute;
    bottom: 35%;
    right: 15px;
    display: block;
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header__burger span {
    transition: all 0.3s ease 0s;
    position: relative;
    top: 0px;
    background: #fff;
    height: 3px;
    width: 100%;
  }
  .header__burger::after, .header__burger::before {
    transition: all 0.3s ease 0s;
    position: absolute;
    left: 0;
    content: "";
    background: #fff;
    height: 3px;
    width: 100%;
  }
  .header__burger::after {
    bottom: 0px;
  }
  .header__burger::before {
    top: 0px;
  }
  .header .nav-header-right {
    transition: all 1s ease 0s;
    transform: translateX(-100vw);
    position: fixed;
    top: 0px;
    left: 0;
  }
  .header .nav-header-right.__active {
    padding: 5px 0;
    transition: all 1s ease 0s;
    position: fixed;
    background: rgba(20, 25, 32, 0.8156862745);
    transform: translateX(0%);
    top: 75px;
    left: 0;
    width: 100%;
    z-index: 55;
  }
  .header .nav-header-centr {
    padding: 0;
  }
  .header .search__input {
    min-width: 60px;
  }
  .header__link:first-child, .header__link:last-child {
    flex: 0 1 auto;
  }
  .header-checkout {
    height: 80px;
  }
  .header-checkout .nav-header-centr {
    display: none;
  }
  .header-checkout .header__burger {
    display: none;
  }
  .header-checkout .nav-header-left {
    width: auto;
  }
  .header__burger.__active span {
    display: none;
  }
  .header__burger.__active::after {
    transform: rotate(45deg);
    bottom: 8px;
  }
  .header__burger.__active::before {
    top: 8px;
    transform: rotate(-45deg);
  }
  .page {
    padding-top: 160px;
  }
  .cart__info {
    margin-bottom: 5px;
  }
}
@media (max-width: 377.777px) {
  .header {
    height: 110px;
  }
  .header__container {
    justify-content: center;
    flex-direction: column;
  }
  .header__container .nav-header-centr {
    margin-right: 0;
  }
  .header__container .nav-header-right.__active {
    top: 110px;
  }
  .header .location {
    display: none;
  }
  .header__burger {
    bottom: 20%;
  }
}