body {
    font-family: "open sans", arial, sans-serif;
}

body,
input[type="text"],
input[type="password"],
input[type="number"],
textarea,
select,
input[type="submit"] {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    outline: none;
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
}

a {
    color: #2490f4;
    cursor: pointer;
}

.clr {
    clear: both;
}

.menuTop {
    border-bottom: 1px solid #ccc;
    box-shadow: 0 0 2px #eee;
    position: fixed;
    width: 100%;
    top: 0px;
    padding-top: 20px;
    height: 57px;
    padding-bottom: 20px;
    text-align: center;
    background-color: #fff;
    z-index: 2;
}

.menuTopCon {
    max-width: 1280px;
    display: inline-block;
    width: 100%;
}

.menuLogo {
    float: left;
    width: 200px;
    margin-left: 20px;
    margin-top: 4px;
}

.menuTopRight {
    float: right;
    margin-right: 20px;
}

.menuTopLogin,
.menuTopDemo {
    padding: 10px 15px;
    border-radius: 5px;
    margin-right: 15px;
    float: left;
    font-size: 16px;
    text-decoration: none;
    margin-top: 7px;
}

.menuTopDemo {
    background-color: #2490f4 !important;
    background-image: linear-gradient(
            to right top,
            #2490f4,
            #1897f5,
            #139ff5,
            #18a5f5,
            #24acf4
    );
    color: #fff !important;
}

.menuTopLogin:hover {
    background-color: #fafafa;
}

.menuTopLang {
    background-size: 20px;
    float: left;
    padding: 10px 15px;
    background-repeat: no-repeat;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #eee;
    color: #000 !important;
    margin-top: 7px;
}

.menuTopLang:hover ul {
    display: block;
    position: absolute;
}

.menuTopLang ul {
    display: none;
    list-style: none;
    position: absolute;
    padding: 0px;
    width: 85px;
    border: 1px solid #eee;
    border-radius: 0px 5px 5px 5px;
    margin-left: -16px;
    background: #fff;
    margin-top: 7px;
}

.menuTopLang ul li {
    float: left;
    padding: 5px 15px;
    width: 55px;
    text-align: left;
}

.menuTopLang ul li:hover {
    background-color: #2490f4 !important;
    color: #fff !important;
}

.menuTopLang ul li img {
    float: left;
    width: 18px;
    margin-top: 2px;
    margin-right: 5px;
}

.mainContent {
    float: left;
    margin-top: 98px;
    width: 100%;
}

.slideHome {
    float: left;
    clip-path: polygon(0 0, 0 89%, 41% 100%, 75% 88%, 100% 96%, 100% 0);
    overflow: hidden;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 150px;
    text-align: center;
    position: relative;
    background-position: left 30%;
    box-shadow: 0 0 2px #000;
}

.slideHome.feature {
    clip-path: none;
    padding-top: 50px;
    padding-bottom: 70px;
}

.slideHomeCon {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px;
    color: #fff;
    box-sizing: border-box;
    text-align: center;
    gap: 20px;
}

.slideMainTitle {
    font-size: 38px;
    font-weight: 700;
    width: 100%;
    text-shadow: 0 0 2px #000, 0 0 20px #000;
    margin-bottom: 10px;
    max-width: 700px;
    text-align: left;
}

.slideMainDesc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
    text-align: left;
    font-weight: normal;
}

.emailButtonWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.slideDemoEmail {
    font-size: 18px !important;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    flex: 1 1 150px;
    min-width: 150px;
}

.slideDemoButton {
    background-color: #2490f4 !important;
    background-image: linear-gradient(
            to right top,
            #2490f4,
            #1897f5,
            #139ff5,
            #18a5f5,
            #24acf4
    );
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 1 1 120px;
    min-width: 120px;
    text-align: center;
    cursor: pointer;
}

.slideDemoButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.slideDarken {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0px;
    height: 100%;

    background: rgba(17, 17, 17, 0.98);
    background: -moz-linear-gradient(
            left,
            rgba(17, 17, 17, 0.98) 0%,
            rgba(17, 17, 17, 0.4) 43%,
            rgba(17, 17, 17, 0) 68%,
            rgba(17, 17, 17, 0) 100%
    );
    background: -webkit-gradient(
            left top,
            right top,
            color-stop(0%, rgba(17, 17, 17, 0.98)),
            color-stop(43%, rgba(17, 17, 17, 0.4)),
            color-stop(68%, rgba(17, 17, 17, 0)),
            color-stop(100%, rgba(17, 17, 17, 0))
    );
    background: -webkit-linear-gradient(
            left,
            rgba(17, 17, 17, 0.98) 0%,
            rgba(17, 17, 17, 0.4) 43%,
            rgba(17, 17, 17, 0) 68%,
            rgba(17, 17, 17, 0) 100%
    );
    background: -o-linear-gradient(
            left,
            rgba(17, 17, 17, 0.98) 0%,
            rgba(17, 17, 17, 0.4) 43%,
            rgba(17, 17, 17, 0) 68%,
            rgba(17, 17, 17, 0) 100%
    );
    background: -ms-linear-gradient(
            left,
            rgba(17, 17, 17, 0.98) 0%,
            rgba(17, 17, 17, 0.4) 43%,
            rgba(17, 17, 17, 0) 68%,
            rgba(17, 17, 17, 0) 100%
    );
    background: linear-gradient(
            to right,
            rgba(17, 17, 17, 0.98) 0%,
            rgba(17, 17, 17, 0.4) 43%,
            rgba(17, 17, 17, 0) 68%,
            rgba(17, 17, 17, 0) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#111111', endColorstr='#111111', GradientType=1);
}

.home3block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
    flex-wrap: wrap;
}

