<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.main {
	margin: 0 auto;
	width: 80%;
}

.item {
	font-family: Arial, Helvetica, sans-serif;
	padding: 20px;
	border: 1px solid #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.schedule-component {
	min-width: 370px;
	min-height: 155px;
}
.schedule-component.schedule-component--auto-height{
	min-height: auto;
}

.schedule__days {
	display: flex;
}

.schedule__days-container {
	height: 73px;
	width: 329px;
	overflow: hidden;
}

.schedule__days-btn {
	align-self: center;
	background: #f4f6f7 url('https://sovamed.ru/images/app_arrow_right.svg') no-repeat 50%;
	border-radius: 50%;
	cursor: pointer;
	height: 30px;
	margin-left: 10px;
	transition: .2s ease-in-out;
	width: 30px;
}

.schedule__days-wrap {
	display: flex;
	overflow-x: scroll;
	overflow-y: hidden;
	position: relative;
}

.schedule__day {
	box-sizing: border-box;
	color: #181d21;
	cursor: pointer;
	flex: 0 0 auto;
	font-size: 16px;
	padding: 13px 13px 16px;
	position: relative;
	text-align: center;
	user-select: none;
	width: 47px;
	transition: .2s ease-in-out;
	border-radius: 5px 5px 0 0;
	border: 1px solid transparent;
	z-index: 2;
	font-weight: normal;
}

.schedule__day-name {
	margin-bottom: 8px;
}

.schedule__slots {
	background: #fff;
	border: 1px solid #c7d3d9;
	border-radius: 5px;
	box-shadow: 5px 8px 3px rgba(199, 211, 217, .2);
	box-sizing: border-box;
	padding: 10px 16px;
	width: auto;
	position: relative;
	z-index: 1;
	top: -1px;
	border-radius: 0px 0px 5px 5px;
	display: flex;
	flex-wrap: wrap;
	width: 370px;
}

.schedule__active-day {
	width: 47px;
	transition: .3s cubic-bezier(.77, 0, .175, 1);
	border-radius: 5px 5px 0 0;
	z-index: 2;
	border-top: 1px solid #C7D3D9;
	border-left: 1px solid #C7D3D9;
	border-right: 1px solid #C7D3D9;
	background: #fff;
	position: absolute;
	top: 0px;
	height: 74px;
	left: 0px;
	box-sizing: border-box;
}

.schedule__slot {
	margin: 5px;
	background-color: #3E613E;
	transition-duration: .2s;
	transition-property: background-color;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	color: #fff !important;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none !important;
	display: block;
	padding: 10px;
	border-radius: 5px;
}

.schedule__slot:hover {
	background-color: #274727;
}

.schedule__loading {
	text-align: center;
}

.schedule__loading img {
	width: 62px;
}

.schedule__day[data-active="0"] {
	color: #c7d3d9;
	cursor: not-allowed;
}

.slots-empty {
	padding: 10px;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.veretify-code-block{
	display: flex;
	margin-top: 15px;
	align-items: flex-end;
}
@media (max-width: 720px){
	.veretify-code-block{
		flex-direction: column;
		align-items: flex-start;
		margin: 15px auto 0;
	}
	.veretify-code__btn-wrap{
		margin-top: 15px;
	}
}
@media (max-width: 560px){
	.veretify-code-block .form-control{
		font-size: 18px;
	}
	#g-recaptcha-modal{
		transform: scale(0.8);
		transform-origin: 0 0;
	}
}
.veretify-code__btn{
	border: 1px solid;
}</pre></body></html>