/*Badge*/
/* RouteBar */
/* Add your variable customizations of layout here */
.splash-screen {
    min-height: 100%;
}

    .splash-screen:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
    }

.wpthemeClear {
    clear: both;
}

.test {
    overflow: auto;
}

#footer {
    min-height: 188px;
    height: 100%;
    background-color: #e3e3e3;
    margin: 0 20px;
    border-top: 1px solid #e6e6e6;
    background-color: #EDEDED;
}

.splash-screen .splash-screen-bars {
    width: 135px;
    height: 140px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -60px;
    margin-left: -40px;
    background: url("../../layout/images/bars.svg");
}

/* source-sans-pro-300 - latin-ext_latin */
@font-face {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/source-sans-pro-v11-latin-ext_latin-300.eot");
    /* IE9 Compat Modes */
    src: local("Source Sans Pro Light"), local("SourceSansPro-Light"), url("../fonts/source-sans-pro-v11-latin-ext_latin-300.eot#iefix") format("embedded-opentype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-300.woff2") format("woff2"), url("../fonts/source-sans-pro-v11-latin-ext_latin-300.woff") format("woff"), url("../fonts/source-sans-pro-v11-latin-ext_latin-300.ttf") format("truetype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-300.svg#SourceSansPro") format("svg");
    /* Legacy iOS */
}
/* source-sans-pro-regular - latin-ext_latin */
@font-face {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.eot");
    /* IE9 Compat Modes */
    src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"), url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.eot#iefix") format("embedded-opentype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.woff2") format("woff2"), url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.woff") format("woff"), url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.ttf") format("truetype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.svg#SourceSansPro") format("svg");
    /* Legacy iOS */
}
/* source-sans-pro-italic - latin-ext_latin */
@font-face {
    font-family: "Source Sans Pro";
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.eot");
    /* IE9 Compat Modes */
    src: local("Source Sans Pro Italic"), local("SourceSansPro-Italic"), url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.eot#iefix") format("embedded-opentype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.woff2") format("woff2"), url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.woff") format("woff"), url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.ttf") format("truetype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.svg#SourceSansPro") format("svg");
    /* Legacy iOS */
}
/* source-sans-pro-700 - latin-ext_latin */
@font-face {
    font-family: "Source Sans Pro";
    font-style: italic;
    font-weight: 700;
    src: url("../fonts/source-sans-pro-v11-latin-ext_latin-700.eot");
    /* IE9 Compat Modes */
    src: local("Source Sans Pro Bold"), local("SourceSansPro-Bold"), url("../fonts/source-sans-pro-v11-latin-ext_latin-700.eot#iefix") format("embedded-opentype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-700.woff2") format("woff2"), url("../fonts/source-sans-pro-v11-latin-ext_latin-700.woff") format("woff"), url("../fonts/source-sans-pro-v11-latin-ext_latin-700.ttf") format("truetype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-700.svg#SourceSansPro") format("svg");
    /* Legacy iOS */
}
/* Utils */
.clearfix:after {
    content: " ";
    display: block;
    clear: both;
}

.card {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #ffffff;
    padding: 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
}

    .card.card-w-title {
        padding-bottom: 32px;
    }

    .card h1 {
        font-size: 24px;
        font-weight: 400;
        margin: 24px 0;
    }

        .card h1:first-child {
            margin-top: 16px;
        }

    .card h2 {
        font-size: 22px;
        font-weight: 400;
    }

    .card h3 {
        font-size: 20px;
        font-weight: 400;
    }

    .card h4 {
        font-size: 10px;
        font-weight: 400;
    }

.nopad {
    padding: 0;
}

    .nopad .ui-panel-content {
        padding: 0;
    }

.fadeInDown {
    -webkit-animation: fadeInDown 0.2s;
    animation: fadeInDown 0.2s;
}

.fadeOutUp {
    -webkit-animation: fadeOutUp 0.2s;
    animation: fadeOutUp 0.2s;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
}

