/*
Theme Name:     {Client name }
Description:    Custom WordPress Child theme for theme "Monkey Vision" developed by Monkey Vision
Author:         Monkey Vision
Author URI: 	https://monkeyvision.nl
Tested up to:   6.2
Requires PHP:   8.1
Template:       monkeyvision
Text Domain:    monkeyvision-child
Author URI:     https://monkeyvision.nl
Version:        1.0
*/

/********************************************************************************************/
/****************************************** GLOBAL ******************************************/

/* Variables */

:root {

	/* 	Color variables */
    
		--mv-black: #000;
		--mv-white: #fff;
		--light-gray: #F5F5F5;

    /*  Variable COLORS - globals form Elementor page builder

        var(--e-global-color-primary);
        var(--e-global-color-secondary);
        var(--e-global-color-accent);
        var(--e-global-color-text);

    */


	/*** OVERRULE WOOCOMMERCE COLORS ***/
	/* LINKS */
	--links-normal-color: var(--e-global-color-primary) !important;
	--links-hover-color: var(--e-global-color-secondary) !important;
	--order-details-product-links-normal-color: var(--e-global-color-primary) !important;
	--order-details-product-links-hover-color: var(--e-global-color-secondary) !important;
	/* TABS */
	--tabs-active-color: var(--e-global-color-primary) !important;
	--tabs-hover-color: var(--e-global-color-primary) !important;
}

a:focus, a:focus-visible {
	outline: none !important;
}

/* ALT INFO BUTTON */

.elementor-element .elementor-button-info .elementor-button-link::after,
a.search-filter-reset::after {
	content: " ";
	display: block;
	width: 0;
	margin: auto;
	background: var(--mv-black);
	height: 2px;
	transition: all ease .3s;
	margin-top: 2px;
}

.elementor-element .elementor-button-info .elementor-button-link:hover::after,
a.search-filter-reset:hover::after{
	width: 100%;
}

/**********    Dynamic data information (address, email, telephone) styles    ***************/
.custom-information-data a,
.custom-information-data span {
	color: var(--mv-white);
}

.tel-container a,
.mail-container a {
	color: var(--e-global-color-primary);
}


/****************************************** end GLOBAL ******************************************/
/* ******************************************************************************************** */



/****************************************** HEADER styles  ******************************************/
/* Menu cart */

.elementor-menu-cart--cart-type-mini-cart.elementor-widget-woocommerce-menu-cart {
	padding-right: 40px;
}

.elementor-menu-cart--cart-type-mini-cart.elementor-widget-woocommerce-menu-cart .elementor-menu-cart__wrapper .elementor-menu-cart__toggle_wrapper .elementor-menu-cart__container.elementor-lightbox {
	top: 50px;
	left: -190%;
}

/****************************************** FOOTER styles  ******************************************/

.elementor-location-footer .tel-container-parent .tel-container a,
.elementor-location-footer .mail-container-parent .mail-container a {
	color: var( --e-global-color-primary);
}

.elementor-location-footer .adres-container-parent,
.elementor-location-footer .tel-container-parent,
.elementor-location-footer .mail-container-parent {
	height: 30px;
}


/****************************************** USP slider styles **************************************/
@media screen and (min-width: 768px) {
	.usp-slider .elementor-swiper .swiper-slide {
		max-width: 117px;
	}
}

/****************************************** FOOTER styles  ******************************************/

.coming-soon-page .tel-container a,
.coming-soon-page .mail-container a {
	color: var(--mv-white);
}


/****************************************** QUOTE SECTION ******************************************/
blockquote.elementor-blockquote > .elementor-blockquote__content {
    margin-bottom: 50px;
}

blockquote.elementor-blockquote > .elementor-blockquote__content:before,
blockquote.elementor-blockquote > .elementor-blockquote__content:after {
    content:'"';
    display: inline-flex;
    position: absolute;
    font-size: 150px;
    color:var(--e-global-color-secondary);
    font-weight: 700;
    z-index: 1;
    opacity: 0.7;
}

blockquote.elementor-blockquote > .elementor-blockquote__content:before {
    top: -20px;
    left: -55px;
}

blockquote.elementor-blockquote > .elementor-blockquote__content:after {
    bottom: -50px;
    right: -55px;
}