.home3blockCon {
    max-width: 1280px;
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-top: 75px;
}

.home3blockTitleCon {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 50px;
}

.home3blockConElemCon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.home3blockConElem {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
}

.home3blockConElem img {
    width: 90px;
    margin-bottom: 15px;
}

.home3blockConElem .contenido {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0;
}

.home3blockConElem .contenido-lateral {
    flex-grow: 1;
    flex-direction: row;
    justify-content: center;
    gap: 7px;
}

.home3blockConElem .leer-mas {
    align-self: flex-start;
    margin-top: 20px;
}

.home3blockTitle {
    float: left;
    width: 100%;
    font-size: 20px;
    text-align: center;
    margin-top: 5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.home3blockDesc {
    float: left;
    width: 100%;
    text-align: center;
}

.home3blockConElem a {
    font-weight: 600;
    font-size: 16px;
    margin-top: 30px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.home3blockConElem a:hover {
    text-decoration: underline;
}

.home3Title {
    float: left;
    width: 100%;
    font-size: 25px;
    text-align: center;
    font-weight: 600;
}

.home3Subtitle {
    float: left;
    width: 100%;
    font-size: 19px;
    text-align: center;
    font-weight: 200;
    padding-top: 2px;
}

.homeInfoblock {
    float: left;
    width: 100%;
    text-align: center;
}

.homeDemoBlock {
    float: left;
    width: 100%;
    text-align: center;
}

.homeDemoBlockCon {
    max-width: 1280px;
    display: inline-block;
    width: 100%;
    padding-bottom: 75px;
    padding-top: 75px;
}

.homeInfoblockImage {
    float: left;
    width: 50%;
}

.homeInfoMainText {
    float: left;
    width: 45%;
    margin-right: 5%;
    margin-top: 25px;
}

.homeInfoMainTextTitle {
    float: left;
    font-size: 28px;
    font-weight: 600;
    width: 100%;
}

.homeInfoMainTextDesc {
    float: left;
    width: 100%;
    margin-top: 10px;
}

.homeInfoblockCon {
    max-width: 1240px;
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-top: 75px;
}

.home3blockDesc,
.homeInfoMainTextDesc,
.homeTestimonyDesc {
    font-size: 16px;
    color: #777;
    line-height: 28px;
}

.homeTestimony {
    width: 100%;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    box-shadow: 0 0 2px #eee;
    background-color: rgba(36, 146, 248, 0.199);
    text-align: center;
    padding-top: 60px;
}

.homeTestimonyCon {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-bottom: 75px;
    padding-top: 75px;
}

.homeTestimonyTitle {
    font-size: 24px;
    font-weight: 700;
    padding: 20px;
}

.homeTestimonyCon img {
    width: 350px;
    margin-left: 30px;
    position: relative;
    float: left;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    transform: translateY(-8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homeTestimonyDesc {
    float: left;
    margin-left: 100px;
    width: 500px;
    color: #666;
    background-image: url(../Images/comentario-alt.svg);
    background-repeat: no-repeat;
    background-size: 50px;
    padding-top: 65px;
    padding-left: 8px;
}

.boxScreenshotImg {
    float: left;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 4px;
}

.boxScreenshotImg video {
    float: left;
    width: 100%;
}

.ahVideoMovil {
    box-shadow: none;
}

.boxScreenshotImg img {
    float: left;
    width: 100%;
}

.boxScreenshotImgHdr {
    float: left;
    width: 100%;
    border-bottom: 1px solid #ccc;
    height: 26px;
    background-color: #eee;
}

.homeInfoblock .home3blockConElem img {
    width: 37px;
    float: left;
    margin-right: 7px;
}

.homeInfoblock .home3blockTitle {
    width: auto;
}

.homeInfoblock .home3blockConElem {
    margin-top: 90px;
    margin-left: 0px;
    text-align: left;
}

.homeInfoblock .home3blockDesc {
    text-align: left;
}

.homeInfoblock .home3blockConElem:last-child {
    margin-right: 0px;
}

.homeRemindDemo {
    float: left;
    width: 100%;
    text-align: center;
    background-image: linear-gradient(
            to right top,
            #2490f4,
            #1897f5,
            #139ff5,
            #18a5f5,
            #24acf4
    );
    background-color: #2490f4;
}

.homeRemindDemoCon {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 75px 20px;
    box-sizing: border-box;
    justify-content: center;
    gap: 20px;
}

.homeRemindDemoLeft {
    width: 100%;
    max-width: 600px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.homeRemindDemoTitle {
    width: 100%;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
    font-size: 28px;
}

.homeRemindDemoDesc {
    width: 100%;
    text-align: left;
    font-size: 17px;
}

.homeRemindDemoCon .slideDemoButton {
    background-image: linear-gradient(
            to right top,
            #00a05d,
            #01a554,
            #0ea949,
            #1dad3c,
            #2bb12b
    );
}

.pieFijo {
    float: left;
    height: 36px;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}

.pie {
    bottom: 0;
    font-weight: 600;
    height: 2.5em;
    line-height: 2.5em;
    float: left;
    text-align: center;
    width: 100%;
}

.pieFixed .pie {
    position: fixed;
}

.pieFloat {
    float: left;
    padding-top: 35px;
    position: relative;
    width: 100%;
}

.pie a {
    color: black;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}

.pie a:hover {
    text-decoration: underline;
}

.pie span {
    color: #555;
    margin-right: 13px;
}

<!--
#eucookielaw {
    display: none;
}

-- > #eucookiesetup {
    display: none;
}

#eucookielaw {
    background-color: rgba(0, 0, 0, 0.85);
    border-top: 1px solid #333;
    bottom: 0;
    color: #fff;
    font-size: 13px;
    width: 90%;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 5%;
    position: fixed;
    text-align: center;
    padding-right: 5%;
    z-index: 101;
}

#eucookielaw p {
    display: inline-block;
    text-align: left;
    font-size: 14px;
    max-width: 1280px;
}

#eucookielaw a {
    color: #fff !important;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 5px;
    text-decoration: none;
}

