/*
Author         : G-axon
Template Name  : Mouldifi jQuery - Admin Template
Version        : 2.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. Modal Style
        22. Nav Style
        23. Pricing Tables Styles
        24. Progressbar Styles
        25. Popover Styles
        26. Pager Styles
        27. Tables Styles
        28. Tabs Styles
        29. Testimonial Styles
        30. 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=Nunito+Sans:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,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, .user-list .user-avatar, .timeline-badge {
    height: 50px !important;
    width: 50px !important;
    line-height: 50px;
}
.size-30, .gx-menu-icon, .gx-btn-fab-xs, .icon {
    height: 30px !important;
    width: 30px !important;
    line-height: 30px;
}
.size-35 {
    height: 35px !important;
    width: 35px !important;
    line-height: 35px;
}
.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 {
    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;
}
.gx-card {
    padding: 24px 30px;
    margin-bottom: 34px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    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-avatar-mode .chat-mode.online, .chat-avatar-mode .chat-mode.offline, .user-avatar-mode .user-mode.online, .user-avatar-mode .user-mode.offline {
    display: 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-avatar-mode .chat-mode.away, .user-avatar-mode .user-mode.away {
    display: 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: "Nunito Sans", sans-serif;
    font-size: 13px;
    font-weight: 550;
    color: #3D3D3D;
    background-color: #f4f4f4;
    height: 100%;
    overflow: hidden;
}
.font-13 {
    font-size: 13px;
}
.overflow-hidden {
    overflow: hidden;
}
.text-transform-none {
    text-transform: none;
}
.br-break {
    word-break: break-all !important;
}
.font-weight-semibold {
    font-weight: 600;
}
.z-index-20 {
    z-index: 20;
}
.border-bottom {
    border-bottom: solid 1px #dee2e6;
}
.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: 38px;
}
.page-heading .title {
    text-transform: capitalize;
    font-weight: 600;
}
.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: 13px;
    color: #adb5bd;
    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 !important;
}
.border-red {
    border-color: #F44336 !important;
}
.border-pink {
    border-color: #e91e63 !important;
}
.border-purple {
    border-color: #9C27B0 !important;
}
.border-deep-purple {
    border-color: #673ab7 !important;
}
.border-indigo {
    border-color: #3f51b5 !important;
}
.border-blue {
    border-color: #2196F3 !important;
}
.border-light-blue {
    border-color: #03a9f4 !important;
}
.border-cyan {
    border-color: #00bcd4 !important;
}
.border-teal {
    border-color: #009688 !important;
}
.border-green {
    border-color: #4CAF50 !important;
}
.border-light-green {
    border-color: #8bc34a !important;
}
.border-lime {
    border-color: #cddc39 !important;
}
.border-yellow {
    border-color: #ffeb3b !important;
}
.border-amber {
    border-color: #ffc107 !important;
}
.border-orange {
    border-color: #ff9800 !important;
}
.border-deep-orange {
    border-color: #ff5722 !important;
}
.border-brown {
    border-color: #795548 !important;
}
.border-blue-grey {
    border-color: #607d8b !important;
}
.border-grey {
    border-color: #9e9e9e !important;
}
.center-crop-img {
    position: relative;
    width: 100%;
    min-height: 125px;
    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;
    }
}
.bg-primary.lighten-4 {
    background-color: #c5cae9 !important;
}
.bg-primary.lighten-3 {
    background-color: #9fa8da !important;
}
.bg-primary.lighten-2 {
    background-color: #7986cb !important;
}
.bg-primary.lighten-1 {
    background-color: #5c6bc0 !important;
}
.bg-primary.darken-1 {
    background-color: #3949ab !important;
}
.bg-primary.darken-2 {
    background-color: #303f9f !important;
}
.bg-primary.darken-3 {
    background-color: #283593 !important;
}
.bg-primary.darken-4 {
    background-color: #1a237e !important;
}
.bg-primary.accent-1 {
    background-color: #8c9eff !important;
}
.bg-primary.accent-2 {
    background-color: #536dfe !important;
}
.bg-primary.accent-3 {
    background-color: #3d5afe !important;
}
.bg-primary.accent-4 {
    background-color: #304ffe !important;
}
/*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: 18px;
}
h3, .h3 {
    font-size: 16px;
}
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: 18px;
    }
    h2, .h2 {
        font-size: 16px;
    }
    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: 24px 30px;
    border-bottom: 1px solid #adb5bd;
    margin-left: -30px;
    margin-right: -30px;
}
.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: #fff;
    color: black;
    z-index: 1000;
    border-right: 1px solid #dee2e6;
}
@media screen and (max-width: 991px) {
    .gx-sidebar {
        z-index: 1025;
    }
}
.gx-main-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.gx-main-content {
    width: 100%;
    height: calc(100vh - 70px);
    position: relative;
    padding: 36px 40px 0 40px;
    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;
}
@media screen and (max-width: 767px) {
    .gx-main-content {
        padding: 20px 20px 0 20px;
    }
}
.menu-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1020;
    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: #5c5c5c;
}
.gx-menu-icon .menu-icon.icon-grey {
    background-color: black;
}
.sidebar-mobile-menu {
    margin-right: 15px;
}
@media screen and (max-width: 575px) {
    .sidebar-mobile-menu {
        margin-right: 10px;
    }
}
.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: transparent;
    color: black;
}
.main-header .search-bar input+.search-icon i {
    color: rgba(128, 128, 128, 0.8);
}
.main-header .search-bar input:focus {
    background-color: #f4f4f4;
    color: black;
}
.main-header .search-bar input:focus+.search-icon i {
    color: rgba(128, 128, 128, 0.8);
}
.site-logo img {
    height: 24px;
}
@media screen and (max-width: 575px) {
    .site-logo img {
        height: 20px;
    }
}
.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;
    min-height: 70px;
    padding: 10px 40px 10px 35px;
    background-color: #fff;
    color: black;
    border-bottom: 1px solid #dee2e6;
}
.gx-toolbar .search-bar {
    margin-left: 15px;
    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 {
        width: 200px;
    }
}
@media screen and (max-width: 991px) {
    .gx-toolbar {
        left: 0;
    }
}
@media screen and (max-width: 767px) {
    .gx-toolbar {
        padding: 10px 20px 10px 15px;
    }
}
.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: #5c5c5c;
}
.gx-toolbar .nav-searchbox .search-bar input+.search-icon i {
    color: rgba(92, 92, 92, 0.8);
}
.gx-toolbar .nav-searchbox .search-bar input:focus {
    background-color: transparent;
    color: #5c5c5c;
}
.gx-toolbar .nav-searchbox .search-bar input:focus+.search-icon i {
    color: rgba(92, 92, 92, 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: black;
    font-size: 22px;
}
.header-notifications>li>a:hover, .header-notifications>li>a:focus, .header-notifications>li>a:active {
    color: #737373;
}
.quick-menu .dropdown-menu {
    padding: 5px 10px;
    width: 350px;
    border-radius: 8px;
}
.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;
}
@media screen and (max-width: 500px) {
    .quick-menu .dropdown-menu {
        width: 280px;
    }
}
@media screen and (max-width: 430px) {
    .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;
}
.quick-menu .user-nav .dropdown-menu {
    width: 200px;
    padding: 0;
    padding-bottom: 15px;
}
.quick-menu .user-nav .user-profile {
    position: relative;
    padding: 20px 25px;
    background-color: #f4f4f4;
    margin-bottom: 15px;
    border-radius: 8px 8px 0 0;
}
.quick-menu .language-menu>.flag-icon {
    line-height: 1;
    margin-right: 6px;
}
.quick-menu .language-menu .dropdown-menu {
    width: 150px;
}
.quick-menu .language-menu .dropdown-menu .messages-list ul li {
    padding: 7px 6px 6px;
}
.quick-menu .language-menu .dropdown-menu .media-body {
    color: #5c5c5c;
    margin-left: 10px;
}
.quick-menu .language-menu .dropdown-menu .media-body:hover {
    text-decoration: none;
    color: #3f51b5;
}
.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 .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;
}
.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: 40px;
}
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: black;
    /*color: black;*/
    display: block;
    font-size: 14px;
    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: black;
    padding: 4px 22px;
    font-size: 11px;
    text-transform: uppercase;
}
ul.nav-menu .nav-header:first-child {
    margin-top: 30px;
}
ul.nav-menu>li.selected>a, ul.nav-menu>li.open>a, ul.nav-menu>li>a:hover, ul.nav-menu>li>a:focus {
    color: #3f51b5;
}
ul.nav-menu li.menu>a {
    padding: 16px 20px;
    border-left: 2px solid transparent;
}
ul.nav-menu li.menu.open>a {
    border-color: transparent;
}
ul.nav-menu li.menu>a:focus:before, ul.nav-menu li.menu>a:hover:before {
    color: #3f51b5;
}
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;
    overflow: hidden;
}
ul.nav-menu li.menu .sub-menu li>a {
    padding: 7px 20px 7px 56px;
}
ul.nav-menu li.menu ul.sub-menu>li.menu>ul.sub-menu>li.menu>a {
    padding-left: 76px;
}
ul.nav-menu li.menu ul.sub-menu>li.menu>ul.sub-menu>li.menu>ul.sub-menu>li.menu>a {
    padding-left: 96px;
}
ul.nav-menu li.menu ul.sub-menu>li.menu>ul.sub-menu>li.menu>ul.sub-menu>li.menu>ul.sub-menu>li>a {
    padding-left: 116px;
}
ul.nav-menu li.menu>a:before {
    color: black;
    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: #3f51b5;
}
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 .sub-menu li.active>a .nav-text {
    padding: 3px 7px;
    margin-left: -7px;
    background-color: #3f51b5;
    color: #fff;
    border-radius: 4px;
}
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 {
    color: #3f51b5;
}
.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: 36px;
}
@media screen and (max-width: 767px) {
    .gx-wrapper {
        margin-bottom: 20px;
    }
}
/*Sidebar Styles*/

