﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* RESET */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

/*Make an item size dependante on the div*/
.responsive-ItemSize {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* made this opaque due to toastr and farm name overlapping each other */
.toast {
    opacity: 1 !important;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #70BC44;
    border-color: #70BC44;
    border-radius: 5px !important;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html.cursorwait, html.cursorwait * {
    cursor: wait !important;
}

#loadingOverlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(25,25,25,0.5);
    z-index: 9999;
    margin: auto;
}


.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.box-shadow-bottom {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: auto;
}

main {
    flex-grow: 1;
}

header, main, footer {
    flex-shrink: 0;
}


fieldset {
    border: 1px solid silver;
    padding: 0.75em;
    border-radius: 0.25em;
    margin-bottom: 1em;
}

/*.list-group {
    max-height: 60%;
    margin-bottom: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}*/

.checkbox-1x {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
}

.checkbox-2x {
    transform: scale(2);
    -webkit-transform: scale(2);
}

/* BEGIN CHECKBOX STYLE */
/* Customize the label (the container) */
.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.75em;
    cursor: pointer;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkboxContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5em;
    width: 1.5em;
    background-color: #eee;

}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* END CHECKBOX STYLE */

/* BEGIN RADIO STYLE */
/* Customize the label (the container) */
.radioContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .radioContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom radio button */
.radioCheckmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radioContainer:hover input ~ .radioCheckmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radioContainer input:checked ~ .radioCheckmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radioCheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioContainer input:checked ~ .radioCheckmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radioContainer .radioCheckmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/*<label class="radioContainer" >
One
<input type="checkbox" checked="checked" >
<span class="radioCheckmark" > </span >
</label >*/

/* END RADIO STYLE */

.slightlyBold {
    font-weight: 500;
}

/* START IMPORT TAB STYLE */
section {
    /*    padding: 60px 0;*/
}

    section .section-title {
        text-align: center;
        /*        color: #287CBE;*/
        /*    margin-bottom: 50px;*/
        text-transform: uppercase;
    }

#borderlessTabs {
    /*    background: #287CBE;*/
    /*    color: #eee;*/
}

    #borderlessTabs h6.section-title {
        /*        color: #eee;*/
    }

    #borderlessTabs .nav-tabs .nav-item.show .nav-link,
    #borderlessTabs .nav-tabs .nav-link.active {
        /*        color: #000;*/
        background-color: transparent;
        border-color: transparent transparent #f3f3f3;
        border-bottom: 4px solid !important;
        font-size: 20px;
        font-weight: bold;
    }

    #borderlessTabs .nav-tabs .nav-link {
        border: 1px solid transparent;
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
        color: #61656b;
        font-size: 20px;
    }

/* END TAB STYLE */



/* Dashboard Actio Material icons */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v52/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

/* Icons CSS*/
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Dashboard Text colums and rows */

/*DO NOT OVERWRITE body HERE*/
/*body {
    color: #566787;
    background: #f5f5f5;
    font-family: 'Open Sans', sans-serif;
}*/

.view-account {
    background: #FFFFFF;
    margin-top: 20px;
}

.view-account {
    font-size: 13px;
    padding: 4px 5px;
    position: relative;
    top: -5px;
    margin-left: 10px;
    display: inline-block
}

    .view-account .side-bar {
        padding-bottom: 10px
    }

        .view-account .side-bar .user-info {
            text-align: center;
            margin-bottom: 15px;
            padding: 30px;
            color: #616670;
            border-bottom: 1px solid #f3f3f3
        }

            .view-account .side-bar .user-info .img-profile {
                width: 120px;
                height: 120px;
                margin-bottom: 15px
            }

            .view-account .side-bar .user-info .meta li {
                margin-bottom: 4px
            }

                .view-account .side-bar .user-info .meta li span {
                    display: inline-block;
                    width: 100px;
                    margin-right: 5px;
                    text-align: right
                }

                .view-account .side-bar .user-info .meta li a {
                    color: #616670
                }

                .view-account .side-bar .user-info .meta li.activity {
                    color: #a2a6af
                }

        .view-account .side-bar .side-menu {
            text-align: center
        }

            .view-account .side-bar .side-menu .nav {
                display: inline-block;
                margin: 0 auto
            }

                .view-account .side-bar .side-menu .nav > li {
                    font-size: 14px;
                    margin-bottom: 0;
                    border-bottom: none;
                    display: inline-block;
                    float: left;
                    margin-right: 15px;
                    margin-bottom: 15px
                }

                    .view-account .side-bar .side-menu .nav > li:last-child {
                        margin-right: 0
                    }

                    .view-account .side-bar .side-menu .nav > li > a {
                        display: inline-block;
                        color: #9499a3;
                        padding: 5px;
                        border-bottom: 2px solid transparent
                    }

                        .view-account .side-bar .side-menu .nav > li > a:hover {
                            color: #616670;
                            background: none
                        }

                    .view-account .side-bar .side-menu .nav > li.active a {
                        color: #40babd;
                        border-bottom: 2px solid #40babd;
                        background: none;
                        border-right: none
                    }

.theme-2 .view-account .side-bar .side-menu .nav > li.active a {
    color: #6dbd63;
    border-bottom-color: #6dbd63
}

.theme-3 .view-account .side-bar .side-menu .nav > li.active a {
    color: #497cb1;
    border-bottom-color: #497cb1
}

.theme-4 .view-account .side-bar .side-menu .nav > li.active a {
    color: #ec6952;
    border-bottom-color: #ec6952
}

.view-account .side-bar .side-menu .nav > li .icon {
    display: block;
    font-size: 24px;
    margin-bottom: 5px
}

