/*custom font*/

/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    font-family: Poppins;
}

h3,
h4 {
    font-size: 1.2em;
    font-weight: bold;
    color: #5F7470;
}

h4 {
    font-size: 1em;
    font-weight: normal;
}
#msform #cancelAppointment{
    background-color: #c53333;
}
#msform #startIntercolAppointment{
    background-color: #497379;
}
#msform #newAppointment,
#msform #startAppointment,
#msform #cancelAppointment,
#msform #startIntercolAppointment
 {
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.contact-data {
    font-size: 1.1em;
    margin-top: 370px;
    padding: 30px;
    background: #2b34719a;
}

.contact-data-schedules .telf {
    margin-top: 10px;
}

.contact-data-schedules h3:not(:first-of-type) {
    margin-bottom: 0;
}


.contact-data-schedules h4 {
    margin-top: 5px;
    margin-bottom: 10px;
}

.contact-data-map iframe {
    width: 100%;
    height: 250px;
    border: 1px solid #000;
    margin-bottom: 15px;
}

.contact-data-map div {
    text-align: center;
    font-style: italic;
}

.swal2-popup .swal2-title {
    font-family: Poppins;
    font-size: 2em;
}

.swal2-popup .swal2-content {
    font-family: Poppins;
    font-size: 1.5em;
    font-weight: normal;
    margin: 20px auto;
}

/*form styles*/
#msform, #msformcancel {
    width: 768px;
    margin: 8em auto 30px auto !important;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

#msform fieldset, #msformcancel fieldset {
    background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
    margin-top: 60px;
    position: absolute;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type), #msformcancel fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input,
#msform textarea,
#msform select,
#msformcancel input,
#msformcancel textarea,
#msformcancel select,
button {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: Poppins;
    color: #2C3E50;
    font-size: 13px;
    background-color: #fff;
}

.first--DISABLED #msform input,
.first #msform textarea {
    margin-bottom: 30px;
}

.thumbstyle {
    font-size: 2em;
    padding: 21px;
    color: #3bbc8f;
}

/*buttons*/
#msform .action-button, #msformcancel .action-button {
    width: 100px;
    background: #27AE60;
    background-color: #293378;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 15px 0px 10px 0px;
    border-radius: 3px;
    float: none;
}
#msform .action-button.renda, #msformcancel .action-button.renda {
    width: 100px;
    background: #27AE60;
    background-color: #497379;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 15px 0px 10px 0px;
    border-radius: 3px;
    float: none;
}
#msform .action-button.comll, #msformcancel .action-button.comll {
    width: 100px;
    background: #27AE60;
    background-color: #293378;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 15px 0px 10px 0px;
    border-radius: 3px;
    float: none;
}

.checks input {
    float: left;
    height: 50px;
    width: auto !important;
}

.halfrights {
    width: 49.2% !important;
    float: right;
}

.halflefts {
    width: 49.2% !important;
    float: left;
}


#msform .action-button:hover,
#msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}

/*headings*/
.fs-title {
    font-size: 1.5em;
    text-transform: uppercase;
    color: #5F7470;
    margin-bottom: 15px;
    margin-top: 15px;
    font-weight: bold;
    margin-bottom: 25px;
    font-family: poppins;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    padding: 25px;
    background: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 3px;
}

/*progressbar*/
#progressbar {
    justify-content: center;
    display: flex;
    /*CSS counters to number the steps*/
    counter-reset: step;
    height: 10px;
    margin-bottom: 0;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 20%;
    position: relative;
    height: 60px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 41px;
    line-height: 40px;
    display: block;
    font-size: 15px;
    color: #333;
    background: white;
    border-radius: 999px;
    margin: 0 auto 5px auto;
    top: -10px;
    position: relative;
}

/*progressbar connectors*/

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
    /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar.comll li.active:before,
#progressbar.comll li.active:after {
    /*
    background-image: linear-gradient(to bottom right, #45cd9d , #34b185) !important;
*/
    color: white;
    background-color: #293378;
}
#progressbar.renda li.active:before,
#progressbar.renda li.active:after {
    /*
    background-image: linear-gradient(to bottom right, #45cd9d , #34b185) !important;
*/
    color: white;
    background-color: #497379;
}

/* custom styles */

.testimonials {
    margin-bottom: 0px;
    position: relative;
    bottom: 0;
    z-index: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7411764705882353);
    padding-bottom: 55px;
    padding-top: 57px;
    margin-top: -80px;
}

