@charset "utf-8";

:root {
    --color-primary: #0066BF;
    --color-primary-rgba: #0066BF;
}

@font-face {
    font-family: DIN Condense;
    src: url(../fonts/d45f96029e61832fd84afffd3068b768.woff) format('woff');
}

/*
TODO: CLEAN CODE NOT USED
*/

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    font-size: 12px;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    position: relative;
}

/**
   * Render the `main` element consistently in IE.
   */
/* main {
    display: block;
} */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

a {
    background-color: transparent;
}

b,
strong {
    font-weight: bolder;
}

img {
    border-style: none;
}


button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    cursor: pointer;

}

/* for safari */
.cssFakeButton {
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
    box-sizing: border-box;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

input {
    width: 100%;
    border: 1px solid #979797;
    border-radius: 4px;
    padding: 12px 20px;
    margin: 7px 0;
    text-align: center;
    color: #2C323A;
    font-weight: 300;
}

input[type="button"],
button {
    font-size: 1.167rem;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.168px;
    font-weight: 700;
    /* width: 100%; */
}

.cssButtonMain,
.cssFakeButton {
    background: var(--color-primary);
    box-shadow: 0px 16px 14px -14px #0066BF;
    border-radius: 0;
}

button.cssBtnGhost {
    background: transparent;
    color: #000000;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
    letter-spacing: 0.132px;
}

.cssBtnGhost.likeLink {
    margin-top: 8px;
    margin-bottom: 4px;
    padding: 4px 0;
}

.cssBtnGhostWhite {
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: .5rem 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.cssBtnOnlyIcon {
    background: transparent;
    padding: 8px 1rem;
    margin: 0 1rem;
}

.cssBtnOnlyIconSmall {
    background: transparent;
    margin: 0;
    max-width: 21px;
    padding: 0;
}

.cssBtnOnlyIcon .cssImgBtnTop {
    padding-bottom: 0;
}

textarea {
    width: 100%;
    border: 1px solid #979797;
    border-radius: 4px;
    padding: 12px 20px;
    margin: 7px 0;
    text-align: center;
    color: #2C323A;
    font-weight: 300;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[hidden] {
    display: none;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.mt-0 {
    margin-top: 0 !important;
}

.cssAbsolute {
    position: absolute;
    width: 100%;
}

.cssHide {
    display: none !important;
}

.responsive {
    width: 100%;
    height: auto;
}

.logoLogin {
    width: 230px;
    margin: 30px 0px 30px 0px;
}

.cssMarginZero {
    margin: 0;
}

.text-center {
    text-align: center;
}

.cssContainerOtherTech {
    text-align: center;
    margin: 1rem 0;
}

/* ANIMACIONES */
@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slide-bottom {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    75% {
        opacity: .8;
    }

    100% {
        transform: translateY(50vh);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes slide-top {
    0% {
        opacity: 0;
        transform: translateY(50vh);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
        z-index: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes slide-right-out {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

@keyframes slide-left-out {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50vw);
        opacity: 0;
    }
}




.cssWrapperBttn {
    text-align: center;
}

.cssFakeButton {
    display: inline;
    text-transform: uppercase;
    padding-top: 8px;
    padding-bottom: 8px;
}

.cssCenterFlex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}


.cssWrapperCodigo {
    display: flex;
    justify-content: space-around;
}

.csCodigoIdentidad {
    display: inline-block;
    margin: 2px;
    padding: 12px;
}

.cssTitleMainManu {
    font-family: DIN Condense, sans-serif;
    font-size: 23px;
    text-transform: uppercase;
    line-height: 28px;
    letter-spacing: 0.0022285711020231247px;
    text-align: center;
    margin-bottom: 1rem;
}

.cssGeneralContainer {
    display: flex;
    flex-direction: column;
    height: 100vh;
    /*background-image: url(../img/bg-spectrack.png);*/
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
}

.cssMain {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
}

.cssMain.view-btnCamion {
    background-image: url(../img/mobile_bg_camiones.png);
}

.cssMain.view-btnAutos {
    background-image: url(../img/mobile_bg_autos.png);
}

.cssMain.view-btnMotos {
    background-image: url(../img/mobile_bg_motos.png);
}

#viewMenu {
    z-index: 2;
}

#viewLogIng {
    height: 100%;
}

.cssMain {
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.cssMainMenu {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr auto;
    grid-template-columns: 1fr;
    height: 90%;
    z-index: 2;
}

.cssItemSub {
    text-align: left;
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    width: 250px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 18px 27px rgba(25, 0, 70, 0.35394);
    backdrop-filter: blur(15.1159px);
    color: #66686A;
    letter-spacing: 0.372px;
    padding: 1rem 2.5rem;
    margin-bottom: .5rem;
    transition: background .5s;
}

.cssItemSub.active {
    background: #FFFFFF;
    color: #0066BF;
}

.cssSmallTextMenu {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.228px;
    display: block;
}

.cssWrapperTextItemSub {
    display: inline-block;
    margin: 6px 0 0 2rem;
}

.cssWrapperElementsBtn {
    display: flex;
    align-items: center;
}

.cssWrapperElementsBtn img {
    width: 45px;
}

.cssSubMenu {
    z-index: 1;
    padding-top: 2rem;
}

.cssWrapperSubMenu {
    margin-top: 1rem;
}

.cssFooter {
    text-align: center;
}

.cssWrapperMainView {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr auto;
    grid-template-columns: 1fr;
    gap: 0px;
    height: 100%;
}

.cssCamion .child {
    background: url(../img/mobile_camiones.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;

}

.cssAutos .child {
    background: url(../img/mobile_autos.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.cssMotos .child {
    background: url(../img/mobile_motos.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.cssOptionMainMenu {
    margin: 0;
    padding: 0;
    background-color: transparent;
    width: 100%;
    height: 100%;
}

.cssLineOtherTech {
    display: block;
    border: 1px solid #fff;
    width: 150px;
    margin-top: 2px;
}

.cssWithIcon {
    padding: 8px;
}

.cssImgBtnTop {
    display: block;
    margin: 0 auto;
    width: 22px;
    padding-bottom: 15px;
}


.cssButtonRound {
    width: 8.167rem;
    height: 8.167rem;
    color: #000;
    background-color: #fff;
    font-weight: 700;
    border: none;
    padding: 0 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.25rem;
    margin: 4px 2px;
    border-radius: 50%;
}

.cssSoporte {
    margin-top: 3rem;
}

.cssFormContainer {
    /*margin-top: 2rem;*/
    display: inline-block;
    background-color: #fff;
    padding: 1.75rem;
    max-width: 273px;
    position: relative;
}

.cssImgWrapper {
    /*padding: 1.5rem 2rem 1rem 2rem;*/
    text-align: center;
}

#phoneTwoFactors .cssFormContainer {
    margin-top: -4rem;
    display: inline-block;
    background-color: #fff;
    padding: 1.75rem;
    max-width: 273px;
    position: relative;
}

.imgWidth {
    max-width: 194.28px;
    margin-top: 40px;
}

.cssWrapperCheckbox {
    color: #000000;
    font-size: 0.917rem;
    text-align: center;
    position: relative;
    margin: 8px 0;
}

input[type='checkbox'] {
    accent-color: red;
}

.cssWrapperCheckbox input {
    position: absolute;
    right: 0;
    top: -8px;
    width: auto;
}


.cssLegales {
    font-size: 0.75rem;
    color: #fff;
    background-color: #000;
    padding: 6px;
    text-align: center;
}

.cssListasLegales {
    margin: 0;
}

.cssListasLegales li {
    display: inline;
}

.cssListasLegales li a {
    color: #FFFFFF;
}

.cssListasLegales li a:hover {
    opacity: .8;
}

.cssListasLegales li:nth-child(n+2)::before {
    content: "| ";
}

@keyframes slide-top-out {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    75% {
        opacity: .7;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh);
        display: none;
    }
}

#viewLogIng {
    display: none;
}

.view-btnDesktop #viewLogIng,
.view-btnCamion #viewLogIng,
.view-btnAutos #viewLogIng,
.view-btnMotos #viewLogIng {
    display: flex;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-name: fadeIn;
}


#viewMenu.camion,
#viewMenu.autos,
#viewMenu.motos {
    position: absolute;
    width: 100%;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-name: slide-top-out;
}

.expanded .cssMainMenu {
    position: absolute;
    width: 100%;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-name: slide-top-out;
}

.cssWrapperSubMenu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

/*+CHECKBOX*/

.container {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: -2px;
    right: 0;
    height: 16px;
    width: 16px;
    background-color: #D8D8D8;
    border-radius: 4px;
}

.container:hover input~.checkmark {
    background-color: #ccc;
}

.container input:checked~.checkmark {
    background-color: var(--color-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.cssCloseModal {
    position: absolute;
    top: 17px;
    right: 17px;
}


/*FORM SOPORTE*/

.cssFormSoporte {
    position: relative;
    text-align: center;
}


.cssBodyForm {
    margin-top: 3.75rem;
}

.cssMailSupportForm {
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 25px;
    letter-spacing: 0.144px;
    margin-top: 9px;
    margin-bottom: 2.5rem;
}

.cssTitleSupportForm {
    font-weight: 300;
    font-size: 1.333rem;
    line-height: 19px;
}

.cssBtnSoporte {
    margin-top: 29px;
    margin-bottom: 25px;
}

.evtOpenPolPriv,
.evtOpenConUso {
    cursor: pointer;
    font-weight: 400;
    padding-right: 4px;
}

/* FORM RECUPERAR CONTRASEÑA */
.cssFormRecuperaPass {
    width: 506px;
    display: inline-block;
    padding: 2rem 5.5rem 4rem
}

.wrapperInputRecupera {
    margin-bottom: 2rem;
}

/*REGISTRO TWO FACTOR*/
.cssWrapperTextos {
    text-align: center;
    font-size: 1rem;
    line-height: 14px;
}

.cssTitleTwoFactors {
    font-weight: 800;
    font-size: 17px;
    line-height: 20px;
    color: var(--color-primary);
}

.cssAppContainer {
    display: flex;
    width: 100%;
    height: 64px;
    justify-content: space-around;
    font-size: 10px;
}

.cssAppGOO {
    height: 100%;
    width: 100%;
    display: flex;
    background: #F2F2F2;
    border-radius: 10px;
    cursor: pointer;
}

.cssAppGOOImg {
    width: 100%;
    height: 100%;
    display: flex;
}

.cssAppGOOImg2 {
    height: 32px;
    width: 32px;
    align-self: center;
    margin-left: 5px;
}

.cssAppGOOText {
    align-content: center;
}

.cssAppGOOText2 {
    margin: 4px;
}

.cssAppText {
    align-content: center;
    width: 10%;
    text-align: center;
}

.cssAppMS {
    height: 100%;
    width: 100%;
    display: flex;
    background: #F2F2F2;
    border-radius: 10px;
    cursor: pointer;
}

.cssAppMSImg {
    width: 100%;
    height: 100%;
    display: flex;
}

.cssAppMSImg2 {
    height: 32px;
    width: 32px;
    align-self: center;
    margin-left: 5px;
}

.cssAppMSText {
    align-content: center;
}

.cssAppMSText2 {
    margin: 4px;
}

.cssContainer-qr {
    display: flex;
    justify-content: center;
}

.cssWarningLimite {
    font-weight: 700;
}

.cssWarningLimite2 {
    font-weight: 400;
}

.cssBtnWrapperTW {
    margin-top: 19px;
    margin-bottom: 15px;
}

#viewFormsOthers {
    position: relative;
}

.cssCloseSwap {
    display: inline-block;
    background: transparent;
    margin: 0;
    padding: 4px;
    max-width: 20px;
    cursor: pointer;
    top: 11px;
    right: 14px;
    position: absolute;
}

/*  */

.cssOptionMainMenu .arrow-icon {
    position: relative;
    display: none;
    opacity: 0;
}


/*MODAL BOX*/

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

/* Modal Content/Box */
.modal-content {
    height: 100vh;
}

.modal-content .cssFormModals {
    position: relative;
    margin-top: 0;
    background: #FFFFFF;
    box-shadow: 0px 18px 51px -13px rgba(0, 0, 0, 0.670205);
    backdrop-filter: blur(15.1159px);
}

.close {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

#phoneTwoFactorsOthers {
    opacity: 0;
    display: none;
}

@keyframes slide-right {
    0% {
        opacity: 0;
        transform: translateX(-100vw);
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

#phoneTwoFactorsGral .cssFormContainer {
    margin-top: 0;
}


#phoneTwoFactorsGral,
#veridicaIdentidadGral {
    display: none;
}

.cssContinueTWOG #dvLoginCenterGral,
.showFormVerificacion #dvLoginCenterGral {
    display: none;
}

.cssContinueTWOG #phoneTwoFactorsGral {
    display: block;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-name: slide-right;
}

.showFormVerificacion #veridicaIdentidadGral {
    display: block;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-name: fadeIn;
}

.cssContinueTWO.cssCenterFlex {
    flex-direction: row;
}

.expanded.cssOptionSelected #botonRegresarMenu {
    display: none;
}

.expanded.cssOptionSelected #cerrarForm {
    display: inline-block;
}

.cssContinueTWO #containerFormLogInOthers {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-name: slide-bottom;
}