.gx-sidebar .sidebar-header {
    min-height: 70px;
    padding: 10px 22px;
    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: 1px solid #dee2e6;
}
/*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: #000;
    width: 8px;
}
.theme-option {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 1000;
    background-color: #9C27B0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -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;
}
.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 40px;
    border-top: 1px solid #dee2e6;
    margin: 0 -40px;
}
.gx-footer a {
    color: #5c5c5c;
}
.gx-footer a:hover, .gx-footer a:focus {
    color: #3f51b5;
    text-decoration: none;
}
.gx-footer p {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .gx-footer {
        padding: 14px 20px;
        margin: 0 -20px;
    }
}
@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: 8px;
    position: relative;
}
.alert .close {
    line-height: inherit;
    font-weight: 300;
}
.alert .alert-addon {
    width: 60px;
    border-radius: 8px 0 0 8px;
    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: -1px;
    top: -1px;
    bottom: -1px;
    z-index: 1;
}
.alert-dismissible {
    padding-right: 60px;
}
.alert-dismissible .close:hover, .alert-dismissible .close:focus {
    color: inherit;
}
.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;
    border: 1px solid #bdbdbd;
}
.user-avatar.avatar-shadow {
    border: 0 none;
}
.user-name {
    margin-bottom: 2px;
    font-weight: 400;
    text-transform: capitalize;
}
.user-description {
    font-size: 12px;
    margin-bottom: 0;
    color: #adb5bd;
}
.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: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.accordion-inner {
    border: 0 none;
    padding: 30px;
    background-color: #fff;
}
.accordion-inner .intro-video {
    width: 200px;
    height: auto;
    max-height: 200px;
}
.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: #5c5c5c;
}
.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: #5c5c5c;
    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: 4px;
}
.badge:not(:last-child) {
    margin-right: 15px;
}
table .badge {
    margin-bottom: 0;
}
.badge-outline {
    background-color: transparent;
    border: 1px solid #dee2e6;
}
.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: #6c757d;
    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: 4px;
}
.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: 13px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.2;
    border-radius: 4px;
    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: 35px;
}
.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: 7px 11px;
}
.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: #5c5c5c;
}
.gx-flat-btn:hover, .gx-flat-btn:focus, .gx-flat-btn:active {
    background-color: #f5f5f5;
    color: #5c5c5c;
}
.gx-btn-group {
    margin: 0 -8px;
}
.gx-btn-group:not(:last-child) {
    margin-bottom: 16px;
}
.gx-btn-group .gx-btn, .gx-btn-group .gx-fab-btn {
    margin: 0 8px 18px;
}
.gx-btn-rounded {
    border-radius: 50px !important;
}
.gx-btn-lg, .btn-group-lg>.gx-btn {
    padding: 14px 22px;
}
.gx-btn-sm, .btn-group-sm>.gx-btn {
    padding: 8px 14px;
}
.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: 11px;
}
.gx-btn-fab-sm i, .gx-btn-sm i, .btn-group-sm>.gx-btn i {
    font-size: 11px;
}
.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: #5c5c5c;
    border: 1px solid #dee2e6;
}
.gx-btn-default:hover, .gx-btn-default:focus {
    background-color: #f2f2f2;
    color: #5c5c5c;
}
.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);
}
.circle-check .action-btn {
    height: 24px;
    width: 24px;
    font-size: 16px;
}
.chat-main-header .action-btn {
    color: #fff;
}
.action-replay .gx-btn-default {
    font-size: 14px;
    padding: 5px 10px;
    border-color: #6c757d !important;
}
/*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;
    border-color: #dee2e6;
}
.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.active, .btn-group-vertical>.gx-btn.active {
    background-color: #3f51b5;
    color: #fff;
    border-color: #3f51b5;
}
.btn-group>.gx-btn.gx-flat-btn, .btn-group-vertical>.gx-btn.gx-flat-btn {
    border-color: transparent;
}
.btn-group>.gx-btn.gx-flat-btn.active, .btn-group-vertical>.gx-btn.gx-flat-btn.active {
    background-color: transparent;
    color: #3f51b5;
}
.btn-group>.gx-btn.gx-flat-btn.active:hover, .btn-group>.gx-btn.gx-flat-btn.active:focus, .btn-group-vertical>.gx-btn.gx-flat-btn.active:hover, .btn-group-vertical>.gx-btn.gx-flat-btn.active:focus {
    background-color: rgba(63, 81, 181, 0.12);
    color: #3f51b5;
}
.btn-group .gx-btn+.gx-btn, .btn-group .gx-btn+.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+.btn-group, .btn-group-vertical .btn-group+.gx-btn, .btn-group-vertical .btn-group+.btn-group {
    margin-left: -1px;
}
.btn-group.no-border>.btn-group>.gx-btn, .btn-group.no-border>.btn-group-vertical>.gx-btn, .btn-group.no-border>.gx-btn, .btn-group-vertical.no-border>.btn-group>.gx-btn, .btn-group-vertical.no-border>.btn-group-vertical>.gx-btn, .btn-group-vertical.no-border>.gx-btn {
    border-color: transparent;
}
.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-right: 0;
    margin-bottom: 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: 8px;
    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 .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("http://via.placeholder.com/1920x1080");
    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;
}
.card.gx-card-full-height, .gx-card.gx-card-full-height {
    height: calc(100% - 34px);
}
@media screen and (max-width: 575px) {
    .card.gx-card-full-height, .gx-card.gx-card-full-height {
        height: auto;
    }
}
.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: -24px -30px 0;
}
.gx-card .gx-card-thumb .card-img {
    border-radius: 8px 8px 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: #6c757d;
}
@media screen and (max-width: 575px) {
    .gx-entry-header {
        margin-bottom: 18px;
    }
}
.card {
    margin-bottom: 34px;
    border-radius: 8px;
}
@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: 16px;
    text-transform: capitalize;
}
.card-subtitle {
    font-size: 14px;
    color: #495057;
}
.card-subtitle:not(:last-child) {
    margin-bottom: 16px;
}
.card-mt-footer {
    padding: 0 15px 20px;
    margin-top: -10px;
}
.gx-card-social {
    font-size: 22px;
    padding-top: 26px;
}
.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: #5c5c5c;
}
.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: 16px;
}
.gx-cart-ab i {
    vertical-align: middle;
    font-size: 25px;
}
.img-overlay-card {
    border-radius: 8px;
    margin-bottom: 34px;
}
@media screen and (max-width: 1199px) {
    .img-overlay-card .center-crop-img {
        min-height: 135px;
    }
}
@media screen and (max-width: 767px) {
    .img-overlay-card .center-crop-img {
        min-height: 160px;
    }
}
@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;
}
.c3-tooltip th, .c3-tooltip td {
    border: 0 none !important;
}
.c3-tooltip tr th {
    background-color: #fff;
    color: black;
}
.chart-white .ct-series-a .ct-bar {
    stroke: #fff;
}
.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;
}
#news-ch-chart .ct-bar {
    stroke: #00bfa5;
    stroke-width: 6px !important;
}
/*Carousel Styles*/

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.carousel-caption h3 {
    font-size: 18px;
}
@media screen and (max-width: 500px) {
    .chat-testimonial-carousel .customer>img.size-120 {
        width: 90px !important;
        height: 90px !important;
    }
}
@media screen and (max-width: 430px) {
    .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-nav button.owl-next, .classic-testimonial-carousel .owl-nav button.owl-prev, .classic-testimonial-carousel button.owl-dot {
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 0;
    color: #000;
    height: 40px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    width: 40px;
    padding: 0;
}
.classic-testimonial-carousel .owl-nav button.owl-next:hover, .classic-testimonial-carousel .owl-nav button.owl-next:focus, .classic-testimonial-carousel .owl-nav button.owl-prev:hover, .classic-testimonial-carousel .owl-nav button.owl-prev:focus, .classic-testimonial-carousel button.owl-dot:hover, .classic-testimonial-carousel button.owl-dot:focus {
    background-color: transparent;
}
.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: #5c5c5c;
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item.active {
    color: #5c5c5c;
    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: 8px;
    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: 4px;
    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: #5c5c5c;
}
.icons-showcase>div:hover {
    background-color: #3f51b5;
}
.icons-showcase>div:hover>a {
    color: #fff;
    text-decoration: none;
}
.icon-fill, .icon-outline {
    border: 1px solid #6c757d;
    border-radius: 50%;
    color: #6c757d;
    display: table;
    font-size: 18px;
    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;
}
/*Modal Style*/

.modal-header .close {
    padding: 0;
    margin: 0;
}
.modal-lg {
    max-width: 750px;
}
/*List Styles*/

.pinned-list {
    position: relative;
    height: 370px;
    overflow: auto;
    width: auto;
}
.user-list {
    width: 100%;
    padding: 20px 15px 10px;
}
.user-list.card {
    padding-left: 30px;
}
@media screen and (max-width: 575px) {
    .user-list.card {
        padding-left: 15px;
    }
}
.user-list .user-avatar {
    margin-right: 20px;
    margin-bottom: 10px;
}
.user-list h3 {
    font-weight: 700;
    margin-bottom: 8px;
}
.user-list a[class*="meta-"] {
    display: inline-block;
    color: #5c5c5c;
    font-size: 13px;
    font-weight: 700;
}
.user-list a[class*="meta-"] i {
    margin-right: 6px;
}
.user-list a[class*="meta-"]:hover {
    text-decoration: none;
    color: #4f4f4f;
}
.user-list .img-section {
    width: 230px;
}
@media screen and (max-width: 575px) {
    .user-list .img-section {
        width: 100%;
    }
}
.user-list .description {
    width: calc(100% - 300px);
}
@media screen and (max-width: 575px) {
    .user-list .description {
        width: 100%;
    }
}
.user-list .gx-btn-list li:not(:last-child) {
    margin-right: 10px;
}
.user-list .gx-btn-list .btn-light {
    background-color: lightgray;
    border-color: lightgray;
    color: #5c5c5c;
    font-weight: 600;
}
.user-list .gx-btn-list .btn-light:hover, .user-list .gx-btn-list .btn-light:focus, .user-list .gx-btn-list .btn-light:active {
    background-color: #c7c7c7;
    border-color: #c7c7c7;
}
.user-list .gx-btn-list.badge-list li:not(:last-child) {
    margin-right: 0;
}
.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;
}
.card-header .tab-link {
    margin-right: -15px;
    margin-left: -15px;
}
.tab-link .nav-link {
    padding-bottom: 15px;
    margin-bottom: -9px;
}
.tab-link .nav-link.active {
    border-bottom: 2px solid #E91E63;
}
.module-tab-nav {
    border-bottom: solid 1px #e9ecef;
    margin: 0 -10px;
}
.module-tab-nav li {
    padding: 0 10px;
}
.module-tab-nav li a.nav-link {
    border-bottom: solid 2px transparent;
    color: #818181;
    margin-bottom: -1px;
    padding: 10px 6px 15px 6px;
}
.module-tab-nav li a.nav-link.active {
    border-color: #3f51b5;
    color: #3f51b5;
}
.nav-pills-module {
    margin: 0 -10px;
}
.nav-pills-module>li {
    padding: 0 10px;
}
.nav-pills-module>li>a {
    background-color: #3f51b5;
    color: #fff;
    padding: 3px 12px;
    text-decoration: none;
    border-radius: 4px;
    display: block;
    border: solid 1px #3f51b5;
}
.nav-pills-module>li>a.nav-link-border {
    background-color: transparent;
    border-color: #adb5bd;
    color: #343a40;
}
@media screen and (max-width: 1199px) {
    .module-tab-nav {
        margin: 0 -5px;
    }
    .module-tab-nav li {
        padding: 0 5px;
    }
}
/*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 {
    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: 18px;
    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: #6c757d;
    background-color: #dee2e6;
}
.pager .disabled>a, .pager .disabled>a:focus, .pager .disabled>a:hover, .pager .disabled>span {
    color: #6c757d;
    cursor: not-allowed;
    background-color: #fff;
}
@media screen and (max-width: 629px) {
    .pager>li>a {
        margin-bottom: 6px;
    }
}
/*Tables Styles*/