.ui-shadow-1 {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.ui-shadow-2 {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.ui-shadow-3 {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.ui-shadow-4 {
    -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.ui-shadow-5 {
    -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.ui-g {
    -ms-flex-wrap: wrap;
}

    .ui-g.form-group > div {
        padding: 8px;
    }

.ui-panelgrid.form-group .ui-panelgrid-cell {
    padding: 8px;
}

.ui-panelgrid.ui-panelgrid-blank .ui-grid-responsive .ui-grid-row {
    border: 0 none;
}

.ui-selectoneradio.form-group .ui-grid-row > div,
.ui-selectmanycheckbox.form-group .ui-grid-row > div {
    padding: 8px;
}

/*Overview*/
/*Stats*/
/*Weekly Tasks*/
/*Resolution Center*/
/*Team*/
/*Chat*/
/*Daily Sales*/
/*Timeline*/
/* Profile */
.dashboard .overview-box {
    color: #ffffff;
    min-height: 120px;
    position: relative;
}

    .dashboard .overview-box i {
        float: right;
        font-size: 21px;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .dashboard .overview-box img {
        position: absolute;
        right: 0;
        width: 90px;
        bottom: 0;
    }

    .dashboard .overview-box .overview-title {
        line-height: 20px;
        font-size: 16px;
        letter-spacing: 0.8px;
        text-align: left;
        margin-bottom: 5px;
    }

    .dashboard .overview-box .overview-numbers {
        line-height: 31px;
        font-size: 24px;
        text-align: left;
        margin-bottom: 8px;
    }

    .dashboard .overview-box .overview-ratios {
        line-height: 18px;
        font-size: 14px;
        text-align: left;
        opacity: 0.95;
    }

    .dashboard .overview-box.monthly-sales {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        position: relative;
        padding: 10px 10px 10px 20px;
        background: #ff7295;
        /* Old browsers */
        background: -moz-linear-gradient(240deg, #ff7295 0%, #fe875d 100%);
        background: -webkit-linear-gradient(240deg, #ff7295 0%, #fe875d 100%);
        background: linear-gradient(240deg, #ff7295 0%, #fe875d 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff7295", endColorstr="#fe875d",GradientType=1 );
    }

    .dashboard .overview-box.monthly-views {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        position: relative;
        padding: 10px 10px 10px 20px;
        background: #00aadf;
        /* Old browsers */
        background: -moz-linear-gradient(240deg, #00aadf 0%, #0071bc 100%);
        background: -webkit-linear-gradient(240deg, #00aadf 0%, #0071bc 100%);
        background: linear-gradient(240deg, #00aadf 0%, #0071bc 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00aadf", endColorstr="#0071bc",GradientType=1 );
    }

    .dashboard .overview-box.monthly-users {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        position: relative;
        padding: 10px 10px 10px 20px;
        background: #4b7ecf;
        /* Old browsers */
        background: -moz-linear-gradient(240deg, #4b7ecf 0%, #8e70ee 100%);
        background: -webkit-linear-gradient(240deg, #4b7ecf 0%, #8e70ee 100%);
        background: linear-gradient(240deg, #4b7ecf 0%, #8e70ee 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4b7ecf", endColorstr="#8e70ee",GradientType=1 );
    }

.dashboard .stats {
    background-color: #ffffff;
    min-height: 120px;
    position: relative;
    margin-top: 29px;
    border-top: 7px solid #205493;
    border-bottom: solid 1px #d6d7d9;
    border-right: solid 1px #d6d7d9;
    border-left: solid 1px #d6d7d9;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .dashboard .stats .stats-icon {
        display: inline-block;
        position: relative;
        top: -7px;
        background: #ffffff;
        padding: 0 5px;
        height: 7px;
    }

        .dashboard .stats .stats-icon img {
            position: relative;
            top: -10px;
            margin-bottom: -10px;
        }

    .dashboard .stats .message-icon {
        height: 34px;
        width: 44px;
    }

    .dashboard .stats .doc-icon {
        height: 34px;
        width: 25px;
    }

    .dashboard .stats .mark-icon {
        height: 34px;
        width: 25px;
    }

    .dashboard .stats img.profile-icon {
        /*top: -15px;
      margin-bottom: -5px;*/
        height: 34px;
        width: 34px;
    }

    .dashboard .stats .stats-numbers {
        line-height: 25px;
        font-size: 20px;
        font-weight: bold;
    }

    .dashboard .stats .stats-title {
        line-height: 21px;
        font-size: 17px;
    }

    .dashboard .stats .stats-subtitle {
        line-height: 18px;
        font-size: 14px;
        color: #aeb0b5;
    }

        .dashboard .stats .stats-subtitle span {
            color: #00bfe7;
        }

.dashboard .ui-panel .ui-panel-title {
    margin: 0;
}

.dashboard .ui-panel .ui-panel-content {
    padding: 17px;
}

.dashboard .weekly-tasks ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

    .dashboard .weekly-tasks ul li {
        padding: 8px 0;
    }

        .dashboard .weekly-tasks ul li:first-child {
            padding-top: 0;
        }

        .dashboard .weekly-tasks ul li:last-child {
            padding-bottom: 0;
        }

        .dashboard .weekly-tasks ul li .ui-chkbox {
            vertical-align: middle;
            margin-right: 6px;
        }

        .dashboard .weekly-tasks ul li > span {
            vertical-align: middle;
        }

        .dashboard .weekly-tasks ul li .weekly-task-status {
            float: right;
        }

            .dashboard .weekly-tasks ul li .weekly-task-status i {
                font-size: 13px;
                color: #797979;
                margin-left: 6px;
                width: 16px;
            }

            .dashboard .weekly-tasks ul li .weekly-task-status .day {
                color: #303134;
                background-color: #e4e2e0;
                text-align: center;
                min-width: 60px;
                display: inline-block;
            }

.dashboard .resolution-center {
    padding-bottom: 8px;
}

    .dashboard .resolution-center .ui-inputfield {
        display: block;
        margin-top: 5px;
        margin-bottom: 15px;
    }

    .dashboard .resolution-center .ui-outputlabel {
        vertical-align: middle;
    }

    .dashboard .resolution-center .ui-button {
        margin-top: 5px;
        display: block;
    }

.dashboard .team .ui-panel-content {
    padding: 0;
}

.dashboard .team ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .dashboard .team ul li {
        padding: 16px;
        border-left: 3px solid rgba(0, 0, 0, 0);
    }

        .dashboard .team ul li:after {
            content: "";
            display: table;
            clear: both;
        }

        .dashboard .team ul li:hover {
            background-color: #f2f3f3;
            border-color: #205493;
        }

        .dashboard .team ul li .team-box {
            display: inline-block;
            vertical-align: middle;
        }

        .dashboard .team ul li .team-member {
            text-align: left;
            display: block;
            font-weight: 600;
            color: #212121;
        }

        .dashboard .team ul li img {
            width: 35px;
            height: 35px;
            vertical-align: middle;
            display: inline-block;
            margin-right: 6px;
        }

        .dashboard .team ul li a {
            display: block;
            float: right;
            background-color: #0872b9;
            border-radius: 100%;
            height: 30px;
            width: 30px;
            line-height: 30px;
            margin-left: 6px;
            text-align: center;
            margin-top: 4px;
        }

            .dashboard .team ul li a i {
                line-height: inherit;
                font-size: 22px;
                color: #ffffff;
            }

.dashboard .chart .ui-panel-content {
    overflow: auto;
}

.dashboard .chat {
    margin-top: 20px;
}

    .dashboard .chat .ui-panel-content {
        padding: 0;
    }

    .dashboard .chat ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

        .dashboard .chat ul li {
            padding: 16px 0;
            font-size: 0;
        }

            .dashboard .chat ul li:after {
                content: "";
                display: table;
                clear: both;
            }

            .dashboard .chat ul li .message-meta {
                font-size: 14px;
                width: 160px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                display: inline-block;
                vertical-align: top;
                padding: 8px;
                text-align: left;
            }

                .dashboard .chat ul li .message-meta img {
                    width: 48px;
                    height: 48px;
                    display: block;
                }

                .dashboard .chat ul li .message-meta .name {
                    font-weight: 600;
                }

                .dashboard .chat ul li .message-meta .time {
                    color: #aeb0b5;
                    display: block;
                }

            .dashboard .chat ul li .message {
                font-size: 14px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                width: calc(100% - 160px);
                padding: 12px;
                background-color: #f4f4f4;
                display: inline-block;
                vertical-align: top;
            }

            .dashboard .chat ul li.message-from .message-meta {
                border-left: 4px solid #4aa564;
            }

                .dashboard .chat ul li.message-from .message-meta img {
                    float: left;
                    margin-right: 8px;
                }

            .dashboard .chat ul li.message-own .message-meta {
                border-right: 4px solid #e31c3d;
            }

                .dashboard .chat ul li.message-own .message-meta img {
                    float: right;
                    margin-left: 8px;
                }

    .dashboard .chat .write-message {
        border-top: 1px solid #d6d7d9;
        margin-top: 10px;
        position: relative;
    }

        .dashboard .chat .write-message i {
            font-size: 24px;
            color: #d6d7d9;
            position: absolute;
            left: 8px;
            top: 50%;
            margin-top: -14px;
        }

        .dashboard .chat .write-message input {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            border: 0 none;
            width: 100%;
            height: 40px;
            font-size: 14px;
            padding-left: 36px;
        }

            .dashboard .chat .write-message input:focus {
                outline: 0 none;
            }

.dashboard .daily-sales {
    margin-top: 20px;
}

    .dashboard .daily-sales table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
    }

    .dashboard .daily-sales thead {
        text-align: right;
        background-color: #ffffff;
    }

        .dashboard .daily-sales thead th {
            padding: 8px 16px;
        }

    .dashboard .daily-sales tbody tr:nth-child(even) {
        background: #ffffff;
    }

    .dashboard .daily-sales tbody tr:nth-child(odd) {
        background: #f1f1f1;
    }

    .dashboard .daily-sales tbody td {
        border-color: transparent;
        padding: 8px 16px;
    }

    .dashboard .daily-sales tr th {
        font-weight: 600;
        color: #424242;
    }

    .dashboard .daily-sales td {
        color: #212121;
        text-align: right;
    }

        .dashboard .daily-sales td:first-child {
            text-align: left;
        }

        .dashboard .daily-sales td:last-child button:first-child {
            margin-right: 4px;
        }

        .dashboard .daily-sales td img {
            width: 26px;
            height: 26px;
            padding: 8px;
            vertical-align: middle;
        }

        .dashboard .daily-sales td .fa-angle-up {
            color: #4caf50;
            font-size: 22px;
            padding-left: 10px;
        }

        .dashboard .daily-sales td .fa-angle-down {
            color: #f44336;
            font-size: 22px;
            padding-left: 10px;
        }

.dashboard .schedule {
    margin-top: 20px;
}

.dashboard .timeline.ui-panel .ui-panel-content {
    position: relative;
}

    .dashboard .timeline.ui-panel .ui-panel-content .timeline-line {
        position: absolute;
        left: 50%;
        width: 1px;
        height: 100%;
        margin-left: -1px;
        background: #dddddd;
        top: 0;
    }

.dashboard .timeline ul {
    list-style-type: none;
    padding: 0;
    position: relative;
}

    .dashboard .timeline ul li {
        display: block;
        position: relative;
        width: 100%;
        margin-bottom: 30px;
    }

        .dashboard .timeline ul li .timeline-message {
            width: 45%;
            overflow: hidden;
            position: relative;
        }

            .dashboard .timeline ul li .timeline-message img {
                position: absolute;
                width: 100%;
                height: auto;
                z-index: 0;
            }

            .dashboard .timeline ul li .timeline-message span {
                position: relative;
                z-index: 10;
                display: block;
                padding: 15px;
            }

                .dashboard .timeline ul li .timeline-message span.love {
                    color: #cd2026;
                    background-color: #f8dede;
                    font-weight: 600;
                    text-align: right;
                }

                .dashboard .timeline ul li .timeline-message span.checked {
                    font-weight: 600;
                    color: #00a6d2;
                    background-color: #e1f3f8;
                }

                .dashboard .timeline ul li .timeline-message span.event {
                    color: #f39f19;
                    font-weight: 600;
                    background-color: #fff1d2;
                }

        .dashboard .timeline ul li .timeline-icon {
            z-index: 100;
            line-height: 30px;
        }

            .dashboard .timeline ul li .timeline-icon img {
                width: 30px;
                height: 30px;
            }

            .dashboard .timeline ul li .timeline-icon span {
                font-weight: 600;
                color: #5b616b;
            }

        .dashboard .timeline ul li.odd .timeline-icon {
            position: absolute;
            left: 50%;
            margin-left: -16px;
        }

            .dashboard .timeline ul li.odd .timeline-icon span {
                float: right;
            }

            .dashboard .timeline ul li.odd .timeline-icon img {
                float: left;
                margin-right: 15px;
            }

        .dashboard .timeline ul li.odd .timeline-message {
            float: left;
        }

            .dashboard .timeline ul li.odd .timeline-message span {
                padding: 15px;
                text-align: right;
            }

        .dashboard .timeline ul li.even .timeline-icon {
            position: absolute;
            right: 50%;
            margin-right: -16px;
            text-align: right;
        }

            .dashboard .timeline ul li.even .timeline-icon span {
                float: left;
            }

            .dashboard .timeline ul li.even .timeline-icon img {
                float: right;
                margin-left: 15px;
            }

        .dashboard .timeline ul li.even .timeline-message {
            float: right;
        }

            .dashboard .timeline ul li.even .timeline-message span {
                padding: 15px;
            }

.dashboard .inventory-list .ui-panel-content {
    padding: 0;
}

.dashboard .profile-details .ui-panel-content {
    padding: 0;
    text-align: center;
}

.dashboard .profile-details img {
    width: 100%;
}

.dashboard .profile-details .profile-avatar {
    width: 120px;
    height: 120px;
    top: -60px;
    position: relative;
}

.dashboard .profile-details .profile-name {
    font-weight: 600;
    color: #212121;
    text-align: center;
    display: block;
    margin-top: -75px;
}

.dashboard .profile-details .profile-role {
    color: #212121;
    text-align: center;
    display: block;
}

.dashboard .profile-details .ui-button {
    margin-top: 16px;
    padding: 0px 35px;
    margin-right: 0;
}

.dashboard .profile-details .profile-statistics-panel {
    text-align: center;
    display: inline-block;
    position: relative;
}

    .dashboard .profile-details .profile-statistics-panel .profile-statistics {
        font-weight: 600;
        font-size: 16px;
        display: block;
    }

    .dashboard .profile-details .profile-statistics-panel .statistics-title {
        border-bottom: 4px solid transparent;
        padding-bottom: 10px;
    }

.login-body .login-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 60px;
    background: #ffffff;
    /* Old browsers */
    background: -moz-linear-gradient(-206deg, #ffffff 5%, #ffffff 100%);
    background: -webkit-linear-gradient(-206deg, #ffffff 5%, #ffffff 100%);
    background: linear-gradient(-206deg, #ffffff 5%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 );
}

    .login-body .login-topbar .logo {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: 230px;
        padding: 10px 100px;
        display: inline-block;
        text-align: center;
    }

        .login-body .login-topbar .logo img {
            height: 40px;
        }

.login-body .login-image {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    top: 60px;
}

.login-body .login-panel {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15% 0 0 100px;
    width: 500px;
}

    .login-body .login-panel .login-icon {
        max-width: 75px;
        max-height: 75px;
        margin-bottom: 25px;
    }

    .login-body .login-panel .ui-g .logo-container {
        padding: 0;
    }

        .login-body .login-panel .ui-g .logo-container .login-summary {
            line-height: 48px;
            font-size: 36px;
            font-weight: bold;
            text-align: left;
        }

        .login-body .login-panel .ui-g .logo-container .login-detail {
            line-height: 20px;
            font-size: 16px;
            text-align: left;
        }

    .login-body .login-panel .ui-g .ui-g-12 {
        padding: 15px 0px;
    }

        .login-body .login-panel .ui-g .ui-g-12 .ui-inputfield {
            display: block;
            margin-top: 5px;
        }

        .login-body .login-panel .ui-g .ui-g-12.chkbox-container a {
            float: right;
        }

        .login-body .login-panel .ui-g .ui-g-12 .ui-chkbox {
            margin-right: 5px;
        }

        .login-body .login-panel .ui-g .ui-g-12 .ui-outputlabel {
            vertical-align: middle;
        }

    .login-body .login-panel .ui-g .ui-button {
        width: 130px;
        border-radius: 3px;
    }

@media screen and (max-width: 640px) {
    .login-body .login-panel {
        padding: 150px 25px 0 25px;
        width: 100%;
    }

        .login-body .login-panel .login-icon-container {
            text-align: center;
        }
}

.exception-body .exception-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 60px;
    background: #ffffff;
    /* Old browsers */
    background: -moz-linear-gradient(-206deg, #ffffff 5%, #ffffff 100%);
    background: -webkit-linear-gradient(-206deg, #ffffff 5%, #ffffff 100%);
    background: linear-gradient(-206deg, #ffffff 5%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 );
}

    .exception-body .exception-topbar .logo {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: 230px;
        padding: 10px 100px;
        display: inline-block;
        text-align: center;
    }

        .exception-body .exception-topbar .logo img {
            height: 40px;
        }

.exception-body .exception-image {
    position: absolute;
    top: 60px;
    width: 100%;
}

.exception-body .exception-panel {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 24% 0 0 100px;
    width: 500px;
}

    .exception-body .exception-panel .exception-icon {
        max-width: 75px;
        max-height: 75px;
    }

@media screen and (max-width: 640px) {
    .exception-body .exception-panel {
        padding: 200px 25px 0 25px;
        width: 100%;
        text-align: center;
    }
}

.landing-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.landing-wrapper #header .header-top {
    min-height: 60px;
    background-color: #ffffff;
    padding: 0 150px;
}

    .landing-wrapper #header .header-top .logo {
        padding-top: 10px;
        display: inline-block;
    }

        .landing-wrapper #header .header-top .logo img {
            height: 40px;
        }

    .landing-wrapper #header .header-top .header-menu {
        text-decoration: none;
        padding: 0;
        float: right;
        height: 60px;
        margin: 0;
    }

        .landing-wrapper #header .header-top .header-menu li {
            display: inline-block;
        }

            .landing-wrapper #header .header-top .header-menu li a {
                display: inline-block;
                padding: 19px;
                color: #5b616b;
                border-bottom: 4px solid transparent;
            }

                .landing-wrapper #header .header-top .header-menu li a:hover {
                    border-color: #0071bc;
                }

.landing-wrapper #header .header-content {
    background: url("../../layout/images/landing/bg-slider.jpg");
    height: 390px;
    background-size: cover;
    padding: 80px 150px 0 150px;
}

    .landing-wrapper #header .header-content .header-content-panel {
        padding: 20px 25px;
        background-color: #ffffff;
        text-align: left;
        width: 300px;
    }

        .landing-wrapper #header .header-content .header-content-panel h1 {
            color: #ffffff;
            margin: 0;
            font-weight: 100;
        }

        .landing-wrapper #header .header-content .header-content-panel p {
            color: #00bfe7;
            margin-bottom: 20px;
        }

        .landing-wrapper #header .header-content .header-content-panel .ui-button {
            margin: 0;
            padding: 5px 10px;
        }

            .landing-wrapper #header .header-content .header-content-panel .ui-button span {
                padding: 0;
            }

.landing-wrapper .features {
    padding: 75px 150px;
}

    .landing-wrapper .features .learn-more {
        font-size: 16px;
        font-weight: 600;
        color: #e31c3d;
    }

    .landing-wrapper .features h2 {
        color: #e31c3d;
        text-align: left;
        font-weight: 100;
        font-size: 28px;
    }

    .landing-wrapper .features h3 {
        margin-top: 0;
        margin-bottom: 16px;
        color: #212121;
    }

    .landing-wrapper .features p {
        color: #212121;
        margin: 14px 0;
        padding-right: 100px;
    }

    .landing-wrapper .features i {
        color: #e31c3d;
        margin-left: 5px;
    }

    .landing-wrapper .features img {
        width: 100%;
    }

    .landing-wrapper .features .ui-g-9 {
        padding-left: 10px;
    }

.landing-wrapper .premium {
    background: url("../../layout/images/landing/image-demo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
}

    .landing-wrapper .premium .premium-content {
        padding: 75px 150px;
    }

        .landing-wrapper .premium .premium-content h1 {
            color: #ffffff;
            margin: 0;
            font-weight: 100;
        }

        .landing-wrapper .premium .premium-content p {
            color: #ffffff;
            padding-bottom: 30px;
            margin-bottom: 0;
            max-width: 400px;
        }

        .landing-wrapper .premium .premium-content .ui-button {
            margin: 0;
        }

.landing-wrapper .news {
    padding: 75px 150px;
}

    .landing-wrapper .news span {
        font-size: 16px;
        font-weight: 600;
        color: #e31c3d;
    }

    .landing-wrapper .news h2 {
        color: #e31c3d;
        text-align: left;
        font-weight: 100;
        font-size: 28px;
    }

    .landing-wrapper .news h3 {
        margin-top: 0;
        color: #323a44;
    }

    .landing-wrapper .news p {
        color: #323a44;
    }

    .landing-wrapper .news i {
        color: #e31c3d;
        margin-left: 5px;
    }

    .landing-wrapper .news .news-icon img {
        width: 100%;
    }

.landing-wrapper .pricing {
    padding: 75px 150px;
    background-color: #205493;
    border-top: 10px solid #00a6d2;
}

    .landing-wrapper .pricing h2 {
        color: #ffffff;
        text-align: left;
        font-weight: 100;
        font-size: 28px;
    }

    .landing-wrapper .pricing .pricing-box {
        text-align: center;
    }

        .landing-wrapper .pricing .pricing-box .pricing-header {
            color: #ffffff;
            background-color: #ffffff;
            letter-spacing: 2px;
            font-weight: 600;
            padding: 12px 0px;
        }

        .landing-wrapper .pricing .pricing-box .pricing-subheader {
            background-color: #efefef;
        }

        .landing-wrapper .pricing .pricing-box .price {
            display: block;
            font-size: 32px;
            font-weight: 600;
            color: #ffffff;
        }

        .landing-wrapper .pricing .pricing-box .duration {
            display: block;
            font-size: 18px;
            font-weight: 600;
            color: #4773aa;
        }

        .landing-wrapper .pricing .pricing-box .pricing-content {
            background-color: #ffffff;
            min-height: 250px;
            padding-top: 20px;
        }

            .landing-wrapper .pricing .pricing-box .pricing-content span {
                text-align: center;
                display: block;
                padding: 2px 0;
            }

        .landing-wrapper .pricing .pricing-box .ui-button {
            position: relative;
            top: -55px;
        }

        .landing-wrapper .pricing .pricing-box.pricing-basic .pricing-header {
            background-color: #00a6d2;
        }

        .landing-wrapper .pricing .pricing-box.pricing-basic .price {
            color: #00a6d2;
        }

        .landing-wrapper .pricing .pricing-box.pricing-basic .duration {
            color: #00a6d2;
        }

.landing-wrapper .media {
    padding: 75px 150px;
}

    .landing-wrapper .media h2 {
        color: #e31c3d;
        text-align: left;
        font-weight: 100;
        font-size: 28px;
        margin: 0 0 14px 0;
    }

    .landing-wrapper .media p {
        margin: 0;
        font-size: 16px;
        text-align: left;
        color: #212121;
    }

    .landing-wrapper .media .video-container {
        margin-top: 50px;
    }

.landing-wrapper .footer {
    background-color: #ffffff;
    border-top: 10px solid #00a6d2;
    padding: 50px 150px;
}

    .landing-wrapper .footer .appname {
        font-size: 24px;
        font-weight: 500;
        text-align: left;
        color: #ffffff;
        margin: 0 0 14px 0;
    }

    .landing-wrapper .footer p {
        margin: 0;
        color: #ffffff;
    }

    .landing-wrapper .footer a {
        color: #9faebf;
        font-size: 14px;
        display: block;
        opacity: 0.9;
    }

        .landing-wrapper .footer a:hover {
            color: #ffffff;
        }

        .landing-wrapper .footer a i {
            padding: 5px 15px 0px 0px;
            line-height: 24px;
            font-size: 24px;
        }

    .landing-wrapper .footer .header {
        color: #9faebf;
        font-size: 14px;
        display: block;
        opacity: 0.9;
        line-height: 35px;
        font-weight: 700;
    }

    .landing-wrapper .footer .footer-social a {
        display: inline-block;
    }

@media (max-width: 1025px) {
    .landing-wrapper #header .header-top {
        padding: 0;
        text-align: center;
    }

        .landing-wrapper #header .header-top .header-menu {
            float: none;
        }

            .landing-wrapper #header .header-top .header-menu li a {
                padding: 19px 5px;
            }

    .landing-wrapper #header .header-content {
        padding: 85px 0;
    }

        .landing-wrapper #header .header-content .header-content-panel {
            text-align: center;
            width: 320px;
            margin: 0 auto;
        }

    .landing-wrapper .features {
        padding: 75px 50px;
        text-align: center;
    }

        .landing-wrapper .features h2 {
            text-align: center;
        }

        .landing-wrapper .features img {
            width: 130px;
        }

        .landing-wrapper .features .ui-g-9 {
            padding-left: 0;
        }

        .landing-wrapper .features .ui-g > .ui-g-12 {
            padding-top: 32px;
        }

        .landing-wrapper .features p {
            text-align: center;
            padding-right: 0;
        }

    .landing-wrapper .premium {
        background: url("../../layout/images/landing/image-demo-mobile.jpg");
    }

        .landing-wrapper .premium .premium-content {
            padding: 75px 50px;
            text-align: center;
        }

            .landing-wrapper .premium .premium-content p {
                max-width: 700px;
            }

    .landing-wrapper .news {
        padding: 75px 50px;
        text-align: center;
    }

        .landing-wrapper .news .ui-g > .ui-g-12 {
            padding-top: 32px;
        }

    .landing-wrapper .pricing {
        padding: 75px 50px;
        text-align: center;
    }

        .landing-wrapper .pricing .ui-g > .ui-g-12 {
            padding-top: 32px;
        }

    .landing-wrapper .media {
        padding: 75px 50px;
    }

        .landing-wrapper .media .video-container iframe {
            width: 100%;
        }

    .landing-wrapper .footer {
        padding: 75px 50px;
        text-align: center;
    }

        .landing-wrapper .footer .appname {
            text-align: center;
        }

        .landing-wrapper .footer .ui-g > .ui-g-12 {
            padding-top: 32px;
        }
}

html, body {
    min-height: 100vh;
    height: auto;
    margin: 0;
    overflow: auto;
}

body {
    font-family: Helvetica, sans-serif !important;
    font-size: 12px !important;
    color: #212121;
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0;
    /*min-height: 100% !important;
    background-color: #f2f5fa;*/
}
    /*body app-root .layout-wrapper{
    height:inherit;
}*/
    body a {
        text-decoration: none;
    }

.layout-wrapper .layout-topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    height: 103px; /*tamaño de topbar*/
    background: #ffffff;
    border-bottom: solid;
    border-bottom-color: #BDBDBD;
    border-bottom-width: 6px;
    /* Old browsers */
    background: -moz-linear-gradient(-206deg, #ffffff 5%, #ffffff 100%);
    background: -webkit-linear-gradient(-206deg, #ffffff 5%, #ffffff 100%);
    background: linear-gradient(-206deg, #ffffff 5%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 );
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*.layout-wrapper{
        height:100%;
    }*/
app-shared-template {
    height: 100%;
    height: inherit;
}

.layout-wrapper .layout-topbar .logo {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    left: 110px;
    bottom: 13px;
    width: 230px;
    padding: 10px 0;
    display: inline-block;
    text-align: center;
}

    .layout-wrapper .layout-topbar .logo img {
        height: 30px; /*logo superior*/
    }

.layout-wrapper .layout-topbar .usermenu a {
    position: relative;
}

    .layout-wrapper .layout-topbar .usermenu a .layout-menuitem-toggler {
        position: absolute;
        right: 12px;
        top: 11px;
    }

.layout-wrapper .layout-topbar .usermenu > li.menuitem-active > a i {
    color: #ffffff;
}

.layout-wrapper .layout-topbar .usermenu > li.menuitem-active > a span {
    color: #ffffff;
}

.layout-wrapper .layout-topbar #menu-button {
    position: absolute;
    bottom: 44px;
    left: 320px;
    width: 10px;
    height: 10px;
    line-height: 60px;
    font-size: 30px;
    color: #002070; /*color del boton de menu*/
    text-align: center;
    -moz-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.fondo-unit-menu-root {
    background-color: #4298CE;
}

.fondo-titl {
    background-color: #0079C1;
}

.font-color-tilt {
    color: white;
}

.layout-wrapper .layout-topbar #menu-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.layout-wrapper .layout-topbar #menu-button i {
    line-height: inherit;
}

.layout-wrapper .layout-topbar #right-sidebar-button {
    display: inline-block;
    position: absolute;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    -moz-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

    .layout-wrapper .layout-topbar #right-sidebar-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .layout-wrapper .layout-topbar #right-sidebar-button i {
        line-height: inherit;
    }

.layout-wrapper .layout-topbar #topbar-menu-button {
    display: block;
    position: absolute;
    right: 80px;
    top: 10px;
    height: 40px;
    color: #ffffff;
}

    .layout-wrapper .layout-topbar #topbar-menu-button img {
        display: inline-block;
        vertical-align: middle;
        width: 40px;
        height: 40px;
    }

    .layout-wrapper .layout-topbar #topbar-menu-button span {
        display: inline-block;
        vertical-align: middle;
    }

        .layout-wrapper .layout-topbar #topbar-menu-button span:hover {
            text-decoration: underline;
        }

