:root {
  --design-dark: rgba(10, 150, 220, 1);
  /* --design-light: rgb(106, 202, 124); */
  --text-dark: rgb(20, 20, 20);
  --text-light: rgba(131, 79, 29, 1);
  --text-white: rgba(255, 255, 255, 1);
  --black: rgb(0, 0, 0);
  --white: rgb(255, 255, 255);
  --blu_button_hovering: #0067d8;
  /* --btn-dark: rgb(121, 0, 0); */
  /* --btn-light: rgb(255, 113, 113); */
  /* --btn-hover: rgb(141, 64, 64); */
  --grad:linear-gradient(90deg, rgba(0, 0, 0, 1)0%, rgba(0, 0, 0, 1)50%, rgba(0, 0, 0, 0) 100%);
}
.title__basket{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.alert__basket{
  display: none;
}
.alert {
  margin-top: 25px;
}

.alert__basket.--alert{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.alert__basket .button{
  margin-top: 25px;
}

.product__wrapper{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 15px;
  border: 1px solid var(--text-light);
  border-radius: 5px;
}


.img__basket {
  width: 150px;
  height: 150px;
}
.product__title {
  margin-right: auto;
  margin-left: 50px;
}
.counter__line{
  display: flex;
}
.basket__counter {
  display: grid;
  column-gap: 5px;
}
.count__title {
  padding-bottom: 10px;
  grid-column: 1/5;
  grid-row: 1/2;
}
.prod__minus{
  grid-column: 1/2;
  grid-row: 2/3;
}

.prod__count {
  grid-column: 2/4;
  grid-row: 2/3;
}
.pro__plus{
  grid-column: 4/5;
  grid-row: 2/3;
}

.basket__counter button,
.del__product {
  padding: 10px 15px;
  font-weight: 800;
  font-size: 16px;
  border: 1px solid gray;
  border-radius: 5px;
  background: transparent;
  color: var(--text-light);
}
button.prod__count {
  padding-left: 35px;
  padding-right: 35px;
  width: 90px;
}
.prod__price {
  width: 120px;
  padding-left: 25px;
}
.price-prod {
  color: var(--design-dark);
}
.del__product {
  margin-left: 70px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
}

.total__line {
  display: flex;
  justify-content: end;
  position: sticky;
  bottom: 0;
  align-items: center;
  margin-top: 32px;
  padding: 15px;
  border-radius: 5px;
  border: none;
  background: rgb(228, 228, 228);
}
.total__price {
  margin-left: 15px;
}
.product__content{
  display: flex;
  align-items: center;
}
.bills {
  margin-left: 32px;
}

/* ** footer basket *** */
.foot__list-hide {
  font-size: 0;
}
.foot__list-basket .--active{
  font-size: unset;
}

.accordion__title~ol{
  font-size: 0;
}
.accordion__title~.--active {
  font-size: unset;
}
