/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: "Open Sans", sans-serif;
    color: #0C5FA8;
    background-color: #ffffff;
}

    body::after {
        clear: both;
        content: "";
        display: table;
    }

a {
    color: #1784c7;
    text-decoration: none;
}

input {
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
}

    input[type="search"]::-webkit-search-decoration,
    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-results-button,
    input[type="search"]::-webkit-search-results-decoration {
        display: none;
    }

.final-level {
    background-color: #417cb0;
    border: 5px solid rgb(0, 71, 107);
}

/* -------------------------------- 

Main Page Content

-------------------------------- */
.cd-main-content .content-wrapper {
    padding: 45px 5% 3em;
}

    .cd-main-content .content-wrapper h1 {
        text-align: center;
        padding: 1em 0 0 0;
        font-size: 2rem;
    }

    .cd-main-content .content-wrapper h2 {
        /*padding: 2em 0;*/
        padding: 1em 0 1em 0;
        font-size: 2rem;
    }

.cd-main-content::before {
    /* never visible - used to check MQ in jQuery */
    display: none;
    content: 'mobile';
}

@media only screen and (min-width: 768px) {
    .cd-main-content .content-wrapper {
        margin-left: 60px; /*110px @SEE al hacer m�s ancho el men� en pantallas medianas debo aumentar el margen*/
        padding-top: 55px;
    }

        .cd-main-content .content-wrapper h1 {
            padding: 1em 0;
            font-size: 3.2rem;
            font-weight: 300;
            text-align: left;
        }

    .cd-main-content::before {
        content: 'tablet';
    }
}

@media only screen and (min-width: 1170px) {
    .cd-main-content .content-wrapper {
        margin-left: 60px;
    }

    .cd-main-content::before {
        content: 'desktop';
    }
}

/* -------------------------------- 

Header

-------------------------------- */

[type="checkbox"] + span:not(.lever), [type="radio"]:not(:checked) + span, [type="radio"]:checked + span {
    font-size: 0.9em;
    color: #333;
}

.input-field > label {
    font-size: 0.9em;
    color: #333;
}

form p {
    padding-bottom: 10px;
}

.select-wrapper {
    position: relative;
}

nav ul li {
    float: none;
    padding: initial;
}

nav {
    background: transparent;
    box-shadow: none;
}


.cd-main-header {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    height: 45px;
    width: 100%;
    background: #0C5FA8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .cd-main-header::after {
        clear: both;
        content: "";
        display: table;
    }

@media only screen and (min-width: 768px) {
    .cd-main-header {
        position: fixed;
        height: 55px;
    }
}

.cd-logo {
    float: left;
    display: block;
    margin: 0 0 0 10px;
}

    .cd-logo img {
        display: block;
        height: 42px;
    }

@media only screen and (min-width: 768px) {
    .cd-logo {
        margin: 6px 0 0 21px
    }
}