@media screen and (max-width: 1024px) {
    .layout-wrapper .layout-topbar {
        height: 105px;
    }

        .layout-wrapper .layout-topbar .logo {
            margin-left: 60px;
        }

        .layout-wrapper .layout-topbar #menu-button {
            left: 0;
        }

        .layout-wrapper .layout-topbar #topbar-menu-button {
            right: 65px;
        }

            .layout-wrapper .layout-topbar #topbar-menu-button span {
                display: none;
            }

        .layout-wrapper .layout-topbar #right-sidebar-button {
            right: 0;
        }
}

@media screen and (max-width: 512px) {
    .layout-wrapper .layout-topbar #right-sidebar-button {
        width: 48px;
    }

    .layout-wrapper .layout-topbar #topbar-menu-button {
        right: 48px;
    }
}

.layout-wrapper #layout-megamenu-button {
    position: absolute;
    left: 290px;
    height: 60px;
    width: 140px;
    color: #ffffff;
    text-align: center;
    line-height: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    -moz-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

    .layout-wrapper #layout-megamenu-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .layout-wrapper #layout-megamenu-button i {
        width: 15px;
        height: 15px;
        text-align: center;
        margin-right: 2px;
    }

.layout-wrapper .layout-megamenu {
    z-index: 998;
    position: fixed;
    left: 290px;
    top: 60px;
    background-color: #ffffff;
    max-width: 700px;
    list-style-type: none;
    border: solid 1px #d6d7d9;
    padding: 16px;
    padding-bottom: 20px;
    display: none;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    font-weight: normal;
}

    .layout-wrapper .layout-megamenu .layout-megamenu-submenu {
        padding: 0;
        overflow: hidden;
    }

        .layout-wrapper .layout-megamenu .layout-megamenu-submenu .content-img {
            padding: 16px;
            position: relative;
            box-sizing: border-box;
        }

            .layout-wrapper .layout-megamenu .layout-megamenu-submenu .content-img img {
                width: 135px;
            }

            .layout-wrapper .layout-megamenu .layout-megamenu-submenu .content-img .img-header {
                position: absolute;
                top: 20px;
                color: #ffffff;
                font-weight: 700;
                font-size: 13px;
                line-height: 14px;
                text-shadow: 0px 0px 2px #000000;
            }

            .layout-wrapper .layout-megamenu .layout-megamenu-submenu .content-img .img-subheader {
                color: #ffffff;
                font-size: 12px;
                font-weight: 400;
                line-height: 14px;
                position: absolute;
                top: 40px;
                text-shadow: 0px 0px 2px #000000;
            }

            .layout-wrapper .layout-megamenu .layout-megamenu-submenu .content-img .ui-button {
                margin-top: 10px;
                border-radius: 3px;
            }

                .layout-wrapper .layout-megamenu .layout-megamenu-submenu .content-img .ui-button .ui-button-text {
                    padding: 4px 16px;
                }

        .layout-wrapper .layout-megamenu .layout-megamenu-submenu h4 {
            color: #205493;
            font-weight: 700;
            line-height: 20px;
            text-align: left;
            margin: 20px 0 0 14px;
        }

        .layout-wrapper .layout-megamenu .layout-megamenu-submenu ul {
            padding: 0;
            list-style-type: none;
        }

            .layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li {
                line-height: 35px;
                border-left: 4px solid transparent;
            }

                .layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li i {
                    color: #5b616a;
                    font-size: inherit;
                    display: inline-block;
                    vertical-align: middle;
                    margin-right: 12px;
                    margin-left: 10px;
                }

                .layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li span {
                    color: #5b616a;
                    display: inline-block;
                    vertical-align: middle;
                }

                .layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li:hover {
                    background-color: #f1f1f1;
                }


                .layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li:active {
                    border-left: 4px solid #00a6d2;
                    color: #00a6d2;
                }

                    .layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li:active span {
                        color: #00a6d2;
                    }

                    .layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li:active i {
                        color: #00a6d2;
                    }

    .layout-wrapper .layout-megamenu.layout-megamenu-dark {
        background-color: #ffffff;
        border: none;
    }

        .layout-wrapper .layout-megamenu.layout-megamenu-dark h4 {
            color: #ffffff;
        }

        .layout-wrapper .layout-megamenu.layout-megamenu-dark ul li i {
            color: #ffffff;
        }

        .layout-wrapper .layout-megamenu.layout-megamenu-dark ul li span {
            color: #ffffff;
        }

        .layout-wrapper .layout-megamenu.layout-megamenu-dark ul li:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .layout-wrapper .layout-megamenu.layout-megamenu-dark ul li:active {
            border-left: 4px solid #00bfe7;
            color: #00bfe7;
        }

            .layout-wrapper .layout-megamenu.layout-megamenu-dark ul li:active span {
                color: #00bfe7;
            }

            .layout-wrapper .layout-megamenu.layout-megamenu-dark ul li:active i {
                color: #00bfe7;
            }

    .layout-wrapper .layout-megamenu.layout-megamenu-gradient {
        background-image: linear-gradient(to top, #295b89, #ffffff);
        border: none;
    }

    .layout-wrapper .layout-megamenu.layout-megamenu-active {
        display: block;
    }

@media screen and (max-width: 1024px) {
    .layout-wrapper #layout-megamenu-button {
        left: 0;
        margin-top: 60px;
        width: 100%;
        text-align: center;
        height: 45px;
        line-height: 45px;
        letter-spacing: 2px;
        text-transform: uppercase;
        background-color: #294262;
        font-weight: 600;
    }

        .layout-wrapper #layout-megamenu-button:hover {
            background-color: #35557e;
        }

    .layout-wrapper .layout-megamenu {
        top: 105px;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: calc(100% - 105px);
        overflow: auto;
    }

    body.body-megamenu-active {
        overflow: hidden;
    }
}

