#list_items .list__items{
	display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin-top: 15px;
    margin-bottom: 30px;
    padding: 0;
    gap: 10px;
}
.list__items .card .name_card{
    font-weight: 500;
    transition: 0.4s;
    margin-top: 30px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    font-size: 14px;
    display: block;
    text-decoration: none!important;
    flex: 1 1 auto;
}
.list__items .card img{
    transition: 0.4s;
    width: 169px;
    height: auto;
    display: block;
    color: #000;
}
.name_section{
    transition: 0.4s;
    margin-top: 30px;
    text-transform: uppercase;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    display: block;
    text-decoration: none!important;
}

.card{
	padding: 10px;
  width: min-content;
  border: 1px solid #ccc;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor:  pointer;
}
/* .card a{
  color: rgb(0, 159, 227);
  position: absolute;
  right: 5px;
  top: 5px;
  visibility: hidden;
  background:#fff;
  padding: 5px;
  border-radius: 10px;
}
.card:hover a{
  visibility: visible;
} */
.card:hover{
	border-radius: 10px;
  background: var(--White, #FFF);
  box-shadow: 2px 2px 16px 0px rgba(12, 37, 47, 0.2);
}
.card.active{
  border-radius: 10px;
  background: var(--White, #FFF);
  box-shadow: 2px 2px 16px 0px rgba(12, 37, 47, 0.2);
}
.card .prc{
  text-align: center;
  color: #00bef6;
  font-weight: 600;
  justify-content: center;
}
.card .price{
  text-align: center;
  color: #00bef6;
  font-weight: 600;
  justify-content: center;
}





/*ПРЕЛОАДЕР*/

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* фоновый цвет */
  background: #e0e0e0;
  z-index: 1001;
  opacity: .6;
}

.preloader__image {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}
.preloader__image path{
  fill: #009FE3;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}


.loaded .preloader {
  display: none;
}





/*ДЛЯ ДОП КОМПЛЕКТАЦИИ*/

.number {
  user-select: none;
  position: relative;
  text-align: left;
  padding: 0;
  width: 140px;
  border: 1px solid #ddd;
  display: block;
  margin: 5px auto 0;
}
.number-minus, .number-plus {
  position: absolute;
  top: 0;
  width: 40px;
  height: 32px;
  line-height: 32px;
  display: block;
  background: #fff;
  color: #00bef6;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  font-family: arial;

  text-decoration: none;
}
.number-minus {
  left: 0;
  border-right: 1px solid #ddd;
}
.number-plus {
  right: 0;
  border-left: 1px solid #ddd;
}
.number-minus:hover, .number-plus:hover {
  background: #00bef6;
  color: #fff;
}
.number-minus:active, .number-plus:active {
  background: #00bef6;
  color: #fff;
}
.number-text{
  display: inline-block;
  font-size: 14px;
  color: #000;
  line-height: 32px;
  height: 32px;
  padding: 0;
  margin: 0 0 0 42px;
  background: #fff;
  outline: none;
  border: none;
  width: 57px;
  text-align: center;
}
/*ДЛЯ ДОП КОМПЛЕКТАЦИИ*/




.selected_item{
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: center;
  margin-top: 10px;
  padding: 5px 0;
  background: #00bef6;
  color: #fff;
}


.card.active .selected_item{
  background: #6bdb3d;
  color: #fff;
}


@media screen and(min-width:767px ){
  .selected_item:hover{
    background: #6bdb3d;
    color: #fff;
  }
}