.table {
    color: black;
}
.table .btn-link {
    color: #a1a1a1 !important;
}
.table .btn-link:hover, .table .btn-link:focus {
    color: black !important;
    text-decoration: none;
}
.table thead th {
    border-top: 0 none;
    color: #5c5c5c;
    font-weight: 500;
    padding-top: 26px;
}
.table .thead-light th {
    color: #5c5c5c;
}
.table .thead-dark th {
    background-color: #000;
    color: #bebebe;
}
.table.table-bordered thead th {
    border-top: 1px solid #e6e6e6;
}
.table .table {
    background-color: #fff;
}
.table thead th:first-child, .table tbody th:first-child {
    padding-left: 24px;
}
.table-dark.gx-card {
    background-color: #3c3c3c;
    border-color: #3c3c3c;
}
.table-dark.gx-card .card-heading {
    color: #bebebe;
}
.table-dark.gx-card .sub-heading {
    color: black;
}
.table-dark.table-bordered thead th {
    border-top-color: #414141;
}
.table-dark thead th {
    color: #bebebe;
}
.table-dark.table-hover tbody tr:hover {
    color: #bebebe;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}
.table-dark.table-striped tbody tr:nth-of-type(even) {
    background-color: #292929;
}
.table-bordered thead th:first-child, .table-bordered tbody th:first-child, .table-bordered thead th {
    padding-top: 10px;
    padding-left: 12px;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}
.table-striped tbody tr:nth-of-type(even) {
    background-color: #f8f8f8;
}
.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($gx-primary, 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;
}
.marketing-table td {
    padding: 10px;
}
.marketing-table td:first-child {
    padding-left: 0;
}
.marketing-table td:last-child {
    padding-right: 0;
}
/* 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 {
    position: absolute;
    left: 0;
    top: 16px;
    z-index: 2;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}
.timeline-badge.timeline-img {
    background-color: transparent;
}
.timeline-badge svg {
    vertical-align: calc(100% - 56px);
}
.timeline-badge.timeline-img:after {
    display: none;
}
.timeline-badge:after {
    position: absolute;
    content: "";
    width: 42px;
    height: 42px;
    background-color: transparent;
    border: 4px solid #f4f4f4;
    border-radius: 50%;
    left: 4px;
    top: 4px;
    z-index: 1;
}
.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: 4px;
    /*&:before {
    border-color: transparent $gray-300;
    border-width: 15px 15px 15px 0;
    left: -15px;
    top: 27px;
  }*/
}
.timeline-panel:after {
    content: "";
    position: absolute;
    border-style: solid;
    display: inline-block;
}
.timeline-panel:after {
    border-color: transparent #fff;
    border-width: 10px 16px 10px 0;
    left: -16px;
    top: 30px;
}
.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: 10px 0 10px 16px;
    left: auto;
    right: -16px;
}
.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 #5c5c5c;
    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 #5c5c5c;
    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 #5c5c5c;
        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: #6c757d;
    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;
}
/*Weather style*/