.cssContinueTWO #phoneTwoFactorsOthers {
    display: initial;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-name: slide-top;
}

.cssContinueTWO #containerFormLogInOthers,
.showFormVerificaIdentidad #containerFormLogInOthers {
    display: none;
}

.showFormVerificaIdentidad #phoneTwoFactorsOthers {
    animation-name: slide-bottom;
}

.showFormVerificaIdentidad #veridicaIdentidadOthers {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-name: slide-top;
}

#viewLogIngDesk,
.cssSubMenu {
    display: none;
}


.expanded .cssSubMenu {
    display: initial;
}

#cerrarForm {
    display: none;
}

.expanded.cssOptionSelected .cssItemSub:not(.active) {
    display: none;
}

.expanded.cssOptionSelected #containerFormLogInOthers {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-name: slide-top;
}

.expanded.cssOptionSelected .showFormVerificaIdentidad #containerFormLogInOthers {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-name: slide-bottom;
}


/*RESPONSIVE */

@media only screen and (min-width: 744px) {
    .cssTitleMainManu {
        font-size: 22px;
    }

    #cerrarForm {
        margin-bottom: 3rem;
    }

    .expanded.cssOptionSelected .cssItemSub {
        display: initial !important;
    }

    #botonRegresarMenu {
        display: none;
    }

    .expanded #cerrarForm {
        display: initial;
    }

    .expanded.cssOptionSelected #cerrarForm {
        margin-bottom: 3rem;
    }

    .cssMain.view-btnCamion {
        background-image: url(../img/tablet_bg_camiones.png);
    }

    .cssMain.view-btnAutos {
        background-image: url(../img/tablet_bg_autos.png);
    }

    .cssMain.view-btnMotos {
        background-image: url(../img/tablet_bg_motos.png);
    }


    .expanded .cssMainMenu {
        position: initial;
        display: inherit;
        animation: none;
    }

    .cssTabletView.cssCenterFlex {
        flex-direction: column;
    }

    #viewMenu {
        display: grid;
        grid-template-columns: repeat(9, 1fr);
        grid-template-rows: repeat(8, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        transition: 2s;
    }

    .cssImgWrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        grid-area: 1 / 1 / 3 / 10;
        z-index: 2;
    }

    .imgWidth {
        max-width: 357.72px;
    }

    .cssMainMenu {
        display: inherit;
        height: auto;
        grid-template-columns: repeat(9, 1fr);
        grid-template-rows: repeat(8, 1fr);
        grid-area: 3 / 1 / 9 / 10;
    }


    .cssCamion {
        grid-area: 1 / 1 / 7 / 4;
    }

    .cssAutos {
        grid-area: 1 / 4 / 7 / 7;
    }

    .cssMotos {
        grid-area: 1 / 7 / 7 / 10;
    }

    .child {
        height: 100%;
        width: 100%;
    }

    .cssContainerOtherTech {
        display: flex;
        justify-content: center;
        align-items: center;
        grid-area: 7 / 1 / 9 / 10;
    }

    .cssTabletView.expanded .cssImgWrapper,
    .cssDesktopView.expanded .cssImgWrapper {
        grid-area: 1 / 1 / 2 / 10;
    }

    .cssTabletView.expanded .cssMainMenu {
        grid-area: 2 / 1 / 4 / 10;
    }

    .cssTabletView.expanded .cssContainerOtherTech,
    .cssDesktopView.expanded .cssContainerOtherTech {
        display: none;
    }

    .cssTabletView .cssSubMenu {
        grid-area: 4 / 4 / 9 / 7;
    }

    .cssOptionSelected.expanded .cssSubMenu {
        grid-area: 1 / 4 / 9 / 7;
    }

    .cssOptionSelected.expanded .cssFormContainer {
        margin-top: 3rem;
    }

    .cssTabletView.expanded .cssItemSub {
        margin-bottom: 2rem;
    }

    .cssWrapperSubMenu {
        margin: 1rem 0;
    }

    #botonRegresarMenu {
        padding: 8px 1rem;
    }

    #botonRegresarMenu img {
        padding-bottom: 0;
    }

    .cssBtnGhostWhite {
        font-size: 1.333rem;
    }

    .cssLineOtherTech {
        width: 166.4px;
        margin-top: 4px;
        margin-left: auto;
        margin-right: auto;
    }

    .cssCamion .child {
        background-image: url(../img/tablet_camiones.png);
    }

    .cssAutos .child {
        background-image: url(../img/tablet_autos.png);
    }

    .cssMotos .child {
        background-image: url(../img/tablet_motos.png);
    }

    .expanded .cssCamion .child {
        background-image: url(../img/tablet_camiones_compres.png);
    }

    .expanded .cssAutos .child {
        background-image: url(../img/tablet_autos_compress.png);
    }

    .expanded .cssMotos .child {
        background-image: url(../img/tablet_motos_compress.png);
    }

    .cssSubMenu {
        z-index: 1;
    }

    .expanded.cssOptionSelected .cssSubMenu {
        padding-top: 4rem;
    }

    .expanded.cssOptionSelected .headerView,
    .expanded.cssOptionSelected .cssMainMenu {
        position: absolute;
        width: 100%;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
        animation-name: slide-top-out;
    }

}


