.form {
	width: 500px;
	margin: 5% auto;
}
.form__container {
	position: relative;
	width: 100%;
	height: 200px;
	border: 2px dashed silver;
	border-top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color: silver;
	margin-bottom: 5px;
}
.form__container.active {
	background-color: rgba(192, 192, 192, 0.2);
}
.form__file {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0;
}
.form__files-container {
	display: block;
	width: 100%;
	font-size: 0;
	border: 2px dashed silver;
	border-bottom: 0;

}
textarea.error, select.error, input.error {
	border: 1px solid red
}

.ucst-form-field--invalid {
	border: 1px solid red !important;
}
.form__image-container {
	display: inline-block;
	height: 200px;
	margin-bottom: 10px;
	position: relative;
	max-width: 24%;
}
.form__image-container:not(:nth-child(4n)) {
	margin-right: 2%;
}
.plan-details {
	width: 100% !important;
}
.js-remove-image:after {
	content: 'x';
	position: absolute;
	line-height: 1;
	font-size: 20px;
	margin: auto;
	top: 0;
	right: 1rem;
	text-align: center;
	font-weight: bold;
	color: red;
}

.js-remove-image:hover:after {
	color: black;
	cursor: pointer;
}
.js-remove-image:hover {
	cursor: pointer;
}
h4 strong {
	color: rgba(0,126,190,1)
}
[type=radio] {
	margin-top: -5px !important;
}
.form__image {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
button[disabled] {
	cursor: no-drop;
	background-color: #999;
}
.false {
	cursor: pointer;
}
.disabled {
	cursor: no-drop;
	background-color: #999;
}
button[disabled]:hover {
	background-color: #999;
}
.disabled:hover {
	background-color: #999 !important;
}
.plans {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.hidden {
	display: block !important;
}
.plans .plan input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.plans .plan {
	cursor: pointer;
	width: 29.9%;
	height: 130px;
}

.plans .plan .plan-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 30px;
	align-items: center;
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 2px solid #e1e2e7;
	border-radius: 10px;
	-webkit-transition: -webkit-box-shadow 0.4s;
	transition: -webkit-box-shadow 0.4s;
	-o-transition: box-shadow 0.4s;
	transition: box-shadow 0.4s;
	transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
	position: relative;
}

.plans .plan .plan-content img {
	margin-bottom: 15px;
	width: auto;
	height: 42px;
}

.plans .plan .plan-details p {
	display: block;
	font-size: 18px;
	line-height: 24px;
	color: #252f42;
}

.title {
	font-size: 16px;
	font-weight: 500;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	color: #252f42;
	margin-bottom: 20px;
}

.plans .plan .plan-details p {
	color: #646a79 !important;
	font-size: 18px !important;
	line-height: 1.2 !important;
}

.plans .plan .plan-content:hover {
	-webkit-box-shadow: 0px 3px 5px 0px #e8e8e8;
	box-shadow: 0px 3px 5px 0px #e8e8e8;
}

.plans .plan input[type="radio"]:checked + .plan-content:after {
	content: "";
	position: absolute;
	height: 8px;
	width: 8px;
	background: #007EBE;
	right: 20px;
	top: 20px;
	border-radius: 100%;
	border: 3px solid #fff;
	-webkit-box-shadow: 0px 0px 0px 2px #0066ff;
	box-shadow: 0px 0px 0px 2px #0066ff;
}

.plans .plan input[type="radio"]:checked + .plan-content {
	border: 2px solid #007EBE;
	background: rgba(0,126,190,0.15);
	-webkit-transition: ease-in 0.3s;
	-o-transition: ease-in 0.3s;
	transition: ease-in 0.3s;
}

@media screen and (max-width: 991px) {
	.plans {
		margin: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.form__image-container {
		max-width: 49%;
	}
	.form__image-container:not(:nth-child(2n)) {
		margin-right: 2%;
	}
	.form__image-container:not(:nth-child(4n)) {
		margin-right: 0;
	}
	#ucst-claim-form .ucst-claim-form--nav--submit {
		width: unset !important;
	}
	.plans .plan {
		width: 100%;
		height: 130px;
	}

	.plan.complete-plan {
		margin-top: 20px;
	}

	.plans .plan .plan-content .plan-details {
		display: flex;
		flex-direction: column;
		align-items: start;
	}

	.plans .plan input[type="radio"]:checked + .plan-content:after {
		top: 45%;
		-webkit-transform: translate(-50%);
		-ms-transform: translate(-50%);
		transform: translate(-50%);
	}
}

@media screen and (max-width: 767px) {
	.plans .plan .plan-content .plan-details {
		width: 60%;
		display: inline-block;
	}
}

@media screen and (max-width: 540px) {
	.plans .plan .plan-content img {
		margin-bottom: 20px;
		height: 56px;
		-webkit-transition: height 0.4s;
		-o-transition: height 0.4s;
		transition: height 0.4s;
	}
	.form__image-container {
		max-width: 100%;
	}
	.form__image-container:not(:nth-child(2n)) {
		margin-right: 0;
	}

	.plans .plan input[type="radio"]:checked + .plan-content:after {
		top: 20px;
		right: 10px;
	}

	.plans .plan .plan-content .plan-details {
		width: 100%;
	}

	.claimsmail {
		text-decoration: underline;
	}
	.claimsmail:hover {
		color: black !important;
	}
	.plans .plan .plan-content {
		padding: 20px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		justify-content: center;
	}

}
#ucst-claim-form .ucst-claim-form--field-wrapper {
	margin: 1.5rem 0;
}