.cd-nav-trigger {
    /* navigation trigger - visible on mobile devices only */
    float: right;
    /*position: relative;*/ /*@SEE comento esto porque en pantallas peque�as el bot�n desaparece, aunque deber�a buscar una mejor solucion para esto porque actualmente se superponen @FIXME*/
    z-index: 2;
    display: block;
    width: 34px;
    height: 44px;
    margin-right: 5%;
    /* hide text */
    overflow: auto;
    white-space: nowrap;
    color: transparent;
}

    .cd-nav-trigger span, .cd-nav-trigger span::before, .cd-nav-trigger span::after {
        /* hamburger icon in CSS */
        position: absolute;
        display: inline-block;
        height: 3px;
        width: 24px;
        background: #ffffff;
    }

    .cd-nav-trigger span {
        /* line in the center */
        position: absolute;
        top: 50%;
        right: 5px;
        margin-top: -2px;
        -webkit-transition: background 0.2s;
        -moz-transition: background 0.2s;
        transition: background 0.2s;
    }

        .cd-nav-trigger span::before, .cd-nav-trigger span::after {
            /* other 2 lines */
            content: '';
            right: 0;
            /* Force Hardware Acceleration in WebKit */
            -webkit-transform: translateZ(0);
            -moz-transform: translateZ(0);
            -ms-transform: translateZ(0);
            -o-transform: translateZ(0);
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transform-origin: 0% 50%;
            -moz-transform-origin: 0% 50%;
            -ms-transform-origin: 0% 50%;
            -o-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
            -webkit-transition: -webkit-transform 0.2s;
            -moz-transition: -moz-transform 0.2s;
            transition: transform 0.2s;
        }

        .cd-nav-trigger span::before {
            /* menu icon top line */
            top: -6px;
        }

        .cd-nav-trigger span::after {
            /* menu icon bottom line */
            top: 6px;
        }

    .cd-nav-trigger.nav-is-visible span {
        /* hide line in the center */
        background: rgba(255, 255, 255, 0);
    }

        .cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after {
            /* keep visible other 2 lines */
            background: white;
        }

        .cd-nav-trigger.nav-is-visible span::before {
            -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
            -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
            -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
            -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
            transform: translateX(4px) translateY(-3px) rotate(45deg);
        }

        .cd-nav-trigger.nav-is-visible span::after {
            -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
            -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
            -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
            -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
            transform: translateX(4px) translateY(2px) rotate(-45deg);
        }

@media only screen and (min-width: 768px) {
    .cd-nav-trigger {
        display: none;
    }
}

.cd-search {
    position: relative;
    margin: 1.2em 5% 0.6em;
}

    .cd-search.is-hidden {
        opacity: 0;
    }

    .cd-search::before {
        /* lens icon */
        content: '';
        position: absolute;
        left: 8px;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 16px;
        width: 16px;
        background: url(../img/cd-search.svg) no-repeat 0 0;
    }

    .cd-search input {
        padding-left: 32px;
        width: 100%;
        height: 36px;
        border: none;
        border-radius: .25em;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
    }

        .cd-search input:focus {
            outline: none;
        }

@media only screen and (min-width: 768px) {
    .cd-search {
        float: left;
        display: inline-block;
        width: 250px;
        height: 100%;
        margin: 0 0 0 2.5em;
    }

        .cd-search.is-hidden {
            /* reset style */
            opacity: 1;
        }

        .cd-search::before {
            background-position: 0 -16px;
            left: 1em;
        }

        .cd-search form, .cd-search input {
            height: 100%;
            width: 100%;
        }

        .cd-search input {
            border: none;
            padding-left: 2.6em;
            border-radius: 0;
            background-color: #0C5FA8;
            border-left: 1px solid #51575d;
            color: #ffffff;
        }

            .cd-search input::-webkit-input-placeholder {
                color: #777c81;
            }

            .cd-search input::-moz-placeholder {
                color: #777c81;
            }

            .cd-search input:-moz-placeholder {
                color: #777c81;
            }

            .cd-search input:-ms-input-placeholder {
                color: #777c81;
            }
}

/* -------------------------------- 

Top Navigation

-------------------------------- */
.cd-nav {
    /* top nav - not visible on mobile devices */
    display: none;
}

@media only screen and (min-width: 768px) {
    .cd-nav {
        display: block;
        float: right;
        height: 100%;
        display: block;
        float: right;
        height: 100%;
        width: auto;
        box-shadow: none;
        background: transparent;
    }
}

.cd-top-nav > li > a::before {
    /* reset style */
    display: none;
}

.cd-top-nav > li a {
    padding: 1em 5% !important;
}

.cd-top-nav img {
    /* avatar image */
    position: absolute;
    left: 1.8em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: none;
}

@media only screen and (min-width: 768px) {
    .cd-top-nav {
        height: 100%;
    }

        .cd-top-nav a {
            display: block;
            font-size: 1.4rem;
            color: #ffffff;
        }

        .cd-top-nav > li {
            display: inline-block;
            margin-right: 1em;
            height: 100%;
        }

            .cd-top-nav > li:last-of-type {
                margin-right: 0;
            }

            .cd-top-nav > li a {
                padding: 1em .6em !important;
            }

        .cd-top-nav img {
            display: block;
        }
}

