@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400italic,600italic,400,300,600,700);

/*
  ======================================
  GENERAL
  ======================================
*/

html, body {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background: #fff;
    overflow-x: hidden !important;
    min-height: 100%;
    color: #444749;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

ul li {
    list-style: none;
}

/*Hide elements by display none only*/
.hide {
    display: none !important;
}
/* Remove borders */
.no-border {
    border: 0px !important;
}
/* Remove padding */
.no-padding {
    padding: 0px !important;
}
/* Remove margins */
.no-margin {
    margin: 0px !important;
}
/* Remove box shadow */
.no-shadow {
    box-shadow: none !important;
}

body.fixed > .header,
body.fixed .left-side,
body.fixed .navbar {
    position: fixed;
}

body.fixed > .header {
    top: 0sidebar-menu right: 0;
    left: 0;
}

body.fixed .navbar {
    left: 0;
    right: 0;
}

body.fixed {
    margin-top: 60px;
}

/*
  ======================================
  HEADER
  ======================================
*/

body > .header {
    position: relative;
    max-height: 100px;
    z-index: 100000;
}

    body > .header .navbar {
        height: 60px;
        margin-bottom: 0;
        background: #8dc63f;
    }

        body > .header .navbar .sidebar-toggle {
            float: left;
            width: 69px;
            height: 60px;
            display: block;
            background: #4d5053 url(../images/menu.png) center no-repeat;
            margin: 0px;
        }

            body > .header .navbar .sidebar-toggle.active_desac {
                float: left;
                width: 69px;
                height: 60px;
                display: block;
                background: #7dad3a url(../images/menu_desac.png) center no-repeat;
                margin: 0px;
            }

            body > .header .navbar .sidebar-toggle:hover .icon-bar {
                color: #1abc9c;
            }

            body > .header .navbar .sidebar-toggle .icon-bar {
                display: block;
                width: 22px;
                height: 2px;
                border-radius: 4px;
                -webkit-border-radius: 4px;
                -moz-border-radius: 4px;
                -ms-border-radius: 4px;
                -o-border-radius: 4px;
            }

                body > .header .navbar .sidebar-toggle .icon-bar + .icon-bar {
                    margin-top: 4px;
                }

        body > .header .navbar .nav > li.user > a {
            font-weight: bold;
        }

            body > .header .navbar .nav > li.user > a > .fa,
            body > .header .navbar .nav > li.user > a > .glyphicon,
            body > .header .navbar .nav > li.user > a > .ion {
                margin-right: 5px;
            }

        body > .header .navbar .nav > li > a > .label {
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
            position: absolute;
            top: 7px;
            right: 5px;
            font-size: 10px;
            font-weight: normal;
            width: 15px;
            height: 15px;
            line-height: 1.0em;
            text-align: center;
            padding: 2px;
        }

        body > .header .navbar .nav > li > a:hover > .label {
            /*top: 3px;*/
        }

    body > .header .logo {
        float: left;
        font-size: 0px;
        width: 130px;
        height: 60px;
        display: block;
        background: url('../images/logo.png') no-repeat center;
        margin-left: 23px;
        margin-top: -10px;
    }

        body > .header .logo .icon {
            margin-right: 10px;
        }

.right-side > .content-header {
    position: relative;
    padding: 15px 15px 10px 20px;
}

    .right-side > .content-header > h1 {
        margin: 0;
        font-size: 24px;
    }

        .right-side > .content-header > h1 > small {
            font-size: 15px;
            display: inline-block;
            padding-left: 4px;
            font-weight: 300;
        }

    .right-side > .content-header > .breadcrumb {
        float: right;
        background: transparent;
        margin-top: 0px;
        margin-bottom: 0;
        font-size: 12px;
        padding: 7px 5px;
        position: absolute;
        top: 15px;
        right: 10px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
    }

        .right-side > .content-header > .breadcrumb > li > a {
            color: #444;
            text-decoration: none;
        }

            .right-side > .content-header > .breadcrumb > li > a > .fa,
            .right-side > .content-header > .breadcrumb > li > a > .glyphicon,
            .right-side > .content-header > .breadcrumb > li > a > .ion {
                margin-right: 5px;
            }

        .right-side > .content-header > .breadcrumb > li + li:before {
            content: '>\00a0';
        }

@media screen and (max-width: 767px) {
    .right-side > .content-header > .breadcrumb {
        position: relative;
        margin-top: 5px;
        top: 0;
        right: 0;
        float: none;
        background: #efefef;
    }
}

@media (max-width: 767px) {
    .navbar .navbar-nav > li {
        float: left;
    }

    .navbar-nav {
        margin: 0;
        float: left;
    }

        .navbar-nav > li > a {
            padding-top: 15px;
            padding-bottom: 15px;
            line-height: 20px;
        }

    .navbar .navbar-right {
        float: right;
    }
}

.navbar-nav > li > .dropdown-menu {
}

.navbar-login .text-center > img {
    margin-top: 20px;
    margin-left: 10px;
}

@media screen and (max-width: 560px) {
    body > .header {
        position: relative;
    }

        body > .header .logo,
        body > .header .navbar {
            width: 100%;
            float: none;
            position: relative !important;
        }

        body > .header .navbar {
            margin: 0;
        }

    body.fixed > .header {
        position: fixed;
    }

    body.fixed > .wrapper,
    body.fixed .sidebar-offcanvas {
        margin-top: 100px !important;
    }
}

.sidebar {
    margin-bottom: 5px;
}

    .sidebar .sidebar-form input:focus {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-color: transparent !important;
    }

    .sidebar .sidebar-menu {
        list-style: none;
        margin: 0 0 10px 0;
        padding: 0;
    }

        .sidebar .sidebar-menu > li {
            margin: 0;
            padding: 0;
        }

            .sidebar .sidebar-menu > li > a {
                padding: 12px 5px 12px 15px;
                display: block;
            }

                .sidebar .sidebar-menu > li > a > .fa,
                .sidebar .sidebar-menu > li > a > .glyphicon,
                .sidebar .sidebar-menu > li > a > .ion {
                    width: 20px;
                    display: none;
                }

        .sidebar .sidebar-menu .treeview-menu {
            display: none;
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .sidebar .sidebar-menu .treeview-menu > li {
                margin: 0;
            }

                .sidebar .sidebar-menu .treeview-menu > li > a {
                    padding: 10px 5px 10px 15px;
                    display: block;
                    font-size: 14px;
                    margin: 0px 0px;
                    color: #c0c0c0;
                    background: url(../images/iconos/item_sub_sec.png) left center no-repeat;
                }

                    .sidebar .sidebar-menu .treeview-menu > li > a:hover {
                        background: url(../images/iconos/item_sub_sec_act.png) left center no-repeat;
                        background-color: #444749;
                        color: #8ac03f;
                    }

                    .sidebar .sidebar-menu .treeview-menu > li > a.active {
                        padding: 10px 5px 10px 15px;
                        display: block;
                        font-size: 14px;
                        margin: 0px 0px;
                        background: url(../images/iconos/item_sub_sec_act.png) left center no-repeat;
                        background-color: #444749;
                        color: #8ac03f;
                    }

                    .sidebar .sidebar-menu .treeview-menu > li > a > .fa,
                    .sidebar .sidebar-menu .treeview-menu > li > a > .glyphicon,
                    .sidebar .sidebar-menu .treeview-menu > li > a > .ion {
                        width: 20px;
                    }

/*
  ======================================
  Color Pages
  ======================================
*/
/* CL DEFAULT */

.cl-default .navbar {
    background-color: #fff;
}

    .cl-default .navbar .nav > li > a:hover,
    .cl-default .navbar .nav > li > a:active,
    .cl-default .navbar .nav > li > a:focus,
    .cl-default .navbar .nav .open > a,
    .cl-default .navbar .nav .open > a:hover,
    .cl-default .navbar .nav .open > a:focus {
    }

    .cl-default .navbar .navbar-right > .nav {
    }

    .cl-default .navbar .sidebar-toggle .icon-bar {
        background: #000;
    }

    .cl-default .navbar .sidebar-toggle:hover .icon-bar {
        background: #f6f6f6 !important;
    }
/* cl-default logo */
.cl-default .logo {
    color: #fff;
}

    .cl-default .logo > a {
        color: #fff;
        text-decoration: none !important;
    }

    .cl-default .logo:hover {
    }
/* cl-default content header */
.cl-default .right-side > .content-header {
    background: #fbfbfb;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
/* cl-default user panel */
.cl-default .user-panel > .image > img {
    border: 1px solid #dfdfdf;
}

.cl-default .user-panel > .info,
.cl-default .user-panel > .info > a {
    color: #fff;
}
/* cl-default sidebar */
.cl-default .sidebar {
}

    .cl-default .sidebar > .sidebar-menu > li {
    }

        .cl-default .sidebar > .sidebar-menu > li:first-of-type {
        }

            .cl-default .sidebar > .sidebar-menu > li:first-of-type > a {
            }

        .cl-default .sidebar > .sidebar-menu > li > a {
            margin-right: 1px;
        }

        .cl-default .sidebar > .sidebar-menu > li:hover {
            background: #444749;
        }

            .cl-default .sidebar > .sidebar-menu > li:hover > a > .fa {
                display: block;
            }

        .cl-default .sidebar > .sidebar-menu > li > a:hover {
            color: #fff;
            border-left: 4px solid #8ac03f;
        }

        .cl-default .sidebar > .sidebar-menu > li.active > a {
            color: #fff;
            font-weight: 300;
            background: #444749;
            border-left: 4px solid #8ac03f;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
        }

        .cl-default .sidebar > .sidebar-menu > li > .treeview-menu {
            background: #444749;
            border-left: 4px solid #8ac03f;
        }

.cl-default .left-side {
    background: #4d5053;
    -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
    box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);
}

.cl-default .sidebar a {
    color: #fff;
    font-weight: 300;
}

    .cl-default .sidebar a:hover {
        text-decoration: none;
    }

.cl-default .treeview-menu > li > a {
    color: #ecf0f1;
}

    .cl-default .treeview-menu > li.active > a,
    .cl-default .treeview-menu > li > a:hover {
        color: #fff;
    }

.treeview {
    background: url('../images/iconos/icon_menu_lat.png') no-repeat 201px center;
}

.cl-default .sidebar > .sidebar-menu > li > .active {
}

.treeview.active a:hover > .fa {
    display: block !important;
}

.treeview.active a > .fa {
    display: block !important;
    background: none;
}

/*
  ======================================
  LAYOUT
  ======================================
*/

/* Header */
body > .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}
/*
  ======================================
  CONTENT
  ======================================
*/

.content {
    overflow: hidden;
}

    .content h1 {
        font-size: 26px;
        font-weight: 300;
        margin-bottom: 40px;
        margin-top: 40px;
    }

.colum-page {
    z-index: 10;
    left: 0;
    top: 60px;
    background: #fff;
    width: 100%;
    position: fixed;
    padding-top: 30px;
    /*margin-left: 20px;*/
    -webkit-box-shadow: 0 4px 6px -3px #eeeeee;
    box-shadow: 0 4px 6px -3px #eeeeee;
}

    .colum-page > div {
        margin-left: 20px
    }

.content h2 {
    font-size: 26px;
    font-weight: 200;
    color: #444749;
}

.content p.seccion {
    font-size: 20px;
    font-weight: 300;
    height: 24px;
    color: #444749;
    border-left: 2px solid #8dc63f;
    padding: 0px;
    margin: 0px;
    padding-left: 11px;
}
 /*
  ======================================
  BLANK PAGE
  ======================================
*/

.blank-page {
    min-height: 700px;
}

/*
  ======================================
  FOOTER
  ======================================
*/

#footer {
    /*position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;*/ /* Footer height */
    height: 59px !important;
    padding-top: 5px;
    position: fixed;
    padding-bottom: 0;
}

footer .item_menu_footer > div {
    display: block;
}

footer > .container .logo-gomedisys {
    font-size: 0px;
    width: 130px;
    display: inline-block;
    background: url('../images/logo_footer.png') no-repeat center;
}

footer > .container .logo-welii {
    font-size: 0px;
    width: 75px;
    display: inline-block;
    background: url('../images/logo_welii_3.png') no-repeat center;
}

buttonIcon {
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    width: 200px;
    height: 100px;
    border-radius: 16px;
    box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.08);
}

/*#3abeb5                   RGB(58,190,181)
 #8dc63f                   RGB(138,191,55)
 #8aa2b1                   RGB(138,162,177)
 #88d8d2                   RGB(136,216,210)
 #bada86                   RGB(186,218,134)
 #c4d0d8                   RGB(196,208,216)
 #c3ebe8                   RGB(195,235,232)
 #dcecc2                   RGB(220,236,194)*/
