section.cart {
  background: #F6F7F9;
  padding: 20px 0 100px;
}

section.cart .content {
  background: #FFFFFF;
  border-radius: 10px;
}

section.cart .content a {
    color: #63717f;
}

section.cart .content a:hover {
    color: #ed704a;
}

section.cart .content .head {
  font-family: Nunito;
  font-weight: bold;
  font-size: 20px;
  padding: 15px 20px;
  border-bottom: 1px solid #E6E6EB;
  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;
}

section.cart .content .head button {
  font-family: Nunito;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.005em;
  -webkit-font-feature-settings: 'tnum' on, 'lnum' on;
          font-feature-settings: 'tnum' on, 'lnum' on;
  color: #63717F;
  background: #fff;
}

section.cart .content .head button svg {
  fill: #63717F;
  margin-right: 4px;
  margin-bottom: 2px;
}

section.cart .content .head button:hover {
  color: #ED704A;
}

section.cart .content .head button:hover svg {
  fill: #ED704A;
}

section.cart .content .cart_body {
  padding: 20px;
}

section.cart .content .cart_body .cart_empty {
  padding: 30px 0 70px;
}

section.cart .content .cart_body .cart_empty picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.cart .content .cart_body .cart_empty h2 {
  font-family: Nunito;
  font-weight: bold;
  font-size: 30px;
  line-height: 40px;
  color: #ED704A;
  text-align: center;
}

section.cart .content .cart_body .cart_empty .lets_fix {
  font-family: Nunito;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #63717F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
}

section.cart .content .cart_body .cart_empty .lets_fix picture {
  margin-left: 7px;
}

section.cart .cart_item picture img {
    height: 116px;
}

section.cart .content .cart_body .cart_empty a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Nunito;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  background: #ED704A;
  padding: 8px 16px 8px 12px;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #ED704A;
  margin: auto;
}

section.cart .content .cart_body .cart_empty a:hover {
  background: #fff;
  color: #ED704A;
}

section.cart .content .cart_body .cart_empty a svg {
  margin-right: 8px;
}

section.cart .content .cart_body .cart_empty a svg path:nth-of-type(1) {
  fill: #fff;
}

section.cart .content .cart_body .cart_empty a svg path:nth-of-type(2) {
  fill: #ED704A;
}

section.cart .content .cart_body .cart_empty a:hover svg path:nth-of-type(1) {
  fill: #ED704A;
}

section.cart .content .cart_body .cart_empty a:hover svg path:nth-of-type(2) {
  fill: #fff;
}

section.cart .content .cart_body .cart_item {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content 1fr;
  grid-template-columns: 1fr max-content 1fr;
  grid-gap: 20px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #E6E6EB;
  margin-bottom: 20px;
}

section.cart .content .cart_body .cart_item:last-of-type {
  margin-bottom: 0;
}

section.cart .content .cart_body .cart_item .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.cart .content .cart_body .cart_item .description h6 {
  font-family: Nunito;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-left: 20px;
}

section.cart .content .cart_body .cart_item .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.cart .content .cart_body .cart_item .counter button {
  width: 36px;
  height: 36px;
  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;
  border-radius: 20px;
  border: 1px solid #E6E6EB;
  cursor: pointer;
  background: #fff;
}

section.cart .content .cart_body .cart_item .counter button svg {
  fill: #63717F;
}

section.cart .content .cart_body .cart_item .counter button:hover {
  border: 1px solid #ED704A;
}

section.cart .content .cart_body .cart_item .counter button:hover svg {
  fill: #ED704A;
}

section.cart .content .cart_body .cart_item .counter .number {
  font-family: Nunito;
  font-weight: 600;
  font-size: 16px;
  width: 80px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #E6E6EB;
  text-align: center;
  -webkit-font-feature-settings: 'tnum' on, 'lnum' on;
          font-feature-settings: 'tnum' on, 'lnum' on;
  color: #3C4248;
  margin: 0 10px;
}

section.cart .content .cart_body .cart_item .last {
  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;
}

section.cart .content .cart_body .cart_item .last .price {
  font-family: Nunito;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  -webkit-font-feature-settings: 'tnum' on, 'lnum' on;
          font-feature-settings: 'tnum' on, 'lnum' on;
  color: #3C4248;
}

