/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-vreugdenhilb2c
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/* Hide recaptcha */
.grecaptcha-badge {
    visibility: hidden;
}
form .elementor-field-type-recaptcha_v3 {
    height: 0;
    margin-bottom: 0 !important;
}

/* Elementor form messages */
.elementor-form .elementor-message {
    background-color: #f8f8f8;
    border-radius: 0px;
    padding: 15px;
    line-height: 1.5;
    border: 1px solid #bdbdbd;
}
.elementor-form .elementor-message.elementor-message-success {
    border-bottom: 3px solid #00b07b;
    border-color: #00b07b;
    background-color: #f3fffb;
}

/* Hide hidden form fields */
.elementor-form .elementor-field-type-hidden {
    margin-bottom: 0 !important;
    height: 0 !important;
}

/* CPX form checkboxes and radio buttons */
.cpx-form .elementor-field-type-checkbox .elementor-field-option, .cpx-form .elementor-field-type-acceptance .elementor-field-option, .cpx-form .elementor-field-type-radio .elementor-field-option {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.cpx-form .elementor-field-type-checkbox .elementor-field-option label, .cpx-form .elementor-field-type-acceptance .elementor-field-option label, .cpx-form .elementor-field-type-radio .elementor-field-option label {
    padding-left: 1.75em;
    position: relative;
    font-weight: 400;
    font-size: var(--e-global-typography-text-font-size);
    line-height: 1.2;
}
.cpx-form .elementor-field-type-checkbox .elementor-field-option label:hover, .cpx-form .elementor-field-type-acceptance .elementor-field-option label:hover, .cpx-form .elementor-field-type-radio .elementor-field-option label:hover {
    cursor: pointer;
}
.cpx-form .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"], .cpx-form .elementor-field-type-acceptance .elementor-field-option input[type="checkbox"], .cpx-form .elementor-field-type-radio .elementor-field-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.cpx-form .elementor-field-type-checkbox .elementor-field-option label:before, .cpx-form .elementor-field-type-acceptance .elementor-field-option label:before, .cpx-form .elementor-field-type-radio .elementor-field-option label:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 21px;
    height: 21px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #b6b6b6;
    transition: background-color .2s ease-in-out;
    line-height: 0;
}
/* Make the radio buttons round */
.cpx-form .elementor-field-type-radio .elementor-field-option label:before {
    border-radius: 100%;
}

.cpx-form .elementor-field-type-checkbox .elementor-field-option label:after, .cpx-form .elementor-field-type-acceptance .elementor-field-option label:after, .cpx-form .elementor-field-type-radio .elementor-field-option label:after {
    content: '';
    color: #fff;
    position: absolute;
    top: 2px;
    left: 2px;
    width: 17px;
    height: 17px;
    border-radius: 5px;
    background-color: var(--e-global-color-primary);
    transition: opacity .2s ease-in-out, transform .2s ease-in-out;
    line-height: 0;

    opacity: 0;
    transform: scale(0);
}
/* Make the radio buttons round */
.cpx-form .elementor-field-type-radio .elementor-field-option label:after {
    border-radius: 100%;
}

.cpx-form .elementor-field-type-checkbox .elementor-field-option:hover label:after, .cpx-form .elementor-field-type-acceptance .elementor-field-option:hover label:after, .cpx-form .elementor-field-type-radio .elementor-field-option:hover label:after {
    opacity: 1;
    transform: scale(0.6);
}
.cpx-form .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"]:checked + label:after, .cpx-form .elementor-field-type-acceptance .elementor-field-option input[type="checkbox"]:checked + label:after, .cpx-form .elementor-field-type-radio .elementor-field-option input[type="radio"]:checked + label:after {
    opacity: 1;
    transform: none;
}

.cpx-form .elementor-field-type-radio .elementor-field-subgroup, .cpx-form .elementor-field-type-checkbox .elementor-field-subgroup, .cpx-form .elementor-field-type-acceptance .elementor-field-subgroup {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cpx-form .elementor-field-type-checkbox .elementor-field-label, .cpx-form .elementor-field-type-acceptance .elementor-field-label, .cpx-form .elementor-field-type-radio .elementor-field-label {
    margin-bottom: .5rem;
}

.cpx-form .elementor-field-type-checkbox, .cpx-form .elementor-field-type-acceptance, .cpx-form .elementor-field-type-radio {
    margin-bottom: 30px !important;
}
/* End CPX form checkboxes */

/* Fix icons not having auto width defined on ipad */
.elementor-widget-icon svg {
    width: auto !important;
}

/* Elementor animation overwrites */
@keyframes cpx_fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0,-30px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}
.fadeInDown {
    animation-name: cpx_fadeInDown !important;
}

