/*
Author         : G-axon
Template Name  : Jumbo jQuery - Admin Template
Version        : 1.0
*/
/*=============================================================
    Table of Contents:
    ==============================
    A. Globals
        01. Custom Animation
    B. Base
        01. Base Styles
        02. Typography Styles
    C. Layouts
        01. App Layout Styles
        02. Header Styles
        03. Navbar Styles
        04. Main Content Styles
        05. Sidebar Styles
        06. Right Sidebar Styles
        07. Footer Styles
        08. Loader Styles
    D. UI Components
        01. Alert Styles
        02. Avatar Styles
        03. Accordions Styles
        04. Badges Styles
        05. Blockquotes Styles
        06. Bottom Navigation Styles
        07. Breadcrumb Styles
        08. Button Styles
        09. Button Group Styles
        10. Callout Styles
        11. Cards Styles
        12. Charts Styles
        13. Carousel Styles
        14. Dropdown Menus Styles
        15. Dropzone Styles
        16. Form Styles
        17. Icons Styles
        18. Input Style
        19. Label Styles
        20. List Styles
        21. Nav Style
        22. Pricing Tables Styles
        23. Progressbar Styles
        24. Popover Styles
        25. Pager Styles
        26. Tables Styles
        27. Tabs Styles
        28. Testimonial Styles
        29. Time Lines Style
    E. Pages
        01. App Module Styles
        02. Contact Page Styles
        03. Color Picker Styles
        04. Dashboard Styles
        05. Error Styles
        06. Editor Styles
        07. Ecommerce Styles
        08. Faq Styles
        09. Login Styles
        10. Portfolio Styles
        11. Picker Styles
        12. Sweet Alert Styles
        13. Vector Map Styles
    F. Slider
        01. Light Slider Styles
        02. Owl Carousel Style
    G. Modules
        01. Module Style
        02. Chat Module Styles
        03. Contact Module Styles
        04. Calendar Module Style
        05. Mails Module Styles
    H. Color Theme
        01. Theme Indigo Styles
        02. Theme Cyan Styles
        03. Theme Amber Styles
        04. Theme Deep Orange Styles
        05. Theme Pink Styles
        06. Theme Blue Styles
        07. Theme Deep Purple Styles
        08. Theme Green Styles
        09. Theme Dark Indigo Styles
        10. Theme Dark Cyan Styles
        11. Theme Dark Amber Styles
        12. Theme Dark Deep Orange Styles
        13. Theme Dark Pink Styles
        14. Theme Dark Blue Styles
        15. Theme Dark Deep Purple Styles
        16. Theme Dark Green Styles
        17. Theme Dark Styles
  =============================================================*/
/* Globals
   ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");

.gx-menu-icon .menu-icon {
    position: relative;
    width: 70%;
    height: 1px;
    min-height: 1px;
    color: inherit;
    background-color: #fff;
    display: block;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

    .gx-menu-icon .menu-icon:after, .gx-menu-icon .menu-icon:before {
        position: absolute;
        display: block;
        color: inherit;
        background-color: inherit;
        left: 0;
        height: 1px;
        min-height: 1px;
        content: "";
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .gx-menu-icon .menu-icon:after {
        width: 120%;
        bottom: -6px;
    }

    .gx-menu-icon .menu-icon:before {
        width: 130%;
        top: -6px;
    }

.gx-menu-icon:hover .menu-icon {
    width: 100%;
}

    .gx-menu-icon:hover .menu-icon:after, .gx-menu-icon:hover .menu-icon:before {
        width: 100%;
    }

.size-50, .color-option li a, .color-option li a:before, .user-avatar, .gx-fab-btn {
    height: 50px !important;
    width: 50px !important;
    line-height: 50px;
}

.size-30, .gx-menu-icon, .gx-btn-fab-xs, .icon {
    height: 40px !important;
    width: 40px !important;
    line-height: 30px;
}

.size-40, .gx-btn-fab-sm, .chat-item .user-avatar {
    height: 40px !important;
    width: 40px !important;
    line-height: 40px;
}

.size-60, .gx-btn-fab-lg {
    height: 60px !important;
    width: 60px !important;
    line-height: 60px;
}

.size-80 {
    height: 80px !important;
    width: 80px !important;
    line-height: 80px;
}

.size-100, .user-list .user-avatar {
    height: 100px !important;
    width: 100px !important;
    line-height: 100px;
}

.size-120, .profile-intro img.avatar-circle {
    height: 120px !important;
    width: 120px !important;
    line-height: 120px;
}

.icon-addon {
    display: inline-block;
    text-align: center;
    background-color: inherit;
}

.page-heading, .gx-card {
    padding: 18px 24px;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 24px;
    background-color: #fff;
    border-radius: 2px;
    position: relative;
}

/* Ripple magic */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

    .ripple-effect:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .ripple-effect:hover:after {
        animation: ripple 1s ease-out;
    }

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    20% {
        transform: scale(60, 60);
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: scale(100, 100);
    }
}

@-webkit-keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    20% {
        transform: scale(60, 60);
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: scale(100, 100);
    }
}

.quick-menu .icons-alert:after {
    display: block;
    -webkit-box-shadow: 0 0 0 rgba(244, 67, 54, 0.4);
    -moz-box-shadow: 0 0 0 rgba(244, 67, 54, 0.4);
    -o-box-shadow: 0 0 0 rgba(244, 67, 54, 0.4);
    box-shadow: 0 0 0 rgba(244, 67, 54, 0.4);
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
        box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
    }
}

.chat-mode.online, .chat-mode.offline {
    display: inline-block;
    -webkit-box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    -moz-box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    -o-box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: online 2s infinite;
}

