* {
    outline: none;
}

a {
    color: inherit;
}

.elementor-button-content-wrapper {
    align-items: center;
}

.elementor-button-icon {
    transform-origin: 100% 50%;
    transform: scale(1.15);
}

/* MAPBOX */

.mapboxgl-ctrl-logo {
    display: none !important;
}

#map {
    width: 100%;
    height: 500px;
}

#marker {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    background-color: var(--e-global-color-primary);
    border-radius: 99em;
    color: #ffffff;
    margin-left: -10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* #marker:before {
    content: "\eff3";
    display: inline-block;
    font-family: 'icomoon' !important;
    margin-right: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
} */

#marker:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-1px);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--e-global-color-primary);;
    border-bottom: 8px solid transparent;
}

.animated.fadeInUp {
	animation-timing-function: cubic-bezier(.66,0,.36,.99) !important;
    animation-duration: .8s !important;
    animation-fill-mode: forwards;
    animation-name: customFadeInUp !important;
}

.animated.fadeInDown {
	animation-timing-function: cubic-bezier(.66,0,.36,.99) !important;
    animation-duration: .8s !important;
    animation-fill-mode: forwards;
    animation-name: customFadeInDown !important;
}

/* Making checkbox and radio button invisible */
.elementor-field-type-checkbox .elementor-field-option input[type="checkbox"],
.elementor-field-type-acceptance input[type="checkbox"] {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
/* For Checkbox */
.elementor-field-type-checkbox .elementor-field-option label:before,
.elementor-field-type-acceptance > div label:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 0.5em;
	vertical-align: -3px;
	background-color: var(--e-global-color-d370e2a);
    border: 2px solid var(--e-global-color-accent);
    border-radius: 5px;
	background-clip: content-box;
	transition: all 0.2s ease;
    cursor: pointer;
}
.elementor-field-type-checkbox .elementor-field-option label,
.elementor-field-type-acceptance > div label {
	margin-right: 1em;
	position: relative;
}
.elementor-field-type-checkbox .elementor-field-option label:after,
.elementor-field-type-acceptance > div label:after {
	border-right: 2px solid #ffffff;
	border-top: 2px solid #ffffff;
	content: "";
	height: 8px;
	left: 2px;
	position: absolute;
	top: 10px;
	transform: scaleX(-1) rotate(135deg);
	transform-origin: left top;
	width: 6px;
	display: none;
}
.elementor-field-type-checkbox .elementor-field-option > input:hover + label:before,
.elementor-field-type-acceptance > div input:hover + label:before {
	border-color: var(--e-global-color-accent);
}
.elementor-field-type-checkbox .elementor-field-option > input:checked + label:before
,.elementor-field-type-acceptance > div input:checked + label:before {
	border-color: var(--e-global-color-accent);
	background: var(--e-global-color-accent);
}
.elementor-field-type-checkbox .elementor-field-option > input:checked + label:after,
.elementor-field-type-acceptance > div input:checked + label:after {
	-moz-animation: check 0.8s ease 0s running;
	-webkit-animation: check 0.8s ease 0s running;
	animation: check 0.8s ease 0s running;
	display: block;
	width: 8px;
	height: 15px;
	border-color: #ffffff;
}

.elementor-field-type-upload {
    position: relative;
    padding: 0;
}

.elementor-field-type-upload label {
    display: flex;
    justify-content: center;
    width: 100%;
    border: 2px dashed var(--e-global-color-primary);
    color: var(--e-global-color-primary) !important;
    border-radius: 8px;
    padding: 30px !important;
    line-height: 1.4em;
}

.elementor-field-type-upload label::before {
    display: inline-block;
    margin-right: 4px;
    content: "\eaa0";
    font-size: 1.2rem;
    font-family: 'icomoon-tabler' !important;
}

.elementor-field-type-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

@keyframes customFadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 40%, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes customFadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -40%, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}