.layout-wrapper .layout-sidebar {
    width:max-content;
    background-color: white; /*fondo del menu desplegable*/
    border-right: solid 1px #d6d7d9;
    position: relative;
    z-index: 999;
    left: 20px;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: left 0.2s;
    -o-transition: left 0.2s;
    -webkit-transition: left 0.2s;
    transition: left 0.2s;
}

    .layout-wrapper .layout-sidebar .user-profile {
        text-align: center;
        color: #212121;
    }

        .layout-wrapper .layout-sidebar .user-profile #sidebar-profile-button {
            padding: 12px 0;
        }

            .layout-wrapper .layout-sidebar .user-profile #sidebar-profile-button img {
                display: block;
                margin-left: 70px;
            }

        .layout-wrapper .layout-sidebar .user-profile a {
            color: #212121;
            display: block;
            position: relative;
        }

            .layout-wrapper .layout-sidebar .user-profile a .sidebar-profile-name {
                display: inline-block;
                font-weight: 700;
            }

            .layout-wrapper .layout-sidebar .user-profile a .sidebar-profile-role {
                display: block;
                color: #393939;
            }

            .layout-wrapper .layout-sidebar .user-profile a:hover {
                background-color: #f1f1f1;
            }

            .layout-wrapper .layout-sidebar .user-profile a .layout-menuitem-toggler {
                position: absolute;
                right: 12px;
                top: 11px;
            }

    .layout-wrapper .layout-sidebar .layout-menu {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

        .layout-wrapper .layout-sidebar .layout-menu .text-badge .menuitem-badge {
            width: 40px;
            margin-right: 22px;
        }

        .layout-wrapper .layout-sidebar .layout-menu li > a {
            display: block;
            padding: 8px 12px;
            color: #000000; /*color texto menu lateral*/
            position: relative;
        }

            .layout-wrapper .layout-sidebar .layout-menu li > a .menuitem-badge {
                margin-right: 25px;
                float: right;
                color: #ffffff;
                background-color: #4aa564;
                width: 20px;
                height: 20px;
                text-align: center;
                margin-left: 0;
                border-radius: 50px;
            }

            .layout-wrapper .layout-sidebar .layout-menu li > a i {
                color: #5b616a;
                font-weight: 700;
            }

                .layout-wrapper .layout-sidebar .layout-menu li > a i.layout-menuitem-toggler {
                    position: absolute;
                    right: 12px;
                    top: 11px;
                    -moz-transition: transform 0.2s;
                    -o-transition: transform 0.2s;
                    -webkit-transition: transform 0.2s;
                    transition: transform 0.2s;
                }

            .layout-wrapper .layout-sidebar .layout-menu li > a span {
                margin-left: 12px;
            }

            .layout-wrapper .layout-sidebar .layout-menu li > a:hover {
                background-color: #00B0D3; /*fondo boton onmouse menu principal*/
                color: white; /*color de letra boton onmouse menu principal*/
            }

        .layout-wrapper .layout-sidebar .layout-menu li > ul {
            list-style-type: none;
            padding: 0 0 0 0;
            margin: 0;
            overflow: hidden;
        }

            .layout-wrapper .layout-sidebar .layout-menu li > ul li > a {
                padding: 8px 24px;
            }

            .layout-wrapper .layout-sidebar .layout-menu li > ul li ul li > a {
                padding: 8px 36px;
            }

            .layout-wrapper .layout-sidebar .layout-menu li > ul li ul li ul li > a {
                padding: 8px 48px;
            }

            .layout-wrapper .layout-sidebar .layout-menu li > ul li ul li ul li ul li > a {
                padding: 8px 60px;
            }

            .layout-wrapper .layout-sidebar .layout-menu li > ul li ul li ul li ul li ul li > a {
                padding: 8px 72px;
            }

            .layout-wrapper .layout-sidebar .layout-menu li > ul li ul li ul li ul li ul li ul li > a {
                padding: 8px 84px;
            }

            .layout-wrapper .layout-sidebar .layout-menu li > ul li ul li ul li ul li ul li ul li ul li > a {
                padding: 8px 96px;
            }

        .layout-wrapper .layout-sidebar .layout-menu li.active-menuitem > a {
            color: #00a6d2;
        }

            .layout-wrapper .layout-sidebar .layout-menu li.active-menuitem > a i {
                color: #00a6d2;
            }

                .layout-wrapper .layout-sidebar .layout-menu li.active-menuitem > a i.layout-menuitem-toggler {
                    -webkit-transform: rotate(-180deg);
                    -moz-transform: rotate(-180deg);
                    -o-transform: rotate(-180deg);
                    -ms-transform: rotate(-180deg);
                    transform: rotate(-180deg);
                }

        .layout-wrapper .layout-sidebar .layout-menu > li > a {
            border-bottom: 1px solid #e4e2e0;
        }

        .layout-wrapper .layout-sidebar .layout-menu > li.active-menuitem > a {
            border-left: 4px solid #00a6d2;
            padding-left: 8px;
        }

            .layout-wrapper .layout-sidebar .layout-menu > li.active-menuitem > a i {
                color: #00a6d2;
            }

        .layout-wrapper .layout-sidebar .layout-menu > li.active-menuitem > ul {
            border-bottom: 1px solid #e4e2e0;
        }

        .layout-wrapper .layout-sidebar .layout-menu > li:first-child > a {
            border-top: 1px solid #e4e2e0;
        }

        .layout-wrapper .layout-sidebar .layout-menu > li.ui-menuitem-submenu.active-menuitem > a {
            border-bottom-color: transparent;
        }

    .layout-wrapper .layout-sidebar .ui-scrollpanel {
        background-color: transparent;
        border-radius: 0;
        border: none;
    }

        .layout-wrapper .layout-sidebar .ui-scrollpanel .ui-scrollpanel-bar {
            background: #e0e0e0;
        }

        .layout-wrapper .layout-sidebar .ui-scrollpanel .ui-scrollpanel-hidden {
            display: block;
            visibility: hidden;
        }

        .layout-wrapper .layout-sidebar .ui-scrollpanel .sidebar-scroll-content {
            width: 248px;
            padding-top: 10px;
            padding-right: 18px;
            padding-bottom: 0px;
        }

    .layout-wrapper .layout-sidebar.layout-sidebar-dark {
        background-color: #ffffff;
        border-right-color: #ffffff;
    }

        .layout-wrapper .layout-sidebar.layout-sidebar-dark .user-profile {
            color: #ffffff;
        }

            .layout-wrapper .layout-sidebar.layout-sidebar-dark .user-profile a {
                color: #ffffff;
            }

                .layout-wrapper .layout-sidebar.layout-sidebar-dark .user-profile a:hover {
                    background-color: rgba(255, 255, 255, 0.1);
                }

                .layout-wrapper .layout-sidebar.layout-sidebar-dark .user-profile a .sidebar-profile-role {
                    color: #ffffff;
                }

            .layout-wrapper .layout-sidebar.layout-sidebar-dark .user-profile li.menuitem-active > a {
                color: #00a6d2;
            }

                .layout-wrapper .layout-sidebar.layout-sidebar-dark .user-profile li.menuitem-active > a i {
                    color: #00a6d2;
                }

        .layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu li > a {
            color: #ffffff;
        }

            .layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu li > a i {
                color: #ffffff;
            }

            .layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu li > a:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

        .layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu li.active-menuitem > a {
            color: #00a6d2;
        }

            .layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu li.active-menuitem > a i {
                color: #00a6d2;
            }

        .layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu > li > a {
            border-bottom: 1px solid rgba(255, 255, 255, 0.075);
        }

        .layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu > li.active-menuitem > a {
            border-left: 4px solid #00a6d2;
            padding-left: 8px;
            color: #00a6d2;
        }

            .layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu > li.active-menuitem > a i {
                color: #00a6d2;
            }

        .layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu > li.active-menuitem > ul {
            border-bottom: 1px solid rgba(255, 255, 255, 0.075);
        }

        .layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu > li:first-child > a {
            border-top: 1px solid rgba(255, 255, 255, 0.075);
        }

        .layout-wrapper .layout-sidebar.layout-sidebar-dark .ui-scrollpanel .ui-scrollpanel-bar {
            background: rgba(255, 255, 255, 0.1);
        }

    .layout-wrapper .layout-sidebar.layout-sidebar-gradient {
        border-right-color: transparent;
        background-color: #ffffff;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#295b89));
        background-image: -webkit-linear-gradient(to bottom, #ffffff, #295b89);
        background-image: -moz-linear-gradient(to bottom, #ffffff, #295b89);
        /*background-image: -ms-linear-gradient(to bottom, #ffffff, #295b89);*/
        background-image: -o-linear-gradient(to bottom, #ffffff, #295b89);
        background-image: linear-gradient(to bottom, #ffffff, #295b89);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorStr="#295b89");
        border-right-color: #ffffff;
    }

        .layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu li > a {
            color: #ffffff;
        }

            .layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu li > a i {
                color: #ffffff;
            }

            .layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu li > a:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

        .layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu li.active-menuitem > a {
            color: #00a6d2;
        }

            .layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu li.active-menuitem > a i {
                color: #00a6d2;
            }

        .layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu > li > a {
            border-bottom: 1px solid rgba(255, 255, 255, 0.075);
        }

        .layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu > li.active-menuitem > a {
            border-left: 4px solid #00a6d2;
            padding-left: 8px;
            color: #00a6d2;
        }

            .layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu > li.active-menuitem > a i {
                color: #00a6d2;
            }

        .layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu > li.active-menuitem > ul {
            border-bottom: 1px solid rgba(255, 255, 255, 0.075);
        }

        .layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu > li:first-child > a {
            border-top: 1px solid rgba(255, 255, 255, 0.075);
        }

.layout-wrapper.layout-wrapper-sidebar-inactive .layout-sidebar {
    left: -270px;
}

.layout-wrapper.layout-wrapper-overlay-sidebar .layout-sidebar {
    left: -270px;
}

.layout-wrapper.layout-wrapper-overlay-sidebar.layout-wrapper-overlay-sidebar-active .layout-sidebar {
    left: 0;
}

@media screen and (min-width: 1025px) {
    .layout-wrapper.layout-wrapper-slim-sidebar .layout-topbar .logo {
        margin-left: 30px;
    }

    .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar {
        width: 50px;
    }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile #sidebar-profile-button {
            text-align: center;
            padding: 11px 4px 11px 3px;
        }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile #sidebar-profile-button img {
                width: 30px;
                margin: auto;
            }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile #sidebar-profile-button .sidebar-profile-name {
                display: none;
            }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile #sidebar-profile-button .sidebar-profile-role {
                display: none;
            }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile .usermenu {
            background-color: #ffffff;
            border: 1px solid #d6d7d9;
            color: #212121;
            position: absolute;
            overflow: auto;
            top: 0;
            left: 54px;
            min-width: 250px;
            max-height: 450px;
            display: none;
            -moz-border-radius: 0;
            -webkit-border-radius: 0;
            border-radius: 0;
            box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
            -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
            -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile .usermenu li {
                border-left: 0 none;
                border-right: 0 none;
            }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile .usermenu li:first-child {
                    margin: 0;
                }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile .usermenu li:last-child {
                    margin: 0;
                }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile .usermenu li a {
                    color: #212121;
                    -moz-transition: background-color 0.2s;
                    -o-transition: background-color 0.2s;
                    -webkit-transition: background-color 0.2s;
                    transition: background-color 0.2s;
                }

                    .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile .usermenu li a i {
                        color: #5b616a;
                    }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile .usermenu li.menuitem-active > a {
                    color: #212121;
                }

                    .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile .usermenu li.menuitem-active > a span {
                        color: #5b616a;
                    }

                    .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile .usermenu li.menuitem-active > a i {
                        color: #5b616a;
                    }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .user-profile .usermenu.usermenu-active {
                display: block;
            }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li {
            position: relative;
        }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li > a {
                border-left: 4px solid transparent;
                display: block;
                text-align: center;
                padding: 12px 14px 12px 9px;
                color: #212121;
            }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li > a i {
                    color: #5b616a;
                    font-size: 14px;
                    margin-right: 0;
                }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li > a span {
                    display: none;
                }

                    .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li > a span.menuitem-badge {
                        display: block;
                        position: absolute;
                        top: 6px;
                        right: -20px;
                        font-size: 10px;
                        width: 13px;
                        height: 13px;
                    }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li > a:hover + .layout-menu-tooltip {
                    display: block;
                }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li > a .layout-menuitem-toggler {
                    display: none;
                }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li.text-badge .menuitem-badge {
                display: none;
            }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li > ul {
                background-color: #ffffff;
                border: 1px solid #d6d7d9;
                color: #212121;
                position: absolute;
                top: 0;
                left: 54px;
                min-width: 200px;
                -moz-border-radius: 0;
                -webkit-border-radius: 0;
                border-radius: 0;
                box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
                -webkit-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
                -moz-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
            }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li > ul li > a {
                    padding: 12px;
                }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li.active-menuitem > a {
                border-left: 4px solid #00a6d2;
            }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li.active-menuitem > a i {
                    color: #00a6d2;
                }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu > li.active-menuitem > a:hover + .layout-menu-tooltip {
                    display: none;
                }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu .layout-menu-tooltip {
            display: none;
            padding: 0 5px;
            position: absolute;
            left: 50px;
            top: 9px;
            line-height: 1;
        }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text {
                padding: 6px 8px;
                font-size: 14px;
                background-color: #212121;
                color: #ffffff;
                min-width: 75px;
                white-space: nowrap;
                text-align: center;
            }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow {
                position: absolute;
                width: 0;
                height: 0;
                border-color: transparent;
                border-style: solid;
                top: 50%;
                left: 0;
                margin-top: -5px;
                border-width: 5px 5px 5px 0;
                border-right-color: #212121;
            }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .user-profile .usermenu {
            background-color: #ffffff;
            border: #ffffff;
            color: #ffffff;
        }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .user-profile .usermenu > li a {
                color: #ffffff;
            }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .user-profile .usermenu > li a i {
                    color: #ffffff;
                }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .user-profile .usermenu > li.menuitem-active > a {
                color: #ffffff;
            }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .user-profile .usermenu > li.menuitem-active > a span {
                    color: #ffffff;
                }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .user-profile .usermenu > li.menuitem-active > a i {
                    color: #ffffff;
                }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li > a {
            color: #ffffff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.075);
        }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li > a i {
                color: #ffffff;
            }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li > a:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li.active-menuitem > a {
            border-left: 4px solid #00a6d2;
            color: #00a6d2;
        }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li.active-menuitem > a i {
                color: #00a6d2;
            }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li:first-child > a {
            border-top: 1px solid rgba(255, 255, 255, 0.075);
        }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li > ul {
            background-color: #ffffff;
            border-color: #ffffff;
            color: #ffffff;
        }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .user-profile .usermenu {
            background-color: #ffffff;
            background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#295b89));
            background-image: -webkit-linear-gradient(to bottom, #ffffff, #295b89);
            background-image: -moz-linear-gradient(to bottom, #ffffff, #295b89);
            /*background-image: -ms-linear-gradient(to bottom, #ffffff, #295b89);*/
            background-image: -o-linear-gradient(to bottom, #ffffff, #295b89);
            background-image: linear-gradient(to bottom, #ffffff, #295b89);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorStr="#295b89");
            border-color: #ffffff;
            color: #ffffff;
        }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .user-profile .usermenu li a {
                color: #ffffff;
            }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .user-profile .usermenu li a i {
                    color: #ffffff;
                }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .user-profile .usermenu li.menuitem-active > a {
                color: #ffffff;
            }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .user-profile .usermenu li.menuitem-active > a span {
                    color: #ffffff;
                }

                .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .user-profile .usermenu li.menuitem-active > a i {
                    color: #ffffff;
                }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li > a {
            color: #ffffff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.075);
        }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li > a i {
                color: #ffffff;
            }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li > a:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li.active-menuitem > a {
            border-left: 4px solid #00a6d2;
            color: #00a6d2;
        }

            .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li.active-menuitem > a i {
                color: #00a6d2;
            }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li:first-child > a {
            border-top: 1px solid rgba(255, 255, 255, 0.075);
        }

        .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li > ul {
            background-color: #ffffff;
            background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#295b89));
            background-image: -webkit-linear-gradient(to bottom, #ffffff, #295b89);
            background-image: -moz-linear-gradient(to bottom, #ffffff, #295b89);
            /*background-image: -ms-linear-gradient(to bottom, #ffffff, #295b89);*/
            background-image: -o-linear-gradient(to bottom, #ffffff, #295b89);
            background-image: linear-gradient(to bottom, #ffffff, #295b89);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorStr="#295b89");
            border-color: #ffffff;
            color: #ffffff;
        }

    .layout-wrapper.layout-wrapper-slim-sidebar .layout-main {
        margin-left: 50px;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-topbar {
        position: static;
    }

        .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-topbar .logo {
            margin-left: 30px;
        }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar {
        width: 100%;
        min-height: 36px;
        position: static;
        padding: 0;
    }

        .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .ui-scrollpanel .ui-scrollpanel-wrapper .ui-scrollpanel-content {
            padding: 0;
            width: 100%;
        }

        .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu {
            margin: 0;
            padding: 0;
            border-bottom: 1px solid #e4e2e0;
        }

            .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li {
                display: inline-block;
                width: auto;
                padding: 0;
                position: relative;
                border-left: 0 none;
                border-right: 0 none;
            }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li:first-child {
                    border-left: 1px solid #e4e2e0;
                }

                    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li:first-child > a {
                        border-top: 0 none;
                    }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li > a {
                    padding: 9px 12px;
                    border-bottom: 0 none;
                    border-left: 4px solid transparent;
                    border-right: 1px solid #e4e2e0;
                    min-height: 38px;
                }

                    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li > a i {
                        color: #5b616a;
                    }

                    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li > a span {
                        margin: 0 8px;
                    }

                    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li > a .menuitem-badge {
                        float: none;
                        display: inline-block;
                        margin-right: 0;
                    }

                    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li > a .layout-menuitem-toggler {
                        position: static;
                    }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li > ul {
                    background-color: #ffffff;
                    border: 1px solid #d6d7d9;
                    color: #212121;
                    top: 38px;
                    left: -1px;
                    min-width: 200px;
                    position: absolute;
                    margin: 0;
                    overflow: auto;
                    max-height: 450px;
                    z-index: 1;
                    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
                    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
                    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
                    -moz-border-radius: 0;
                    -webkit-border-radius: 0;
                    border-radius: 0;
                }

                    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li > ul li > a {
                        border-left: 4px solid transparent;
                    }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li.active-menuitem > a {
                    border-left-color: transparent;
                }

                    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li.active-menuitem > a i {
                        color: #00a6d2;
                    }

                    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu > li.active-menuitem > a:hover + .layout-menu-tooltip {
                        display: none;
                    }

        .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu {
            border-bottom: 1px solid rgba(255, 255, 255, 0.075);
        }

            .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li:first-child {
                border-left: 1px solid rgba(255, 255, 255, 0.075);
            }

            .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li > a {
                padding-left: 12px;
                color: #ffffff;
                border-right: 1px solid rgba(255, 255, 255, 0.075);
            }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li > a i {
                    color: #ffffff;
                }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li > a:hover {
                    background-color: rgba(255, 255, 255, 0.1);
                }

            .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li.active-menuitem > a {
                border-left: 4px solid transparent;
                color: #00a6d2;
            }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li.active-menuitem > a i {
                    color: #00a6d2;
                }

            .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li > ul {
                background-color: #ffffff;
                border-color: #ffffff;
                color: #ffffff;
            }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li > ul li.active-menuitem > a {
                    border-left: 4px solid #00a6d2;
                    color: #00a6d2;
                }

                    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-dark .layout-menu > li > ul li.active-menuitem > a i {
                        color: #00a6d2;
                    }

        .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu {
            border-bottom: 1px solid rgba(255, 255, 255, 0.075);
        }

            .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li:first-child {
                border-left: 1px solid rgba(255, 255, 255, 0.075);
            }

            .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li > a {
                color: #ffffff;
                border-right: 1px solid rgba(255, 255, 255, 0.075);
            }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li > a i {
                    color: #ffffff;
                }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li > a:hover {
                    background-color: rgba(255, 255, 255, 0.1);
                }

            .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li.active-menuitem > a {
                border-left: 4px solid transparent;
                color: #00a6d2;
            }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li.active-menuitem > a i {
                    color: #00a6d2;
                }

            .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li > ul {
                background-color: #ffffff;
                background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#295b89));
                background-image: -webkit-linear-gradient(to bottom, #ffffff, #295b89);
                background-image: -moz-linear-gradient(to bottom, #ffffff, #295b89);
                /*background-image: -ms-linear-gradient(to bottom, #ffffff, #295b89);*/
                background-image: -o-linear-gradient(to bottom, #ffffff, #295b89);
                background-image: linear-gradient(to bottom, #ffffff, #295b89);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorStr="#295b89");
                border-color: #ffffff;
                color: #ffffff;
            }

                .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li > ul li.active-menuitem > a {
                    border-left: 4px solid #00a6d2;
                    color: #00a6d2;
                }

                    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar.layout-sidebar-gradient .layout-menu > li > ul li.active-menuitem > a i {
                        color: #00a6d2;
                    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-main {
        padding-top: 0;
        margin-left: 0;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-topbar #menu-button, .layout-wrapper.layout-wrapper-slim-sidebar .layout-topbar #menu-button {
        display: none;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .ui-scrollpanel .ui-scrollpanel-wrapper, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .ui-scrollpanel .ui-scrollpanel-wrapper {
        overflow: visible;
        float: none;
    }

        .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .ui-scrollpanel .ui-scrollpanel-wrapper .ui-scrollpanel-content, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .ui-scrollpanel .ui-scrollpanel-wrapper .ui-scrollpanel-content {
            display: block;
            height: auto;
            position: static;
            overflow: visible;
            overflow-x: visible;
        }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .ui-scrollpanel .ui-scrollpanel-bar, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .ui-scrollpanel .ui-scrollpanel-bar {
        display: none;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .ui-scrollpanel .sidebar-scroll-content, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .ui-scrollpanel .sidebar-scroll-content {
        width: 100%;
        padding: 0;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu ul li a, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu ul li a {
        padding-left: 12px;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu ul li li a, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu ul li li a {
        padding-left: 24px;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu ul li li li a, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu ul li li li a {
        padding-left: 36px;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu ul li li li li a, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu ul li li li li a {
        padding-left: 48px;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu ul li li li li li a, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu ul li li li li li a {
        padding-left: 60px;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu ul li li li li li li a, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu ul li li li li li li a {
        padding-left: 72px;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu ul li li li li li li li a, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu ul li li li li li li li a {
        padding-left: 84px;
    }

    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar .layout-menu ul li li li li li li li li a, .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar .layout-menu ul li li li li li li li li a {
        padding-left: 96px;
    }
}

@media screen and (max-width: 1024px) {
    /*.layout-wrapper .layout-sidebar {
        left: -230px;
        top: 105px;
        box-shadow: 2px 0 1px 0 rgba(0, 0, 0, 0.16);
        -webkit-box-shadow: 2px 0 1px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 2px 0 1px 0 rgba(0, 0, 0, 0.16);
    }*/

    .layout-wrapper.layout-wrapper-sidebar-mobile-active .layout-sidebar {
        left: 0;
    }
}








.usermenu {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

    .usermenu.usermenu-overlay {
        position: fixed;
        background: #ffffff;
        width: 200px;
        z-index: 999;
        display: none;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    }

        .usermenu.usermenu-overlay li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

    .usermenu.usermenu-active {
        display: block;
        top: 60px;
        right: 0px;
        left: auto;
    }

    .usermenu li a {
        display: block;
        padding: 6px 12px;
        color: #ffffff;
        text-align: left;
    }

        .usermenu li a i {
            margin-right: 9px;
            vertical-align: middle;
        }

            .usermenu li a i.layout-menuitem-toggler {
                -moz-transition: transform 0.2s;
                -o-transition: transform 0.2s;
                -webkit-transition: transform 0.2s;
                transition: transform 0.2s;
            }

        .usermenu li a span, .usermenu li a img {
            display: inline-block;
            vertical-align: middle;
        }

        .usermenu li a:hover {
            background-color: #f1f1f1;
        }

    .usermenu li ul {
        max-height: 0;
        overflow: hidden;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .usermenu li ul a {
            padding-left: 24px;
        }

            .usermenu li ul a span, .usermenu li ul a img {
                vertical-align: middle;
            }

            .usermenu li ul a img {
                margin-right: 8px;
            }

    .usermenu > li.menuitem-active > a {
        padding-left: 8px;
        border-left: 4px solid #00a6d2;
        color: #00a6d2;
    }

        .usermenu > li.menuitem-active > a i {
            color: #00a6d2;
        }

        .usermenu > li.menuitem-active > a span {
            color: #00a6d2;
        }

        .usermenu > li.menuitem-active > a i.layout-menuitem-toggler {
            -webkit-transform: rotate(-180deg);
            -moz-transform: rotate(-180deg);
            -o-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
        }

    .usermenu > li.menuitem-active > ul {
        max-height: 1000px;
    }

.layout-wrapper .layout-main {
    -moz-transition: margin-left 0.2s;
    -o-transition: margin-left 0.2s;
    -webkit-transition: margin-left 0.2s;
    transition: margin-left 0.2s;
}

    .layout-wrapper .layout-main .route-bar {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        min-height: 31px;
        background-color: #ffffff;
        border-bottom: solid 1px #d6d7d9;
        position: relative;
        left: -85px;
        bottom: -50px;
    }

        .layout-wrapper .layout-main .route-bar:after {
            content: "";
            display: table;
            clear: both;
        }

        .layout-wrapper .layout-main .route-bar .route-bar-breadcrumb {
            padding: 6px 12px;
            display: inline-block;
        }

            .layout-wrapper .layout-main .route-bar .route-bar-breadcrumb i {
                color: #5b616a;
                font-size: 18px;
            }

            .layout-wrapper .layout-main .route-bar .route-bar-breadcrumb a {
                color: #212121;
            }

        .layout-wrapper .layout-main .route-bar .route-bar-menu {
            float: right;
            list-style-type: none;
            margin: 0;
            padding: 0;
            height: 100%;
            margin-right: 12px;
        }

            .layout-wrapper .layout-main .route-bar .route-bar-menu li {
                height: 100%;
                display: inline-block;
            }

                .layout-wrapper .layout-main .route-bar .route-bar-menu li i {
                    line-height: inherit;
                    font-size: 18px;
                    color: #5b616a;
                }

                .layout-wrapper .layout-main .route-bar .route-bar-menu li a {
                    width: 36px;
                    font-size: 18px;
                    display: block;
                    height: 100%;
                    text-align: center;
                    line-height: 30px;
                }

                    .layout-wrapper .layout-main .route-bar .route-bar-menu li a:hover {
                        background-color: #f1f1f1;
                    }

                .layout-wrapper .layout-main .route-bar .route-bar-menu li.search-item input {
                    margin-right: 9px;
                    border: 0 none;
                    text-align: left;
                    font-size: 14px;
                    max-width: 150px;
                    outline-offset: 0;
                    outline: 0 none;
                }

                .layout-wrapper .layout-main .route-bar .route-bar-menu li.search-item i {
                    line-height: 30px;
                    width: 36px;
                    text-align: center;
                }

    .layout-wrapper .layout-main .layout-main-content {
        padding: 15px;
    }

.layout-wrapper.layout-wrapper-sidebar-inactive .layout-main {
    margin-left: 0;
}

@media screen and (min-width: 1025px) {
    .layout-wrapper .layout-main {
        padding-top: 60px;
        margin-left: 230px;
    }

    .layout-wrapper.layout-wrapper-sidebar-inactive .layout-main {
        margin-left: 0;
    }

    .layout-wrapper.layout-wrapper-overlay-sidebar .layout-main {
        margin-left: 0;
    }
}

@media screen and (max-width: 1024px) {
    .layout-wrapper .layout-main {
        margin-left: 0;
        padding-top: 105px;
    }
}

#layout-right-sidebar {
    width: 230px;
    right: -231px;
    background-color: #ffffff;
    border-left: solid 1px #d6d7d9;
    position: fixed;
    z-index: 999;
    top: 60px;
    height: 100%;
    padding: 0;
    margin: 0;
    -moz-transition: right 0.2s;
    -o-transition: right 0.2s;
    -webkit-transition: right 0.2s;
    transition: right 0.2s;
}

    #layout-right-sidebar.layout-right-sidebar-active {
        right: 0;
        display: block;
    }

    #layout-right-sidebar .ui-tabview {
        padding: 0;
    }

        #layout-right-sidebar .ui-tabview .ui-tabview-panels {
            padding: 0;
        }

        #layout-right-sidebar .ui-tabview .ui-tabview-nav li {
            padding: 0px 4px;
        }

            #layout-right-sidebar .ui-tabview .ui-tabview-nav li a {
                padding-top: 5px;
                font-size: 20px;
            }

        #layout-right-sidebar .ui-tabview .ui-tabview-nav .ui-tabview-left-icon {
            margin-right: 0;
        }

    #layout-right-sidebar .submenu-title {
        padding: 4px 0 4px 11px;
        background-color: #f1f1f1;
        border-bottom: 1px solid #d6d7d9;
    }

        #layout-right-sidebar .submenu-title span {
            color: #212121;
            font-weight: 600;
            line-height: 42px;
            font-size: 16px;
        }

    #layout-right-sidebar .submenu-content {
        list-style-type: none;
    }

        #layout-right-sidebar .submenu-content.settings {
            padding: 0 11px;
        }

        #layout-right-sidebar .submenu-content ul {
            padding: 0;
        }

            #layout-right-sidebar .submenu-content ul li {
                display: inline-block;
                padding: 11px;
            }

        #layout-right-sidebar .submenu-content img {
            float: left;
            margin-right: 8px;
            width: 27px;
            height: 27px;
        }

        #layout-right-sidebar .submenu-content span {
            display: block;
            font-size: 12px;
            color: #212121;
        }

            #layout-right-sidebar .submenu-content span.messager-name {
                font-weight: 600;
            }

            #layout-right-sidebar .submenu-content span.message-text {
                width: 83%;
                float: right;
            }

            #layout-right-sidebar .submenu-content span.time-stamp {
                color: #80848b;
                position: absolute;
                text-align: center;
                margin-top: 30px;
                width: 10%;
            }

        #layout-right-sidebar .submenu-content .calendar-event-date {
            float: left;
            width: 48px;
            height: 48px;
            text-align: center;
            padding: 6px 0 0 0;
            font-size: 14px;
            font-weight: 600;
            box-sizing: border-box;
            margin-right: 8px;
            background-color: #0071bc;
            display: block;
        }

            #layout-right-sidebar .submenu-content .calendar-event-date span {
                width: 100%;
                display: inline-block;
            }

                #layout-right-sidebar .submenu-content .calendar-event-date span.date {
                    color: #ffffff;
                }

        #layout-right-sidebar .submenu-content .calendar-event-detail {
            float: left;
            display: block;
        }

            #layout-right-sidebar .submenu-content .calendar-event-detail .calendar-event-title {
                font-weight: 600;
                display: block;
            }

            #layout-right-sidebar .submenu-content .calendar-event-detail i {
                margin-right: 4px;
                margin-top: 2px;
                display: block;
            }

            #layout-right-sidebar .submenu-content .calendar-event-detail .material-icons {
                font-size: 17px;
                display: inline-block;
                vertical-align: middle;
            }

            #layout-right-sidebar .submenu-content .calendar-event-detail .calendar-event-location {
                top: -6px;
                left: -4px;
                display: inline-block;
                vertical-align: middle;
            }

        #layout-right-sidebar .submenu-content .order-settings {
            background-color: #e5f0f8;
            color: #205493;
            text-align: center;
            width: 80px;
            height: 74px;
        }

            #layout-right-sidebar .submenu-content .order-settings:hover {
                box-shadow: 0 0 8px #aeb0b5;
            }

            #layout-right-sidebar .submenu-content .order-settings i {
                font-size: 30px;
            }

            #layout-right-sidebar .submenu-content .order-settings span {
                color: #205493;
                font-weight: 600;
            }

        #layout-right-sidebar .submenu-content .sales-settings {
            background-color: #d5e6d8;
            color: #2e8540;
            text-align: center;
            width: 80px;
            height: 74px;
        }

            #layout-right-sidebar .submenu-content .sales-settings:hover {
                box-shadow: 0 0 8px #aeb0b5;
            }

            #layout-right-sidebar .submenu-content .sales-settings i {
                font-size: 30px;
            }

            #layout-right-sidebar .submenu-content .sales-settings span {
                color: #2e8540;
                font-weight: 600;
            }

        #layout-right-sidebar .submenu-content .shipment-settings {
            background-color: #fef0d2;
            color: #e3a51b;
            text-align: center;
            width: 80px;
            height: 74px;
        }

            #layout-right-sidebar .submenu-content .shipment-settings:hover {
                box-shadow: 0 0 8px #aeb0b5;
            }

            #layout-right-sidebar .submenu-content .shipment-settings i {
                font-size: 30px;
            }

            #layout-right-sidebar .submenu-content .shipment-settings span {
                color: #e3a51b;
                font-weight: 600;
            }

        #layout-right-sidebar .submenu-content .visitors-settings {
            background-color: #fce8eb;
            color: #cd2026;
            text-align: center;
            width: 80px;
            height: 74px;
        }

            #layout-right-sidebar .submenu-content .visitors-settings:hover {
                box-shadow: 0 0 8px #aeb0b5;
            }

            #layout-right-sidebar .submenu-content .visitors-settings i {
                font-size: 30px;
            }

            #layout-right-sidebar .submenu-content .visitors-settings span {
                color: #cd2026;
                font-weight: 600;
            }

        #layout-right-sidebar .submenu-content .history-settings {
            background-color: #dbd4e9;
            color: #4c2c92;
            text-align: center;
            width: 80px;
            height: 74px;
        }

            #layout-right-sidebar .submenu-content .history-settings:hover {
                box-shadow: 0 0 8px #aeb0b5;
            }

            #layout-right-sidebar .submenu-content .history-settings i {
                font-size: 30px;
            }

            #layout-right-sidebar .submenu-content .history-settings span {
                color: #4c2c92;
                font-weight: 600;
            }

        #layout-right-sidebar .submenu-content .leads-settings {
            background-color: #dedfe1;
            color: #5b616b;
            text-align: center;
            width: 80px;
            height: 74px;
        }

            #layout-right-sidebar .submenu-content .leads-settings:hover {
                box-shadow: 0 0 8px #aeb0b5;
            }

            #layout-right-sidebar .submenu-content .leads-settings i {
                font-size: 30px;
            }

            #layout-right-sidebar .submenu-content .leads-settings span {
                color: #5b616b;
                font-weight: 600;
            }