.logos_background {
    width: 100%;
    height: 350px;
    position: fixed;
    bottom: 0;
    background-image: url(/img/logos_background.png);
    z-index: 0;
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.testimonials h2 {
    text-align: center;
    padding: 20px 20px 30px 20px;
    color: #33027b;
    font-weight: bold;
    font-size: 1.15em;
}

.nomorg,
.address {
    float: left !important;
    width: 50% !important;
    padding: 15px;
}

.logo_un {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    background: #293378;
    border-radius: 0px 0px 3px 0px;
    width: 100%;
    border-bottom: 2px solid #000;
}
.logo_others {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    background: #497379;
    border-radius: 0px 0px 3px 0px;
    width: 100%;
    border-bottom: 2px solid #000;
}

.logo_un img {
  height: 60px;
}
.logo_others img {
    margin-top: 1.5rem;
    margin-left: 10px;
}

.logo_2un img {
    float: left;
    width: 100%;
    height: 50px;
    margin: 0;
    margin-top: 11px;
    margin-bottom: 11px;
}

.goback,
.goback:hover,
.goback:focus {
    float: left !important;
    border-right: solid 1px #e0e0e0;
}

.goback a,
.goback:hover a,
.goback:focus a {
    text-decoration: none !important;
}

.goback:hover a,
.goback:focus a {
    background: #efefef !important;
    border-right: solid 0px #e0e0e0;
}

.goback i {
    margin-right: 11px;
}

#msform .action-button:hover,
#msform .action-button:focus {
    box-shadow: 0 0 0 0px white, 0 0 0 0px #27AE60;
    outline: 0;
}

fieldset input[type="button"],
fieldset input[type="submit"],
fieldset button {
    /*
    background-image: linear-gradient(to bottom right, #45cd9d , #34b185) !important;
    */
    background-color: #F4918A;
    color: #fff !important;
    border: 0;
    padding: 13px 24px;
    border-radius: 2px;
    float: left;
    margin-right: 3px;
}


fieldset input[type="button"]:hover,
fieldset input[type="button"]:afocus,
fieldset input[type="submit"]:hover,
fieldset input[type="submit"]:afocus,
button:hover,
button:afocus {
    border: 0 !important;
    outline: 0 !important;
}

.topbar .menu,
.topbar_mobil .menu {
    float: right;
    background: #fff;
    margin-bottom: 0;
    padding-left: 0 !important;
    border-radius: 0px 0px 0px 3px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.35);
    width: 100%;
}

.topbar,
.topbar_mobil {
    height: auto;
    float: left;
    width: 500px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
}


.goback i {
    font-size: 2em;
    color: #30c6a3;
}

.goback span {
    float: right;
    margin-top: 3px;
}

.topbar ul li,
.topbar_mobil ul li {
    float: right;
    list-style: none;
    font-family: poppins;
    font-size: 1em;
}

.date {
    padding: 21px 30px;
    font-size: 0.8em;
    width: 243px;
    float: left !important;
}

.topbar .menu li a,
.topbar_mobil .menu li a {
    float: left;
    padding: 20px 20px;
    background: #fff;
    color: #000;
    font-weight: normal;
    font-size: 0.9em;
    height: 64px;
}

.userLogin {
    color: #ccc;
    margin-top: 2px;
}

.show {
    right: 0px !important;
    -webkit-transition: all 0.3s ease-in-out !important;
    -moz-transition: all 0.3s ease-in-out !important;
    -o-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
}

.desplang {
    position: fixed;
    right: -500px;
    -webkit-transition: all 0.3s ease-in-out !important;
    -moz-transition: all 0.3s ease-in-out !important;
    -o-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
    top: 67px;
}

.langs {
    width: 59px;
    padding: 22px 17px 12px 17px !important;
    height: auto;
    float: left;
}

