/* 
Theme Name: CodePix Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Een website door CodePix
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-codepix
Version: 1.0.2
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
*/

/* Hide recaptcha */
.grecaptcha-badge {
    visibility: hidden;
}

form .elementor-field-type-recaptcha_v3 {
    height: 0;
    margin-bottom: 0 !important;
}

.elementor-form .elementor-form-fields-wrapper small {
    line-height: 1.3em;
    display: block;
    text-wrap: balance;
}

.elementor-form .elementor-form-fields-wrapper small a {
    color: inherit;
    text-decoration: underline;
}

/* Elementor form messages */
.elementor-form .elementor-message {
    background-color: #f8f8f8;
    border-radius: 0px;
    padding: 15px;
    line-height: 1.5;
    border: 1px solid #bdbdbd;
    color: var(--e-global-color-secondary);
}

.elementor-form .elementor-message.elementor-message-success {
    border-bottom: 3px solid var(--e-global-color-primary);
}

/* 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;
}

.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

/* 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;
}

/* Backgrounds */
.cpx-background {
    height: 100%;
}

.cpx-background img {
    object-fit: cover;
    object-position: center;
}

/* ::selection {
    background: rgba(251, 80, 0, 0.3);
    color: #FFFFFF;
}
  
::-moz-selection {
    background: rgba(251, 80, 0, 0.3);
    color: #FFFFFF;
} */

/* Prevent focussing woo messages with ugly outline */
.woocommerce-message:focus {
    outline: none;
    box-shadow: none;
}

/* Turn elementor grids into centered flex layout using the gap variables from the grid */
.cpx-grid-to-flex .elementor-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: var(--grid-row-gap, 30px);
    column-gap: var(--grid-column-gap, 30px);
    justify-content: center;
}

/* Based on the variable --grid-columns (this is an int, say: 5) i need the items (.e-loop-item) to have the correct sizes. calculate the gaps so it doesnt overflow */
.cpx-grid-to-flex .elementor-grid .e-loop-item {
    flex: 0 1 calc(calc(100% / var(--grid-columns, 5)) - var(--grid-column-gap, 30px));
}

body.logged-in .hide-logged-in {
    display: none !important;
}

body:not(.logged-in) .hide-logged-out {
    display: none !important;
}

/* cpx mt auto */
.cpx-mt-auto {
    margin-top: auto;
}

/* Fix paragraph spacings */
.elementor-widget-text-editor,
.fix-paragraph-spacing {
    p:not(:last-child) {
        margin-bottom: 1em;
    }
}

/* Fix all icons */
.elementor-widget-container .elementor-icon-wrapper {
    line-height: 0;
}

/* Header */
body.admin-bar {
    .cpx-header {
        top: 32px !important;
    }
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        .cpx-header {
            top: 46px !important;
        }
    }
}

.elementor-heading-title {
    mark {
        background: transparent;
        color: var(--e-global-color-primary);
    }
}

.cpx-steps {
    overflow: hidden;

    .cpx-step {
        position: relative;

        &:before,
        &:after {
            content: '';
            background-color: var(--e-global-color-secondary);
            position: absolute;
            pointer-events: none;
            opacity: .1;
        }
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .cpx-steps {
        .cpx-step {
            &:before {
                height: 2px;
                width: calc(100% + 100px);
                bottom: -50px;
                left: 50%;
                transform: translateX(-50%);
            }

            &:after {
                height: calc(100% + 100px);
                width: 2px;
                top: 50%;
                right: calc(-30px + 1px);
                transform: translateY(-50%);
            }

            &:nth-child(5):before,
            &:nth-child(6):before {
                display: none;
            }

            &:nth-child(2):after,
            &:nth-child(4):after,
            &:nth-child(6):after {
                display: none;
            }
        }
    }
}

@media screen and (min-width:1024px) {
    .cpx-steps {
        .cpx-step {
            &:before {
                height: 2px;
                width: calc(100% + 100px);
                bottom: -50px;
                left: 50%;
                transform: translateX(-50%);
            }

            &:after {
                height: calc(100% + 100px);
                width: 2px;
                top: 50%;
                right: calc(-30px + 1px);
                transform: translateY(-50%);
            }

            &:nth-child(4):before,
            &:nth-child(5):before,
            &:nth-child(6):before {
                display: none;
            }

            &:nth-child(3):after,
            &:last-child:after {
                display: none;
            }
        }
    }
}

.cpx-big-slider {
    user-select: none;

    figure {
        line-height: 0 !important;
        height: 100%;

        img {
            object-fit: cover;
            object-position: center;
            height: 100%;
            width: 100%;
        }
    }

    .swiper-wrapper {
        align-items: stretch !important;

        .swiper-slide {
            /* height: auto !important; */
            aspect-ratio: 16/10;

            .swiper-slide-image {
                aspect-ratio: 16/10;
            }
        }
    }

    .swiper-pagination {
        bottom: -5px !important;

        .swiper-pagination-bullet {
            width: 40px;
            border-radius: 5px;
            height: 2px;
            transition: all .2s ease-in-out !important;
            position: relative;

            &.swiper-pagination-bullet-active {
                width: 60px;
            }

            &:hover {
                background-color: #c5c5c5 !important;
            }

            &:before {
                content: '';
                position: absolute;
                top: -10px;
                left: -10px;
                right: -10px;
                bottom: -10px;
                z-index: 1;
            }
        }
    }
}

.cpx-vacancy-content {

    h2,
    h3,
    h4 {
        margin-top: 40px;
        margin-bottom: 10px;
    }

    ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 1em;
    }

    ul li {
        position: relative;
        padding-left: 30px;

        &:not(:last-child) {
            margin-bottom: 5px;
        }
    }

    ul li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
        height: 15px;
        background-color: var(--e-global-color-primary);
        border-radius: 50%;
    }
}

/* Built for – CodePix widget */
.built-for {
    --cpx-gap: 16px;
    --cpx-max-width: 1200px;
    --cpx-logo-max-height: 48px;
    --cpx-logo-opacity: 0.9;

    max-width: var(--cpx-max-width);
    margin-left: auto;
    margin-right: auto;
}

.built-for__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--cpx-gap);
    margin: 0;
    padding: 0;
    list-style: none;
}

.built-for__item {
    /* Mobile first: 4 per row */
    flex: 0 1 calc((100% - (var(--cpx-gap) * (4 - 1))) / 4);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 600px) {

    /* Tablet: 6 per row */
    .built-for__item {
        flex-basis: calc((100% - (var(--cpx-gap) * (6 - 1))) / 6);
    }
}

@media (min-width: 1024px) {

    /* Desktop: 7 per row */
    .built-for__item {
        flex-basis: calc((100% - (var(--cpx-gap) * (7 - 1))) / 7);
    }
}

.built-for__logo {
    aspect-ratio: 1/1;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    object-position: center;
    opacity: var(--cpx-logo-opacity);
    transition: opacity 0.2s ease-in-out;
    border-radius: 5px !important;
    padding: 5px;
    background: #fff;
}

.built-for__logo:hover {
    opacity: 1;
}

.no-pointer-events {
    pointer-events: none !important;
}