/*  ** стили только для страницы оформления заказа **** */
.bred__link{
  margin-right: 10px;
}
.bred__this{
  padding-left: 0;
}

.bred__btn{
  float: right;
}
.container {
  max-width: 1750px;
}
.order__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 50px;
}
.fool__order{
  margin-top: 15px;
}
.info__order {
  margin-top: 35px;
}
.contact__section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
.order__form{
  margin-top: 25px;
}
.label__order {
  display: flex;
  margin-top: 10px;
  font-size: 12px;
}
.order__input {
  height: 2em;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid var(--text-light);
  outline: snow;
  width: 100%;
  padding-left: 10px;
  margin-top: 5px;
}
.radio__check {
  display: inline-block;
  visibility: hidden;
}

.radio__label{
  display: block;
  position: relative;
  padding-left: 1.5em;
}
.radio__label::before{
  content: '';
  position: absolute;
  left: 0;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid var(--design-dark);
  border-radius: 5px;
}

.radio__check:checked+.radio__label::before {
  background-color: var(--design-dark);
  background-image: url(../img/icon/check-white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}

.--light {
  color: gray;
}
.--gray{
  user-select: none;
  background-color: #d5d5d5;
}

.section__time-order{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.radio__label.--card{
  position: relative;
}

label {
  cursor: pointer;
}

.radio__label.--card::after {
  content: '';
  display: block;
  background-image: url(../img/icon/logo-privat24r.webp);
  width: 43px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75px;
  position: absolute;
  left: 180px;
  top: -2px;
}

.line{
  margin-top: 25px;
}
.--hr-line{
  display: block;
  padding-top: 17px;
  border-top: 2px solid gray;
}
.card__logo-bank{
  width: 75px;
  height: 35px;
}
.post__title{
  margin-top: 20px;
}
.total__order {
  display: flex;
  margin-top: 20px;
  align-items: baseline;
}

.total__price{
  margin-left: 15px;
}

#submit__btn{
  margin-top: 15px;
}




/* товары в корзине */
.card__section {
  width: 100%;
  height: fit-content;
  margin-top: 25px;
  background-color: rgb(230 230 230);
  padding: 15px;
  border: 1px solid gray;
  border-radius: 15px;
}

.card__wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  column-gap: 10px;
  margin-top: 10px;
}

.prod__img {
  width: 55px;
  border-radius: 10px;
}
.btn__del {
  cursor: pointer;
  /* display: inline-block; */
  padding: 6px 11px;
  border-radius: 20px;
  border: 1px solid;
  float: right;
}
.prod__price{
  color: gray;
}
.prod__sum {
  margin-top: 25px;
}
.col__section {
  margin-top: 15px;
}

.col__calc {
  display: flex;
  width: 125px;
  padding: 5px;
  border: 1px solid;
  border-radius: 7px;
}
.btn-minus {
  cursor: pointer;
  padding-right: 10px;
  padding-left: 5px;
  border-right: 1px solid;
}
.btn-plus {
  cursor: pointer;
  padding-left: 10px;
  padding-right: 5px;
  border-left: 1px solid;
}
.col-total {
  margin: 0 auto;
}
