.price-search {
  height: 60px;
  padding-left: 35px;
  display: inline-flex;
  justify-content: space-between;
  border: 1px solid #DDDDDD;
  border-radius: 30px;
  width: 50%;
  min-width: 400px;
  margin-top: 40px;
}

.price .price__input{
  width: 300px;
}


.price .price__btn {
  padding: 15px 50px;
  width:auto;
}

@media screen and (max-width: 449px) {
  .price-search {
    height: 50px;
    padding-left: 15px;
    border-radius: 25px;
    min-width: auto;
    width: 100%;
    margin-top: 30px;
  }
  .price .price__btn {
    padding: 8px 20px;
    height: 48px;
    min-height: auto;
  }
}
.price-cards__item {
  padding: 25px 35px;
  margin-bottom: 10px;
  
}

.price-cards__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.price-cards__main:hover {
  cursor: pointer;
}
.price-cards__title {
  transition: 0.3s;
}

.price-cards__title:hover {
  color: #273895;
}

.price-cards__str {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  position: relative;
}

.price-cards__str:before {
  top: -20px;
  position: absolute;
  content: '';
  background: #F2F2F2;
  width: 100%;
  height: 1px;
}
.price-cards__str:first-child:before {
  display: none;
}

.price-cards__btn, .price-cards__sum {
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .price-cards__item {
    padding: 15px 25px;
  }

  .price-cards__str {
    margin-top: 20px;
  }

  .price-cards__str:before {
    top: -10px;
  }
}

@media screen and (max-width: 425px) {
  .price-cards__item {
    padding: 15px;
  }
}

.usl__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.usl ul li{
  list-style: disc;
  margin-left: 20px;
}

.usl__text {
  width: 48%;
}


.usl .optimed-title {
  margin-bottom: 40px;
}

.usl__img {
  width: 48%;
  object-fit: contain;
  /* object-position: top; */
  /* height: 460px; */
}

@media (max-width: 767px) {
  .usl .optimed-title {
    margin-bottom: 20px;
  }
  

  .usl__wrapper {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }

  .usl__img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }

  .usl__text {
    width: 100%;
  }

}

.price-cards__hide {
  margin-top: 30px;
}

table {
  border-collapse: collapse;
  margin-top: 30px;
  width: 100%;
  border: 1px solid #F2F2F2;
}

th, td {
  border: 1px solid #F2F2F2;
}
td {
  padding: 5px;
}


