.cart {
  width: 86%;
  margin: 30px auto 0;
}

.cart__total-price {
  line-height: 22px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  margin: 15px 0;
  display: none;
}

.cart__total-price-span {
  line-height: 22px;
  font-size: 20px;
  font-weight: 600;
  color: #009AEB;
  margin: 0;
}

.cart__cards {
  display: flex;
  flex-direction: column;
}

.cart__card {
  width: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  box-shadow: 3px 3px 5px #e6e6e6;
  margin: 5px 0;
  position: relative;
}

.cart__button_remove {
  position: absolute;
  right: 15px;
  top: 12px;
}

.cart__card-product {
  border-bottom: 1px solid #e6e6e6;
  margin: 10px 0 0;
  padding: 0 15px 10px;
}

.cart__card-product-price {
  line-height: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #009AEB;
  margin-top: 16px;
  margin-bottom: 8px;
}

.cart__card-product-title {
  line-height: 18px;
  font-size: 16px;
  font-weight: bold;
  margin: 16px 0 8px;
}

.cart__card-product-prop {
  line-height: 16px;
  font-size: 14px;
  font-weight: normal;
  margin: 3px 0;
}

.cart__file-download {
  border-bottom: 1px solid #e6e6e6;
  margin: 10px 0 0;
  padding: 0 15px 10px;
}

.cart__file-download-lable {
  height: 26px;
  display: block;
  line-height: 26px;
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  border: 1px solid #e6e6e6;
  border-radius: 99em;
  padding: 0 0 0 10px;
}

.cart__file-download-input {
  display: none;
}

.cart__card-buttons {
  display: flex;
  justify-content: space-between;
  margin: 5px 0 10px;
  padding: 0 10px;
}

.cart__buttons-quantity {
  display: flex;
}

.cart__button  {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.cart__input-quantity {
  width: 70px;
  height: 26px;
  box-sizing: border-box;
  flex-grow: 1;
  text-align: center;
  background: transparent;
  border: 1px solid #8B8B8B;
  border-radius: 99em;
  overflow: hidden;
  margin: 0 10px;
  padding: 0 5px;
}

.cart__buttons-quantity-title {
  line-height: 14px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  text-transform: lowercase;
  color: #8B8B8B;
  margin: 0 0 3px 0;
}

.cart__input-quantity:focus {
  outline: none;
  border: 1px solid #4DD6FF;
}

.cart__input-quantity::-webkit-inner-spin-button,
.cart__input-quantity::-webkit-outer-spin-button {
  opacity: 0;
}

.cart__order {

}

.cart__order-title {
  line-height: 24px;
  font-size: 20px;
  font-weight: 600;
  color: #009AEB;
}

.cart__order-subtitle {
  line-height: 20px;
  font-size: 18px;
  font-weight: normal;
  color: #8B8B8B;
}

.cart__order-label {
  width: 70%;
  position: relative;
  margin: 0;
}

.cart__order-radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 0;
}

.cart__order-text {
  line-height: 26px;
  font-size: 16px;
  font-weight: normal;
  margin: 0 0 0 30px;
}

.cart__order-radio:checked + .cart__order-text:after {
  opacity: 1;
}

.cart__order-text:before {
  width: 16px;
  height: 16px;
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  border: 1px solid #8B8B8B;
  border-radius: 99em;
  transition: .2s;
  content: '';
}

.cart__order-text:after {
  width: 12px;
  height: 12px;
  position: absolute;
  top: calc(50% + 5px);
  left: 3px;
  border-radius: 99em;
  background: #4DD6FF;
  opacity: 0;
  transition: .2s;
  content: '';
}

.cart__order-radio:focus + .cart__order-text:before {
  border: 1px solid #4DD6FF;
}

.cart__order-fieldset {
  border: none;
  margin: 20px 0;
  padding: 0;
}

.cart__input {
  position: relative;
}

.cart__order-input {
  width: 100%;
  height: 26px;
  box-sizing: border-box;
  flex-grow: 1;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
  color: #000000;
  background: transparent;
  border: 1px solid #8B8B8B;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 0 0;
  padding: 0 20px;
}

.cart__order-input-text {
  height: 50px;
  border-radius: 13px;
  resize: none;
}

.cart__order-input-text-comment {
  height: 75px;
}

.cart__order-input::placeholder {
  color: #C4C4C4;
}

.cart__order-input:focus {
  outline: none;
  border: 1px solid #4DD6FF;
}