@media screen and (max-width: 1024px) {
    #layout-right-sidebar {
        top: 105px;
    }
}

.layout-footer {
    background-color: #ffffff;
    padding: 20px 25px;
}

.layout-footer {
    position: relative;
    bottom: -80px;
    height: 200px; /*tamaño de footer*/
}

    .layout-footer h3 {
        font-size: 24px;
        text-align: left;
        color: #ffffff;
        margin: 0;
    }

    .layout-footer p {
        color: #9faebf;
        font-size: 14px;
        display: block;
        opacity: 0.9;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .layout-footer a {
        color: #9faebf;
    }

        .layout-footer a i {
            padding: 0;
            font-size: 24px;
            line-height: 24px;
            text-align: right;
            margin-left: 30px;
        }

        .layout-footer a:hover {
            color: #ffffff;
        }

    .layout-footer .footer-right {
        padding-top: 25px;
        text-align: right;
    }

.logo-footer {
    width: 162px;
}

.logo-more-text {
    position: relative;
    left: 29px;
    bottom: -13px;
}



.ui-grid-header-cell .ui-grid-col-2 {
    min-width: 200px;
    max-width: 300px;
}

nav {
    position: relative;
    /*left: 55px;*/
    top: -10px;
}

    nav a {
        text-decoration: none;
        color: inherit;
        font-size: 12px;
    }

    nav li {
        display: inline-block;
        width: auto;
        height: 30px;
        padding: 4px 10px;
        background-color: #fff;
        border: 1px solid #fff;
        text-align: center;
        color: #777;
        position: relative;
    }

        nav li:hover {
            background-color: #007BC2;
            color: #fff;
        }

            nav li:hover a {
                color: #fff !important; /*color text nav with hover*/
            }

        nav li > ul {
            display: none;
        }

        nav li:hover > ul {
            display: block;
            position: absolute;
            top: 30px;
            left: 0px;
        }

#sup {
    position: relative;
    left: 80px;
    top: -10px;
}

