
/* Custom Mixins -------------------- */
/* Base Styles -------------------- */
.gu-mirror {
    position: fixed !important;
    margin: 0 !important;
    z-index: 9999 !important;
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
}

.gu-hide {
    display: none !important;
}

.gu-unselectable {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.gu-transit {
    opacity: .2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
}

.spinner {
    width: 70px;
    text-align: center;
    z-index: 10000;
    position: fixed;
    left: 50%;
    top: 50%;
}

    .spinner > div {
        width: 18px;
        height: 18px;
        background-color: white;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .spinner .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .spinner .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

html {
    height: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    height: 100%;
}

.container {
    height: 100%;
}

body.mobile .sidebar-menu {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}

    body.mobile .sidebar-menu > ul {
        height: auto !important;
        overflow: visible !important;
        -webkit-overflow-scrolling: touch !important;
    }

body.mobile .page-sidebar .sidebar-menu .menu-items li:hover a {
    color: #627182;
}

body.mobile .page-sidebar .sidebar-menu .menu-items li:hover .icon-thumbnail {
    color: #627182 !important;
}

body.mobile .page-sidebar .sidebar-menu .menu-items li.active > a,
body.mobile .page-sidebar .sidebar-menu .menu-items li.open > a {
    color: #fff;
}

body.mobile .page-sidebar .sidebar-menu .menu-items li.active > .icon-thumbnail,
body.mobile .page-sidebar .sidebar-menu .menu-items li.open > .icon-thumbnail {
    color: #fff;
}

body.mobile .drager {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

body.sidebar-visible .page-sidebar .sidebar-menu .menu-items > li .icon-thumbnail {
    border-left: none;
}

body.sidebar-visible .copyright {
    width: 100%;
    right: none;
}

body.sidebar-visible .page-sidebar .scroll-element {
    visibility: visible;
}

body.sidebar-visible .page-sidebar .menu-items .icon-thumbnail {
    -webkit-transform: translate3d(-14px, 0, 0);
    transform: translate3d(-14px, 0, 0);
    -ms-transform: translate(-14px, 0);
}

body.sidebar-visible .page-sidebar .sidebar-header .sidebar-header-controls {
    -webkit-transform: translate3d(48px, 0, 0);
    transform: translate3d(48px, 0, 0);
    -ms-transform: translate(48px, 0);
}

.page-sidebar {
    width: 250px;
    background-color: #104476;
    z-index: 1000;
    left: -180px;
    position: fixed;
    bottom: 0;
    top: 0;
    right: auto;
    overflow: hidden;
    -webkit-transition: -webkit-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
    transition: -webkit-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
    transition: transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
    transition: transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99), -webkit-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}

    .page-sidebar a,
    .page-sidebar button {
        color: white;
    }

        .page-sidebar a:hover,
        .page-sidebar button:hover,
        .page-sidebar a:active,
        .page-sidebar button:active {
            color: #000;
        }

        .page-sidebar a:visited,
        .page-sidebar button:visited,
        .page-sidebar a:focus,
        .page-sidebar button:focus {
            color: #627182;
        }

    .page-sidebar .scroll-element {
        visibility: hidden;
    }

    .page-sidebar .sidebar-header {
        display: block;
        height: 60px;
        line-height: 60px;
        background-color: #fff;
        border-bottom: 1px solid #e6e6e6;
        color: #fff;
        width: 100%;
        padding: 0 20px;
        padding-left: 30px;
        clear: both;
        z-index: 10;
        position: relative;
    }

        .page-sidebar .sidebar-header .sidebar-header-controls {
            display: inline-block;
            -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.05, 0.74, 0.27, 0.99);
            transition: -webkit-transform 0.4s cubic-bezier(0.05, 0.74, 0.27, 0.99);
            transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.27, 0.99);
            transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.27, 0.99), -webkit-transform 0.4s cubic-bezier(0.05, 0.74, 0.27, 0.99);
            -webkit-backface-visibility: hidden;
        }

        .page-sidebar .sidebar-header .sidebar-slide-toggle i {
            -webkit-transition: all 0.12s ease;
            transition: all 0.12s ease;
        }

        .page-sidebar .sidebar-header .sidebar-slide-toggle.active i {
            -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
        }

    .page-sidebar .close-sidebar {
        position: absolute;
        right: 19px;
        top: 14px;
        padding: 9px;
        z-index: 1;
    }

        .page-sidebar .close-sidebar > i {
            color: rgba(255, 255, 255, 0.57);
        }

    .page-sidebar .sidebar-overlay-slide {
        /* Side-bar Top Slider */
        width: 100%;
        height: 100%;
        background-color: #fff;
        display: block;
        z-index: 9;
        padding: 80px 20px 20px 20px;
    }

        .page-sidebar .sidebar-overlay-slide.from-top {
            top: -100%;
            position: absolute;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

            .page-sidebar .sidebar-overlay-slide.from-top.show {
                -webkit-transform: translate(0, 100%);
                transform: translate(0, 100%);
            }

    .page-sidebar .sidebar-menu {
        /* Side-bar Menu */
        height: calc(100% - 190px);
        position: relative;
        width: 100%;
    }

        .page-sidebar .sidebar-menu .menu-items li.active .icon-thumbnail {
            border-left: 5px solid #6F9AEA;
            padding-left: 23px;
        }

        .page-sidebar .sidebar-menu .outer-tab-nav-section {
            display: inline-block;
            width: 45px;
            position: absolute;
            height: 100%;
            background-color: #0aa699 !important;
        }

        .page-sidebar .sidebar-menu .menu-items {
            /* Side-bar Menut Items */
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
            overflow: auto;
            -webkit-overflow-scrolling: touch;
            height: calc(100% - 10px);
            width: 100%;
        }

            .page-sidebar .sidebar-menu .menu-items li:hover > .icon-thumbnail,
            .page-sidebar .sidebar-menu .menu-items li.open > .icon-thumbnail,
            .page-sidebar .sidebar-menu .menu-items li.active > .icon-thumbnail {
                color: #d1d1d1;
            }

            .page-sidebar .sidebar-menu .menu-items li:hover > a,
            .page-sidebar .sidebar-menu .menu-items li.open > a,
            .page-sidebar .sidebar-menu .menu-items li.active > a {
                color: #d1d1d1;
            }

            .page-sidebar .sidebar-menu .menu-items li.active > a {
                padding-left: 27px;
            }

            .page-sidebar .sidebar-menu .menu-items li > a {
                white-space: nowrap;
                width: 65%;
            }

            .page-sidebar .sidebar-menu .menu-items > li {
                display: block;
                padding: 0;
                clear: right;
            }

                .page-sidebar .sidebar-menu .menu-items > li.active {
                    border-left: 5px solid #6F9AEA;
                }

                .page-sidebar .sidebar-menu .menu-items > li:after,
                .page-sidebar .sidebar-menu .menu-items > li:before {
                    display: table;
                    content: " ";
                    clear: both;
                }

                .page-sidebar .sidebar-menu .menu-items > li > a {
                    font-family: 'Lato', sans-serif;
                    display: inline-block;
                    padding-left: 32px;
                    min-height: 50px;
                    line-height: 50px;
                    font-size: 18px;
                    clear: both;
                }

                    .page-sidebar .sidebar-menu .menu-items > li > a.open {
                        background: #313131;
                    }

                    .page-sidebar .sidebar-menu .menu-items > li > a > .arrow {
                        float: right;
                        padding-right: 30px;
                    }

                        .page-sidebar .sidebar-menu .menu-items > li > a > .arrow:before {
                            float: right;
                            display: inline;
                            font-size: 16px;
                            font-family: FontAwesome;
                            height: auto;
                            content: "\f104";
                            font-weight: 300;
                            text-shadow: none;
                            -webkit-transition: all 0.12s ease;
                            transition: all 0.12s ease;
                        }

                        .page-sidebar .sidebar-menu .menu-items > li > a > .arrow.open:before {
                            -webkit-transform: rotate(-90deg);
                            transform: rotate(-90deg);
                        }

                    .page-sidebar .sidebar-menu .menu-items > li > a > .badge {
                        margin-top: 12px;
                    }

                    .page-sidebar .sidebar-menu .menu-items > li > a > .title {
                        float: left;
                        white-space: nowrap;
                        width: 65%;
                    }

                    .page-sidebar .sidebar-menu .menu-items > li > a > .details {
                        font-size: 12px;
                        opacity: 0.4;
                        display: block;
                        clear: both;
                    }

                    .page-sidebar .sidebar-menu .menu-items > li > a.detailed > .title {
                        line-height: 28px;
                    }

                    .page-sidebar .sidebar-menu .menu-items > li > a.detailed > .details {
                        line-height: 16px;
                    }

                .page-sidebar .sidebar-menu .menu-items > li.active > ul.sub-menu {
                    display: block;
                }

                .page-sidebar .sidebar-menu .menu-items > li > .icon-thumbnail:first-letter {
                    text-transform: uppercase;
                }

                .page-sidebar .sidebar-menu .menu-items > li > ul.sub-menu > li ul.sub-menu li {
                    padding-left: 10px;
                    padding-right: 3px;
                }

                .page-sidebar .sidebar-menu .menu-items > li > ul.sub-menu > li ul.sub-menu .icon-thumbnail {
                    width: 25px;
                    height: 25px;
                    line-height: 25px;
                    font-size: 10px;
                }

                .page-sidebar .sidebar-menu .menu-items > li > ul.sub-menu li > a > .arrow:before {
                    float: right;
                    margin-top: 1px;
                    margin-right: 20px;
                    display: inline;
                    font-size: 16px;
                    font-family: FontAwesome;
                    height: auto;
                    content: "\f104";
                    font-weight: 300;
                    text-shadow: none;
                    -webkit-transition: all 0.12s ease;
                    transition: all 0.12s ease;
                }

                .page-sidebar .sidebar-menu .menu-items > li > ul.sub-menu li > a > .arrow.open:before {
                    float: right;
                    margin-top: 1px;
                    margin-right: 18px;
                    display: inline;
                    font-family: FontAwesome;
                    height: auto;
                    font-size: 16px;
                    -webkit-transform: rotate(-90deg);
                    transform: rotate(-90deg);
                    font-weight: 300;
                    text-shadow: none;
                }

                .page-sidebar .sidebar-menu .menu-items > li ul.sub-menu {
                    display: none;
                    list-style: none;
                    clear: both;
                    margin: 0 0 10px 0;
                    background-color: #fff;
                    padding: 18px 0 10px 0;
                }

                    .page-sidebar .sidebar-menu .menu-items > li ul.sub-menu > li {
                        background: none;
                        padding: 0px 20px 0 40px;
                        margin-top: 1px;
                    }

                        .page-sidebar .sidebar-menu .menu-items > li ul.sub-menu > li:hover > .icon-thumbnail {
                            color: #000;
                        }

                        .page-sidebar .sidebar-menu .menu-items > li ul.sub-menu > li > a {
                            display: inline-block;
                            padding: 5px 0px;
                            font-size: 13px;
                            font-family: Arial, sans-serif;
                            white-space: normal;
                        }

                        .page-sidebar .sidebar-menu .menu-items > li ul.sub-menu > li .icon-thumbnail {
                            width: 30px;
                            height: 30px;
                            line-height: 30px;
                            margin: 0;
                            background-color: #fff;
                            font-size: 14px;
                        }

        .page-sidebar .sidebar-menu .muted {
            color: #576775;
            opacity: .45;
        }

    .page-sidebar .icon-thumbnail [class^="bg-"],
    .page-sidebar [class*="bg-"] {
        color: #fff;
    }

[data-toggle-pin="sidebar"] > i:before {
    content: "\f10c";
}

.icon-thumbnail {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    left: -16px;
    padding-left: 27px;
    top: 6px;
    float: right;
    margin-right: 14px;
    color: white;
    font-size: 16px;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.05, 0.74, 0.27, 0.99);
    transition: -webkit-transform 0.4s cubic-bezier(0.05, 0.74, 0.27, 0.99);
    transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.27, 0.99);
    transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.27, 0.99), -webkit-transform 0.4s cubic-bezier(0.05, 0.74, 0.27, 0.99);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-weight: bold;
}

    .icon-thumbnail > i {
        font-size: 14px;
    }

    .icon-thumbnail > svg {
        width: auto;
        height: auto;
        display: inline;
    }

