.checkup-informer {
	width: 940px;
	height: 480px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #fff;
	border-radius: 24px;
	padding: 10px;
	gap: 20px;
	position: relative;
}

.checkup-informer__close {
	position: absolute;
	right: 16px;
	top: 16px;
	cursor: pointer;
}

.checkup-informer__image {
	display: flex;
    justify-content: center;
    align-items: flex-end;	
	border-radius: 24px;
	background: url("/images/checkup/bg.png") no-repeat;
	background-size: cover;
}

.checkup-informer__body {
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
	padding-bottom: 20px;
}

.checkup-informer__title {
	font-weight: 600;
	font-size: 48px;
	color: #0A0A0A;
	line-height: 1.2;
	margin-bottom: 20px;
}

.checkup-informer__discount {
	font-weight: 600;
	font-size: 24px;
	color: #0202B3;
	margin-bottom: 50px;
}

.checkup-informer__button {}

.checkup-widget {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto 0;
	display: none;
	width: 54px;
	height: 279px;
	background: url("/images/checkup/widget.png");
	z-index: 1;
}

.checkup-widget.active {
	display: block;
}

.checkup-widget a {
	display: block;
	width: 100%;
	height: 100%;
}

@media (max-width: 940px) {
	.checkup-informer {
		width: 600px;
		height: 360px;
	}
	
	.checkup-informer__title {
		font-size: 32px;
	}
	
	.checkup-informer__discount {
		font-size: 20px;
	}
	
	.checkup-informer__image img {
		max-height: 300px;
	}
}


@media (max-width: 940px) {
	.checkup-informer {
		width: 100%;
		height: auto;
		grid-template-columns: 1fr;
		margin-top: auto;
		border-radius: 16px 16px 0 0;
		padding: 5;
	}
	
	.checkup-informer__close svg path {
		stroke: #fff;
	}
	
	.checkup-informer__body {
		padding: 0 20px 20px;
	}	
	
	.checkup-informer__image {
		border-radius: 16px;
	}
	
	.checkup-widget {
		transform: scale(0.7);
	}
}