@keyframes cpx_fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px,0,0);
    }

    to {
        opacity: 1;
        transform: none
    }
}
.fadeInLeft {
    animation-name: cpx_fadeInLeft !important;
}

@keyframes cpx_fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(30px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}
.fadeInRight {
    animation-name: cpx_fadeInRight !important
}

@keyframes cpx_fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,30px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}
.fadeInUp {
    animation-name: cpx_fadeInUp !important;
}

/* Balance out all headings */
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

/* Fix elementor default line height for icons. Icons should not affect button height */
.elementor-widget-button .elementor-button-icon {
    line-height: 0;
    /* Flexbox to keep the icon in the middle if it's not big enough to fill height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Start custom CSS */
a.elementor-button {
    position: relative;
}

a.elementor-button:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 0;
    transition: width .6s cubic-bezier(.19,1,.22,1), box-shadow .6s cubic-bezier(.19,1,.22,1);
    background: var(--e-global-color-primary);
    z-index: 1;
    left: 0;
    top: 0;
}

a.elementor-button:before {
    content: '';
    position: absolute;
    height: 3px;
    width: 0;
    transition: width .6s cubic-bezier(.19,1,.22,1);
    background: var(--e-global-color-secondary);
    z-index: 1;
    right: 0;
    bottom: 0;
    z-index: 2;
    transition-delay: .3s;
}

a.elementor-button > span {
    position: relative;
    z-index: 3;
}

a.elementor-button:hover:after, a.elementor-button:focus:after {
    width: 100%;
}

a.elementor-button:hover:before, a.elementor-button:focus:before {
    width: 100%;
}

a.elementor-button:hover {
    box-shadow: 0 0 12px rgba(0,0,0,.2);
}

.cpx-button-alt a.elementor-button:after {
    background-color: var(--e-global-color-c884d54);
}

.cpx-button-alt a.elementor-button:hover {
    color: var(--e-global-color-secondary);
}

.cpx-button-dark a.elementor-button, .cpx-button-dark a.elementor-button:hover, .cpx-button-dark a.elementor-button:focus {
    background-color: var(--e-global-color-primary);
}

.cpx-button-dark a.elementor-button:after {
    background-color: var(--e-global-color-secondary);
}

.cpx-button-dark a.elementor-button:before {
    background-color: var(--e-global-color-primary);
}

/* Lang switcher */
.lang-switcher:after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: -2px;
    height: 20px;
    width: 20px;
    background-size: cover;
    background-position: center;
    border-radius: 100%;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    z-index: 10;
}

.lang-switcher a.elementor-button {
    overflow: hidden;
}

.lang-switcher a.elementor-button:before {
    display: none;
}

.lang-switcher a.elementor-button:after {
    background-color: var(--e-global-color-c884d54);
}

.lang-switcher a.elementor-button svg {
    transition: transform .6s cubic-bezier(.19,1,.22,1);
    transform-origin: center;
}

.lang-switcher a.elementor-button:hover svg {
    transform: scale(1.22);
}

.lang-switcher a.elementor-button svg path {
    /* Transition fill */
    transition: fill .6s cubic-bezier(.19,1,.22,1);
}

.lang-switcher a.elementor-button:hover svg path, .lang-switcher a.elementor-button:focus svg path {
    fill: var(--e-global-color-secondary);
}

/* Shopping cart button */
.header-cart a#elementor-menu-cart__toggle_button {
    overflow: hidden;
}

.header-cart a#elementor-menu-cart__toggle_button:before {
    display: none;
}

.header-cart a#elementor-menu-cart__toggle_button:after {
    background-color: var(--e-global-color-c884d54);
}

.header-cart a#elementor-menu-cart__toggle_button i {
    transition: transform .6s cubic-bezier(.19,1,.22,1);
    transform-origin: center;
}

.header-cart a#elementor-menu-cart__toggle_button:hover i {
    transform: scale(1.22);
}

.header-cart a#elementor-menu-cart__toggle_button .elementor-button-icon i {
    /* Transition fill */
    transition: color .6s cubic-bezier(.19,1,.22,1), transform .6s cubic-bezier(.19,1,.22,1);
}

