.no-gutters {
	padding: 0 !important;
}

.accent-color {
	color: #8558FF;
}

.light-color {
	color: #A7A7A7;
}

/* pricing-plan */
.pricing-plan {
	max-width: 1100px;
	margin: 0 auto;
	padding-bottom: 50px;
}

.pricing-plan__headline {
	padding: 30px 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.pricing-grid {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.pricing-grid__row {
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid #EAEBF2;
	border-right: 1px solid #EAEBF2;
}

.pricing-grid__row:first-child {
	border-top: 1px solid #EAEBF2;
	border-radius: 10px 10px 0 0;
}

.pricing-grid__row--column,
.pricing-grid__row--column:first-child {
	flex-direction: column;
	border: none;
}

.pricing-grid__row:nth-child(2n):not(:last-child) {
	background: #FCFCFC;
}

.pricing-grid__row:last-child {
	border-radius: 0 0 10px 10px;
}

.pricing-grid__row:last-child .pricing-grid__col:first-child {
	border-bottom-left-radius: 10px;
}

.pricing-grid__row:last-child .pricing-grid__col:last-child {
	border-bottom-right-radius: 10px;
}

.pricing-grid__col {
	display: flex;
	flex-direction: column;
	width: 33.333%;
	padding: 20px;
	border-bottom: 1px solid #EAEBF2;
}

.pricing-grid__col:not(:last-child) {
	border-right: 1px solid #EAEBF2;
}

.pricing-grid__row--column .pricing-grid__col {
	width: 100%;
	border-right: none;
	border-bottom: none;
}

.pricing-grid__row--column .pricing-grid__col:nth-child(2n) {
	background-color: #fff;
}

.pricing-grid__row--column .pricing-grid__col + .pricing-grid__col {
	border-top: 1px solid #EAEBF2;
}

.pricing-grid__col--head {
	padding-top: 30px;
	padding-bottom: 30px;
}

.pricing-grid__col--accent {
	background: #FCFCFC;
}

.pricing-grid__check {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 15px 0;
}

.pricing-grid__switch {
	margin: 0 20px;
}

.pricing-grid__title {
	margin-bottom: 5px;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.4;
}

.pricing-grid__subtitle {
	margin-bottom: 30px;
	font-weight: 400;
	color: #606060;
}

.pricing-grid__price {
	margin-bottom: 40px;
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.pricing-grid__price span {
	display: inline-block;
	color: #606060;
	font-size: 16px;
	font-weight: 400;
	text-transform: lowercase;
}

.pricing-grid__btn {
	width: 100%;
	margin-top: auto;
	font-weight: 500;
}

.pricing-grid__label {
	display: flex;
	margin: auto;
}

.pricing-grid__strong {
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
}

.pricing-grid__link {
	display: inline-flex;
	align-items: center;
	margin: 0 auto;
}

.pricing-grid__link.collapsed img {
	transform: scale(-1);
}

.pricing-grid__link span {
	margin-right: 5px;
}

.pricing-grid__list {
	padding-top: 10px;
}

.pricing-grid__item {
	margin-top: 17px;
}

/* description-row */
.description-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
}

.description-row__name {
	padding-right: 10px;
}

.description-row__value {
	flex-shrink: 0;
	font-weight: 600;
}

/* collapse */
.collapse {
	overflow: hidden;
	transition: .3s ease;
	transition-property: height;
}

.collapse.show,
.collapse:not(.show) {
	display: block;
}

.collapse:not(.show) {
	height: 0;
}

/* switch */
.switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 26px;
}

.switch__slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(79.95deg, #4298E8 0%, #8044DB 100%);
	border-radius: 26px;
	transition: .4s;
}

.switch__slider::before {
	content: "";
	position: absolute;
	height: 22px;
	width: 22px;
	left: 2px;
	bottom: 2px;
	border-radius: 50%;
	background-color: #fff;
	transition: .4s;
}

.switch__field {
	width: 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.switch__field:checked + .switch__slider::before {
	transform: translateX(22px);
}

@media (min-width: 768px) and (max-width: 1199px) {
	/* pricing-grid */
	.pricing-grid__check {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.pricing-grid__switch {
		margin: 10px 0;
	}
}

@media (max-width: 1199px) {
	.pricing-grid__check {
		justify-content: center;
	}
}

@media (max-width: 991.98px) {
	/* pricing-grid */
	.pricing-grid__price {
		font-size: 27px;
	}
}

@media (max-width: 767.98px) {
	/* pricing-grid */
	.pricing-grid {
		font-size: 12px;
	}

	.pricing-grid__col:first-child {
		width: 100%;
		text-align: center;
		border-right: none;
	}

	.pricing-grid__col {
		width: 50%;
		padding: 10px;
	}

	.pricing-grid__col--head {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.pricing-grid__row--offest .pricing-grid__col {
		width: 50%;
	}

	.pricing-grid__row--offest .pricing-grid__col:first-child {
		border-right: 1px solid #EAEBF2;
	}

	.pricing-grid__title {
		font-size: 17px;
	}

	.pricing-grid__price {
		font-size: 21px;
	}

	.pricing-grid__price span {
		font-size: 12px;
	}

	.pricing-grid__strong {
		font-size: 20px;
	}
}

@media (min-width: 768px) {
	/* pricing-grid */
	.pricing-grid__row:nth-last-child(2),
	.pricing-grid__row:nth-last-child(2) .pricing-grid__col:first-child {
		border-bottom-left-radius: 10px;
	}

	.pricing-grid__row--offest {
		margin-left: calc(33.333% - 1px);
	}

	.pricing-grid__row--offest .pricing-grid__col {
		width: 50%;
	}

	.pricing-grid__row--section .pricing-grid__col {
		border-bottom-width: 3px;
	}
}