.langs img {
    float: left;
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.clock {
    color: #ccc !important;
    margin-right: 10px;
    margin-left: 10px;
}

.calendar {
    color: #ccc;
    margin-right: 10px;
}

body {
    background: url(/web_resources/img/portada.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.body-wrapper {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
}

.resume .number {
    float: left;
    width: 25% !important;
    border-radius: 0px 3px 3px 0px !important;
    border-left: 0 !important;
    text-align: center;
    padding: 15px 10px !important;
    font-family: poppins;
}

h2.resco {
    text-align: left;
}



.resume .numbername {
    float: left;
    width: 75%;
    background: #eaeaea;
    border-radius: 3px 0px 0px 3px;
    padding: 14px 20px;
    height: 50px;
    border: 1px solid #ccc;
    text-align: left;
    font-family: poppins;
}

.accept_conditions_check {
    float: left;
    width: 25px !important;
}

.accept_conditions_text {
    float: right;
    width: calc(100% - 35px);
    text-align: left;
    font-size: 0.8em;
    font-weight: 100;
    margin-top: 1px;
    color: #8a8a8a;
    font-family: poppins;
}

label.acceptation {
    border: dotted 1px #ccc;
    border-radius: 2px;
    padding: 8px;
    background: #f9f9f9;
}

.number.alta {
    border: solid 1px #ccc;
    padding: 14px !important;
}

.resume ul {
    list-style-image: url(https://www.vunkers.com/wp-content/uploads/2018/09/list-iot-arrow-2.png);
    text-align: left;
    padding: 20px 20px 0px 20px;
    font-family: poppins;
}

.checks input[type="radio"] {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: Poppins;
    color: #2C3E50;
    position: absolute;
    font-size: 13px;
    top: 0;
    left: 0;
    height: auto;
    margin: 0;
}

.checks label {
    position: relative;
    padding: 5px;
    border-radius: 3px;
    float: left;
    width: 100%;
    background: #f1f1f1;
}

.checks img {
    height: 30px;
    width: auto !important;
    margin: 2px 2px 2px 2px;
    width: auto !important;
}

.resume ul li {
    font-size: 0.9em;
    padding-bottom: 10px;
    line-height: 1.8em;
}

.resume ul li i {
    color: green;
    margin-right: 10px;
}

.totalcase {
    font-size: 4.5em;
    font-weight: bold;
    padding: 0px 20px;
    margin-top: 5px;
    height: auto;
    background: #ffffff;
    color: #33027b;
    border-top: 1px solid #ccc;
    margin-bottom: 10px;
    float: left;
    width: 100% !important;
    border-radius: 0px;
    font-family: poppins;
    text-align: center;
}

.contratar {
    width: 161px !important;
    background: #27AE60 !important;
    font-weight: bold !important;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 13px 5px !important;
    margin: 0px 5px 10px 5px !important;
    border-radius: 3px;
    float: none;
    font-size: 1.2em !important;
}

.resumdreta {
    float: right;
    width: 60%;
    margin-top: 10px;
}

.resumesquerra {
    float: left;
    width: 40%;
    text-align: left;
}

.seeprice {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    float: left;
}

.totalcase #number_workers_result {
    font-size: 1em;
}

.totalcase span {
    font-size: 0.5em;
}

.textsota {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 1em;
    margin-top: 0px;
    font-family: poppins;
    list-style-image: url(https://www.vunkers.com/wp-content/uploads/2018/09/list-iot-arrow-2.png);
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

.altacapsa {
    float: right;
    width: 60%;
    padding: 10px;
    border-top: solid 1px #ccc;
    margin-top: 0px;
    margin-bottom: 20px;
    border-radius: 0;
}

.payment {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}




/* Testimonials */
.testimonials h2 {
    text-align: center;
    padding: 20px 20px 30px 20px;
}

.testimonials .slick-slide {
    margin: 0px 20px;
}

.testimonials .slick-slide img {
    width: 100%;
}

.testimonials .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.testimonials .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.testimonials .slick-list:focus {
    outline: none;
}

.testimonials .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.testimonials .slick-slider .slick-track,
.testimonials .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.testimonials .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.testimonials .slick-track:before,
.testimonials .slick-track:after {
    display: table;
    content: '';
}

.testimonials .slick-track:after {
    clear: both;
}

.testimonials .slick-loading .slick-track {
    visibility: hidden;
}

.testimonials .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.testimonials [dir='rtl'] .slick-slide {
    float: right;
}

.testimonials .slick-slide img {
    display: block;
    display: block;
    height: 92px;
    border-radius: 3px;
    width: auto;
    margin: 0 auto;
}

.testimonials .slick-slide.slick-loading img {
    display: none;
}

.testimonials .slick-slide.dragging img {
    pointer-events: none;
}

.testimonials .slick-initialized .slick-slide {
    display: block;
}

.testimonials .slick-loading .slick-slide {
    visibility: hidden;
}

.testimonials .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.testimonials .slick-arrow.slick-hidden {
    display: none;
}

.hiddenlayer {
    opacity: 0;
    height: 0;
    -webkit-transition: all 0.5s ease-in-out !important;
    -moz-transition: all 0.5s ease-in-out !important;
    -o-transition: all 0.5s ease-in-out !important;
    transition: all 0.5s ease-in-out !important;
}

.showlayer {
    opacity: 1;
    height: auto;
    -webkit-transition: all 0.5s ease-in-out !important;
    -moz-transition: all 0.5s ease-in-out !important;
    -o-transition: all 0.5s ease-in-out !important;
    transition: all 0.5s ease-in-out !important;
}

.jconfirm-box {
    padding: 55px 37px 37px 37px !important;
    text-align: center;
    font-weight: bold;
    border-bottom: solid 4px #ffa500;
}

.card-wrapper {
    margin-bottom: 20px;
    z-index: 0;
    position: relative;
}

.jp-card.jp-card-identified {
    min-width: initial !important;
}

.jp-card {
    min-width: initial !important;
}

.col-xs-offset-1 {
    margin-left: 0 !important;
}


@media (max-width: 950px) {

    .topbar .menu,
    .topbar {
        width: 100%;
        box-shadow: 0 0 0;
        border-radius: 0px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.11);
    }

    .topbar .menu li {
        width: auto;
        float: right;
    }

    #msform--DISABLED {
        margin: 180px auto;
    }

    .logo_un--DISABLED {
        position: fixed;
        left: 0;
        top: 64px;
        z-index: 2;
        width: 301px;
        padding: 16px 21px;
        width: 100%;
        text-align: center;
        background: #33027b;
        border-radius: 0px 0px 3px 0px;
        height: 76px;
    }

    .logo_un--DISABLED img {
        float: left;
        height: 100% !important;
        margin: 0px;
    }

    .checks label {
        width: 100% !important;
    }

    .testimonials {
        margin-bottom: 0px;
        position: relative;
        bottom: 0;
        left: initial;
        transform: none;
        margin-left: 0% !important;
    }

}

@media (max-width: 767px) {

    .halfrights {
        width: 100% !important;
        float: none;
    }

    .halflefts {
        width: 100% !important;
        float: none;
    }

    .logo_un, .logo_others{
        position: relative;
    }
    .logo_others img {
        width: 95%;
        height: auto;
    }

    #msform fieldset {
        width: 90% !important;
        margin: 60px 5% !important;
    }

    .goback span {
        display: none;
    }

    .goback i {
        font-size: 1em;
    }

    .seeprice {
        max-width: initial;
        width: 100%;
        float: left;
        text-align: center;
        margin: 0 auto;
    }

    .resumdreta,
    .resumesquerra {
        width: 100%;
    }

    #msform {
        width: 100%;
        text-align: center;
        position: relative;
        margin: 80px auto 0 auto !important
    }

    .topbar ul li,
    .topbar_mobil ul li {
        font-size: 0.9em;
    }

    .tornar {
        display: none;
    }

    .goback a {
        float: left;
        background: #fff;
        color: #000;
        font-weight: normal;
        font-size: 2em !important;
        padding: 18px 19px !important;
        height: 64px;
    }

    .goback a i {
        margin-right: 0;
    }

    .nomorg,
    .address {
        float: left !important;
        width: 100% !important;
        padding: 15px;
    }
}

.has-error {
    border: 1px solid #ff0000 !important;
}

.v-info {
    margin-top: 30px;
    font-size: 20px;
}

.logo{
    margin-left: 5rem;
}
.v-title{
    color: white;
    text-align: right;
    margin-right: 5rem;
    font-size: 25px;
    margin-top: 1rem;
}
.hide, .js-hourTemplate{
    display: none;
}
.v-hour-selected{
    margin-bottom: 3em;
}
.v-active{
    color: #ffffff !important;
    background-color: #FFF !important;
    border-color: #ffffff  !important;
    transform: scale(1.1);
    
}

.js-selected-hour[disabled]{
    background-color: #cf0000 !important;
    border-color: #e00101  !important;
}

.js-selected-hour{
    background-color: #00cf0a !important;
    border-color: #22ce00  !important;
}

.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
}

.slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.file-card {
    flex: 0 0 calc(33.333% - 10px);
    margin: 5px;
    scroll-snap-align: start;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    position: relative;
}

.file-card-body {
    position: relative;
    align-items: center; /* Centra horizontalmente */
    justify-content: center; /* Centra verticalmente */
    width: 100%; /* Ocupa todo el ancho disponible */
    height: 100px;
}

.file-image {
    width: 100%;
    max-height: 70%;
    object-fit: cover;
}

.file-name {
    margin: 0;
    font-size: 14px;
    word-break: break-all;
    text-align: center;
}

.remove-file {
    text-align: center;
    z-index: 1;
}