.temp-week-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    color: #808992;
}
.temp-week-list li:not(:last-child) {
    margin-bottom: 10px;
}
@media screen and (max-width: 340px) {
    .temp-week-list li:not(:last-child) {
        margin-bottom: 20px;
    }
}
.temp-week-list img {
    width: 24px;
    height: 24px;
}
.temp-week-list span {
    display: inline-block;
}
.temp-week-list span.temp-point {
    margin: 0 20px;
}
@media screen and (max-width: 1199px) {
    .temp-week-list span.temp-point {
        margin: 0 10px;
    }
}
@media screen and (max-width: 1050px) {
    .temp-week-list span.temp-point {
        margin: 0 5px;
    }
}
@media screen and (max-width: 340px) {
    .temp-week-list span.temp-point {
        margin: 0 20px;
    }
}
.temp-section .temp-point {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
}
.temp-section .temp-point sub, .temp-section .temp-point sup {
    font-size: 70%;
}
.temp-point sub, .temp-point sup {
    font-size: 70%;
}
.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;
    }
}
.nav-pill-sales li+li {
    margin-right: -1px;
}
.nav-pill-sales .nav-link {
    background-color: #e9ecef;
    border-radius: 0;
    padding: 6px 15px;
    color: #6c757d;
    font-size: 13px;
    border: 1px solid #dee2e6;
}
.nav-pill-sales .nav-link:hover, .nav-pill-sales .nav-link:focus {
    color: #343a40;
}
.nav-pill-sales .nav-link.active {
    background-color: #3f51b5;
    color: #fff;
    border-color: #3f51b5;
}
.nav-pill-sales li:first-child .nav-link {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.nav-pill-sales li:last-child .nav-link {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
@media screen and (max-width: 575px) {
    .nav-pill-sales {
        clear: both;
        padding-top: 10px;
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.tab-notifications {
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 30px;
    border-bottom: 1px solid #e0e0e0;
}
.tab-notifications .nav-tabs {
    border-bottom: 0 none;
}
.tab-notifications .nav-tabs .nav-link {
    padding-left: 2px;
    padding-right: 2px;
}
@media screen and (max-width: 567px) {
    .tab-notifications a, .tab-notifications a * {
        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: 80px;
    padding-right: 15px;
    min-height: 100px;
    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;
}
.net-chart .gx-card-thumb {
    margin: 0;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    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;
    -webkit-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;
    position: absolute;
    left: 15px;
}
.net-chart:hover .gx-card-thumb {
    width: 70px;
    height: 100%;
    font-size: 30px;
    border-radius: 0;
    position: absolute;
    left: 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: 18px 20px 20px;
    margin: -24px -30px 24px;
    border-radius: 8px 8px 0 0;
}
.circle-shape {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.circle-shape-10 {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.project-list {
    line-height: 1;
}
.project-list:not(:last-child) {
    margin-bottom: 20px;
}
.project-list .circle-shape {
    margin-top: 4px;
    margin-right: 16px;
}
.project-list .project-name {
    display: block;
    margin-bottom: 4px;
    color: #5c5c5c;
}
.project-list .project-name:hover, .project-list .project-name:focus {
    color: #3f51b5;
    text-decoration: none;
}
.todo-cell-group .todo-cell:not(:last-child) {
    margin-bottom: 20px;
}
.todo-cell-group .todo-cell .custom-control {
    padding-left: 2rem;
}
.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: -24px;
    bottom: -24px;
    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: #adb5bd;
    -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: #5c5c5c;
}
/*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: 700;
    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: 600;
}
.form-control-number {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0 10px;
    text-align: center;
    width: 60px !important;
}
.product-details .card-title {
    margin-bottom: 15px;
}
.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;
    overflow: hidden;
}
.product-card .gx-card-body {
    padding: 24px 30px;
}
.product-card .gx-card-footer {
    padding: 0 30px 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 .gx-card-footer {
    min-width: 130px;
    max-width: 130px;
    padding: 0;
    text-align: center;
    height: 100%;
}
.product-card .card-strip {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .product-card.strip-card .gx-card-header {
        min-width: 180px;
        max-width: 180px;
    }
}
@media screen and (max-width: 575px) {
    .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 .gx-card-footer {
        min-width: 100%;
        max-width: 100%;
        padding: 0 30px 24px;
        text-align: center;
    }
}
.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: 4px;
    border: 1px solid #dee2e6;
}
.cart-item .cart-image .grid-thumb-equal {
    padding-bottom: 100%;
    border-radius: 4px;
}
.cart-item .cart-content {
    padding: 30px;
    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: 24px;
    margin-bottom: 24px;
}
.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: 4px;
}
.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 a {
    color: #5c5c5c;
}
.categories-list li.active a, .categories-list li a:hover, .categories-list li a:focus {
    color: #3f51b5;
    text-decoration: none;
}
.categories-list .badge {
    font-size: 9px;
}
.articles-section {
    margin-bottom: 0;
}
.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: 600;
    margin-bottom: 2px;
}
.meta-wrapper {
    margin-bottom: 10px;
}
.meta-wrapper li span {
    display: block;
}
.gx-cart .meta-wrapper {
    color: #6c757d;
}
.meta-date, .meta-comment {
    font-size: 12px;
    color: #adb5bd;
    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: #5c5c5c;
    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(92, 92, 92, 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 4px 4px 0;
}
.input-group-addon:first-child {
    border-radius: 4px 0 0 4px;
}
.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: 4px;
}
.bootstrap-datetimepicker-widget table td span.active, .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #3f51b5;
}
.gj-datepicker-bootstrap span[role="right-icon"] .input-group-text {
    padding: 6px 8px 7px 30px;
}
/*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;
    border-radius: 8px;
}
.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: 8px;
    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;
}
.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;
}
.module-side-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-right: 20px;
}
.module-side-header .user-detail {
    padding: 15px 10px;
    text-align: center;
}
.module-logo {
    min-height: 56px;
    color: #5c5c5c;
}
.module-logo h2 {
    font-weight: 600;
    font-size: 18px;
}
.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-add-task {
    padding-bottom: 5px;
}
.plus-circle {
    padding: 0;
    border: solid 1px #818181;
    width: 14px;
    height: 14px;
    line-height: 13px;
    text-align: center;
    border-radius: 50%;
    display: block;
}
.plus-circle i {
    margin: 0 !important;
}
.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: 5px 0;
    color: #818181;
    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: #5c5c5c;
}
.module-nav li a.active {
    color: #3f51b5;
}
.module-nav li i {
    margin-right: 6px;
    font-size: 12px;
}
.module-nav li span {
    display: inline-block;
    vertical-align: middle;
}
.module-nav li.module-nav-label {
    padding: 40px 0 18px;
    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;
}
.module-nav li.module-nav-label a {
    display: block;
    padding: 0;
}
.module-nav li.module-nav-label a i {
    margin-right: 0;
    font-size: 12px;
}
@media screen and (max-width: 575px) {
    .module-nav li.module-nav-label {
        padding: 25px 0 12px;
    }
}
.module-nav li.highlight {
    margin-bottom: 10px;
}
.module-nav li.highlight a {
    padding: 0;
}
.module-nav li.highlight a .highlight-color {
    border: solid 1px #e9ecef;
    padding: 1px 12px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: top;
    background-color: #fff;
}
.module-nav ul.module-nav-team {
    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;
    margin: 0 -4px;
}
.module-nav ul.module-nav-team li {
    padding: 0 4px;
}
.module-nav ul.module-nav-team .dashed-circle {
    border: dashed 1px #3f51b5;
    border-radius: 50%;
}
ul.module-nav-user {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}
ul.module-nav-user li {
    margin-bottom: 15px;
}
ul.module-nav-user .user-profile .user-detail {
    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;
}
ul.module-nav-user a.plus-circle {
    padding: 0;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-self: center;
    align-self: center;
}
.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-bottom: 10px;
    min-height: 56px;
}
.module-box-header .search-bar {
    min-width: 350px;
    max-width: 350px;
}
.module-box-header .search-bar .form-control {
    padding-left: 40px;
    background-color: transparent;
}
.module-box-header .search-bar .form-control:focus {
    background-color: #fff;
}
.module-box-header .search-bar .search-icon {
    width: 25px;
    height: 33px;
    font-size: 13px;
    left: 0;
    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 #5c5c5c;
    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;
    border-radius: 10px;
    border: solid 1px #e9ecef;
}
.module-tab-header {
    overflow: hidden;
    margin: 20px 35px 0;
}
@media screen and (max-width: 575px) {
    .module-tab-header {
        margin: 20px 20px 0;
    }
}
.module-box-topbar {
    padding: 20px 0;
    margin: 0 35px;
    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;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.module-box-topbar h2 a:hover, .module-box-topbar h2 a:focus {
    text-decoration: none;
}
@media screen and (max-width: 575px) {
    .module-box-topbar {
        margin: 0 20px;
    }
}
.module-list-topbar {
    padding: 20px 0;
    margin: 0 35px;
    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;
    -webkit-align-items: center;
    align-items: center;
}
@media screen and (max-width: 575px) {
    .module-list-topbar {
        margin: 0 20px;
    }
}
.module-topbar-user-detail {
    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;
}
.module-topbar-user-detail .user-profile .user-detail {
    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-side-scroll {
    padding-right: 35px;
}
@media screen and (max-width: 991px) {
    .module-side-scroll {
        padding-right: 20px;
    }
}
.module-list-scroll {
    padding: 0 35px;
}
.module-list-scroll1, .module-list-scroll2, .module-list-scroll3 {
    padding: 0 35px;
}
@media screen and (max-width: 575px) {
    .module-list-scroll1, .module-list-scroll2, .module-list-scroll3 {
        padding: 0 20px;
    }
}
@media screen and (max-width: 575px) {
    .module-list-scroll {
        padding: 0 20px;
    }
}
.module-list-scroll-inner {
    padding: 0 35px;
}
@media screen and (max-width: 575px) {
    .module-list-scroll-inner {
        padding: 0 20px;
    }
}
.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: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 15px 0;
    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% - 105px);
    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);
}
.mail-cell .module-list-info {
    max-width: calc(100% - 150px);
}
.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 0;
}
.task-title {
    font-size: 16px;
}
.task-title span {
    font-size: 14px;
}
.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;
}
.module-comment-list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}
.module-comment-list li {
    margin-bottom: 15px;
}
.module-comment-content {
    background-color: #e9ecef;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
}
@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 (max-width: 991px) {
    .gx-module-sidenav {
        position: relative;
        z-index: 1025;
        background-color: #fff;
    }
    .gx-module-sidenav .module-side {
        padding: 20px 0 20px 20px;
    }
    .module-logo {
        min-height: 45px;
    }
    .module-nav li.module-nav-label {
        padding-top: 25px;
    }
    .module-box {
        max-width: 100%;
    }
    .module-box-header {
        position: relative;
        min-height: 48px;
        padding: 5px 26px 5px 65px;
    }
    .module-box-header .drawer-btn {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        height: 48px;
        width: 48px;
        line-height: 48px;
        text-align: center;
        color: #5c5c5c;
        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 {
        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;
    }
    .module-list-info, .module-topbar-user-detail {
        max-width: 100%;
        margin-left: 0;
        margin-top: 12px;
        flex-basis: 100%;
        -webkit-flex-basis: 100%;
    }
    .mail-cell .module-list-info {
        max-width: 100%;
    }
    .module-box-header .search-bar {
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        min-width: 280px;
        max-width: 280px;
    }
}
@media screen and (max-width: 429px) {
    .module-topbar-user-detail {
        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;
    }
    .module-topbar-user-detail .user-name, .module-topbar-user-detail .module-date {
        margin-bottom: 10px;
    }
    .module-topbar-user-detail .module-date {
        margin-right: 30px !important;
    }
    .module-topbar-user-detail .thdots {
        align-self: flex-end;
        margin-top: -36px;
    }
}
@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;
    height: 100%;
}
.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: #fff;
    position: relative;
    z-index: 2;
    width: 100%;
    border: solid 1px #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}
.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;
    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;
        background-color: #fff;
    }
    .chat-sidenav .chat-sidenav-main {
        padding: 20px 0 20px 20px;
    }
}
.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-right: 40px;
}
.chat-sidenav-header .tab-link {
    border-bottom: solid 1px #adb5bd;
}
.chat-sidenav-header .tab-link li {
    margin: 0 10px;
}
.chat-sidenav-header .tab-link .nav-link {
    padding-bottom: 10px;
    color: #adb5bd;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 5px solid transparent;
    margin-bottom: -3px;
}
.chat-sidenav-header .tab-link .nav-link.active {
    color: #3f51b5;
    border-color: #3f51b5;
}
@media screen and (max-width: 991px) {
    .chat-sidenav-header {
        padding-right: 20px;
    }
}
.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: 30px;
}
.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 {
    padding-left: 42px;
    height: 36px;
    background-color: #f4f4f4;
}
.chat-sidenav-header .search-wrapper .search-bar.right-side-icon .search-icon {
    left: 10px;
    top: 0;
    height: 36px;
    padding: 0;
}
.chat-avatar {
    margin-right: auto;
    min-width: 60px;
}
.chat-user-media .chat-avatar {
    min-width: 50px;
    margin-right: 16px;
}
.chat-user-hd .chat-avatar, .chat-sidenav-header .search-wrapper .chat-avatar {
    cursor: pointer;
}
.chat-avatar-mode {
    position: relative;
}
.chat-avatar-mode .chat-mode {
    display: block;
    position: absolute;
    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-avatar-mode .chat-mode.online {
    background-color: #4CAF50;
}
.chat-avatar-mode .chat-mode.offline {
    background-color: #fff;
    border: solid 1px #4CAF50;
}
.chat-avatar-mode .chat-mode.away {
    background-color: #fdd835;
}
.chat-main-header-info .chat-avatar-mode {
    max-width: 60px;
}
.chat-sidenav-content {
    position: relative;
    padding-right: 40px;
}
@media screen and (max-width: 991px) {
    .chat-sidenav-content {
        padding-right: 20px;
    }
}
.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;
    border-radius: 4px;
}
.chat-user-item.active, .chat-user-item:hover {
    background-color: #3f51b5;
    color: #fff;
    text-decoration: none;
}
.chat-user-item.active .chat-info-des, .chat-user-item:hover .chat-info-des {
    color: #d9d9d9;
}
.chat-user-item.active .badge-primary, .chat-user-item:hover .badge-primary {
    color: gray;
    background-color: #fff;
}
.chat-user-media {
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
}
.chat-info, .chat-contact-col {
    max-width: calc(100% - 66px);
}
.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: #6c757d;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 22px);
}
.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: 15px 40px;
    background-color: #3f51b5;
    width: 100%;
    color: #fff;
}
.chat-main-header-info {
    -webkit-align-items: center;
    align-items: center;
}
.chat-contact-name {
    font-size: 16px;
}
.chat-contact-time {
    color: #cccccc;
}
.chat-main-content {
    padding: 30px 40px;
}
.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: 20px 0 30px;
    margin: 0 35px;
    background-color: #fff;
}
.chat-main-footer .form-group {
    margin-bottom: 0;
}
.chat-main-footer .col {
    padding-left: 0;
}
.todo-main-footer {
    padding: 6px 0;
}
.chat-item {
    padding: 10px 15px;
}
.chat-item .bubble-block {
    margin-left: 16px;
}
.chat-item .bubble {
    padding: 12px 18px;
    background-color: #f4f4f4;
    border-radius: 0 10px 10px 0;
    border: solid 1px #e9ecef;
    position: relative;
    margin-bottom: 10px;
    max-width: 600px;
    display: block;
}
.chat-item .bubble:last-child {
    border-radius: 0 10px 10px 10px;
}
.chat-item .bubble:first-child {
    border-radius: 10px 10px 10px 0;
}
.chat-item.flex-row-reverse .bubble-block {
    margin-left: 0;
}
.chat-item.flex-row-reverse .bubble {
    background-color: #3f51b5;
    color: #fff;
    border-radius: 10px 0 0 10px;
}
.chat-item.flex-row-reverse .bubble:last-child {
    border-radius: 10px 0 10px 10px;
}
.chat-item.flex-row-reverse .bubble:first-child {
    border-radius: 10px 10px 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: #5c5c5c;
    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;
}
.chat-list-scroll {
    height: calc(100vh - 376px);
}
.chat-sidenav-scroll {
    height: calc(100vh - 460px);
}
@media screen and (max-width: 991px) {
    .chat-main-header {
        padding: 12px 26px;
    }
    .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-main-header-info .chat-avatar {
        min-width: 50px;
    }
    .chat-main-content {
        padding: 20px 10px;
    }
    .chat-main-footer {
        margin: 0 20px;
        padding: 8px 0;
    }
    .chat-contact-name, .chat-sidenav-title {
        font-size: 16px;
    }
    .s-128 {
        font-size: 100px;
        width: 100px;
        height: 100px;
        line-height: 100px;
        margin-bottom: 10px;
    }
    .chat-btn {
        font-size: 30px;
    }
    .chat-module::before {
        left: 0;
        right: 0;
    }
    .chat-list-scroll {
        height: calc(100vh - 326px);
    }
    .chat-sidenav-scroll {
        height: calc(100vh - 275px);
    }
}
@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;
    }
    .chat-list-scroll {
        height: calc(100vh - 294px);
    }
}
@media screen and (max-width: 575px) {
    .module-default h1 {
        font-size: 17px;
    }
    .s-128 {
        font-size: 40px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .chat-list-scroll {
        height: calc(100vh - 291px);
    }
}
@media screen and (max-width: 450px) {
    .chat-main-header-info .chat-avatar {
        display: none;
    }
    .chat-list-scroll {
        height: calc(100vh - 285px);
    }
}
/*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 #e9ecef;
    padding: 20px 0;
}
.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;
}
.module-contact-list-scroll {
    padding: 0 35px;
}
@media screen and (max-width: 575px) {
    .module-contact-list-scroll {
        padding: 0 20px;
    }
}
.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: #6c757d;
    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;
    }
}
@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: 12px;
    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-user-detail {
    padding-top: 15px;
    position: relative;
}
@media screen and (max-width: 575px) {
    .mail-user-detail {
        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;
    }
    .mail-user-detail .media, .mail-user-detail .action-replay {
        width: 100%;
    }
    .mail-user-detail .action-replay {
        margin-top: 10px;
    }
}
.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, .module-list-content .subject, .module-list-content .message p {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.subject {
    font-weight: 600;
}
.module-mail-list-scroll, .module-mail-list-scroll-inner {
    padding: 0 35px;
}
@media screen and (max-width: 575px) {
    .module-mail-list-scroll, .module-mail-list-scroll-inner {
        padding: 0 20px;
    }
}
.module-list-content {
    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;
}
.module-list-content .col-date {
    min-width: 100px;
    padding: 0 10px;
    text-align: right;
}
@media screen and (max-width: 575px) {
    .module-list-content .col-date {
        text-align: left;
        padding: 0;
    }
}
.module-list-content .col-list-info {
    max-width: calc(100% - 100px);
}
@media screen and (max-width: 575px) {
    .module-list-content .col-list-info {
        max-width: 100%;
        margin-bottom: 10px;
    }
}
.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;
}
@media screen and (max-width: 575px) {
    .module-list-content {
        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;
    }
}
.size {
    margin: 5px 0;
}
.sender-name {
    font-weight: 600;
    font-size: 15px;
}
.mail-header-actions {
    text-align: right;
    min-width: 100px;
}
.mail-header-actions .btn:not(:last-child) {
    margin-right: 3px;
}
.user-avatar-mode {
    position: relative;
    max-width: 40px;
}
.user-avatar-mode .user-mode {
    display: block;
    position: absolute;
    right: 0;
    top: 2px;
    z-index: 1;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.user-avatar-mode .user-mode.small {
    width: 8px;
    height: 8px;
}
.user-avatar-mode .user-mode.online {
    background-color: #4CAF50;
}
.user-avatar-mode .user-mode.offline {
    background-color: #fff;
    border: solid 1px #4CAF50;
}
.user-avatar-mode .user-mode.away {
    background-color: #fdd835;
}
.badge-list {
    list-style: none;
    padding: 0;
    margin: 0 -8px;
    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;
}
.badge-list li {
    padding: 0 8px;
}
.badge-list li a {
    background-color: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
    display: block;
    color: gray;
}
.badge-list li a:hover, .badge-list li a:focus {
    text-decoration: none;
}
.action-replay {
    font-size: 12px;
}
.mail-thanks {
    margin-bottom: 15px;
}
ul.attach-file-list {
    list-style: none;
    margin: 0 -4px 10px;
    padding: 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: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
ul.attach-file-list li {
    padding: 0 4px;
    margin-bottom: 8px;
}
ul.attach-file-list li a {
    width: 65px;
    height: 65px;
    background-color: #e9ecef;
    border-radius: 4px;
    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;
}
ul.attach-file-list li a:hover, ul.attach-file-list li a:focus {
    text-decoration: none;
}
ul.attach-file-list li a img {
    max-width: 100%;
    display: inline-block;
    width: 100%;
}
@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=mouldifi-core.css.map */