/*
Theme Name: Peakfort child
Theme URI: https://peakfort.nl/
Description: Child theme ontwikkeld door Peakfort.
Author: Peakfort
Author URI: https://peakfort.nl/
Template: hello-elementor
Version: 1.0
*/

body {
	margin: 0;
}

a {
	transition: 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: normal;
}

/* Forms */

/* Input */
.ginput_container.ginput_container_text input,
.ginput_container.ginput_container_email input,
.ginput_container.ginput_container_number input,
.ginput_container.ginput_container_phone input,
.ginput_container.ginput_container_textarea textarea {
	height: 56px;
	border: 1px solid white;
	border-radius: 5px;
	text-indent: 10px;
	padding-top: 22px !important;
	outline-color: black;
}

/* Textarea */
.ginput_container.ginput_container_textarea textarea {
	height: 205px;
	outline-color: black;
}

.gfield {
	position: relative;
}

.gfield_consent_label {
	cursor: pointer;
}

/* Label */
.gform_wrapper.gravity-theme .gfield_label {
	font-weight: 400;
	position: absolute;
	top: 20px;
	left: 20px;
	transition: 0.2s;
	cursor: text;
	color: gray;
}

.gform_wrapper.gravity-theme .active-label.active .gfield_label {
	font-size: 12px;
	top: 8px;
}

/* Checkboxes */
.gform_wrapper input[type=checkbox] {
	position: relative;
	cursor: pointer;
	margin-right: 3px;
}

.gform_wrapper input[type=checkbox]:before {
	content: "";
	display: block;
	position: absolute;
	width: 16px;
	height: 16px;
	top: 0;
	left: 0;
	border: 1px solid #555555;
	border-radius: 3px;
	transition: 0.3s;
	background: white url(/wp-content/plugins/pf-template-functions/assets/checkmark-icon.svg) no-repeat center;
	background-size: 0;
}

.gform_wrapper input[type=checkbox]:checked:before {
	background-size: 8px;
}