/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 19 2024 | 08:45:59 */
.missingFieldsList {
    border: 3px solid #ffeaea;
    box-shadow: 15px 20px 0px #fff7f6;
    padding: 30px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
	border-radius: 5px !important;
}

.missingFieldsList.hidden {
	display: none !important;
}

.can-continue .tc-section-inner-wrap .tc-row .tm-box {
    border: 3px solid #3cb54a96 !important;
    box-shadow: 15px 20px 0px #f4fcf5 !important;
}
.activated .tc-section-inner-wrap .tc-row .tm-box {
    border: 3px solid #3cb54a96 !important;
    box-shadow: 15px 20px 0px #f4fcf5 !important;
}

.missingFieldsListTitle {
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: bold;
	line-height: 1.2;
}

.hrefToSection {
	padding: 4px 10px;
	background: #E2242E;
	color: #FFFFFF !important;
	margin-left: 20px;
	cursor: pointer;
	border-radius: 4px;
}

.missingList {
	list-style: none !important;
	margin: 0 !important;
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	row-gap: 10px !important;
	column-gap: 30px !important;
}

.missingList li {
	display: flex !important;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	background: #fff7f6;
	border-radius: 4px;
	margin: 0 !important;
	font-weight: 700;
	transition: 200ms;
}

.missingList li.hidden {
	display: none !important;
}

.missingList li:hover {
	background: #ffeaea !important;
}

@media(max-width:767px) {
	.missingFieldsList {
		margin-left: 15px !important;
		margin-right: 15px !important;
		margin-bottom: 30px !important;
	}
	.missingList {
		grid-template-columns: 1fr !important;
	}
}