#eucookielaw a:hover {
    text-decoration: underline;
}

#eucookielaw #more {
    float: left;
    margin-top: 10px;
}

.removeCookie {
    position: sticky;
    bottom: 0;
    padding: 10px;
    border: 1px solid #fff;
    text-transform: uppercase;
    margin-right: 10px;
    margin-left: 0;
    z-index: 10;
}

#eucookiesetup {
    position: absolute;
    left: 0;
    top: 0;
}

#eucookiesetupFade {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    bottom: 0;
}

#eucookiesetupCon {
    width: 600px;
    height: 600px;
    background: #fff;
    position: fixed;
    padding: 20px 50px 0px 50px 0px 50px;
    left: 0;
    right: 0;
    bottom: 20%;
    margin: auto;
    overflow-y: auto;
    top: 200px;
    border-radius: 15px;
    z-index: 123456;
}

#eucookiesetupConTop {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 10px;
}

#eucookiesetupConTop a {
    text-transform: uppercase;
    float: left;
    width: 30%;
    margin-right: 2%;
    padding-bottom: 5px;
    border-bottom: 2px solid #ccc;
    font-size: 15px;
    color: #555;
}

.removeCookie:hover {
    text-decoration: none !important;
}

#eucookiesetupConTop a.selected {
    color: #2490f4;
}

.conCookie {
    width: 1280px;
    max-width: 100%;
    display: inline-block;
    margin-top: 15px;
}

#homeLogin,
#forgotLogin,
#registerLogin {
    text-align: center;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: auto;
    left: 0px;
    background-image: linear-gradient(
            to right top,
            #2490f4,
            #1897f5,
            #139ff5,
            #18a5f5,
            #24acf4
    );
}

#forgotLogin,
#forgotReload,
#registerLogin {
    display: none;
}

.bloqueLoginLogo {
    display: inline-block;
    width: 200px;
    margin-top: 50px;
}

.bloqueLogin {
    display: inline-block;
    width: 400px;
    border: 2px solid #ccc;
    border-radius: 20px;
    background-color: #fff;
    margin-top: 25px;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 88%;
    padding-right: 10px;
    padding-left: 10px;
    position: relative;
}

.bloqueLogin .inputLogin,
.bloqueLogin #mailpw,
#registerLogin input[type="text"],
#registerLogin input[type="password"],
#frmContact input[type="text"],
#frmContact textarea {
    float: left;
    width: 72% !important;
    margin-left: 10%;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px 4% !important;
    font-size: 15px;
}

.bloqueLogin .sexo {
    float: left;
    margin-left: 11%;
    margin-top: 20px;
    margin-bottom: 20px;
}

#frmRegister .sexo input,
#frmRegister .sexo label {
    float: left;
}

#frmRegister .sexo label {
    float: left;
    font-weight: 600;
    font-size: 14px;
    margin-top: -3px;
    margin-left: 5px;
    margin-right: 20px;
}

