
.entry-content form input:not([type=submit]), .entry-content form textarea {
	outline: none;
	min-height: 35px;
	padding: 3px 7px;
	border-radius: 3px;
}

.col-1 input{
	width:100%;
}

input[type=submit] {
	border-radius: 3px;
	color:#FEF8F6 !important;
	width: max-content;
	border: none !important;
}

.entry-content form label {
	line-height: 17.5px;
	font-size: 16px;
	margin-left: 0;
	margin-top: 10px;
	margin-bottom: 0px;
	color: #FEF8F6;
}

.entry-content form span {
	font-size: 12px ;

}

.entry-content form p.active input, .entry-content form p.active textarea {
	font-size: 12px !important;
	color: #542374;
	outline: none;
}


/*
========================= SUBMIT BUTTON ICON ========================
*/
form .submit-wrap{
	position: relative;
	display: flex;
	align-items: center;
	width: max-content;
}

form .submit-wrap::after {
	content:var(--forms-submit-arrow);
	/* content: "hallå"; */
	position: absolute;
	height: 15px;
	width: 15px;
	right:40px;
	top: 5px;
}

#page form .submit-wrap input[type=submit]{
	/* padding-right: 50px */
}

form .transparent input[type=submit] {
	background-color: transparent;
	padding: 0;
	font-size: 24px;
	font-weight: 700;
}

form .green input[type=submit] {
	background-color: transparent;
	padding: 0;
	font-size: 18px;
	font-weight: 700;

}
form .green {
	display: flex;
	width: 100%;
	background-color: #00733B;
	justify-content: center;flex-direction: column;
	padding-top: 15px;
	border-radius: 5px;
}

form .green:hover {
	background-color: #005595;
}



/*
======================== Theme styles =============================
*/


.big-text {
	font-size: 22px !important;
}
.wpcf7-list-item {
	margin-left: 0;
	display: block;
}

.wpcf7-list-item-label {
	font-size: 16px;
	color: #FEF8F6;
}

.wpcf7-checkbox .wpcf7-list-item-label {
	margin-left: 40px;
}

.entry-content form .wpcf7-radio {
	display: flex;
}

.entry-content form .wpcf7-radio .wpcf7-list-item-label {
	margin-left: 40px;
}

.entry-content form p .wpcf7-radio label, .entry-content form p .wpcf7-checkbox label {
	display: flex;
	position: relative;
	margin-right: 100px;
	margin-top: 20px;
}

.wpcf7-radio input[type=radio] {
	position: absolute;
	visibility: hidden;
	width: 30px;
	height: 30px;
	top: 0;
	left: 0;
}

.wpcf7-radio input[type=radio]+span:before {
	display: block;
	position: absolute;
	content: var(--forms-checkbox-box);
	height: 22px;
	width: 22px;
	top: 0px;
	left: 0px;
	border: 2px solid var(--primary-dark);
	border-radius: 20px;
	box-shadow: 0 2px 3px 0 #00000023
}

.wpcf7-radio input[type=radio]+span::after {
	display: block;
	position: absolute;
	content: var(--forms-checkbox-check);
	left: 7px;
	top: 7px;
	width: 17px;
	height: 17px;
	background-color: var(--primary-dark);
	border-radius: 17px;
	visibility: hidden;
}

.wpcf7-radio input[type=radio]:checked+span:before {
	background: transparent;
}

.wpcf7-radio input[type=radio]:checked+span::after {
	visibility: visible;
}

.wpcf7-checkbox label {
	position: relative;
	cursor: pointer;
}

.wpcf7-checkbox input[type=checkbox] {
	position: absolute;
	visibility: hidden;
	width: 30px;
	height: 30px;
	top: 0;
	left: 0;
}


.wpcf7-checkbox input[type=checkbox]+span:before {
	display: block;
	position: absolute;
	content: '';
	height: 25px;
	width: 25px;
	top: 0px;
	left: 0px;
	mask-image: var(--form-checkbox);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-image: var(--form-checkbox);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	background: var(--form-border-color-active);
}

.wpcf7-checkbox input[type=checkbox]+span:after {
	display: block;
	position: absolute;
	content: "";
	left: 4px;
	top: 4px;
	width: 17px;
	height: 17px;
	background: var(--primary-dark);
	mask-image: var(--form-check);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-image: var(--form-check);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	visibility: hidden;
}


.wpcf7-checkbox input[type=checkbox]:checked+span:after {
	visibility: visible;
}