#nav-sup a {
    text-decoration: none;
    color: inherit;
    font-size: 14px;
}

#nav-sup li {
    display: inline-block;
    width: auto;
    height: 30px;
    padding: 4px 10px;
    background-color: #fff;
    border: 1px solid #fff;
    text-align: center;
    color: #605E5E;
    position: relative;
}

    #nav-sup li > ul {
        display: none;
    }

#nav-sup ul li .Buscar {
    width: 160px;
}

.content-body {
    vertical-align: middle;
    position: relative;
    text-align: left;
    top: 50px;
    left: -50px;
}

    .content-body h3 {
        color: #0079C1;
        font-size: 14px;
        line-height: 100%;
        font-weight: bold;
        font-style: normal;
        font: Arial;
        box-sizing: border-box;
        box-sizing: border-box;
    }

/*#nav-sup li:hover > ul {
        display: block;
        position: absolute;
        top: 30px;
        left: 0px;
    }*/


/*COMPONENT*/




/*START  STYLE for place of change carro */

.right {
    float: right;
}


.tot span {
    cursor: default;
    color: black;
    font-weight: bold;
}

.tot label {
    cursor: default;
    color: black;
}

.ContTotalesBlock {
    width: 230px;
    float: right;
    margin: 20px 0 0 0;
    padding: 0;
}

    .ContTotalesBlock .contTotales .tot {
        width: 100%;
        float: left;
        padding: 0;
        margin: 0;
        text-align: center;
    }

        .ContTotalesBlock .contTotales .tot label {
            width: 80px;
            float: left;
            padding: 0;
            margin: 0;
            font-size: 12px;
            color: #535353;
            font-weight: bold;
            text-align: left;
        }

    .ContTotalesBlock .contTotales {
        width: 100%;
        padding: 25px 35px 30px 35px;
        background-color: #E7E7E7;
        float: left;
    }