@media screen and (max-width: 1024px) {
    blockquote.elementor-blockquote > .elementor-blockquote__content {
        padding: 25px 0px;
        font-size: 40px;
        line-height: 50px;
    }

    blockquote.elementor-blockquote > .elementor-blockquote__content:before,
    blockquote.elementor-blockquote > .elementor-blockquote__content:after {
        font-size: 120px;
    }

    blockquote.elementor-blockquote > .elementor-blockquote__content:before {
        top: 0px;
        left: -20px;
    }

    blockquote.elementor-blockquote > .elementor-blockquote__content:after {
        bottom: -20px;
        right: -20px;
    }
}

@media screen and (max-width: 950px) {
    blockquote.elementor-blockquote > .elementor-blockquote__content:before {
        left: 0;
    }

    blockquote.elementor-blockquote > .elementor-blockquote__content:after {
		right: 0;
	} 
}

@media screen and (max-width: 550px) {
    
    blockquote.elementor-blockquote > .elementor-blockquote__content {
        padding: 15px 0px;
        font-size: 30px;
        line-height: 35px;
    }

    blockquote.elementor-blockquote > .elementor-blockquote__content:before,
    blockquote.elementor-blockquote > .elementor-blockquote__content:after{
        font-size: 100px;
    }

    blockquote.elementor-blockquote > .elementor-blockquote__content:before {
        top: 0px;
        left: 0;
    }

    blockquote.elementor-blockquote > .elementor-blockquote__content:after {
        bottom: -20px;
        right: 0;
    }
}

/****************************************** OUR BLOGS  ******************************************/
/*** OVERLAYING LINK ***/
.blog-column-url,
.blog-column-url *{
	position:absolute;
	height:100%;
	width:100%;
    top: 0;
    left: 0;
    z-index:2;
	opacity:0;
}

.our-blog:hover .our-blog-media img {
	transition: transform 0.3s ease;
}

.our-blog:hover .our-blog-media img {
	transform: scale(1.1);
}

.our-blogs-container .our-blog .elementor-icon-list-text.elementor-post-info__item.elementor-post-info__item--type-custom,
.our-blog .our-blog-content .elementor-icon-list-item.elementor-inline-item a {
	position: relative;
}

.our-blogs-container .our-blog .elementor-icon-list-text.elementor-post-info__item.elementor-post-info__item--type-custom::after,
.our-blog .our-blog-content .elementor-icon-list-item.elementor-inline-item a::after,
.elementor-nav-menu .menu-item a.elementor-item::after {
	content: "";
    height: 2px;
    width: 0px;
    background-color: var(--mv-black);
    position: absolute;
    bottom: 3px;
    left: 50%;
    border-radius: 3px;
	transition: width 0.3s ease, left 0.3s ease;
}

.our-blogs-container .our-blog:hover .elementor-icon-list-text.elementor-post-info__item.elementor-post-info__item--type-custom::after,
.our-blog:hover .our-blog-content .elementor-icon-list-item.elementor-inline-item a::after,
.elementor-nav-menu .menu-item a.elementor-item:hover::after {
	width: 100%;
	left: 0;
}


/****************************************** GFORM styles  ******************************************/
/* CUSTOMISE THIS */
body .gform_wrapper input:not([type=submit]),
body .gform_wrapper textarea  {
    padding: 10px 20px !important;
    border-radius: 30px;
    border: 1px solid var(--mv-black) !important;
    background-color: var(--mv-white) !important;
    line-height: 24px;
    margin: 0px;
    box-shadow: none;
    height: auto;
}

body .gform_wrapper textarea {
	resize: none;
	padding: 10px 15px !important;
}

body .gform_wrapper textarea::placeholder {
	font-size: 18px !important;
	line-height: 24px;
	font-family: "Myriad Pro", sans-serif;
}

body .gform_wrapper .gform_body .gform_fields .gfield {
    margin:15px 0px 0px;
    padding:0px;
}

body .gform_wrapper .gform_body .gform_fields .gfield label {
    font-size: 14px;
    line-height: 14px;
    margin: 5px 0px 0px 20px;
    letter-spacing: initial;
}