.grad-bottom {
    width: 100%;
    height: 200px;
    display: block;
    position: absolute;
    background: #104476;
    /* Old browsers */
    background: linear-gradient(147deg, #104476 0%, #104476 47%, #6f9aea 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$main-blue', endColorstr='#6f9aea',GradientType=1 );
}

.navbar {
    background: #104476;
    background: -webkit-gradient(linear, left top, right top, from(#104476), color-stop(25%, #104476), to(#6f9aea));
    background: linear-gradient(to right, #104476 0%, #104476 25%, #6f9aea 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$main-blue', endColorstr='#6f9aea',GradientType=1 );
}

    .navbar .nav-item a {
        color: white;
        font-weight: 300;
    }

    /*.navbar li:not(:last-child) a::after {
        padding-left: 10px;
        content: '>'; 
    }*/

    /*.navbar li:not(:last-child) a.wo_breadcrum {
        font-weight: 400;
    }

        .navbar li:not(:last-child) a.wo_breadcrum::after {
            padding-left: 10px;
            content: '' !important;
        }*/

    .navbar li a:hover {
        color: #d1d1d1;
    }

    .navbar .right-nav a {
        color: white;
    }

    .navbar .icon-menu-right {
        display: inline-block;
        height: 40px;
        width: 40px;
        line-height: 40px;
        text-align: center;
        vertical-align: middle;
        position: relative;
        left: 0;
        top: -2px;
        margin-right: 5px;
        color: white;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        font-weight: bold;
    }

.navbar-toggler {
    background-color: #104476;
}

.copyright {
    display: block;
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 12px;
    right: 12px;
    text-align: center;
    width: 50px;
    color: #EBEBEB;
    font-weight: 300;
}

.panel {
    border-radius: 3px 3px 0 0;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

    .panel .title {
        color: #104476;
        margin-bottom: 20px;
    }

    .panel h5 {
        margin-top: 35px;
        margin-bottom: 10px !important;
    }

    .panel h4 {
        font-size: 1.9em;
    }

    .panel.mini-panel {
        text-align: center;
    }

        .panel.mini-panel h5 {
            color: #104476;
        }

        .panel.mini-panel p {
            font-size: 0.9em;
            color: #777;
        }

table tr:nth-child(odd) {
    background: white;
}

table tr:nth-child(even) {
    background: #f1f1f1;
}

table thead tr {
    background: #f3f3f3 !important;
}

table th {
    border-top: none !important;
}

table td {
    color: #104476;
    border-top: none !important;
}

    table td.links a {
        color: #104476;
        font-size: 1.6em;
        margin-right: 6px;
    }

    table td.options a {
        color: #104476;
        font-size: 1.2em;
        margin-right: 10px;
        margin-left: 10px;
    }

    table td p {
        margin-bottom: 5px;
    }

        table td p span {
            display: block;
            font-size: 0.8em;
            color: #777;
            font-style: italic;
        }

    table td span {
        font-size: 0.8em;
        color: #777;
        display: block;
        font-style: italic;
    }

        table td span.contact {
            font-size: 1em;
            color: #104476;
        }

form .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #104476;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

form .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #104476;
}

form .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: #104476;
}

form .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #104476;
}

form .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(16, 68, 118, 0.5);
}

form .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(16, 68, 118, 0.5);
}