@-webkit-keyframes online {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes online {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.chat-mode.away {
    display: inline-block;
    -webkit-box-shadow: 0 0 0 rgba(255, 193, 7, 0.4);
    -moz-box-shadow: 0 0 0 rgba(255, 193, 7, 0.4);
    -o-box-shadow: 0 0 0 rgba(255, 193, 7, 0.4);
    box-shadow: 0 0 0 rgba(255, 193, 7, 0.4);
    animation: away 2s infinite;
}

@-webkit-keyframes away {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

@keyframes away {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}
/*Different size images set in Equal block height and width*/
.grid-thumb-equal, .brand-logo {
    position: relative;
    padding-bottom: 68%;
    height: 0;
    width: 100%;
    overflow: hidden;
}

    .grid-thumb-cover, .brand-logo .brand-logo-inner {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }

        .grid-thumb-cover img {
            height: auto;
            max-width: 100%;
            min-height: 100%;
            object-fit: cover;
            width: 100%;
        }

a.btn-info, a.btn-danger, a.btn-warning, a.btn-success, a.btn-dark, a.badge-success, a.badge-danger, a.badge-warning, a.badge-info, a.badge-dark {
    color: #fff !important;
}

    a.btn-info:hover, a.btn-danger:hover, a.btn-warning:hover, a.btn-success:hover, a.btn-dark:hover, a.badge-success:hover, a.badge-danger:hover, a.badge-warning:hover, a.badge-info:hover, a.badge-dark:hover, a.btn-info:focus, a.btn-danger:focus, a.btn-warning:focus, a.btn-success:focus, a.btn-dark:focus, a.badge-success:focus, a.badge-danger:focus, a.badge-warning:focus, a.badge-info:focus, a.badge-dark:focus {
        color: #fff !important;
    }

.carousel-control-prev, .carousel-control-next {
    cursor: pointer;
}

.btn:not([disabled]):not(.disabled):active,
.btn-info:not([disabled]):not(.disabled):active,
.btn-success:not([disabled]):not(.disabled):active,
.btn-warning:not([disabled]):not(.disabled):active,
.btn-danger:not([disabled]):not(.disabled):active,
.btn-light:not([disabled]):not(.disabled):active,
.btn-dark:not([disabled]):not(.disabled):active,
.btn-primary:not([disabled]):not(.disabled):active,
.btn-secondary:not([disabled]):not(.disabled):active, .btn:not([disabled]):not(.disabled).active,
.btn-info:not([disabled]):not(.disabled).active,
.btn-success:not([disabled]):not(.disabled).active,
.btn-warning:not([disabled]):not(.disabled).active,
.btn-danger:not([disabled]):not(.disabled).active,
.btn-light:not([disabled]):not(.disabled).active,
.btn-dark:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled).active,
.btn-secondary:not([disabled]):not(.disabled).active {
    background-image: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

    .btn:not([disabled]):not(.disabled):active:focus,
    .btn-info:not([disabled]):not(.disabled):active:focus,
    .btn-success:not([disabled]):not(.disabled):active:focus,
    .btn-warning:not([disabled]):not(.disabled):active:focus,
    .btn-danger:not([disabled]):not(.disabled):active:focus,
    .btn-light:not([disabled]):not(.disabled):active:focus,
    .btn-dark:not([disabled]):not(.disabled):active:focus,
    .btn-primary:not([disabled]):not(.disabled):active:focus,
    .btn-secondary:not([disabled]):not(.disabled):active:focus, .btn:not([disabled]):not(.disabled).active:focus,
    .btn-info:not([disabled]):not(.disabled).active:focus,
    .btn-success:not([disabled]):not(.disabled).active:focus,
    .btn-warning:not([disabled]):not(.disabled).active:focus,
    .btn-danger:not([disabled]):not(.disabled).active:focus,
    .btn-light:not([disabled]):not(.disabled).active:focus,
    .btn-dark:not([disabled]):not(.disabled).active:focus,
    .btn-primary:not([disabled]):not(.disabled).active:focus,
    .btn-secondary:not([disabled]):not(.disabled).active:focus {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
    }

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.mw-25 {
    max-width: 25% !important;
}

.mw-50 {
    max-width: 50% !important;
}

.mw-75 {
    max-width: 75% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-25 {
    max-height: 25% !important;
}

.mh-50 {
    max-height: 50% !important;
}

.mh-75 {
    max-height: 75% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.bg-primary {
    background-color: #3f51b5;
}

.text-primary {
    color: #3f51b5;
}

.bg-primary.lighten-5 {
    background-color: #e8eaf6;
}

.text-primary.text-lighten-5 {
    color: #e8eaf6;
}

.bg-primary.lighten-4 {
    background-color: #c5cae9;
}

.text-primary.text-lighten-4 {
    color: #c5cae9;
}

.bg-primary.lighten-3 {
    background-color: #9fa8da;
}

.text-primary.text-lighten-3 {
    color: #9fa8da;
}

.bg-primary.lighten-2 {
    background-color: #7986cb;
}

.text-primary.text-lighten-2 {
    color: #7986cb;
}

.bg-primary.lighten-1 {
    background-color: #5c6bc0;
}

.text-primary.text-lighten-1 {
    color: #5c6bc0;
}

.bg-primary.darken-1 {
    background-color: #3949ab;
}

.text-primary.text-darken-1 {
    color: #3949ab;
}

.bg-primary.darken-2 {
    background-color: #303f9f;
}

.text-primary.text-darken-2 {
    color: #303f9f;
}

.bg-primary.darken-3 {
    background-color: #283593;
}

.text-primary.text-darken-3 {
    color: #283593;
}

.bg-primary.darken-4 {
    background-color: #1a237e;
}

.text-primary.text-darken-4 {
    color: #1a237e;
}

.bg-primary.accent-1 {
    background-color: #8c9eff;
}

.text-primary.text-accent-1 {
    color: #8c9eff;
}

.bg-primary.accent-2 {
    background-color: #536dfe;
}

.text-primary.text-accent-2 {
    color: #536dfe;
}

.bg-primary.accent-3 {
    background-color: #3d5afe;
}

.text-primary.text-accent-3 {
    color: #3d5afe;
}

.bg-primary.accent-4 {
    background-color: #304ffe;
}

.text-primary.text-accent-4 {
    color: #304ffe;
}

.bg-red {
    background-color: #F44336;
}

.text-red {
    color: #F44336;
}

.bg-red.lighten-5 {
    background-color: #FFEBEE;
}

.text-red.text-lighten-5 {
    color: #FFEBEE;
}

.bg-red.lighten-4 {
    background-color: #FFCDD2;
}

.text-red.text-lighten-4 {
    color: #FFCDD2;
}

.bg-red.lighten-3 {
    background-color: #EF9A9A;
}

.text-red.text-lighten-3 {
    color: #EF9A9A;
}

.bg-red.lighten-2 {
    background-color: #E57373;
}

.text-red.text-lighten-2 {
    color: #E57373;
}

.bg-red.lighten-1 {
    background-color: #EF5350;
}

.text-red.text-lighten-1 {
    color: #EF5350;
}

.bg-red.darken-1 {
    background-color: #E53935;
}

.text-red.text-darken-1 {
    color: #E53935;
}

.bg-red.darken-2 {
    background-color: #D32F2F;
}

.text-red.text-darken-2 {
    color: #D32F2F;
}

.bg-red.darken-3 {
    background-color: #C62828;
}

.text-red.text-darken-3 {
    color: #C62828;
}

.bg-red.darken-4 {
    background-color: #B71C1C;
}

.text-red.text-darken-4 {
    color: #B71C1C;
}

.bg-red.accent-1 {
    background-color: #FF8A80;
}

.text-red.text-accent-1 {
    color: #FF8A80;
}

.bg-red.accent-2 {
    background-color: #FF5252;
}

.text-red.text-accent-2 {
    color: #FF5252;
}

.bg-red.accent-3 {
    background-color: #FF1744;
}

.text-red.text-accent-3 {
    color: #FF1744;
}

.bg-red.accent-4 {
    background-color: #D50000;
}

.text-red.text-accent-4 {
    color: #D50000;
}

.bg-pink {
    background-color: #e91e63;
}

.text-pink {
    color: #e91e63;
}

.bg-pink.lighten-5 {
    background-color: #fce4ec;
}

.text-pink.text-lighten-5 {
    color: #fce4ec;
}

.bg-pink.lighten-4 {
    background-color: #f8bbd0;
}

.text-pink.text-lighten-4 {
    color: #f8bbd0;
}

.bg-pink.lighten-3 {
    background-color: #f48fb1;
}

.text-pink.text-lighten-3 {
    color: #f48fb1;
}

.bg-pink.lighten-2 {
    background-color: #f06292;
}

.text-pink.text-lighten-2 {
    color: #f06292;
}

.bg-pink.lighten-1 {
    background-color: #ec407a;
}

.text-pink.text-lighten-1 {
    color: #ec407a;
}

.bg-pink.darken-1 {
    background-color: #d81b60;
}

.text-pink.text-darken-1 {
    color: #d81b60;
}

.bg-pink.darken-2 {
    background-color: #c2185b;
}

.text-pink.text-darken-2 {
    color: #c2185b;
}

.bg-pink.darken-3 {
    background-color: #ad1457;
}

.text-pink.text-darken-3 {
    color: #ad1457;
}

.bg-pink.darken-4 {
    background-color: #880e4f;
}

.text-pink.text-darken-4 {
    color: #880e4f;
}

.bg-pink.accent-1 {
    background-color: #ff80ab;
}

.text-pink.text-accent-1 {
    color: #ff80ab;
}

.bg-pink.accent-2 {
    background-color: #ff4081;
}

.text-pink.text-accent-2 {
    color: #ff4081;
}

.bg-pink.accent-3 {
    background-color: #f50057;
}

.text-pink.text-accent-3 {
    color: #f50057;
}

.bg-pink.accent-4 {
    background-color: #c51162;
}

.text-pink.text-accent-4 {
    color: #c51162;
}

.bg-purple {
    background-color: #9C27B0;
}

.text-purple {
    color: #9C27B0;
}

.bg-purple.lighten-5 {
    background-color: #f3e5f5;
}

.text-purple.text-lighten-5 {
    color: #f3e5f5;
}

.bg-purple.lighten-4 {
    background-color: #e1bee7;
}

.text-purple.text-lighten-4 {
    color: #e1bee7;
}

.bg-purple.lighten-3 {
    background-color: #ce93d8;
}

.text-purple.text-lighten-3 {
    color: #ce93d8;
}

.bg-purple.lighten-2 {
    background-color: #ba68c8;
}

.text-purple.text-lighten-2 {
    color: #ba68c8;
}

.bg-purple.lighten-1 {
    background-color: #ab47bc;
}

.text-purple.text-lighten-1 {
    color: #ab47bc;
}

.bg-purple.darken-1 {
    background-color: #8e24aa;
}

.text-purple.text-darken-1 {
    color: #8e24aa;
}

.bg-purple.darken-2 {
    background-color: #7b1fa2;
}

.text-purple.text-darken-2 {
    color: #7b1fa2;
}

.bg-purple.darken-3 {
    background-color: #6a1b9a;
}

.text-purple.text-darken-3 {
    color: #6a1b9a;
}

.bg-purple.darken-4 {
    background-color: #4a148c;
}

.text-purple.text-darken-4 {
    color: #4a148c;
}

.bg-purple.accent-1 {
    background-color: #ea80fc;
}

.text-purple.text-accent-1 {
    color: #ea80fc;
}

.bg-purple.accent-2 {
    background-color: #e040fb;
}

.text-purple.text-accent-2 {
    color: #e040fb;
}

.bg-purple.accent-3 {
    background-color: #d500f9;
}

.text-purple.text-accent-3 {
    color: #d500f9;
}

.bg-purple.accent-4 {
    background-color: #aa00ff;
}

.text-purple.text-accent-4 {
    color: #aa00ff;
}

.bg-deep-purple {
    background-color: #673ab7;
}

.text-deep-purple {
    color: #673ab7;
}

.bg-deep-purple.lighten-5 {
    background-color: #ede7f6;
}

.text-deep-purple.text-lighten-5 {
    color: #ede7f6;
}

.bg-deep-purple.lighten-4 {
    background-color: #d1c4e9;
}

.text-deep-purple.text-lighten-4 {
    color: #d1c4e9;
}

.bg-deep-purple.lighten-3 {
    background-color: #b39ddb;
}

.text-deep-purple.text-lighten-3 {
    color: #b39ddb;
}

.bg-deep-purple.lighten-2 {
    background-color: #9575cd;
}

.text-deep-purple.text-lighten-2 {
    color: #9575cd;
}

.bg-deep-purple.lighten-1 {
    background-color: #7e57c2;
}

.text-deep-purple.text-lighten-1 {
    color: #7e57c2;
}

.bg-deep-purple.darken-1 {
    background-color: #5e35b1;
}

.text-deep-purple.text-darken-1 {
    color: #5e35b1;
}

.bg-deep-purple.darken-2 {
    background-color: #512da8;
}

.text-deep-purple.text-darken-2 {
    color: #512da8;
}

.bg-deep-purple.darken-3 {
    background-color: #4527a0;
}

.text-deep-purple.text-darken-3 {
    color: #4527a0;
}

.bg-deep-purple.darken-4 {
    background-color: #311b92;
}

.text-deep-purple.text-darken-4 {
    color: #311b92;
}

.bg-deep-purple.accent-1 {
    background-color: #b388ff;
}

.text-deep-purple.text-accent-1 {
    color: #b388ff;
}

.bg-deep-purple.accent-2 {
    background-color: #7c4dff;
}

.text-deep-purple.text-accent-2 {
    color: #7c4dff;
}

.bg-deep-purple.accent-3 {
    background-color: #651fff;
}

.text-deep-purple.text-accent-3 {
    color: #651fff;
}

.bg-deep-purple.accent-4 {
    background-color: #6200ea;
}

.text-deep-purple.text-accent-4 {
    color: #6200ea;
}

.bg-indigo {
    background-color: #3f51b5;
}

.text-indigo {
    color: #3f51b5;
}

.bg-indigo.lighten-5 {
    background-color: #e8eaf6;
}

.text-indigo.text-lighten-5 {
    color: #e8eaf6;
}

.bg-indigo.lighten-4 {
    background-color: #c5cae9;
}

.text-indigo.text-lighten-4 {
    color: #c5cae9;
}

.bg-indigo.lighten-3 {
    background-color: #9fa8da;
}

.text-indigo.text-lighten-3 {
    color: #9fa8da;
}

.bg-indigo.lighten-2 {
    background-color: #7986cb;
}

.text-indigo.text-lighten-2 {
    color: #7986cb;
}

.bg-indigo.lighten-1 {
    background-color: #5c6bc0;
}

.text-indigo.text-lighten-1 {
    color: #5c6bc0;
}

.bg-indigo.darken-1 {
    background-color: #3949ab;
}

.text-indigo.text-darken-1 {
    color: #3949ab;
}

.bg-indigo.darken-2 {
    background-color: #303f9f;
}

.text-indigo.text-darken-2 {
    color: #303f9f;
}

.bg-indigo.darken-3 {
    background-color: #283593;
}

.text-indigo.text-darken-3 {
    color: #283593;
}

.bg-indigo.darken-4 {
    background-color: #1a237e;
}

.text-indigo.text-darken-4 {
    color: #1a237e;
}

.bg-indigo.accent-1 {
    background-color: #8c9eff;
}

.text-indigo.text-accent-1 {
    color: #8c9eff;
}

.bg-indigo.accent-2 {
    background-color: #536dfe;
}

.text-indigo.text-accent-2 {
    color: #536dfe;
}

.bg-indigo.accent-3 {
    background-color: #3d5afe;
}

.text-indigo.text-accent-3 {
    color: #3d5afe;
}

.bg-indigo.accent-4 {
    background-color: #304ffe;
}

.text-indigo.text-accent-4 {
    color: #304ffe;
}

.bg-blue {
    background-color: #2196F3;
}

.text-blue {
    color: #2196F3;
}

.bg-blue.lighten-5 {
    background-color: #E3F2FD;
}

.text-blue.text-lighten-5 {
    color: #E3F2FD;
}

.bg-blue.lighten-4 {
    background-color: #BBDEFB;
}

.text-blue.text-lighten-4 {
    color: #BBDEFB;
}

.bg-blue.lighten-3 {
    background-color: #90CAF9;
}

.text-blue.text-lighten-3 {
    color: #90CAF9;
}

.bg-blue.lighten-2 {
    background-color: #64B5F6;
}

.text-blue.text-lighten-2 {
    color: #64B5F6;
}

.bg-blue.lighten-1 {
    background-color: #42A5F5;
}

.text-blue.text-lighten-1 {
    color: #42A5F5;
}

.bg-blue.darken-1 {
    background-color: #1E88E5;
}

.text-blue.text-darken-1 {
    color: #1E88E5;
}

.bg-blue.darken-2 {
    background-color: #1976D2;
}

.text-blue.text-darken-2 {
    color: #1976D2;
}

.bg-blue.darken-3 {
    background-color: #1565C0;
}

.text-blue.text-darken-3 {
    color: #1565C0;
}

.bg-blue.darken-4 {
    background-color: #0D47A1;
}

.text-blue.text-darken-4 {
    color: #0D47A1;
}

.bg-blue.accent-1 {
    background-color: #82B1FF;
}

.text-blue.text-accent-1 {
    color: #82B1FF;
}

.bg-blue.accent-2 {
    background-color: #448AFF;
}

.text-blue.text-accent-2 {
    color: #448AFF;
}

.bg-blue.accent-3 {
    background-color: #2979FF;
}

.text-blue.text-accent-3 {
    color: #2979FF;
}

.bg-blue.accent-4 {
    background-color: #2962FF;
}

.text-blue.text-accent-4 {
    color: #2962FF;
}

.bg-light-blue {
    background-color: #03a9f4;
}

.text-light-blue {
    color: #03a9f4;
}

.bg-light-blue.lighten-5 {
    background-color: #e1f5fe;
}

.text-light-blue.text-lighten-5 {
    color: #e1f5fe;
}

.bg-light-blue.lighten-4 {
    background-color: #b3e5fc;
}

.text-light-blue.text-lighten-4 {
    color: #b3e5fc;
}

.bg-light-blue.lighten-3 {
    background-color: #81d4fa;
}

.text-light-blue.text-lighten-3 {
    color: #81d4fa;
}

.bg-light-blue.lighten-2 {
    background-color: #4fc3f7;
}

.text-light-blue.text-lighten-2 {
    color: #4fc3f7;
}

.bg-light-blue.lighten-1 {
    background-color: #29b6f6;
}

.text-light-blue.text-lighten-1 {
    color: #29b6f6;
}

.bg-light-blue.darken-1 {
    background-color: #039be5;
}

.text-light-blue.text-darken-1 {
    color: #039be5;
}

.bg-light-blue.darken-2 {
    background-color: #0288d1;
}

.text-light-blue.text-darken-2 {
    color: #0288d1;
}

.bg-light-blue.darken-3 {
    background-color: #0277bd;
}

.text-light-blue.text-darken-3 {
    color: #0277bd;
}

.bg-light-blue.darken-4 {
    background-color: #01579b;
}

.text-light-blue.text-darken-4 {
    color: #01579b;
}

.bg-light-blue.accent-1 {
    background-color: #80d8ff;
}

.text-light-blue.text-accent-1 {
    color: #80d8ff;
}

.bg-light-blue.accent-2 {
    background-color: #40c4ff;
}

.text-light-blue.text-accent-2 {
    color: #40c4ff;
}

.bg-light-blue.accent-3 {
    background-color: #00b0ff;
}

.text-light-blue.text-accent-3 {
    color: #00b0ff;
}

.bg-light-blue.accent-4 {
    background-color: #0091ea;
}

.text-light-blue.text-accent-4 {
    color: #0091ea;
}

.bg-cyan {
    background-color: #00bcd4;
}

.text-cyan {
    color: #00bcd4;
}

.bg-cyan.lighten-5 {
    background-color: #e0f7fa;
}

.text-cyan.text-lighten-5 {
    color: #e0f7fa;
}

.bg-cyan.lighten-4 {
    background-color: #b2ebf2;
}

.text-cyan.text-lighten-4 {
    color: #b2ebf2;
}

.bg-cyan.lighten-3 {
    background-color: #80deea;
}

.text-cyan.text-lighten-3 {
    color: #80deea;
}

.bg-cyan.lighten-2 {
    background-color: #4dd0e1;
}

.text-cyan.text-lighten-2 {
    color: #4dd0e1;
}

.bg-cyan.lighten-1 {
    background-color: #26c6da;
}

.text-cyan.text-lighten-1 {
    color: #26c6da;
}

.bg-cyan.darken-1 {
    background-color: #00acc1;
}

.text-cyan.text-darken-1 {
    color: #00acc1;
}

.bg-cyan.darken-2 {
    background-color: #0097a7;
}

.text-cyan.text-darken-2 {
    color: #0097a7;
}

.bg-cyan.darken-3 {
    background-color: #00838f;
}

.text-cyan.text-darken-3 {
    color: #00838f;
}

.bg-cyan.darken-4 {
    background-color: #006064;
}

.text-cyan.text-darken-4 {
    color: #006064;
}

.bg-cyan.accent-1 {
    background-color: #84ffff;
}

.text-cyan.text-accent-1 {
    color: #84ffff;
}

.bg-cyan.accent-2 {
    background-color: #18ffff;
}

.text-cyan.text-accent-2 {
    color: #18ffff;
}

.bg-cyan.accent-3 {
    background-color: #00e5ff;
}

.text-cyan.text-accent-3 {
    color: #00e5ff;
}

.bg-cyan.accent-4 {
    background-color: #00b8d4;
}

.text-cyan.text-accent-4 {
    color: #00b8d4;
}

.bg-teal {
    background-color: #009688;
}

.text-teal {
    color: #009688;
}

.bg-teal.lighten-5 {
    background-color: #e0f2f1;
}

.text-teal.text-lighten-5 {
    color: #e0f2f1;
}

.bg-teal.lighten-4 {
    background-color: #b2dfdb;
}

.text-teal.text-lighten-4 {
    color: #b2dfdb;
}

.bg-teal.lighten-3 {
    background-color: #80cbc4;
}

.text-teal.text-lighten-3 {
    color: #80cbc4;
}

.bg-teal.lighten-2 {
    background-color: #4db6ac;
}

.text-teal.text-lighten-2 {
    color: #4db6ac;
}

.bg-teal.lighten-1 {
    background-color: #26a69a;
}

.text-teal.text-lighten-1 {
    color: #26a69a;
}

.bg-teal.darken-1 {
    background-color: #00897b;
}

.text-teal.text-darken-1 {
    color: #00897b;
}

.bg-teal.darken-2 {
    background-color: #00796b;
}

.text-teal.text-darken-2 {
    color: #00796b;
}

.bg-teal.darken-3 {
    background-color: #00695c;
}

.text-teal.text-darken-3 {
    color: #00695c;
}

.bg-teal.darken-4 {
    background-color: #004d40;
}

.text-teal.text-darken-4 {
    color: #004d40;
}

.bg-teal.accent-1 {
    background-color: #a7ffeb;
}

.text-teal.text-accent-1 {
    color: #a7ffeb;
}

.bg-teal.accent-2 {
    background-color: #64ffda;
}

.text-teal.text-accent-2 {
    color: #64ffda;
}

.bg-teal.accent-3 {
    background-color: #1de9b6;
}

.text-teal.text-accent-3 {
    color: #1de9b6;
}

.bg-teal.accent-4 {
    background-color: #00bfa5;
}

.text-teal.text-accent-4 {
    color: #00bfa5;
}

.bg-green {
    background-color: #4CAF50;
}

.text-green {
    color: #4CAF50;
}

.bg-green.lighten-5 {
    background-color: #E8F5E9;
}

.text-green.text-lighten-5 {
    color: #E8F5E9;
}

.bg-green.lighten-4 {
    background-color: #C8E6C9;
}

.text-green.text-lighten-4 {
    color: #C8E6C9;
}

.bg-green.lighten-3 {
    background-color: #A5D6A7;
}

.text-green.text-lighten-3 {
    color: #A5D6A7;
}

.bg-green.lighten-2 {
    background-color: #81C784;
}

.text-green.text-lighten-2 {
    color: #81C784;
}

.bg-green.lighten-1 {
    background-color: #66BB6A;
}

.text-green.text-lighten-1 {
    color: #66BB6A;
}

.bg-green.darken-1 {
    background-color: #43A047;
}

.text-green.text-darken-1 {
    color: #43A047;
}

.bg-green.darken-2 {
    background-color: #388E3C;
}

.text-green.text-darken-2 {
    color: #388E3C;
}

.bg-green.darken-3 {
    background-color: #2E7D32;
}

.text-green.text-darken-3 {
    color: #2E7D32;
}

.bg-green.darken-4 {
    background-color: #1B5E20;
}

.text-green.text-darken-4 {
    color: #1B5E20;
}

.bg-green.accent-1 {
    background-color: #B9F6CA;
}

.text-green.text-accent-1 {
    color: #B9F6CA;
}

.bg-green.accent-2 {
    background-color: #69F0AE;
}

.text-green.text-accent-2 {
    color: #69F0AE;
}

.bg-green.accent-3 {
    background-color: #00E676;
}

.text-green.text-accent-3 {
    color: #00E676;
}

.bg-green.accent-4 {
    background-color: #00C853;
}

.text-green.text-accent-4 {
    color: #00C853;
}

.bg-light-green {
    background-color: #8bc34a;
}

.text-light-green {
    color: #8bc34a;
}

.bg-light-green.lighten-5 {
    background-color: #f1f8e9;
}

.text-light-green.text-lighten-5 {
    color: #f1f8e9;
}

.bg-light-green.lighten-4 {
    background-color: #dcedc8;
}

.text-light-green.text-lighten-4 {
    color: #dcedc8;
}

.bg-light-green.lighten-3 {
    background-color: #c5e1a5;
}

.text-light-green.text-lighten-3 {
    color: #c5e1a5;
}

.bg-light-green.lighten-2 {
    background-color: #aed581;
}

.text-light-green.text-lighten-2 {
    color: #aed581;
}

.bg-light-green.lighten-1 {
    background-color: #9ccc65;
}

.text-light-green.text-lighten-1 {
    color: #9ccc65;
}

.bg-light-green.darken-1 {
    background-color: #7cb342;
}

.text-light-green.text-darken-1 {
    color: #7cb342;
}

.bg-light-green.darken-2 {
    background-color: #689f38;
}

.text-light-green.text-darken-2 {
    color: #689f38;
}

.bg-light-green.darken-3 {
    background-color: #558b2f;
}

.text-light-green.text-darken-3 {
    color: #558b2f;
}

.bg-light-green.darken-4 {
    background-color: #33691e;
}

.text-light-green.text-darken-4 {
    color: #33691e;
}

.bg-light-green.accent-1 {
    background-color: #ccff90;
}

.text-light-green.text-accent-1 {
    color: #ccff90;
}

.bg-light-green.accent-2 {
    background-color: #b2ff59;
}

.text-light-green.text-accent-2 {
    color: #b2ff59;
}

.bg-light-green.accent-3 {
    background-color: #76ff03;
}

.text-light-green.text-accent-3 {
    color: #76ff03;
}

.bg-light-green.accent-4 {
    background-color: #64dd17;
}

.text-light-green.text-accent-4 {
    color: #64dd17;
}

.bg-lime {
    background-color: #cddc39;
}

.text-lime {
    color: #cddc39;
}

.bg-lime.lighten-5 {
    background-color: #f9fbe7;
}

.text-lime.text-lighten-5 {
    color: #f9fbe7;
}

.bg-lime.lighten-4 {
    background-color: #f0f4c3;
}

.text-lime.text-lighten-4 {
    color: #f0f4c3;
}

.bg-lime.lighten-3 {
    background-color: #e6ee9c;
}

.text-lime.text-lighten-3 {
    color: #e6ee9c;
}

.bg-lime.lighten-2 {
    background-color: #dce775;
}

.text-lime.text-lighten-2 {
    color: #dce775;
}

.bg-lime.lighten-1 {
    background-color: #d4e157;
}

.text-lime.text-lighten-1 {
    color: #d4e157;
}

.bg-lime.darken-1 {
    background-color: #c0ca33;
}

.text-lime.text-darken-1 {
    color: #c0ca33;
}

.bg-lime.darken-2 {
    background-color: #afb42b;
}

.text-lime.text-darken-2 {
    color: #afb42b;
}

.bg-lime.darken-3 {
    background-color: #9e9d24;
}

.text-lime.text-darken-3 {
    color: #9e9d24;
}

.bg-lime.darken-4 {
    background-color: #827717;
}

.text-lime.text-darken-4 {
    color: #827717;
}

.bg-lime.accent-1 {
    background-color: #f4ff81;
}

.text-lime.text-accent-1 {
    color: #f4ff81;
}

.bg-lime.accent-2 {
    background-color: #eeff41;
}

.text-lime.text-accent-2 {
    color: #eeff41;
}

.bg-lime.accent-3 {
    background-color: #c6ff00;
}

.text-lime.text-accent-3 {
    color: #c6ff00;
}

.bg-lime.accent-4 {
    background-color: #aeea00;
}

.text-lime.text-accent-4 {
    color: #aeea00;
}

.bg-yellow {
    background-color: #ffeb3b;
}

.text-yellow {
    color: #ffeb3b;
}

.bg-yellow.lighten-5 {
    background-color: #fffde7;
}

.text-yellow.text-lighten-5 {
    color: #fffde7;
}

.bg-yellow.lighten-4 {
    background-color: #fff9c4;
}

.text-yellow.text-lighten-4 {
    color: #fff9c4;
}

.bg-yellow.lighten-3 {
    background-color: #fff59d;
}

.text-yellow.text-lighten-3 {
    color: #fff59d;
}

.bg-yellow.lighten-2 {
    background-color: #fff176;
}

.text-yellow.text-lighten-2 {
    color: #fff176;
}

.bg-yellow.lighten-1 {
    background-color: #ffee58;
}

.text-yellow.text-lighten-1 {
    color: #ffee58;
}

.bg-yellow.darken-1 {
    background-color: #fdd835;
}

.text-yellow.text-darken-1 {
    color: #fdd835;
}

.bg-yellow.darken-2 {
    background-color: #fbc02d;
}

.text-yellow.text-darken-2 {
    color: #fbc02d;
}

.bg-yellow.darken-3 {
    background-color: #f9a825;
}

.text-yellow.text-darken-3 {
    color: #f9a825;
}

.bg-yellow.darken-4 {
    background-color: #f57f17;
}

.text-yellow.text-darken-4 {
    color: #f57f17;
}

.bg-yellow.accent-1 {
    background-color: #ffff8d;
}

.text-yellow.text-accent-1 {
    color: #ffff8d;
}

.bg-yellow.accent-2 {
    background-color: #ffff00;
}

.text-yellow.text-accent-2 {
    color: #ffff00;
}

.bg-yellow.accent-3 {
    background-color: #ffea00;
}

.text-yellow.text-accent-3 {
    color: #ffea00;
}

.bg-yellow.accent-4 {
    background-color: #ffd600;
}

.text-yellow.text-accent-4 {
    color: #ffd600;
}

.bg-amber {
    background-color: #ffc107;
}

.text-amber {
    color: #ffc107;
}

.bg-amber.lighten-5 {
    background-color: #fff8e1;
}

.text-amber.text-lighten-5 {
    color: #fff8e1;
}

.bg-amber.lighten-4 {
    background-color: #ffecb3;
}

.text-amber.text-lighten-4 {
    color: #ffecb3;
}

.bg-amber.lighten-3 {
    background-color: #ffe082;
}

.text-amber.text-lighten-3 {
    color: #ffe082;
}

.bg-amber.lighten-2 {
    background-color: #ffd54f;
}

.text-amber.text-lighten-2 {
    color: #ffd54f;
}

.bg-amber.lighten-1 {
    background-color: #ffca28;
}

.text-amber.text-lighten-1 {
    color: #ffca28;
}

.bg-amber.darken-1 {
    background-color: #ffb300;
}

.text-amber.text-darken-1 {
    color: #ffb300;
}

.bg-amber.darken-2 {
    background-color: #ffa000;
}

.text-amber.text-darken-2 {
    color: #ffa000;
}

.bg-amber.darken-3 {
    background-color: #ff8f00;
}

.text-amber.text-darken-3 {
    color: #ff8f00;
}

.bg-amber.darken-4 {
    background-color: #ff6f00;
}

.text-amber.text-darken-4 {
    color: #ff6f00;
}

.bg-amber.accent-1 {
    background-color: #ffe57f;
}

.text-amber.text-accent-1 {
    color: #ffe57f;
}

.bg-amber.accent-2 {
    background-color: #ffd740;
}

.text-amber.text-accent-2 {
    color: #ffd740;
}

.bg-amber.accent-3 {
    background-color: #ffc400;
}

.text-amber.text-accent-3 {
    color: #ffc400;
}

.bg-amber.accent-4 {
    background-color: #ffab00;
}

.text-amber.text-accent-4 {
    color: #ffab00;
}

.bg-orange {
    background-color: #ff9800;
}

.text-orange {
    color: #ff9800;
}

.bg-orange.lighten-5 {
    background-color: #fff3e0;
}

.text-orange.text-lighten-5 {
    color: #fff3e0;
}

.bg-orange.lighten-4 {
    background-color: #ffe0b2;
}

.text-orange.text-lighten-4 {
    color: #ffe0b2;
}

.bg-orange.lighten-3 {
    background-color: #ffcc80;
}

.text-orange.text-lighten-3 {
    color: #ffcc80;
}

.bg-orange.lighten-2 {
    background-color: #ffb74d;
}

.text-orange.text-lighten-2 {
    color: #ffb74d;
}

.bg-orange.lighten-1 {
    background-color: #ffa726;
}

.text-orange.text-lighten-1 {
    color: #ffa726;
}

.bg-orange.darken-1 {
    background-color: #fb8c00;
}

.text-orange.text-darken-1 {
    color: #fb8c00;
}

.bg-orange.darken-2 {
    background-color: #f57c00;
}

.text-orange.text-darken-2 {
    color: #f57c00;
}

.bg-orange.darken-3 {
    background-color: #ef6c00;
}

.text-orange.text-darken-3 {
    color: #ef6c00;
}

.bg-orange.darken-4 {
    background-color: #e65100;
}

.text-orange.text-darken-4 {
    color: #e65100;
}

.bg-orange.accent-1 {
    background-color: #ffd180;
}

.text-orange.text-accent-1 {
    color: #ffd180;
}

.bg-orange.accent-2 {
    background-color: #ffab40;
}

.text-orange.text-accent-2 {
    color: #ffab40;
}

.bg-orange.accent-3 {
    background-color: #ff9100;
}

.text-orange.text-accent-3 {
    color: #ff9100;
}

.bg-orange.accent-4 {
    background-color: #ff6d00;
}

.text-orange.text-accent-4 {
    color: #ff6d00;
}

.bg-deep-orange {
    background-color: #ff5722;
}

.text-deep-orange {
    color: #ff5722;
}

.bg-deep-orange.lighten-5 {
    background-color: #fbe9e7;
}

.text-deep-orange.text-lighten-5 {
    color: #fbe9e7;
}

.bg-deep-orange.lighten-4 {
    background-color: #ffccbc;
}

.text-deep-orange.text-lighten-4 {
    color: #ffccbc;
}

.bg-deep-orange.lighten-3 {
    background-color: #ffab91;
}

.text-deep-orange.text-lighten-3 {
    color: #ffab91;
}

.bg-deep-orange.lighten-2 {
    background-color: #ff8a65;
}

.text-deep-orange.text-lighten-2 {
    color: #ff8a65;
}

.bg-deep-orange.lighten-1 {
    background-color: #ff7043;
}

.text-deep-orange.text-lighten-1 {
    color: #ff7043;
}

.bg-deep-orange.darken-1 {
    background-color: #f4511e;
}

.text-deep-orange.text-darken-1 {
    color: #f4511e;
}

.bg-deep-orange.darken-2 {
    background-color: #e64a19;
}

.text-deep-orange.text-darken-2 {
    color: #e64a19;
}

.bg-deep-orange.darken-3 {
    background-color: #d84315;
}

.text-deep-orange.text-darken-3 {
    color: #d84315;
}

.bg-deep-orange.darken-4 {
    background-color: #bf360c;
}

.text-deep-orange.text-darken-4 {
    color: #bf360c;
}

.bg-deep-orange.accent-1 {
    background-color: #ff9e80;
}

.text-deep-orange.text-accent-1 {
    color: #ff9e80;
}

.bg-deep-orange.accent-2 {
    background-color: #ff6e40;
}

.text-deep-orange.text-accent-2 {
    color: #ff6e40;
}

.bg-deep-orange.accent-3 {
    background-color: #ff3d00;
}

.text-deep-orange.text-accent-3 {
    color: #ff3d00;
}

.bg-deep-orange.accent-4 {
    background-color: #dd2c00;
}

.text-deep-orange.text-accent-4 {
    color: #dd2c00;
}

.bg-brown {
    background-color: #795548;
}

.text-brown {
    color: #795548;
}

.bg-brown.lighten-5 {
    background-color: #efebe9;
}

.text-brown.text-lighten-5 {
    color: #efebe9;
}

.bg-brown.lighten-4 {
    background-color: #d7ccc8;
}

.text-brown.text-lighten-4 {
    color: #d7ccc8;
}

.bg-brown.lighten-3 {
    background-color: #bcaaa4;
}

.text-brown.text-lighten-3 {
    color: #bcaaa4;
}

.bg-brown.lighten-2 {
    background-color: #a1887f;
}

.text-brown.text-lighten-2 {
    color: #a1887f;
}

.bg-brown.lighten-1 {
    background-color: #8d6e63;
}

.text-brown.text-lighten-1 {
    color: #8d6e63;
}

.bg-brown.darken-1 {
    background-color: #6d4c41;
}

.text-brown.text-darken-1 {
    color: #6d4c41;
}

.bg-brown.darken-2 {
    background-color: #5d4037;
}

.text-brown.text-darken-2 {
    color: #5d4037;
}

.bg-brown.darken-3 {
    background-color: #4e342e;
}

.text-brown.text-darken-3 {
    color: #4e342e;
}

.bg-brown.darken-4 {
    background-color: #3e2723;
}

.text-brown.text-darken-4 {
    color: #3e2723;
}

.bg-blue-grey {
    background-color: #607d8b;
}

.text-blue-grey {
    color: #607d8b;
}

.bg-blue-grey.lighten-5 {
    background-color: #eceff1;
}

.text-blue-grey.text-lighten-5 {
    color: #eceff1;
}

.bg-blue-grey.lighten-4 {
    background-color: #cfd8dc;
}

.text-blue-grey.text-lighten-4 {
    color: #cfd8dc;
}

.bg-blue-grey.lighten-3 {
    background-color: #b0bec5;
}

.text-blue-grey.text-lighten-3 {
    color: #b0bec5;
}

.bg-blue-grey.lighten-2 {
    background-color: #90a4ae;
}

.text-blue-grey.text-lighten-2 {
    color: #90a4ae;
}

.bg-blue-grey.lighten-1 {
    background-color: #78909c;
}

.text-blue-grey.text-lighten-1 {
    color: #78909c;
}

.bg-blue-grey.darken-1 {
    background-color: #546e7a;
}

.text-blue-grey.text-darken-1 {
    color: #546e7a;
}

.bg-blue-grey.darken-2 {
    background-color: #455a64;
}

.text-blue-grey.text-darken-2 {
    color: #455a64;
}

.bg-blue-grey.darken-3 {
    background-color: #37474f;
}

.text-blue-grey.text-darken-3 {
    color: #37474f;
}

.bg-blue-grey.darken-4 {
    background-color: #263238;
}

.text-blue-grey.text-darken-4 {
    color: #263238;
}

.bg-grey {
    background-color: #9e9e9e;
}

.text-grey {
    color: #9e9e9e;
}

.bg-grey.lighten-5 {
    background-color: #fafafa;
}

.text-grey.text-lighten-5 {
    color: #fafafa;
}

.bg-grey.lighten-4 {
    background-color: #f5f5f5;
}

.text-grey.text-lighten-4 {
    color: #f5f5f5;
}

.bg-grey.lighten-3 {
    background-color: #eeeeee;
}

.text-grey.text-lighten-3 {
    color: #eeeeee;
}

.bg-grey.lighten-2 {
    background-color: #e0e0e0;
}

.text-grey.text-lighten-2 {
    color: #e0e0e0;
}

.bg-grey.lighten-1 {
    background-color: #bdbdbd;
}

.text-grey.text-lighten-1 {
    color: #bdbdbd;
}

.bg-grey.darken-1 {
    background-color: #757575;
}

.text-grey.text-darken-1 {
    color: #757575;
}

.bg-grey.darken-2 {
    background-color: #616161;
}

.text-grey.text-darken-2 {
    color: #616161;
}

.bg-grey.darken-3 {
    background-color: #424242;
}

.text-grey.text-darken-3 {
    color: #424242;
}

.bg-grey.darken-4 {
    background-color: #212121;
}

.text-grey.text-darken-4 {
    color: #212121;
}

.bg-black {
    background-color: #000000;
}

.text-black {
    color: #000000;
}

.bg-white {
    background-color: #FFFFFF;
}

.text-white {
    color: #FFFFFF;
}

.bg-transparent {
    background-color: transparent;
}

.text-transparent {
    color: transparent;
}

/*Custom Animation*/
@keyframes flipCenter {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(100000px) rotate3d(1, 0, 0, 90deg);
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(100000px) rotate3d(1, 0, 0, 0deg);
    }

    60% {
        opacity: 1;
        transform: perspective(100000px) rotate3d(1, 0, 0, 0deg);
    }

    80% {
        transform: perspective(100000px) rotate3d(1, 0, 0, 0deg);
    }

    100% {
        transform: perspective(100000px);
    }
}

@-webkit-keyframes flipCenter {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(100000px) rotate3d(1, 0, 0, 90deg);
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(100000px) rotate3d(1, 0, 0, 0deg);
    }

    60% {
        opacity: 1;
        transform: perspective(100000px) rotate3d(1, 0, 0, 0deg);
    }

    80% {
        transform: perspective(100000px) rotate3d(1, 0, 0, 0deg);
    }

    100% {
        transform: perspective(100000px);
    }
}

.flipCenter {
    animation-name: flipCenter;
    backface-visibility: visible;
}

@keyframes desployDown {
    0% {
        transform: scaleY(0);
        transform-origin: center top 0;
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: center top 0;
    }
}

@-webkit-keyframes desployDown {
    0% {
        transform: scaleY(0);
        transform-origin: center top 0;
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: center top 0;
    }
}

.desployDown {
    animation-name: desployDown;
    backface-visibility: visible;
}

@keyframes fadeInRightTiny {
    0% {
        opacity: 0;
        transform: translate3d(30%, 0px, 0px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes fadeInRightTiny {
    0% {
        opacity: 0;
        transform: translate3d(30%, 0px, 0px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fadeInRightTiny {
    animation-name: fadeInRightTiny;
}

@keyframes fadeInLeftTiny {
    0% {
        opacity: 0;
        transform: translate3d(-30%, 0px, 0px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes fadeInLeftTiny {
    0% {
        opacity: 0;
        transform: translate3d(-30%, 0px, 0px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeftTiny {
    animation-name: fadeInLeftTiny;
}

@keyframes slideInRightTiny {
    0% {
        transform: translate3d(30%, 0px, 0px);
    }

    100% {
        transform: none;
    }
}

@-webkit-keyframes slideInRightTiny {
    0% {
        transform: translate3d(30%, 0px, 0px);
    }

    100% {
        transform: none;
    }
}

.slideInRightTiny {
    animation-name: slideInRightTiny;
}

@keyframes slideInLeftTiny {
    0% {
        transform: translate3d(-30%, 0px, 0px);
    }

    100% {
        transform: none;
    }
}

@-webkit-keyframes slideInLeftTiny {
    0% {
        transform: translate3d(-30%, 0px, 0px);
    }

    100% {
        transform: none;
    }
}

.slideInLeftTiny {
    animation-name: slideInLeftTiny;
}

@keyframes slideInUpTiny {
    0% {
        transform: translate3d(0px, 5%, 0px);
    }

    100% {
        transform: none;
    }
}

@-webkit-keyframes slideInUpTiny {
    0% {
        transform: translate3d(0px, 5%, 0px);
    }

    100% {
        transform: none;
    }
}

.slideInUpTiny {
    animation-name: slideInUpTiny;
}

/*Animation Durations*/
.animation-duration-1 {
    animation-duration: 0.1s;
}

.animation-duration-2 {
    animation-duration: 0.2s;
}

.animation-duration-3 {
    animation-duration: 0.3s;
}

.animation-duration-4 {
    animation-duration: 0.4s;
}

.animation-duration-5 {
    animation-duration: 0.5s;
}

.animation-duration-6 {
    animation-duration: 0.6s;
}

.animation-duration-7 {
    animation-duration: 0.7s;
}

.animation-duration-8 {
    animation-duration: 0.8s;
}

.animation-duration-9 {
    animation-duration: 0.9s;
}

.animation-duration-10 {
    animation-duration: 1s;
}

.animation-duration-11 {
    animation-duration: 1.1s;
}

.animation-duration-12 {
    animation-duration: 1.2s;
}

.animation-duration-13 {
    animation-duration: 1.3s;
}

.animation-duration-14 {
    animation-duration: 1.4s;
}

.animation-duration-15 {
    animation-duration: 1.5s;
}

.animation-duration-16 {
    animation-duration: 1.6s;
}

.animation-duration-17 {
    animation-duration: 1.7s;
}

.animation-duration-18 {
    animation-duration: 1.8s;
}

.animation-duration-19 {
    animation-duration: 1.9s;
}

.animation-duration-20 {
    animation-duration: 2s;
}

.animation-duration-21 {
    animation-duration: 2.1s;
}

.animation-duration-22 {
    animation-duration: 2.2s;
}

.animation-duration-23 {
    animation-duration: 2.3s;
}

.animation-duration-24 {
    animation-duration: 2.4s;
}

.animation-duration-25 {
    animation-duration: 2.5s;
}

.animation-duration-26 {
    animation-duration: 2.6s;
}

.animation-duration-27 {
    animation-duration: 2.7s;
}

.animation-duration-28 {
    animation-duration: 2.8s;
}

.animation-duration-29 {
    animation-duration: 2.9s;
}

.animation-duration-30 {
    animation-duration: 3s;
}

.animation-duration-31 {
    animation-duration: 3.1s;
}

.animation-duration-32 {
    animation-duration: 3.2s;
}

.animation-duration-33 {
    animation-duration: 3.3s;
}

.animation-duration-34 {
    animation-duration: 3.4s;
}

.animation-duration-35 {
    animation-duration: 3.5s;
}

.animation-duration-36 {
    animation-duration: 3.6s;
}

.animation-duration-37 {
    animation-duration: 3.7s;
}

.animation-duration-38 {
    animation-duration: 3.8s;
}

.animation-duration-39 {
    animation-duration: 3.9s;
}

.animation-duration-40 {
    animation-duration: 4s;
}

.animation-delay-1 {
    animation-delay: 0.1s;
}

.animation-delay-2 {
    animation-delay: 0.2s;
}

.animation-delay-3 {
    animation-delay: 0.3s;
}

.animation-delay-4 {
    animation-delay: 0.4s;
}

.animation-delay-5 {
    animation-delay: 0.5s;
}

.animation-delay-6 {
    animation-delay: 0.6s;
}

.animation-delay-7 {
    animation-delay: 0.7s;
}

.animation-delay-8 {
    animation-delay: 0.8s;
}

.animation-delay-9 {
    animation-delay: 0.9s;
}

.animation-delay-10 {
    animation-delay: 1s;
}

.animation-delay-11 {
    animation-delay: 1.1s;
}

.animation-delay-12 {
    animation-delay: 1.2s;
}

.animation-delay-13 {
    animation-delay: 1.3s;
}

.animation-delay-14 {
    animation-delay: 1.4s;
}

.animation-delay-15 {
    animation-delay: 1.5s;
}

.animation-delay-16 {
    animation-delay: 1.6s;
}

.animation-delay-17 {
    animation-delay: 1.7s;
}

.animation-delay-18 {
    animation-delay: 1.8s;
}

.animation-delay-19 {
    animation-delay: 1.9s;
}

.animation-delay-20 {
    animation-delay: 2s;
}

.animation-delay-21 {
    animation-delay: 2.1s;
}

.animation-delay-22 {
    animation-delay: 2.2s;
}

.animation-delay-23 {
    animation-delay: 2.3s;
}

.animation-delay-24 {
    animation-delay: 2.4s;
}

.animation-delay-25 {
    animation-delay: 2.5s;
}

.animation-delay-26 {
    animation-delay: 2.6s;
}

.animation-delay-27 {
    animation-delay: 2.6s;
}

.animation-delay-28 {
    animation-delay: 2.8s;
}

.animation-delay-29 {
    animation-delay: 2.9s;
}

.animation-delay-30 {
    animation-delay: 3s;
}

.animation-delay-31 {
    animation-delay: 3.1s;
}

.animation-delay-32 {
    animation-delay: 3.2s;
}

.animation-delay-33 {
    animation-delay: 3.3s;
}

.animation-delay-34 {
    animation-delay: 3.4s;
}

.animation-delay-35 {
    animation-delay: 3.5s;
}

.animation-delay-36 {
    animation-delay: 3.6s;
}

.animation-delay-37 {
    animation-delay: 3.7s;
}

.animation-delay-38 {
    animation-delay: 3.8s;
}

.animation-delay-39 {
    animation-delay: 3.9s;
}

.animation-delay-40 {
    animation-delay: 4s;
}

.animation-delay-41 {
    animation-delay: 4.1s;
}

.animation-delay-42 {
    animation-delay: 4.2s;
}

.animation-delay-43 {
    animation-delay: 4.3s;
}

.animation-delay-44 {
    animation-delay: 4.4s;
}

.animation-delay-45 {
    animation-delay: 4.5s;
}

.animation-delay-46 {
    animation-delay: 4.6s;
}

.animation-delay-47 {
    animation-delay: 4.7s;
}

.animation-delay-48 {
    animation-delay: 4.8s;
}

.animation-delay-49 {
    animation-delay: 4.9s;
}

.animation-delay-50 {
    animation-delay: 5s;
}

/* Base
   ========================================================================== */
/*Base Styles*/
html {
    height: 100%;
}

/*body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #212529;
    background-color: #f8f9fa;
    height: 100%;
    overflow: hidden;
}*/

.text-transform-none {
    text-transform: none;
}

.br-break {
    word-break: break-all !important;
}

.font-weight-semibold {
    font-weight: 500;
}

.z-index-20 {
    z-index: 20;
}

.border-bottom {
    border-bottom: solid 1px #dee2e6;
}

div[tabindex="-1"] {
    z-index: 1500 !important;
}

.col-with-divider div[class*="col-"] {
    border-left: solid 1px #dee2e6;
}

    .col-with-divider div[class*="col-"]:first-child {
        border: 0 none;
    }

.height-100 {
    height: 100px;
}

.height-150 {
    height: 150px;
}

.height-200 {
    height: 200px;
}

.max-width-100 {
    max-width: 100px;
}

.max-height-120 {
    max-height: 120px !important;
}

.right-arrow {
    display: inline-block;
    color: #3f51b5;
    text-transform: capitalize;
}

    .right-arrow:after {
        content: "\f30f";
        font-family: "Material-Design-Iconic-Font";
        color: #3f51b5;
        margin-left: 8px;
        font-size: 20px;
        vertical-align: middle;
    }

    .right-arrow:hover, .right-arrow:focus {
        text-decoration: none;
    }

.letter-spacing-base {
    letter-spacing: 3px;
}

.letter-spacing-lg {
    letter-spacing: 6px;
}

.letter-spacing-xl {
    letter-spacing: 8px;
}

.page-heading {
    margin-bottom: 36px;
    padding: 18px 24px;
}

    .page-heading .title {
        text-transform: capitalize;
    }

    .page-heading .breadcrumb {
        padding: 0;
        background-color: transparent;
        margin-bottom: 0;
    }

@media screen and (max-width: 575px) {
    .page-heading {
        margin-bottom: 18px;
    }
}

.sub-heading {
    font-size: 14px;
    color: #868e96;
    margin-bottom: 0;
}

    .sub-heading:not(:last-child) {
        margin-bottom: 16px;
    }

.manage-margin {
    margin-bottom: 0;
}

    .manage-margin > * {
        margin-bottom: 6px;
    }

        .manage-margin > *:not(:last-child) {
            margin-right: 16px;
        }

.no-shadow {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important;
    box-shadow: none !important;
}

.shadow-sm {
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
}

.shadow {
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
}

.shadow-lg {
    -webkit-box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
}

.shadow-xl {
    -webkit-box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.2);
}

.avatar-shadow {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}

.remove-table-border td, .remove-table-border th {
    border: 0 none;
}

.media-list {
    margin-bottom: 10px;
}

    .media-list:not(:last-child) {
        border-bottom: solid 1px #e9ecef;
        padding-bottom: 15px;
        margin-bottom: 20px;
        position: relative;
    }

.border-2 {
    border: 2px solid #ced4da;
}

.border-w2 {
    border-width: 2px;
}

.border-primary {
    border-color: #3f51b5;
}

.border-red {
    border-color: #F44336;
}

.border-pink {
    border-color: #e91e63;
}

.border-purple {
    border-color: #9C27B0;
}

.border-deep-purple {
    border-color: #673ab7;
}

.border-indigo {
    border-color: #3f51b5;
}

.border-blue {
    border-color: #2196F3;
}

.border-light-blue {
    border-color: #03a9f4;
}

.border-cyan {
    border-color: #00bcd4;
}

.border-teal {
    border-color: #009688;
}

.border-green {
    border-color: #4CAF50;
}

.border-light-green {
    border-color: #8bc34a;
}

.border-lime {
    border-color: #cddc39;
}

.border-yellow {
    border-color: #ffeb3b;
}

.border-amber {
    border-color: #ffc107;
}

.border-orange {
    border-color: #ff9800;
}

.border-deep-orange {
    border-color: #ff5722;
}

.border-brown {
    border-color: #795548;
}

.border-blue-grey {
    border-color: #607d8b;
}

.border-grey {
    border-color: #9e9e9e;
}

.center-crop-img {
    position: relative;
    width: 100%;
    min-height: 120px;
    overflow: hidden;
}

    .center-crop-img img {
        position: absolute;
        left: 50%;
        top: 50%;
        height: 100%;
        width: auto;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

        .center-crop-img img.portrait {
            width: 100%;
            height: auto;
        }

.d-flex-xy-ctr {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.pointer {
    cursor: pointer;
}

.line-dashed {
    border-top: 1px dashed #dee2e6;
    height: 1px;
    margin: 20px auto;
}

@media screen and (max-width: 575px) {
    .line-dashed {
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

/*Typography Styles*/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 400;
    margin: 0 0 12px;
    color: inherit;
}

h1, .h1 {
    font-size: 24px;
}

h2, .h2 {
    font-size: 20px;
}

h3, .h3 {
    font-size: 17px;
}

h4, .h4 {
    font-size: 15px;
}

h5, .h5 {
    font-size: 13px;
}

h6, .h6 {
    font-size: 12px;
}

.text-strikethrough {
    text-decoration: line-through;
}

@media screen and (max-width: 991px) {
    h1, .h1 {
        font-size: 20px;
    }

    h2, .h2 {
        font-size: 17px;
    }

    h3, .h3 {
        font-size: 15px;
    }
}

input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 12px;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 12px;
}

input:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 12px;
}

input:-moz-placeholder {
    /* Firefox 18- */
    font-size: 12px;
}

.desc-list {
    margin-bottom: 0;
}

    .desc-list li {
        padding: 18px 24px;
        border-bottom: 1px solid #adb5bd;
        margin-left: -24px;
        margin-right: -24px;
    }

        .desc-list li:last-child {
            border-bottom: 0 none;
        }

        .desc-list li .card-title {
            margin-bottom: 6px;
        }

    .desc-list.even-odd li {
        border-bottom: 0 none;
    }

        .desc-list.even-odd li:nth-child(2n) {
            background-color: #dee2e6;
        }

/* Layouts
   ========================================================================== */
/*App Layout Styles*/
.gx-container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
}

.gx-sidebar {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    min-width: 280px;
    max-width: 280px;
    background-color: #252525;
    color: #a1a1a1;
    z-index: 1045;
}

.gx-main-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gx-main-content {
    width: 100%;
    height: calc(100vh - 70px);
    position: relative;
    padding: 24px;
    padding-bottom: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.menu-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1044;
    background-color: #000;
    display: none;
}

    .menu-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .menu-backdrop.in {
        filter: alpha(opacity=50);
        opacity: .5;
    }

/*Header Styles*/
.gx-menu-icon {
    outline: none;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 5px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.bg-white .gx-menu-icon .menu-icon {
    background-color: #212529;
}

.sidebar-mobile-menu {
    margin-right: 15px;
}

.main-header {
    min-height: 70px;
}

    .main-header .search-bar input {
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        background-color: #4d5ec1;
        color: #fff;
    }

        .main-header .search-bar input + .search-icon i {
            color: rgba(255, 255, 255, 0.8);
        }

        .main-header .search-bar input:focus {
            background-color: #fff;
            color: #212529;
        }

            .main-header .search-bar input:focus + .search-icon i {
                color: rgba(33, 37, 41, 0.8);
            }

.site-logo img {
    height: 35px;
}

@media screen and (max-width: 575px) {
    .site-logo img {
        height: 28px;
    }
}

.gx-toolbar {
    position: fixed;
    left: 280px;
    right: 0;
    top: 0;
    z-index: 999;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 17px 24px;
    background-color: #3f51b5;
    color: #fff;
    -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    -o-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

    .gx-toolbar .search-bar {
        margin-left: 100px;
        margin-right: auto;
        max-width: 400px;
        width: 380px;
    }

@media screen and (max-width: 991px) {
    .gx-toolbar .search-bar {
        width: 280px;
    }
}

@media screen and (max-width: 767px) {
    .gx-toolbar .search-bar {
        margin-left: 40px;
        width: 200px;
    }
}

@media screen and (max-width: 991px) {
    .gx-toolbar {
        left: 0;
    }
}

.gx-toolbar .nav-searchbox .search-bar {
    margin-left: 0;
    width: 280px;
}

@media screen and (max-width: 399px) {
    .gx-toolbar .nav-searchbox .search-bar {
        width: 200px;
    }
}

.gx-toolbar .nav-searchbox .search-bar input {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    color: #212529;
}

    .gx-toolbar .nav-searchbox .search-bar input + .search-icon i {
        color: rgba(33, 37, 41, 0.8);
    }

    .gx-toolbar .nav-searchbox .search-bar input:focus {
        background-color: transparent;
        color: #212529;
    }

        .gx-toolbar .nav-searchbox .search-bar input:focus + .search-icon i {
            color: rgba(33, 37, 41, 0.8);
        }

.header-notifications {
    margin: 0 -8px;
    padding-left: 0;
    list-style: none;
}

    .header-notifications > li {
        vertical-align: middle;
        display: inline-block;
        padding: 0 8px;
    }

        .header-notifications > li > a {
            color: #fff;
            font-size: 24px;
        }

            .header-notifications > li > a:hover, .header-notifications > li > a:focus, .header-notifications > li > a:active {
                color: #fff;
            }

.quick-menu .dropdown-menu {
    padding: 5px 10px;
    width: 350px;
}

    .quick-menu .dropdown-menu .gx-card-header {
        margin: -5px -10px 5px;
        padding: 10px 10px 10px 20px;
        -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
        -o-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
        z-index: 10;
    }

    .quick-menu .dropdown-menu:before {
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #fff;
        top: -12px;
        content: "";
        height: 12px;
        position: absolute;
        right: 5px;
        width: 14px;
    }

@media screen and (max-width: 449px) {
    .quick-menu .dropdown-menu {
        width: 280px;
    }
}

@media screen and (max-width: 359px) {
    .quick-menu .dropdown-menu {
        width: 240px;
    }
}

.quick-menu .messages-list .user-avatar {
    position: relative;
}

.quick-menu .messages-list .badge {
    position: absolute;
    left: -4px;
    top: -4px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    text-align: center;
    padding: 0;
}

.messages-list ul li {
    position: relative;
    padding: 20px 10px 14px;
    border-bottom: 1px solid #dee2e6;
}

    .messages-list ul li .user-name a {
        color: #3f51b5;
    }

    .messages-list ul li .sub-heading {
        font-size: 11px;
        margin-bottom: 6px;
    }

        .messages-list ul li .sub-heading.mb-0 {
            margin-bottom: 0;
        }

    .messages-list ul li:last-child {
        border-bottom: 0 none;
    }

    .messages-list ul li .gx-btn {
        margin-right: 0;
    }

    .messages-list ul li .gx-btn-xs {
        font-size: 11px;
        padding: 5px;
    }

.quick-menu .icon-btn {
    color: #fff;
}

.quick-menu .icons-alert {
    position: relative;
}

    .quick-menu .icons-alert:after {
        display: block;
        position: absolute;
        content: "";
        right: 0;
        top: 0;
        z-index: 10;
        width: 8px;
        height: 8px;
        background-color: #f44336;
        border-radius: 50%;
    }

.quick-menu i.animated.infinite {
    -moz-animation-iteration-count: 25;
    -webkit-animation-iteration-count: 25;
    -o-animation-iteration-count: 25;
    animation-iteration-count: 25;
}

.dropdown-menu-perfectscrollbar,
.dropdown-menu-perfectscrollbar1 {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gx-main-content .nav-searchbox .icon-btn {
    font-size: 20px;
}

.gx-main-content .nav-searchbox .dropdown-menu {
    width: 200px;
    left: auto;
    right: 0;
}

@media screen and (max-width: 350px) {
    .gx-main-content .nav-searchbox .dropdown-menu {
        width: 150px;
    }
}

/*Navbar Styles*/
/*.navbar {
    min-height: 60px;
    border-radius: 0;
}*/

.main-menu {
    width: 100%;
    height: calc(100vh - 70px);
    position: relative;
}

ul.nav-menu {
    position: relative;
    font-size: 14px;
    list-style: outside none none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

    ul.nav-menu li {
        position: relative;
        margin-bottom: 1px;
    }

        ul.nav-menu li.menu + .nav-header {
            margin-top: 20px;
        }

        ul.nav-menu li.menu .sub-menu {
            display: none;
        }

        ul.nav-menu li.menu.open > .sub-menu {
            display: block;
        }

        ul.nav-menu li.menu.open .menu.active > .sub-menu {
            display: block;
        }

        ul.nav-menu li a {
            color: #a1a1a1;
            display: block;
            font-size: 14px;
            padding: 16px 20px;
            font-weight: 400;
            text-transform: capitalize;
            text-decoration: none;
            border-radius: 0;
        }

            ul.nav-menu li a .badge {
                margin-bottom: 0;
                padding: 3px 8px 2px;
            }

    ul.nav-menu .nav-header {
        color: #a1a1a1;
        padding: 10px 20px;
        font-size: 11px;
        text-transform: uppercase;
    }

        ul.nav-menu .nav-header:first-child {
            margin-top: 10px;
        }

    ul.nav-menu > li.selected > a,
    ul.nav-menu > li.open > a,
    ul.nav-menu > li > a:hover,
    ul.nav-menu > li > a:focus {
        background-color: #1d1d1d;
        color: #fff;
    }

    ul.nav-menu li.menu > a {
        border-left: 2px solid transparent;
    }

    ul.nav-menu li.menu.open > a {
        border-color: #ff9800;
    }

    ul.nav-menu li.menu > a:focus:before,
    ul.nav-menu li.menu > a:hover:before {
        color: #fff;
    }

    ul.nav-menu li i {
        margin-right: 12px;
        font-size: 15px;
    }

    ul.nav-menu li ul {
        list-style: outside none none;
        margin: 0;
        padding: 0;
        position: relative;
        background-color: #1d1d1d;
        overflow: hidden;
    }

        ul.nav-menu li ul > li > a {
            padding-left: 56px;
        }

        ul.nav-menu li ul > li > ul > li > a {
            padding-left: 76px;
        }

        ul.nav-menu li ul > li > ul > li > ul > li > a {
            padding-left: 96px;
        }

        ul.nav-menu li ul > li > ul > li > ul > li > ul > li > a {
            padding-left: 116px;
        }

    ul.nav-menu li.menu > a:before {
        color: #a1a1a1;
        content: "\f2fb";
        display: inline-block;
        float: right;
        font-family: 'Material-Design-Iconic-Font';
        font-size: 15px;
        margin-left: 10px;
        position: relative;
        -webkit-transition: all 300ms ease-in-out;
        -o-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
        font-weight: normal;
    }

    ul.nav-menu li.menu.no-arrow > a:before {
        display: none;
    }

    ul.nav-menu li.menu.selected > a:before,
    ul.nav-menu li.menu.open > a:before,
    ul.nav-menu li.menu > a:focus:before,
    ul.nav-menu li.menu li > a:hover:before {
        background-color: transparent;
        color: #fff;
    }

    ul.nav-menu li.menu.open > a:before,
    ul.nav-menu li.menu.active > a:before {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    ul.nav-menu li.menu.open .sub-menu li.active > a {
        color: #fff;
    }

        ul.nav-menu li.menu .sub-menu li > a:hover,
        ul.nav-menu li.menu .sub-menu li > a:focus,
        ul.nav-menu li.menu.open .sub-menu li.active > a:before,
        ul.nav-menu li.menu .sub-menu li > a:focus:before,
        ul.nav-menu li.menu .sub-menu li > a:hover:before {
            background-color: #1d1d1d;
            color: #fff;
        }

.customizer {
    padding: 20px 35px;
}

    .customizer img {
        padding: 5px;
        cursor: pointer;
    }

.user-info ul li {
    font-size: 15px;
}

@media screen and (min-width: 250px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}
/*Main Content Styles*/
.gx-wrapper {
    width: 100%;
    flex: 1;
    margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
    .gx-wrapper {
        margin-bottom: 15px;
    }
}

/*Sidebar Styles*/
.side-nav .user-profile {
    padding: 13px 20px;
    background-color: #1d1d1d;
}

.side-nav .user-avatar {
    height: 44px !important;
    width: 44px !important;
    margin-right: 15px;
}

.side-nav .user-detail .user-name {
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

    .side-nav .user-detail .user-name a {
        color: #fff;
        text-decoration: none;
    }

.side-nav .user-detail .dropdown-toggle:after {
    vertical-align: middle;
}

.side-nav .user-detail .dropdown-menu a {
    color: #212529;
}

    .side-nav .user-detail .dropdown-menu a:hover, .side-nav .user-detail .dropdown-menu a:focus, .side-nav .user-detail .dropdown-menu a:active {
        color: #212529;
        background-color: #e9ecef;
    }

/*Right Sidebar Styles*/
.app-sidebar-content.right-sidebar {
    z-index: 1100;
    -webkit-box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.2);
}

.color-theme {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    max-width: 300px;
    height: 100%;
    background-color: #fff;
}

.color-theme-header {
    background-color: #3f51b5;
    color: #fff;
    padding: 15px 25px;
    text-transform: uppercase;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-height: 70px;
}

    .color-theme-header .color-theme-title {
        margin-bottom: 0;
    }

.color-theme-body {
    position: relative;
    padding: 28px 25px;
    height: calc(100vh - 70px);
}

    .color-theme-body h3 {
        margin-bottom: 20px;
    }

@media screen and (max-width: 499px) {
    .color-theme-body {
        padding: 25px 15px;
    }
}

.color-option {
    list-style: none;
    padding-left: 0;
    margin: 0 -5px 10px;
    overflow: hidden;
}

    .color-option li {
        position: relative;
        float: left;
        padding: 0 5px;
        margin-bottom: 5px;
    }

        .color-option li a {
            display: inline-block;
            color: transparent;
            position: relative;
        }

            .color-option li a:before {
                content: "\f26b";
                font-family: "Material-Design-Iconic-Font";
                font-size: 20px;
                position: absolute;
                top: 0;
                left: 0;
                color: #fff;
                text-align: center;
                display: none;
                z-index: 2;
            }

            .color-option li a.active:before {
                display: block;
            }

.cr-op-dark-sidebar li a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-color: #212529;
    width: 8px;
}

.theme-option {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 1000;
    background-color: #9C27B0;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

    .theme-option .action-btn {
        height: 50px;
        width: 50px;
    }

.material-switch {
    margin-bottom: 24px;
}

    .material-switch > input[type="checkbox"] {
        display: none;
    }

    .material-switch > label {
        cursor: pointer;
        height: 0;
        position: relative;
        width: 40px;
    }

        .material-switch > label:before {
            background: black;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            content: '';
            height: 16px;
            margin-top: -8px;
            position: absolute;
            opacity: 0.3;
            transition: all 0.4s ease-in-out;
            width: 40px;
        }

        .material-switch > label:after {
            background: white;
            border-radius: 16px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
            content: '';
            height: 24px;
            left: -4px;
            margin-top: -8px;
            position: absolute;
            top: -4px;
            transition: all 0.3s ease-in-out;
            width: 24px;
        }

    .material-switch > input[type="checkbox"]:checked + label::before {
        background: #000;
        opacity: 0.5;
    }

    .material-switch > input[type="checkbox"]:checked + label::after {
        background: #495057;
        left: 20px;
    }

@media screen and (max-width: 499px) {
    .color-theme .gx-btn {
        padding: 10px 15px;
    }
}
/*Footer Styles*/
.gx-footer {
    padding: 14px 24px;
    border-top: solid 1px #d4d4d4;
    color: #a1a1a1;
    margin: 0 -24px;
}

    .gx-footer a {
        color: #a1a1a1;
    }

        .gx-footer a:hover, .gx-footer a:focus {
            color: #3f51b5;
            text-decoration: none;
        }

    .gx-footer p {
        margin-bottom: 0;
    }

@media screen and (max-width: 575px) {
    .gx-footer {
        font-size: 12px;
    }
}

/* Layouts
   ========================================================================== */
.loader-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999999;
    background-color: #fff;
}

.loader {
    position: relative;
    margin: 0 auto;
    width: 60px;
    height: 100%;
}

    .loader:before {
        content: "";
        display: block;
        padding-top: 100%;
    }

.circular {
    animation: rotate 2s linear infinite;
    -webkit-animation: rotate 2s linear infinite;
    height: auto;
    transform-origin: center center;
    -webkit-transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1px, 200px;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89px, 200px;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89px, 200px;
        stroke-dashoffset: -124px;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1px, 200px;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89px, 200px;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89px, 200px;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}
/* UI Components
   ========================================================================== */
/*Alert Styles*/
.alert {
    border: 0 none;
}

.alert {
    padding: 20px 24px;
    border-radius: 2px;
    position: relative;
}

    .alert .close {
        line-height: inherit;
        font-weight: 300;
    }

    .alert .alert-addon {
        width: 60px;
        background-color: rgba(0, 0, 0, 0.2);
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
    }

.alert-dismissible {
    padding-right: 60px;
}

.alert-addon-card {
    padding-left: 80px;
}

/*Avatar Styles*/
.user-avatar {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
    overflow: hidden;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    border-radius: 50%;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.user-name {
    margin-bottom: 2px;
    font-weight: 400;
    text-transform: capitalize;
}

.user-description {
    font-size: 12px;
    margin-bottom: 0;
    color: #868e96;
}

.user-profile {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

    .user-profile .user-detail {
        -webkit-flex: 1;
        flex: 1;
        -ms-flex-align: center;
        -webkit-align-self: center;
        align-self: center;
    }

.user-thumb {
    position: relative;
}

.messages-list .user-thumb {
    margin-right: 8px;
}

/*Accordions Styles*/
.accordion-group {
    border: 0 none;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.accordion-inner {
    border: 0 none;
    padding: 30px;
}

    .accordion-inner .intro-video {
        width: 200px;
        height: auto;
        max-height: 200px;
    }

.accordion-toggle {
    cursor: pointer;
}

.accordion-heading .accordion-toggle {
    display: block;
    position: relative;
    color: #fff;
    padding: 26px 20px 26px 50px;
    background-color: #3f51b5;
    text-decoration: none;
}

    .accordion-heading .accordion-toggle.collapsed {
        background-color: #fff;
        color: #212529;
    }

    .accordion-heading .accordion-toggle:before {
        color: #fff;
        content: "\f273";
        display: inline-block;
        font-family: 'Material-Design-Iconic-Font', serif;
        font-size: 20px;
        position: absolute;
        top: 24px;
        left: 30px;
        -webkit-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }

    .accordion-heading .accordion-toggle.collapsed:before {
        color: #212529;
        content: "\f278";
        font-family: 'Material-Design-Iconic-Font', serif;
    }

.accordion-heading .title {
    margin: 0;
    font-weight: 400;
}

/*Badges Styles*/
.badge {
    font-weight: 400;
    padding: 5px 8px;
    margin-bottom: 6px;
    border-radius: 2px;
}

    .badge:not(:last-child) {
        margin-right: 15px;
    }

table .badge {
    margin-bottom: 0;
}

.badge-pill {
    border-radius: 20px;
}

.badge-border {
    border: 2px solid;
}

.badge-circle {
    height: 22px;
    width: 22px;
    padding: 0;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 50%;
}

/*Blockquotes Styles*/
blockquote {
    padding: 10px 0 10px 20px;
    font-size: 14px !important;
}

    blockquote .blockquote-footer {
        font-size: 14px;
    }

.blockquote {
    border-left: 5px solid #e9ecef;
}

.blockquote-reverse {
    border-left: 0 none;
    border-right: 5px solid #e9ecef;
    text-align: right;
    padding-left: 0;
    padding-right: 20px;
}

/*Bottom Navigation Styles*/
.bottom-navigation {
    list-style: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    margin-bottom: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 0;
}

    .bottom-navigation > li {
        flex: 1;
        display: inline-flex;
        min-height: 70px;
        min-width: 10px;
    }

        .bottom-navigation > li > a {
            color: #868e96;
            text-align: center;
            text-decoration: none;
            font-size: 14px;
            padding: 8px 12px 10px;
            width: 100%;
            display: -webkit-inline-flex;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            justify-content: center;
        }

            .bottom-navigation > li > a i {
                font-size: 28px;
                display: block;
                margin: auto;
            }

            .bottom-navigation > li > a span {
                -webkit-transition: font-size 0.2s, opacity 0.2s;
                -o-transition: font-size 0.2s, opacity 0.2s;
                transition: font-size 0.2s, opacity 0.2s;
            }

        .bottom-navigation > li.active > a {
            color: #3f51b5;
            padding-top: 6px;
        }

            .bottom-navigation > li.active > a span {
                font-size: 16px;
            }

    .bottom-navigation.active-label > li > a span {
        opacity: 0;
        visibility: hidden;
        height: 0;
    }

    .bottom-navigation.active-label > li.active > a span {
        opacity: 1;
        visibility: visible;
        height: auto;
    }

/*Breadcrumb Styles*/
.breadcrumb {
    border-radius: 2px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\F2FB';
    font-family: 'Material-Design-Iconic-Font';
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

/*Button Styles*/
button {
    outline: 0 none !important;
    cursor: pointer;
    border: 1px solid transparent;
}

.gx-btn {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.2;
    border-radius: 2px;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
}

    .gx-btn:hover, .gx-btn:focus, .gx-btn:active {
        outline: 0 none;
        text-decoration: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
    }

.login-content .gx-btn {
    padding: 10px 35px;
}

.btn:hover, .btn:focus, .btn:active {
    outline: 0 none;
    text-decoration: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.login-content .btn {
    padding: 10px 35px;
}

.show > .btn.dropdown-toggle:focus,
.show > .btn-info.dropdown-toggle:focus,
.show > .btn-success.dropdown-toggle:focus,
.show > .btn-warning.dropdown-toggle:focus,
.show > .btn-danger.dropdown-toggle:focus,
.show > .btn-light.dropdown-toggle:focus,
.show > .btn-dark.dropdown-toggle:focus,
.show > .btn-primary.dropdown-toggle:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.gx-btn, .gx-fab-btn, .gx-flat-btn, .btn {
    margin-bottom: 6px;
    text-transform: capitalize;
}

    .gx-btn:not(:last-child),
    .gx-fab-btn:not(:last-child),
    .gx-flat-btn:not(:last-child),
    .btn:not(:last-child) {
        margin-right: 15px;
    }

.form-inline .gx-btn,
.form-inline .gx-fab-btn,
.form-inline .gx-flat-btn,
.form-inline .btn {
    margin-bottom: 0;
    min-height: 34px;
}

.navbar .gx-btn, .navbar .gx-fab-btn, .navbar .gx-flat-btn, .navbar .btn {
    margin-bottom: 0;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: none !important;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-append > .btn {
    margin-right: 0;
    margin-bottom: 0;
    line-height: inherit;
}

.gx-fab-btn {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #eeeeee;
    overflow: hidden;
}

    .gx-fab-btn:hover, .gx-fab-btn:focus {
        outline: 0 none;
        text-decoration: none;
    }

.gx-btn,
.gx-flat-btn {
    padding: 12px 20px;
}

    .gx-btn i + span, .gx-btn span + i,
    .gx-flat-btn i + span,
    .gx-flat-btn span + i {
        margin-left: 6px;
    }

.gx-flat-btn {
    background-color: transparent;
    color: #212529;
}

    .gx-flat-btn:hover, .gx-flat-btn:focus, .gx-flat-btn:active {
        background-color: #f5f5f5;
        color: #212529;
    }

.gx-btn-group {
    margin: 0 -10px;
}

    .gx-btn-group:not(:last-child) {
        margin-bottom: 16px;
    }

    .gx-btn-group .gx-btn, .gx-btn-group .gx-fab-btn {
        margin: 0 10px 18px;
    }

.gx-btn-rounded {
    border-radius: 50px !important;
}

.gx-btn-lg, .btn-group-lg > .gx-btn {
    padding: 16px 24px;
}

.gx-btn-sm, .btn-group-sm > .gx-btn {
    padding: 8px 15px;
}

.gx-btn-xs {
    padding: 6px 10px;
}

.gx-btn-fab-lg,
.gx-btn-lg,
.btn-group-lg > .gx-btn {
    font-size: 18px;
}

    .gx-btn-fab-lg i,
    .gx-btn-lg i,
    .btn-group-lg > .gx-btn i {
        font-size: 20px;
    }

.gx-btn-fab-sm,
.gx-btn-sm,
.btn-group-sm > .gx-btn {
    font-size: 12px;
}

    .gx-btn-fab-sm i,
    .gx-btn-sm i,
    .btn-group-sm > .gx-btn i {
        font-size: 12px;
    }

.gx-btn-fab-xs,
.gx-btn-xs {
    font-size: 10px;
}

    .gx-btn-fab-xs i,
    .gx-btn-xs i {
        font-size: 10px;
    }

.complex-btn-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-width: 200px;
    width: 100%;
}

.complex-btn {
    position: relative;
    height: 200px;
    overflow: hidden;
    width: 33.333%;
    border: 0 none;
}

@media screen and (max-width: 767px) {
    .complex-btn {
        width: 100%;
        height: 100px;
    }
}

.complex-btn:hover {
    z-index: 1;
}

    .complex-btn:hover .img-btn-overlay {
        opacity: 0.15;
    }

    .complex-btn:hover .img-marked {
        opacity: 0;
    }

    .complex-btn:hover .img-title {
        border: 4px solid currentColor;
    }

.complex-btn .img-btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #fff;
}

.complex-btn .img-src {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center 40%;
}

.complex-btn .img-btn-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.4;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.complex-btn .img-title {
    position: relative;
    padding: 16px 32px 14px;
}

.complex-btn .img-marked {
    height: 3px;
    width: 18px;
    background: #fff;
    position: absolute;
    bottom: -2px;
    left: calc(50% - 9px);
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-group-mins {
    margin: 0 -5px;
}

    .btn-group-mins .btn, .btn-group-mins .gx-btn {
        margin: 0 5px 5px;
    }

.gx-btn.gx-btn-label i {
    background-color: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 100%;
    line-height: 42px;
    text-align: center;
}

.gx-btn.gx-btn-label.left i {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.gx-btn.gx-btn-label.right i {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gx-btn.gx-btn-label.left i + span {
    margin-left: 30px;
}

.gx-btn.gx-btn-label.right i + span {
    margin-right: 30px;
    margin-left: 0;
}

.gx-btn.gx-btn-label.gx-btn-lg i, .btn-group-lg > .gx-btn.gx-btn-label i {
    line-height: 54px;
}

.gx-btn.gx-btn-label.gx-btn-sm i, .btn-group-sm > .gx-btn.gx-btn-label i {
    line-height: 32px;
}

.gx-btn.gx-btn-label.gx-btn-xs i {
    line-height: 24px;
    width: 30px;
}

.gx-btn-primary {
    background-color: #3f51b5;
    color: #fff;
}

    .gx-btn-primary:hover, .gx-btn-primary:focus {
        background-color: #3849a2;
        color: #fff;
    }

.gx-btn-red {
    background-color: #F44336;
    color: #fff;
}

    .gx-btn-red:hover, .gx-btn-red:focus {
        background-color: #f32c1e;
        color: #fff;
    }

.gx-btn-pink {
    background-color: #e91e63;
    color: #fff;
}

    .gx-btn-pink:hover, .gx-btn-pink:focus {
        background-color: #d81558;
        color: #fff;
    }

.gx-btn-purple {
    background-color: #9C27B0;
    color: #fff;
}

    .gx-btn-purple:hover, .gx-btn-purple:focus {
        background-color: #89229b;
        color: #fff;
    }

.gx-btn-deep-purple {
    background-color: #673ab7;
    color: #fff;
}

    .gx-btn-deep-purple:hover, .gx-btn-deep-purple:focus {
        background-color: #5c34a4;
        color: #fff;
    }

.gx-btn-indigo {
    background-color: #3f51b5;
    color: #fff;
}

    .gx-btn-indigo:hover, .gx-btn-indigo:focus {
        background-color: #3849a2;
        color: #fff;
    }

.gx-btn-blue {
    background-color: #2196F3;
    color: #fff;
}

    .gx-btn-blue:hover, .gx-btn-blue:focus {
        background-color: #0d8aee;
        color: #fff;
    }

.gx-btn-light-blue {
    background-color: #03a9f4;
    color: #fff;
}

    .gx-btn-light-blue:hover, .gx-btn-light-blue:focus {
        background-color: #0398db;
        color: #fff;
    }

.gx-btn-cyan {
    background-color: #00bcd4;
    color: #fff;
}

    .gx-btn-cyan:hover, .gx-btn-cyan:focus {
        background-color: #00a5bb;
        color: #fff;
    }

.gx-btn-teal {
    background-color: #009688;
    color: #fff;
}

    .gx-btn-teal:hover, .gx-btn-teal:focus {
        background-color: #007d71;
        color: #fff;
    }

.gx-btn-green {
    background-color: #4CAF50;
    color: #fff;
}

    .gx-btn-green:hover, .gx-btn-green:focus {
        background-color: #449d48;
        color: #fff;
    }

.gx-btn-light-green {
    background-color: #8bc34a;
    color: #fff;
}

    .gx-btn-light-green:hover, .gx-btn-light-green:focus {
        background-color: #7eb73d;
        color: #fff;
    }

.gx-btn-lime {
    background-color: #cddc39;
    color: #fff;
}

    .gx-btn-lime:hover, .gx-btn-lime:focus {
        background-color: #c6d626;
        color: #fff;
    }

.gx-btn-yellow {
    background-color: #ffeb3b;
    color: #fff;
}

    .gx-btn-yellow:hover, .gx-btn-yellow:focus {
        background-color: #ffe822;
        color: #fff;
    }

.gx-btn-amber {
    background-color: #ffc107;
    color: #fff;
}

    .gx-btn-amber:hover, .gx-btn-amber:focus {
        background-color: #edb100;
        color: #fff;
    }

.gx-btn-orange {
    background-color: #ff9800;
    color: #fff;
}

    .gx-btn-orange:hover, .gx-btn-orange:focus {
        background-color: #e68900;
        color: #fff;
    }

.gx-btn-deep-orange {
    background-color: #ff5722;
    color: #fff;
}

    .gx-btn-deep-orange:hover, .gx-btn-deep-orange:focus {
        background-color: #ff4409;
        color: #fff;
    }

.gx-btn-brown {
    background-color: #795548;
    color: #fff;
}

    .gx-btn-brown:hover, .gx-btn-brown:focus {
        background-color: #694a3e;
        color: #fff;
    }

.gx-btn-blue-grey {
    background-color: #607d8b;
    color: #fff;
}

    .gx-btn-blue-grey:hover, .gx-btn-blue-grey:focus {
        background-color: #566f7c;
        color: #fff;
    }

.gx-btn-grey {
    background-color: #9e9e9e;
    color: #fff;
}

    .gx-btn-grey:hover, .gx-btn-grey:focus {
        background-color: #919191;
        color: #fff;
    }

.gx-btn-shadow {
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) !important;
    -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) !important;
    -o-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) !important;
}

    .gx-btn-shadow:hover, .gx-btn-shadow:focus {
        -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) !important;
        -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) !important;
        -o-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) !important;
        box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) !important;
    }

    .gx-btn-shadow:active {
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        -o-box-shadow: none !important;
        box-shadow: none !important;
    }

.gx-btn.disabled,
.gx-btn.disabled {
    pointer-events: none;
    opacity: 0.65;
}

.gx-btn-default {
    background-color: #fff;
    color: #212529;
    border: 1px solid #dee2e6;
}

    .gx-btn-default:hover, .gx-btn-default:focus {
        background-color: #f2f2f2;
        color: #212529;
    }

.gx-btn-secondary {
    background-color: #E91E63;
    color: #fff;
}

    .gx-btn-secondary:hover, .gx-btn-secondary:focus {
        background-color: #d81558;
        color: #fff;
    }

.gx-flat-btn.gx-btn-primary {
    background-color: transparent;
    color: #3f51b5;
}

    .gx-flat-btn.gx-btn-primary:hover, .gx-flat-btn.gx-btn-primary:focus {
        background-color: rgba(63, 81, 181, 0.12);
        color: #3f51b5;
    }

.bg-primary .gx-flat-btn.gx-btn-primary {
    background-color: transparent;
    color: #fff;
}

    .bg-primary .gx-flat-btn.gx-btn-primary:hover, .bg-primary .gx-flat-btn.gx-btn-primary:focus {
        background-color: rgba(255, 255, 255, 0.12);
        color: #fff;
    }

.gx-flat-btn.gx-btn-secondary {
    background-color: transparent;
    color: #E91E63;
}

    .gx-flat-btn.gx-btn-secondary:hover, .gx-flat-btn.gx-btn-secondary:focus {
        background-color: rgba(233, 30, 99, 0.12);
        color: #E91E63;
    }

.bg-secondary .gx-flat-btn.gx-btn-secondary {
    background-color: transparent;
    color: #fff;
}

    .bg-secondary .gx-flat-btn.gx-btn-secondary:hover, .bg-secondary .gx-flat-btn.gx-btn-secondary:focus {
        background-color: rgba(255, 255, 255, 0.12);
        color: #fff;
    }

.gx-btn-hover:hover:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.06);
}

.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

.action-btn {
    height: 40px;
    width: 40px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    vertical-align: middle;
    color: rgba(0, 0, 0, 0.54);
}

    .action-btn:hover, .action-btn:focus, .action-btn:active {
        text-decoration: none;
        color: rgba(0, 0, 0, 0.64);
    }

/*Button Group Styles*/
.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

    .btn-group > .gx-btn,
    .btn-group-vertical > .gx-btn {
        position: relative;
        flex: 0 1 auto;
    }

        .btn-group > .gx-btn:hover,
        .btn-group-vertical > .gx-btn:hover {
            z-index: 2;
        }

        .btn-group > .gx-btn:focus, .btn-group > .gx-btn:active, .btn-group > .gx-btn.active,
        .btn-group-vertical > .gx-btn:focus,
        .btn-group-vertical > .gx-btn:active,
        .btn-group-vertical > .gx-btn.active {
            z-index: 2;
        }

    .btn-group .gx-btn + .gx-btn,
    .btn-group .gx-btn + .gx-btn-group,
    .btn-group .btn-group + .gx-btn,
    .btn-group .btn-group + .btn-group,
    .btn-group-vertical .gx-btn + .gx-btn,
    .btn-group-vertical .gx-btn + .gx-btn-group,
    .btn-group-vertical .btn-group + .gx-btn,
    .btn-group-vertical .btn-group + .btn-group {
        margin-left: -1px;
    }

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    .btn-toolbar .input-group {
        width: auto;
    }

.btn-group > .gx-btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group > .gx-btn:first-child {
    margin-left: 0;
}

    .btn-group > .gx-btn:first-child:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

.btn-group > .gx-btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group > .btn-group {
    float: left;
}

    .btn-group > .btn-group:not(:first-child):not(:last-child) > .gx-btn {
        border-radius: 0;
    }

    .btn-group > .btn-group:first-child:not(:last-child) > .gx-btn:last-child,
    .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .btn-group > .btn-group:last-child:not(:first-child) > .gx-btn:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.gx-btn + .dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

    .gx-btn + .dropdown-toggle-split::after {
        margin-left: 0;
    }

.gx-btn-sm + .dropdown-toggle-split, .btn-group-sm > .gx-btn + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.gx-btn-lg + .dropdown-toggle-split, .btn-group-lg > .gx-btn + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn-group.show .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -o-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

    .btn-group.show .dropdown-toggle.btn-link {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
    }

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

    .btn-group-vertical .gx-btn,
    .btn-group-vertical .btn-group {
        width: 100%;
    }

    .btn-group-vertical > .gx-btn + .gx-btn,
    .btn-group-vertical > .gx-btn + .btn-group,
    .btn-group-vertical > .btn-group + .gx-btn,
    .btn-group-vertical > .btn-group + .btn-group {
        margin-top: -1px;
        margin-left: 0;
    }

    .btn-group-vertical > .gx-btn:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    .btn-group-vertical > .gx-btn:first-child:not(:last-child) {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .gx-btn:last-child:not(:first-child) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .gx-btn {
        border-radius: 0;
    }

    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .gx-btn:last-child,
    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn-group:last-child:not(:first-child) > .gx-btn:first-child {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

[data-toggle="buttons"] > .gx-btn input[type="radio"],
[data-toggle="buttons"] > .gx-btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .gx-btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .gx-btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.btn-group > .gx-btn,
.btn-group > .btn,
.btn-group-vertical > .gx-btn,
.btn-group-vertical > .btn {
    margin: 0;
}

/*Callout Styles*/
.card-image .grid-thumb-equal {
    padding-bottom: 82%;
}

/*Product listing page style*/
.product-row {
    position: relative;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: right;
}

    .product-row.even {
        text-align: left;
    }

.product-col {
    order: 1;
    width: 50%;
}

.odd .product-thumb {
    order: 2;
}

.product-content {
    padding: 20px 55px;
}

.product-row .grid-thumb-equal {
    padding-bottom: 69%;
}

.product-thumb img {
    width: 100%;
}

.product-content h4 {
    margin-bottom: 25px;
}

@media screen and (max-width: 1280px) {
    .product-row .grid-thumb-equal {
        padding-bottom: 83%;
    }
}

@media screen and (max-width: 1199px) {
    .product-content h4 {
        margin-bottom: 10px;
    }

    .product-content {
        padding: 20px 35px;
    }

    .product-row .grid-thumb-equal {
        padding-bottom: 95%;
    }
}

@media screen and (max-width: 1080px) {
    .product-row .grid-thumb-equal {
        padding-bottom: 125%;
    }
}

@media screen and (max-width: 991px) {
    .card-image .grid-thumb-equal {
        padding-bottom: 120%;
    }

    .product-row .grid-thumb-equal {
        padding-bottom: 85%;
    }
}

@media screen and (max-width: 767px) {
    .product-row {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        text-align: center;
    }

        .product-row.even {
            text-align: center;
        }

    .product-content {
        padding: 20px 0;
    }

    .product-col,
    .odd .product-thumb {
        order: 1;
        width: 100%;
    }

    .product-row .grid-thumb-equal {
        padding-bottom: 44%;
    }

    .card-image .grid-thumb-equal {
        padding-bottom: 44%;
    }
}
/*Cards Styles*/
.profile-intro {
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
}

    .profile-intro img.avatar-circle {
        display: inline-block;
        border-radius: 50%;
        -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
        -o-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
        position: relative;
        margin: 0 auto;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px);
        -webkit-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        z-index: 1;
    }

    .profile-intro:hover {
        -webkit-box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
        -o-box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
        box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
    }

        .profile-intro:hover .avatar-circle {
            -webkit-transition: border-radius 0.4s ease 0.1s;
            -o-transition: border-radius 0.4s ease 0.1s;
            transition: border-radius 0.4s ease 0.1s;
            border-radius: 25%;
        }

    .profile-intro .card-image {
        position: relative;
        width: 100%;
        min-height: 100%;
        background-image: url("../images/background-picture-1.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .profile-intro .pi-content {
        padding: 70px 40px 24px;
    }

    .profile-intro .pi-footer {
        padding: 0 40px 24px;
    }

    .profile-intro .icon {
        display: inline-block;
        -webkit-transition: all 0.2s ease 0s;
        -o-transition: all 0.2s ease 0s;
        transition: all 0.2s ease 0s;
        color: #3f51b5;
    }

        .profile-intro .icon:hover, .profile-intro .icon:focus, .profile-intro .icon:active {
            -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
            transform: scale(1.2);
        }

        .profile-intro .icon:not(:last-child) {
            margin-right: 10px;
        }

.layer:before {
    display: block;
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.gx-card > .gx-card-body:first-child {
    margin-top: 6px;
}

.gx-card.p-0 > .gx-card-body:first-child {
    margin-top: 0;
}

.gx-card .gx-card-thumb {
    margin: -18px -24px 0;
}

    .gx-card .gx-card-thumb .card-img {
        border-radius: 2px 2px 0 0;
    }

@media screen and (max-width: 575px) {
    .gx-card {
        margin-bottom: 18px;
    }
}

.gx-card-header {
    margin-bottom: 24px;
}

    .gx-card-header .card-heading {
        margin-bottom: 4px;
    }

    .gx-card-header .badge {
        margin-bottom: 0;
    }

        .gx-card-header .badge:last-child {
            margin-left: 10px;
        }

@media screen and (max-width: 575px) {
    .gx-card-header {
        margin-bottom: 18px;
    }
}

.gx-entry-header {
    margin-bottom: 24px;
}

    .gx-entry-header .entry-heading {
        margin-bottom: 4px;
    }

    .gx-entry-header .entry-description {
        margin-bottom: 0;
        font-size: 13px;
        color: #868e96;
    }

@media screen and (max-width: 575px) {
    .gx-entry-header {
        margin-bottom: 18px;
    }
}

.card {
    margin-bottom: 24px;
    border-radius: 2px;
}

@media screen and (max-width: 575px) {
    .card {
        margin-bottom: 18px;
    }
}

.card-header {
    font-size: 16px;
}

    .card-header .badge {
        margin-bottom: 0;
    }

        .card-header .badge:last-child {
            margin-left: 10px;
        }

.card-title {
    font-size: 17px;
    text-transform: capitalize;
}

.card-subtitle {
    font-size: 14px;
    color: #495057;
}

    .card-subtitle:not(:last-child) {
        margin-bottom: 17px;
    }

.card-mt-footer {
    padding: 0 10px 14px;
    margin-top: -10px;
}

.gx-card-social {
    font-size: 22px;
    padding-top: 20px;
}

.social-link {
    list-style: none;
    padding-left: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 -5px 10px;
}

    .social-link li {
        padding: 0 5px;
        margin-bottom: 5px;
    }

        .social-link li a {
            color: #212529;
        }

            .social-link li.active a, .social-link li a:hover, .social-link li a:focus {
                color: #E91E63;
            }

.gx-card-social .social-link {
    margin-bottom: 0;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.gx-cart-ab {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    color: #fff;
    font-size: 17px;
}

    .gx-cart-ab i {
        vertical-align: middle;
        font-size: 25px;
    }

.img-overlay-card {
    border-radius: 2px;
    margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
    .img-overlay-card .center-crop-img {
        min-height: 135px;
    }
}

@media screen and (max-width: 575px) {
    .img-overlay-card {
        margin-bottom: 18px;
    }
}

/*Charts Styles*/
.chart-header {
    padding: 15px 18px;
}

    .chart-header .card-title h4 {
        color: #fff;
        margin-bottom: 4px;
    }

    .chart-header .title h4 {
        margin-bottom: 4px;
    }

    .chart-header p {
        margin-bottom: 4px;
    }

.flot-chart-content {
    width: 100%;
    font-size: 14px;
    line-height: 1.2em;
}

.chart-height {
    height: 280px;
}

.chart-responsive .embed-responsive-item {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
}

.ct-series-a .ct-bar, .ct-series-a .ct-line, .ct-series-a .ct-point, .ct-series-a .ct-slice-donut {
    stroke: #3f51b5;
}

.ct-series-b .ct-bar, .ct-series-b .ct-line, .ct-series-b .ct-point, .ct-series-b .ct-slice-donut {
    stroke: #E91E63;
}

.ct-series-c .ct-bar, .ct-series-c .ct-line, .ct-series-c .ct-point, .ct-series-c .ct-slice-donut {
    stroke: #ced4da;
}

.ct-series-d .ct-bar, .ct-series-d .ct-line, .ct-series-d .ct-point, .ct-series-d .ct-slice-donut {
    stroke: red;
}

.ct-series-a .ct-area, .ct-series-a .ct-slice-donut-solid, .ct-series-a .ct-slice-pie {
    fill: #3f51b5;
}

.ct-label {
    fill: #000;
    color: #000;
}

.ct-series-b .ct-area, .ct-series-b .ct-slice-donut-solid, .ct-series-b .ct-slice-pie {
    fill: #E91E63;
}

.c3-chart .c3-area {
    opacity: 0.9 !important;
}

.c3-chart .c3-legend-background {
    stroke: transparent;
}

.c3-line {
    stroke-width: 1px;
}

#bar-chart .ct-series .ct-bar {
    stroke: #fff;
}

#news-ch-chart .ct-bar {
    stroke: #fff;
    stroke-width: 6px !important;
}

/*Carousel Styles*/
.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.carousel-caption h3 {
    font-size: 20px;
}

@media screen and (max-width: 500px) {
    .chat-testimonial-carousel .customer > img.size-120 {
        width: 90px !important;
        height: 90px !important;
    }
}

@media screen and (max-width: 400px) {
    .chat-testimonial-carousel .customer > img.size-120 {
        width: 50px !important;
        height: 50px !important;
    }
}

.classic-testimonial-carousel .item {
    padding: 0 50px;
}

.classic-testimonial-carousel .description {
    position: relative;
    color: #212529;
}

    .classic-testimonial-carousel .description:before {
        content: "\f1b2";
        font-family: 'Material-Design-Iconic-Font';
        font-size: 74px;
        opacity: 0.8;
        position: absolute;
        color: #ff9800;
        bottom: auto;
        left: 0;
        right: 0;
        top: -35px;
        line-height: 1;
        -moz-transform: scaleX(-1);
        -webkit-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        transform: scaleX(-1);
        z-index: -1;
    }

.classic-testimonial-carousel .owl-nav {
    position: absolute;
    bottom: 40%;
    width: 100%;
}

    .classic-testimonial-carousel .owl-nav .owl-next.disabled, .classic-testimonial-carousel .owl-nav .owl-prev.disabled {
        border-color: gray;
        opacity: 1;
    }

        .classic-testimonial-carousel .owl-nav .owl-next.disabled:after, .classic-testimonial-carousel .owl-nav .owl-prev.disabled:after {
            color: gray;
        }

.classic-testimonial-carousel .owl-prev,
.classic-testimonial-carousel .owl-next {
    background-color: transparent !important;
    border: 1px solid #000;
    border-radius: 0;
    color: #000;
    height: 40px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    width: 40px;
    padding: 0 !important;
}

    .classic-testimonial-carousel .owl-prev:after,
    .classic-testimonial-carousel .owl-next:after {
        content: "\f2ea";
        font-family: 'Material-Design-Iconic-Font';
        font-size: 16px;
        color: #000;
    }

    .classic-testimonial-carousel .owl-next:after {
        content: "\f2ee";
    }

.classic-testimonial-carousel .owl-prev {
    left: 0;
}

.classic-testimonial-carousel .owl-next {
    right: 0;
}

@media screen and (max-width: 767px) {
    .classic-testimonial-carousel .owl-prev {
        left: 0;
    }

    .classic-testimonial-carousel .owl-next {
        right: 0;
    }
}

@media screen and (max-width: 480px) {
    .classic-testimonial-carousel .owl-theme .owl-controls {
        top: 48%;
    }
}

/*Dropdown Menu Styles*/
.dropdown-menu .dropdown-item {
    color: #212529;
}

    .dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item.active {
        color: #212529;
        background-color: #e9ecef;
    }

.split-dropdown .dropdown-menu {
    transform: translate3d(0px, 0px, 0px) !important;
    top: 100% !important;
}

.dropdown-toggle.no-arrow:after {
    display: none;
}

.dropzone {
    border: 2px dashed #3f51b5;
    border-radius: 6px;
    background-color: #fafafa;
    min-height: 350px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

    .dropzone .dz-message {
        font-size: 24px;
        margin: 1em 0;
    }

@media screen and (max-width: 1199px) {
    .dropzone .dz-message {
        font-size: 15px;
    }
}

@media screen and (max-width: 1199px) {
    .dropzone {
        min-height: 300px;
    }
}

@media screen and (max-width: 767px) {
    .dropzone {
        min-height: 200px;
    }
}

@media screen and (max-width: 575px) {
    .dropzone {
        min-height: 140px;
    }
}

/*Form Styles*/
form {
    position: relative;
}

.control-label {
    text-align: right;
    padding-top: 5px;
    padding-bottom: 5px;
}

@media screen and (max-width: 575px) {
    .control-label {
        text-align: left;
    }
}

.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*Icons Styles*/
.icon {
    display: inline-block;
    text-align: center;
}

.icons-wrapper {
    display: inline-block;
}

    .icons-wrapper + .icons-wrapper {
        margin-left: 25px;
    }

.icons-showcase > div {
    cursor: pointer;
    padding: 7px 15px;
    border-radius: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .icons-showcase > div:hover {
        background-color: #3f51b5;
        color: #fff;
    }

    .icons-showcase > div > a {
        display: inline-block;
        color: #212529;
    }

    .icons-showcase > div:hover {
        background-color: #3f51b5;
    }

        .icons-showcase > div:hover > a {
            color: #fff;
            text-decoration: none;
        }

.icon-fill,
.icon-outline {
    border: 1px solid #868e96;
    border-radius: 50%;
    color: #868e96;
    display: table;
    font-size: 20px;
    height: 60px;
    padding: 5px;
    width: 60px;
    text-align: center;
    margin: 0 auto;
}

    .icon-fill i,
    .icon-outline i {
        display: table-cell;
        vertical-align: middle;
    }

a.icon-fill,
a.icon-outline {
    text-decoration: none;
}

.icon-fill {
    border: 0 none;
    color: #fff;
}

.small-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

/* Input Style
   ========================================================================== */
.form-control:focus {
    box-shadow: none;
    border-color: #3f51b5;
}

.login-content .form-control {
    background-color: #f5f5f5;
}

.custom-select:focus {
    box-shadow: none;
    border-color: #3f51b5;
}

.select2-container .select2-selection--multiple {
    min-height: 35px;
    border-color: #ced4da;
}

.select2-container .select2-selection--single {
    height: 35px;
    border-color: #ced4da;
}

.select2-dropdown,
.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #ced4da;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 35px;
    padding-left: 0.75rem;
    padding-right: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 33px;
    width: 28px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 0.75rem;
    margin-top: 2px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #3f51b5;
}

.select2-container {
    width: 100% !important;
}

/*Label Styles*/
label {
    margin-bottom: 0;
}

/*List Styles*/
.pinned-list {
    position: relative;
    height: 370px;
    overflow: auto;
    width: auto;
}

.user-list {
    width: 100%;
    padding: 20px 15px 10px;
}

    .user-list .user-avatar {
        margin-right: 20px;
    }

@media screen and (max-width: 575px) {
    .user-list .user-avatar {
        height: 80px !important;
        width: 80px !important;
        line-height: 80px;
    }
}

@media screen and (max-width: 400px) {
    .user-list .user-avatar {
        height: 60px !important;
        width: 60px !important;
        line-height: 60px;
    }
}

.user-list h6 {
    color: #7e8b98;
}

.list-inline {
    margin-left: -5px;
    margin-right: -5px;
}

    .list-inline li {
        padding: 0 5px;
        display: inline-block;
    }

.card-strip {
    border-bottom: solid 1px #dee2e6;
    margin-bottom: 10px;
}

.gx-mbtn-list {
    margin-left: -20px;
}

.nav-link {
    cursor: pointer;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #3f51b5;
}

.card-header.bg-primary .nav-link {
    color: #fff;
}

    .card-header.bg-primary .nav-link.active, .card-header.bg-primary .nav-link:hover, .card-header.bg-primary .nav-link:focus {
        color: #000;
        background-color: #fff;
    }

    .card-header.bg-primary .nav-link.disabled {
        pointer-events: none;
        color: #f8f9fa;
    }

.card-header.bg-primary .tab-link .nav-link.active, .card-header.bg-primary .tab-link .nav-link:hover, .card-header.bg-primary .tab-link .nav-link:focus {
    color: #e6e6e6;
    background-color: transparent;
}

.tab-link .nav-link {
    padding-bottom: 15px;
    margin-bottom: -9px;
}

    .tab-link .nav-link.active {
        border-bottom: 2px solid #E91E63;
    }

/*Pricing Styles*/
.price-tables {
    padding-top: 14px;
}

@media only screen and (max-width: 767px) {
    .price-tables {
        padding-top: 0;
    }
}

.pt-classic .package,
.pt-default .package,
.pt-dark .package,
.pt-circle .package {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 0 none;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

    .pt-classic .package:hover, .pt-classic .package:focus, .pt-classic .package:active,
    .pt-default .package:hover,
    .pt-default .package:focus,
    .pt-default .package:active,
    .pt-dark .package:hover,
    .pt-dark .package:focus,
    .pt-dark .package:active,
    .pt-circle .package:hover,
    .pt-circle .package:focus,
    .pt-circle .package:active {
        -webkit-box-shadow: 0 0 16px rgba(102, 102, 102, 0.5);
        -moz-box-shadow: 0 0 16px rgba(102, 102, 102, 0.5);
        -o-box-shadow: 0 0 16px rgba(102, 102, 102, 0.5);
        box-shadow: 0 0 16px rgba(102, 102, 102, 0.5);
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    .pt-classic .package.highlight,
    .pt-default .package.highlight,
    .pt-dark .package.highlight,
    .pt-circle .package.highlight {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
        z-index: 2;
    }

.pt-classic .package-header,
.pt-default .package-header,
.pt-dark .package-header,
.pt-circle .package-header {
    padding: 35px;
    text-align: center;
}

    .pt-classic .package-header .price,
    .pt-default .package-header .price,
    .pt-dark .package-header .price,
    .pt-circle .package-header .price {
        display: inline-block;
        font-size: 36px;
        font-weight: 700;
        margin-left: 0;
        margin-bottom: 12px;
        line-height: 36px;
    }

        .pt-classic .package-header .price > i,
        .pt-default .package-header .price > i,
        .pt-dark .package-header .price > i,
        .pt-circle .package-header .price > i {
            display: inline-block;
            margin-right: 6px;
            font-weight: bold;
        }

@media only screen and (max-width: 1199px) {
    .pt-classic .package-header .price,
    .pt-default .package-header .price,
    .pt-dark .package-header .price,
    .pt-circle .package-header .price {
        font-size: 28px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 1199px) {
    .pt-classic .package-header h4,
    .pt-default .package-header h4,
    .pt-dark .package-header h4,
    .pt-circle .package-header h4 {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

.pt-classic .package-header h5,
.pt-default .package-header h5,
.pt-dark .package-header h5,
.pt-circle .package-header h5 {
    color: inherit;
}

@media only screen and (max-width: 1199px) {
    .pt-classic .package-header,
    .pt-default .package-header,
    .pt-dark .package-header,
    .pt-circle .package-header {
        padding: 25px;
    }
}

.pt-classic .package-items,
.pt-default .package-items,
.pt-dark .package-items,
.pt-circle .package-items {
    list-style: none;
    font-size: 14px;
    margin: 0;
    padding: 50px 50px 120px;
}

    .pt-classic .package-items li,
    .pt-default .package-items li,
    .pt-dark .package-items li,
    .pt-circle .package-items li {
        margin-bottom: 16px;
        line-height: inherit;
    }

        .pt-classic .package-items li:before, .pt-classic .package-items li:after,
        .pt-default .package-items li:before,
        .pt-default .package-items li:after,
        .pt-dark .package-items li:before,
        .pt-dark .package-items li:after,
        .pt-circle .package-items li:before,
        .pt-circle .package-items li:after {
            content: " ";
            display: table;
        }

        .pt-classic .package-items li:after,
        .pt-default .package-items li:after,
        .pt-dark .package-items li:after,
        .pt-circle .package-items li:after {
            clear: both;
        }

        .pt-classic .package-items li i,
        .pt-default .package-items li i,
        .pt-dark .package-items li i,
        .pt-circle .package-items li i {
            float: left;
            min-width: 20px;
            margin-right: 16px;
            line-height: inherit;
        }

        .pt-classic .package-items li span,
        .pt-default .package-items li span,
        .pt-dark .package-items li span,
        .pt-circle .package-items li span {
            display: block;
            overflow: hidden;
        }

@media only screen and (max-width: 1199px) {
    .pt-classic .package-items,
    .pt-default .package-items,
    .pt-dark .package-items,
    .pt-circle .package-items {
        padding: 30px 20px 80px;
    }
}

.pt-classic .package-footer,
.pt-default .package-footer,
.pt-dark .package-footer,
.pt-circle .package-footer {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    padding: 40px 50px;
    text-align: center;
}

    .pt-classic .package-footer .btn,
    .pt-default .package-footer .btn,
    .pt-dark .package-footer .btn,
    .pt-circle .package-footer .btn {
        color: inherit;
        padding: 10px 30px;
        border: 0 none;
    }

@media only screen and (max-width: 1199px) {
    .pt-classic .package-footer,
    .pt-default .package-footer,
    .pt-dark .package-footer,
    .pt-circle .package-footer {
        padding: 20px 25px;
    }
}

.pt-classic .package {
    border: 0 none;
    border-radius: 0;
}

.pt-dark .package:hover {
    border-radius: 20px;
}

.pt-circle .package-header {
    border-radius: 50%;
    height: 224px;
    width: 224px;
    margin: 40px auto 0;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
}

@media only screen and (max-width: 1199px) {
    .pt-circle .package-header {
        height: 150px;
        width: 150px;
    }
}

.pt-circle .package-header .package-header-item {
    position: relative;
}

@media only screen and (max-width: 991px) {
    .pt-classic .package-header,
    .pt-default .package-header,
    .pt-dark .package-header,
    .pt-circle .package-header {
        padding: 30px 20px;
    }

    .pt-circle .package-header {
        height: 180px;
        width: 180px;
    }
}

@media only screen and (max-width: 767px) {
    .pt-classic .package:hover, .pt-classic .package:focus, .pt-classic .package:active, .pt-classic .package.highlight,
    .pt-default .package:hover,
    .pt-default .package:focus,
    .pt-default .package:active,
    .pt-default .package.highlight,
    .pt-dark .package:hover,
    .pt-dark .package:focus,
    .pt-dark .package:active,
    .pt-dark .package.highlight,
    .pt-circle .package:hover,
    .pt-circle .package:focus,
    .pt-circle .package:active,
    .pt-circle .package.highlight {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
/*Progressbar Styles*/
.pb-wrapper {
    display: flex;
    align-items: center;
}

.pb-btn-wrapper {
    margin: 8px;
    position: relative;
}

    .pb-btn-wrapper .btn-success {
        background-color: #4CAF50;
    }

        .pb-btn-wrapper .btn-success:hover {
            background-color: #388E3C;
        }

.fab-progress {
    color: #4CAF50;
    position: absolute;
    top: -6px;
    left: -6px;
    z-index: 1;
}

.btn-progress {
    color: #4CAF50;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
}

/*Popover Styles*/
.popover {
    z-index: 1510;
}

.popover-header {
    background-color: transparent;
    border-bottom: 0 none;
    color: #000;
    font-size: 20px;
    padding: 15px 20px 0;
}

.popover-body {
    padding: 15px 20px;
}

/* Pager pagination
   ========================================================================== */
.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
    overflow: hidden;
}

@media screen and (max-width: 479px) {
    .pager {
        text-align: left;
        margin: 10px 0;
    }
}

.pager li > a, .pager li > span {
    border-radius: 4px;
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ced4da;
}

.pager > li > a,
.pager > li > span {
    color: #3f51b5;
    text-decoration: none;
}

.pager .previous > a, .pager .previous > span {
    float: left;
}

@media screen and (max-width: 479px) {
    .pager .previous > a, .pager .previous > span {
        float: none;
        margin: 0 5px 5px 0;
    }
}

.pager .next > a, .pager .next > span {
    float: right;
}

@media screen and (max-width: 479px) {
    .pager .next > a, .pager .next > span {
        float: none;
        margin: 0 5px 5px 0 !important;
    }
}

.pager li > a:hover,
.pager li > a:focus {
    color: #868e96;
    background-color: #dee2e6;
}

.pager .disabled > a,
.pager .disabled > a:focus,
.pager .disabled > a:hover,
.pager .disabled > span {
    color: #868e96;
    cursor: not-allowed;
    background-color: #fff;
}

@media screen and (max-width: 629px) {
    .pager > li > a {
        margin-bottom: 6px;
    }
}
/*Tables Styles*/
.table-header {
    padding-right: 2px;
}

    .table-header.highlight-light {
        color: #616161;
        background-color: #e0e0e0;
    }

    .table-header.highlight-dark {
        color: #fff;
        background-color: #616161;
    }

.spacer {
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.actions {
    color: #F44336;
}

.title {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.table-hover tbody tr:hover {
    background-color: rgba(63, 81, 181, 0.075);
}

.d-flex-stretch {
    -webkit-align-items: stretch;
    align-items: stretch;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.default-table {
    margin-bottom: 0;
}

    .default-table thead th {
        font-weight: 400;
        font-size: 16px;
    }

    .default-table td {
        vertical-align: middle;
    }

.table-unbordered th, .table-unbordered td {
    border: 0 none;
}

.table-unbordered .th-border-b th {
    border-bottom: 2px solid #ced4da;
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

        .table-responsive > .table {
            margin-bottom: 0;
        }

            .table-responsive > .table > thead > tr > th,
            .table-responsive > .table > tbody > tr > th,
            .table-responsive > .table > tfoot > tr > th,
            .table-responsive > .table > thead > tr > td,
            .table-responsive > .table > tbody > tr > td,
            .table-responsive > .table > tfoot > tr > td {
                white-space: nowrap;
            }

        .table-responsive > .table-bordered {
            border: 0;
        }

            .table-responsive > .table-bordered > thead > tr > th:first-child,
            .table-responsive > .table-bordered > tbody > tr > th:first-child,
            .table-responsive > .table-bordered > tfoot > tr > th:first-child,
            .table-responsive > .table-bordered > thead > tr > td:first-child,
            .table-responsive > .table-bordered > tbody > tr > td:first-child,
            .table-responsive > .table-bordered > tfoot > tr > td:first-child {
                border-left: 0;
            }

            .table-responsive > .table-bordered > thead > tr > th:last-child,
            .table-responsive > .table-bordered > tbody > tr > th:last-child,
            .table-responsive > .table-bordered > tfoot > tr > th:last-child,
            .table-responsive > .table-bordered > thead > tr > td:last-child,
            .table-responsive > .table-bordered > tbody > tr > td:last-child,
            .table-responsive > .table-bordered > tfoot > tr > td:last-child {
                border-right: 0;
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > th,
            .table-responsive > .table-bordered > tfoot > tr:last-child > th,
            .table-responsive > .table-bordered > tbody > tr:last-child > td,
            .table-responsive > .table-bordered > tfoot > tr:last-child > td {
                border-bottom: 0;
            }
}

div.dataTables_wrapper {
    position: relative;
}

    div.dataTables_wrapper .dataTables_length {
        float: left;
    }

@media screen and (max-width: 767px) {
    div.dataTables_wrapper .dataTables_length {
        float: none;
        margin-bottom: 15px;
        padding-top: 10px;
    }
}

div.dataTables_wrapper .dataTables_filter {
    float: right;
    margin-left: 20px;
}

@media screen and (max-width: 767px) {
    div.dataTables_wrapper .dataTables_filter {
        float: none;
        margin-left: 0;
    }
}

div.dataTables_wrapper .dataTables_info {
    clear: both;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin-bottom: 10px;
}

div.dataTables_paginate .pagination {
    display: table;
    table-layout: fixed;
}

    div.dataTables_paginate .pagination li {
        display: table-cell;
    }

table.dataTable {
    margin-bottom: 15px;
    border-collapse: collapse !important;
}

    table.dataTable thead .sorting::before,
    table.dataTable thead .sorting_asc::before,
    table.dataTable thead .sorting_desc::before,
    table.dataTable thead .sorting_asc_disabled::before,
    table.dataTable thead .sorting_desc_disabled::before {
        right: 1em;
        top: 13px;
        content: "\f2fc";
        font-family: 'Material-Design-Iconic-Font';
        font-size: 14px;
        line-height: 1;
    }

    table.dataTable thead .sorting::after,
    table.dataTable thead .sorting_asc::after,
    table.dataTable thead .sorting_desc::after,
    table.dataTable thead .sorting_asc_disabled::after,
    table.dataTable thead .sorting_desc_disabled::after {
        right: 1em;
        content: "\f2f9";
        top: 19px;
        font-family: 'Material-Design-Iconic-Font';
        font-size: 14px;
        line-height: 1;
    }

/* Tabs
   ========================================================================== */
.tab-wrapper {
    margin-bottom: 10px;
}

.tabs-container .card-body {
    border: solid 1px #e0e0e0;
    border-top: 0 none;
}

.tabs-container.tabs-vertical .card-body {
    border-top: solid 1px #e0e0e0;
}

.tabs-vertical .nav-tabs {
    float: left;
}

    .tabs-vertical .nav-tabs > li {
        float: none;
    }

.tabs-vertical .tab-content {
    overflow: hidden;
}

.tabs-vertical .nav-tabs > li > a {
    border-color: #e0e0e0;
    border-radius: 0;
    margin-right: -1px;
    z-index: 5;
}

    .tabs-vertical .nav-tabs > li > a.active {
        border-color: #e0e0e0;
        border-right-color: #fff;
    }

.tabs-vertical .nav-tabs > li:first-child a {
    border-radius: 4px 0 0 0;
}

.tabs-right .nav-tabs {
    float: right;
}

    .tabs-right .nav-tabs > li > a {
        margin-right: 0;
        margin-left: -1px;
    }

        .tabs-right .nav-tabs > li > a.active {
            border-color: #e0e0e0;
            border-left-color: #fff;
        }

    .tabs-right .nav-tabs > li:first-child a {
        border-radius: 0 4px 0 0;
    }

/*Testimonials Chat Style*/
@media screen and (max-width: 1199px) {
    .chat-testimonial-carousel .customer > img.size-120 {
        width: 70px !important;
        height: 70px !important;
    }
}

@media screen and (max-width: 767px) {
    .chat-testimonial-carousel .customer > img.size-120 {
        width: 120px !important;
        height: 120px !important;
    }
}

@media screen and (max-width: 550px) {
    .chat-testimonial-carousel .customer > img.size-120 {
        width: 80px !important;
        height: 80px !important;
    }
}

@media screen and (max-width: 420px) {
    .chat-testimonial-carousel .customer > img.size-120 {
        width: 60px !important;
        height: 60px !important;
    }
}

.chat-box .card-content {
    padding: 0;
}

.chat-left {
    position: relative;
    overflow: hidden;
}

    .chat-left .customer {
        position: absolute;
        bottom: 0;
    }

    .chat-left .chat-box {
        position: relative;
        padding: 24px;
        background-color: #43A047;
        color: #fff;
        float: right;
        width: 68%;
    }

        .chat-left .chat-box h5, .chat-left .chat-box .post-designation {
            color: #fff;
        }

        .chat-left .chat-box:after {
            border-color: #43A047 transparent;
            border-style: solid;
            border-width: 0 0 16px 28px;
            bottom: 0;
            content: "";
            display: block;
            left: -26px;
            position: absolute;
        }

.chat-right {
    position: relative;
    overflow: hidden;
}

    .chat-right .customer {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .chat-right .chat-box {
        position: relative;
        padding: 24px;
        background-color: #212529;
        color: #fff;
        float: left;
        width: 68%;
    }

        .chat-right .chat-box h5, .chat-right .chat-box .post-designation {
            color: #fff;
        }

        .chat-right .chat-box:after {
            border-color: #212529 transparent;
            border-style: solid;
            border-width: 0 40px 22px 0;
            bottom: 0;
            content: "";
            display: block;
            right: -26px;
            position: absolute;
        }

.testimonial-in-bg {
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.06);
    -o-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.06);
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.06);
    padding: 30px 30px 30px 150px;
    overflow: hidden;
    position: relative;
}

    .testimonial-in-bg .pic {
        display: inline-block;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        overflow: hidden;
        position: absolute;
        top: 30px;
        left: 20px;
        border: 4px solid #ff9800;
    }

        .testimonial-in-bg .pic img {
            width: 100%;
            height: auto;
        }

    .testimonial-in-bg .description {
        color: #e9ecef;
        font-size: 16px;
        font-style: italic;
        font-weight: 400;
        line-height: 25px;
        margin-bottom: 15px;
        position: relative;
    }

        .testimonial-in-bg .description:before {
            content: "\f1b2";
            font-family: 'Material-Design-Iconic-Font';
            font-size: 24px;
            -moz-transform: scaleX(-1);
            -webkit-transform: scaleX(-1);
            -o-transform: scaleX(-1);
            transform: scaleX(-1);
            position: absolute;
            left: -24px;
        }

    .testimonial-in-bg .title {
        color: #ff9800;
        margin-bottom: 6px;
    }

    .testimonial-in-bg .post {
        display: inline-block;
        font-size: 17px;
        color: #ff9800;
    }

.basic-testimonial,
.classic-testimonial {
    text-align: center;
}

    .basic-testimonial .pic,
    .classic-testimonial .pic {
        margin: 0 auto 20px;
    }

        .basic-testimonial .pic img,
        .classic-testimonial .pic img {
            width: 120px !important;
            height: 120px !important;
        }

@media screen and (max-width: 500px) {
    .basic-testimonial .pic img,
    .classic-testimonial .pic img {
        width: 80px !important;
        height: 80px !important;
    }
}

@media screen and (max-width: 991px) {
    .testimonial-in-bg {
        padding: 20px;
        text-align: center;
    }

        .testimonial-in-bg .pic {
            display: block;
            position: static;
            margin: 0 auto 15px;
        }

        .testimonial-in-bg .description:before {
            font-size: 14px;
            left: -4px;
        }
}
/*Time Lines Style*/
.timeline-left {
    float: left;
    margin-right: 20px;
}

.timeline-right {
    float: right;
    margin-left: 20px;
}

.timeline-circle {
    border-radius: 50%;
}

.timeline-section {
    margin-bottom: 25px;
}

.timeline-item {
    padding-bottom: 25px;
    padding-left: 80px;
    position: relative;
}

    .timeline-item:before {
        border-left: solid 2px #dee2e6;
        content: "";
        left: 25px;
        position: absolute;
        top: 25px;
        bottom: -20px;
        width: 2px;
        z-index: 1;
    }

    .timeline-item:first-child:before {
        border-left-style: dashed;
    }

    .timeline-item:last-child:before {
        border-left-style: dashed;
        bottom: 25px;
    }

.timeline-badge {
    height: 50px;
    width: 50px;
    line-height: 50px;
    position: absolute;
    left: 0;
    top: 16px;
    z-index: 2;
    font-size: 16px;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

    .timeline-badge.timeline-img {
        background-color: transparent;
    }

    .timeline-badge svg {
        vertical-align: calc(100% - 56px);
    }

.timeline-img > img,
.timeline-header-img > img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.timeline-panel {
    padding: 20px 30px;
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 8px -1px rgba(0, 0, 0, 0.2);
}

    .timeline-panel:before, .timeline-panel:after {
        content: "";
        position: absolute;
        border-style: solid;
        display: inline-block;
    }

    .timeline-panel:before {
        border-color: transparent #dee2e6;
        border-width: 15px 15px 15px 0;
        left: -15px;
        top: 27px;
    }

    .timeline-panel:after {
        border-color: transparent #fff;
        border-width: 14px 14px 14px 0;
        left: -14px;
        top: 27px;
    }

.timeline-no-padding {
    padding: 0;
}

.timeline-no-shadow {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

    .timeline-no-shadow:before, .timeline-no-shadow:after {
        display: none;
    }

.timeline-panel-header, .timeline-header-img {
    margin-bottom: 10px;
}

.timeline-inverted .timeline-left {
    float: right;
    margin-right: 0;
    margin-left: 20px;
}

.timeline-heading {
    overflow: hidden;
    margin-bottom: 10px;
}

.timeline-body {
    clear: both;
}

/*Gxtl Center Style*/
.timeline-center .timeline-item {
    clear: both;
    float: right;
    width: 50%;
    padding-left: 55px;
}

    .timeline-center .timeline-item:before {
        left: 0;
    }

.timeline-center .timeline-badge {
    left: -25px;
    right: auto;
}

.timeline-center .timeline-time {
    position: absolute;
    top: 32px;
    left: -150px;
    right: auto;
    z-index: 2;
}

.timeline-center .timeline-inverted {
    float: left;
    text-align: right;
    padding-left: 0;
    padding-right: 55px;
}

    .timeline-center .timeline-inverted:before {
        border-left: 0 none;
        border-right: solid 2px #dee2e6;
        left: auto;
        right: -2px;
    }

    .timeline-center .timeline-inverted .timeline-badge {
        left: auto;
        right: -25px;
    }

    .timeline-center .timeline-inverted .timeline-panel:before {
        border-width: 15px 0 15px 15px;
        left: auto;
        right: -15px;
    }

    .timeline-center .timeline-inverted .timeline-panel:after {
        border-width: 14px 0 14px 14px;
        left: auto;
        right: -14px;
    }

    .timeline-center .timeline-inverted .timeline-time {
        position: absolute;
        top: 32px;
        right: -150px;
        left: auto;
        z-index: 2;
    }

/*Gxtl Zigzag Style*/
.timeline-zigzag .timeline-item {
    padding-left: 150px;
}

    .timeline-zigzag .timeline-item + .timeline-item {
        margin-top: -80px;
    }

.timeline-zigzag .timeline-img {
    width: 90px;
    height: 90px;
    left: 5px;
}

    .timeline-zigzag .timeline-img > img {
        width: 100%;
    }

.timeline-zigzag .timeline-inverted .timeline-img {
    right: 5px !important;
}

.timeline-zigzag .timeline-item:before {
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    transform: rotate(35deg);
    top: 20px;
    bottom: 20px;
}

.timeline-zigzag .timeline-inverted {
    padding-left: 0;
    padding-right: 150px;
}

    .timeline-zigzag .timeline-inverted:before {
        -webkit-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
        -o-transform: rotate(-35deg);
        transform: rotate(-35deg);
    }

.timeline-zigzag .timeline-item:first-child:before {
    border-left-style: solid;
}

.timeline-zigzag .timeline-item:last-child:before {
    display: none;
}

.timeline-item:last-child:before {
    bottom: 25px;
}

@media screen and (max-width: 991px) {
    .timeline-zigzag .timeline-item + .timeline-item {
        margin-top: -60px;
    }

    .timeline-zigzag .timeline-item:before {
        bottom: 0;
    }

    .timeline-zigzag .timeline-item {
        padding-left: 120px;
    }

    .timeline-zigzag .timeline-inverted {
        padding-right: 120px;
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .timeline-center .timeline-item {
        float: none;
        padding-left: 80px;
        width: auto;
    }

        .timeline-center .timeline-item:before {
            left: 25px;
        }

    .timeline-center .timeline-badge {
        left: 0;
    }

    .timeline-center .timeline-inverted {
        float: none;
        text-align: left;
        padding-right: 0;
    }

        .timeline-center .timeline-inverted:before {
            border-left: solid 2px #dee2e6;
            border-right: 0 none;
            left: 24px;
            right: auto;
        }

        .timeline-center .timeline-inverted .timeline-badge {
            right: auto;
            left: 0;
        }

        .timeline-center .timeline-inverted .timeline-panel:before {
            border-width: 15px 15px 15px 0;
            left: -15px;
            right: auto;
        }

        .timeline-center .timeline-inverted .timeline-panel:after {
            border-width: 14px 14px 14px 0;
            left: -14px;
            right: auto;
        }

    .timeline-inverted .timeline-panel-header {
        float: none;
    }

    .timeline-inverted .timeline-left {
        float: left;
        margin-left: 0;
        margin-right: 20px;
    }

    .timeline-zigzag .timeline-panel {
        max-height: none;
        min-height: 10px;
        overflow-y: visible;
    }

    .timeline-zigzag .timeline-item {
        padding-left: 100px;
    }

        .timeline-zigzag .timeline-item + .timeline-item {
            margin-top: 0;
        }

        .timeline-zigzag .timeline-item:before {
            transform: none;
            top: 25px;
            bottom: -25px;
            left: 45px;
        }

        .timeline-zigzag .timeline-item:last-child:before {
            bottom: 0;
        }

    .timeline-zigzag .timeline-inverted:before {
        transform: none;
    }

    .timeline-center .timeline-time, .timeline-center .timeline-inverted .timeline-time {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 6px;
    }

    .timeline-center .timeline-time-item .timeline-panel::before {
        top: 10px;
    }

    .timeline-center .timeline-time-item .timeline-panel::after {
        top: 11px;
    }
}

@media screen and (max-width: 399px) {
    .timeline-left {
        float: none;
        margin-right: 0;
    }

    .timeline-right {
        float: none;
        margin-left: 0;
    }

    .timeline-inverted .timeline-left {
        float: none;
        margin-right: 0;
    }
}
/* Pages
   ========================================================================== */
/*App Modules Styles*/
.text-row-between {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

    .text-row-between p {
        margin-bottom: 0;
    }

@media screen and (max-width: 575px) {
    .text-row-between {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }
}

/*Contact Page Styles*/
.contact-form {
    padding: 60px;
}

.contact-block .contact-info {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-align-content: stretch;
    -ms-flex-align: stretch;
    align-content: stretch;
}

    .contact-block .contact-info li {
        -webkit-flex: 1 1 0;
        -ms-flex: 1 1 0;
        flex: 1 1 0;
        overflow: hidden;
        padding: 10px 40px;
        border-right: 2px solid #212529;
        word-wrap: break-word;
    }

        .contact-block .contact-info li:last-child {
            border: 0 none;
        }

        .contact-block .contact-info li > i {
            float: left;
            font-size: 16px;
            margin-right: 5px;
        }

        .contact-block .contact-info li .contact-body {
            overflow: hidden;
        }

            .contact-block .contact-info li .contact-body .icons-wrapper {
                margin-top: 15px;
                margin-left: 0;
            }

            .contact-block .contact-info li .contact-body .icon {
                background-color: #5c6bc0;
                color: #fff;
                border-radius: 50%;
                margin-right: 6px;
                margin-bottom: 6px;
                font-size: 18px;
            }

                .contact-block .contact-info li .contact-body .icon:last-child {
                    margin-right: 0;
                }

            .contact-block .contact-info li .contact-body .twitter-icon {
                background-color: #40c4ff;
            }

            .contact-block .contact-info li .contact-body .google-icon {
                background-color: #EF5350;
            }

            .contact-block .contact-info li .contact-body .linkedin-icon {
                background-color: #0277bd;
            }

    .contact-block .contact-info.vertical {
        display: block;
        margin-bottom: 0;
    }

        .contact-block .contact-info.vertical li {
            padding: 0 0 24px;
            border-right: 0 none;
            border-bottom: 2px solid #212529;
            margin-bottom: 24px;
        }

            .contact-block .contact-info.vertical li:last-child {
                border: 0 none;
                margin-bottom: 0;
                padding-bottom: 0;
            }

@media screen and (max-width: 767px) {
    .contact-form {
        padding: 30px;
    }

    .contact-block .contact-info {
        display: block;
        margin-bottom: 0;
    }

        .contact-block .contact-info li {
            padding: 0 0 24px;
            border-right: 0 none;
            border-bottom: 2px solid #212529;
            margin-bottom: 24px;
        }

            .contact-block .contact-info li:last-child {
                border: 0 none;
                margin-bottom: 0;
                padding-bottom: 0;
            }

    .content-section {
        padding: 20px 10px 0;
        text-align: center;
    }

        .content-section h2 {
            font-size: 28px;
        }

        .content-section p {
            font-size: 18px;
        }
}
/*Color Picker*/
.minicolors-theme-default .minicolors-input {
    height: 28px;
    width: 100%;
    display: inline-block;
    padding-left: 34px;
}

.minicolors-theme-default.minicolors-position-right .minicolors-input {
    padding-right: 26px;
    padding-left: 10px;
}

.minicolors-theme-default.minicolors {
    width: 100%;
    display: block;
}

.input-group .minicolors {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
    display: flex;
}

    .input-group .minicolors .form-control {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        margin-bottom: 0;
    }

.colorpicker {
    margin-top: 0;
}

    .colorpicker.dropdown-menu {
        z-index: 2500;
    }

.input-group-addon .icon-color-preview {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    display: inline-block;
    height: 16px;
    width: 16px;
    margin: 0;
    vertical-align: middle;
}

.noUi-connect {
    background: #3f51b5 !important;
}

/*Dashboard Styles*/
.box {
    position: relative;
}

    .box .box-top,
    .box .box-bottom {
        height: 100px;
        padding: 32px 15px;
        font-size: 40px;
        line-height: 40px;
        text-align: center;
        font-weight: 300;
    }

        .box .box-top .size-h5,
        .box .box-bottom .size-h5 {
            font-size: 24px;
            margin-left: 2px;
        }

        .box .box-top .material-icons,
        .box .box-bottom .material-icons {
            font-size: 40px;
            line-height: 40px;
        }

    .box .box-bottom {
        border-top: 1px solid rgba(0, 0, 0, 0.15);
    }

    .box .box-info {
        position: absolute;
        width: 100%;
        top: 50%;
        margin-top: -12px;
        text-align: center;
    }

        .box .box-info span {
            height: 24px;
            display: inline-block;
            padding: 4px 10px;
            text-transform: uppercase;
            line-height: 14px;
            background-color: #fff;
            border: 1px solid rgba(0, 0, 0, 0.15);
            font-size: 12px;
            color: #868e96;
            border-radius: 1em;
        }

            .box .box-info span .material-icons {
                line-height: 14px;
                font-size: 11px;
            }

.contact-list {
    margin-bottom: 14px;
}

    .contact-list i {
        margin-right: 14px;
        color: #3f51b5;
    }

    .contact-list .media {
        margin-bottom: 10px;
    }

.temp-section .temp-point,
.temp-section .detail-icon {
    font-size: 54px;
    margin-bottom: 0;
}

@media screen and (max-width: 1300px) {
    .temp-section .temp-point,
    .temp-section .detail-icon {
        font-size: 44px;
    }
}

@media screen and (max-width: 1199px) {
    .temp-section .temp-point,
    .temp-section .detail-icon {
        font-size: 54px;
    }
}

@media screen and (max-width: 650px) {
    .temp-section .temp-point,
    .temp-section .detail-icon {
        font-size: 40px;
    }
}

.status-cell {
    min-width: 100px;
    max-width: 120px;
    padding-right: 24px !important;
}

    .status-cell .badge {
        min-width: 70px;
    }

.thumbnail-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    overflow: hidden;
}

    .thumbnail-list .thumbnail-item {
        padding: 0 2.5px;
        float: left;
        width: 33.333%;
        margin-bottom: 5px;
    }

@media screen and (max-width: 767px) {
    .thumbnail-list .thumbnail-item {
        width: 50%;
    }
}

@media screen and (max-width: 575px) {
    .thumbnail-list .thumbnail-item {
        width: 33.333%;
    }
}

.post-list .post-image .grid-thumb-equal {
    padding-bottom: 100%;
}

/*Ecommerce Dashboard Styles*/
.chart-f30 {
    font-size: 30px;
}

@media screen and (max-width: 1099px) {
    .chart-f30 {
        font-size: 20px;
    }
}

.chart-f20 {
    font-size: 20px;
}

@media screen and (max-width: 1099px) {
    .chart-f20 {
        font-size: 16px;
    }
}

.chart-order .col-5 {
    order: 2;
    text-align: center;
}

@media screen and (max-width: 575px) {
    .chart-order .col-5 {
        order: 1;
    }
}

.chart-order .col-7 {
    order: 1;
}

@media screen and (max-width: 575px) {
    .chart-order .col-7 {
        order: 2;
    }
}

.tab-notifications {
    margin-left: -24px;
    margin-right: -24px;
    padding: 0 24px;
    border-bottom: 1px solid #e0e0e0;
}

    .tab-notifications .nav-tabs {
        border-bottom: 0 none;
    }

@media screen and (max-width: 567px) {
    .tab-notifications button,
    .tab-notifications button * {
        font-size: 12px !important;
    }
}

.chart-title h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.img-fluid {
    width: 100%;
}

.comment-footer button {
    margin-bottom: 6px;
}

/*Intranet Dashboard Styles*/
.net-chart {
    padding-left: 0;
    padding-right: 8px;
    min-height: 100px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
}

    .net-chart .gx-card-thumb {
        margin: 0 20px 0 0;
        width: 65px;
        -webkit-transition: all 0.2s ease 0.1s;
        -o-transition: all 0.2s ease 0.1s;
        transition: all 0.2s ease 0.1s;
    }

    .net-chart:hover .gx-card-thumb {
        margin-right: 5px;
        width: 80px;
    }

    .net-chart .gx-card-thumb img {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        -webkit-transition: all 0.2s ease 0.1s;
        -o-transition: all 0.2s ease 0.1s;
        transition: all 0.2s ease 0.1s;
        overflow: hidden;
        margin-left: 15px;
    }

    .net-chart:hover .gx-card-thumb img {
        width: 80px;
        height: 100px;
        border-radius: 0;
        margin: -18px 15px -18px 0;
    }

    .net-chart .gx-card-body {
        width: calc(100% - 95px);
    }

    .net-chart:hover .gx-card-body {
        width: calc(100% - 95px);
    }

.gx-chart-or .chart-header {
    padding-bottom: 0;
}

.net-chart-hr {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    min-height: 120px;
    padding-right: 8px;
    overflow: hidden;
}

    .net-chart-hr .gx-card-thumb {
        margin: -30px 12px -30px -24px;
        min-width: 100px;
    }

    .net-chart-hr .grid-thumb-equal {
        padding-bottom: 130%;
    }

    .net-chart-hr .gx-card-body {
        width: calc(100% - 100px);
    }

.user-profile {
    padding: 10px 0;
}

.mh-120 {
    min-height: 120px;
}

.gx-card-header-top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
}

.gx-card-header-color {
    padding: 10px 20px 20px;
    margin: -18px -24px 25px;
}

.todo-cell-group .todo-cell:not(:last-child) {
    margin-bottom: 5px;
}

.social-list-line {
    position: relative;
}

    .social-list-line:not(:last-child):before {
        border-left: solid 1px #adb5bd;
        content: "";
        left: 20px;
        position: absolute;
        top: 5px;
        bottom: 0;
        width: 1px;
        z-index: 1;
    }

.list-line-item {
    position: relative;
    padding-left: 40px;
}

    .list-line-item:not(:last-child):before {
        border-left: solid 1px #adb5bd;
        content: "";
        left: 20px;
        position: absolute;
        top: -25px;
        bottom: -25px;
        width: 1px;
        z-index: 1;
    }

.list-line-badge {
    position: absolute;
    left: 16px;
    top: 15px;
    z-index: 2;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    background-color: #adb5bd;
}

.dropdown-more {
    display: inline-block;
    color: #212529;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    line-height: 24px;
    text-align: center;
}

    .dropdown-more.dropdown-toggle:after {
        display: none;
    }

    .dropdown-more:hover, .dropdown-more:focus {
        background-color: rgba(0, 0, 0, 0.2);
        color: #212529;
    }

/*Error Styles*/
.page-error-container {
    padding: 30px 0;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

@media screen and (max-width: 575px) {
    .page-error-container {
        padding: 15px 0;
    }
}

.page-error-content {
    margin: 0 auto;
    padding: 40px 0;
    width: 380px;
    max-width: 94%;
}

@media screen and (max-width: 767px) {
    .page-error-content {
        padding: 15px 0;
    }
}

@media screen and (max-width: 575px) {
    .page-error-content {
        padding: 0;
    }
}

.error-code {
    color: #212529;
    font-size: 160px;
    text-align: center;
    line-height: 1;
    font-weight: 600;
    text-shadow: 10px 6px 8px rgba(117, 117, 117, 0.8);
}

@media screen and (max-width: 991px) {
    .error-code {
        font-size: 130px;
    }
}

@media screen and (max-width: 767px) {
    .error-code {
        font-size: 100px;
    }
}

@media screen and (max-width: 575px) {
    .error-code {
        font-size: 80px;
    }
}

.page-error-content h2 {
    margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
    .page-error-content h2 {
        margin-bottom: 20px;
    }
}

/*Editor Styles*/
.rdw-inline-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.rdw-option-wrapper {
    margin-bottom: 6px;
}

/*E-commerce Styles*/
.star-rating {
    margin-bottom: 12px;
}

    .star-rating i {
        color: #ff9800;
    }

        .star-rating i + span {
            margin-left: 10px;
            font-weight: 500;
        }

.form-control-number {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0 10px;
    text-align: center;
    width: 60px !important;
}

.product-details .price span {
    display: inline-block;
    margin-bottom: 0;
}

    .product-details .price span:not(:last-child) {
        margin-right: 5px;
    }

.product-details .meta-wrapper li {
    margin-right: 60px;
    margin-bottom: 10px;
}

    .product-details .meta-wrapper li:last-child {
        margin-right: 0;
    }

    .product-details .meta-wrapper li span {
        margin-bottom: 4px;
    }

@media screen and (max-width: 767px) {
    .product-details .meta-wrapper li {
        margin-right: 30px;
    }
}

@media screen and (max-width: 575px) {
    .product-details .meta-wrapper li {
        margin-right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .product-details .meta-wrapper li {
        margin-right: 0;
        display: block;
    }
}

.product-card {
    padding: 0;
}

    .product-card .gx-card-body {
        padding: 24px;
    }

    .product-card .gx-card-footer {
        padding: 0 24px 24px;
    }

    .product-card.strip-card {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-align-items: center;
        align-items: center;
        padding-right: 24px;
    }

        .product-card.strip-card .gx-card-header {
            min-width: 200px;
            max-width: 200px;
            border-bottom: 0 none;
            margin-bottom: 0;
        }

            .product-card.strip-card .gx-card-header .grid-thumb-equal {
                padding-bottom: 100%;
            }

        .product-card.strip-card .gx-card-body {
            margin-right: auto;
            flex-grow: 1;
        }

        .product-card.strip-card .card-footer {
            min-width: 150px;
            max-width: 150px;
            padding: 0;
            text-align: center;
            height: 100%;
        }

            .product-card.strip-card .card-footer .btn {
                display: block;
            }

    .product-card .card-strip {
        margin-bottom: 0;
    }

@media screen and (max-width: 767px) {
    .product-card.strip-card .gx-card-header {
        min-width: 150px;
        max-width: 150px;
    }
}

@media screen and (max-width: 550px) {
    .product-card.strip-card {
        display: block;
        text-align: center;
        padding-right: 0;
    }

        .product-card.strip-card .gx-card-header {
            min-width: 100%;
            max-width: 100%;
            border-bottom: 1px solid #e9ecef;
        }

            .product-card.strip-card .gx-card-header .grid-thumb-equal {
                padding-bottom: 45%;
            }

        .product-card.strip-card .card-footer {
            min-width: 100%;
            max-width: 100%;
            padding: 0 24px 20px;
            text-align: center;
        }

            .product-card.strip-card .card-footer .btn {
                display: inline-block;
            }
}

.is-focused {
    background-color: transparent;
    background-image: none;
    background-position: center bottom, center calc(100% - 1px);
    background-repeat: no-repeat;
    background-size: 0 2px, 100% 1px;
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
    float: none;
    -webkit-transition: all 0s ease-out 0s;
    -o-transition: all 0s ease-out 0s;
    transition: all 0s ease-out 0s;
}

    .is-focused:hover, .is-focused:focus {
        background-image: linear-gradient(#3f51b5, #3f51b5);
        background-size: 100% 2px, 100% 1px;
        box-shadow: none;
        outline: medium none;
        -webkit-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
        transition: all 0.8s ease;
    }

.cart-item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
}

    .cart-item .cart-image {
        min-width: 120px;
        max-width: 120px;
        border-radius: 2px;
        border: 1px solid #e9ecef;
    }

        .cart-item .cart-image .grid-thumb-equal {
            padding-bottom: 100%;
        }

    .cart-item .cart-content {
        padding: 24px;
        margin-right: auto;
        flex-grow: 1;
    }

    .cart-item .cart-action-btn {
        min-width: 120px;
    }

@media screen and (max-width: 540px) {
    .cart-item {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

        .cart-item .cart-image {
            min-width: 100%;
        }

            .cart-item .cart-image .grid-thumb-equal {
                padding-bottom: 40%;
            }

        .cart-item .cart-content {
            padding-left: 0;
            padding-right: 0;
            width: 100%;
        }

        .cart-item .cart-action-btn {
            margin-bottom: 0;
        }
}

.gx-cart .cart-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .gx-cart .cart-item:last-child {
        margin-bottom: 0;
    }

    .gx-cart .cart-item:hover .icon-outline {
        color: #3f51b5;
        border-color: #3f51b5;
    }

.gx-cart .cart-action-btn .icon-outline {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    .gx-cart .cart-action-btn .icon-outline:hover {
        background-color: #3f51b5;
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
        -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

.price-list {
    margin: 0;
}

    .price-list li {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

        .price-list li:not(:last-child) {
            margin-bottom: 12px;
        }

        .price-list li.total-amount {
            margin-top: 24px;
            margin-right: -5px;
            padding: 4px 5px;
            background-color: #dee2e6;
            border-radius: 2px;
        }

    .price-list .price {
        margin-left: 4px;
    }

/* FAQs
   ========================================================================== */
.categories-list {
    margin-bottom: 0;
}

    .categories-list li {
        margin-bottom: 10px;
    }

        .categories-list li:last-child {
            margin-bottom: 0;
        }

        .categories-list li.active a {
            color: #3f51b5;
        }

    .categories-list .badge {
        font-size: 9px;
    }

.articles-section .articles {
    margin-bottom: 26px;
}

    .articles-section .articles:last-child {
        margin-bottom: 0;
    }

.article-image {
    display: block;
    margin-bottom: 12px;
}

    .article-image > img {
        border-radius: 6px;
        width: 100%;
    }

.article-description p {
    font-weight: 500;
    margin-bottom: 2px;
}

.meta-wrapper {
    margin-bottom: 10px;
}

    .meta-wrapper li span {
        display: block;
    }

.gx-cart .meta-wrapper {
    color: #868e96;
}

.meta-date,
.meta-comment {
    font-size: 12px;
    color: #868e96;
    display: inline-block;
}

    .meta-date i,
    .meta-comment i {
        display: inline-block;
        margin-right: 6px;
    }

    .meta-date + .meta-comment {
        margin-left: 10px;
    }

.search-bar {
    background-color: #fff;
}

    .search-bar .form-group {
        width: 100%;
        height: 100%;
        margin-bottom: 0;
        position: relative;
    }

    .search-bar input[type="search"] {
        padding-right: 50px;
    }

    .search-bar .search-icon {
        background-color: transparent;
        border: 0 none;
        color: #212529;
        height: 30px;
        width: 30px;
    }

    .search-bar .form-control {
        box-shadow: none;
    }

        .search-bar .form-control.form-control-lg + .search-icon {
            position: absolute;
            right: 14px;
            top: 6px;
        }

    .search-bar .search-icon {
        position: absolute;
        right: 14px;
        top: 2px;
    }

    .search-bar.right-side-icon input[type="search"] {
        padding-right: 16px;
        padding-left: 50px;
    }

    .search-bar.right-side-icon .search-icon {
        position: absolute;
        left: 14px;
        top: 2px;
    }

    .search-bar.right-side-icon .form-control {
        box-shadow: none;
    }

        .search-bar.right-side-icon .form-control.form-control-lg + .search-icon {
            position: absolute;
            left: 14px;
            top: 6px;
        }

.nav-searchbox .search-bar input + .search-icon i {
    color: rgba(33, 37, 41, 0.8);
}

@media screen and (max-width: 767px) {
    .gx-card .main-header .search-bar {
        width: 150px;
    }
}
/*Login Styles*/
.login-container {
    position: relative;
    height: 100%;
}

.login-content {
    width: 420px;
    margin: auto;
    padding: 35px 35px 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    font-size: 14px;
    max-width: 94%;
}

.login-header {
    margin-bottom: 30px;
}

/*Portfolio Styles*/
.portfolio-section .card-image {
    margin-bottom: 20px;
}

    .portfolio-section .card-image img {
        width: 100%;
        -webkit-transition: all 1200ms ease;
        -o-transition: all 1200ms ease;
        transition: all 1200ms ease;
    }

    .portfolio-section .card-image:hover img {
        -webkit-box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.6);
        -moz-box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.6);
        -o-box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.6);
        box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.6);
        -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
        transform: scale(1.08);
    }

.filter-with-bg-color ul {
    padding-left: 0;
    margin: 0 -10px 45px;
}

    .filter-with-bg-color ul li {
        display: inline-block;
        margin-bottom: 10px;
        padding: 0 10px;
    }

        .filter-with-bg-color ul li a {
            text-transform: uppercase;
            font-size: 12px;
            padding: 10px 24px;
            border: 1px solid #3f51b5;
            display: block;
            text-decoration: none;
        }

            .filter-with-bg-color ul li a:hover, .filter-with-bg-color ul li a:focus, .filter-with-bg-color ul li a.active {
                cursor: pointer;
                background-color: #3f51b5;
                border-color: #3f51b5;
                color: #fff;
            }

@media screen and (max-width: 575px) {
    .filter-with-bg-color ul {
        margin-bottom: 15px;
    }
}

/*Picker Styles*/
.input-group-addon {
    background-color: #ced4da;
    padding: 7px 10px;
}

    .input-group-addon:last-child {
        border-radius: 0 2px 2px 0;
    }

    .input-group-addon:first-child {
        border-radius: 2px 0 0 2px;
    }

    .input-group-addon .zmdi-calendar {
        font-size: 24px;
    }

.date .input-group-addon {
    padding: 7px 10px 1px;
}

.color-picker .input-group-addon {
    min-width: 40px;
    text-align: center;
    cursor: pointer;
}

.timepicker-sbs .datepicker-days,
.timepicker-sbs .datepicker-months,
.timepicker-sbs .datepicker-years,
.timepicker-sbs .datepicker-decades,
.timepicker-sbs .timepicker-picker,
.timepicker-sbs .timepicker-hours,
.timepicker-sbs .timepicker-minutes {
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td span.active, .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #3f51b5;
}

/*Sweet Alerts*/
.swal-button {
    background-color: #3f51b5;
    color: #fff;
    box-shadow: none;
}

    .swal-button:hover, .swal-button:focus, .swal-button:active {
        background-color: #32408f;
        box-shadow: none;
    }

    .swal-button.swal-button--cancel {
        color: #495057;
        background-color: #dee2e6;
    }

    .swal-button.swal-button--danger {
        background-color: #f44336;
    }

        .swal-button.swal-button--danger:hover,
        .swal-button.swal-button--danger :focus,
        .swal-button.swal-button--danger :active {
            background-color: #ea1c0d;
        }

.custom-swal-modal {
    background-color: rgba(29, 233, 182, 0.69);
    border: 3px solid #fff;
}

/* Vector Map
   ========================================================================== */
.embed-responsive-item-custom {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
}

.jqvmap-zoomin, .jqvmap-zoomout {
    height: 17px;
    width: 17px;
}

/* Slider
   ========================================================================== */
/*Light Slider*/
.product-gallery-slider {
    margin-bottom: 15px;
}

.lSSlideWrapper {
    margin-bottom: 15px;
}

.product-gslider img {
    width: 100%;
}

.lSGallery li {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0.92);
    -ms-transform: scale(0.92);
    -o-transform: scale(0.92);
    transform: scale(0.92);
}

    .lSGallery li.active {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .lSGallery li:hover, .lSGallery li:focus {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

.lSAction > a {
    width: 35px;
    height: 35px;
    margin-top: -17px;
}

    .lSAction > a.lSPrev {
        background-image: url("../images/prev.png");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: 100%;
    }

    .lSAction > a.lSNext {
        background-image: url("../images/next.png");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: 100%;
    }

/*Owl Carousel*/
.brand-logo {
    border: 1px solid #dee2e6;
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 20px;
    padding-bottom: 75%;
}

    .brand-logo .brand-logo-inner {
        text-align: center;
    }

        .brand-logo .brand-logo-inner:before {
            content: "";
            display: inline-block;
            height: 100%;
            vertical-align: middle;
        }

        .brand-logo .brand-logo-inner img {
            height: auto;
            max-height: 100%;
            max-width: 100%;
            display: inline-block;
            vertical-align: middle;
            width: auto !important;
        }

    .brand-logo:hover {
        -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
        -o-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
        -webkit-transition: all 0.4s ease-in-out 0.1s;
        -o-transition: all 0.4s ease-in-out 0.1s;
        transition: all 0.4s ease-in-out 0.1s;
        background-color: #f2f2f2;
    }

@media screen and (max-width: 575px) {
    .brand-logo {
        margin-bottom: 15px;
    }
}

.owl-app-frame.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.carousel-item img {
    max-width: 100%;
}

/* Modules
   ========================================================================== */
/* Module Style */
.gx-wrapper-module {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    height: 100%;
}

.gx-module {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: -24px;
}

.module-side {
    position: relative;
    z-index: 2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex: 0 1 230px;
    -ms-flex: 0 1 230px;
    flex: 0 1 230px;
    max-width: 230px;
    min-width: 230px;
    border-right: 1px solid #e9ecef;
}

.module-side-header {
    border-bottom: solid 1px #e9ecef;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

    .module-side-header .user-detail {
        padding: 15px 10px;
        text-align: center;
    }

.module-logo {
    padding: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 78px;
    font-size: 20px;
    background-color: #f9fafb;
    color: #2f353a;
}

    .module-logo i {
        font-size: 28px;
    }

.module-user-info, .module-side-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.module-user-detail {
    font-size: 12px;
}

.module-side-content {
    background-color: #fff;
}

.module-add-task {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 24px;
}

.module-nav {
    list-style: none;
    padding-left: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
}

    .module-nav li {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

        .module-nav li a {
            padding: 12px 29px;
            color: #9ba5ae;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flexbox;
            display: -o-flex;
            display: flex;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            -webkit-align-items: center;
            align-items: center;
            text-decoration: none;
        }

            .module-nav li a:hover, .module-nav li a:focus {
                color: #212529;
            }

            .module-nav li a.active {
                color: #3f51b5;
            }

        .module-nav li i {
            margin-right: 16px;
            font-size: 16px;
        }

        .module-nav li span {
            display: inline-block;
            vertical-align: middle;
        }

        .module-nav li.module-nav-label {
            padding: 12px 29px;
        }

.module-box {
    position: relative;
    z-index: 2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: calc(100% - 230px);
}

.module-box-header {
    padding: 10px 26px;
    min-height: 79px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: #fff;
    border-bottom: solid 1px #e9ecef;
}

    .module-box-header .search-bar {
        min-width: 350px;
        max-width: 350px;
    }

        .module-box-header .search-bar.right-side-icon .form-control {
            border-radius: 0;
            height: 46px;
            padding: 10px 18px 10px 40px;
        }

            .module-box-header .search-bar.right-side-icon .form-control:focus {
                background-color: #f8f9fa;
            }

        .module-box-header .search-bar.right-side-icon .search-icon {
            width: 25px;
            height: 46px;
            font-size: 16px;
            left: 10px;
            top: 0;
            padding: 0;
        }

    .module-box-header .dropdown-menu:before, .module-box-header .dropdown-menu:after {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #212529;
        top: -12px;
        content: "";
        height: 12px;
        position: absolute;
        right: 10px;
        width: 10px;
    }

    .module-box-header .dropdown-menu:after {
        border-bottom: 5px solid #fff;
        top: -10px;
        height: 10px;
    }

    .module-box-header .nav-searchbox .dropdown-menu:before, .module-box-header .nav-searchbox .dropdown-menu:after {
        left: 10px;
        right: auto;
    }

.module-box-header-inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.module-box-content {
    background-color: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.module-box-topbar {
    padding: 20px 28px;
    border-bottom: solid 1px #e9ecef;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

    .module-box-topbar button + button {
        border-radius: 0;
    }

.module-box-topbar-todo {
    padding-left: 64px;
}

@media screen and (max-width: 575px) {
    .module-box-topbar-todo {
        padding-left: 27px;
    }
}

.module-list-icon {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    padding-right: 10px;
}

.bar-icon {
    margin-right: 15px;
}

.toolbar-separator {
    border-left: solid 1px #ced4da;
    height: 100%;
    width: 1px;
    margin: 0 12px;
}

.toolbar-left {
    margin-left: auto;
}

.module-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.module-list-item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 15px 28px;
    border-bottom: solid 1px #e9ecef;
    position: relative;
    cursor: pointer;
}

    .module-list-item.mail-cell {
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

        .module-list-item.mail-cell .form-checkbox {
            margin-top: 8px;
        }

    .module-list-item > .check-label {
        margin-left: 0;
        margin-bottom: 0;
    }

.module-detail-header {
    margin-bottom: 10px;
}

    .module-detail-header > .check-label {
        margin-right: auto;
    }

.module-list-info {
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: calc(100% - 150px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: 16px;
}

    .module-list-info .subject {
        max-width: calc(100% - 190px);
    }

.module-todo-content {
    position: relative;
}

    .module-todo-content .subject {
        margin-bottom: 5px;
        max-width: 100%;
    }

.module-list-actions {
    text-align: right;
}

.gx-module-sidenav .chat-sidenav-main {
    max-width: 300px;
    min-width: 300px;
    width: 90%;
}

.module-date {
    max-width: 150px;
}

    .module-date > div:before {
        display: none;
    }

.module-detail-item {
    padding: 10px 28px;
}

.task-title {
    font-size: 18px;
}

.chat-todo-avatar {
    margin-right: 15px;
}

.modal-title {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    font-size: 18px;
}

.loader-view-block, .loader-view {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.module-date > div {
    -webkit-align-items: center;
    align-items: center;
}

@media screen and (max-width: 1199px) {
    .module-box-header .search-bar {
        min-width: 280px;
        max-width: 280px;
    }

    .chat-loader-view {
        height: calc(100vh - 120px);
    }
}

@media screen and (min-width: 991px) {
    .modal-dialog {
        max-width: 750px;
    }
}

@media screen and (max-width: 991px) {
    .gx-module-sidenav {
        position: relative;
        z-index: 1045;
    }

    .module-box {
        max-width: 100%;
    }

    .module-box-header {
        position: relative;
        min-height: 58px;
        padding: 5px 26px 5px 75px;
    }

        .module-box-header .drawer-btn {
            position: absolute;
            left: 0;
            top: 0;
            z-index: 1;
            border-right: solid 1px #e9ecef;
            height: 58px;
            width: 56px;
            line-height: 58px;
            text-align: center;
            color: #212529;
            border-radius: 0;
            font-size: 22px;
        }

        .module-box-header .search-bar.right-side-icon .form-control {
            height: 38px;
            padding: 5px 18px 5px 40px;
        }

        .module-box-header .search-bar.right-side-icon .search-icon {
            height: 38px;
        }
}

@media screen and (max-width: 575px) {
    .module-list-item,
    .module-box-topbar {
        padding-left: 16px;
        padding-right: 16px;
    }

    .module-list-info {
        max-width: 100%;
        margin-left: 0;
        margin-top: 20px;
        flex-basis: 100%;
        -webkit-flex-basis: 100%;
    }

    .module-box-header .search-bar {
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        min-width: 280px;
        max-width: 280px;
    }
}

@media screen and (max-width: 399px) {
    .module-box-header .search-bar {
        min-width: 200px;
        max-width: 200px;
    }
}

@media screen and (min-width: 399px) {
    .d-xs-flex {
        display: flex !important;
    }
}
/*Chat Module Styles*/
.chat-module {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

    .chat-module:before {
        left: -29px;
    }

.chat-module-box {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    background-color: #f8f9fa;
    position: relative;
    z-index: 2;
    width: 100%;
}

.chat-sidenav {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex: 0 1 315px;
    -ms-flex: 0 1 315px;
    flex: 0 1 315px;
    min-width: 315px;
    border-right: solid 1px #e9ecef;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 991px) {
    .chat-sidenav {
        -webkit-flex: 0 1 280px;
        -ms-flex: 0 1 280px;
        flex: 0 1 280px;
        min-width: 280px;
        z-index: 1045;
    }
}

.chat-box {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 100%;
}

.chat-sidenav-header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 25px 20px 12px;
    background-color: #f9fafb;
}

    .chat-sidenav-header .tab-link .nav-link {
        padding-bottom: 10px;
        margin-bottom: -12px;
        color: #adb5bd;
        text-transform: uppercase;
    }

        .chat-sidenav-header .tab-link .nav-link.active {
            color: #3f51b5;
            border-bottom: 2px solid #3f51b5;
        }

    .chat-user-hd, .chat-sidenav-header .search-wrapper {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        margin-bottom: 25px;
    }

        .chat-sidenav-header .search-wrapper .search-bar.right-side-icon {
            -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
        }

            .chat-sidenav-header .search-wrapper .search-bar.right-side-icon .form-control {
                -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
                -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
                -o-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
                border-radius: 0;
                padding-left: 42px;
                height: 42px;
            }

            .chat-sidenav-header .search-wrapper .search-bar.right-side-icon .search-icon {
                left: 10px;
                top: 0;
                height: 42px;
                padding: 0;
            }

.chat-avatar {
    margin-right: auto;
    min-width: 40px;
}

.chat-user-item .chat-avatar {
    padding: 0 5px;
}

.chat-user-hd .chat-avatar, .chat-sidenav-header .search-wrapper .chat-avatar {
    cursor: pointer;
}

.chat-avatar-mode {
    position: relative;
    max-width: 50px;
}

    .chat-mode {
        display: block;
        position: relative;
        /* left: 0; */
        /* top: 2px; */
        /* z-index: 1; */
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

        .chat-avatar-mode .chat-mode.small {
            width: 8px;
            height: 8px;
        }

        .chat-mode.online {
            background-color: #4CAF50;
        }

        .chat-avatar-mode .chat-mode.offline {
            background-color: #fff;
            border: solid 1px #4CAF50;
        }

        .chat-mode.away {
            background-color: #fdd835;
        }

.chat-main-header-info .chat-avatar-mode {
    max-width: 60px;
}

.chat-sidenav-content {
    background-color: #fff;
}

.chat-sidenav-title {
    padding: 10px 16px;
    font-size: 14px;
    color: #3f51b5;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.chat-tabs-header {
    background-color: #f9fafb !important;
}

.chat-user {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

    .chat-user.chat-user-center {
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
    }

        .chat-user.chat-user-center .chat-avatar {
            margin-left: auto;
        }

.chat-user-item {
    border-bottom: solid 1px #e9ecef;
    padding: 16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
    max-height: 96px;
}

    .chat-user-item.active, .chat-user-item:hover {
        background-color: #e4e7f6;
        text-decoration: none;
    }

.chat-user-row {
    margin: 0 -5px;
    -webkit-align-items: center;
    align-items: center;
}

.chat-info p, .chat-contact-col p {
    margin-bottom: 0;
}

.chat-info .h4, .chat-contact-col .h4 {
    display: block;
    margin-bottom: 3px;
}

.chat-info-des {
    color: #868e96;
    font-size: 13px;
}

.chat-date {
    padding: 0 5px;
    text-align: right;
}

.chat-box-main {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%;
}

.module-default {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    padding: 15px;
}

.s-128 {
    font-size: 128px;
    width: 128px;
    height: 128px;
    line-height: 128px;
    margin-bottom: 12px;
}

.chat-main {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.chat-main-header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: solid 1px #e9ecef;
    padding: 0;
    height:280px;
    background-color: #fff;
    width: 100%;
}

.chat-main-header-info {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    margin-right: auto;
}

.chat-contact-name {
    font-size: 20px;
    font-weight: 500;
}

.chat-main-footer {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-top: solid 1px #e9ecef;
    padding: 16px;
    background-color: #fff;
    bottom: 0px;
    position: fixed;
    width: 370px;
}

    .chat-main-footer .form-group {
        margin-bottom: 0;
    }

.todo-main-footer {
    padding: 6px 16px;
}

.chat-item {
    padding: 10px 15px;
}

    .chat-item .bubble {
        padding: 8px 12px;
        background-color: #fff;
        -webkit-box-shadow: 0 1px 4px -2px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0 1px 4px -2px rgba(0, 0, 0, 0.3);
        -o-box-shadow: 0 1px 4px -2px rgba(0, 0, 0, 0.3);
        box-shadow: 0 1px 4px -2px rgba(0, 0, 0, 0.3);
        border-radius: 14px 10px 10px 0;
        position: relative;
        margin-left: 16px;
        max-width: calc(100% - 60px);
    }

    .chat-item.flex-row-reverse .bubble {
        margin-right: 16px;
        margin-left: 0;
        background-color: #3f51b5;
        color: #fff;
        border-radius: 10px 14px 0 10px;
    }

    .chat-item.flex-row-reverse .time {
        text-align: right;
    }

    .chat-item .user-avatar {
        -webkit-align-self: flex-end;
        -ms-flex-align: end;
        align-self: flex-end;
    }

    .chat-item .time {
        margin-top: 4px;
        font-size: 11px;
        color: #adb5bd;
    }

.chat-btn {
    color: #212529;
    font-size: 38px;
    margin: 0 15px 0 6px;
}

.chat-textarea {
    height: 40px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

    .chat-textarea:focus {
        background-color: #f8f9fa;
    }

.last-message-time {
    font-size: 11px;
    color: #adb5bd;
}

@media screen and (max-width: 1199px) {
    .chat-main-header {
        padding: 8px 24px;
    }

        .chat-main-header .size-60 {
            height: 50px !important;
            width: 50px !important;
            line-height: 50px;
        }

        .chat-main-header button {
            margin-bottom: 0;
        }

    .chat-main-header-info .chat-avatar-mode {
        max-width: 50px;
    }

    .chat-contact-name,
    .chat-sidenav-title {
        font-size: 16px;
    }

    .chat-main-footer {
        padding: 8px 16px;
    }

    .s-128 {
        font-size: 100px;
        width: 100px;
        height: 100px;
        line-height: 100px;
        margin-bottom: 10px;
    }

    .chat-btn {
        font-size: 30px;
    }
}

@media screen and (max-width: 991px) {
    .chat-module {
        margin: -24px -24px -23px;
        padding-top: 0;
    }

        .chat-module::before {
            left: 0;
            right: 0;
        }
}

@media screen and (max-width: 767px) {
    .chat-sidenav-title,
    .chat-contact-name {
        font-size: 15px;
    }

    .s-128 {
        font-size: 80px;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}

@media screen and (max-width: 575px) {
    .module-default h1 {
        font-size: 17px;
    }

    .s-128 {
        font-size: 40px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}
/*Contact Module Styles*/
.contact-item {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: solid 1px #ced4da;
    padding: 12px 28px;
}

    .contact-item .module-list-info {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

.contact-name {
    font-size: 15px;
}

.modal-box {
    position: relative;
}

.modal-box-header {
    color: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

    .modal-box-header h2 {
        color: #fff;
        position: relative;
    }

        .modal-box-header h2 button {
            position: absolute;
            right: 0;
            top: -10px;
            z-index: 1;
            color: #fff;
        }

.modal-box-content {
    padding: 24px;
}

    .modal-box-content .avatar {
        margin: 0 auto;
    }

.modal-box-footer {
    padding: 0 24px 24px;
}

    .modal-box-footer .attach-file {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-align-items: center;
        align-items: center;
        margin-bottom: 15px;
    }

.btn-fixed {
    position: fixed;
    right: 40px;
    bottom: 60px;
    z-index: 100;
}

.draggable-icon {
    cursor: all-scroll;
    color: #868e96;
    font-size: 25px;
}

    .draggable-icon:hover, .draggable-icon:focus, .draggable-icon:active {
        cursor: all-scroll;
        color: #212529;
    }

.module-side-nav {
    padding: 20px 0;
}

@media screen and (max-width: 767px) {
    .modal-box-header h2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 575px) {
    .modal-box-header h2 {
        font-size: 16px;
    }

    .contact-item {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media screen and (max-width: 399px) {
    .con-inf-mw-100 {
        min-width: 100% !important;
    }
}
/* Calendar Module Style */
/*Full calender*/
#loader {
    border: 4px solid #dee2e6;
    border-radius: 50%;
    border-radius: 50%;
    border-top: 4px solid #E91E63;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 1s linear infinite;
    /* Safari */
    animation: spin 1s linear infinite;
    display: none;
    position: absolute;
    top: 86px;
    right: 60px;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#locale-selector.custom-select {
    height: auto;
}

#external-events .fc-event {
    margin: 10px 0;
    cursor: pointer;
}

.fc-event, .fc-event-dot {
    background-color: #3f51b5;
    color: #fff !important;
    padding: 3px 5px;
    border: 0 none;
}

@media screen and (max-width: 575px) {
    .fc-toolbar .fc-left,
    .fc-toolbar .fc-right {
        float: none;
        overflow: hidden;
        margin-bottom: 14px;
    }

    .fc-toolbar .fc-center {
        display: block;
        overflow: hidden;
    }

    #loader {
        top: 135px;
    }
}
/*Mails Module Styles*/
.module-box-row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
}

.module-box-column {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
}

.mail-user-info {
    margin-bottom: 4px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
}

    .mail-user-info .time, .mail-user-info .dropdown {
        margin-left: auto;
    }

.mail-detail .module-list-scroll {
    padding: 24px;
}

.mail-header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
}

.mail-header-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

    .mail-header-content .subject {
        margin-bottom: 5px;
    }

.show-detail {
    cursor: pointer;
}

.text-truncate, .chat-info-des, .module-list-content .subject, .module-list-content .message p {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.subject {
    font-weight: 500;
}

.module-list-content .message {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    color: #919ca6;
    font-size: 13px;
}

    .module-list-content .message p {
        margin-bottom: 8px;
    }

.size {
    margin: 5px 0;
}

.sender-name {
    font-weight: 500;
    font-size: 15px;
}

.mail-header-actions {
    text-align: right;
    min-width: 100px;
}

    .mail-header-actions .btn:not(:last-child) {
        margin-right: 3px;
    }

@media screen and (max-width: 576px) {
    .mail-list {
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        max-width: 100%;
        border-right: 0 none;
    }

    .mail-detail {
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        max-width: 100%;
    }

        .mail-detail .module-list-scroll {
            padding: 24px;
        }
}

@media screen and (max-width: 499px) {
    .mail-header {
        display: block;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .mail-header-actions {
        text-align: left;
        min-width: 10px;
    }
}

/*# sourceMappingURL=jumbo-core.css.map */