.descmailpw {
    font-size: 14px;
    width: 78%;
    text-align: left;
    color: #333;
    margin-left: 11%;
    font-weight: 600;
    margin-bottom: 10px;
    float: left;
}

#loginSubmit,
#forgotSubmit,
#forgotReload,
#registerSubmit,
.homeWelcomeCtrls a {
    background-color: #2490f4 !important;
    color: #fff;
    border: 0px;
    width: 80%;
    padding: 12px 0px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    margin-left: 3px;
    font-size: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

#forgotReload {
    display: none;
}

.bloqueLogin .forgot {
    width: 77%;
    text-align: left;
    margin-bottom: 15px;
    font-size: 13px;
    display: inline-block;
}

.bloqueLogin .forgot:hover {
    text-decoration: underline;
}

.enterFacebookLG,
.enterTwitterLG {
    background-repeat: no-repeat;
    border: 0 none;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    margin-top: 21px;
    font-size: 13px !important;
    font-weight: 600;
    border: 1px solid #eee;
    height: 42px;
    line-height: 28px !important;
    width: 67px;
    text-align: left;
    text-decoration: none;
}

.enterFacebookLG {
    background-color: #3a589b;
    background-image: url(../Images/fb.png);
    background-position: 22px center;
    background-size: 20px auto;
    text-indent: 36px;
    margin-left: 10px;
}

.enterTwitterLG:hover {
    background-color: #00a2e3;
}

.enterFacebookLG:hover {
    background-color: #304e91;
}

.enterTwitterLG {
    background-color: #00aced;
    background-image: url(../Images/twitterWhite.png);
    background-position: center;
    background-size: 17px auto;
    margin-left: 5px;
}

.bloqueLoginLinkReg {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 100px;
}

.bloqueLoginLinkReg a {
    font-weight: 600;
    color: #fff;
    margin-left: 5px;
}

.bloqueLoginLinkReg a:hover {
    text-decoration: underline;
}

#loginErrors {
    color: red;
    font-size: 14px;
    margin-bottom: 6px;
    display: inline-block;
}

#errForgotpw {
    color: red !important;
    margin-top: 5px !important;
    font-size: 14px !important;
    font-weight: 600;
    margin-bottom: 20px;
    width: 80%;
    float: left;
    text-align: center;
    padding-left: 10%;
}

.indexErrors {
    display: none;
    background-color: #fff;
    padding-left: 8%;
    float: left;
    margin-left: 10%;
    border: 1px solid #ccc;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 64%;
    padding-right: 8%;
    margin-bottom: 10px;
}

.indexErrors li {
    display: none;
    color: #ff0000;
    float: left;
    font-size: 12px;
    margin-bottom: 0px;
    width: 94%;
    margin-left: 0px;
    margin-right: 10px;
    font-weight: 600;
    text-align: left;
    z-index: 1;
    padding-right: 5px;
}

#selPrivacy {
    display: inline-block;
    background: #fff;
    width: 79%;
    font-size: 14px;
    height: 40px;
    margin-left: 2px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

#CONtypedemo {
    display: inline-block;
    background: #fff;
    width: 431px !important;
    font-size: 14px;
    border-radius: 5px;
    height: 40px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding-right: 10px;
    padding-left: 7px;
    max-width: 90%;
}

#aceptaCondiciones,
#autorizoEnvio {
    float: left;
    margin-top: 3px;
    margin-right: 5px;
}

.indexAcuerdo {
    font-size: 13px;
    font-weight: 600;
}

.boxControlAutoRes {
    background-color: #fff;
    float: left;
    padding: 5px 0px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    width: 100%;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    position: relative;
}

.boxControlAutoRes:hover {
    background-color: rgba(36, 144, 244, 1);
}

.boxControlAutoRes:hover span {
    color: #fff;
}

.boxControlAutoRes img {
    border-radius: 50%;
    display: block;
    float: left;
    height: 27px;
    margin-left: 10px;
    width: 27px;
}

.boxControlAutoRes span {
    display: block;
    float: left;
    font-size: 12px;
    margin-left: 7px;
    margin-right: 10px;
    margin-top: 4px;
    color: #444;
}

.boxControlAutoRes.noPic span {
    margin-top: 4px;
    margin-bottom: 4px;
}

.boxControlAutoRes.size1 {
    width: 209px;
}

.boxControlAutoRes.size1 span {
    width: 170px;
}

.ui-autocomplete {
    list-style: none;
    padding-left: 5px;
    width: 310px !important;
}

.ui-helper-hidden-accessible {
    display: none;
}

.iniciaParaAceptar {
    float: left;
    margin-top: -10px;
    font-size: 15px;
    text-align: left;
    margin-right: 41px;
    font-weight: 600;
    margin-left: 135px;
    color: #333;
    margin-bottom: 25px;
}

.iniciaParaAceptarLogo {
    margin-top: -10px;
    display: inline-block;
    width: 75px;
    left: 40px;
    position: absolute;
    height: 75px;
    border-radius: 50%;
}

