#price-container .price-row .price-col-product {
  flex-basis: 290px;
}
#price-container .price-row .price-col-level {
  flex-basis: 130px;
}
#price-container .price-row .price-col-content {
  flex-basis: 450px;
  padding: 20px;
}
#price-container .price-row .price-col-prodprice {
  flex-basis: 100px;
}
.section-expert-img::before {
  content: '';
  position: absolute;
  left: 20px;
  bottom: 60px;
  top: 20px;
  right: 0;
  z-index: 5;
  filter: drop-shadow(0px 12px 30px #D6E6EF);
  background: #d7eeff;
 }  
.section-expert-img img {
  z-index: 10;
  filter: drop-shadow(0px 20px 40px #D6E6EF);
  position: relative;
}
.section-expert-img {
  position: relative;

}
.btn-sport {
  background-color: #1286d2;
  color: #fff;
  padding: 7px;
  font-weight: bold;
  border: 3px solid transparent;

}
.umo span {
  width: 100%;
  font-size: 15px;
  font-weight: 300;
}
.umo-result {
  text-align: left;
}

#result .callback {
  background: #0071BB;
  border-radius: 5px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  min-width: 190px;
}

.section-expert__text {
  width: 500px;
  display: inline-block;
}
.nasmed-expert {
  display: flex;
}

.nasmed-expert .expert-card {
  border: 0px;
  font-weight: 600;
}

.nasmedv2 .expert-card {
		padding: 20px 20px 20px 20px;
		background-color: rgba(0, 110, 183, 0.7);
		color: white;
  }
  
.nasmedv2 .section-expert__wrap {
    max-width: 510px;
    left: 760px;
    position: absolute;
    z-index: 40;
  }

.medical-program-form-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.form-group > div {
    flex: 1 1 calc(33% - 10px); /* Каждый элемент займёт примерно треть пространства */
    margin-bottom: 10px;
	margin-right: 5px;
}


.medical-program-form-container form select {
    width: 100%;
    background-color: #eef7ff;
}



.medical-program-form-container #result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

.nasmed-ft {
  font-size: 20px;
  font-weight: 600;
}


 /* --- НАЧАЛО СТИЛЕЙ БЛОКА --- */
        .nasmed-calc-container {
            width: 100%;
            /*max-width: 1000px;*/
            background: #ffffff;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 114, 188, 0.05);
            /* Строгие углы */
            border-radius: 0; 
        }

        .nasmed-calc-title {
            font-size: 28px;
            color: #0072bc;
            margin: 0 0 25px 0;
            font-weight: 700;
        }

        /* Горизонтальная сетка формы */
        .nasmed-calc-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-end;
        }

        .nasmed-form-group {
            flex: 1 1 200px;
            display: flex;
            flex-direction: column;
        }

        /* Поле Дистанции скрыто по умолчанию */
        #group-distance {
            animation: fadeIn 0.3s ease;
        }

        .nasmed-label {
            font-size: 13px;
            font-weight: 700;
            color: #adb9c9;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        /* Общие стили для инпутов (селекты) */
        .nasmed-control {
            height: 48px;
            width: 100%;
            border: 1px solid #e4e4e4;
            background-color: #fff;
            color: #485460;
            font-size: 15px;
            font-family: inherit;
            padding: 0 15px;
            border-radius: 0; /* Острые углы */
            appearance: none;
            cursor: pointer;
            transition: border-color 0.2s;
            /* Кастомная стрелочка */
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230072bc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
        }

        .nasmed-control:focus {
            border-color: #0072bc;
        }

        /* Пиллсы для возраста (острые прямоугольники) */
        .nasmed-radio-group {
            display: flex;
            height: 48px;
            gap: -1px; /* Чтобы рамки сливались */
        }

        .nasmed-radio-label {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e4e4e4;
            background: #fff;
            color: #485460;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
			margin-bottom: 0rem;
        }
        
        .nasmed-radio-label:first-of-type {
            border-right: none;
        }

        .nasmed-radio-input {
            display: none;
        }

        /* Активное состояние пиллса (градиентная рамка) */
        .nasmed-radio-input:checked + .nasmed-radio-label {
            color: #0072bc;
            border: 2px solid transparent;
            border-image: linear-gradient(90deg, #63e9ff, #0072bc) 1;
            background: #f4fcff;
            z-index: 1; /* Чтобы перекрыть соседнюю рамку */
        }

        /* Кнопка отправки (стиль из макета врачей) */
        .nasmed-btn-submit {
            height: 48px;
            flex: 0 1 180px;
            background: #fff;
            color: #485460;
            font-weight: 700;
            font-size: 15px;
            text-transform: uppercase;
            cursor: pointer;
            border: 2px solid transparent;
            /* Градиентная обводка */
            border-image: linear-gradient(90deg, #63e9ff, #0072bc) 1;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
			border-radius: 5px;
        }

        .nasmed-btn-submit:hover, .nasmed-btn-primary:hover {
            background: #0072bc;
            color: #fff;
            border-image: none;
            border-color: #0072bc;
			text-decoration: none;
        }

        /* Блок результата */
        .nasmed-result {
            
            margin-top: 40px;
            padding: 30px;
            background: #fff;
            /* Толстая синяя рамка в стиле карточек преимуществ */
            border: 4px solid #0072bc; 
            position: relative;
            animation: fadeInDown 0.4s ease forwards;
        }

        /* Декоративный квадратик в стиле дизайна */
        .nasmed-result::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            width: 15px;
            height: 15px;
            background: #fff;
            border-bottom: 4px solid #0072bc;
            border-right: 4px solid #0072bc;
        }

        .nasmed-result-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .nasmed-result-content {
            flex: 1;
        }

        .nasmed-result-label {
            font-size: 13px;
            color: #adb9c9;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .nasmed-result-title {
            font-size: 24px;
            font-weight: 700;
            color: #0072bc;
            margin: 0 0 5px 0;
        }

        .nasmed-result-desc {
            font-size: 15px;
            color: #485460;
            margin: 0;
            line-height: 1.4;
        }

        .nasmed-btn-primary {
            background: #0072bc;
            color: #fff;
            border: none;
            height: 48px;
            padding: 0 30px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: background 0.2s;
            white-space: nowrap;
			border-radius: 5px;
        }

        .nasmed-btn-primary:hover {
            background: #005ba4;
        }

        /* Анимации */
        @keyframes fadeIn {
			from { opacity: 0; transform: translateY(-10px); }
			to { opacity: 1; transform: translateY(0); }
			}
        @keyframes fadeInDown {
			from { opacity: 0; transform: translateY(-10px); }
			to { opacity: 1; transform: translateY(0); }
			}

        /* Адаптив под мобилки */
        @media (max-width: 768px) {
            .nasmed-calc-row {
                flex-direction: column;
                align-items: stretch;
            }
            .nasmed-btn-submit {
                flex: auto;
                margin-top: 10px;
            }
            .nasmed-result-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .nasmed-btn-primary {
                width: 100%;
                justify-content: center;
            }
        }
        /* --- КОНЕЦ СТИЛЕЙ БЛОКА --- */


/* Глобальные настройки для широкой версии экрана */
@media screen and (min-width: 768px) {
    .form-group > div {
        flex-basis: calc(33% - 10px); /* Каждое поле займёт ровно треть */
    }
}
@media screen and (min-width: 1600px) {
    .nasmedv2 .section-expert__wrap {
		left: 860px;
  
	}
}
@media screen and (min-width: 1820px) {
    .nasmedv2 .section-expert__wrap {
		left: 960px;
  
	}
}
@media screen and (min-width: 2020px) {
    .nasmedv2 .section-expert__wrap {
		left: 1060px;
  
	}
}




/* Настройки для мобильного представления */
@media screen and (max-width: 767px) {
    .form-group > div {
        flex-basis: 100%; /* Элементы расположатся вертикально */
    }
	.section-expert__body.section-expert-img {
		text-align: right;
	}
	.nasmedv2 .section-expert__wrap {
		left: 35px;
		margin-top: 370px;
	}
	.section-expert__body.section-expert-img img {
		max-height: 400px;
		margin-bottom: 20px;
	}
	.slick-prev {
		left: -20px!important;
	}
	.slick-next {
		right: -20px!important;
	}
	.nasmed-form-group {
		flex: 1 1 50px;
  	}
	
}