body .gform_wrapper .gform_body .gform_fields .gfield input,
body .gform_wrapper .gform_body .gform_fields .gfield select {
	padding: 10px 15px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label .gfield_required {
	color: red;
}

body .gform_wrapper .gform_footer input[type=submit] {
	border: none;
}


/************************************* Pagination (flex-box changes) *********************************/

.elementor-pagination {
    margin-top: 40px;
}
.elementor-pagination > .page-numbers.next, 
.elementor-pagination > .page-numbers.prev {
    background: var(--e-global-color-primary);
}
.elementor-pagination > .page-numbers {
    background: var(--e-global-color-primary);
    border-radius: 10px;
    padding: 15px 20px;
    color: white;
    margin-right: 2px;
}
.elementor-pagination > a.page-numbers {
    background: var(--e-global-color-secondary);
}
.elementor-pagination > a.page-numbers.current {
    background: var(--e-global-color-primary);
}


/****************************************** Search ******************************************/

.search-filter-form .sf-field-search .sf-input-text,
.search-filter-form .sf-field-sort_order .sf-input-select {
	border-radius: 30px;
	background: var(--mv-white);
	border: 1px solid #d7d7d7;
	outline-color: var(--mv-white);
	width: 100%;
}

.search-filter-form .sf-field-search .sf-input-text:active {
	border-color: blue;
}

.searchandfilter .sf-field-search input,
.searchandfilter .sf-field-sort_order select {
	padding: 10px 20px;
}

.searchandfilter .sf-field-sort_order .sf-input-select {
	width: 100%;
	min-width: 125px;
	position: relative;
	appearance: none;
}

.searchandfilter .sf-field-sort_order .sf-input-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.503' height='23.619' viewBox='0 0 13.503 23.619' transform='rotate(270)'%3E%3Cpath d='M15.321,18l8.937-8.93a1.688,1.688,0,0,0-2.391-2.384L11.742,16.8a1.685,1.685,0,0,0-.049,2.327L21.86,29.32a1.688,1.688,0,0,0,2.391-2.384Z' transform='translate(-11.251 -6.194)'/%3E%3C/svg%3E");
	background-position: center;
	background-size: 10px 10px;
	background-position: right 10px center;
	background-repeat: no-repeat;
}

.searchandfilter .sf-field-sort_order label {
	width: 100%;
	display: block;
}

@media only screen and (max-width: 768px) {
	.searchandfilter ul {
		display: flex;
		gap: 0 20px;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-end;
	}
	.searchandfilter .sf-field-search,
	.searchandfilter .sf-field-sort_order {
		width: 100%;
    	padding-right: 40px;
	}
	
	.searchandfilter .sf-field-search label {
		width: 100%;
	}
}


/****************************************** FAQ SECTION ******************************************/

.elementor-widget-container > .elementor-accordion .elementor-tab-content {
	border: none!important;
} 

.elementor-widget-container > .elementor-accordion > .elementor-accordion-item  {
    margin-bottom: 15px;
	border: none!important;
}

.elementor-widget-container > .elementor-accordion > .elementor-accordion-item .elementor-tab-title {
    border-radius: 40px;
}

.elementor-widget-container > .elementor-accordion > .elementor-accordion-item .elementor-tab-title:after {
	content: '';
    display: inline-flex;
    position: absolute;
    height: 20px;
    width: 20px;
    right: 20px;
    transform: rotate(270deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.503' height='23.619' viewBox='0 0 13.503 23.619'%3E%3Cpath d='M15.321,18l8.937-8.93a1.688,1.688,0,0,0-2.391-2.384L11.742,16.8a1.685,1.685,0,0,0-.049,2.327L21.86,29.32a1.688,1.688,0,0,0,2.391-2.384Z' transform='translate(-11.251 -6.194)'/%3E%3C/svg%3E") !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 500ms;
    will-change: transform;	
}

.elementor-widget-container > .elementor-accordion > .elementor-accordion-item .elementor-tab-title.elementor-active:after {
    transform: rotate(90deg);
}


/****************************************** Vacatures search section ******************************************/

.alle-vacatures-page-filter .alle-vacatures-page-filter-search form ul {
	display: flex;
    align-items: center;
	flex-wrap: wrap;
	margin: 0 20px;
	justify-content: center;
}

.alle-vacatures-page-filter .alle-vacatures-page-filter-search .sf-input-select {
	background: var(--mv-white);
	border: 1px solid #d7d7d7;
    border-radius: 3px;
	outline-color: var(--mv-white);
	padding: 10px 15px;
	color: #666;
	appearance: none;
}

.alle-vacatures-page-filter .alle-vacatures-page-filter-search .sf-input-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.503' height='23.619' viewBox='0 0 13.503 23.619' transform='rotate(270)'%3E%3Cpath d='M15.321,18l8.937-8.93a1.688,1.688,0,0,0-2.391-2.384L11.742,16.8a1.685,1.685,0,0,0-.049,2.327L21.86,29.32a1.688,1.688,0,0,0,2.391-2.384Z' transform='translate(-11.251 -6.194)'/%3E%3C/svg%3E");
	background-position: center;
	background-size: 10px 10px;
	background-position: right 10px center;
	background-repeat: no-repeat;
}