.homeDemoBlockCon .home3Title {
    font-size: 40px;
}

.homeDemoBlockCon .homeSubTitle {
    font-size: 17px;
    color: #666;
}

.homeDemoLeft {
    float: left;
    width: 40%;
    padding: 0px 40px;
}

.homeDemoRight {
    float: right;
    margin-top: 80px;
    max-width: 44%;
    padding-left: 40px;
    width: 470px;
    text-align: left;
    padding-right: 40px;
}

.homeDemoSteps {
    float: left;
    margin-top: 130px;
    position: relative;
}

.homeDemoStepNum {
    float: left;
    position: absolute;
    background-color: #2490f4 !important;
    background-image: linear-gradient(
            to right top,
            #2490f4,
            #1897f5,
            #139ff5,
            #18a5f5,
            #24acf4
    );
    width: 32px;
    color: #fff;
    font-weight: 600;
    height: 32px;
    line-height: 32px;
    top: 0px;
    left: 0px;
    margin: auto;
    bottom: 0px;
    font-size: 16px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-position: center;
}

.homeDemoStepNum.phone {
    background-image: url(../Images/phoneBoxWhite.svg),
    linear-gradient(to right top, #2490f4, #1897f5, #139ff5, #18a5f5, #24acf4);
    background-size: 14px, 100%;
}

.homeDemoStepNum.cal {
    background-image: url(../Images/calendarWhite.svg),
    linear-gradient(to right top, #2490f4, #1897f5, #139ff5, #18a5f5, #24acf4);
    background-size: 14px, 100%;
}

.homeDemoStepNum.ask {
    background-image: url(../Images/commentsWhite.svg),
    linear-gradient(to right top, #2490f4, #1897f5, #139ff5, #18a5f5, #24acf4);
    background-size: 14px, 100%;
}

.homeDemoStepNum.set {
    background-image: url(../Images/settings.svg),
    linear-gradient(to right top, #2490f4, #1897f5, #139ff5, #18a5f5, #24acf4);
    background-size: 18px, 100%;
}

.homeDemoStepDesc {
    text-align: left;
    font-size: 15px;
    margin-left: 41px;
    float: left;
}

.homeDemoStep {
    position: relative;
    float: left;
    margin-bottom: 20px;
    width: 100%;
}

#frmContact input[type="text"],
#frmContact textarea {
    padding-left: 10px !important;
    width: 400px !important;
    margin-left: 0px;
    max-width: 90%;
}

#frmContact input[type="text"]:focus,
#frmContact textarea:focus {
    border-color: #2e9afe !important;
    box-shadow: 0 10px 20px -21px gray inset, 0 0 2px #2e9afe !important;
}

.homeWelcomeCtrls a {
    text-align: center;
    background-image: linear-gradient(
            to right top,
            #2490f4,
            #1897f5,
            #139ff5,
            #18a5f5,
            #24acf4
    );
    margin-top: 20px;
    margin-left: 0px;
    width: 200px;
    text-decoration: none;
    border-radius: 40px;
}

.homeDemoRight .indexErrors {
    padding-left: 35px;
    margin-left: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.homeDemoRight .indexErrors li {
    font-size: 13px;
    margin-bottom: 5px;
    margin-top: 5px;
}

#mensajeEnviadoIndex {
    display: none;
    border: 1px solid #eee;
    border-radius: 50px;
    text-align: center;
    padding: 50px;
    max-width: 75%;
}

#mensajeEnviadoIndex span {
    background-image: url(../Images/checkGreen.svg);
    font-size: 17px;
    text-align: center;
    background-position: top;
    float: left;
    margin-bottom: 38px;
    padding-top: 110px;
    background-size: 90px;
    background-repeat: no-repeat;
}

#mensajeEnviadoIndex .homeWelcomeCtrls {
    float: none;
    margin-left: 0;
    display: inline-block;
}

#mensajeEnviadoIndex .homeWelcomeCtrls a {
    margin: 0;
}

.homeTopCounts {
    float: left;
    width: 100%;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background-size: cover;
    position: relative;
}

.homeTopCountsCon {
    max-width: 1240px;
    display: inline-block;
    width: 100%;
    padding-bottom: 50px;
    padding-top: 75px;
}

.homeTopCountsTitle {
    display: inline-block;
    color: #2e9afe;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 35px;
    font-weight: normal;
    box-shadow: 0 0 2px #fff;
}

.homeTopCountsSubtitle {
    display: inline-block;
    font-size: 13px;
    color: #777;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    max-width: 60%;
    padding: 5px 10px;
    border-radius: 16px;
    box-shadow: 0 0 2px #fff;
}