.view-account .content-panel {
    padding: 30px
}

    .view-account .content-panel .title {
        margin-bottom: 15px;
        margin-top: 0;
        font-size: 18px
    }

    .view-account .content-panel .fieldset-title {
        padding-bottom: 15px;
        border-bottom: 1px solid #eaeaf1;
        margin-bottom: 30px;
        color: #616670;
        font-size: 16px
    }

    .view-account .content-panel .avatar .figure img {
        float: right;
        width: 64px
    }

    .view-account .content-panel .content-header-wrapper {
        position: relative;
        margin-bottom: 30px
    }

        .view-account .content-panel .content-header-wrapper .actions {
            position: absolute;
            right: 0;
            top: 0
        }

    .view-account .content-panel .content-utilities {
        position: relative;
        margin-bottom: 30px
    }

        .view-account .content-panel .content-utilities .btn-group {
            margin-right: 5px;
            margin-bottom: 15px
        }

        .view-account .content-panel .content-utilities .fa {
            font-size: 16px;
            margin-right: 0
        }

        .view-account .content-panel .content-utilities .page-nav {
            position: absolute;
            right: 0;
            top: 0
        }

            .view-account .content-panel .content-utilities .page-nav .btn-group {
                margin-bottom: 0
            }

            .view-account .content-panel .content-utilities .page-nav .indicator {
                color: #a2a6af;
                margin-right: 5px;
                display: inline-block
            }

    .view-account .content-panel .mails-wrapper .mail-item {
        position: relative;
        padding: 10px;
        border-bottom: 1px solid #f3f3f3;
        color: #616670;
        overflow: hidden
    }

        .view-account .content-panel .mails-wrapper .mail-item > div {
            float: left
        }

        .view-account .content-panel .mails-wrapper .mail-item .icheck {
            background-color: #fff
        }

        .view-account .content-panel .mails-wrapper .mail-item:hover {
            background: #f9f9fb
        }

        .view-account .content-panel .mails-wrapper .mail-item:nth-child(even) {
            background: #fcfcfd
        }

            .view-account .content-panel .mails-wrapper .mail-item:nth-child(even):hover {
                background: #f9f9fb
            }

        .view-account .content-panel .mails-wrapper .mail-item a {
            color: #616670
        }

            .view-account .content-panel .mails-wrapper .mail-item a:hover {
                color: #494d55;
                text-decoration: none
            }

        .view-account .content-panel .mails-wrapper .mail-item .checkbox-container,
        .view-account .content-panel .mails-wrapper .mail-item .star-container {
            display: inline-block;
            margin-right: 5px
        }

            .view-account .content-panel .mails-wrapper .mail-item .star-container .fa {
                color: #a2a6af;
                font-size: 16px;
                vertical-align: middle
            }

                .view-account .content-panel .mails-wrapper .mail-item .star-container .fa.fa-star {
                    color: #f2b542
                }

                .view-account .content-panel .mails-wrapper .mail-item .star-container .fa:hover {
                    color: #868c97
                }

        .view-account .content-panel .mails-wrapper .mail-item .mail-to {
            display: inline-block;
            margin-right: 5px;
            min-width: 120px
        }

        .view-account .content-panel .mails-wrapper .mail-item .mail-subject {
            display: inline-block;
            margin-right: 5px
        }

            .view-account .content-panel .mails-wrapper .mail-item .mail-subject .label {
                margin-right: 5px
            }

                .view-account .content-panel .mails-wrapper .mail-item .mail-subject .label:last-child {
                    margin-right: 10px
                }

                .view-account .content-panel .mails-wrapper .mail-item .mail-subject .label a,
                .view-account .content-panel .mails-wrapper .mail-item .mail-subject .label a:hover {
                    color: #fff
                }

            .view-account .content-panel .mails-wrapper .mail-item .mail-subject .label-color-1 {
                background: #f77b6b
            }

            .view-account .content-panel .mails-wrapper .mail-item .mail-subject .label-color-2 {
                background: #58bbee
            }

            .view-account .content-panel .mails-wrapper .mail-item .mail-subject .label-color-3 {
                background: #f8a13f
            }

            .view-account .content-panel .mails-wrapper .mail-item .mail-subject .label-color-4 {
                background: #ea5395
            }

            .view-account .content-panel .mails-wrapper .mail-item .mail-subject .label-color-5 {
                background: #8a40a7
            }

        .view-account .content-panel .mails-wrapper .mail-item .time-container {
            display: inline-block;
            position: absolute;
            right: 10px;
            top: 10px;
            color: #a2a6af;
            text-align: left
        }

            .view-account .content-panel .mails-wrapper .mail-item .time-container .attachment-container {
                display: inline-block;
                color: #a2a6af;
                margin-right: 5px
            }

            .view-account .content-panel .mails-wrapper .mail-item .time-container .time {
                display: inline-block;
                text-align: right
            }

                .view-account .content-panel .mails-wrapper .mail-item .time-container .time.today {
                    font-weight: 700;
                    color: #494d55
                }