.header-cart a#elementor-menu-cart__toggle_button:hover .elementor-button-icon i, .header-cart a#elementor-menu-cart__toggle_button:focus .elementor-button-icon i {
    color: var(--e-global-color-secondary) !important;
}

/* Menu toggle */
.menu-toggle a.elementor-button {
    overflow: hidden;
}

.menu-toggle a.elementor-button:before {
    display: none;
}

.menu-toggle a.elementor-button:after {
    background-color: var(--e-global-color-c884d54);
}

.menu-toggle a.elementor-button svg {
    transition: transform .6s cubic-bezier(.19,1,.22,1);
    transform-origin: center;
}

.menu-toggle a.elementor-button:hover svg {
    transform: scale(1.22);
}

.menu-toggle a.elementor-button svg path {
    /* Transition fill */
    transition: fill .6s cubic-bezier(.19,1,.22,1);
}

.menu-toggle a.elementor-button:hover svg path, .menu-toggle a.elementor-button:focus svg path {
    fill: var(--e-global-color-secondary);
}

/* Clear table style */
table.clear-table tr td, table.clear-table tr th {
    background-color: transparent !important;
    border: none;
    padding-left: 0;
    padding-top: 4px;
    padding-bottom: 4px;
}

table.clear-table tr:first-child td, table.clear-table tr:first-child th {
    padding-top: 3px;
}

/* Fix weird bord in elementor dropdowns */
.elementor-widget-nav-menu .sub-menu a.elementor-sub-item {
    border-left: none;
}

/* Big backgrounds */
.big-bg .elementor-element, .big-bg .elementor-widget-container, .big-bg {
    flex-grow: 1;
    display: flex;
    height: auto !important;
}
.big-bg img {
    object-fit: cover;
    object-position: center;
}

#breadcrumbs {
    line-height: 1.1;
    padding: 3px 0;
    text-wrap: balance;
}

#breadcrumbs > span > span {
    margin-top: -2px;
}

/* Scroll indicator */
/* Mouse Styling */
.mouse {
    display: block;
    width: 28px;
    height: 48px;
    border-radius: 11px 11px 15px 15px;
    border: 1px solid #fff;
    position: absolute;
    left: 50%;
    margin-left: -13px;
    z-index: 9999;
  }
  
  .mouse span {
    display: block;
    margin: 6px auto;
    width: 2px;
    height: 5px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid transparent;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
  }
  
  @keyframes scroll {
    0% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      }
    100% {
      opacity: 0;
      -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
      transform: translateY(20px);
      }
  }

  /* Table of contents */
  .uael-toc-list {
    margin-left: 0 !important;
    padding-left: 0em !important;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;

    list-style-type: none !important;
  }

  @media screen and (max-width: 768px) {
    .uael-toc-list {
      grid-template-columns: 1fr;
    }
  }

  /* MARKERS ARE NOT SUPPORTED IN SAFARI */
  .uael-toc-list li::marker {
    display: none;
  }

  .uael-toc-list li {
    position: relative;
  }

  .uael-toc-list li:before {
    content: '→';
    color: var(--e-global-color-secondary);
    position: absolute;
    top: 6px;
  }

  .uael-toc-list li a {
    margin-left: 1.5em;
    transition: transform .2s ease-in-out;
    display: block;
  }

  @media screen and (max-width: 768px) {
    .uael-toc-list li a {
      padding: 3px 0px;
    }
  }

  .uael-toc-list li a:hover {
    transform: translateX(5px);
  }

  /* Edit upload field style */
  .elementor-field-type-upload input[type="file"] {
    padding: 15px;
  }

  /* Make scroll snap */
  .cpx-snap {
    scroll-snap-align: end;
    /* scroll-snap-stop: normal; */
  }

.cpx-language-switcher {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
}

.language-card {
    padding: 10px 15px;
    padding-bottom: 8px;
    border: 1px solid var(--e-global-color-secondary);
    border-radius: 0;
    text-align: center;
    background-color: var(--e-global-color-primary);
    transition: background-color 0.3s ease;
    color: inherit !important;
}

.language-card img {
    height: 3em;
}

.language-card.current-language {
    background-color: var(--e-global-color-secondary);
    color: #fff;
    font-weight: bold;
}

.language-card a {
    text-decoration: none;
    color: inherit;
}

.language-card:hover {
    background-color: var(--e-global-color-secondary);
}