.homeTopContainer {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.homeTopCountnum {
    display: inline-block;
    border-radius: 2px;
    width: 380px;
    margin-top: 30px;
    padding: 30px 10px;
    text-align: center;
    box-sizing: border-box;
}

.homeTopCountnumt {
    float: left;
    width: 100%;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    color: #333;
}

.homeTopCountnumd {
    float: left;
    width: 100%;
    font-size: 25px;
    color: #333;
    margin-top: 5px;
    font-weight: 600;
}

.homeTopCountnumd2 {
    float: left;
    width: 100%;
    font-size: 20px;
    color: #666;
    line-height: 22px;
    margin-top: 10px;
}

.homeTopCountnumSep {
    display: inline-block;
    width: 1px;
    height: 130px;
    background: #ddd;
    margin-top: 69px;
}

.homeInfoFooter {
    float: left;
    width: 100%;
    text-align: center;
    background-image: linear-gradient(
            to right top,
            #2490f4,
            #1897f5,
            #139ff5,
            #18a5f5,
            #24acf4
    );
    background-color: #2490f4;
}

.homeInfoFooterCon {
    max-width: 1240px;
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-bottom: 75px;
    padding-top: 75px;
}

.homeInfoFooterSec1 {
    float: left;
    width: 30%;
}

.homeInfoFooterSecCompany {
    color: #fff;
    float: left;
    margin-top: 10px;
    width: 100%;
    font-weight: 600;
    font-size: 13px;
    margin-left: 5px;
}

.homeInfoFooterSecLogo {
    float: left;
    width: 220px;
}

.homeInfoFooterSec2 {
    float: right;
    width: 20%;
    margin-left: 1%;
}

.homeInfoFooterSec2 a {
    width: 100%;
    float: left;
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 14px;
}

.homeInfoFooterSec2 a:hover {
    text-decoration: underline;
}

.homeInfoFooterSec2tit {
    float: left;
    color: #fff;
    margin-top: 12px;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.homeInfoFooterIG,
.homeInfoFooterFB {
    width: 26px !important;
    height: 26px !important;
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 7px;
    margin-top: 5px;
    background-position: center;
}

.homeInfoFooterIG {
    background-image: url(../Images/web/homeig.svg);
    margin-top: 6px;
}

.homeInfoFooterFB {
    background-image: url(../Images/web/homefb.svg);
}

.descargaStores {
    float: left;
    margin-top: 50px;
}

.descargaStores .ios,
.descargaStores .android {
    float: left;
    width: 150px;
    cursor: pointer;
}

.descargaStores .android {
    width: 173px;
    margin-top: -11px;
}

.homePartnerTitle {
    float: left;
    font-size: 26px;
    width: 100%;
    color: #555;
    margin-top: 50px;
    text-align: left;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    text-indent: 15px;
}

.homePartner {
    float: left;
    width: 350px;
    margin-top: 20px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    text-align: center;
    margin-right: 50px;
    cursor: pointer;
    margin-bottom: 30px;
}

.homePartner:hover {
    box-shadow: 0 0 2px #ccc;
}

.homePartner.disabled:hover {
    box-shadow: none;
    cursor: default;
}

.homePartner img {
    height: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.homePartnerTitle2 {
    float: left;
    width: 86%;
    text-align: left;
    font-size: 20px;
    color: #555;
    background-color: #fff;
    padding: 0px 7%;
    border-top: 1px solid #ddd;
    padding-bottom: 3px;
    font-weight: 600;
    padding-top: 20px;
}

.homePartnerDesc {
    float: left;
    padding: 0px 7%;
    font-size: 14px;
    color: #666;
    background: #fff;
    text-align: left;
    padding-bottom: 25px;
}

.featureLeft .homeInfoMainText,
.featureRight .homeInfoMainText {
    margin-top: 0px;
}

.featureRight .homeInfoMainText {
    margin-right: 0px;
    margin-left: 5%;
    float: right;
}

.featureLeft .homeInfoblockCon,
.featureRight .homeInfoblockCon {
    padding-top: 130px;
    padding-bottom: 130px;
}

.featureRight {
    background-color: #fafdff;
}

.homeListaChecks {
    float: left;
    color: #777;
    font-size: 16px;
    margin-top: 30px;
    padding: 0px;
    list-style: none;
}

.homeListaChecks li {
    float: left;
    background-repeat: no-repeat;
    background-image: url(../Images/checked.svg);
    background-position: left;
    margin-bottom: 10px;
    padding-left: 22px;
    background-size: 16px;
    width: 100%;
}

.menuFuncionalidadesCon {
    float: left;
    margin-top: 7px;
    margin-left: 40px;
}

.menuFuncionalidades {
    float: left;
    padding: 10px 15px;
    color: #555;
    background-size: 15px;
    background-image: url(../Images/downGray.svg);
    font-size: 16px;
    background-repeat: no-repeat;
    background-position: right 15px;
    cursor: pointer;
    padding-right: 18px;
    transition: 0.3s;
}

.menuFuncionalidadesCon ul {
    padding: 20px 0px;
    display: none;
    list-style: none;
    font-size: 16px;
    padding-top: 20px;
    border: 1px solid #eee;
    margin-top: 38px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    box-shadow: 0 1px 2px #eee;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 250px;
}

.menuFuncionalidadesCon:hover .menuFuncionalidades,
.menuFuncionalidadesCon ul li:hover {
    color: #2490f4;
}

.menuFuncionalidadesCon:hover ul {
    display: block;
}

.menuFuncionalidadesCon ul li {
    float: left;
    text-align: left;
    cursor: pointer;
    width: 100%;

    margin-bottom: 20px;
}

.menuFuncionalidadesCon ul li:last-child {
    margin-bottom: 0px;
}

.menuFuncionalidadesCon ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.menuFuncionalidadesCon ul li a:hover {
    color: #2490f4;
}

.clrrsp {
    display: none;
}

#homeInfoMainTextTitle1 {
    margin-top: 80px;
}

@media screen and (max-width: 1300px) {
    .homeTestimonyCon .homeTestimonyDesc {
        width: 400px;
    }

    .slideHomeCon .slideHomeLeft {
        margin-left: 50px;
    }

    .homeInfoblockCon .homeInfoMainText {
        width: 40%;
        margin-right: 5%;
        margin-left: 5%;
        margin-top: 0px !important;
    }

    .homeInfoblockCon .homeInfoblockImage {
        width: 45%;
    }

    .featureRight .homeInfoblockCon .homeInfoblockImage {
        margin-left: 5%;
    }

    .homeInfoblock .home3blockDesc {
        font-size: 15px;
    }

    .home3blockConElem {
        width: 26% !important;
        margin-left: 5.5% !important;
        margin-right: 0px !important;
    }

    .homeInfoblock .home3blockTitle {
        font-size: 19px;
    }

    .homeRemindDemoLeft {
        width: 40%;
        margin-right: 5%;
        margin-left: 5%;
    }

    .homeTopCountnum {
        width: 260px;
    }

    .home3blockConElem a {
        margin-top: 10px;
    }

    .homeInfoFooterSec1 {
        margin-left: 5%;
    }

    .descargaStores .ios,
    .descargaStores .android {
        width: 130px;
    }

    .descargaStores .android {
        width: 148px;
        margin-top: -9px;
    }

    .homeDemoSteps {
        margin-top: 100px;
    }

    .homePartnerTitle {
        width: 90%;
        float: none;
        display: inline-block;
    }

    .homePartner {
        float: none;
        margin-left: 10px;
        display: inline-block;
        margin-right: 10px;
    }

    .hide1300 {
        display: none;
    }

    #homeInfoMainTextTitle1 {
        margin-top: 60px;
    }
}

@media screen and (max-width: 1000px) {
    .homeDemoLeft {
        width: 90%;
        padding-left: 0px;
        display: inline-block;
        padding-right: 0px;
        float: none;
    }

    .homeDemoRight {
        width: 400px;
        padding-left: 0px;
        display: inline-block;
        padding-right: 0px;
        margin-top: 30px;
        float: none;
        max-width: 80%;
    }

    .homeDemoSteps {
        margin-top: 35px;
    }

    .clrrsp {
        display: block;
        clear: both;
    }

    .menuFuncionalidades {
        display: none;
    }

    .menuLogo {
        width: 150px;
    }

    .menuTopLogin,
    .menuTopDemo {
        font-size: 14px;
    }

    .menuTopRight {
        float: right;
        width: 50%;
        margin-right: 10px;
    }

    .menuTopLogin {
        margin-top: 0px;
        float: right;
        border: 1px solid #eee;
        font-weight: 600;
        margin-right: 0px;
    }

    .menuTopDemo {
        float: right;
        margin-right: 0px;
    }

    .menuTop {
        padding-top: 10px;
        height: 90px;
    }

    .menuTopLang {
        position: absolute;
        left: 18px;
        margin-top: 0px;
        top: 63px;
    }

    .mainContent {
        margin-top: 120px;
    }

    .slideHomeLeft {
        width: 90%;
        padding: 0px 5%;
        margin: 0px !important;
    }

    .slideMainTitle {
        font-size: 36px;
    }

    .slideHome {
        padding-top: 50px;
        clip-path: none;
        padding-bottom: 50px;
    }

    .slideMainDesc {
        line-height: 28px;
        font-size: 15px;
        width: 100%;
        font-weight: 600;
    }

    .home3Title {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }

    .home3blockCon {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .home3blockConElem {
        width: 90% !important;
        margin-left: 5% !important;
        margin-top: 40px;
    }

    .home3blockConElem img {
        width: 60px;
    }

    .homeTestimonyCon img {
        width: 40%;
        margin-left: 5%;
    }

    .homeTestimonyCon {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .homeInfoblockCon {
        text-align: center;
    }

    .homeTestimonyDesc {
        width: 90% !important;
        margin-left: 5%;
        background-size: 52px;
        padding-left: 0px;
        padding-top: 0px;
        background-position: right bottom;
        margin-top: 20px;
    }

    .homeInfoMainText {
        width: 90% !important;
        text-align: left;
    }

    .homeInfoblockImage {
        display: inline-block;
        margin-top: 20px;
        margin-left: 5%;
        width: 75% !important;
    }

    .homeInfoblock .home3blockConElem {
        margin-top: 40px;
    }

    .homeRemindDemoLeft {
        width: 90%;
    }

    .homeRemindDemoCon {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    #slideDemoEmail2 {
        margin-left: 5%;
    }

    .homeRemindDemoTitle {
        font-size: 24px;
    }

    .homeRemindDemoDesc {
        font-size: 15px;
    }

    .homeInfoblockCon,
    .homeTopCountsCon {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .homeTopCountsTitle {
        width: 90%;
        font-size: 29px;
    }

    .homeTopCountnumSep {
        height: 1px;
        width: 80%;
        position: relative;
        margin-top: 0px;
    }

    .homeTopCountnum {
        margin-top: 0px;
    }

    .homeTopCountsSubtitle {
        margin-bottom: 20px;
    }

    .home3blockTitle {
        margin-top: 5px !important;
    }

    .homeInfoFooterSec2,
    .homeInfoFooterSec1 {
        width: 90%;
        float: left;
        margin-left: 5%;
        margin-bottom: 10px;
    }

    .descargaStores {
        margin-top: 20px;
    }

    .homeInfoFooterCon,
    .homeDemoBlockCon {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .homeDemoBlockCon .homeSubTitle {
        width: 90%;
        display: inline-block;
    }
}

@media screen and (max-width: 360px) {
    .menuTop {
        height: 130px;
    }

    .mainContent {
        margin-top: 160px;
    }

    .menuTopRight {
        width: 70%;
    }
}

.homeInfoblockCon .subMain {
    color: #444;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    padding: 10px 0px 0;
    text-align: left;
    width: 900px;
}

.legalMensaje {
    float: left;
}

.legalMensajeTit {
    float: left;
    width: 100%;
    margin-top: 30px;
    font-size: 17px;
    margin-bottom: 10px;
}

.legalMensajeBlock {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

#registerLogin .legalMensajeBlock a {
    color: #fff !important;
}

#eucookiesetupControles {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 10px solid white; /* línea blanca separadora */
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

#eucookiesetupControles a {
    border: 2px solid;
    float: none;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
}

#eucookiesetupConPolitica,
#eucookiesetupConNecesarias {
    float: left;
    width: 100%;
    padding-block-end: 10px;
    overflow-y: auto;
}

#eucookiesetupTerceros span,
#eucookiesetupConNecesarias span {
    /*background-image: url(../Images/checkedGray.svg);*/
    /*margin-top: 30px;*/
    /*float: left;*/
    /*margin-top: 30px;*/
    /*background-repeat: no-repeat;*/
    /*background-size: 30px;*/
    height: 30px;
    font-size: 18px;
    /*padding-left: 37px;*/
    color: #555;
    line-height: 30px;
}

#eucookiesetupTerceros p > b,
#eucookiesetupConPolitica p > b,
#eucookiesetupConNecesarias p > b {
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
}

@media screen and (max-width: 700px) {
    #eucookiesetupCon {
        width: 80%;
        top: 140px;
    }

    #eucookiesetupConPolitica,
    #eucookiesetupConNecesarias {
        padding-block-end: 15px;
        max-height: 280px;
    }
}

