.tarifWrap {
	border: 1px solid #e5e5e5;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.tarifName {
	background: #000;
	text-align: center;
	color: #fff;
	padding: 20px 20px;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	display: block;
	text-decoration: none;
}

a.tarifName:hover {
	color: #fff;
	text-decoration: underline;
}

.tarifPrice {
	text-align: center;
	font-size: 20px;
	padding: 10px;
	margin: 30px 0 15px;
	font-weight: bold;
	position: relative;
}

.tarifPrice:before {
	content: '';
	display: block;
	width: 50px;
	height: 2px;
	background: #d91d5c;
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
}
.tarifBtn {
	margin-top: auto;
}

.tarifBtn button {
	width: 100%;
}

.tarifDescr {
	padding: 0 20px;
}

.tarifText {
	margin-bottom: 15px;
}

.tarifList {
	padding: 0;
	list-style-type: none;
	margin: 0 -20px;
}

.tarifList li {
	padding: 10px 40px;
	position: relative;
}

.tarifList li:before {
	content: '';
	position: absolute;
	top: 13px;
	left: 20px;
	display: block;
	width: 15px;
	height: 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' id='svg17' width='24' height='24'%3E%3Cdefs id='defs4'%3E%3Cstyle id='style2'%3E.cls-2%7Bfill:%23d91d5c%7D%3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2' style='fill:%23d91d5c'%3E%3Cg id='checkmark-circle' style='fill:%23d91d5c'%3E%3Cg id='checkmark-circle-2' data-name='checkmark-circle' style='fill:%23d91d5c'%3E%3Cpath class='cls-2' d='M9.71 11.29a1.004 1.004 0 0 0-1.42 1.42l3 3A1 1 0 0 0 12 16a1 1 0 0 0 .72-.34l7-8a1 1 0 0 0-1.5-1.32L12 13.54Z' id='path10' style='fill:%23d91d5c'/%3E%3Cpath class='cls-2' d='M21 11a1 1 0 0 0-1 1 8 8 0 0 1-8 8A8 8 0 0 1 6.33 6.36 7.93 7.93 0 0 1 12 4a8.79 8.79 0 0 1 1.9.22 1 1 0 1 0 .47-1.94A10.54 10.54 0 0 0 12 2a10 10 0 0 0-7 17.09A9.93 9.93 0 0 0 12 22a10 10 0 0 0 10-10 1 1 0 0 0-1-1Z' id='path12' style='fill:%23d91d5c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-size: cover;
}

.tarifList li:nth-child(2n + 1) {
	background: #e5e5e5;
}

@media (max-width: 576px) {
	.tarifWrap {
		margin-left: -50px;
		width: calc(100% + 100px);
	}
	.tarifName {
		font-size: 16px
	}
	.tarifList li {
		font-size: 14px;
	}
}