/*
Theme Name: Contentleaders Child
Theme URI: https://www.contentleaders.nl/
Description: Child theme ontwikkeld door Contentleaders.
Author: Cornelis Scheltinga
Author URI: https://www.contentleaders.nl/;
Template: hello-elementor
Version: 1.0
*/

body {
	margin: 0;
}

a {
	transition: 0.2s;
}

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

/* Cookie popup */
#cookie-notice {
	-webkit-box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.16);
	-moz-box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.16);
	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.16);
	font-size: 15px;
}

#cn-accept-cookie {
	background-color: #FF7F00;
	color: white;
	padding: 7px 13px;
	transition: 0.3s;
	background: #0095D5;
	font-size: 15px;
}

#cn-refuse-cookie,
#cn-more-info {
	color: white;
	font-style: italic;
	background: none;
	color: #312d2d;
}

#cn-accept-cookie:hover {
	background-color: #ED6F2C;
}

#cn-refuse-cookie:hover,
#cn-more-info:hover {
	text-decoration: underline
}

@media only screen and (min-width: 1140px) {
	.cookie-notice-container {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

/* Navbar */
.nav-btn {
	position: relative;
	right: 0;
}

/* Button on the right side of the screen (Mobile & Tablet) */
@media only screen and (max-width: 1024px) {
	.nav-btn {
		margin-left: auto;
		margin-right: 10px;
	}
}

/* Menu button on mobile */
/* Open */
.elementor-menu-toggle .eicon-menu-bar:before {
	content: "";
	background: url(/wp-content/plugins/cl-template-functions/assets/hamburger-menu-icon.svg);
	display: inline-block;
	width: 22px;
	height: 33px;
	background-size: 22px 33px;
}

/* Close */
.elementor-menu-toggle .eicon-close:before {
	content: "";
	background: url(/wp-content/plugins/cl-template-functions/assets/close-menu-icon.svg);
	display: inline-block;
	width: 22px;
	height: 33px;
	background-size: 22px 33px;
}

/* 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/cl-template-functions/assets/checkmark-icon.svg) no-repeat center;
	background-size: 0;
}

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