/* Центральное меню */

.menu_box_mob .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu_box_mob .menu li {
  margin: 0;
  padding: 0;
}

.menu_box_mob .menu li a {
  display: block;              /* Расширяет <a> на всю ширину */
  width: 100%;
  padding: 14px 16px;          /* Внутренние отступы */

}

/* =================== */
.univ_butt.appointment-btn,
.univ_butt.doctor-appointment-btn{
        cursor: pointer;
    }

.univ_butt.appointment-btn.sm,
.univ_butt.mobile-btn {
	display: none;
}

.univ_butt.appointment-btn.lg{
	display: flex;
}

@media(max-width: 1000px){
	.univ_butt.appointment-btn.sm,
	.univ_butt.mobile-btn{
		display: flex;
	}

	.univ_butt.appointment-btn.lg,
	.univ_butt.desktop-btn {
		display: none;
	}
}

.appointment-round-btn-wrapper{
	box-sizing: border-box;
}

.appointment-round-btn {
	position: fixed;
	z-index: 999999995;
	right: 32px;
	bottom: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 96px;
	height: 96px;
	cursor: pointer;
	border-radius: 50%;
	font-family: Inter, sans-serif;
	text-align: center;
	color: #FFFFFF;
	letter-spacing: 0.15px;
	font-weight: 600;
	font-size: 20px;
	line-height: 130%;
	box-shadow: 0 16px 16px #0FA8AE60;
	background-color: #0FA8AE;
	box-sizing: border-box
}

.appointment-round-btn::before,
.appointment-round-btn::after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	cursor: pointer;
	border-radius: 50%;
	background-color: #0FA8AE;
	animation-iteration-count: infinite;
}

.appointment-round-btn::before {
	animation-name: pulse-circle;
	animation-duration: 2.8s;
}

.appointment-round-btn::after {
	animation-duration: 2.8s;
	animation-name: pulse-animated-circle;
	animation-timing-function: ease-out;
}

@media screen and (max-width: 651px) {

	.appointment-round-btn {
		width: 56px;
		height: 56px;
		right: 32px;
		bottom: 32px;
		font-size: 14px;
	}
}

@keyframes pulse-circle {
	60% {
		opacity: 0;
		transform: scale(1);
	}

	75% {
		opacity: 0.5;
		transform: scale(1.1);
	}

	90% {
		opacity: 0;
		transform: scale(1.4);
	}

	100% {
		opacity: 0;
		transform: scale(1);
	}
}
@keyframes pulse-animated-circle {
	0% {
		transform: scale(1);
	}

	10% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}