#bodyLoadingToken {
    display: none;
    background-image: url(../Images/ring.svg) !important;
    position: fixed;
    top: 0;
    left: 0;
    background-size: 50px;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
}

#eucookiesetupTerceros {
    position: relative;
    float: left;
    width: 100%;
    overflow-y: auto;
}

.cookies-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    margin-top: 7px;
}

.cookie-title {
    font-weight: bold;
    font-size: 14px;
}

.view-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    transition: all 0.3s;
}

.cookie-switch::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: white;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}

.cookie-checkbox:checked + .cookie-switch::after {
    left: 20px;
}

.cookie-checkbox:checked + .cookie-switch {
    background-color: rgba(36, 144, 244, 0.7);
}

.cookie-checkbox.readonly:checked + .cookie-switch {
    background-color: gray;
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-checkbox {
    display: none;
}

.cookie-small-title {
    font-size: 14px !important;
}

.indent-20 {
    padding-block-end: 15px;
    margin-left: 20px;
}

/* Pantallas grandes */
@media (min-width: 1600px) {
    .homeTestimonyCon {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }

    .homeTestimonyCon img {
        float: none;
        margin-left: 0;
        margin-right: 50px;
    }

    .homeTestimonyDesc {
        float: none;
        margin-left: 0;
    }
}

/* Ultra wide (monitores 32’’ curva, 4K o QHD) */
@media (min-width: 2560px) {
    .homeTestimonyCon {
        max-width: 1800px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .homeTestimonyDesc {
        max-width: 700px;
    }
}
