.container {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.order-wrap {
  width: 100%;
}
.basket-summ-wrap {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  padding-right: 10px;
}
.order-basket {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.order-form {
  display: flex;
  flex-direction: column;
}
.order-form-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  padding: 20px;
  position: relative;
  border-radius: 5px;
  margin-bottom: 200px;
}
.order-form .input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  border: 1px solid #535353;
  border-radius: 5px;
}
.order-button {
  max-width: 70%;
  margin: 0 auto;
  margin-top: 10px;
  cursor: pointer;	
  padding: 15px;
  background: #3898ec;
  color: #fff;
  border: 1px solid #3898ec;
}

.goods-item {
  margin: 0 auto;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background: #3898ec18;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  padding: 15px;
}

.item-title {
  margin: 0;
  margin-bottom: 5px;
}
.item-price {
  margin-right: 10px;
  margin-left: auto;
  font-weight: 700;
}
.item-plus {
  margin-right: 10px;
}
.item-count {
  width: 35px;
  margin: 0 10px;
  text-align: center;
}

.goods-item a {
  text-decoration: none;
  font-size: 16px;
  color: #000;
}

.good {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.item-price,
.item-manages {
  display: flex;
  justify-content: center;
  width: 24%;
  margin-left: 1%;
}

.good-article {
  color: #b5b5b5;
}