.avatar {
    position: relative;
    display: block;
    border-radius: 50%;
    background-size: cover;
    background-position: top center;
    width: 25px;
    height: 25px;
}

.btn-gs {
    color: #fff;
    background: #7ED492;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#7ED492), to(#81d5ee));
    background: linear-gradient(to right, #7ED492 0%, #81d5ee 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
    /* IE6-9 */
    border-color: transparent;
}

    .btn-gs:hover, .btn-gs:active, .btn-gs:focus {
        background: #58c772;
        /* Old browsers */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(#58c772), to(#54c6e8));
        background: linear-gradient(to right, #58c772 0%, #54c6e8 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
        /* IE6-9 */
    }

    .btn-gs:disabled {
        background: #cbeed3;
        /* Old browsers */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(#cbeed3), to(#27b7e2));
        background: linear-gradient(to right, #cbeed3 0%, #27b7e2 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
        /* IE6-9 */
    }

.btn-g-blue {
    color: #fff;
    background: #104476;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#104476), to(#6F9AEA));
    background: linear-gradient(to right, #104476 0%, #6F9AEA 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
    /* IE6-9 */
    border-color: #fff;
}

    .btn-g-blue:hover, .btn-g-blue:active, .btn-g-blue:focus {
        background: #0a2a49;
        /* Old browsers */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(#0a2a49), to(#427be4));
        background: linear-gradient(to right, #0a2a49 0%, #427be4 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
        /* IE6-9 */
    }

    .btn-g-blue:disabled {
        background: #1c78d0;
        /* Old browsers */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(#1c78d0), to(#1f5ed4));
        background: linear-gradient(to right, #1c78d0 0%, #1f5ed4 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
        /* IE6-9 */
    }

.btn-g-red {
    color: #fff;
    background: #ff001C;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#ff001C), to(#ff6677));
    background: linear-gradient(to right, #ff001C 0%, #ff6677 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
    /* IE6-9 */
    border-color: #fff;
}

    .btn-g-red:hover, .btn-g-red:active, .btn-g-red:focus {
        background: #cc0016;
        /* Old browsers */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(#cc0016), to(#ff3349));
        background: linear-gradient(to right, #cc0016 0%, #ff3349 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
        /* IE6-9 */
    }

    .btn-g-red:disabled {
        background: #ff6677;
        /* Old browsers */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(#ff6677), to(#ff001c));
        background: linear-gradient(to right, #ff6677 0%, #ff001c 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
        /* IE6-9 */
    }

.btn-g-blue-empty {
    color: #104476;
    background: white;
    border-color: #104476;
}

    .btn-g-blue-empty:hover, .btn-g-blue-empty:active, .btn-g-blue-empty:focus {
        background: #0a2a49;
        /* Old browsers */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(#0a2a49), to(#427be4));
        background: linear-gradient(to right, #0a2a49 0%, #427be4 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
        /* IE6-9 */
    }

    .btn-g-blue-empty:disabled {
        background: #1c78d0;
        /* Old browsers */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(#1c78d0), to(#1f5ed4));
        background: linear-gradient(to right, #1c78d0 0%, #1f5ed4 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$color1', endColorstr='$color2',GradientType=1 );
        /* IE6-9 */
    }

.search {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .search input {
        padding: 0.375rem 0.75rem;
        padding-right: 30px;
        border: none;
        border-bottom: 2px solid #104476;
        border-radius: 0;
    }

    .search .results {
        z-index: 2;
        background: #f1f1f1;
        width: 100%;
    }

    .search .result {
        background: #f9f9f9;
        padding: 10px;
    }

        .search .result:nth-child(even) {
            background: #f1f1f1;
        }

        .search .result span {
            font-size: 0.9em;
            top: 1px;
            float: right;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 60px;
        }

    .search .fa-search {
        position: absolute;
        top: 13px;
        right: 9px;
        font-size: 15px;
        color: #104476;
    }

textarea:focus, input:focus {
    outline-style: none;
}

*:focus {
    outline: none;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-lg, .btn-group-lg > .btn {
    padding: 0.3rem 3rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 40px;
}

a {
    color: #104476;
}

.bus-main h5 {
    margin-top: 5px;
    color: #104476;
    text-transform: uppercase;
}

.bus-prop1 {
    text-align: right;
}

    .bus-prop1 h5 {
        color: #104476;
        font-size: 1.1em;
        font-weight: 800;
    }

.bus-holders .avatar {
    margin: auto;
    position: relative;
    display: block;
    border-radius: 50%;
    background-size: cover;
    background-position: top center;
    width: 100px;
    height: 100px;
}

.bus-holders .sub-name {
    font-style: italic;
}

.bus-holders .left-cont {
    padding-right: 5px;
    width: 50%;
    float: left;
    text-align: center;
}

    .bus-holders .left-cont h5 {
        margin-top: 5px;
        color: #104476;
    }

        .bus-holders .left-cont h5.main-name {
            font-size: 1.1em;
        }

        .bus-holders .left-cont h5.sub-name {
            color: #777;
            font-size: 1em;
        }

.bus-holders .right-cont {
    width: 50%;
    float: right;
}

    .bus-holders .right-cont h5 {
        margin-top: 0px;
        color: #104476;
    }

    .bus-holders .right-cont p {
        margin-bottom: 5px;
    }

        .bus-holders .right-cont p span {
            color: #104476;
            font-weight: 600;
        }

.popp-container {
    font-size: 0.8em;
    padding: 5px;
}

    .popp-container .left-cont {
        padding-right: 5px;
        width: 30%;
        float: left;
        text-align: center;
    }

        .popp-container .left-cont .avatar {
            margin: auto;
            position: relative;
            display: block;
            border-radius: 50%;
            background-size: cover;
            background-position: top center;
            width: 50px;
            height: 50px;
        }

        .popp-container .left-cont h5 {
            margin-top: 5px;
            color: #104476;
        }

            .popp-container .left-cont h5.main-name {
                font-size: 1.1em;
            }

            .popp-container .left-cont h5.sub-name {
                color: #777;
                font-size: 1em;
            }

    .popp-container .right-cont {
        width: 70%;
        float: right;
    }

        .popp-container .right-cont h5 {
            margin-top: 0px;
            color: #104476;
        }

        .popp-container .right-cont p {
            margin-bottom: 5px;
        }

            .popp-container .right-cont p span {
                color: #104476;
                font-weight: 600;
            }

.client-container {
    font-size: 1em;
    padding: 10px;
    display: block;
    position: relative;
}

    .client-container .left-cont {
        padding-right: 5px;
        text-align: center;
    }

        .client-container .left-cont .avatar {
            margin: auto;
            position: relative;
            display: block;
            border-radius: 50%;
            background-size: cover;
            background-position: top center;
            width: 100px;
            height: 100px;
        }

        .client-container .left-cont h5 {
            margin-top: 10px;
            color: #104476;
        }

            .client-container .left-cont h5.main-name {
                font-size: 1.3em;
            }

            .client-container .left-cont h5.sub-name {
                color: #777;
                font-size: 1.1em;
            }

    .client-container .right-cont h5 {
        margin-top: 0px;
        color: #104476;
    }

    .client-container .right-cont p {
        margin-bottom: 5px;
    }

        .client-container .right-cont p span {
            color: #104476;
            font-weight: 600;
        }

.nav-tabs {
    border-bottom: 5px solid transparent;
}

.nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: transparent transparent #104476 transparent !important;
    border-width: 0 !important;
    border-bottom-width: 5px !important;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.timeline {
    list-style: none;
    margin: 25px 0 22px;
    padding: 0;
    position: relative;
}

    .timeline:after {
        border: 6px solid;
        border-top-width: 13px;
        border-color: #104476 transparent transparent transparent;
        content: "";
        display: block;
        position: absolute;
        bottom: -19px;
        left: 15px;
    }

    .timeline .avatar {
        position: relative;
        display: inline-block;
        border-radius: 50%;
        background-size: cover;
        background-position: top center;
        width: 30px;
        height: 30px;
    }

.timeline-horizontal:after {
    border-top-width: 6px;
    border-left-width: 13px;
    border-color: transparent transparent transparent #104476;
    top: 15px;
    right: 0;
    bottom: auto;
    left: auto;
}

.timeline-horizontal .timeline-milestone {
    border-top: 3px solid #104476;
    display: inline;
    float: left;
    margin: 20px 0 0 0;
    padding: 40px 0 0 0;
}

    .timeline-horizontal .timeline-milestone:before {
        top: -17.5px;
        left: auto;
    }

    .timeline-horizontal .timeline-milestone.is-completed:after {
        top: -17.5px;
        left: 0;
    }

.timeline-milestone {
    border-left: 3px solid #104476;
    margin: 0 0 0 20px;
    padding: 0 0 5px 25px;
    position: relative;
}

    .timeline-milestone:before {
        border: 10.5px solid #104476;
        border-radius: 50%;
        content: "";
        display: block;
        position: absolute;
        left: -17.5px;
        width: 32px;
        height: 32px;
    }

    .timeline-milestone.is-completed:before {
        background-color: #104476;
    }

    .timeline-milestone.is-completed:after {
        color: #FFF;
        content: "\f303";
        display: block;
        font-family: "Font Awesome 5 Free";
        line-height: 32px;
        font-weight: 900;
        position: absolute;
        top: 0;
        left: -17.5px;
        text-align: center;
        width: 32px;
        height: 32px;
    }

    .timeline-milestone.is-current:before {
        background-color: #EEE;
    }

    .timeline-milestone.is-future:before {
        background-color: #3b91e4;
        border: 0;
    }

.timeline-action {
    background-color: #f1f1f1;
    padding: 12px 10px 12px 20px;
    position: relative;
    top: -15px;
}

    .timeline-action.is-expandable .title {
        cursor: pointer;
        position: relative;
    }

        .timeline-action.is-expandable .title:focus {
            outline: 0;
            text-decoration: underline;
        }

        .timeline-action.is-expandable .title:after {
            border: 6px solid #666;
            border-color: transparent transparent transparent #666;
            content: "";
            display: block;
            position: absolute;
            top: 6px;
            right: 0;
        }

    .timeline-action.is-expandable .content {
        display: none;
    }

    .timeline-action.is-expandable.is-expanded .title:after {
        border-color: #666 transparent transparent transparent;
        top: 10px;
        right: 5px;
    }

    .timeline-action.is-expandable.is-expanded .content {
        display: block;
    }

    .timeline-action .title, .timeline-action .content {
        word-wrap: break-word;
    }

    .timeline-action .title {
        color: #104476;
        font-size: 18px;
        margin: 0;
        bottom: 9px;
        display: inline-block;
        position: relative;
        margin-left: 5px;
    }

        .timeline-action .title span {
            color: #777;
            font-size: 0.8em;
        }

    .timeline-action .date {
        display: block;
        font-size: 14px;
        margin-bottom: 15px;
        position: relative;
        bottom: 9px;
        color: #104476;
    }

    .timeline-action .content {
        font-size: 14px;
    }

.file-list {
    line-height: 1.4;
    list-style: none;
    padding-left: 10px;
}

.darken-holder {
    background: #efefef;
    margin: 10px;
    padding: 20px;
}

    .darken-holder h5 {
        margin-top: 5px;
        color: #104476;
        font-size: 1em;
        text-transform: uppercase;
    }

    .darken-holder p {
        font-size: 0.9em;
    }

.htimeline {
    position: relative;
    display: block;
    width: 100%;
    height: 4rem;
    margin: 3rem auto;
    border-radius: 5px;
}

.htimeline--inner {
    position: absolute;
    display: block;
    top: 50%;
    right: 1rem;
    left: 1rem;
    height: 6px;
    margin: 0;
    margin-top: -3px;
    border: 0;
    background: rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2) inset;
    border-radius: 1em;
    z-index: 1;
}

    .htimeline--inner i {
        color: white;
        left: 4px;
        top: 4px;
        position: absolute;
    }

.htimeline--inner-pin {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #F06292;
    border-radius: 100%;
    cursor: help;
    -webkit-box-shadow: 0 0 0 2px #ffffff, 0 2px 6px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 2px #ffffff, 0 2px 6px rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

    .htimeline--inner-pin:nth-of-type(0) {
        background-color: #54c6e8;
    }

    .htimeline--inner-pin:nth-of-type(1) {
        background-color: #55c6e5;
    }

    .htimeline--inner-pin:nth-of-type(2) {
        background-color: #57c7e3;
    }

    .htimeline--inner-pin:nth-of-type(3) {
        background-color: #58c7e0;
    }

    .htimeline--inner-pin:nth-of-type(4) {
        background-color: #59c8de;
    }

    .htimeline--inner-pin:nth-of-type(5) {
        background-color: #5ac8db;
    }

    .htimeline--inner-pin:nth-of-type(6) {
        background-color: #5cc9d8;
    }

    .htimeline--inner-pin:nth-of-type(7) {
        background-color: #5dc9d6;
    }

    .htimeline--inner-pin:nth-of-type(8) {
        background-color: #5ec9d3;
    }

    .htimeline--inner-pin:nth-of-type(9) {
        background-color: #5fcad1;
    }

    .htimeline--inner-pin:nth-of-type(10) {
        background-color: #61cace;
    }

    .htimeline--inner-pin:nth-of-type(11) {
        background-color: #62cbcc;
    }

    .htimeline--inner-pin:nth-of-type(12) {
        background-color: #63cbc9;
    }

    .htimeline--inner-pin:nth-of-type(13) {
        background-color: #64cbc6;
    }

    .htimeline--inner-pin:nth-of-type(14) {
        background-color: #66ccc4;
    }

    .htimeline--inner-pin:nth-of-type(15) {
        background-color: #67ccc1;
    }

    .htimeline--inner-pin:nth-of-type(16) {
        background-color: #68cdbf;
    }

    .htimeline--inner-pin:nth-of-type(17) {
        background-color: #69cdbc;
    }

    .htimeline--inner-pin:nth-of-type(18) {
        background-color: #6bceba;
    }

    .htimeline--inner-pin:nth-of-type(19) {
        background-color: #6cceb7;
    }

    .htimeline--inner-pin:nth-of-type(20) {
        background-color: #6dceb4;
    }

    .htimeline--inner-pin:nth-of-type(21) {
        background-color: #6ecfb2;
    }

.is-featured {
    width: 14px;
    height: 14px;
}

.is-normal {
    width: 25px;
    height: 25px;
}

[data-title] {
    white-space: nowrap;
}

    [data-title]:after {
        content: attr(data-title);
        position: absolute;
        bottom: 100%;
        left: 50%;
        padding: 0.5rem;
        color: #333;
        font-size: .75rem;
        font-style: normal;
        background-color: #eee;
        border-radius: 5px;
        opacity: 0;
        -webkit-transition: 0.25s cubic-bezier(0.905, -0.25, 0.52, 1);
        transition: 0.25s cubic-bezier(0.905, -0.25, 0.52, 1);
        -webkit-transform: translateX(-50%) rotate(5deg);
        transform: translateX(-50%) rotate(5deg);
        pointer-events: none;
        z-index: 2;
    }

    [data-title]:hover:after {
        margin-bottom: 18px;
        opacity: 1;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    [data-title]:before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-bottom: -16px;
        border: 10px solid transparent;
        border-top-color: #eee;
        opacity: 0;
        -webkit-transition: 0.25s cubic-bezier(0.905, -0.25, 0.52, 1);
        transition: 0.25s cubic-bezier(0.905, -0.25, 0.52, 1);
        -webkit-transform: translateX(-50%) rotate(5deg);
        transform: translateX(-50%) rotate(5deg);
        pointer-events: none;
        z-index: 3;
    }

    [data-title]:hover:before {
        margin-bottom: -1px;
        opacity: 1;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

.modal-title {
    color: #104476;
    font-weight: 600;
}

.modal-body {
    font-weight: 400;
    color: #104476;
    letter-spacing: 1px;
    padding: 45px;
}

/* DRAGGABLE */
.Block--isDraggable {
    margin-top: 0px;
    margin-bottom: 10px;
}

.card-block {
    background: white;
    padding: 10px;
}

    .card-block h5, .card-block span.link-negocio {
        color: #104476;
        font-weight: 400;
        font-size: 1em;
        display: block;
    }

        .card-block h5.neg-title, .card-block span.link-negocio.neg-title {
            font-weight: 800;
            text-transform: uppercase;
            font-size: 1.1em;
        }

        .card-block h5.neg-client, .card-block span.link-negocio.neg-client {
            font-weight: 800;
        }

    .card-block .link-negocio:hover {
        cursor: pointer;
    }

    .card-block p {
        color: #777;
    }

    .card-block .tags {
        position: absolute;
        right: 20px;
        bottom: -1px;
    }

.grid-swappable .dd {
    min-height: 200px;
    padding: 10px 10px;
    background: #f1f1f1;
}

    .grid-swappable .dd h1 {
        text-align: center;
        font-size: 1em;
        color: #104476;
    }

.grid-swappable div[class^="top-header"], .grid-swappable div[class*=" top-header"] {
    font-weight: 200;
    color: white;
    padding: 10px;
}

.horizontal-ruler {
    overflow: auto;
}

.block-w {
    width: 300px;
    margin-right: 10px;
    margin-left: 20px;
}

    .block-w .top-header0 {
        background-color: #54c6e8;
    }

    .block-w .top-header1 {
        background-color: #55c6e5;
    }

    .block-w .top-header2 {
        background-color: #57c7e3;
    }

    .block-w .top-header3 {
        background-color: #58c7e0;
    }

    .block-w .top-header4 {
        background-color: #59c8de;
    }

    .block-w .top-header5 {
        background-color: #5ac8db;
    }

    .block-w .top-header6 {
        background-color: #5cc9d8;
    }

    .block-w .top-header7 {
        background-color: #5dc9d6;
    }

    .block-w .top-header8 {
        background-color: #5ec9d3;
    }

    .block-w .top-header9 {
        background-color: #5fcad1;
    }

    .block-w .top-header10 {
        background-color: #61cace;
    }

    .block-w .top-header11 {
        background-color: #62cbcc;
    }

    .block-w .top-header12 {
        background-color: #63cbc9;
    }

    .block-w .top-header13 {
        background-color: #64cbc6;
    }

    .block-w .top-header14 {
        background-color: #66ccc4;
    }

    .block-w .top-header15 {
        background-color: #67ccc1;
    }

    .block-w .top-header16 {
        background-color: #68cdbf;
    }

    .block-w .top-header17 {
        background-color: #69cdbc;
    }

    .block-w .top-header18 {
        background-color: #6bceba;
    }

    .block-w .top-header19 {
        background-color: #6cceb7;
    }

    .block-w .top-header20 {
        background-color: #6dceb4;
    }

    .block-w .top-header21 {
        background-color: #6ecfb2;
    }

.select2-selection--single {
    height: 38px !important;
    line-height: 0.8 !important;
}

.select2-selection__rendered {
    overflow: visible !important;
}

.select2-container--bootstrap4 .select2-results__option--highlighted[aria-selected] {
    background-color: #104476;
    color: #fff;
}

.select2-container--bootstrap4.select2-container--open .select2-selection {
    border-color: #104476;
}

.select2-container--bootstrap4 .select2-dropdown {
    border-color: #104476;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection, .select2-container--bootstrap4.select2-container--open .select2-selection {
    border-color: #104476;
}

.signup-panel h4 {
    font-size: 1.7em;
}

.signup-panel p {
    color: #b1b1b1;
    font-size: 0.8em;
}

#calendar table tr:nth-child(odd) {
    background: inherit;
}

#calendar .fc-day-top {
    background: white;
    border-right: 1px solid #dee2e6;
}

#calendar .table-bordered {
    border-top: 1px solid #dee2e6;
}

#calendar .fc-day-grid-event.fc-event {
    border: none;
    border-radius: 0;
    background: #e8eafe;
    border-radius: 0 100px 100px 0;
    border-left: 2px solid #9EA7Fc;
}

    #calendar .fc-day-grid-event.fc-event .fc-time {
        color: #071ce1;
    }

    #calendar .fc-day-grid-event.fc-event .fc-title {
        color: #051396;
    }

#calendar .fc-time-grid-event.fc-event {
    border: none;
    border-radius: 0;
    background: #e8eafe;
    color: #777;
    border-left: 2px solid #9EA7Fc;
}

#calendar .fc-month-button, #calendar .fc-agendaWeek-button, #calendar .fc-agendaDay-button, #calendar .fc-today-button, #calendar .fc-next-button, #calendar .fc-prev-button {
    color: #fff;
    background: #104476;
    border-color: #fff;
}

    #calendar .fc-month-button:hover, #calendar .fc-month-button:active, #calendar .fc-month-button:focus, #calendar .fc-agendaWeek-button:hover, #calendar .fc-agendaWeek-button:active, #calendar .fc-agendaWeek-button:focus, #calendar .fc-agendaDay-button:hover, #calendar .fc-agendaDay-button:active, #calendar .fc-agendaDay-button:focus, #calendar .fc-today-button:hover, #calendar .fc-today-button:active, #calendar .fc-today-button:focus, #calendar .fc-next-button:hover, #calendar .fc-next-button:active, #calendar .fc-next-button:focus, #calendar .fc-prev-button:hover, #calendar .fc-prev-button:active, #calendar .fc-prev-button:focus {
        background: #0a2a49;
    }

    #calendar .fc-month-button:disabled, #calendar .fc-agendaWeek-button:disabled, #calendar .fc-agendaDay-button:disabled, #calendar .fc-today-button:disabled, #calendar .fc-next-button:disabled, #calendar .fc-prev-button:disabled {
        background: #0a2a49;
    }

/*# sourceMappingURL=main.css.map */