.alle-vacatures-page-filter .alle-vacatures-page-filter-search .sf-field-taxonomy-job-type {
	display: flex;
    align-items: center;
    gap: 15px;
	flex-wrap: wrap;
	margin-right: 40px;
}

.alle-vacatures-page-filter .alle-vacatures-page-filter-search .sf-field-taxonomy-location {
	display: flex;
    align-items: center;
    gap: 15px;
	flex-wrap: wrap;
}

.alle-vacatures-page-filter .alle-vacatures-page-filter-search .sf-field-taxonomy-location ul {
	display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.alle-vacatures-page-filter .alle-vacatures-page-filter-search h4 {
    font-size: 17px;
    font-weight: 400;
    color: #505050;
}

.alle-vacatures-page-filter .alle-vacatures-page-filter-search label {
	font-size: 17px;
    font-weight: 300;
    color: #505050;
}

.alle-vacatures-page-filter .alle-vacatures-page-filter-search .sf-field-reset .search-filter-reset {
    display: flex;
	flex-direction: column;
	font-weight: 100 !important;
    font-size: 12px;
}
.wcpa_wrap .wcpa_checkbox input:checked~.wcpa_checkbox_custom {
    background-color: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
}
.my-new-wrapper > .quantity {
    display: none;
}
.wcpa_wrap .wcpa_field_wrap select:focus {
	border: solid black 2px !important
}
body.e-wc-message-notice .woocommerce-message {
	border-radius:50px;
}
@media screen and (max-width: 1024px) {
	.alle-vacatures-page-filter .alle-vacatures-page-filter-search form > ul {
		display: block;
	}
	
	.alle-vacatures-page-filter .alle-vacatures-page-filter-search .sf-field-taxonomy-location ul {
		justify-content: flex-start;	
	}
}


/* Homepage container (overflow viewport) - Boki Blocks Style */
@media screen and (min-width: 992px) {
	.loop-container {
		position: relative;
		min-height: 690px;
	}
	.loop-element {
		position: absolute;
		width: 150%;
		top: 0;
		left: 0;
	}
	.loop-element .swiper.elementor-loop-container.elementor-grid.swiper-initialized.swiper-horizontal.swiper-pointer-events {
		width: 150%;
	}
}

/* WooCommerce account */
.elementor-widget-woocommerce-my-account .woocommerce-EditAccountForm .woocommerce-Button.button[name="save_account_details"],
.elementor-widget-woocommerce-my-account .woocommerce-EditAccountForm button.woocommerce-Button.button[name="save_account_details"] {
    background-color: #F29400 !important;
    border-color: #F29400 !important;
    color: #fff !important;
}

/* EDITED BY CWP ON 19-5-2025*/
/* Forceer styling voor add to cart button */
.single_add_to_cart_button.button {
    background-color: var(--e-global-color-42cf840) !important;
    color: var(--e-global-color-accent) !important;
    border-radius: 50px !important;
    padding: 15px 20px !important;
    border: none !important;
    box-shadow: none !important;
}

/* Tooltip */

/* Tooltip wrapper */
.po-tooltip-wrap {
    position: relative;
    display: inline-block;
    margin-left: 6px;
}

/* Icoontje zelf */
.po-tooltip-icon {
    background-color: #F29400;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
    position: relative;
}

/* Tooltip tekst standaard verborgen */
.po-tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 125%; /* boven het icoon */
    left: 50%;
    transform: translateX(-50%);
    background-color: #F29400;
    color: white;
    text-align: center;
    padding: 8px 10px;
    border-radius: 6px;
    white-space: normal;
    width: 350px;
    font-size: 13px;
    z-index: 9999;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Tooltip smaller maken op mobiel en tablet (tot 1024px breed) */
@media (max-width: 1024px) {
    .po-tooltip-text {
        width: 250px;
    }
}

/* Tooltip zichtbaar bij hover */
.po-tooltip-wrap:hover .po-tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* EDITED BY CWP ON 19-5-2025 - Store Locator*/

/* Grotere breedte van de plugin-wrapper */
body .cgm-customer-locator {
    max-width: 1350px !important;
}

/* Dikke zwarte randen rond de locatiekaarten */
.cgm-customer-item {
    border: 2px solid #000 !important;
    border-radius: 10px !important;
}

/* Oranje scrollbar styling (alleen moderne browsers) */
.cgm-customer-list::-webkit-scrollbar {
    width: 10px;
}

.cgm-customer-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.cgm-customer-list::-webkit-scrollbar-thumb {
    background-color: #F29400;
    border-radius: 10px;
    border: 2px solid #fff;
}

/* Firefox scrollbar */
.cgm-customer-list {
    scrollbar-width: thin;
    scrollbar-color: #F29400 #f1f1f1;
}

/* Zoekveld iets strakker maken */
.cgm-search-container input[type="text"] {
    border: 2px solid #000 !important;
    border-radius: 999px !important;
    padding: 10px 16px !important;
    font-weight: 600;
}

/* Zoekknop in stijl met kleur */
.cgm-search-container button.cgm-use-geolocation,
.cgm-search-container button[type="submit"] {
    background: #F29400 !important;
    border: 2px solid #000 !important;
    color: #000 !important;
    font-weight: bold;
    border-radius: 999px !important;
    transition: background 0.3s ease;
}

.cgm-search-container button.cgm-use-geolocation:hover,
.cgm-search-container button[type="submit"]:hover {
    background: #ffae33 !important;
}

.cgm-customer-item {
    margin-bottom: 5px !important;
}

/* Woocommerce background */
.woocommerce ul.products li.product a img{
	height: 256px;
	max-height: 1024px;
    object-fit: contain;
    object-position: center center;
	display: inline-block;
    vertical-align: middle;
	transition: 300ms;
}
/* Verbergen buttons en prijs */
.woocommerce ul.products li.product .button, .woocommerce ul.products li.product .iconic-wqv-button, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{
	display: none;
}
/* h2 styling */
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3{
	font-family: "Helvetica Neue", Sans-serif;
    font-size: 28px;
    font-weight: 700;
	text-align: center;
}
@media (max-width: 1024px) {
	.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3{
		font-size: 24px;
	}
}

/* Achtergrond cirkel */
.woocommerce ul.products li.product a img{
	background-image: url('https://smeyeldev.website-bekijken.nl/wp-content/uploads/2025/05/Achtergrond-Cirkel-producten.svg');
	background-size: contain;
  background-position: center bottom;
	background-repeat: no-repeat;
}
.woocommerce ul.products li.product a:hover img{
	background-image: url('https://smeyeldev.website-bekijken.nl/wp-content/uploads/2025/05/Achtergrond-Cirkel-producten-hover.svg');
}
/* GAP producten */
.elementor-5364 .elementor-element.elementor-element-c75e0c0.elementor-wc-products ul.products{
	    grid-column-gap: 40px!important;
    grid-row-gap: 40px;
}

/* Verbergen aantal en sortering */
.woocommerce-result-count, .woocommerce-ordering{
	display: none;
}

/* Filter styling */
.searchandfilter ul, .searchandfilter ul li{
	padding: 0;
}
#search-filter-form-873 > ul{
	display: flex;
	flex-direction: column;
	grid-column-gap: 20px!important;
    grid-row-gap: 20px!important;
}
.sf-field-search label{
	width: 100%;
}
.sf-field-search input{
	border-radius: 50px;
	border: 2px solid #1e1e1e;
	padding: 18px 32px!important;
	    font-family: "Helvetica Neue", sans-serif;
    font-weight: 600;
}
.searchandfilter .sf-field-sort_order .sf-input-select{
	border-radius: 50px;
	border: 2px solid #1e1e1e;
	padding: 18px 32px!important;
	    font-family: "Helvetica Neue", sans-serif;
    font-weight: 600;
}
.searchandfilter h4{
	font-family: "Helvetica Neue", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0px 0px 8px 0px;
	padding: 0;
	color: #1e1e1e;
}
.sf-field-taxonomy-product_cat .sf-input-checkbox{
	width: 16px;
    height: 16px;
    margin-right: 5px;
	border: 2px solid var(--e-global-color-951affc);
	margin: 0;
	
}
.elementor-element .elementor-button-info .elementor-button-link::after, a.search-filter-reset::after{
	display: none;
}
