/*
Theme Name: Ezzing Simulator
Theme URL:
Description: Diseño Ezzing Simulator
Author: Ezzing
Template: twentyseventeen
Version: 1.0.0
Text Ezzing Simulation Design for Wordpress
*/

input {
    user-select: none;
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
}

input, input:before, input:after {
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
    -webkit-appearance: none;
}

html {
    scroll-behavior: smooth;
    margin: 0 !important;
}

*  {
    box-sizing: border-box;
    font-family: 'Montserrat';
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,h2,h3,h4,h5 {
    margin: 0;
    font-weight: normal;
}

p {
    margin: 0;
}

.margin-right-auto > div {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.elementor-widget:not(:last-child) {
    margin-bottom: 0;
}
.elementor-element {
    --widgets-spacing: 0;
}


/* Forms */

.input-ezz {
    width: 100%;
    padding: 12px 16px;
    border-radius: 4px;
    border: none;
    outline: none;
    background: #EBEBEB;
    font-size: 14px;
    line-height: 26px;
    color: #222229;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-group-check-special {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.form-group-check-special label {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #ACB2AA;
    margin-bottom: 0;
    font-weight: normal;
}
.form-group-check-special label a {
    color: var(--color-primary-cta);
}

.form-group-check-special input {
    width: 24px;
    height: 24px;
    border: 3px solid var(--color-primary-cta);
    border-radius: 6px;
    margin-right: 10px;
}

.form-group-check-special input:checked {
    border: none;
    background: url('/wp-content/themes/ezzing/assets/check.png');
    background-size: contain;
}

/* Input Range */

input[type='range'] {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    max-height: 8px;
    border-radius: 10px;
    background: transparent;
    padding: 0;
    transition: background 450ms ease-in;
    -webkit-appearance: none;
}

input[type='range']::-webkit-slider-thumb {
    cursor: ew-resize;
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    background: url('/wp-content/themes/ezzing/assets/input-range.png') no-repeat center center;
    background-size: cover;
    box-shadow: none;
}

input[type=range]::-moz-range-thumb {
    width: 30px;
    height: 30px;
    border: 0;
    background: url('/wp-content/themes/ezzing/assets/input-range.png') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    box-shadow: none;
}

/* Buttons */

.button-standart-ezz {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 8px;
}

.button-standart-ezz:hover {
    cursor: pointer;
}

.button-standart-ezz.button-standart-ezz-primary {
    color: var(--color-primary-text-cta);
    border: 2px solid var(--color-primary-cta);
    background-color: var(--color-primary-cta);
}

.button-standart-ezz.button-standart-ezz-primary:hover {
    background-color: var(--color-primary-text-cta);
    color: var(--color-primary-cta);
}

.button-standart-ezz.button-standart-ezz-secondary {
    color: var(--color-secondary-border-text-cta);
    border: 2px solid var(--color-secondary-border-text-cta);
    background-color: var(--color-secondary-text-cta);
}

.button-standart-ezz.button-standart-ezz-secondary:hover {
    background-color: var(--color-secondary-border-text-cta);
    color: var(--color-secondary-text-cta);
}

@media screen and (max-width: 1024px) {
    .button-standart-ezz {
        font-size: 12px;
    }
}

/* Container Simulador */

.container-ezz {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-ezzingsimulator {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-left-right {
    width: 100%;
    display: flex;
}

.container-left-right .left-part {
    flex-basis: calc(100% - 180px);
    width: calc(100% - 180px);
}
.container-left-right .right-part {
    flex-basis: 180px;
    width: 180px;
    padding: 25px;
}

@media screen and (max-width: 980px){
    .container-left-right .left-part {
        flex-basis: 100%;
        width: 100%;
    }
    .container-left-right .right-part {
        display: none;
    }
}

/* Check in circle */

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    border-radius: 34px;
    margin: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    border-radius: 34px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--color-primary);
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch .slider:before {
    position: absolute;
    content: "NO";
    height: 26px;
    width: 26px;
    left: 2px;
    border-radius: 34px;
    bottom: 2px;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    line-height: 12px;
    align-items: center;
    background-color: var(--color-primary);
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input:checked + .slider {
    background-color: var(--color-primary);
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px var(--color-primary);
}

.switch input:checked + .slider:before {
    content: "SI";
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background-color: #222229;
}



/* Footer */

footer .copyright {
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 100%;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .copyright img {
    margin: 0 3px;
}

footer .copyright a {
    color: #fff;
}

footer .copyright a:hover {
   text-decoration: underline;
}

/* Footer Normal */

.footer-home-page {
    position: relative;
    z-index: 999;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    margin-top: -44px;
}

.footer-home-page.footer-home-page-background {
    background-color: var(--color-primary);
    margin-top: 0;
}

/* Footer Complete */

.footer-page-complete {
    background-color: var(--color-primary);
    padding: 15px 0;
}

.footer-page-complete .container-ezz {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-page-complete .container-ezz * {
    color: #fff;
}

.footer-page-complete .container-ezz .left-text {
    width: 100%;
    max-width: 275px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    margin-right: 10px;
}

.footer-page-complete .container-ezz .image-text-footer {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.footer-page-complete .container-ezz .image-text-footer img {
    margin-right: 10px;
}

.footer-page-complete .container-ezz .image-text-footer p {
    margin: 0;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.8px;
}

.footer-page-complete .container-ezz .image-text-footer p a {
    color: var(--color-secondary);
}

@media screen and (max-width: 1024px) {

    .footer-page-complete {
        padding: 25px 0;
    }

    .footer-page-complete .container-ezz {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-page-complete .container-ezz .left-text {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .footer-page-complete .container-ezz .image-text-footer {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-page-complete .container-ezz .copyright {
        margin-top: 20px;
    }
}

/* Whatsapp */

.whatsapp-icon {
    cursor: pointer;
    z-index: 999;
    position: fixed;
    bottom: 60px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4dc247;
    border: 2px solid #4dc247;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.whatsapp-icon svg {
    width: 70%;
    height: auto;
    fill: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.whatsapp-icon:hover {
    background-color: #fff;
}

.whatsapp-icon:hover svg {
    fill: #4dc247;
}

/* Google Maps */

.postal-code-box .pac-container {
    bottom: 75px !important;
    left: 0 !important;
    top: inherit !important;
    width: 100% !important;
}

.middle-part-direction .pac-container {
    bottom: auto !important;
    left: 0 !important;
    top: 50px !important;
    width: 100% !important;
}

#wpadminbar {
    display: none !important;
}