@media only screen and (min-width: 1440px) {
    .cssTitleMainManu {
        font-size: 36px;
    }

    .view-btnCamion #viewLogIng,
    .view-btnAutos #viewLogIng,
    .view-btnMotos #viewLogIng {
        display: none;
        animation: none;
    }

    .cssMain.view-btnCamion {
        background-image: none;
    }

    .cssMain.view-btnAutos {
        background-image: none;
    }

    .cssMain.view-btnMotos {
        background-image: none;
    }

    .camion #viewLogIngDesk,
    .autos #viewLogIngDesk,
    .motos #viewLogIngDesk {
        display: flex;
    }


    #viewMenu.camion,
    #viewMenu.autos,
    #viewMenu.motos {
        position: static;
        animation: none;
    }

    .cssWrapperSubMenu {
        display: block;
    }

    .cssDesktopView.expanded .cssMainMenu {
        grid-area: 2 / 1 / 5 / 10;
        padding-bottom: 1rem;
    }

    .expanded .cssCamion .child {
        background-image: url(../img/desktop_camiones_compress.png);
    }

    .expanded .cssAutos .child {
        background-image: url(../img/desktop_autos_compress.png);
    }

    .expanded .cssMotos .child {
        background-image: url(../img/desktop_motos_compress.png);
    }

    .cssContinueTWO.cssCenterFlex {
        flex-direction: row;
    }

    .camion .cssContinueTWO.cssCenterFlex,
    .autos .cssContinueTWO.cssCenterFlex,
    .motos .cssContinueTWO.cssCenterFlex {
        flex-direction: column;
    }

    @keyframes scale-up-left {
        0% {
            transform: scale(.5);
            transform-origin: left center
        }

        100% {
            transform: scale(1);
            transform-origin: left center
        }
    }


    @keyframes zoomCam {
        0% {
            -ms-transform: scale(.7);
            -moz-transform: scale(.7);
            -webkit-transform: scale(.7);
            -o-transform: scale(.7);

            transform: scale(.7);
            transform-origin: left center
        }

        100% {
            -ms-transform: scale(1);
            -moz-transform: scale(1);
            -webkit-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            transform-origin: left center
        }
    }

    @keyframes zoomAut {
        0% {
            -ms-transform: scale(.7);
            -moz-transform: scale(.7);
            -webkit-transform: scale(.7);
            -o-transform: scale(.7);

            transform: scale(.7);
            transform-origin: right center
        }

        100% {
            -ms-transform: scale(1);
            -moz-transform: scale(1);
            -webkit-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            transform-origin: right center
        }
    }


    @keyframes zoomMot {
        from {
            transform: scale(1, 1) translateX(0);
        }

        to {
            transform: scale(2.1, 2.1) translateX(-100px);

        }
    }

    @keyframes botonCae {
        0% {
            top: 0px;
            opacity: 1;
        }

        75% {
            opacity: .1;
        }

        100% {
            top: 100px;
            opacity: 0;
        }
    }

    @keyframes flechaDerecha {
        0% {
            opacity: 0;
            left: -10px;
        }

        75% {
            opacity: .7;
            left: 30px;
        }

        100% {
            opacity: 1;
            left: 30px;
        }
    }

    @keyframes saleArriba {
        0% {
            top: 0px;
        }

        75% {
            opacity: 0;
            top: -250px;
        }

        100% {
            opacity: 0;
            top: -250px;
            display: none;
        }
    }



    @keyframes saleIzq {
        0% {
            left: 0;
        }

        75% {
            opacity: 0;
            left: -30vh;
        }

        100% {
            opacity: 0;
            left: -30vw;
            display: none;
        }
    }



    @keyframes textoDerecho {
        0% {
            right: 100px;
        }

        100% {
            right: 60px;
        }
    }

    @keyframes giraFlecha {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(180deg);
        }
    }

    .cssMainMenu {
        display: grid;
        grid-template-columns: repeat(9, 1fr);
        grid-template-rows: repeat(8, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .cssCamion .child {
        background-image: url(../img/desktop_camiones.png);
    }

    .cssAutos .child {
        background-image: url(../img/desktop_autos.png);
    }

    .cssMotos .child {
        background-image: url(../img/desktop_motos.png);
    }

    .camion .cssMainMenu,
    .autos .cssMainMenu,
    .motos .cssMainMenu {
        grid-area: 1 / 1 / 9 / 10;
    }

    .camion .seleccionado,
    .autos .seleccionado,
    .motos .seleccionado {
        animation-duration: .3s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out
    }

    .cssDesktopView.expanded #botonRegresarMenu {
        padding: 8px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .cssDesktopView.expanded #botonRegresarMenu .cssImgBtnTop {
        padding-bottom: 15px;
    }

    .cssDesktopView .cssSubMenu {
        grid-area: 4 / 1 / 9 / 10;
        padding-top: 5rem;
    }

    .cssOptionSelected.expanded .cssSubMenu {
        grid-area: 1 / 1 / 9 / 10;
    }

    .cssDesktopView .cssItemSub {
        margin-left: .5rem;
        margin-right: .5rem;
    }

    .cssDesktopView .cssOptionMainMenu {
        position: relative;
    }

    .cssDesktopView .cssWrapperSubMenu {
        margin-bottom: 3rem;
    }

    .cssDesktopView #btnCamion {
        position: relative;
    }

    .cssDesktopView .cssTitleMainManu {
        margin-top: 2rem;

    }

    .camion .headerView,
    .autos .headerView,
    .motos .headerView {
        position: relative;
        animation-name: saleArriba;
        animation-duration: 1s;
        animation-fill-mode: forwards;
    }

    .camion .cssContainerOtherTech,
    .autos .cssContainerOtherTech,
    .motos .cssContainerOtherTech {
        position: relative;
        animation-name: fadeOut;
        animation-duration: 1s;
        animation-fill-mode: forwards;
    }

    .camion .cssAutos,
    .camion .cssMotos,
    .autos .cssMotos,
    .autos .cssCamion {
        animation-name: slide-right-out;
        animation-duration: 2s;
        animation-fill-mode: forwards;
    }

    .camion .cssCamion {
        grid-area: 1 / 1 / 10 / 6;
    }

    .camion .cssAutos {
        grid-area: 3 / 4 / 7 / 7;
    }

    .camion .cssMotos,
    .autos .cssMotos {
        grid-area: 3 / 7 / 7 / 10;
    }

    .camion .cssCamion .child {
        animation-duration: .3s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
        animation-name: zoomCam;
    }

    .autos .cssAutos {
        grid-area: 1 / 1 / 9 / 6;
    }

    .autos .cssCamion {
        grid-area: 3 / 1 / 7 / 4;
    }

    .autos .cssCamion,
    .motos .cssCamion,
    .motos .cssAutos {
        animation-name: slide-left-out;
        animation-duration: 2s;
        animation-fill-mode: forwards;
    }

    .autos .cssAutos .child {
        animation-duration: .3s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
        animation-name: zoomAut;
    }

    .motos .cssMotos {
        grid-area: 1 / 5 / 9 / 10;
    }

    .motos .cssMotos .child {
        animation-duration: .3s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
        animation-name: zoomAut;
    }

    .motos .cssCamion {
        grid-area: 3 / 1 / 7 / 4;
    }

    .motos .cssAutos {
        grid-area: 3 / 4 / 7 / 7;
    }

    .cssDesktopView:not(.expanded) #btnCamion:hover .arrow-icon,
    .cssDesktopView:not(.expanded) #btnAutos:hover .arrow-icon,
    .cssDesktopView:not(.expanded) #btnMotos:hover .arrow-icon,
    .cssDesktopView #btnCamion.seleccionado .arrow-icon,
    .cssDesktopView #btnAutos.seleccionado .arrow-icon,
    .cssDesktopView #btnMotos.seleccionado .arrow-icon {
        position: absolute;
        display: inline-block;
        animation-name: flechaDerecha;
        animation-duration: 2s;
        animation-fill-mode: forwards;
    }

    .camion .cssOptionMainMenu .cssFakeButton,
    .autos .cssOptionMainMenu .cssFakeButton,
    .motos .cssOptionMainMenu .cssFakeButton {
        display: none;
    }

    .cssDesktopView.autos .cssTitleMainManu,
    .cssDesktopView.camion .cssTitleMainManu {
        position: absolute;
        display: inline-block;
        animation-name: textoDerecho;
        animation-duration: 1s;
        animation-fill-mode: forwards;
    }

    .cssDesktopView #btnCamion.seleccionado .arrow-icon,
    .cssDesktopView #btnAutos.seleccionado .arrow-icon,
    .cssDesktopView #btnMotos.seleccionado .arrow-icon {
        opacity: 1;
        left: 80px;
        animation-name: giraFlecha;
        animation-duration: 1s;
        animation-fill-mode: forwards;
    }


    .cssDesktopView #btnCamion.seleccionado .cssFakeButton,
    .cssDesktopView #btnAutos.seleccionado .cssFakeButton,
    .cssDesktopView #btnMotos.seleccionado .cssFakeButton {
        opacity: 0;
        visibility: hidden;
    }

    .cssDesktopView:not(.expanded) #btnCamion:hover .cssFakeButton,
    .cssDesktopView:not(.expanded) #btnAutos:hover .cssFakeButton,
    .cssDesktopView:not(.expanded) #btnMotos:hover .cssFakeButton {
        position: relative;
        animation-name: botonCae;
        animation-duration: 2s;
        animation-fill-mode: forwards;
    }

    .arrow-icon {
        width: 68px;
    }

    .seleccionado .cssTitleMainManu {
        font-size: 36px;
        font-weight: 700;
        letter-spacing: 0.0022285711020231247px;
        text-align: center;

    }

    .camion #viewLogIngDesk,
    .autos #viewLogIngDesk {
        grid-area: 3 / 6 / 9 / 10;
        z-index: 3;
    }

    .motos #viewLogIngDesk {
        grid-area: 3 / 1 / 9 / 5;
        z-index: 3;
    }

    .camion .cssCenterFlex,
    .autos .cssCenterFlex,
    .motos .cssCenterFlex {
        justify-content: space-around;
    }

    .cssContinueTWO #dvLoginCenter {
        display: none;
    }

    #phoneTwoFactors {
        display: none;
    }

    .camion #phoneTwoFactors,
    .autos #phoneTwoFactors,
    .motos #phoneTwoFactors,
    .camion #veridicaIdentidad,
    .autos #veridicaIdentidad,
    .motos #veridicaIdentidad,
    .camion .showFormVerificaIdentidad #dvLoginCenter,
    .autos .showFormVerificaIdentidad #dvLoginCenter,
    .motos .showFormVerificaIdentidad #dvLoginCenter {
        display: none;

    }

    .camion .cssContinueTWO #phoneTwoFactors,
    .autos .cssContinueTWO #phoneTwoFactors {
        display: block;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
        animation-name: slide-left-desktop;
    }

    @keyframes slide-right-desktop {
        0% {
            transform: translateX(-50vw);
        }

        100% {
            transform: translateX(0)
        }
    }

    .motos .cssContinueTWO #phoneTwoFactors {
        display: block;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
        animation-name: slide-right-desktop;
    }

    .camion .showFormVerificaIdentidad #veridicaIdentidad,
    .autos .showFormVerificaIdentidad #veridicaIdentidad,
    .motos .showFormVerificaIdentidad #veridicaIdentidad {
        display: block;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
        animation-name: fadeIn
    }

    @keyframes slide-left-desktop {
        0% {
            opacity: 0;
            transform: translateX(50vw)
        }

        100% {
            opacity: 1;
            transform: translateX(0)
        }
    }

    .cssDesktopView.expanded .cssSubMenu {
        position: relative;
        z-index: 2;
    }

}