@media only screen and (min-width: 1170px) {
    .cd-top-nav li:not(.has-children) a:hover {
        color: #62a60a;
    }
}

/* -------------------------------- 

Sidebar

-------------------------------- */
.cd-side-nav {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 75%;
    padding: 45px 0 0;
    background-color: #0C5FA8;
    visibility: hidden;
    opacity: 0;
    max-height: 100vh;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    transition: opacity 0.2s 0s, visibility 0s 0.2s;
}

    .cd-side-nav.nav-is-visible {
        opacity: 1;
        visibility: visible;
        overflow: visible;
        -webkit-overflow-scrolling: touch;
        -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
        -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
        transition: opacity 0.2s 0s, visibility 0s 0s;
        max-height: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .cd-side-nav > ul {
        padding: 0.6em 0;
        background-color: #0C5FA8;
    }

        .cd-side-nav > ul:last-of-type {
            padding-bottom: 0;
        }

    .cd-side-nav .cd-label, .cd-side-nav a, .cd-side-nav {
        /*/display: block;*/
        /*padding: 1em 5%;*/
    }


    .cd-side-nav .cd-label {
        text-transform: uppercase;
        font-weight: bold;
        color: #ffffff;
        font-size: smaller;
        letter-spacing: .1em;
        text-decoration-line: underline;
    }

    .cd-side-nav a {
        position: relative;
        color: #ffffff;
        font-size: 1.4rem;
    }

    .cd-side-nav ul.cd-top-nav > li:last-of-type > a {
        border-bottom: none;
    }

    .cd-side-nav > ul > li > a {
        padding-left: calc(5% + 24px);
        border-bottom: 1px solid #0c568e;
    }

        .cd-side-nav > ul > li > a::before {
        }

    .cd-side-nav > ul > li.overview > a::before {
        background-position: -64px 0;
    }

    .cd-side-nav > ul > li.notifications > a::before {
        background-position: -80px 0;
    }

    .cd-side-nav > ul > li.comments > a::before {
        background-position: -48px 0;
    }

    .cd-side-nav > ul > li.bookmarks > a::before {
        background-position: -32px 0;
    }

    .cd-side-nav > ul > li.images > a::before {
        background-position: 0 0;
    }

    .cd-side-nav > ul > li.users > a::before {
        background-position: -16px 0;
    }

    .cd-side-nav .count {
        /* notification badge */
        position: absolute;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: calc(5% + 16px + 0.4em);
        padding: 0.2em 0.4em;
        background-color: #62a60a;
        border-radius: .25em;
        color: #ffffff;
        font-weight: bold;
        font-size: 1.2rem;
        text-align: left;
    }

    .cd-side-nav .action-btn a {
        display: block;
        margin: 0 5%;
        padding: 1em 0;
        background-color: #62a60a;
        border-radius: .25em;
        border: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        text-align: left;
        color: #ffffff;
        font-weight: bold;
    }

.btn-action {
    display: block;
    font-size: 1.2rem;
    margin: 0 5%;
    padding: 1em 0;
    background-color: #62a60a;
    border-radius: .25em;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: left;
    color: #ffffff;
    font-weight: bold;
}

.cd-side-nav .action-btn a::before {
    display: none;
}

@media only screen and (min-width: 768px) {
    .cd-side-nav {
        position: relative;
        float: left;
        top: auto;
        width: 110px;
        min-height: 100vh;
        padding-top: 55px;
        /* reset style */
        visibility: visible;
        opacity: 1;
        overflow-y: hidden;
        max-height: none;
    }

        .cd-side-nav.nav-is-visible {
            box-shadow: none;
        }

        .cd-side-nav.is-fixed {
            position: fixed;
        }

        .cd-side-nav > ul {
            /* reset style */
            padding: 0;
        }

        .cd-side-nav .cd-label {
            /* remove labels on minified version of the sidebar */
            display: none;
        }

        .cd-side-nav a {
            font-size: 1.6rem;
            text-align: left;
        }

        .cd-side-nav > ul > li > a {
            padding: calc(1em + 4px) 0 1.4em;
        }

            .cd-side-nav > ul > li > a::before {
                left: 50%;
                right: auto;
                -webkit-transform: translateX(-50%);
                -moz-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                -o-transform: translateX(-50%);
                transform: translateX(-50%);
                top: 2.4em;
            }

        .cd-side-nav .active > a {
            /* current page */
            box-shadow: inset 3px 0 0 #62a60a;
            background-color: #0C568E;
        }

        .cd-side-nav .action-btn a {
            margin: 1em 10% 0;
        }

        .cd-side-nav .count {
            height: 8px;
            width: 8px;
            border-radius: 50%;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
            padding: 0;
            top: 2em;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            left: calc(50% + 5px);
            right: auto;
            color: transparent;
        }

}

@media only screen and (min-width: 1170px) {
    .cd-side-nav {
        width: 200px;
    }

        .cd-side-nav > ul {
            padding: 0.6em 0;
        }

            .cd-side-nav > ul > li:not(.action-btn):hover > a {
                background-color: #0C568E;
            }

            .cd-side-nav > ul > li > a {
                padding: 1em 1em 1em 42px;
                text-align: left;
                border-bottom: none;
            }

            .cd-side-nav > ul > li > ul > li > a {
                padding: 1em 1em 1em 42px;
                text-align: left;
                border-bottom: none;
            }

            .cd-side-nav > ul > li > ul > li > ul > li > a {
                padding: 1em 1em 1em 42px;
                text-align: left;
                border-bottom: none;
            }

                .cd-side-nav > ul > li > a::before {
                    top: 50%;
                    bottom: auto;
                    -webkit-transform: translateY(-50%);
                    -moz-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    -o-transform: translateY(-50%);
                    transform: translateY(-50%);
                    left: 18px;
                }

        .cd-side-nav .cd-label {
            display: block;
            padding: 1em 18px;
        }

        .cd-side-nav .action-btn {
            text-align: left;
        }

            .cd-side-nav .action-btn a {
                margin: 0 18px;
            }

    .no-touch .cd-side-nav .action-btn a:hover {
        background-color: #62a60a;
    }

    .cd-side-nav .count {
        /* reset style */
        color: #ffffff;
        height: auto;
        width: auto;
        border-radius: .25em;
        padding: .2em .4em;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 18px;
        left: auto;
        box-shadow: none;
    }
}

.has-children ul {
    position: relative;
    width: 100%;
    display: none;
    background-color: #00476B;
}

.has-children > a::after {
    /* arrow icon */
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    right: 5%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/cd-arrow.svg);
}