section.cart .content .cart_body .cart_item .last .price span {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #63717F;
}

section.cart .content .cart_body .cart_item .last .close {
  width: 36px;
  height: 36px;
  border: 1px solid #E6E6EB;
  border-radius: 18px;
  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;
  cursor: pointer;
}

section.cart .content .cart_body .cart_item .last .close svg {
  fill: #63717F;
}

section.cart .content .cart_body .cart_item .last .close:hover {
  border: 1px solid #ED704A;
}

section.cart .content .cart_body .cart_item .last .close:hover svg {
  fill: #ED704A;
}

section.cart .content .cart_body .result {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content 1fr max-content max-content;
  grid-gap: 20px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 80px 0;
}

section.cart .content .cart_body .result .print {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 8px 8px 10px;
  border: 1px solid #63717F;
  border-radius: 20px;
  font-family: Nunito;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #63717F;
}

section.cart .content .cart_body .result .print svg {
  fill: #63717F;
  margin-right: 10px;
}

section.cart .content .cart_body .result .print:hover {
  border: 1px solid #ED704A;
  color: #ED704A;
}

section.cart .content .cart_body .result .print:hover svg {
  fill: #ED704A;
}

section.cart .content .cart_body .result .total,
section.cart .content .cart_body .result .sum {
  font-family: Nunito;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #63717F;
  justify-self: end;
}

section.cart .content .cart_body .result .total span,
section.cart .content .cart_body .result .sum span {
  color: #1D2021;
  margin-left: 5px;
}

section.cart .content .cart_body .result .checkout {
  font-family: Nunito;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 8px 16px;
  background: #ED704A;
  border-radius: 20px;
  border: 1px solid #ED704A;
}

section.cart .content .cart_body .result .checkout:hover {
  color: #ED704A;
  background: #fff;
}

@media (max-width: 900px) {
  section.cart {
    padding: 20px 0 50px;
  }

  section.cart .content .cart_body .cart_item .description {
    grid-column: 1/4;
    grid-row: 1/2;
  }

  section.cart .content .cart_body .cart_item .counter {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  section.cart .content .cart_body .cart_item .last {
    grid-column: 2/4;
    grid-row: 2/3;
  }

  section.cart .content .cart_body .result .print {
    grid-column: 1/5;
    grid-row: 1/2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  section.cart .content .cart_body .result .total {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  section.cart .content .cart_body .result .sum {
    grid-column: 3/4;
    grid-row: 2/3;
  }

  section.cart .content .cart_body .result .checkout {
    grid-column: 4/5;
    grid-row: 2/3;
  }
}

@media (max-width: 700px) {
  section.cart {
    padding: 20px 0 50px;
  }

  section.cart .content .cart_body .result {
    padding: 0 0 50px 0;
    grid-template-columns: 1fr;
  }

  section.cart .content .cart_body .result .print {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  section.cart .content .cart_body .result .total {
    grid-column: 1/2;
    grid-row: 2/3;
    justify-self: start;
  }

  section.cart .content .cart_body .result .sum {
    grid-column: 1/2;
    grid-row: 3/4;
    justify-self: start;
  }

  section.cart .content .cart_body .result .checkout {
    grid-column: 1/2;
    grid-row: 4/5;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media (max-width: 560px) {
  section.cart {
    padding: 20px 0 50px;
  }

  section.cart .content .cart_body .cart_item {
    grid-template-columns: 1fr;
  }

  section.cart .content .cart_body .cart_item .description {
    grid-column: 1/2;
    grid-row: 1/2;
    -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;
  }

  section.cart .content .cart_body .cart_item .description h6 {
    margin: 20px 0 0 0;
  }

  section.cart .content .cart_body .cart_item .counter {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  section.cart .content .cart_body .cart_item .last {
    grid-column: 1/2;
    grid-row: 3/4;
  }

  section.cart .content .cart_body .result .checkout {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 360px) {
  section.cart {
    padding: 20px 0 50px;
  }

  section.cart .content .cart_body .cart_empty {
    padding: 0;
  }

  section.cart .content .cart_body .cart_empty .lets_fix {
    font-size: 17px;
  }
}