.classLoadinLogin {
    display: none;
    background-image: url('img/login/loading.svg');
    background-color: #fff;
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: 30px;
    background-position-y: center;
    border: 0px;
    padding: 16px 32px;
}

.cssBgLayer {
    background-image: url('/img/layer2.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1001;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: auto;
    background-color: rgba(255, 255, 255, 0.4);
    cursor:pointer;
}

.cssQRAppLayer {
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1001;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: auto;
    background-color: rgba(255, 255, 255, 0.4);
    display: none;
    justify-content: center;
}

.cssQRAppLayer .cssQRAppLayerChild{
    background-color: #ffffff;
    z-index: 1002;
    position: absolute;
    width: 60%;
    height: 40%;
    display: flex;
    margin: 0 auto;
    top: 30%;
    border-radius: 10%;
    border-style: solid;
    border-color: #f0f0f0f0;
}

.cssQRAppLayer .cssQRAppLayerChild .cssQRAppLayerChildSub{
    display: flex;
    margin: 5% auto;
    text-align: center;
}


.cssQRAppletLayer {
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1001;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: auto;
    background-color: rgba(255, 255, 255, 0.4);
    cursor:pointer;
    display: none;
}

.cssWarningLimite.cssReenvioCodigo.btn{
    color: #000000;
    font-weight: normal !important;
}

.cssWarningLimite.cssReenvioCodigo.btn.link:hover{
    color: #0066BF;
}

.evtRecoverAccessResendMFA:hover{
    color: #0066BF;
}

.cssTextoCodigo{
    font-weight: normal !important;
}