.btn {
    text-align: center;
    text-align-last: center;
    width: 115px;
    height: 45px;
}

.btn-group .btns {
    position: relative;
    top: -8px;
}

.table-carro-compra {
    width: inherit;
}

    .table-carro-compra th { /*text of tablehead*/
        font-size: 11px;
        font-family: Helvetica, sans-serif;
    }

/*END STYLE for place of change carro */

.cent-table {
    align-content: center;
}

.color1 {
    color: #0079C1 !important;
}

/*table of information company*/

.tl {
    font-family: helvetica, sans-serif;
    color: #808285;
    font-weight: bold;
    font-size: 13px;
    width: 40%;
}

.bod {
    font-family: helvetica, sans-serif;
    line-height: 100%;
    color: #808285;
    font-size: 13px;
}

.trs { /*linea cort*/
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #808285;
    height: 30px;
}

.trs-sb {
    height: 30px;
}

.trs-top { /*linea cort top*/
    border-top-width: 1px;
    border-top-style: dashed;
    border-top-color: #808285;
    height: 30px;
}

td a {
    padding: 5px 0px 0px 22px;
}

td span {
    margin-left: 0px;
}

a.fa.fa-edit {
    padding-right: 7px;
}

.aling-right .as {
    display: block;
    float: right;
}

@media screen and (max-width: 500px) {
    .aling-right .as {
        display: block;
        float: left;
    }

    td .as {
        padding: 5px 0px 2px 0px;
    }
}





/*Style ver-detalle of carro-compra*/
.trsf { /*linea complete*/
    border-bottom-width: 1px;
    border-bottom-style: outset;
    border-bottom-color: #808285;
    height: 30px;
}

.trsfd {
    border-bottom-width: 1px;
    border-bottom-style: outset;
    border-bottom-color: #808285;
    height: 10px;
    width: 100%;
}

.brd-left {
    border-left: 1px solid #808285 !important;
}

.brd-right {
    border-right: 1px solid #808285 !important;
}

.brd-top {
    border-top: 1px solid #808285 !important;
}

.brd-bottom {
    border-bottom: 1px solid #808285 !important;
}



/*anular carro*/
td.tl.por.fontb {
    position: relative;
    left: -57px;
}

td.fontbdrop {
    width: 191px;
    position: relative;
    left: -80px
}

td.fontbdropb {
    position: relative;
    left: -89px;
}

.btna {
    position: relative;
    left: 70px;
}

td.tl.font-11 {
    font-size: 11px;
    font-family: Helvetica, sans-serif;
    padding-left: 13px;
    text-align: center;
}

td.tl.fontb {
    font-size: 13.2px;
    font-family: Helvetica, sans-serif;
    color: #4f4f4f;
    padding-left: 13px;
    text-align: center;
    position: relative;
    left: -10px;
}


h6 {
    font-size: 9px;
}

/*PASOS_PAGO IMG*/
.contenedor {
    position: relative;
    display: inline-block;
    width: 100%;
}

.center {
    position: absolute;
    top: 45%;
    left: 12%;
    color: white;
    transform: translate(-50%, -50%);
}

.center1 {
    position: absolute;
    top: 45%;
    left: 36%;
    color: white;
    transform: translate(-50%, -50%);
}

.center2 {
    position: absolute;
    top: 45%;
    left: 58%;
    color: white;
    transform: translate(-50%, -50%);
}

.center3 {
    position: absolute;
    top: 45%;
    left: 83%;
    color: white;
    transform: translate(-50%, -50%);
}

.img_paso {
    width: 155px;
}

.serv {
    position: relative;
    top: 10px;
}

.sele {
    position: relative;
    top: -8px;
}



/*detalle del pago por sucursal*/

td.leftdetail {
    background-color: #F1F1F1;
    width: 45%;
    padding-left: 5%;
    padding-right: 5%;
    display: block;
    float: left;
    height: 180px;
}

ui-gg-6. {
    width: 100%;
}


/*detalle del pago por Central*/

.btn-padding-right {
    display: block;
    float: right
}

/*boton agregar*/




/*medio-pago*/




ul, li {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.vineta {
    text-align: center;
    list-style-type: none;
}

.img-pay-disabled {
    width: 190px;
    height: 76px;
}

.img-pay {
    width: 190px;
    height: 76px;
}

    .img-pay:hover {
        border: 2px solid #0079c1;
    }

    .img-pay:focus {
        outline: none;
        border: 2px solid #0079c1;
    }

.pad-phone-bnk {
    padding-left: 30%;
    padding-bottom: 5%;
}

.pad-phone-bnk2 {
    padding-right: 30%;
    padding-bottom: 5%;
}

@media screen and (max-width: 500px) {

    .pad-phone-bnk {
        padding-left: 15%;
        padding-bottom: 5%;
    }

    .pad-phone-bnk2 {
        padding-right: 15%;
        padding-bottom: 5%;
    }


    .img-pay {
        width: 110px;
        height: 48px;
    }

        .img-pay:hover {
            border: 2px solid #0079c1;
        }

        .img-pay:focus {
            outline: none;
            border: 2px solid #0079c1;
        }
}
/*ESTILOS PARA REGISTRO*/
.box-style-registry {
    width: 50%;
    /*width: 49%;*/
    height: 30px;
    display: inline-block;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    float: left;
    text-align: center !important;
    color: #FFF !important;
}

.box-style-confirmation {
    width: 50%;
    height: 30px;
    display: inline-block;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    float: left;
    text-align: center !important;
    color: #FFF !important;
}

.box-style-registry::after {
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
}

.box-style1::after {
    content: "";
    border-color: transparent transparent transparent #0079C1;
}

.inline {
    display: inline-block;
}

.align-center {
    text-align: center;
}

.container-submodules-registry {
    background-color: #E7E7E7;
    padding: 10px 26px 10px 22px;
    margin: 0px !important;
}

.margin-bottom2 {
    margin-bottom: 4% !important;
}

.input-disabled {
    opacity: .35;
    border: 1px solid #808285 !important;
}

.input-disabled-radio {
    opacity: .35;
}

.tipografia4 {
    font-family: helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400;
    line-height: 100% !important;
    color: #808285;
}

.tipografia3 {
    font-family: helvetica, sans-serif !important;
    font-size: 16px !important;
    font-weight: bold;
    line-height: 100% !important;
    color: #0079C1;
}
/*Region Pagina Completa*/
@media (min-width: 992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }

    .ui-gg-6 {
        width: 100%;
        float: left;
    }

    .container {
        width: 1000px;
    }
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

td.rightdetail {
    background-color: #F1F1F1;
    width: 45%;
    padding-left: 5%;
    padding-right: 5%;
    display: block;
    float: right;
    height: 180px;
}
/* Full-width inputs */
/*input[type=text], input[type=password] {*/
/*width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;*/
/*padding: 0 5px;
   
    float: left;
}*/
.p-table-paydata {
    width: 100%;
    padding-top: 10px;
}

/*.p-table-central {
    width: 100%;
    height: 100%;
    background: #f1f1f1;
    padding-left: 5%;
}*/

.box_transferencia {
    width: 100%;
    position: relative;
    padding-left: 10px;
}

.box_renewaccess {
    width: 100%;
    position: relative;
    letter-spacing: 2px;
    font-size: large;
}

.cont-buscar-sucursal {
    width: 100%;
}

td.cont-buscar-sucursal {
    padding-bottom: 5%;
}

td.cargar-archivo {
    padding-bottom: 5%;
}

.p-calendar-input {
    width: 75%;
}

.input.width-login {
    width: 144px;
    margin: 0 0 12px 0;
}




/* Set a style for all buttons */

button.bstn-login.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    margin-top: 10px;
    box-sizing: border-box;
    text-align: center;
    float: left;
    background-color: #0073B6;
    background-image: none;
    border: none;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    line-height: 25px;
    border-radius: 5px;
    box-shadow: inset 0px 25px 0px -12.5px #3093CD;
    outline: 0;
}