.drive-wrapper {
    padding: 15px;
    background: #f5f5f5;
    overflow: hidden
}

    .drive-wrapper .drive-item {
        width: 130px;
        margin-right: 15px;
        display: inline-block;
        float: left
    }

        .drive-wrapper .drive-item:hover {
            box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
            z-index: 1
        }

    .drive-wrapper .drive-item-inner {
        padding: 15px
    }

    .drive-wrapper .drive-item-title {
        margin-bottom: 15px;
        max-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

        .drive-wrapper .drive-item-title a {
            color: #494d55
        }

            .drive-wrapper .drive-item-title a:hover {
                color: #40babd
            }

.theme-2 .drive-wrapper .drive-item-title a:hover {
    color: #6dbd63
}

.theme-3 .drive-wrapper .drive-item-title a:hover {
    color: #497cb1
}

.theme-4 .drive-wrapper .drive-item-title a:hover {
    color: #ec6952
}

.drive-wrapper .drive-item-thumb {
    width: 100px;
    height: 80px;
    margin: 0 auto;
    color: #616670
}

    .drive-wrapper .drive-item-thumb a {
        -webkit-opacity: .8;
        -moz-opacity: .8;
        opacity: .8
    }

        .drive-wrapper .drive-item-thumb a:hover {
            -webkit-opacity: 1;
            -moz-opacity: 1;
            opacity: 1
        }

    .drive-wrapper .drive-item-thumb .fa {
        display: inline-block;
        font-size: 36px;
        margin: 0 auto;
        margin-top: 20px
    }

.drive-wrapper .drive-item-footer .utilities {
    margin-bottom: 0
}

    .drive-wrapper .drive-item-footer .utilities li:last-child {
        padding-right: 0
    }

.drive-list-view .name {
    width: 60%
}

    .drive-list-view .name.truncate {
        max-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

.drive-list-view .type {
    width: 15px
}

.drive-list-view .date,
.drive-list-view .size {
    max-width: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.drive-list-view a {
    color: #494d55
}

    .drive-list-view a:hover {
        color: #40babd
    }

.theme-2 .drive-list-view a:hover {
    color: #6dbd63
}

.theme-3 .drive-list-view a:hover {
    color: #497cb1
}

.theme-4 .drive-list-view a:hover {
    color: #ec6952
}

.drive-list-view td.date,
.drive-list-view td.size {
    color: #a2a6af
}

@media (max-width:767px) {
    .view-account .content-panel .title {
        text-align: center
    }

    .view-account .side-bar .user-info {
        padding: 0
    }

        .view-account .side-bar .user-info .img-profile {
            width: 60px;
            height: 60px
        }

        .view-account .side-bar .user-info .meta li {
            margin-bottom: 5px
        }

    .view-account .content-panel .content-header-wrapper .actions {
        position: static;
        margin-bottom: 30px
    }

    .view-account .content-panel {
        padding: 0
    }

        .view-account .content-panel .content-utilities .page-nav {
            position: static;
            margin-bottom: 15px
        }

    .drive-wrapper .drive-item {
        width: 100px;
        margin-right: 5px;
        float: none
    }

    .drive-wrapper .drive-item-thumb {
        width: auto;
        height: 54px
    }

        .drive-wrapper .drive-item-thumb .fa {
            font-size: 24px;
            padding-top: 0
        }

    .view-account .content-panel .avatar .figure img {
        float: none;
        margin-bottom: 15px
    }

    .view-account .file-uploader {
        margin-bottom: 15px
    }

    .view-account .mail-subject {
        max-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .view-account .content-panel .mails-wrapper .mail-item .time-container {
        position: static
    }

        .view-account .content-panel .mails-wrapper .mail-item .time-container .time {
            width: auto;
            text-align: left
        }
}

@media (min-width:768px) {
    .view-account .side-bar .user-info {
        padding: 0;
        padding-bottom: 15px
    }

    .view-account .mail-subject .subject {
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

@media (min-width:992px) {
    .view-account .content-panel {
        min-height: 800px;
        border-left: 1px solid #f3f3f7;
        margin-left: 200px
    }

    .view-account .mail-subject .subject {
        max-width: 280px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .view-account .side-bar {
        position: absolute;
        width: 200px;
        min-height: 600px
    }

        .view-account .side-bar .user-info {
            margin-bottom: 0;
            border-bottom: none;
            padding: 30px
        }

            .view-account .side-bar .user-info .img-profile {
                width: 120px;
                height: 120px
            }

        .view-account .side-bar .side-menu {
            text-align: left
        }

            .view-account .side-bar .side-menu .nav {
                display: block
            }

                .view-account .side-bar .side-menu .nav > li {
                    display: block;
                    float: none;
                    font-size: 14px;
                    border-bottom: 1px solid #f3f3f7;
                    margin-right: 0;
                    margin-bottom: 0
                }

                    .view-account .side-bar .side-menu .nav > li > a {
                        display: block;
                        color: #9499a3;
                        padding: 10px 15px;
                        padding-left: 30px
                    }

                        .view-account .side-bar .side-menu .nav > li > a:hover {
                            background: #f9f9fb
                        }

                    .view-account .side-bar .side-menu .nav > li.active a {
                        background: #f9f9fb;
                        border-right: 4px solid #40babd;
                        border-bottom: none
                    }

    .theme-2 .view-account .side-bar .side-menu .nav > li.active a {
        border-right-color: #6dbd63
    }

    .theme-3 .view-account .side-bar .side-menu .nav > li.active a {
        border-right-color: #497cb1
    }

    .theme-4 .view-account .side-bar .side-menu .nav > li.active a {
        border-right-color: #ec6952
    }

    .view-account .side-bar .side-menu .nav > li .icon {
        font-size: 24px;
        vertical-align: middle;
        text-align: center;
        width: 40px;
        display: inline-block
    }
}
/*field size*/
.col-xs-6 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 50%;
}
/*field size*/
.col-personalinfo {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 25%;
}


.accordion .rotate {
    transform: rotate(180deg);
}
/* END ACCORDION STYLE */

.label-info {
    background-color: #5bc0de;
    border-radius: 5px;
    padding-left: 2px;
    padding-right: 2px;
    color: white;
    font-weight: bold;
}



/*Dashboard CSS*/
a:focus {
    outline: none;
}

#wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    #wrapper #content-wrapper {
        background-color: #FAFDFB;
        width: 100%;
        overflow-x: hidden;
    }

        #wrapper #content-wrapper #content {
            -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
            flex: 1 0 auto;
        }

/* never change a global class. There are other ways to do this */
/*.container,
.container-fluid,*/
.container-login {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}



@media (min-width:768px) {
    .container-login {
        margin-left: 25rem;
        margin-right: 25rem;
    }
}


.scroll-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    text-align: center;
    color: #fff;
    background: rgba(90, 92, 105, 0.5);
    line-height: 46px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

    .scroll-to-top:focus,
    .scroll-to-top:hover {
        color: white;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
    }

    .scroll-to-top:hover {
        background: #5a5c69;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
    }

    .scroll-to-top i {
        font-weight: 800;
    }

@-webkit-keyframes growIn {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes growIn {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

/*.animated--grow-in,
.sidebar .nav-item .collapse {
    -webkit-animation-name: growIn;
    animation-name: growIn;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
}*/

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animated--fade-in {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
}


.bg-gradient-primary {
    background-color: #6777EF;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #6777EF), to(#303f9f));
    background-image: linear-gradient(180deg, #6777EF 10%, #303f9f 100%);
    background-size: cover;
}

.bg-gradient-secondary {
    background-color: #757575;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #757575), to(#60616f));
    background-image: linear-gradient(180deg, #757575 10%, #60616f 100%);
    background-size: cover;
}

.bg-gradient-success {
    background-color: #66bb6a;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #66bb6a), to(#13855c));
    background-image: linear-gradient(180deg, #66bb6a 10%, #13855c 100%);
    background-size: cover;
}

.bg-gradient-info {
    background-color: #3abaf4;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3abaf4), to(#258391));
    background-image: linear-gradient(180deg, #3abaf4 10%, #258391 100%);
    background-size: cover;
}

.bg-gradient-warning {
    background-color: #ffa426;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #ffa426), to(#dda20a));
    background-image: linear-gradient(180deg, #f6c23e 10%, #ffa426 100%);
    background-size: cover;
}

.bg-gradient-danger {
    background-color: #fc544b;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #fc544b), to(#be2617));
    background-image: linear-gradient(180deg, #fc544b 10%, #be2617 100%);
    background-size: cover;
}

.bg-gradient-light {
    background-color: #e3eaef;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #e3eaef), to(#c2cbe5));
    background-image: linear-gradient(180deg, #e3eaef 10%, #c2cbe5 100%);
    background-size: cover;
}

.bg-gradient-dark {
    background-color: #212121;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #212121), to(#373840));
    background-image: linear-gradient(180deg, #212121 10%, #373840 100%);
    background-size: cover;
}

.bg-gradient-default {
    background: linear-gradient(87deg, #172b4d 0, #1a174d 100%) !important;
}

.bg-gradient-login {
    background-color: #f8f9fc;
    background-size: cover;
}

.bg-gray-100 {
    background-color: #f8f9fc !important;
}

.bg-gray-200 {
    background-color: #eaecf4 !important;
}

.bg-gray-300 {
    background-color: #dddfeb !important;
}

.bg-gray-400 {
    background-color: #d1d3e2 !important;
}

.bg-gray-500 {
    background-color: #b7b9cc !important;
}

.bg-gray-600 {
    background-color: #858796 !important;
}

.bg-gray-700 {
    background-color: #6e707e !important;
}

.bg-gray-800 {
    background-color: #5a5c69 !important;
}

.bg-gray-900 {
    background-color: #3a3b45 !important;
}

.o-hidden {
    overflow: hidden !important;
}

.text-xs {
    font-size: .7rem;
}

.text-lg {
    font-size: 1.2rem;
}

.text-gray-100 {
    color: #f8f9fc !important;
}

.text-gray-200 {
    color: #eaecf4 !important;
}

.text-gray-300 {
    color: #dddfeb !important;
}

.text-gray-400 {
    color: #d1d3e2 !important;
}

.text-gray-500 {
    color: #b7b9cc !important;
}

.text-gray-600 {
    color: #858796 !important;
}

.text-gray-700 {
    color: #6e707e !important;
}

.text-gray-800 {
    color: #5a5c69 !important;
}

.text-gray-900 {
    color: #3a3b45 !important;
}



.icon-circle {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.border-left-primary {
    border-left: 0.25rem solid #3f51b5 !important;
}

.border-bottom-primary {
    border-bottom: 0.25rem solid #3f51b5 !important;
}

.border-left-secondary {
    border-left: 0.25rem solid #757575 !important;
}

.border-bottom-secondary {
    border-bottom: 0.25rem solid #757575 !important;
}

.border-left-success {
    border-left: 0.25rem solid #66bb6a !important;
}

.border-bottom-success {
    border-bottom: 0.25rem solid #66bb6a !important;
}

.border-left-info {
    border-left: 0.25rem solid #4dd0e1 !important;
}

.border-bottom-info {
    border-bottom: 0.25rem solid #4dd0e1 !important;
}

.border-left-warning {
    border-left: 0.25rem solid #ffeb3b !important;
}

.border-bottom-warning {
    border-bottom: 0.25rem solid #ffeb3b !important;
}

.border-left-danger {
    border-left: 0.25rem solid #ef5350 !important;
}

.border-bottom-danger {
    border-bottom: 0.25rem solid #ef5350 !important;
}

.border-left-light {
    border-left: 0.25rem solid #f8f9fc !important;
}

.border-bottom-light {
    border-bottom: 0.25rem solid #f8f9fc !important;
}

.border-left-dark {
    border-left: 0.25rem solid #5a5c69 !important;
}

.border-bottom-dark {
    border-bottom: 0.25rem solid #5a5c69 !important;
}

.progress-sm {
    height: .5rem;
}

.rotate-15 {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}

.rotate-n-15 {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}

.dropdown .dropdown-menu {
    font-size: 0.85rem;
    -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

    .dropdown .dropdown-menu .dropdown-header {
        font-weight: 800;
        font-size: 0.65rem;
        color: #b7b9cc;
    }

.dropdown.no-arrow .dropdown-toggle::after {
    display: none;
}
/*
.sidebar .nav-item.dropdown .dropdown-toggle::after {
    width: 1rem;
    text-align: center;
    float: right;
    vertical-align: 0;
    border: 0;
    font-weight: 900;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
}

.sidebar .nav-item.dropdown.show .dropdown-toggle::after {
    content: '\f107';
}

.sidebar .nav-item .nav-link {
    position: relative;
}

    .sidebar .nav-item .nav-link .badge-counter {
        position: absolute;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        -webkit-transform-origin: top right;
        transform-origin: top right;
        right: .25rem;
        margin-top: -.25rem;
    }

    .sidebar .nav-item .nav-link .img-profile {
        height: 2rem;
        width: 2rem;
        border: 1px solid #fafafa;
    }
*/
.bg-navbar {
    background-color: #2964A8;
}

/*.sidebar {
    height: 100%;
    width: 14rem !important;
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
    z-index: 0;
}

    .sidebar .nav-item {
        position: relative;
        margin-bottom: -15px;
    }

        .sidebar .nav-item:last-child {
            margin-bottom: 1rem;
        }

        .sidebar .nav-item .nav-link {
            display: block;
            width: 100%;
            text-align: left;
            padding: 1rem;
            width: 14rem;
        }

            .sidebar .nav-item .nav-link i {
                font-size: 0.85rem;
                margin-right: 0.25rem;
            }

            .sidebar .nav-item .nav-link span {
                font-size: 0.85rem;
                display: inline;
            }

        .sidebar .nav-item.active .nav-link {
            font-weight: 800;
        }

        .sidebar .nav-item .nav-link[data-toggle="collapse"]::after {
            width: 1rem;
            text-align: center;
            float: right;
            vertical-align: 0;
            border: 0;
            font-weight: 900;
            content: '\f107';
            font-family: 'Font Awesome 5 Free';
        }

        .sidebar .nav-item .nav-link[data-toggle="collapse"].collapsed::after {
            content: '\f105';
        }

        .sidebar .nav-item .collapse {
            position: relative;
            left: 0;
            z-index: 1;
            top: 0;
            -webkit-animation: none;
            animation: none;
        }

            .sidebar .nav-item .collapse .collapse-inner {
                border-radius: 0.35rem;
                -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
                box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
                transition: all 0.2s ease-in-out;
                -webkit-transition: all 0.2s ease-in-out;
            }

        .sidebar .nav-item .collapsing {
            display: block;
            -webkit-transition: height 0.3s ease;
            transition: height 0.3s ease;
        }

        .sidebar .nav-item .collapse,
        .sidebar .nav-item .collapsing {
            margin: 0 1rem;
        }

            .sidebar .nav-item .collapse .collapse-inner,
            .sidebar .nav-item .collapsing .collapse-inner {
                padding: .5rem 0;
                min-width: 10rem;
                font-size: 0.85rem;
                margin: 0 0 1rem 0;
            }

                .sidebar .nav-item .collapse .collapse-inner .collapse-header,
                .sidebar .nav-item .collapsing .collapse-inner .collapse-header {
                    margin: 0;
                    white-space: nowrap;
                    padding: .5rem 1.5rem;
                    text-transform: uppercase;
                    font-weight: 800;
                    font-size: 0.65rem;
                    color: #b7b9cc;
                }

                .sidebar .nav-item .collapse .collapse-inner .collapse-item,
                .sidebar .nav-item .collapsing .collapse-inner .collapse-item {
                    padding: 0.5rem 1rem;
                    margin: 0 0.5rem;
                    display: block;
                    color: #3a3b45;
                    text-decoration: none;
                    border-radius: 0.35rem;
                    white-space: nowrap;
                }

                    .sidebar .nav-item .collapse .collapse-inner .collapse-item:hover,
                    .sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
                        background-color: #eaecf4;
                        transition: all 0.3s ease-in-out;
                        -webkit-transition: all 0.3s ease-in-out;
                    }

                    .sidebar .nav-item .collapse .collapse-inner .collapse-item:active,
                    .sidebar .nav-item .collapsing .collapse-inner .collapse-item:active {
                        background-color: #dddfeb;
                    }

                    .sidebar .nav-item .collapse .collapse-inner .collapse-item.active,
                    .sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
                        color: #3a3b45;
                        font-weight: 800;
                    }

    .sidebar #sidebarToggle {
        width: 2.5rem;
        height: 2.5rem;
        text-align: center;
        margin-bottom: 1rem;
        cursor: pointer;
    }

        .sidebar #sidebarToggle::after {
            font-weight: 900;
            content: '\f104';
            font-family: 'Font Awesome 5 Free';
            margin-right: 0.1rem;
        }

        .sidebar #sidebarToggle:hover {
            text-decoration: none;
        }

        .sidebar #sidebarToggle:focus {
            outline: none;
        }

    .sidebar .sidebar-brand {
        height: 3rem;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 800;
        padding: 1.5rem 1rem;
        text-align: center;
        letter-spacing: 0.05rem;
        z-index: 1;
    }

        .sidebar .sidebar-brand .sidebar-brand-icon img {
            max-height: 2.3rem;
        }

    .sidebar hr.sidebar-divider {
        margin: 1rem 0 1rem 0;
    }

    .sidebar .sidebar-heading {
        text-align: left;
        padding: 0 1rem;
        font-weight: 800;
        font-size: 0.65rem;
        letter-spacing: 0.13rem;
    }

    .sidebar .version {
        text-align: left;
        font-size: 0.6rem;
        padding: 0 1rem;
        color: #b7b9cc;
        letter-spacing: 0.030rem;
    }


    .sidebar .sidebar-brand .sidebar-brand-text {
        display: inline;
    }

    .sidebar.toggled {
        overflow: visible;
        width: 6.5rem !important;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        z-index: 1;
    }

        .sidebar.toggled .nav-item {
            margin-bottom: 0px;
        }


        .sidebar.toggled hr.sidebar-divider {
            margin: 0 0 1rem 0;
        }

        .sidebar.toggled #sidebarToggle::after {
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            margin-left: 0.25rem;
        }

        .sidebar.toggled .nav-item .collapse {
            position: absolute;
            left: calc(6.5rem + 1.5rem / 2);
            top: 2px;
            -webkit-animation-name: growIn;
            animation-name: growIn;
            -webkit-animation-duration: 200ms;
            animation-duration: 200ms;
            -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
            animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
        }

        .sidebar.toggled .nav-item .collapse,
        .sidebar.toggled .nav-item .collapsing {
            margin: 0;
        }

            .sidebar.toggled .nav-item .collapse .collapse-inner {
                -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
                box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
                border-radius: 0.35rem;
            }

        .sidebar.toggled .nav-item .collapsing {
            display: none;
            -webkit-transition: none;
            transition: none;
        }

        .sidebar.toggled .nav-item:last-child {
            margin-bottom: 1rem;
        }

        .sidebar.toggled .nav-item .nav-link {
            text-align: center;
            padding: 0.75rem 1rem;
            width: 6.5rem;
        }

        .sidebar.toggled .nav-item .nav-link {
            background-color: transparent !important;
        }

        .sidebar.toggled .sidebar-heading {
            display: none;
        }

        .sidebar.toggled .nav-item .nav-link span {
            display: none;
        }

        .sidebar.toggled .nav-item .nav-link i {
            float: left;
            text-align: center;
            font-size: 1rem;
            margin: 0 0 0.7rem 1rem;
        }

        .sidebar.toggled .sidebar-brand .sidebar-brand-text {
            display: none;
        }

        .sidebar.toggled .nav-item .nav-link[data-toggle="collapse"]::after {
            width: 1rem;
            text-align: center;
            float: right;
            vertical-align: 0;
            border: 0;
            font-weight: 900;
            content: '\f107';
            font-family: 'Font Awesome 5 Free';
        }

        .sidebar.toggled .nav-item .nav-link[data-toggle="collapse"].collapsed::after {
            content: '\f105';
        }
*/

/*.sidebar {
    width: 16rem !important;
}
*/
.login-form {
    padding: 3rem !important;
}

@media (max-width: 768px) {

    #container-wrapper {
        min-width: 100vw;
    }

    /*    .sidebar.toggled {
        width: 100vw !important;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
    }*/

    /*        .sidebar.toggled .nav-item {
            margin-left: -1rem;
            position: relative;
            margin-bottom: -15px;
        }*/

    /*           .sidebar.toggled .nav-item .nav-link {
                display: block;
                width: 100%;
                text-align: left;
                padding: 1rem;
                width: 14rem;
            }

                .sidebar.toggled .nav-item .nav-link i {
                    font-size: 0.85rem;
                    margin-top: 0.4rem;
                    margin-right: 0.5rem;
                }

                .sidebar.toggled .nav-item .nav-link span {
                    font-size: 0.85rem;
                    display: inline;
                }

            .sidebar.toggled .nav-item.active .nav-link {
                font-weight: 700;
            }

            .sidebar.toggled .nav-item .nav-link[data-toggle="collapse"]::after {
                width: 1rem;
                text-align: center;
                float: right;
                vertical-align: 0;
                border: 0;
                font-weight: 900;
                content: '\f107';
                font-family: 'Font Awesome 5 Free';
            }

            .sidebar.toggled .nav-item .nav-link[data-toggle="collapse"].collapsed::after {
                content: '\f105';
            }

            .sidebar.toggled .nav-item .collapse {
                position: relative;
                padding-left: 1rem;
                left: 0;
                z-index: 1;
                top: 0;
                -webkit-transition: height 0.15s ease;
                transition: height 0.15s ease;
            }

                .sidebar.toggled .nav-item .collapse .collapse-inner {
                    border-radius: 0.35rem;
                    -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
                    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
                }

            .sidebar.toggled .nav-item .collapse,
            .sidebar.toggled .nav-item .collapsing {
                margin: 0 1rem;
            }

                .sidebar.toggled .nav-item .collapse .collapse-inner,
                .sidebar.toggled .nav-item .collapsing .collapse-inner {
                    padding: .5rem 0;
                    min-width: 10rem;
                    font-size: 0.85rem;
                    margin: 0 0 1rem 0;
                }

                    .sidebar.toggled .nav-item .collapse .collapse-inner .collapse-header,
                    .sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-header {
                        margin: 0;
                        white-space: nowrap;
                        padding: .5rem 1.5rem;
                        text-transform: uppercase;
                        font-weight: 800;
                        font-size: 0.65rem;
                        color: #b7b9cc;
                    }

                    .sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item,
                    .sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item {
                        padding: 0.5rem 1rem;
                        margin: 0 0.5rem;
                        display: block;
                        color: #3a3b45;
                        text-decoration: none;
                        border-radius: 0.35rem;
                        white-space: nowrap;
                    }

                        .sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item:hover,
                        .sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item:hover {
                            background-color: #eaecf4;
                            transition: all 0.3s ease-in-out;
                            -webkit-transition: all 0.3s ease-in-out;
                        }

                        .sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item:active,
                        .sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item:active {
                            background-color: #dddfeb;
                        }

                        .sidebar.toggled .nav-item .collapse .collapse-inner .collapse-item.active,
                        .sidebar.toggled .nav-item .collapsing .collapse-inner .collapse-item.active {
                            color: #3f51b5;
                            font-weight: 800;
                        }

        .sidebar.toggled .sidebar-brand {
            height: 3rem;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 800;
            padding: 1.5rem 1rem;
            text-align: center;
            letter-spacing: 0.05rem;
            z-index: 1;
        }

        .sidebar.toggled hr.sidebar-divider {
            margin: 1rem 0 1rem 0rem;
        }

        .sidebar.toggled .sidebar-heading {
            display: block;
            text-align: left;
            padding: 0 1rem;
            font-weight: 800;
            font-size: 0.65rem;
            letter-spacing: 0.13rem;
        }

        .sidebar.toggled .sidebar-brand .sidebar-brand-text {
            display: inline;
        }

    .sidebar {
        width: 0 !important;
        overflow: hidden;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }

        .sidebar .sidebar-brand {
            overflow: hidden;
        }

            .sidebar .sidebar-brand .sidebar-brand-text {
                overflow: hidden;
            }

        .sidebar .nav-item {
            overflow: hidden;
        }

        .sidebar .sidebar-brand .sidebar-brand-icon img {
            overflow: hidden;
        }

        .sidebar hr.sidebar-divider {
            margin: 1rem 0 1rem 0rem;
        }*/

    .login-form {
        padding: 3rem 2rem !important;
    }
}


.breadcrumb {
    background-color: transparent;
    font-size: 12px;
    font-weight: bold;
}

/*.sidebar-light .sidebar-brand {
    color: #fafafa;
    background-color: #4AA53F;
}

.sidebar-light hr.sidebar-divider {
    border-top: 1px solid #eaecf4;
}

.sidebar-light .sidebar-heading {
    color: #b7b9cc;
}

.sidebar-light .nav-item .nav-link {
    color: #858796;
}

    .sidebar-light .nav-item .nav-link i {
        color: #9e9e9e;
    }

    .sidebar-light .nav-item .nav-link:active,
    .sidebar-light .nav-item .nav-link:focus,
    .sidebar-light .nav-item .nav-link:hover {
        color: #6e707e;
        background-color: #eeeeee;
    }

        .sidebar-light .nav-item .nav-link:active i,
        .sidebar-light .nav-item .nav-link:focus i,
        .sidebar-light .nav-item .nav-link:hover i {
            color: #6e707e;
        }

    .sidebar-light .nav-item .nav-link[data-toggle="collapse"]::after {
        color: #b7b9cc;
    }

.sidebar-light .nav-item.active .nav-link {
    color: #6e707e;
}

    .sidebar-light .nav-item.active .nav-link i {
        color: #6e707e;
    }

.sidebar-light #sidebarToggle {
    background-color: #eaecf4;
}

    .sidebar-light #sidebarToggle::after {
        color: #b7b9cc;
    }

    .sidebar-light #sidebarToggle:hover {
        background-color: #dddfeb;
    }

.sidebar-dark .sidebar-brand {
    color: #fff;
}

.sidebar-dark hr.sidebar-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-dark .sidebar-heading {
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-dark .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

    .sidebar-dark .nav-item .nav-link i {*/
/* color: rgba(255, 255, 255, 0.3); */
/*color: #d1d3e2;
    }

    .sidebar-dark .nav-item .nav-link:active,
    .sidebar-dark .nav-item .nav-link:focus,
    .sidebar-dark .nav-item .nav-link:hover {
        color: #fff;
    }

        .sidebar-dark .nav-item .nav-link:active i,
        .sidebar-dark .nav-item .nav-link:focus i,
        .sidebar-dark .nav-item .nav-link:hover i {
            color: #fff;
        }

    .sidebar-dark .nav-item .nav-link[data-toggle="collapse"]::after {
        color: rgba(255, 255, 255, 0.5);
    }

.sidebar-dark .nav-item.active .nav-link {
    color: #fff;
}

    .sidebar-dark .nav-item.active .nav-link i {
        color: #fff;
    }

.sidebar-dark #sidebarToggle {
    background-color: rgba(255, 255, 255, 0.2);
}

    .sidebar-dark #sidebarToggle::after {
        color: rgba(255, 255, 255, 0.5);
    }

    .sidebar-dark #sidebarToggle:hover {
        background-color: rgba(255, 255, 255, 0.25);
    }

.sidebar-dark.toggled #sidebarToggle::after {
    color: rgba(255, 255, 255, 0.5);
}*/

.btn-icon-split {
    padding: 0;
    overflow: hidden;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .btn-icon-split .icon {
        background: rgba(0, 0, 0, 0.15);
        display: inline-block;
        padding: 0.375rem 0.75rem;
    }

    .btn-icon-split .text {
        display: inline-block;
        padding: 0.375rem 0.75rem;
    }

    .btn-icon-split.btn-sm .icon,
    .btn-group-sm > .btn-icon-split.btn .icon {
        padding: 0.25rem 0.5rem;
    }

    .btn-icon-split.btn-sm .text,
    .btn-group-sm > .btn-icon-split.btn .text {
        padding: 0.25rem 0.5rem;
    }

    .btn-icon-split.btn-lg .icon,
    .btn-group-lg > .btn-icon-split.btn .icon {
        padding: 0.5rem 1rem;
    }

    .btn-icon-split.btn-lg .text,
    .btn-group-lg > .btn-icon-split.btn .text {
        padding: 0.5rem 1rem;
    }

.card .card-header .dropdown {
    line-height: 1;
}

    .card .card-header .dropdown .dropdown-menu {
        line-height: 1.5;
    }

.card .card-header[data-toggle="collapse"] {
    text-decoration: none;
    position: relative;
    padding: 0.75rem 3.25rem 0.75rem 1.25rem;
}

    .card .card-header[data-toggle="collapse"]::after {
        position: absolute;
        right: 0;
        top: 0;
        padding-right: 1.725rem;
        line-height: 51px;
        font-weight: 900;
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
    }

    .card .card-header[data-toggle="collapse"].collapsed {
        border-radius: 0.35rem;
    }

        .card .card-header[data-toggle="collapse"].collapsed::after {
            content: '\f105';
        }

.chart-area {
    position: relative;
    height: 10rem;
    width: 100%;
}

@media (min-width: 768px) {
    .chart-area {
        height: 20rem;
    }
}

.chart-bar {
    position: relative;
    height: 10rem;
    width: 100%;
}

@media (min-width: 768px) {
    .chart-bar {
        height: 20rem;
    }
}

.chart-pie {
    position: relative;
    height: 15rem;
    width: 100%;
}

@media (min-width: 768px) {
    .chart-pie {
        height: calc(20rem - 43px) !important;
    }
}

.bg-login-image {
    background-position: center;
    background-size: cover;
}

.bg-register-image {
    background-position: center;
    background-size: cover;
}

.bg-password-image {
    background-position: center;
    background-size: cover;
}

.error {
    color: red;
    position: relative;
    line-height: 1;
    width: 12.5rem;
}

@-webkit-keyframes noise-anim {
    0% {
        clip: rect(31px, 9999px, 91px, 0);
    }

    5% {
        clip: rect(70px, 9999px, 29px, 0);
    }

    10% {
        clip: rect(3px, 9999px, 56px, 0);
    }

    15% {
        clip: rect(7px, 9999px, 78px, 0);
    }

    20% {
        clip: rect(97px, 9999px, 4px, 0);
    }

    25% {
        clip: rect(24px, 9999px, 60px, 0);
    }

    30% {
        clip: rect(80px, 9999px, 41px, 0);
    }

    35% {
        clip: rect(78px, 9999px, 14px, 0);
    }

    40% {
        clip: rect(20px, 9999px, 23px, 0);
    }

    45% {
        clip: rect(70px, 9999px, 61px, 0);
    }

    50% {
        clip: rect(65px, 9999px, 89px, 0);
    }

    55% {
        clip: rect(74px, 9999px, 25px, 0);
    }

    60% {
        clip: rect(76px, 9999px, 84px, 0);
    }

    65% {
        clip: rect(56px, 9999px, 10px, 0);
    }

    70% {
        clip: rect(85px, 9999px, 58px, 0);
    }

    75% {
        clip: rect(46px, 9999px, 71px, 0);
    }

    80% {
        clip: rect(6px, 9999px, 64px, 0);
    }

    85% {
        clip: rect(20px, 9999px, 84px, 0);
    }

    90% {
        clip: rect(57px, 9999px, 26px, 0);
    }

    95% {
        clip: rect(36px, 9999px, 92px, 0);
    }

    100% {
        clip: rect(12px, 9999px, 53px, 0);
    }
}

@keyframes noise-anim {
    0% {
        clip: rect(31px, 9999px, 91px, 0);
    }

    5% {
        clip: rect(70px, 9999px, 29px, 0);
    }

    10% {
        clip: rect(3px, 9999px, 56px, 0);
    }

    15% {
        clip: rect(7px, 9999px, 78px, 0);
    }

    20% {
        clip: rect(97px, 9999px, 4px, 0);
    }

    25% {
        clip: rect(24px, 9999px, 60px, 0);
    }

    30% {
        clip: rect(80px, 9999px, 41px, 0);
    }

    35% {
        clip: rect(78px, 9999px, 14px, 0);
    }

    40% {
        clip: rect(20px, 9999px, 23px, 0);
    }

    45% {
        clip: rect(70px, 9999px, 61px, 0);
    }

    50% {
        clip: rect(65px, 9999px, 89px, 0);
    }

    55% {
        clip: rect(74px, 9999px, 25px, 0);
    }

    60% {
        clip: rect(76px, 9999px, 84px, 0);
    }

    65% {
        clip: rect(56px, 9999px, 10px, 0);
    }

    70% {
        clip: rect(85px, 9999px, 58px, 0);
    }

    75% {
        clip: rect(46px, 9999px, 71px, 0);
    }

    80% {
        clip: rect(6px, 9999px, 64px, 0);
    }

    85% {
        clip: rect(20px, 9999px, 84px, 0);
    }

    90% {
        clip: rect(57px, 9999px, 26px, 0);
    }

    95% {
        clip: rect(36px, 9999px, 92px, 0);
    }

    100% {
        clip: rect(12px, 9999px, 53px, 0);
    }
}

.error:after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 #e74a3b;
    top: 0;
    color: #5a5c69;
    background: #f8f9fc;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 2s infinite linear alternate-reverse;
}

@-webkit-keyframes noise-anim-2 {
    0% {
        clip: rect(68px, 9999px, 1px, 0);
    }

    5% {
        clip: rect(44px, 9999px, 53px, 0);
    }

    10% {
        clip: rect(72px, 9999px, 43px, 0);
    }

    15% {
        clip: rect(18px, 9999px, 16px, 0);
    }

    20% {
        clip: rect(6px, 9999px, 72px, 0);
    }

    25% {
        clip: rect(18px, 9999px, 16px, 0);
    }

    30% {
        clip: rect(93px, 9999px, 46px, 0);
    }

    35% {
        clip: rect(100px, 9999px, 33px, 0);
    }

    40% {
        clip: rect(27px, 9999px, 29px, 0);
    }

    45% {
        clip: rect(5px, 9999px, 64px, 0);
    }

    50% {
        clip: rect(40px, 9999px, 65px, 0);
    }

    55% {
        clip: rect(72px, 9999px, 49px, 0);
    }

    60% {
        clip: rect(44px, 9999px, 39px, 0);
    }

    65% {
        clip: rect(84px, 9999px, 45px, 0);
    }

    70% {
        clip: rect(99px, 9999px, 56px, 0);
    }

    75% {
        clip: rect(87px, 9999px, 20px, 0);
    }

    80% {
        clip: rect(52px, 9999px, 8px, 0);
    }

    85% {
        clip: rect(64px, 9999px, 22px, 0);
    }

    90% {
        clip: rect(51px, 9999px, 69px, 0);
    }

    95% {
        clip: rect(2px, 9999px, 11px, 0);
    }

    100% {
        clip: rect(19px, 9999px, 40px, 0);
    }
}

@keyframes noise-anim-2 {
    0% {
        clip: rect(68px, 9999px, 1px, 0);
    }

    5% {
        clip: rect(44px, 9999px, 53px, 0);
    }

    10% {
        clip: rect(72px, 9999px, 43px, 0);
    }

    15% {
        clip: rect(18px, 9999px, 16px, 0);
    }

    20% {
        clip: rect(6px, 9999px, 72px, 0);
    }

    25% {
        clip: rect(18px, 9999px, 16px, 0);
    }

    30% {
        clip: rect(93px, 9999px, 46px, 0);
    }

    35% {
        clip: rect(100px, 9999px, 33px, 0);
    }

    40% {
        clip: rect(27px, 9999px, 29px, 0);
    }

    45% {
        clip: rect(5px, 9999px, 64px, 0);
    }

    50% {
        clip: rect(40px, 9999px, 65px, 0);
    }

    55% {
        clip: rect(72px, 9999px, 49px, 0);
    }

    60% {
        clip: rect(44px, 9999px, 39px, 0);
    }

    65% {
        clip: rect(84px, 9999px, 45px, 0);
    }

    70% {
        clip: rect(99px, 9999px, 56px, 0);
    }

    75% {
        clip: rect(87px, 9999px, 20px, 0);
    }

    80% {
        clip: rect(52px, 9999px, 8px, 0);
    }

    85% {
        clip: rect(64px, 9999px, 22px, 0);
    }

    90% {
        clip: rect(51px, 9999px, 69px, 0);
    }

    95% {
        clip: rect(2px, 9999px, 11px, 0);
    }

    100% {
        clip: rect(19px, 9999px, 40px, 0);
    }
}

.error:before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: 1px 0 #3f51b5;
    top: 0;
    color: #5a5c69;
    background: #f8f9fc;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim-2 3s infinite linear alternate-reverse;
}

footer.sticky-footer {
    padding: 5px;
    flex: 0 0 2em;
    margin-top: auto;
    /*    -ms-flex-negative: 0;
    flex-shrink: 0;*/
    -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

    footer.sticky-footer .copyright {
        line-height: 1;
        font-size: 0.8rem;
    }

        footer.sticky-footer .copyright a {
            color: #455a64;
        }

            footer.sticky-footer .copyright a:hover {
                text-decoration: none;
            }

/*body.sidebar-toggled footer.sticky-footer {
    width: 100%;
}*/

.bg-blue {
    background-color: #e8eaf6 !important;
}

.table-flush td,
.table-flush th {
    border-right: 0;
    border-left: 0;
}

.table-flush tbody tr:first-child td,
.table-flush tbody tr:first-child th {
    border-top: 0;
}

.table-flush tbody tr:last-child td,
.table-flush tbody tr:last-child th {
    border-bottom: 0;
}

.card .table {
    margin-bottom: 0;
}

    .card .table td,
    .card .table th {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

.customer-message {
    border-bottom: 1px solid #e3e6f0;
    padding-bottom: 10px;
    padding-top: 10px;
}

    .customer-message:hover {
        background-color: #F8F9FC
    }

    .customer-message a .message-title {
        padding-right: 1.3rem;
        padding-left: 1.3rem;
    }

    .customer-message a .message-time {
        padding-right: 1.3rem;
        padding-left: 1.3rem;
    }

    .customer-message a:hover {
        text-decoration: none;
    }

.btn-outline-light {
    color: #373840;
}

.card {
    -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

.input-group-append .btn {
    -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
}

    .input-group-append .btn:hover {
        -webkit-box-shadow: 0 0.125rem 0.3rem 0 rgba(58, 59, 69, 0.4) !important;
        box-shadow: 0 0.125rem 0.3rem 0 rgba(58, 59, 69, 0.4) !important;
    }

.form-control:focus {
    border: 1px solid #2964A8;
}

.input-group-append span {
    -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
    color: #fff;
    background-color: #2964A8;
    border-color: #2964A8;
}

.input-group-prepend span {
    -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;
    color: #fff;
    background-color: #2964A8;
    border-color: #2964A8;
}

.bg-login-image {
    background-size: cover;
    background-position: center;
}

#hangfireIframe {
    width: 100%;
    height: 100vh;
}

.map-menu-item {
    cursor: pointer;
}

#analyseButton:focus {
    outline: none !important;
    box-shadow: none !important;
}

.rotate-180 {
    transform: rotate(-180deg);
}

#mapAnalysis {
    /*    width: calc(100% - 2em);
    box-sizing: border-box;*/
    /*    margin: 1em;*/
}

.mapAnalysisNav {
    width: 100% !important;
}

    .mapAnalysisNav nav > .nav.nav-tabs {
        border: none;
        color: #fff;
        background: #272e38;
        border-radius: 0;
    }

    .mapAnalysisNav nav > div a.nav-item.nav-link {
        border: none;
        /*    padding: 18px 25px;*/
        color: #fff;
        background: #272e38;
        border-radius: 0;
    }

        .mapAnalysisNav nav > div a.nav-item.nav-link.active:after {
            content: "";
            position: relative;
            bottom: -45px;
            left: -10%;
            border: 15px solid transparent;
            border-top-color: #4AA53F;
        }

    .mapAnalysisNav .tab-content {
        /*        background: #fdfdfd;*/
        /*        line-height: 25px;*/
        /*        border: 2px solid #4AA53F;*/
        /*border-bottom: 5px solid #4AA53F;*/
        padding: 30px 25px;
    }

    .mapAnalysisNav nav > div a.nav-item.nav-link:hover,
    .mapAnalysisNav nav > div a.nav-item.nav-link:focus,
    .mapAnalysisNav nav > div a.nav-item.nav-link.active {
        border: none;
        background: #4AA53F;
        color: #fff;
        border-radius: 0;
        transition: background 0.20s linear;
    }

/* The popup bubble for google map */
.popup-bubble {
    /* Position the bubble centred-above its parent. */
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    /* Style the bubble. */
    background-color: white;
    padding: 5px;
    border-radius: 5px;
    font-family: sans-serif;
    overflow-y: auto;
    max-height: 60px;
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
}

/* The parent of the bubble. A zero-height div at the top of the tip. */
.popup-bubble-anchor {
    /* Position the div a fixed distance above the tip. */
    position: absolute;
    width: 100%;
    bottom: 8px;
    left: 0;
}

    /* This element draws the tip. */
    .popup-bubble-anchor::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        /* Center the tip horizontally. */
        transform: translate(-50%, 0);
        /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
        width: 0;
        height: 0;
        /* The tip is 8px high, and 12px wide. */
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid white;
    }

/* JavaScript will position this div at the bottom of the popup tip. */
.popup-container {
    cursor: auto;
    height: 0;
    position: absolute;
    /* The max width of the info window. */
    width: 200px;
}

/* BREADCRUMBS BEGIN */

.bread_crumb {
    list-style: none;
}

    .bread_crumb .icon {
        font-size: 14px;
    }

    .bread_crumb li {
        float: left;
    }

        .bread_crumb li a {
            text-decoration: none;
            color: #FFF;
        }

    .bread_crumb li {
        color: #FFF;
        display: block;
        background: #3498db;
        position: relative;
        height: 40px;
        line-height: 40px;
        padding: 0 10px 0 5px;
        text-align: center;
        margin-right: 23px;
    }

        .bread_crumb li:nth-child(even) {
            background-color: #2980b9;
        }

            .bread_crumb li:nth-child(even):before {
                border-color: #2980b9;
                border-left-color: transparent;
            }

            .bread_crumb li:nth-child(even):after {
                border-left-color: #2980b9;
            }

        .bread_crumb li:first-child a {
            padding-left: 15px;
            -moz-border-radius: 4px 0 0 4px;
            -webkit-border-radius: 4px;
            border-radius: 4px 0 0 4px;
        }

            .bread_crumb li:first-child a:before {
                border: none;
            }

        .bread_crumb li:before, .bread_crumb li:after {
            content: "";
            position: absolute;
            top: 0;
            border: 0 solid #3498db;
            border-width: 20px 10px;
            width: 0;
            height: 0;
        }

        .bread_crumb li:before {
            left: -20px;
            border-left-color: transparent;
        }

        .bread_crumb li:after {
            left: 100%;
            border-color: transparent;
            border-left-color: #3498db;
        }

        .bread_crumb li:hover {
            background-color: #1abc9c;
        }

            .bread_crumb li:hover:before {
                border-color: #1abc9c;
                border-left-color: transparent;
            }

            .bread_crumb li:hover:after {
                border-left-color: #1abc9c;
            }

        .bread_crumb li:active {
            background-color: #16a085;
        }

            .bread_crumb li:active:before {
                border-color: #16a085;
                border-left-color: transparent;
            }

            .bread_crumb li:active:after {
                border-left-color: #16a085;
            }

/* BREADCRUMBS END */

/* DROPDOWN MEGA MENU START */

.megamenu {
    position: static
}

    .megamenu .dropdown-menu {
        background: none;
        border: none;
        width: 100%
    }

.text-uppercase {
    letter-spacing: 0.08em
}

.brand-size {
    width: 2rem;
    height: 2rem;
}

.navbar-nav > li > a {
    color: white !important;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

.navbar-brand-icon {
    width: 2rem;
    height: 2rem;
}

/* DROPDOWN MEGA MENU END */

/* VIEW MAP LAYOUT START */

#slideout {
    /* position: absolute; */
    position: fixed;
    top: 200px;
    left: 0;
    width: 35px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    z-index: 1;
}

#slideout_tab {
    position: relative;
    top: 0;
    right: 0;
    padding: 12px 12px 12px 6px;
    text-align: center;
    background: #86B135;
    color: #fff;
    cursor: pointer;
    -webkit-border-radius: 0px 5px 5px 0px;
    -moz-border-radius: 0px 5px 5px 0px;
    border-radius: 0px 5px 5px 0px;
}

#slideout_inner {
    position: absolute;
    top: -50px;
    right: 35px;
    background: #86B135;
    width: 250px;
    padding: 15px;
    /*    height: 200px;*/
    cursor: auto;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
}

#showblock:checked + #slideout {
    left: 250px;
}

#showblock {
    display: none;
}

/* VIEW MAP LAYOUT END */

.fullscreen {
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

/* This is to make the text in a disabled selectpicker look less faded */
.bootstrap-select > .disabled {
    color: #212529 !important;
}

div.dt-buttons {
    position: relative;
    float: left;
    padding-right: 1rem;
}

/* For ellipsis when text to long in table */
.table td:not(.action) {
    max-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* dealing with long select values that make the ui go awry */
@media (max-width:992px) {
    .bootstrap-select .dropdown-menu {
        max-width: 100% !important;
    }
}

@media (min-width:992px) {
    .bootstrap-select .dropdown-menu {
        max-width: 200% !important;
    }
}

div[disabled] {
    pointer-events: none;
    opacity: 0.4;
}

.isdisabled {
    pointer-events: none;
    opacity: 0.5;
}


/*show borders between headers to activate resize*/
table th {
    border-left: 1px solid #dee2e6 !important;
    border-right: 1px solid #dee2e6 !important;
}

    table th:first-child {
        border-left: none !important;
    }

    table th:last-child {
        border-right: none !important;
    }

.selectpicker .no-arrow {
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
}

.blackSVG {
    filter: invert(100%);
}