.has-children.selected > ul {
    display: block;
}

.has-children.selected > a::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}


@media only screen and (min-width: 768px) {
    .cd-nav .has-children {
        position: relative;
    }

        .cd-nav .has-children ul {
            position: absolute;
            top: 0;
            left: 100%;
            width: 160px;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

    .has-children ul a {
        text-align: left;
        border: none;
        padding: 1em;
    }

    .no-touch .has-children ul a:hover {
        color: #62a60a;
    }
    /*.has-children > a::after {
    display: none;
  }*/
    .cd-side-nav .has-children.selected > a {
        /* focus state -> show sub pages */
        background-color: #00476B; /*@SEE comentar esta l�nea para secciones del menu como Giros,Administracion, Seguridad,etc. no tengan el mismo color de fondo que los submenus*/
        /*asignar como color de fondo #0C5FA8 si se desea distinguir los submenus de su contenido. 
    @QUEST quizas se lo m�s adecuado sea dar un border-bottom para disguirlos entre s�*/
    }

    .cd-top-nav .has-children {
        position: relative;
        background-color: #0c568e;
    }

        .cd-top-nav .has-children > a {
            height: 100%;
            padding: 0 calc(1.8em + 22px) 0 calc(1.8em + 26px) !important;
            line-height: 55px;
        }

            .cd-top-nav .has-children > a::after {
                display: block;
                right: 1.8em;
            }

        .cd-top-nav .has-children ul {
            background-color: #0c568e;
            width: 200px;
            top: 100%;
            right: 0;
            left: auto;
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
        }

            .cd-top-nav .has-children ul a {
                padding-left: 18px !important;
            }
}

@media only screen and (min-width: 1170px) {
    .has-children > ul {
        width: 100%;
        z-index: 1;
    }

    .has-children ul a {
        padding-left: 18px;
    }

    .has-children.active > ul {
        /* if the item is active, make the subnavigation visible */
        position: relative;
        display: block;
        /* reset style */
        left: 0;
        box-shadow: none;
    }
    /*.no-touch .cd-side-nav .has-children:hover > ul, .cd-side-nav .has-children.hover > ul {
     show subnavigation on hover 
    display: block;
    opacity: 1;
    visibility: visible;
  }*/
}

.cd-breadcrumb, .cd-multi-steps {
    width: 90%;
    max-width: 768px;
    padding: 0.5em 1em;
    margin: 1em auto;
    background-color: #edeff0;
    border-radius: .25em;
}

    .cd-breadcrumb:after, .cd-multi-steps:after {
        content: "";
        display: table;
        clear: both;
    }

    .cd-breadcrumb li, .cd-multi-steps li {
        display: inline-block;
        float: left;
        margin: 0.5em 0;
    }

        .cd-breadcrumb li::after, .cd-multi-steps li::after {
            /* this is the separator between items */
            display: inline-block;
            content: '\00bb';
            margin: 0 .6em;
            color: #959fa5;
        }

        .cd-breadcrumb li:last-of-type::after, .cd-multi-steps li:last-of-type::after {
            /* hide separator after the last item */
            display: none;
        }

        .cd-breadcrumb li > *, .cd-multi-steps li > * {
            /* single step */
            display: inline-block;
            font-size: 1.4rem;
            color: #2c3f4c;
        }

        .cd-breadcrumb li.current > *, .cd-multi-steps li.current > * {
            /* selected step */
            color: #96c03d;
        }

.no-touch .cd-breadcrumb a:hover, .no-touch .cd-multi-steps a:hover {
    /* steps already visited */
    color: #96c03d;
}

.cd-breadcrumb.custom-separator li::after, .cd-multi-steps.custom-separator li::after {
    /* replace the default arrow separator with a custom icon */
    content: '';
    height: 16px;
    width: 16px;
    background: url(../img/cd-custom-separator.svg) no-repeat center center;
    vertical-align: middle;
}

.cd-breadcrumb.custom-icons li > *::before, .cd-multi-steps.custom-icons li > *::before {
    /* add a custom icon before each item */
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    margin-right: .4em;
    margin-top: -2px;
    background: url(../img/cd-custom-icons-01.svg) no-repeat 0 0;
    vertical-align: middle;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(2) > *::before, .cd-multi-steps.custom-icons li:not(.current):nth-of-type(2) > *::before {
    /* change custom icon using image sprites */
    background-position: -20px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(3) > *::before, .cd-multi-steps.custom-icons li:not(.current):nth-of-type(3) > *::before {
    background-position: -40px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(4) > *::before, .cd-multi-steps.custom-icons li:not(.current):nth-of-type(4) > *::before {
    background-position: -60px 0;
}

.cd-breadcrumb.custom-icons li.current:first-of-type > *::before, .cd-multi-steps.custom-icons li.current:first-of-type > *::before {
    /* change custom icon for the current item */
    background-position: 0 -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(2) > *::before, .cd-multi-steps.custom-icons li.current:nth-of-type(2) > *::before {
    background-position: -20px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(3) > *::before, .cd-multi-steps.custom-icons li.current:nth-of-type(3) > *::before {
    background-position: -40px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(4) > *::before, .cd-multi-steps.custom-icons li.current:nth-of-type(4) > *::before {
    background-position: -60px -20px;
}

@media only screen and (min-width: 768px) {
    .cd-breadcrumb, .cd-multi-steps {
        padding: 0 1.2em;
    }

        .cd-breadcrumb li, .cd-multi-steps li {
            margin: 1.2em 0;
        }

            .cd-breadcrumb li::after, .cd-multi-steps li::after {
                margin: 0 1em;
            }

            .cd-breadcrumb li > *, .cd-multi-steps li > * {
                font-size: 1.3rem;
            }
}







@media only screen and (min-width: 768px) {
    .cd-multi-steps {
        /* reset style */
        background-color: transparent;
        padding: 0;
        text-align: center;
        height: auto;
        max-height: 60px;
    }

        .cd-multi-steps li {
            position: relative;
            float: none;
            margin: 0.4em 40px 0.4em 0;
        }

            .cd-multi-steps li:last-of-type {
                margin-right: 0;
            }

            .cd-multi-steps li::after {
                /* this is the line connecting 2 adjacent items */
                position: absolute;
                content: '';
                height: 4px;
                background: #edeff0;
                /* reset style */
                margin: 0;
            }

            .cd-multi-steps li.visited::after {
                background-color: #96c03d;
            }

            .cd-multi-steps li > *, .cd-multi-steps li.current > * {
                position: relative;
                color: #2c3f4c;
            }

        .cd-multi-steps.custom-separator li::after {
            /* reset style */
            height: 4px;
            background: #edeff0;
        }

        .cd-multi-steps.text-center li::after {
            width: 100%;
            top: 50%;
            left: 100%;
            -webkit-transform: translateY(-50%) translateX(-1px);
            -moz-transform: translateY(-50%) translateX(-1px);
            -ms-transform: translateY(-50%) translateX(-1px);
            -o-transform: translateY(-50%) translateX(-1px);
            transform: translateY(-50%) translateX(-1px);
        }

        .cd-multi-steps.text-center li > * {
            z-index: 1;
            padding: .6em 1em;
            border-radius: .25em;
            background-color: #edeff0;
        }

    .no-touch .cd-multi-steps.text-center a:hover {
        background-color: #2c3f4c;
    }

    .cd-multi-steps.text-center li.current > *, .cd-multi-steps.text-center li.visited > * {
        color: #ffffff;
        background-color: #96c03d;
    }

    .cd-multi-steps.text-center.custom-icons li.visited a::before {
        /* change the custom icon for the visited item - check icon */
        background-position: 0 -60px;
    }

    .cd-multi-steps.text-top li, .cd-multi-steps.text-bottom li {
        width: 80px;
        text-align: center;
        display: inline-block;
    }

        .cd-multi-steps.text-top li::after, .cd-multi-steps.text-bottom li::after {
            /* this is the line connecting 2 adjacent items */
            position: absolute;
            left: 50%;
            /* 40px is the <li> right margin value */
            width: calc(100% + 40px);
        }

        .cd-multi-steps.text-top li > *::before, .cd-multi-steps.text-bottom li > *::before {
            /* this is the spot indicator */
            content: '';
            position: absolute;
            z-index: 1;
            left: 50%;
            right: auto;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            height: 12px;
            width: 12px;
            border-radius: 50%;
            background-color: #edeff0;
        }

        .cd-multi-steps.text-top li.visited > *::before,
        .cd-multi-steps.text-top li.current > *::before, .cd-multi-steps.text-bottom li.visited > *::before,
        .cd-multi-steps.text-bottom li.current > *::before {
            background-color: #96c03d;
        }

    .no-touch .cd-multi-steps.text-top a:hover, .no-touch .cd-multi-steps.text-bottom a:hover {
        color: #96c03d;
    }

        .no-touch .cd-multi-steps.text-top a:hover::before, .no-touch .cd-multi-steps.text-bottom a:hover::before {
            box-shadow: 0 0 0 3px rgba(150, 192, 61, 0.3);
        }

    .cd-multi-steps.text-top li::after {
        /* this is the line connecting 2 adjacent items */
        bottom: 4px;
    }

    .cd-multi-steps.text-top li > * {
        padding-bottom: 20px;
    }

        .cd-multi-steps.text-top li > *::before {
            /* this is the spot indicator */
            bottom: 0;
        }

    .cd-multi-steps.text-bottom li::after {
        /* this is the line connecting 2 adjacent items */
        top: 3px;
    }

    .cd-multi-steps.text-bottom li > * {
        padding-top: 20px;
    }

        .cd-multi-steps.text-bottom li > *::before {
            /* this is the spot indicator */
            top: 0;
        }
}
/* -------------------------------- 

Add a counter to the multi-steps indicator 

-------------------------------- */
.cd-multi-steps.count li {
    counter-increment: steps;
}

    .cd-multi-steps.count li > *::before {
        content: counter(steps) " - ";
    }

@media only screen and (min-width: 768px) {
    .cd-multi-steps.text-top.count li > *::before,
    .cd-multi-steps.text-bottom.count li > *::before {
        /* this is the spot indicator */
        content: counter(steps);
        height: 26px;
        width: 26px;
        line-height: 26px;
        font-size: 1.4rem;
        color: #ffffff;
    }

    .cd-multi-steps.text-top.count li:not(.current) em::before,
    .cd-multi-steps.text-bottom.count li:not(.current) em::before {
        /* steps not visited yet - counter color */
        color: #2c3f4c;
    }

    .cd-multi-steps.text-top.count li::after {
        bottom: 11px;
    }

    .cd-multi-steps.text-top.count li > * {
        padding-bottom: 34px;
    }

    .cd-multi-steps.text-bottom.count li::after {
        top: 11px;
    }

    .cd-multi-steps.text-bottom.count li > * {
        padding-top: 34px;
    }
}

.errorSpan {
    color: Red;
    font-size: 12px
}

.ui-grid {
    width: auto;
    height: 400px;
}

.ui-grid-half {
    width: auto;
    height: 200px;
}


@media only screen and (max-width: 600px) {
    .portal .material-icons {
        font-size: 50px;
    }
}

@media only screen and (min-width: 600px) {
    .portal .material-icons {
        font-size: 100px;
    }
}

@media only screen and (min-width: 1024px) {
    .portal .material-icons {
        font-size: 200px;
    }
}

header a img {
    cursor: pointer;
}

.bordered {
    border: solid;
    border-color: gray;
    border-width: thin;
}

.partner-logos {
    display: inline-block;
    float: left;
    margin-right: 50px;
    margin-bottom: 20px
}

    .partner-logos.white-ad {
        background-color: #444;
        border-radius: 4px;
        padding: 0 10px
    }

    .partner-logos:last-child {
        margin-right: 0
    }

    .partner-logos a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 70px
    }

    .partner-logos img {
        max-width: 180px;
        max-height: 100%
    }

@media only screen and (max-width: 992px) {
    .patreon-ad, .bsa-cpc {
        display: none
    }

    .partner-logos {
        display: block;
        float: none;
        margin-right: 0
    }
}

.table-with-border {
    width: 100%;
    border: solid;
    border-width: thin;
    border-collapse: collapse;
}

    .table-with-border td {
        border: solid;
        border-width: thin;
        border-collapse: collapse;
        padding: 5px;
    }

    .table-with-border th {
        border: solid;
        border-width: thin;
        border-collapse: collapse;
        padding: 5px;
    }

    .table-with-border img {
        max-width: 180px;
        max-height: 100%
    }

.centeredImage {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cd-main-header a .material-icons {
    margin-top: 0.75rem;
    font-size: 30px;
    color: #F0F0F0;
}

    .cd-main-header a .material-icons:hover {
        font-size: 30px;
        color: #FFFFFF;
    }

.currency {
    text-align: right;
}




/*SideBar*/

.main-menu i {
    position: relative;
    display: inline !important;
    text-align: center;
    vertical-align: middle;
}

.main-menu image {
    position: relative;
    display: inline !important;
    text-align: center;
    vertical-align: middle;
}

.main-menu {
    -webkit-transition: width .05s linear;
    transition: width .05s linear;
    -webkit-transform: translateZ(0) scale(1,1);
    overflow-y: hidden;
}

.main-menu li {
    position: relative;
    display: block;
    width: 250px;
}

.main-menu li > a {
    -webkit-transform: translateZ(0) scale(1,1);
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.main-menu .nav-text {
    position: relative;
    display: inline !important;
    vertical-align: middle;
    margin-left: 10px;
}

@media only screen and (min-width: 768px) {
    .main-menu i {
        position: relative;
        display: inline !important;
        width: 60px;
        height: 36px !important;
        line-height: 36px !important;
        text-align: center;
        vertical-align: middle;
    }

    .main-menu image {
        position: relative;
        display: inline !important;
        width: 60px;
        height: 36px !important;
        line-height: 36px !important;
        text-align: center;
        vertical-align: middle;
    }

    .main-menu {
        width: 90px;
        -webkit-transition: width .05s linear;
        transition: width .05s linear;
        -webkit-transform: translateZ(0) scale(1,1);
        overflow-y: hidden;
    }

    .main-menu:hover {
    width: 300px;
    overflow: auto;
    }

    .main-menu:hover .nav-text {
        width: 300px;
        overflow: auto;
        overflow-y: auto;
        visibility: visible !important;
    }

 

    .no-touch .scrollable.hover {
    overflow-y: hidden;
    }

    .no-touch .scrollable.hover:hover {
        overflow-y: hidden;
        overflow: hidden;
    }

    a:hover, a:focus {
    text-decoration: none;
    }

    .main-menu .nav-text {
        position: relative;
        display: inline !important;
        vertical-align: middle;
        width: 250px;
        visibility: hidden;
        margin-left: 10px;
    }
}


.sticky {
    position: fixed;
    top: 50px;
    opacity: 0.3;
    text-align: right;
    width: 100vw;
}


/************************************
*            Helpers                *
*************************************/
.draggable {
    position: absolute !important;
    z-index: 9 !important;
}

.draggable_header {
    cursor: all-scroll;
    z-index: 9 !important;
}

.resizable {
    resize: both !important;
    overflow: auto !important;
}

.fullscreen{
    cursor:pointer;
}

.window_container {
    height: 50vh;
    width: 50vw;
    border: 3px solid #f1f1f1;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: #fff;
}

.window_header {
    padding: 1em;
    background: #f1f1f1;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.window_content {
    padding: 10px;
}


/* Margen (vertical y horizontal) */
.m1 {
    margin: 1em;
}
/* Margen vertical */
.mv1 {
    margin: 1em 0 1em 0;
}
/* Margen horizontal */
.mh1 {
    margin: 0 1em 0 1em;
}
/* Margen superior */
.mt1 {
    margin-top: 1em;
}
/* Margen inferior */
.mb1 {
    margin-bottom: 1em;
}

/************************************
*
* Impresion
*************************************/

.print-only {
    visibility: hidden;
}

@media print {
    body * {
        visibility: hidden;
    }

    * {
        max-height: 250px !important;
    }

    .printable, .printable * {
        visibility: visible;
    }

    .printable {
        position: absolute;
        left: 0;
        top: 0;        
    }

}


/*widget cotizacion*/

.wrap-frame {
    position: absolute;
    top: -80px;
    width: 1000px;
    height: 1200px;
}

.wrap-frame-container {
    transform: scale(0.45,0.45) translate(-100px, -100px);   
    width: 300px;
    height: 120px;
    overflow: hidden;
    display: flex;
}

.container1{
    /*display: inline-flex;
    position:relative;
    width: 300px;*/
}

#WidgetCotizacion{
    display: inline-block;
    position: absolute;
    right:-8vw;
    top: 15vw;
}