/*titl-case login*/

.tipografia1 {
    font-family: helvetica, sans-serif;
    font-size: 14px;
    line-height: 100%;
}

.tipografia2 {
    font-family: helvetica, sans-serif !important;
    font-size: 12px !important;
    line-height: 100% !important;
    color: #808285;
}

.mrg {
    margin-top: 40px;
}

span.right-login {
    display: block;
    float: right;
}

span.left-login {
    display: block;
    float: left;
}

/* Add a hover effect for buttons */
button:hover {
    opacity: 0.8;
}

/* Add padding to containers */
.container-login {
    /*padding: 16px;*/
    padding-left: 35%;
    padding-right: 40%;
    margin-bottom: 12px;
    display: inline-block;
    background-color: white;
}

/* Change styles for span and cancel button on extra small screens */
/*@media screen and (max-width: 300px) {

}*/

/* END login*/


/*pintar tablas intercalables.*/

.tablePaint:nth-child(odd) {
    background-color: white;
}

.tablePaint:nth-child(even) {
    background-color: #fbfbfb;
}

/*Estilos para workflow*/

@media (max-width:769px) {
    .box-style {
        width: 95%;
        height: 30px;
        display: inline-block;
        margin: 0;
        padding: 10px;
        box-sizing: border-box;
        float: left;
        text-align: center !important;
        color: #FFF !important;
    }

        .box-style::after {
            position: absolute;
            left: 100%;
            top: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 15px 15px;
        }

    .box-style1::after {
        content: "";
        border-color: transparent transparent transparent #007ac1;
    }
}

@media (min-width: 569px) {
    .box-style {
        width: 24%;
        height: 30px;
        display: inline-block;
        margin: 0;
        padding: 10px;
        box-sizing: border-box;
        float: left;
        text-align: center !important;
        color: #FFF !important;
    }

    .box-style-services {
        margin-right: 1px;
        width: 24%;
        height: 30px;
        display: inline-block;
        margin: 0;
        padding: 10px;
        box-sizing: border-box;
        float: left;
        text-align: center !important;
        color: #FFF !important;
    }

    .box-style::after {
        position: absolute;
        left: 100%;
        top: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 15px 0 15px 15px;
    }

    .box-style1::after {
        content: "";
        border-color: transparent transparent transparent #007ac1;
    }
}


.margin-right-1px {
    margin-right: 1px;
}

.tipografia2 {
    font-family: helvetica, sans-serif !important;
    font-size: 12px !important;
    line-height: 100% !important;
}

.active {
    position: relative;
}

.bg-ccc {
    background-color: #CCC !important;
}

.bg-color1 {
    background-color: #0079C1 !important;
}


/*Margin-table-blue*/

.border-blu-table {
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: #0079C1;
}

.border-in-padding {
    padding-left: 1%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-right: 1%;
}


.sidebar ul li.subSidebar a span.num {
    background-image: url(../img/circulo_celeste.png);
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    color: #FFF;
    float: right;
    width: 16px;
    text-align: center;
    margin: -2px 0 0 10px;
    padding: 0;
    height: 16px;
}


.wdt-calendar {
    width: 90%;
}

/*transshipment-certificate*/

.res label {
    font-family: Arial, sans-serif;
    font-size: 11px;
}


.pointer {
    cursor: pointer;
}


.tipografia4 {
    font-family: helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400;
    line-height: 100% !important;
    color: #808285;
}

.tipografia3 {
    font-family: helvetica, sans-serif !important;
    font-size: 16px !important;
    font-weight: bold;
    line-height: 100% !important;
    color: #0079C1;
}

.back-num {
    border-radius: 100%;
    background-color: #0079C1;
}

.fontSize {
    font-size: 13px;
    margin: 1%;
    color: white;

}


.home-info {
    text-align: left;
    background-color: rgba(251, 189, 48, 0.45);
}


.ayuda p {
    padding: 2px 0px 0px 5px;
    border-bottom: 1px solid;
    /* color: #605E5E; */
    font-size: 14px;
}

.header-tit {
    background-color: #007BC2;
    color: #fff;
    padding: 6px;
    margin-bottom: 10px;
    font-weight: bold;
    margin-right: 1%;
}

.ul-user {
    padding-left: 0px;
    list-style-type: none;
    margin-right: 1%;
}

    .ul-user li {
        border-bottom: 1px solid;
        padding: 5px 0px;
        color: #605E5E;
        padding-bottom: 25px;
    }

        .ul-user li a {
            color: #605E5E;
            padding-top: 8px;
            display: block;
        }

        .ul-user li img {
            padding-right: 10px;
            float: left;
        }

.ul-users {
    padding-left: 0px;
    list-style-type: none;
    margin-right: 1%;
}

    .ul-users li {
        border-bottom: 1px solid;
        padding: 5px 0px;
        color: #605E5E;
        padding-bottom: 25px;
        margin-right: 1%;
    }

        .ul-users li a {
            color: #605E5E;
            padding-top: 8px;
            display: block;
        }

        .ul-users li img {
            padding-right: 10px;
            float: left;
        }


.tit-principal {
    border-bottom: 2px solid #007bc2;
    font-size: 1.3em;
    color: #605E5E;
    padding-top: 3%;
    padding-bottom: 1%;
}

.tableBl {
    padding-bottom: 21%;
}


.ot-gral {
    text-align: center;
    font-size: 1.2em;
    padding-bottom: 20%;
    padding-top: 4%;
}

    .ot-gral .mensaje1 {
        color: #007bc2;
        font-weight: bold;
    }

    .ot-gral .mensaje2 {
        color: #007bc2;
    }

.gral-sli {
    width: 49%;
    background-color: #eeeeee;
    padding: 10px;
    padding-bottom: 0px;
    margin-right: 2%;
}

.gral-sld {
    width: 49%;
    background-color: #eeeeee;
    padding: 10px;
    padding-bottom: 0px;
}

.tit-sl {
    background-color: #007bc2;
    text-align: center;
    color: #fff;
    font-size: 15px;
    padding: 10px;
    margin: -10px;
    margin-bottom: 10px;
}

.texto-sl h5 {
    font-weight: bold !important;
    color: #605E5E !important;
    font-size: 14px !important;
}

.tit-peq-sl {
    color: #605E5E;
}


.padding-top {
    padding-top: 5%;
}

.inter li {
    margin-left: 5%;
}

.inter {
    line-height: 0.9em;
}

.white-line {
    background-color: white;
    height: 20px;
    width: 107%;
    margin-left: -4% !important;
}

.mrg-top1 {
    margin-top: 2%;
    height: 72px;
    padding-left: 3%;
}

.gral-cci {
    width: 49%;
    padding: 10px;
    padding-bottom: 0px;
    margin-right: 2%;
}

.gral-ccd {
    width: 49%;
    padding: 10px;
    padding-bottom: 0px;
}


/*validacion input*/

/*.ng-valid {
border:thin solid #090;
}
.ng-invalid {
border: thin solid #990000;
}*/


/*BRANCH OFFICE HOME*/
.tit-suc {
    color: #007bc2;
    font-weight: bold;
    border-bottom: 2px solid rgba(160, 160, 159, 0.76);
    width: 150px;
}

.grl-suc {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-size: 12px !important;
}

.containnerBranchOffice {
    margin-left: 25%;
}

.containnerBranchOfficeMobile {
    margin-left: 5%;
}

.hor-suc {
    float: left;
    padding-top: 8px;
}

.ate-suc {
    float: left;
    margin-right: 10px;
}

/*PAPEWORK*/

.containerPaperworkWeb {
    padding-left: 20%;
    padding-right: 20%;
}

.containerPaperworkPhone {
    padding-left: 5%;
    padding-right: 5%;
}

.txt-chmt {
    font-size: 15.6px;
}


/*ABOUT US*/
.nav-stacked {
    font-size: 1.2em;
}

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-stacked li {
    float: none;
}

.nav li {
    position: relative;
    display: block;
}

.nav-stacked li + li {
    margin-top: 2px;
    margin-left: 0;
}

.nav-pills li + li {
    margin-left: 2px;
}


.nav-pills li.active a, .nav-pills li.active a:focus, .nav-pills li.active a:hover {
    color: #007bc2;
    background-color: #f0f0f0;
}


.nav-stacked li {
    float: none;
}

.nav li {
    position: relative;
    display: block;
}

.nav-pills li a {
    border-radius: 4px;
}

.nav li a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

a {
    color: #605E5E;
    text-decoration: none;
}

.nav-pills li.active a, .nav-pills li.active a:focus, .nav-pills li.active a:hover {
    color: #605E5E;
    background-color: #e4e8eb;
}

.font-p {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-size: 12px !important;
    line-height: 1.42857143 !important;
    color: #333 !important;
}

.margen-grl {
    /*padding-top: 20px;*/
    color: #605E5E;
}

.titleCustomer {
    font-size: 17px;
    color: #007bc2;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-style: italic;
}


.clientes img {
    margin-right: 10px;
}

img {
    vertical-align: middle;
}

.font-14 {
    font-size: 14px;
    color: #605E5E;
}

/*PAPERWORK IMPORT*/
.grl-chmt {
    background-color: #f0f0f0;
    padding: 30px;
    font-size: 1.2em;
    color: #605E5E;
}

.tit-chmt {
    color: #007bc2;
}

.pdt0 {
    padding-top: 0px !important;
    padding-left: 0px !important;
}

.grl-der-chmt a {
    word-break: break-word;
    float: right;
    width: 110px;
}

.grl-der-chmt img {
    float: left;
}

.color-exp-chmt {
    clear: both;
    font-size: 0.9em;
    padding: 10px;
}

.grl-der-chmt ul {
    list-style-type: none;
}

/*Styles Help and Information*/
.selectedMenu {
    background-color: #e7e7e7;
}

.padd {
    position: relative;
    display: block;
    padding: 10px 15px 10px 0;
}

.paySubmenu {
    padding-right: 0px !important;
    padding-left: 40px !important;
    background-color: #e7e7e7;
}

.titleSubMenu {
    color: #FFFFFF;
    background-color: #007bc2;
    padding: 10px;
    padding-left: 40px;
    font-size: 1em;
}

.freqQuestionsBody {
    background-color: #e7e7e7;
    padding: 20px 15px 0px;
}

.fontgrl {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-size: 12px !important;
}

.padl {
    margin-left: 6%;
}

.h2, h2 {
    font-size: 30px;
}

.document table tr th {
    width: auto;
    height: 40px;
    background: #0078c0;
    color: #fff;
    padding-left: 20px;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    font-size: 14px;
}

.document table tr td {
    width: auto;
    height: auto;
    padding-left: 20px !important;
    padding-right: 20px !important;
    border: 1px solid #CCC;
    border-top: 0;
    padding: 10px 0;
}

.stylePdf {
    width: 24px;
    height: 29px;
    float: left;
}

.styleNews {
    width: 86px;
    height: 71px;
}


.inp::-webkit-input-placeholder {
    text-align: center;
    line-height: 100px;
}

.pdl {
    padding-left: 3%;
    padding-right: 3%;
}

/* Tooltip icon container*/
.tooltipicon {
    position: relative;
    font-size: large !important;
}

/* Tooltip icon text */
.tooltipicon .tooltipicontext {
    visibility: hidden;
    width: 250px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip icon text - see examples below! */
    position: absolute;
    z-index: 1;
    font-size: medium;
}

/* Show the tooltip text when you mouse over the tooltip icon container */
.tooltipicon:hover .tooltipicontext {
    visibility: visible;
}

.code-input-container {
    display: flex;
    gap: 10px; /* Espacio de 10px entre cada input */
}

.code-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.code-input:focus {
    border-color: #007bff;
    outline: none;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
