@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Item Name: timsy.
    Author: ashishmaraviya
    Version: 2.2.0
    Copyright 2024
	Author URI: https://themeforest.net/user/ashishmaraviya

-----------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------
    Included CSS INDEX
-----------------------------------------------------------------------------------

01. Typography
02. Components
    - Common
    - Sidebar
    - Header
    - Footer
    - Notify-bar
    - Tools-sidebar

03. Layout 
    - Cards
    - All-chart
    - Tables

04. Pages
    - Role-page
    - Rooms
    - Guest
    - Bookings
    - Menus
    - Team Pages
    - Auth Pages
    - Alert popup


-----------------------------------------------------------------------------------*/
/*=== Typography ===*/
/*--  Poppins font  --*/
@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Light.ttf");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}
/*--  Nunito font  --*/
@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}
/** General **/
body {
    margin: 0;
    background-color: rgba(223, 230, 237, 0.2);
    font-family: "Poppins, sans-serif";
    letter-spacing: 0.03rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
    letter-spacing: 0.03rem;
}

a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

p {
    color: #44250c;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.03rem;
}

ul {
    padding: 0;
    margin: 0;
}

    ul li {
        list-style-type: none;
        color: #FFF;
        font-size: 14px;
        line-height: 21px;
        letter-spacing: 0.03rem;
    }

.detail-card ul li {
    line-height: 32px;
}

input, select,
.form-control {
    padding: 8px 15px;
    border: 1px solid #eee;
    line-height: 22px;
    border-radius: 5px;
    font-size: 13px;
    color: #999;
}

    input:focus, input:active, select:focus, select:active,
    .form-control:focus,
    .form-control:active {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #eee;
        color: #777;
    }

    input::-webkit-input-placeholder, select::-webkit-input-placeholder, .form-control::-webkit-input-placeholder {
        color: #999;
    }

    input::-moz-placeholder, select::-moz-placeholder, .form-control::-moz-placeholder {
        color: #999;
    }

    input:-ms-input-placeholder, select:-ms-input-placeholder, .form-control:-ms-input-placeholder {
        color: #999;
    }

    input::-ms-input-placeholder, select::-ms-input-placeholder, .form-control::-ms-input-placeholder {
        color: #999;
    }

    input::placeholder, select::placeholder,
    .form-control::placeholder {
        color: #999;
    }

textarea {
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 13px;
    color: #777;
}

.sb-collapse .lh-main-content {
    width: calc(100% - 80px);
    margin-left: 80px;
}

main {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.lh-main-content {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    width: calc(100% - 270px);
    margin-left: 270px;
    padding: 94px 12px 0 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.lh-main-content-2 {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    width: 100%;
    padding: 154px 12px 0 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.lh-main-content-3 {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    width: 100%;
    padding: 94px 12px 0 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.sb-hide .lh-main-content {
    width: 100%;
    margin-left: 0;
}

/* Spacing */
.pb-m-24 {
    padding-bottom: 24px;
}

.pb-15 {
    padding-bottom: 15px;
}

.mtb-m-15 {
    margin-top: -15px;
    margin-bottom: -15px;
}

.mtb-m-12 {
    margin-top: -12px;
    margin-bottom: -12px;
}

.m-b-0 {
    margin-bottom: 0;
}

.m-b-15 {
    margin-bottom: 15px;
}

.m-r-5 {
    margin-right: 5px;
}

.m-r-10 {
    margin-right: 10px;
}

.m-l-10 {
    margin-left: 10px;
}

.m-r-15 {
    margin-right: 15px;
}

.mb-m-15 {
    margin-bottom: -15px;
}

.mb-m-24 {
    margin-bottom: -24px;
}

.mb-m-30 {
    margin-bottom: -30px;
}

.p-15 {
    padding: 15px;
}

.p-b-15 {
    padding-bottom: 15px;
}

/* Loader */
.lh-loader {
    min-width: 100%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    z-index: 99;
}

    .lh-loader .loader {
        width: 100px;
        height: 100px;
        display: inline-block;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .lh-loader .loader::after, .lh-loader .loader::before {
            content: "";
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 50px solid #799ffe;
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            -webkit-animation: animloader14 2s linear infinite;
            animation: animloader14 2s linear infinite;
        }

        .lh-loader .loader::after {
            -webkit-animation-delay: 1s;
            animation-delay: 1s;
        }

@-webkit-keyframes animloader14 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes animloader14 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/* Colors */
.color-primary {
    color: #5f6af5;
}

.color-secondary {
    color: #ff4f7f;
}

.color-success {
    color: #2bbb93;
}

.color-info {
    color: #50d1f8;
}

.color-warning {
    color: #ffa04f;
}

.color-danger {
    color: #fb2f2f;
}

.color-dark {
    color: #1d2531;
}

.bg-color-primary {
    color: #5f6af5;
}

.bg-color-secondary {
    color: #ff4f7f;
}

.bg-color-success {
    color: #2bbb93;
}

.bg-color-info {
    color: #50d1f8;
}

.bg-color-warning {
    color: #ffa04f;
}

.bg-color-danger {
    color: #fb2f2f;
}

.bg-color-dark {
    color: #1d2531;
}

.bg-primary {
    background-color: #d57106 !important;
}

.bg-secondary {
    background-color: #485568 !important;
}

.section-title h4 {
    font-size: 22px;
    font-weight: 600;
    color: #484d54;
}

label {
    margin-bottom: 5px;
    font-size: 12px;
    color: #f79b2c;
    font-weight: 500;
}

.lh-page-title {
    padding-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .lh-page-title .lh-breadcrumb h5 {
        font-size: 19px;
        font-weight: 600;
        color: #5d3505;
    }

    .lh-page-title .lh-breadcrumb ul {
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

        .lh-page-title .lh-breadcrumb ul li {
            font-size: 13px;
            color: #f8f9fa;
            position: relative;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .lh-page-title .lh-breadcrumb ul li:not(:first-child) {
                padding-left: 20px;
            }

                .lh-page-title .lh-breadcrumb ul li:not(:first-child):after {
                    content: "\ea6e";
                    font-family: "remixicon" !important;
                    font-style: normal;
                    -webkit-font-smoothing: antialiased;
                    position: absolute;
                    top: 0;
                    left: 3px;
                }

            .lh-page-title .lh-breadcrumb ul li a {
                color: #777;
            }

    .lh-page-title .lh-tools {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .lh-page-title .lh-tools > div {
            padding-left: 5px;
        }

        .lh-page-title .lh-tools .calendar {
            height: 35px;
            padding: 0 8px;
            font-size: 12px;
            color: #777;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            background-color: #fff;
            -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
            border-radius: 5px;
        }

            .lh-page-title .lh-tools .calendar i {
                margin-right: 5px;
                font-size: 16px;
                color: #484d54;
            }

        .lh-page-title .lh-tools .refresh {
            width: 35px;
            height: 35px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            border-radius: 5px;
            color: #484d54;
            background-color: #fff;
            -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
        }

        .lh-page-title .lh-tools .filter button {
            width: 35px;
            height: 35px;
            padding: 0;
            background-color: #fff;
            -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
            border-radius: 5px;
            color: #484d54;
            font-size: 13px;
        }

            .lh-page-title .lh-tools .filter button i {
                font-size: 16px;
            }

            .lh-page-title .lh-tools .filter button:after {
                display: none;
            }

            .lh-page-title .lh-tools .filter button:focus {
                -webkit-box-shadow: none;
                box-shadow: none;
            }

.lh-page-title-2 .lh-breadcrumb {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .lh-page-title-2 .lh-breadcrumb h5 {
        margin: 0;
    }

.simple-table {
    width: 100%;
}

    .simple-table thead tr th {
        padding: 10px;
    }

    .simple-table tr td {
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

        .simple-table tr td span {
            display: block;
        }

        .simple-table tr td .title {
            font-size: 14px;
            color: #777;
            text-transform: capitalize;
        }

        .simple-table tr td .link {
            font-size: 13px;
            color: #999;
            text-transform: lowercase;
        }

        .simple-table tr td .users-view {
            font-size: 13px;
            font-weight: 600;
            color: #777;
        }

            .simple-table tr td .users-view i {
                margin-right: 5px;
            }

.radius-30 {
    border-radius: 30px !important;
}

.radius-0 {
    border-radius: 0px !important;
}

.lh-btn {
    height: 35px;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    text-transform: capitalize;
    color: #777;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
}

    .lh-btn:hover {
        background-color: rgba(72, 85, 104, 0.07);
    }

    .lh-btn:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.lh-btn-primary, .lh-primary-btn {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 35px;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #799ffe;
    color: #fff;
    font-size: 14px;
    border: 1px solid #799ffe;
    border-radius: 5px;
    cursor: pointer;
}

    .lh-btn-primary:hover, .lh-primary-btn:hover {
        background-color: #fff;
        color: #799ffe;
        border: 1px solid #799ffe;
    }

    .lh-btn-primary:focus, .lh-primary-btn:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.lh-btn-secondary {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 35px;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ff4f7f;
    color: #fff;
    font-size: 14px;
    border: 1px solid #ff4f7f;
    border-radius: 5px;
    cursor: pointer;
}

    .lh-btn-secondary:hover {
        background-color: #fff;
        color: #ff4f7f;
        border: 1px solid #ff4f7f;
    }

    .lh-btn-secondary:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.max-width-1170 {
    max-width: 1170px;
    margin: auto;
}

.dropdown {
    border-radius: 5px;
}

    .dropdown .dropdown-toggle {
        width: 30px;
        height: 30px;
        padding: 0;
        background: transparent;
        border: 1px solid #eee;
        border-radius: 5px;
    }

        .dropdown .dropdown-toggle:after {
            display: none;
        }

        .dropdown .dropdown-toggle:focus {
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .dropdown .dropdown-toggle i {
            color: #777;
            line-height: 29px;
        }

.lh-code {
    margin-top: 15px;
    background: #fff;
    overflow: auto;
    width: auto;
    border: solid #eee;
    border-width: 0.1em 0.1em 0.1em 0.8em;
    padding-top: 15px;
    padding-left: 15px;
    border-radius: 5px;
}

    .lh-code pre {
        margin: 0;
        line-height: 125%;
    }

        .lh-code pre span,
        .lh-code pre code {
            color: #777;
            background-color: #fff;
        }

.icons-header {
    width: 100%;
    display: block;
    position: relative;
}

.lh-material-icons .hide {
    display: none;
}

.material-icons {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

    .material-icons div {
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 5px;
    }

        .material-icons div code {
            border: 1px solid #f3f3f3;
            width: 65px;
            margin-left: 5px;
            margin-right: 5px;
            border-radius: 5px;
            display: inline-block;
            vertical-align: middle;
            text-align: center;
            line-height: 24px;
            cursor: pointer;
        }

        .material-icons div span {
            cursor: pointer;
            font-size: 13px;
            text-overflow: ellipsis;
            display: inline-block;
            max-width: calc(100% - 90px);
            overflow: hidden;
            vertical-align: middle;
            white-space: nowrap;
            color: #777;
        }

        .material-icons div i {
            display: inline-block;
            width: 32px;
            height: 24px;
            text-align: center;
            vertical-align: middle;
            cursor: pointer;
            line-height: 24px;
        }

.lh-remix-icons {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

    .lh-remix-icons .header-tools {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

        .lh-remix-icons .header-tools input {
            margin-bottom: 15px;
            padding: 8px 15px;
            border: 1px solid #eee;
            border-radius: 5px;
            font-size: 13px;
            color: #777;
        }

            .lh-remix-icons .header-tools input:focus {
                outline: none;
                -webkit-box-shadow: none;
                box-shadow: none;
            }

    .lh-remix-icons .remix-unicode-icon {
        margin-bottom: 24px;
    }

        .lh-remix-icons .remix-unicode-icon.hide {
            display: none;
        }

    .lh-remix-icons .lh-icon-block {
        width: 100%;
        height: 100%;
        padding: 15px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: rgba(72, 85, 104, 0.07);
        border-radius: 5px;
    }

        .lh-remix-icons .lh-icon-block .remix-icons {
            margin-bottom: 15px;
            color: #485568;
            font-family: "remixicon" !important;
            font-size: 26px;
        }

        .lh-remix-icons .lh-icon-block h4 {
            font-family: "Poppins, sans-serif";
            font-size: 14px;
            color: #777;
            font-size: 13px;
            text-align: center;
        }

.remix-unicode {
    font-size: 13px;
    color: #777;
    font-family: "remixicon" !important;
}

.lh-search-popup .search.dropdown-menu.show {
    padding: 5px;
    -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .lh-search-popup .search.dropdown-menu.show a {
        padding: 0 0 0 5px;
        color: #777;
    }

    .lh-search-popup .search.dropdown-menu.show input {
        padding: 5px 10px;
        border: 1px solid #eee;
        border-radius: 5px;
        font-size: 13px;
        color: #777;
    }

        .lh-search-popup .search.dropdown-menu.show input:focus {
            -webkit-box-shadow: none;
            box-shadow: none;
            outline: none;
        }

.drop-settings {
    position: absolute;
    top: 0;
    right: 0;
}

    .drop-settings button {
        padding: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .drop-settings button:focus, .drop-settings button:focus-visible {
            outline: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            background-color: transparent;
        }

        .drop-settings button:hover, .drop-settings button:active {
            background-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .drop-settings button i {
            color: #485568;
        }

        .drop-settings button:after {
            display: none;
        }

    .drop-settings ul {
        min-width: 9rem;
        border: 0;
        -webkit-box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
        box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
    }

        .drop-settings ul li a {
            font-size: 13px;
            color: #777;
            text-transform: capitalize;
        }

            .drop-settings ul li a:active {
                background-color: transparent;
                color: #777;
            }

.dropdown-menu {
    padding: 10px;
    -webkit-box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
    box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
    border: 0;
}

    .dropdown-menu .dropdown-item {
        padding: 5px 10px;
        font-size: 13px;
        color: #777;
        border-radius: 5px;
        text-transform: capitalize;
    }

        .dropdown-menu .dropdown-item:active {
            background-color: #e9ecef;
        }

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
    display: initial;
    width: initial;
    height: initial;
}

.max-height {
    max-height: 450px;
}

.appear {
    -webkit-animation: appear 500ms ease-out forwards;
    animation: appear 500ms ease-out forwards;
}

/**  Tags and skills input  **/
.bootstrap-tagsinput {
    width: 100%;
    background-color: transparent;
    border: 1px solid #eee;
    display: inline-block;
    padding: 8px 10px;
    color: #777;
    vertical-align: middle;
    border-radius: 5px;
    line-height: 22px;
    cursor: text;
}

    .bootstrap-tagsinput input {
        border: none !important;
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
        background-color: transparent;
        padding: 0 5px;
        margin: 0;
        width: auto;
        max-width: inherit;
    }

        .bootstrap-tagsinput input:focus {
            border: none;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .bootstrap-tagsinput input::-webkit-input-placeholder {
            color: #999;
            opacity: 1;
        }

        .bootstrap-tagsinput input::-moz-placeholder {
            color: #999;
            opacity: 1;
        }

        .bootstrap-tagsinput input:-ms-input-placeholder {
            color: #999;
            opacity: 1;
        }

        .bootstrap-tagsinput input::-ms-input-placeholder {
            color: #999;
            opacity: 1;
        }

        .bootstrap-tagsinput input::placeholder {
            color: #999;
            opacity: 1;
        }

    .bootstrap-tagsinput .tag {
        margin-right: 2px;
        color: #777;
    }

        .bootstrap-tagsinput .tag [data-role=remove] {
            margin-left: 8px;
            cursor: pointer;
            color: #ff4f7f;
        }

            .bootstrap-tagsinput .tag [data-role=remove]:after {
                content: "×";
                padding: 0px 2px;
            }

            .bootstrap-tagsinput .tag [data-role=remove]:hover {
                -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
            }

                .bootstrap-tagsinput .tag [data-role=remove]:hover:active {
                    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
                    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
                }

    .bootstrap-tagsinput.form-control input::-moz-placeholder {
        color: #777;
        opacity: 1;
    }

    .bootstrap-tagsinput.form-control input:-ms-input-placeholder {
        color: #777;
    }

    .bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
        color: #777;
    }

@-webkit-keyframes appear {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    75% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes appear {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    75% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/* Responsive css sidebar */
@media only screen and (max-width: 1399px) {
    .lh-main-content {
        width: calc(100% - 250px);
        margin-left: 250px;
    }
}

@media only screen and (max-width: 991px) {
    .mb-991 {
        margin-bottom: 30px;
    }

    .material-icons {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    .lh-main-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .material-icons {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

    .lh-page-title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .lh-page-title .lh-tools {
            margin-top: 15px;
        }

            .lh-page-title .lh-tools > div {
                padding: 0 5px 0 0;
            }

            .lh-page-title .lh-tools .refresh {
                display: none;
            }

    .lh-page-title-2 .lh-breadcrumb {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .lh-page-title-2 .lh-breadcrumb ul {
            margin-top: 5px;
        }
}

@media only screen and (max-width: 575px) {
    .lh-main-content {
        width: 100%;
        margin-left: 0px;
    }

    .sb-collapse .lh-main-content {
        width: 100%;
        margin-left: 0px;
    }
}
/** Sidebar css **/
.sb-collapse .lh-team-block-hide {
    display: none;
}

.sb-collapse .lh-sb-wrapper .lh-team-block-hide.lh-sb-item-separator {
    display: none;
}

.sb-collapse .lh-sidebar {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    width: 80px;
    min-height: 100%;
    overflow: inherit;
}

    .sb-collapse .lh-sidebar .lh-sb-logo {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sb-collapse .lh-sidebar .condense {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sb-collapse .lh-sidebar .lh-sb-wrapper .lh-sb-list .sb-drop-item.active .lh-sb-drop {
        display: none !important;
    }

    .sb-collapse .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .sb-collapse .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item > a > i {
            margin-right: 0;
            font-size: 21px;
        }

    .sb-collapse .lh-sidebar:hover {
        width: 270px;
    }

        .sb-collapse .lh-sidebar:hover .condense {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        .sb-collapse .lh-sidebar:hover .lh-sb-wrapper .lh-sb-list .sb-drop-item.active .lh-sb-drop {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

            .sb-collapse .lh-sidebar:hover .lh-sb-wrapper .lh-sb-list .sb-drop-item.active .lh-sb-drop .lh-sb-subdrop {
                display: -webkit-box !important;
                display: -ms-flexbox !important;
                display: flex !important;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
            }

        .sb-collapse .lh-sidebar:hover .lh-sb-wrapper .lh-sb-list .lh-sb-item > a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
        }

            .sb-collapse .lh-sidebar:hover .lh-sb-wrapper .lh-sb-list .lh-sb-item > a > i {
                margin-right: 10px;
                font-size: 19px;
            }

        .sb-collapse .lh-sidebar:hover .lh-sb-logo {
            height: 70px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            overflow: hidden;
        }

            .sb-collapse .lh-sidebar:hover .lh-sb-logo .sb-full {
                display: block;
            }

                .sb-collapse .lh-sidebar:hover .lh-sb-logo .sb-full img {
                    width: 150px;
                }

            .sb-collapse .lh-sidebar:hover .lh-sb-logo .sb-collapse {
                display: none;
            }

    .sb-collapse .lh-sidebar .sb-full {
        display: none;
    }

    .sb-collapse .lh-sidebar .sb-collapse {
        display: block;
    }

.lh-sidebar {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    width: 270px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
}

    .lh-sidebar .condense {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .lh-sidebar .lh-sb-subdrop {
        padding-top: 15px;
    }

    .lh-sidebar .sb-collapse {
        display: none;
    }

    .lh-sidebar .lh-sb-logo {
        height: 70px;
        padding: 0 15px;
        background-color: #181e28;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        overflow: hidden;
    }

        .lh-sidebar .lh-sb-logo .sb-full img {
            width: 150px;
        }

        .lh-sidebar .lh-sb-logo .sb-collapse img {
            width: 33px;
        }

    .lh-sidebar .lh-sb-wrapper {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        height: calc(100vh - 70px);
        overflow-Y: scroll;
        overflow-x: hidden;
        padding: 24px 15px 24px 24px;
    }

        .lh-sidebar .lh-sb-wrapper::-webkit-scrollbar {
            position: absolute;
            width: 7px;
        }

        .lh-sidebar .lh-sb-wrapper::-webkit-scrollbar-thumb {
            background-color: transparent;
            border-radius: 5px;
        }

        .lh-sidebar .lh-sb-wrapper:hover::-webkit-scrollbar {
            position: absolute;
            width: 7px;
        }

        .lh-sidebar .lh-sb-wrapper:hover::-webkit-scrollbar-thumb {
            background-color: rgba(80, 93, 113, 0.5);
            border-radius: 5px;
        }

        .lh-sidebar .lh-sb-wrapper .lh-team-block-img .lh-team-block-detail {
            padding-bottom: 15px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            border-bottom: 1px solid #27303e;
        }

            .lh-sidebar .lh-sb-wrapper .lh-team-block-img .lh-team-block-detail img {
                width: 70px;
                height: 70px;
                margin-top: 0;
                margin-bottom: 15px;
                border-radius: 50%;
            }

            .lh-sidebar .lh-sb-wrapper .lh-team-block-img .lh-team-block-detail h5 {
                color: #fff;
                font-size: 15px;
                font-weight: 500;
            }

            .lh-sidebar .lh-sb-wrapper .lh-team-block-img .lh-team-block-detail p {
                margin: 0;
                font-size: 12px;
                color: #9da7b5;
            }

        .lh-sidebar .lh-sb-wrapper .lh-sb-item-separator {
            width: 100%;
            height: 1px;
            margin: 15px 0;
            padding: 0;
            display: block;
            background-color: #27303e;
        }

        .lh-sidebar .lh-sb-wrapper .lh-sb-list {
            padding: 0;
            margin: 0;
            list-style-type: none;
        }

            .lh-sidebar .lh-sb-wrapper .lh-sb-list li {
                padding: 5px 0;
            }

                .lh-sidebar .lh-sb-wrapper .lh-sb-list li:last-child {
                    padding-bottom: 0;
                }

            .lh-sidebar .lh-sb-wrapper .lh-sb-list .sb-subdrop-item.load-sub-active > a {
                color: #fff !important;
            }

            .lh-sidebar .lh-sb-wrapper .lh-sb-list .sb-subdrop-item {
                padding-left: 25px;
            }

                .lh-sidebar .lh-sb-wrapper .lh-sb-list .sb-subdrop-item > a {
                    -webkit-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                    width: 100%;
                    color: #aeb8c7 !important;
                    font-size: 14px !important;
                    font-weight: 400 !important;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    line-height: 18px !important;
                }

            .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-title {
                padding: 15px 0 5px 0;
                text-transform: uppercase;
                color: #ea990e;
                font-size: 13px;
                font-weight: 500;
            }

            .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item-separator {
                width: 100%;
                height: 1px;
                margin: 12px 0;
                padding: 0;
                display: block;
                background-color: #27303e;
            }

            .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item.home {
                padding: 12px;
                background-color: #27303e;
                border-radius: 5px;
            }

            .lh-sidebar .lh-sb-wrapper .lh-sb-list .load-active > a .drop-arrow {
                -webkit-transform: rotate(-90deg);
                transform: rotate(-90deg);
            }

            .lh-sidebar .lh-sb-wrapper .lh-sb-list .load-sub-active > a .drop-arrow {
                -webkit-transform: rotate(-90deg);
                transform: rotate(-90deg);
            }

            .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item {
                position: relative;
            }

                .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item a {
                    -webkit-transition: all 0.2s ease-in-out;
                    transition: all 0.2s ease-in-out;
                    width: 100%;
                    color: #fcfdfd;
                    font-size: 14px;
                    font-weight: 400;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    line-height: 18px;
                }

                    .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item a:hover {
                        color: #fff;
                    }

                    .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item a > i {
                        margin-right: 10px;
                        font-size: 19px;
                    }

                    .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item a .drop-arrow {
                        -webkit-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                        position: absolute;
                        right: 0;
                        font-size: 18px;
                    }

                .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item.active > a {
                    color: #fff;
                }

            .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-drop {
                padding-top: 5px;
                padding-left: 0;
            }

                .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-drop a {
                    -webkit-transition: all 0.2s ease-in-out;
                    transition: all 0.2s ease-in-out;
                    text-transform: capitalize;
                    font-weight: 300;
                    color: #fff;
                    font-size: 13px;
                }

                    .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-drop a i.ri-git-commit-line {
                        -webkit-transition: all 0.2s ease-in-out;
                        transition: all 0.2s ease-in-out;
                        rotate: 0deg;
                    }

                    .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-drop a:hover {
                        color: #824f08;
                    }

                .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-drop .active-link {
                    color: #fff;
                }

                    .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-drop .active-link i.ri-git-commit-line {
                        rotate: 90deg;
                    }

[data-mode=light] {
    background-color: #fff;
    border-right: 1px solid #eee;
    overflow: hidden !important;
}

    [data-mode=light] .lh-sb-logo {
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }

    [data-mode=light] .lh-sb-wrapper .lh-sb-list .lh-sb-item-separator {
        background-color: #eee;
    }

    [data-mode=light] .lh-sb-wrapper .lh-sb-list .lh-sb-title {
        color: #ccc;
    }

    [data-mode=light] .lh-sb-wrapper .lh-sb-list .lh-sb-item.load-active > a {
        color: #799ffe !important;
    }

    [data-mode=light] .lh-sb-wrapper .lh-sb-list .lh-sb-drop .active-link {
        color: #484d54 !important;
    }

    [data-mode=light] .lh-sb-wrapper .lh-sb-list .lh-sb-drop a:hover {
        color: #484d54 !important;
    }

    [data-mode=light] .lh-sb-wrapper .lh-sb-list .lh-sb-item a {
        padding: 10px 0;
        color: #484d54;
    }

        [data-mode=light] .lh-sb-wrapper .lh-sb-list .lh-sb-item a:hover {
            color: #777;
        }

[data-mode=dark] {
    background-color: #1d2531;
    border-right: 1px solid #313a4b;
}

    [data-mode=dark] .lh-sb-logo {
        background-color: rgba(24, 30, 40, 0.7) !important;
    }

    [data-mode=dark] .lh-sb-wrapper .lh-sb-list .lh-sb-item.load-active > a {
        color: #fff;
    }

    [data-mode=dark] .lh-sb-wrapper .lh-sb-list .lh-sb-drop .active-link {
        color: #fff;
    }

    [data-mode=dark] .lh-sb-wrapper .lh-sb-list .lh-sb-item a {
        padding: 10px 0;
    }

        [data-mode=dark] .lh-sb-wrapper .lh-sb-list .lh-sb-item a:hover {
            color: #fff;
        }

[data-mode=bg-1] {
    background: url("../img/sidebar/1.jpg");
    background-color: #1d2531;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

    [data-mode=bg-1] .lh-sb-logo {
        background-color: rgba(24, 30, 40, 0.4) !important;
    }

    [data-mode=bg-1] .lh-sb-wrapper .lh-sb-list .lh-sb-item a {
        padding: 10px 0;
    }

    [data-mode=bg-1] .lh-sb-wrapper .lh-sb-list .lh-sb-item.load-active > a {
        color: #fff;
    }

[data-mode=bg-2] {
    background: url("../img/sidebar/2.jpg");
    background-color: #1d2531;
    background-size: 270px;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-position: top left;
    background-attachment: fixed;
}

    [data-mode=bg-2] .lh-sb-logo {
        background-color: rgba(24, 30, 40, 0.4) !important;
    }

    [data-mode=bg-2] .lh-sb-wrapper .lh-sb-list .lh-sb-item a {
        padding: 10px 0;
    }

    [data-mode=bg-2] .lh-sb-wrapper .lh-sb-list .lh-sb-item.load-active > a {
        color: #fff;
    }

[data-mode=bg-3] {
    background: url("../img/sidebar/3.jpg");
    background-color: #1d2531;
    background-size: 270px;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-position: top left;
    background-attachment: fixed;
}

    [data-mode=bg-3] .lh-sb-logo {
        background-color: rgba(24, 30, 40, 0.4) !important;
    }

    [data-mode=bg-3] .lh-sb-wrapper .lh-sb-list .lh-sb-item a {
        padding: 10px 0;
    }

    [data-mode=bg-3] .lh-sb-wrapper .lh-sb-list .lh-sb-item.load-active > a {
        color: #fff;
    }

[data-mode=bg-4] {
    background: url("../img/sidebar/4.jpg");
    background-color: #1d2531;
    background-size: 270px;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-position: top left;
    background-attachment: fixed;
}

    [data-mode=bg-4] .lh-sb-logo {
        background-color: rgba(24, 30, 40, 0.4) !important;
    }

    [data-mode=bg-4] .lh-sb-wrapper .lh-sb-list .lh-sb-item a {
        padding: 10px 0;
    }

    [data-mode=bg-4] .lh-sb-wrapper .lh-sb-list .lh-sb-item.load-active > a {
        color: #fff;
    }

/* Responsive css sidebar */
@media only screen and (max-width: 1399px) {
    .sb-default .lh-sidebar {
        width: 250px;
    }
}

@media only screen and (max-width: 991px) {
    .lh-sidebar-overlay {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 40;
        display: none;
    }

    .sb-default .lh-sidebar {
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

        .sb-default .lh-sidebar .lh-sb-logo {
            height: 70px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            overflow: hidden;
        }

            .sb-default .lh-sidebar .lh-sb-logo .sb-full {
                display: block;
            }

            .sb-default .lh-sidebar .lh-sb-logo .sb-collapse {
                display: none;
            }

    .sb-collapse .lh-sidebar {
        width: 80px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 40;
    }

        .sb-collapse .lh-sidebar:hover {
            width: 80px;
        }

            .sb-collapse .lh-sidebar:hover .lh-sb-logo {
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
            }

                .sb-collapse .lh-sidebar:hover .lh-sb-logo .sb-collapse {
                    display: block;
                }

                .sb-collapse .lh-sidebar:hover .lh-sb-logo .sb-full {
                    display: none;
                }

            .sb-collapse .lh-sidebar:hover .lh-sb-wrapper .lh-sb-list .lh-sb-item {
                pointer-events: none;
            }

                .sb-collapse .lh-sidebar:hover .lh-sb-wrapper .lh-sb-list .lh-sb-item > a {
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                }

                    .sb-collapse .lh-sidebar:hover .lh-sb-wrapper .lh-sb-list .lh-sb-item > a > i {
                        margin-right: 0;
                        font-size: 21px;
                    }

        .sb-collapse .lh-sidebar .condense {
            display: block;
        }
}

@media only screen and (max-width: 767px) {
    .sb-default .lh-sb-logo {
        height: 60px;
    }
}

@media only screen and (max-width: 575px) {
    [data-mode=light] {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .sb-collapse .lh-sidebar {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
        width: 270px;
    }

        .sb-collapse .lh-sidebar .lh-sb-logo {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
        }

        .sb-collapse .lh-sidebar:hover {
            width: 270px;
        }

            .sb-collapse .lh-sidebar:hover .lh-sb-wrapper .lh-sb-list .lh-sb-item {
                pointer-events: inherit;
            }

                .sb-collapse .lh-sidebar:hover .lh-sb-wrapper .lh-sb-list .lh-sb-item > a {
                    -webkit-box-pack: start;
                    -ms-flex-pack: start;
                    justify-content: flex-start;
                }

                    .sb-collapse .lh-sidebar:hover .lh-sb-wrapper .lh-sb-list .lh-sb-item > a i {
                        margin-right: 10px;
                    }

            .sb-collapse .lh-sidebar:hover .lh-sb-logo {
                -webkit-box-pack: start;
                -ms-flex-pack: start;
                justify-content: flex-start;
            }

                .sb-collapse .lh-sidebar:hover .lh-sb-logo .sb-full {
                    display: block !important;
                }

                    .sb-collapse .lh-sidebar:hover .lh-sb-logo .sb-full img {
                        width: 150px;
                    }

                .sb-collapse .lh-sidebar:hover .lh-sb-logo .sb-collapse {
                    display: none;
                }

        .sb-collapse .lh-sidebar .lh-sb-wrapper {
            pointer-events: inherit;
        }

            .sb-collapse .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item > a {
                -webkit-box-pack: start;
                -ms-flex-pack: start;
                justify-content: flex-start;
            }

                .sb-collapse .lh-sidebar .lh-sb-wrapper .lh-sb-list .lh-sb-item > a i {
                    margin-right: 10px;
                }

        .sb-collapse .lh-sidebar .lh-sb-logo .sb-full {
            display: block;
        }

        .sb-collapse .lh-sidebar .lh-sb-logo .sb-collapse {
            display: none;
        }

    .sb-default .lh-sidebar {
        -webkit-transform: translateX(-270px);
        transform: translateX(-270px);
        width: 270px;
    }
}
/** Header css **/
.sb-collapse .lh-header {
    width: calc(100% - 80px);
    margin-left: 80px;
}

.sb-hide .lh-header {
    width: 100%;
    margin-left: 0;
}

.lh-header, [data-header-mode-tool=light] {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    width: calc(100% - 270px);
    height: 70px;
    margin-left: 270px;
    padding: 0 12px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.93);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
    z-index: 15;
}

    .lh-header .lh-header-items, [data-header-mode-tool=light] .lh-header-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .lh-header .lh-header-items .left-header, [data-header-mode-tool=light] .lh-header-items .left-header {
            height: 70px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .lh-header .lh-header-items .left-header a, [data-header-mode-tool=light] .lh-header-items .left-header a {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
            }

        .lh-header .lh-header-items .right-header, [data-header-mode-tool=light] .lh-header-items .right-header {
            height: 70px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .lh-header .lh-header-items .right-header .lh-hover-tool img.user, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-tool img.user {
                width: 35px;
                height: 35px;
                border-radius: 5px;
            }

            .lh-header .lh-header-items .right-header .lh-hover-tool img.flag, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-tool img.flag {
                width: 27px;
                height: 20px;
            }

            .lh-header .lh-header-items .right-header .lh-hover-drop li a, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop li a {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
            }

                .lh-header .lh-header-items .right-header .lh-hover-drop li a .flag, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop li a .flag {
                    width: 20px;
                    height: 100%;
                    margin-right: 10px;
                    border: 1px solid #eee;
                }

            .lh-header .lh-header-items .right-header .lh-flag-drop.language .lh-hover-drop-panel, [data-header-mode-tool=light] .lh-header-items .right-header .lh-flag-drop.language .lh-hover-drop-panel {
                min-width: 150px;
            }

            .lh-header .lh-header-items .right-header .lh-right-tool.apps .lh-hover-drop-panel, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool.apps .lh-hover-drop-panel {
                min-width: 290px;
            }

                .lh-header .lh-header-items .right-header .lh-right-tool.apps .lh-hover-drop-panel ul, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool.apps .lh-hover-drop-panel ul {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: horizontal;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: row;
                    flex-direction: row;
                    -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
                }

                    .lh-header .lh-header-items .right-header .lh-right-tool.apps .lh-hover-drop-panel ul li, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool.apps .lh-hover-drop-panel ul li {
                        width: 90px;
                    }

                        .lh-header .lh-header-items .right-header .lh-right-tool.apps .lh-hover-drop-panel ul li a, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool.apps .lh-hover-drop-panel ul li a {
                            padding: 15px;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                            -webkit-box-orient: vertical;
                            -webkit-box-direction: normal;
                            -ms-flex-direction: column;
                            flex-direction: column;
                            -webkit-box-pack: center;
                            -ms-flex-pack: center;
                            justify-content: center;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            align-items: center;
                        }

                            .lh-header .lh-header-items .right-header .lh-right-tool.apps .lh-hover-drop-panel ul li a .app, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool.apps .lh-hover-drop-panel ul li a .app {
                                width: 35px;
                                height: 35px;
                                margin-bottom: 5px;
                            }

            .lh-header .lh-header-items .right-header .lh-hover-drop, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop {
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
                width: 40px;
                height: 40px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                position: relative;
                border-radius: 5px;
            }

                .lh-header .lh-header-items .right-header .lh-hover-drop:hover, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop:hover {
                    background-color: #e9ecef;
                }

                    .lh-header .lh-header-items .right-header .lh-hover-drop:hover .lh-hover-drop-panel, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop:hover .lh-hover-drop-panel {
                        margin-top: 0;
                        opacity: 1;
                        visibility: visible;
                    }

                .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel {
                    -webkit-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                    min-width: 200px;
                    margin-top: 15px;
                    padding: 10px;
                    position: absolute;
                    text-align: left;
                    opacity: 0;
                    visibility: hidden;
                    top: 55px;
                    left: auto !important;
                    background: #fff;
                    -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
                    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
                    display: block;
                    z-index: 9;
                    border-radius: 5px;
                }

                    .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel .details, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel .details {
                        padding: 10px 10px 0 10px;
                    }

                        .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel .details h6, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel .details h6 {
                            margin-bottom: 0;
                            font-family: "Poppins, sans-serif";
                            font-size: 13px;
                            font-weight: 500;
                        }

                        .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel .details p, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel .details p {
                            margin: 0;
                            font-size: 12px;
                            font-weight: 400;
                        }

                    .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel .border-top, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel .border-top {
                        margin-top: 15px;
                        padding-top: 10px;
                        border-color: #eee;
                    }

                    .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel ul li a, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel ul li a {
                        width: 100%;
                        padding: 5px 10px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        border-radius: 5px;
                        color: #777;
                        font-size: 13px;
                    }

                        .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel ul li a:hover, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel ul li a:hover {
                            background-color: #e9ecef;
                        }

                        .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel ul li a i, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel ul li a i {
                            margin-right: 6px;
                            font-size: 17px;
                        }

                    .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel.right, [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel.right {
                        right: 0;
                    }

            .lh-header .lh-header-items .right-header .lh-right-tool, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool {
                margin-left: 10px;
            }

                .lh-header .lh-header-items .right-header .lh-right-tool .title, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool .title {
                    margin: -10px -10px 10px -10px;
                    padding: 15px;
                    font-size: 17px;
                    font-weight: 700;
                    border-bottom: 1px solid #eee;
                    color: #484d54;
                }

                .lh-header .lh-header-items .right-header .lh-right-tool > a, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool > a {
                    width: 40px;
                    height: 40px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    border-radius: 5px;
                }

                    .lh-header .lh-header-items .right-header .lh-right-tool > a:hover, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool > a:hover {
                        background-color: #e9ecef;
                    }

                .lh-header .lh-header-items .right-header .lh-right-tool i, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool i {
                    font-size: 21px;
                    color: #485568;
                }

                .lh-header .lh-header-items .right-header .lh-right-tool .lh-notify, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool .lh-notify {
                    position: relative;
                }

                    .lh-header .lh-header-items .right-header .lh-right-tool .lh-notify .label, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool .lh-notify .label {
                        width: 8px;
                        height: 8px;
                        position: absolute;
                        top: 5px;
                        right: 5px;
                        background-color: #ff4f7f;
                        border-radius: 50%;
                        -webkit-animation: blinker 2s infinite;
                        animation: blinker 2s infinite;
                    }

@-webkit-keyframes blinker {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    80% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.lh-header .lh-header-items .right-header .lh-right-tool .lh-screen.reset, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool .lh-screen.reset {
    display: none;
}

.lh-header .lh-header-items .right-header .lh-right-tool .lh-mode.light, [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool .lh-mode.light {
    display: none;
}

.lh-header .lh-header-items .right-header .lh-user-drop, [data-header-mode-tool=light] .lh-header-items .right-header .lh-user-drop {
    margin-left: 15px;
}

.lh-header .lh-header-items .header-search-box, [data-header-mode-tool=light] .lh-header-items .header-search-box {
    margin-left: 20px;
    position: relative;
}

    .lh-header .lh-header-items .header-search-box .open-search, [data-header-mode-tool=light] .lh-header-items .header-search-box .open-search {
        display: none;
    }

    .lh-header .lh-header-items .header-search-box form, [data-header-mode-tool=light] .lh-header-items .header-search-box form {
        background-color: transparent;
        z-index: 20;
    }

    .lh-header .lh-header-items .header-search-box input, [data-header-mode-tool=light] .lh-header-items .header-search-box input {
        min-width: 300px;
        height: 40px;
        padding: 0 15px;
        border: 1px solid #eee;
        border-radius: 5px;
        background-color: #fff;
    }

        .lh-header .lh-header-items .header-search-box input:focus, [data-header-mode-tool=light] .lh-header-items .header-search-box input:focus {
            outline: navajowhite;
            border: 1px solid #eee;
        }

    .lh-header .lh-header-items .header-search-box .search-btn, [data-header-mode-tool=light] .lh-header-items .header-search-box .search-btn {
        width: 30px;
        height: 30px;
        position: absolute;
        top: 50%;
        right: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        .lh-header .lh-header-items .header-search-box .search-btn i, [data-header-mode-tool=light] .lh-header-items .header-search-box .search-btn i {
            color: #9799a7;
        }

.lh-header .lh-header-items .lh-toggle-sidebar.active .outer-ring .inner-ring, [data-header-mode-tool=light] .lh-header-items .lh-toggle-sidebar.active .outer-ring .inner-ring {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    left: 4px;
}

.lh-header .lh-header-items .outer-ring, [data-header-mode-tool=light] .lh-header-items .outer-ring {
    width: 30px;
    height: 18px;
    display: block;
    border: 1px solid #485568;
    border-radius: 30px;
    position: relative;
}

    .lh-header .lh-header-items .outer-ring .inner-ring, [data-header-mode-tool=light] .lh-header-items .outer-ring .inner-ring {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        width: 10px;
        height: 10px;
        position: absolute;
        top: 3px;
        right: 4px;
        border-radius: 30px;
        display: block;
        background-color: #485568;
    }

[data-header-mode-tool=dark] {
    background-color: rgba(26, 32, 43, 0.95);
}

    [data-header-mode-tool=dark] .lh-header-items .header-search-box input {
        background: #1e2531;
        border-color: #313a4b;
        color: #aab2bf;
    }

        [data-header-mode-tool=dark] .lh-header-items .header-search-box input:focus {
            border-color: #313a4b;
        }

    [data-header-mode-tool=dark] .lh-header-items .open-search i {
        color: #9ba5b5;
    }

    [data-header-mode-tool=dark] .lh-header-items .outer-ring {
        border-color: #9ba5b5;
    }

        [data-header-mode-tool=dark] .lh-header-items .outer-ring .inner-ring {
            background-color: #9ba5b5;
        }

    [data-header-mode-tool=dark] .lh-header-items .lh-search {
        background-color: #252c38 !important;
    }

    [data-header-mode-tool=dark] .lh-header-items .lh-hover-drop:hover {
        background-color: #181d27;
    }

    [data-header-mode-tool=dark] .lh-header-items .lh-hover-drop i {
        color: #9ba5b5;
    }

    [data-header-mode-tool=dark] .lh-header-items .lh-right-tool > a:hover {
        background-color: #181d27;
    }

    [data-header-mode-tool=dark] .lh-header-items .lh-right-tool i {
        color: #9ba5b5;
    }

    [data-header-mode-tool=dark] .lh-header-items .right-header .lh-right-tool i {
        color: #9ba5b5 !important;
    }

    [data-header-mode-tool=dark] .lh-header-items .right-header .lh-right-tool > a:hover {
        background-color: #181d27;
    }

    [data-header-mode-tool=dark] .lh-header-items .right-header .lh-hover-drop:hover {
        background-color: #181d27;
    }

[data-header-mode-tool=light] {
    background-color: rgba(255, 255, 255, 0.93);
}

    [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool > a:hover {
        background-color: #e9ecef;
    }

    [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool > a i {
        color: #485568;
    }

    [data-header-mode-tool=light] .lh-header-items .right-header .lh-right-tool i {
        color: #485568;
    }

    [data-header-mode-tool=light] .lh-header-items .right-header .lh-hover-drop:hover {
        background-color: #e9ecef;
    }

/* Responsive css sidebar */
@media only screen and (max-width: 1399px) {
    .lh-header {
        width: calc(100% - 250px);
        margin-left: 250px;
    }
}

@media only screen and (max-width: 991px) {
    .lh-header {
        width: calc(100% - 80px);
        margin-left: 80px;
    }

    .lh-header {
        z-index: 20;
    }

        .lh-header .lh-header-items .header-search-drop:hover .lh-search {
            margin-top: 0;
            opacity: 1;
            visibility: visible;
        }

        .lh-header .lh-header-items .header-search-box {
            position: relative;
        }

            .lh-header .lh-header-items .header-search-box .open-search {
                width: 30px;
                height: 30px;
                display: block;
                color: #485568;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                font-size: 21px;
            }

            .lh-header .lh-header-items .header-search-box .search-btn {
                right: 18px;
            }

            .lh-header .lh-header-items .header-search-box .lh-search {
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
                width: 300px;
                margin-top: 15px;
                padding: 15px;
                border-radius: 5px;
                -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
                box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
                position: absolute;
                opacity: 0;
                visibility: hidden;
                top: 50px;
                left: auto !important;
                display: block;
                background: #fff;
            }

                .lh-header .lh-header-items .header-search-box .lh-search input {
                    width: 100%;
                    min-width: 100%;
                }

        .lh-header .lh-header-items .outer-ring .inner-ring {
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            left: 4px;
            right: auto;
        }

        .lh-header .lh-header-items .lh-toggle-sidebar.active .outer-ring .inner-ring {
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            right: 4px;
            left: auto;
        }
}

@media only screen and (max-width: 767px) {
    .lh-header {
        height: 70px;
    }

        .lh-header .lh-header-items .header-search-box {
            margin-left: 15px;
        }

            .lh-header .lh-header-items .header-search-box .open-search {
                font-size: 18px;
            }

            .lh-header .lh-header-items .header-search-box .lh-search {
                top: 45px;
            }

        .lh-header .lh-header-items .left-header {
            height: 60px;
        }

        .lh-header .lh-header-items .right-header .lh-hover-tool img.user {
            width: 30px;
            height: 30px;
        }

        .lh-header .lh-header-items .right-header .lh-hover-tool img.flag {
            width: 18px;
            height: 18px;
        }

        .lh-header .lh-header-items .right-header .lh-right-tool i {
            font-size: 18px;
        }

        .lh-header .lh-header-items .right-header .lh-right-tool > a {
            width: 30px;
            height: 30px;
        }

        .lh-header .lh-header-items .right-header .lh-hover-drop {
            width: 30px;
            height: 30px;
        }

            .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel {
                top: 45px;
            }

        .lh-header .lh-header-items .right-header .lh-right-tool {
            margin-left: 5px;
        }

        .lh-header .lh-header-items .right-header .lh-user-drop {
            margin-left: 10px;
        }
}

@media only screen and (max-width: 575px) {
    .lh-header {
        width: 100%;
        height: 60px;
        margin-left: 0px;
    }

    .sb-collapse .lh-header {
        width: 100%;
        margin-left: 0px;
    }

    .lh-right-tool.display-screen, .lh-right-tool.display-dark {
        display: none;
    }
}

@media only screen and (max-width: 420px) {
    .lh-header .lh-header-items .header-search-box {
        position: unset;
    }

        .lh-header .lh-header-items .header-search-box .lh-search {
            width: calc(100% - 30px);
            left: 15px;
            right: 15px;
            top: 60px;
        }

    .lh-header .lh-header-items .right-header .lh-hover-drop .lh-hover-drop-panel.right.apps {
        min-width: 200px !important;
        right: -50px;
    }

    .lh-right-tool.apps .lh-hover-drop {
        position: unset;
    }

    .lh-right-tool.apps .lh-hover-drop-panel {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        top: 60px;
    }

        .lh-right-tool.apps .lh-hover-drop-panel ul {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
}
/** Footer css **/
.sb-collapse footer {
    width: calc(100% - 80px);
    margin-left: 80px;
}

.sb-hide footer {
    width: 100%;
    margin-left: 0;
}

footer {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    width: calc(100% - 270px);
    margin-left: 270px;
    padding: 15px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
}

    footer .copyright {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        footer .copyright p {
            margin: 0;
            font-weight: 300;
            color: #999;
        }

/* Responsive css sidebar */
@media only screen and (max-width: 1399px) {
    footer {
        width: calc(100% - 250px);
        margin-left: 250px;
    }
}

@media only screen and (max-width: 991px) {
    .sb-default footer {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
}

@media only screen and (max-width: 767px) {
    footer .copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        footer .copyright p {
            line-height: 26px;
        }
}

@media only screen and (max-width: 575px) {
    .sb-collapse footer, .sb-default footer {
        width: 100%;
        margin-left: 0;
    }

    footer {
        width: 100%;
        margin-left: 0;
        padding: 10px;
    }
}
/** Notify bar css **/
.lh-notify-bar-overlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 42;
    display: none;
}

.lh-notify-bar-open {
    -webkit-transform: translateX(0px) !important;
    transform: translateX(0px) !important;
}

.lh-notify-bar {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 400px;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 43;
    -webkit-transform: translateX(400px);
    transform: translateX(400px);
}

    .lh-notify-bar .lh-bar-title {
        padding: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .lh-notify-bar .lh-bar-title .close-notify {
            color: #ff4f7f;
            font-size: 17px;
        }

            .lh-notify-bar .lh-bar-title .close-notify:hover {
                opacity: 0.8;
            }

        .lh-notify-bar .lh-bar-title h6 {
            margin: 0;
            font-size: 17px;
            font-weight: 700;
            color: #484d54;
        }

        .lh-notify-bar .lh-bar-title .label {
            margin-left: 15px;
            padding: 5px;
            font-size: 11px;
            font-weight: 500;
            color: #fff;
            background-color: #799ffe;
            border-radius: 5px;
        }

    .lh-notify-bar .lh-bar-content .tab-content {
        height: calc(100vh - 110px);
        overflow: auto;
    }

        .lh-notify-bar .lh-bar-content .tab-content::-webkit-scrollbar {
            background-color: transparent;
            width: 7px;
            height: 7px;
            position: absolute;
        }

        .lh-notify-bar .lh-bar-content .tab-content::-webkit-scrollbar-thumb {
            background-color: rgba(80, 93, 113, 0.5);
            border-radius: 5px;
        }

    .lh-notify-bar .lh-bar-content .nav.nav-tabs {
        padding: 15px 15px 0 15px;
        background-color: #e9ecef;
    }

        .lh-notify-bar .lh-bar-content .nav.nav-tabs .nav-link {
            color: #484d54;
        }

    .lh-notify-bar .lh-bar-content .activity-list {
        padding: 24px;
    }

    .lh-notify-bar .lh-bar-content .download-files {
        margin-top: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .lh-notify-bar .lh-bar-content .download-files .download {
            width: 70px;
            padding: 5px;
            margin: 10px 10px 0 0;
            border-radius: 5px;
            overflow: hidden;
            border: 1px solid #eee;
            position: relative;
        }

            .lh-notify-bar .lh-bar-content .download-files .download:hover a {
                opacity: 1;
            }

            .lh-notify-bar .lh-bar-content .download-files .download .file {
                width: 100%;
                height: 100%;
                border-radius: 5px;
                background-color: #e9ecef;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
            }

                .lh-notify-bar .lh-bar-content .download-files .download .file i {
                    font-size: 25px;
                }

            .lh-notify-bar .lh-bar-content .download-files .download img {
                width: 100%;
                border-radius: 5px;
            }

            .lh-notify-bar .lh-bar-content .download-files .download a {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background-color: rgba(0, 0, 0, 0.5);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                color: #fff;
                font-size: 22px;
                opacity: 0;
            }

.lh-alert-list ul .check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #799ffe;
}

.lh-alert-list ul li {
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
    border-bottom: 1px solid #eee;
}

    .lh-alert-list ul li .icon {
        width: 35px;
        height: 35px;
        margin-right: 15px;
        font-size: 20px;
        border-radius: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .lh-alert-list ul li .icon.lh-warn {
            background-color: rgba(251, 47, 47, 0.2);
            color: #fb2f2f;
        }

        .lh-alert-list ul li .icon.lh-alert {
            background-color: rgba(255, 161, 79, 0.2);
            color: #ffa04f;
        }

        .lh-alert-list ul li .icon.lh-success {
            background-color: rgba(43, 187, 146, 0.2);
            color: #2bbb93;
        }

    .lh-alert-list ul li .detail {
        width: calc(100% - 50px);
    }

    .lh-alert-list ul li .title {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        color: #484d54;
    }

    .lh-alert-list ul li .time {
        margin: 0;
        font-size: 12px;
        font-weight: 300;
        color: #999;
    }

    .lh-alert-list ul li .message {
        margin: 0;
        font-size: 13px;
        line-height: 24px;
    }

.lh-message-list ul {
    position: relative;
}

    .lh-message-list ul .check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #799ffe;
    }

    .lh-message-list ul li {
        padding: 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        border-bottom: 1px solid #eee;
    }

        .lh-message-list ul li:hover .reply {
            opacity: 1;
        }

        .lh-message-list ul li .reply {
            padding: 2px 5px;
            border-radius: 5px;
            position: absolute;
            top: 15px;
            right: 15px;
            color: #484d54;
            background-color: #e9ecef;
            font-size: 12px;
            z-index: 15;
            opacity: 0;
        }

        .lh-message-list ul li .user {
            margin-right: 15px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            position: relative;
        }

            .lh-message-list ul li .user img {
                width: 40px;
                height: 40px;
                border-radius: 5px;
            }

            .lh-message-list ul li .user .label {
                width: 10px;
                height: 10px;
                position: absolute;
                top: 2px;
                right: 2px;
                border-radius: 50%;
                display: block;
                border: 1px solid #fff;
            }

                .lh-message-list ul li .user .label.online {
                    background-color: #2bbb93;
                }

                .lh-message-list ul li .user .label.offline {
                    background-color: #9799a7;
                }

                .lh-message-list ul li .user .label.busy {
                    background-color: #799ffe;
                }

        .lh-message-list ul li .detail {
            width: calc(100% - 65px);
        }

            .lh-message-list ul li .detail .name {
                margin: 0;
                font-size: 14px;
                font-weight: 500;
                color: #484d54;
            }

            .lh-message-list ul li .detail .time {
                margin: 0;
                font-size: 12px;
                font-weight: 300;
                color: #999;
            }

            .lh-message-list ul li .detail .message {
                margin: 0;
                font-size: 13px;
                line-height: 24px;
            }

.lh-activity-list ul .check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #799ffe;
}

.lh-activity-list ul li:not(:last-child) {
    margin-bottom: 50px !important;
}

.lh-activity-list ul li .detail {
    line-height: 24px;
}

/**  Responsive notification  **/
@media only screen and (max-width: 767px) {
    .lh-notify-bar {
        width: 300px;
    }

        .lh-notify-bar .lh-bar-content .download-files .download {
            width: 50px;
            height: 50px;
        }

    .lh-message-list ul li .user img {
        width: 35px;
        height: 35px;
    }
}
/* ======================================
Tools sidebar
========================================= */
.lh-tools-sidebar-overlay {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 41;
}

.lh-tools-sidebar {
    width: 300px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 41;
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
}

    .lh-tools-sidebar .lh-tools-sidebar-toggle {
        position: absolute;
        top: 45%;
        right: 302px;
        width: 40px;
        height: 40px;
        background-color: rgba(29, 37, 49, 0.6);
        -webkit-transition: all ease-in 0.3s;
        transition: all ease-in 0.3s;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 25px;
        z-index: -1;
        text-decoration: none;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }

        .lh-tools-sidebar .lh-tools-sidebar-toggle i {
            color: #fff;
            -webkit-animation: rotation 3s infinite linear;
            animation: rotation 3s infinite linear;
        }

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.lh-tools-sidebar .lh-bar-title {
    margin-bottom: 15px;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #eee;
}

    .lh-tools-sidebar .lh-bar-title h6 {
        margin: 0;
        font-size: 17px;
        font-weight: 700;
        color: #484d54;
    }

    .lh-tools-sidebar .lh-bar-title .close-tools {
        color: #ff4f7f;
        font-size: 17px;
    }

.lh-tools-sidebar .lh-tools-detail {
    height: calc(100vh - 72px);
    padding: 0 15px 15px 15px;
    overflow: auto;
}

    .lh-tools-sidebar .lh-tools-detail::-webkit-scrollbar {
        background-color: transparent;
        width: 7px;
        height: 7px;
        position: absolute;
    }

    .lh-tools-sidebar .lh-tools-detail::-webkit-scrollbar-thumb {
        background-color: rgba(80, 93, 113, 0.5);
        border-radius: 5px;
    }

    .lh-tools-sidebar .lh-tools-detail .lh-tools-block h3 {
        margin: 15px 0;
        font-size: 14px;
        font-weight: 500;
        color: #484d54;
        font-family: "Poppins, sans-serif";
    }

    .lh-tools-sidebar .lh-tools-detail .lh-tools-block p {
        margin: 0;
        text-transform: capitalize;
    }

    .lh-tools-sidebar .lh-tools-detail .lh-tools-block .lh-tools-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .lh-tools-sidebar .lh-tools-detail .lh-tools-block .lh-tools-info .lh-tools-item {
            width: 125px;
            margin-bottom: 10px;
            text-align: center;
        }

            .lh-tools-sidebar .lh-tools-detail .lh-tools-block .lh-tools-info .lh-tools-item img {
                width: 100%;
                padding: 5px;
                border-radius: 10px;
                border: 1px solid #eee;
            }

                .lh-tools-sidebar .lh-tools-detail .lh-tools-block .lh-tools-info .lh-tools-item img:hover {
                    border: 1px solid #799ffe;
                }

            .lh-tools-sidebar .lh-tools-detail .lh-tools-block .lh-tools-info .lh-tools-item.active {
                position: relative;
            }

                .lh-tools-sidebar .lh-tools-detail .lh-tools-block .lh-tools-info .lh-tools-item.active:after {
                    content: "\eb79";
                    width: 30px;
                    height: 30px;
                    font-size: 16px;
                    font-family: remixicon !important;
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    border-radius: 10px;
                    background-color: rgba(95, 106, 245, 0.7);
                    color: #f5f5f5;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                }

                .lh-tools-sidebar .lh-tools-detail .lh-tools-block .lh-tools-info .lh-tools-item.active img {
                    border-color: #799ffe;
                }

.open-tools {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/** All Cards **/
.lh-full-card-close {
    display: none;
}

.lh-card-overlay {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 42;
}

.lh-full-screen {
    width: 100%;
    max-width: 1400px;
    padding: 12px;
    position: fixed;
    z-index: 30;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 43;
}

    .lh-full-screen .lh-card {
        margin: 0;
    }

.lh-simplebar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.lh-card-1 {
    background: #dfe5fa !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.lh-card-2 {
    background: #fde1f5 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.lh-card-3 {
    background: #ffeae9 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.lh-card-4 {
    background: #d8f6d8 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.lh-card {
    height: calc(100% - 24px);
    margin-bottom: 24px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
    border-bottom: 3px solid #eee;
    border-top: 3px solid #eee;
}

    .lh-card .lh-card-header.tips {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .lh-card .lh-card-header.tips h4 {
            margin: 0 10px 0 0;
        }

        .lh-card .lh-card-header.tips p.small {
            margin: 0;
            font-size: 12px;
            color: #999;
        }

    .lh-card .lh-card-header {
        padding: 24px;
        border-bottom: 1px solid #eee;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .lh-card .lh-card-header .lh-card-title {
            margin: 0;
            font-size: 16px;
            color: #484d54;
            font-weight: 700;
            text-transform: capitalize;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            cursor: default;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .lh-card .lh-card-header .header-tools {
            height: 30px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            .lh-card .lh-card-header .header-tools > a {
                width: 30px;
                height: 30px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                color: #777;
                border: 1px solid #eee;
                border-radius: 5px;
            }

                .lh-card .lh-card-header .header-tools > a i {
                    color: #777;
                }

            .lh-card .lh-card-header .header-tools .button-add {
                width: auto;
                padding: 0 10px;
                background-color: #2bbb93;
                color: #fff;
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                .lh-card .lh-card-header .header-tools .button-add i {
                    color: #fff;
                }

                .lh-card .lh-card-header .header-tools .button-add:hover {
                    background-color: #25a984;
                }

            .lh-card .lh-card-header .header-tools .lh-full-card-close i {
                color: #fd6969 !important;
                font-size: 20px;
            }

            .lh-card .lh-card-header .header-tools .dots {
                width: 30px;
                height: 30px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                color: #777;
                border: 1px solid #eee;
                border-radius: 5px;
                cursor: pointer;
            }

                .lh-card .lh-card-header .header-tools .dots i {
                    color: #777;
                }

            .lh-card .lh-card-header .header-tools .link {
                color: #799ffe;
                font-size: 13px;
            }

            .lh-card .lh-card-header .header-tools .date {
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
                color: #777;
                font-size: 13px;
                padding: 0 10px;
                height: 30px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                border-radius: 5px;
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                border: 1px solid #eee;
            }

                .lh-card .lh-card-header .header-tools .date:hover {
                    background-color: rgba(72, 85, 104, 0.07);
                }

    .lh-card .lh-card-content {
        padding: 24px;
    }

        .lh-card .lh-card-content .note {
            margin: 15px 0 0 0;
            padding: 10px 15px;
            background-color: rgba(72, 85, 104, 0.07);
            border-radius: 5px;
        }

            .lh-card .lh-card-content .note p {
                margin: 0;
            }

    .lh-card .label-card .title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .lh-card .label-card .title .icon {
            width: 50px;
            height: 50px;
            padding: 5px;
            background-color: rgba(72, 85, 104, 0.1);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            border-radius: 5px;
        }

            .lh-card .label-card .title .icon i {
                font-size: 25px;
                color: #485568;
            }

        .lh-card .label-card .title h4 {
            margin-bottom: 12px;
            color: #ffffff;
            font-size: 15px;
            font-family: "Poppins, sans-serif";
            font-weight: 500;
        }

        .lh-card .label-card .title .growth-numbers h5 {
            margin: 0;
            color: #fcfdfd;
            font-size: 22px;
            line-height: 20px;
            font-weight: 700;
        }

    .lh-card .label-card .card-groth {
        margin-top: 10px;
        font-size: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

        .lh-card .label-card .card-groth i {
            margin-right: 5px;
            font-size: 15px;
        }

        .lh-card .label-card .card-groth span {
            margin-left: 5px;
            color: #999;
        }

    .lh-card .label-card .up {
        color: #2bbb93;
    }

    .lh-card .label-card .down {
        color: #f90c4c;
    }

    .lh-card .lh-card-footer {
        padding: 15px;
    }

.card-body-header {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .card-body-header h6 {
        margin: 15px 0 !important;
        font-size: 16px;
        color: #484d54;
        font-weight: 700;
        text-transform: capitalize;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: default;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .card-body-header input {
        padding: 8px 15px;
        border: 1px solid #eee;
        border-radius: 5px;
        font-size: 13px;
        color: #777;
    }

        .card-body-header input:focus {
            outline: none;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

/* Card header datepicker */
.daterangepicker.opensleft:before, .daterangepicker.opensleft:after {
    display: none !important;
    border: 0;
}

.daterangepicker {
    margin-top: 2px;
    padding: 10px;
    border: 0;
    -webkit-box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
    box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
}

    .daterangepicker:before, .daterangepicker:after {
        display: none !important;
        border: 0;
    }

    .daterangepicker li {
        border-radius: 5px;
    }

        .daterangepicker li:hover {
            background-color: #e9ecef !important;
        }

        .daterangepicker li.active:hover {
            background-color: #799ffe !important;
        }

    .daterangepicker .ranges li {
        color: #777;
    }

        .daterangepicker .ranges li.active {
            background-color: #799ffe;
            color: #fff;
        }

    .daterangepicker td.active {
        background-color: #799ffe;
    }

        .daterangepicker td.active:hover {
            background-color: #799ffe;
        }

    .daterangepicker .drp-buttons .btn-primary {
        background-color: #799ffe;
    }

    .daterangepicker .calendar-table table {
        font-family: "Poppins, sans-serif";
    }

        .daterangepicker .calendar-table table thead tr th {
            background-color: #fff;
            font-weight: 600;
        }

/* Map card */
.lh-map-view #world-map {
    height: 217px;
}

.analytics-map #world-map {
    height: 239px;
}

.ecom-map #world-map {
    height: 237px !important;
}

.vendor-map #world-map {
    height: 214px !important;
}

.jvectormap-zoomin,
.jvectormap-zoomout {
    padding: 3px;
    position: absolute;
    right: 0;
    left: auto;
    border-radius: 5px;
    color: #777;
    cursor: pointer;
    line-height: 10px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.world-map {
    height: 230px;
}

.lh-map-detail .title {
    margin: 15px 0;
    padding-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

    .lh-map-detail .title h5 {
        margin-bottom: 0;
        font-size: 15px;
        color: #484d54;
        font-weight: 600;
    }

    .lh-map-detail .title a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 12px;
    }

        .lh-map-detail .title a i {
            margin-left: 5px;
        }

.lh-map-detail .lh-detail-list:not(:last-child) {
    margin-bottom: 24px;
}

.lh-map-detail .lh-detail-list .lh-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #777;
    font-weight: 300;
}

    .lh-map-detail .lh-detail-list .lh-label p {
        margin-bottom: 5px;
        color: #777;
        font-weight: 600;
    }

.lh-map-detail .lh-detail-list label {
    font-size: 13px;
}

.lh-map-detail .lh-detail-list .up,
.lh-map-detail .lh-detail-list .down {
    font-size: 11px;
}

.lh-map-detail .lh-detail-list .down {
    color: #f90c4c;
}

.lh-map-detail .lh-detail-list .up {
    color: #2bbb93;
}

.lh-map-detail .lh-detail-list:hover .progress {
    opacity: 0.5;
}

.lh-map-detail .progress {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 5px;
}

/* Responsive css */
@media only screen and (max-width: 991px) {
    .lh-full-screen .lh-card {
        height: calc(100vh - 24px);
        overflow: auto;
    }
}

@media only screen and (max-width: 767px) {
    .lh-card .lh-card-header {
        padding: 15px;
    }

    .lh-card .lh-card-content {
        padding: 15px;
    }

    .lh-simplebar {
        padding-top: 5px !important;
    }

    .daterangepicker.ltr .drp-calendar {
        float: none;
    }

    .daterangepicker {
        margin: 15px;
    }

        .daterangepicker .ranges {
            width: 100%;
            margin-bottom: 15px;
        }

            .daterangepicker .ranges ul {
                text-align: center;
            }

        .daterangepicker .drp-calendar.left,
        .daterangepicker .drp-calendar.right {
            width: 100%;
            margin: auto !important;
            border: 0;
        }

        .daterangepicker.show-ranges .drp-calendar.left {
            border: 0;
        }
}

@media only screen and (max-width: 575px) {
    .header-575 {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

        .header-575 .header-tools {
            margin-top: 15px;
            -webkit-box-pack: start !important;
            -ms-flex-pack: start !important;
            justify-content: flex-start !important;
        }

    .lh-card .lh-card-header .header-tools .date {
        font-size: 11px;
    }

    .lh-full-card {
        display: none !important;
    }
}
/** All Chart **/
.mini-chart svg {
    overflow: inherit;
}

.apexcharts-xaxis text,
.apexcharts-yaxis text {
    fill: #999;
}

.apexcharts-legend-text {
    color: #999 !important;
}

.lh-card-content .lh-chart-header {
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    background-color: rgba(72, 85, 104, 0.07);
    border-radius: 5px;
}

    .lh-card-content .lh-chart-header .block {
        padding: 10px;
        text-align: center;
    }

        .lh-card-content .lh-chart-header .block h6 {
            color: #5d3505;
            font-size: 14px;
        }

        .lh-card-content .lh-chart-header .block h5 {
            margin: 0;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
        }

            .lh-card-content .lh-chart-header .block h5 span {
                font-size: 11px;
                font-weight: 400;
                display: -webkit-inline-box;
                display: -ms-inline-flexbox;
                display: inline-flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                line-height: 19px;
            }

            .lh-card-content .lh-chart-header .block h5 i {
                font-size: 14px;
            }

            .lh-card-content .lh-chart-header .block h5 .up {
                color: #2bbb93;
            }

            .lh-card-content .lh-chart-header .block h5 .down {
                color: #f90c4c;
            }

.lh-card-content .lh-chart-header-2 {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

    .lh-card-content .lh-chart-header-2 .block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .lh-card-content .lh-chart-header-2 .block:not(:last-child) {
            margin-bottom: 15px;
        }

        .lh-card-content .lh-chart-header-2 .block h6 {
            margin: 0;
            color: #777;
            font-size: 14px;
        }

        .lh-card-content .lh-chart-header-2 .block h5 {
            margin: 0;
            color: #485568;
            font-weight: 600;
            font-size: 17px;
        }

            .lh-card-content .lh-chart-header-2 .block h5 span {
                margin-right: 10px;
            }

            .lh-card-content .lh-chart-header-2 .block h5 i {
                margin-right: 5px;
                font-size: 16px;
            }

        .lh-card-content .lh-chart-header-2 .block .up {
            color: #2bbb93;
        }

        .lh-card-content .lh-chart-header-2 .block .down {
            color: #f90c4c;
        }

        .lh-card-content .lh-chart-header-2 .block .list {
            margin: 0;
            font-size: 11px;
            font-weight: 400;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            line-height: 19px;
        }

            .lh-card-content .lh-chart-header-2 .block .list .dropdown {
                margin-left: 15px;
            }

#overviewChart {
    margin-bottom: -24px;
}

.jvectormap-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Responsive css sidebar */
@media only screen and (max-width: 768px) {
    .lh-card-content .lh-chart-header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .lh-card-content .lh-chart-header .block {
            width: 50%;
        }
}
/** Tables css **/
.tbl-1200 {
    overflow: auto;
}

    .tbl-1200::-webkit-scrollbar {
        background-color: transparent;
        width: 7px;
        height: 7px;
        position: absolute;
    }

    .tbl-1200::-webkit-scrollbar-thumb {
        background-color: rgba(80, 93, 113, 0.5);
        border-radius: 5px;
    }

    .tbl-1200 > div {
        min-width: 1200px;
    }

.tbl-800 {
    overflow: auto;
}

    .tbl-800::-webkit-scrollbar {
        background-color: transparent;
        width: 7px;
        height: 7px;
        position: absolute;
    }

    .tbl-800::-webkit-scrollbar-thumb {
        background-color: rgba(80, 93, 113, 0.5);
        border-radius: 5px;
    }

    .tbl-800 > div {
        min-width: 800px;
    }

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .table-responsive .cat-thumb {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        border-radius: 5px;
    }

    .table-responsive .name {
        display: inline-block;
    }

div.table-responsive > div.dataTables_wrapper > div.row {
    margin: 0;
}

div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_filter {
    width: 50%;
    margin-bottom: 15px;
    padding: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

    div.dataTables_wrapper div.dataTables_length label, div.dataTables_wrapper div.dataTables_filter label {
        font-size: 0;
    }

div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_filter {
    width: 50%;
    margin-bottom: 15px;
    padding: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

    div.dataTables_wrapper div.dataTables_length label, div.dataTables_wrapper div.dataTables_filter label {
        font-size: 0;
    }

.bottom-information {
    margin-top: 15px !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_paginate {
    width: auto !important;
    padding: 0 !important;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

    table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting:before, table.dataTable thead .sorting:after {
        bottom: 7px;
    }

thead tr {
    background-color: rgba(72, 85, 104, 0.07);
    border-color: transparent;
}

    thead tr:first-child th:first-child {
        border-top-left-radius: 5px;
    }

    thead tr:first-child th:last-child {
        border-top-right-radius: 5px;
    }

    thead tr:last-child th:first-child {
        border-bottom-left-radius: 5px;
    }

    thead tr:last-child th:last-child {
        border-bottom-right-radius: 5px;
    }

thead th {
    color: #c66a04;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
    text-transform: capitalize;
}

.btn-outline-success {
    margin: 2px;
    padding: 5px;
    color: #999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #eee;
}

    .btn-outline-success span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .btn-outline-success i {
        font-size: 18px;
        line-height: 18px;
    }

    .btn-outline-success:hover, .btn-outline-success:active, .btn-outline-success:focus {
        background-color: rgba(72, 85, 104, 0.08);
        color: #777;
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: none;
        border: 1px solid #eee;
    }

        .btn-outline-success:active:focus {
            background-color: rgba(72, 85, 104, 0.08);
            border-color: rgba(72, 85, 104, 0.08);
            color: #777;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

    .btn-outline-success.dropdown-toggle.show {
        background-color: rgba(72, 85, 104, 0.08);
        border-color: rgba(72, 85, 104, 0.08);
        color: #999;
    }

table.dataTable td {
    padding: 10px 5px;
    color: #777;
    font-size: 13px;
    font-weight: 400;
    vertical-align: middle;
    text-transform: capitalize;
}

    table.dataTable td .btn-outline-success.dropdown-toggle.show:focus, table.dataTable td .btn-outline-success.dropdown-toggle.show:active, table.dataTable td .btn-group > :not(.btn-check) + .btn:focus, table.dataTable td .btn-group > :not(.btn-check) + .btn:active, table.dataTable td .btn-group > .btn:not(:last-child):not(.dropdown-toggle):focus, table.dataTable td .btn-group > .btn:not(:last-child):not(.dropdown-toggle):active {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    table.dataTable td .cat {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        table.dataTable td .cat a {
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            margin: 5px;
            padding: 2px 5px;
            background-color: rgba(95, 105, 245, 0.1);
            color: #799ffe;
            border-radius: 5px;
        }

            table.dataTable td .cat a:hover {
                background-color: hsla(236, 88%, 67%, 0.2);
            }

    table.dataTable td.token {
        font-weight: 500;
    }

    table.dataTable td.active, table.dataTable td.cod {
        color: #ff4f7f;
        font-weight: 500;
    }

    table.dataTable td.pending {
        color: #ffa75b;
        font-weight: 500;
    }

    table.dataTable td.success, table.dataTable td.paid {
        color: #38cb38;
        font-weight: 500;
    }

    table.dataTable td.close, table.dataTable td.wallet {
        color: #8c9aff;
        font-weight: 500;
    }

    table.dataTable td.rooms .room {
        color: #799ffe;
    }

    table.dataTable td.type span {
        color: #ff4f7f;
    }

.dropdown-toggle-split::after {
    display: none;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0.5em;
    display: inline-block;
    width: auto;
    border-color: #eee;
    border-radius: 5px;
}

    div.dataTables_wrapper div.dataTables_filter input:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    div.dataTables_wrapper div.dataTables_filter input::-webkit-input-placeholder {
        color: #999;
    }

    div.dataTables_wrapper div.dataTables_filter input::-moz-placeholder {
        color: #999;
    }

    div.dataTables_wrapper div.dataTables_filter input:-ms-input-placeholder {
        color: #999;
    }

    div.dataTables_wrapper div.dataTables_filter input::-ms-input-placeholder {
        color: #999;
    }

    div.dataTables_wrapper div.dataTables_filter input::placeholder {
        color: #999;
    }

div.dataTables_wrapper div.dataTables_length select {
    padding-right: 30px;
    border-color: #eee;
    border-radius: 5px;
    color: #999;
    background-image: url(../img/other/down-arrow.svg);
    background-position: right 0.5rem center;
    background-size: 10px 10px;
    position: relative;
}

    div.dataTables_wrapper div.dataTables_length select:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

div.dataTables_wrapper div.dataTables_info {
    color: #999;
    font-size: 13px;
    font-weight: 300;
}

.page-item.active .page-link {
    z-index: 3;
    color: #484d54;
    background-color: #eee;
    border-color: #eee;
}

.page-link, .page-item {
    font-size: 12px;
    color: #777;
    border-color: #eee !important;
    overflow: hidden;
}

    .page-link:focus, .page-item:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .page-link:hover, .page-item:hover {
        z-index: 2;
        color: #777;
    }

@media only screen and (max-width: 767px) {
    .table-responsive::-webkit-scrollbar {
        background-color: transparent;
        width: 7px;
        height: 7px;
        position: absolute;
    }

    .table-responsive::-webkit-scrollbar-thumb {
        background-color: rgba(80, 93, 113, 0.5);
        border-radius: 5px;
    }

    .table-responsive > div {
        min-width: 700px;
    }

    .table-responsive div.dataTables_wrapper div.dataTables_length {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .table-responsive div.dataTables_wrapper div.dataTables_filter {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}
/**  Role css **/
.lh-role .lh-role-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .lh-role .lh-role-item:not(:last-child) {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px dashed #eee;
    }

    .lh-role .lh-role-item .team-detail {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .lh-role .lh-role-item .team-detail img {
            width: 40px;
            margin-right: 10px;
            border-radius: 5px;
        }

        .lh-role .lh-role-item .team-detail .info {
            margin-right: 10px;
        }

            .lh-role .lh-role-item .team-detail .info h6 {
                margin: 0 0 5px 0;
                font-size: 14px;
                font-family: "Poppins, sans-serif";
                font-weight: 500;
                color: #484d54;
            }

            .lh-role .lh-role-item .team-detail .info p {
                margin: 0;
                font-size: 12px;
                color: #777;
                line-height: 20px;
            }

/**  Rooms css **/
.lh-card.booked {
    background-color: rgba(253, 225, 245, 0.3);
}

.room-card .list {
    margin: -8px 0;
}

    .room-card .list li {
        padding: 8px 0;
    }

/**  Guest css **/
.guest-profile {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .guest-profile h5 {
        margin-top: 15px;
        color: #ea990e;
        font-weight: 600;
    }

    .guest-profile img {
        border-radius: 50%;
        z-index: 1;
    }

.lh-card-sticky {
    padding-bottom: 1px;
    position: sticky !important;
    top: 94px;
}

.guest-card {
    position: relative;
    overflow: hidden !important;
}

    .guest-card:after {
        content: "";
        width: calc(100% - 10px);
        height: 145px;
        margin: 7px 5px 5px 5px;
        background-image: url(../img/cover/1.jpg);
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .guest-card .lh-card-content .card-default {
        overflow: hidden;
    }

    .guest-card .list li {
        padding: 8px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .guest-card .list li i {
            font-size: 18px;
        }

        .guest-card .list li span {
            width: 100%;
            margin-left: 8px;
            display: block;
        }

.booking-details {
    padding-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #eee;
}

    .booking-details i {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        background-color: #799ffe;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 20px;
        color: #fff;
    }

    .booking-details p {
        margin: 0;
    }

    .booking-details h6 {
        font-size: 14px;
        font-weight: 600;
        color: #484d54;
    }

.booking-info {
    padding: 15px;
    text-align: center;
}

.booking-box {
    margin: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    background-color: rgba(72, 85, 104, 0.07);
}

    .booking-box p {
        margin-bottom: 0;
    }

        .booking-box p i {
            margin-right: 5px;
            font-size: 18px;
        }

    .booking-box h6 {
        font-size: 14px;
        font-weight: 600;
        color: #484d54;
    }

.facilities-details h6 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #484d54;
}

.facilities-details .facilities-info img {
    width: 100%;
}

/**  Bookings css **/
.lh-team-block-detail {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

    .lh-team-block-detail .t-img {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
        border-radius: 50%;
        background-size: 100%;
        background-position: center;
    }

    .lh-team-block-detail h5 {
        font-size: 15px;
        font-weight: 600;
        color: #777;
    }

    .lh-team-block-detail .lh-settings {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

        .lh-team-block-detail .lh-settings button {
            width: 35px;
            height: 35px;
        }

    .lh-team-block-detail .profile-img {
        position: relative;
    }

    .lh-team-block-detail .dropdown li a {
        padding-left: 25px;
        position: relative;
    }

        .lh-team-block-detail .dropdown li a .tag-label {
            width: 10px;
            height: 10px;
            position: absolute;
            top: 10px;
            left: 10px;
            border-radius: 50%;
        }

            .lh-team-block-detail .dropdown li a .tag-label.online {
                background-color: #2bbb93;
            }

            .lh-team-block-detail .dropdown li a .tag-label.offline {
                background-color: #aeb8c7;
            }

            .lh-team-block-detail .dropdown li a .tag-label.busy {
                background-color: #50d1f8;
            }

.card-booking .lh-user-detail ul li {
    padding: 12px 0;
}

    .card-booking .lh-user-detail ul li strong {
        margin-bottom: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

.card-booking .lh-user-detail .form-group input, .card-booking .lh-user-detail .form-group select {
    width: 100%;
}

    .card-booking .lh-user-detail .form-group input[type=file] {
        padding: 5px;
    }

.card-booking .lh-user-detail .form-group textarea {
    width: 100%;
    padding: 5px 20px;
}

.lh-profile-add .profile-img {
    position: relative;
}

    .lh-profile-add .profile-img .avatar-edit {
        position: absolute;
        right: 0;
        z-index: 1;
        bottom: 10px;
    }

        .lh-profile-add .profile-img .avatar-edit input {
            display: none;
        }

            .lh-profile-add .profile-img .avatar-edit input + label {
                width: 34px;
                height: 34px;
                margin-bottom: 0;
                display: inline-block;
                font-size: 16px;
                border-radius: 5px;
                background: #fff;
                border: 1px solid transparent;
                -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
                box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
                cursor: pointer;
                font-weight: normal;
                -webkit-transition: all 0.2s ease-in-out;
                transition: all 0.2s ease-in-out;
            }

                .lh-profile-add .profile-img .avatar-edit input + label:hover {
                    border-color: #d6d6d6;
                }

                .lh-profile-add .profile-img .avatar-edit input + label:after {
                    content: "\efe0";
                    font-family: "remixicon";
                    color: #757575;
                    position: absolute;
                    top: 5px;
                    left: 0;
                    right: 0;
                    text-align: center;
                    margin: auto;
                }

.lh-profile-add li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.lh-profile-add .t-img {
    border: 1px solid #eee;
    background-size: 200px;
    background-repeat: no-repeat;
    background-size: cover;
}

.lh-profile-add .form-group {
    width: 100%;
}

/**  Menu css **/
.lh-menu-details img {
    width: 100%;
    margin-bottom: 15px;
}

.lh-menu-details .lh-card-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #484d54;
    font-weight: 700;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu-card {
    position: relative;
    overflow: hidden;
}

    .menu-card:hover .lh-card-content .dropdown {
        opacity: 1;
    }

    .menu-card img {
        width: 100%;
    }

    .menu-card .list {
        margin: -8px 0;
    }

        .menu-card .list li {
            padding: 8px 0;
        }

    .menu-card .lh-card-content .dropdown {
        opacity: 0;
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: #fff;
    }

/**  Team Dashboard page  **/
.team-sticky-bar {
    padding-bottom: 1px;
    position: sticky;
    top: 94px;
}

    /**  Team Profile page  **/
    .team-sticky-bar .lh-team-block-detail {
        margin-bottom: 30px;
        padding: 30px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid #eee;
    }

        .team-sticky-bar .lh-team-block-detail .t-img {
            width: 100px;
            height: 100px;
            margin-bottom: 15px;
            border-radius: 50%;
            background-size: 100%;
            background-position: center;
        }

        .team-sticky-bar .lh-team-block-detail h5 {
            font-size: 15px;
            font-weight: 600;
            color: #777;
        }

        .team-sticky-bar .lh-team-block-detail .lh-settings {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .team-sticky-bar .lh-team-block-detail .lh-settings button {
                width: 35px;
                height: 35px;
            }

        .team-sticky-bar .lh-team-block-detail .profile-img {
            position: relative;
        }

            .team-sticky-bar .lh-team-block-detail .profile-img .tag-label {
                width: 10px;
                height: 10px;
                position: absolute;
                top: 15px;
                right: 15px;
                border-radius: 50%;
            }

                .team-sticky-bar .lh-team-block-detail .profile-img .tag-label.online {
                    background-color: #2bbb93;
                }

                .team-sticky-bar .lh-team-block-detail .profile-img .tag-label.offline {
                    background-color: #aeb8c7;
                }

                .team-sticky-bar .lh-team-block-detail .profile-img .tag-label.busy {
                    background-color: #50d1f8;
                }

        .team-sticky-bar .lh-team-block-detail .dropdown li a {
            padding-left: 25px;
            position: relative;
        }

            .team-sticky-bar .lh-team-block-detail .dropdown li a .tag-label {
                width: 10px;
                height: 10px;
                position: absolute;
                top: 10px;
                left: 10px;
                border-radius: 50%;
            }

                .team-sticky-bar .lh-team-block-detail .dropdown li a .tag-label.online {
                    background-color: #2bbb93;
                }

                .team-sticky-bar .lh-team-block-detail .dropdown li a .tag-label.offline {
                    background-color: #aeb8c7;
                }

                .team-sticky-bar .lh-team-block-detail .dropdown li a .tag-label.busy {
                    background-color: #50d1f8;
                }

    .team-sticky-bar .lh-team-block-img p {
        line-height: 28px;
        font-size: 13px;
        font-weight: 300;
    }

    .team-sticky-bar .lh-team-block-img textarea::-webkit-scrollbar {
        position: absolute;
        width: 7px;
    }

    .team-sticky-bar .lh-team-block-img textarea::-webkit-scrollbar-thumb {
        background-color: transparent;
        border-radius: 5px;
    }

    .team-sticky-bar .lh-team-block-img textarea:hover::-webkit-scrollbar {
        position: absolute;
        width: 7px;
    }

    .team-sticky-bar .lh-team-block-img textarea:hover::-webkit-scrollbar-thumb {
        background-color: rgba(80, 93, 113, 0.5);
        border-radius: 5px;
    }

.lh-team-detail {
    padding-bottom: 30px;
}

.team-overview h3 {
    font-size: 17px;
    font-weight: 600;
    color: #484d54;
}

.team-overview p {
    max-width: 700px;
    margin: 0;
}

.team-overview .lh-card-team {
    margin-bottom: -6px;
    padding: 24px 24px 0 24px;
}

.team-overview .lh-card-team-content {
    margin-bottom: -30px;
}

.team-details h6 {
    margin-bottom: 15px;
    padding: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #777;
    background: rgba(223, 230, 237, 0.2);
    border-radius: 5px;
    border: 1px solid #eee;
}

.team-details ul {
    margin: 0;
    padding: 0;
}

    .team-details ul li {
        padding: 5px 0;
        font-size: 14px;
        color: #777;
        line-height: 26px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .team-details ul li i {
            font-size: 20px;
        }

        .team-details ul li a {
            color: #777;
            line-break: anywhere;
        }

            .team-details ul li a:hover {
                color: #799ffe;
            }

        .team-details ul li strong {
            margin-right: 10px;
            font-size: 12px;
            color: #999;
            font-weight: 500;
        }

/**  Team Profile add page  **/
.lh-profile-add .profile-img {
    position: relative;
}

    .lh-profile-add .profile-img .avatar-edit {
        position: absolute;
        right: 0;
        z-index: 1;
        bottom: 10px;
    }

        .lh-profile-add .profile-img .avatar-edit input {
            display: none;
        }

            .lh-profile-add .profile-img .avatar-edit input + label {
                width: 34px;
                height: 34px;
                margin-bottom: 0;
                display: inline-block;
                font-size: 16px;
                border-radius: 5px;
                background: #fff;
                border: 1px solid transparent;
                -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
                box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
                cursor: pointer;
                font-weight: normal;
                -webkit-transition: all 0.2s ease-in-out;
                transition: all 0.2s ease-in-out;
            }

                .lh-profile-add .profile-img .avatar-edit input + label:hover {
                    border-color: #d6d6d6;
                }

                .lh-profile-add .profile-img .avatar-edit input + label:after {
                    content: "\efe0";
                    font-family: "remixicon";
                    color: #757575;
                    position: absolute;
                    top: 5px;
                    left: 0;
                    right: 0;
                    text-align: center;
                    margin: auto;
                }

.lh-profile-add li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.lh-profile-add .t-img {
    border: 1px solid #eee;
    background-size: 200px;
    background-repeat: no-repeat;
    background-size: contain;
}

.lh-profile-add .form-group {
    width: 100%;
}

/**  Team List page  **/
.team-list .nav-tabs {
    border: 0;
}

    .team-list .nav-tabs .nav-item {
        width: 100%;
        position: relative;
    }

        .team-list .nav-tabs .nav-item .lh-tool {
            background-color: #fff;
            position: absolute;
            top: 18px;
            right: 10px;
            border-radius: 5px;
        }

            .team-list .nav-tabs .nav-item .lh-tool ul {
                border-radius: 5px;
            }

    .team-list .nav-tabs .team-img {
        width: 40px;
        margin-right: 10px;
        border-radius: 5px;
    }

.team-list .nav-link {
    width: 100%;
    margin: 2px 0;
    padding: 10px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 0;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

    .team-list .nav-link:hover {
        color: #484d54;
        background-color: rgba(223, 230, 237, 0.2);
        border: 1px solid #eee;
    }

    .team-list .nav-link.active {
        width: 100%;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border: 0;
        background-color: rgba(72, 85, 104, 0.08);
        border: 1px solid #eee;
        color: #484d54;
    }

@media only screen and (max-width: 360px) {
    .team-details ul li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
/**  Login page  **/
.auth-section {
    position: relative;
}

    .auth-section::after {
        content: "";
        width: 50%;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        background-image: url(../img/bg/1.jpg);
        background-position: center;
        background-size: cover;
        background-blend-mode: overlay;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .auth-section.anim::after {
        content: "";
        width: 50%;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        background-image: url(../img/bg/2.jpg);
        background-position: center;
        background-size: cover;
        background-blend-mode: overlay;
        background-color: rgba(0, 0, 0, 0);
        z-index: -1;
    }

.lh-login-page, .lh-error-page {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .lh-login-page #particles-js, .lh-error-page #particles-js {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
    }

    .lh-login-page .form-position, .lh-error-page .form-position {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .lh-login-page .login-form,
    .lh-login-page .forgot-form, .lh-error-page .login-form,
    .lh-error-page .forgot-form {
        width: 350px;
    }

    .lh-login-page .signup-form, .lh-error-page .signup-form {
        width: 450px;
    }

    .lh-login-page .login-form,
    .lh-login-page .signup-form,
    .lh-login-page .forgot-form, .lh-error-page .login-form,
    .lh-error-page .signup-form,
    .lh-error-page .forgot-form {
        margin: auto;
        background-color: #204246;
        border: 1px solid transparent;
        border-radius: 30px;
        -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    }

        .lh-login-page .login-form p,
        .lh-login-page .signup-form p,
        .lh-login-page .forgot-form p, .lh-error-page .login-form p,
        .lh-error-page .signup-form p,
        .lh-error-page .forgot-form p {
            text-align: center;
            color: #999;
        }

            .lh-login-page .login-form p b,
            .lh-login-page .signup-form p b,
            .lh-login-page .forgot-form p b, .lh-error-page .login-form p b,
            .lh-error-page .signup-form p b,
            .lh-error-page .forgot-form p b {
                font-weight: 500;
                color: #777;
                line-height: 28px;
            }

        .lh-login-page .login-form h6,
        .lh-login-page .signup-form h6,
        .lh-login-page .forgot-form h6, .lh-error-page .login-form h6,
        .lh-error-page .signup-form h6,
        .lh-error-page .forgot-form h6 {
            color: #1d2531;
            text-align: center;
            font-size: 15px;
            font-weight: 700;
        }

        .lh-login-page .login-form .imgcontainer,
        .lh-login-page .signup-form .imgcontainer,
        .lh-login-page .forgot-form .imgcontainer, .lh-error-page .login-form .imgcontainer,
        .lh-error-page .signup-form .imgcontainer,
        .lh-error-page .forgot-form .imgcontainer {
            text-align: center;
            margin: 24px 0 5px 0;
            position: relative;
        }

            .lh-login-page .login-form .imgcontainer img,
            .lh-login-page .signup-form .imgcontainer img,
            .lh-login-page .forgot-form .imgcontainer img, .lh-error-page .login-form .imgcontainer img,
            .lh-error-page .signup-form .imgcontainer img,
            .lh-error-page .forgot-form .imgcontainer img {
                width: 180px;
            }

            .lh-login-page .login-form .imgcontainer.user img,
            .lh-login-page .signup-form .imgcontainer.user img,
            .lh-login-page .forgot-form .imgcontainer.user img, .lh-error-page .login-form .imgcontainer.user img,
            .lh-error-page .signup-form .imgcontainer.user img,
            .lh-error-page .forgot-form .imgcontainer.user img {
                width: 70px;
                border-radius: 5px;
            }

        .lh-login-page .login-form .input-control,
        .lh-login-page .signup-form .input-control,
        .lh-login-page .forgot-form .input-control, .lh-error-page .login-form .input-control,
        .lh-error-page .signup-form .input-control,
        .lh-error-page .forgot-form .input-control {
            padding: 15px 30px 30px 30px;
            position: relative;
        }

            .lh-login-page .login-form .input-control .p-l-5,
            .lh-login-page .signup-form .input-control .p-l-5,
            .lh-login-page .forgot-form .input-control .p-l-5, .lh-error-page .login-form .input-control .p-l-5,
            .lh-error-page .signup-form .input-control .p-l-5,
            .lh-error-page .forgot-form .input-control .p-l-5 {
                padding-left: 5px;
            }

            .lh-login-page .login-form .input-control .p-r-5,
            .lh-login-page .signup-form .input-control .p-r-5,
            .lh-login-page .forgot-form .input-control .p-r-5, .lh-error-page .login-form .input-control .p-r-5,
            .lh-error-page .signup-form .input-control .p-r-5,
            .lh-error-page .forgot-form .input-control .p-r-5 {
                padding-right: 5px;
            }

            .lh-login-page .login-form .input-control .p-l-10,
            .lh-login-page .signup-form .input-control .p-l-10,
            .lh-login-page .forgot-form .input-control .p-l-10, .lh-error-page .login-form .input-control .p-l-10,
            .lh-error-page .signup-form .input-control .p-l-10,
            .lh-error-page .forgot-form .input-control .p-l-10 {
                padding-left: 10px;
            }

            .lh-login-page .login-form .input-control .p-r-10,
            .lh-login-page .signup-form .input-control .p-r-10,
            .lh-login-page .forgot-form .input-control .p-r-10, .lh-error-page .login-form .input-control .p-r-10,
            .lh-error-page .signup-form .input-control .p-r-10,
            .lh-error-page .forgot-form .input-control .p-r-10 {
                padding-right: 10px;
            }

            .lh-login-page .login-form .input-control input[type=text],
            .lh-login-page .login-form .input-control input[type=email],
            .lh-login-page .login-form .input-control input[type=password],
            .lh-login-page .signup-form .input-control input[type=text],
            .lh-login-page .signup-form .input-control input[type=email],
            .lh-login-page .signup-form .input-control input[type=password],
            .lh-login-page .forgot-form .input-control input[type=text],
            .lh-login-page .forgot-form .input-control input[type=email],
            .lh-login-page .forgot-form .input-control input[type=password], .lh-error-page .login-form .input-control input[type=text],
            .lh-error-page .login-form .input-control input[type=email],
            .lh-error-page .login-form .input-control input[type=password],
            .lh-error-page .signup-form .input-control input[type=text],
            .lh-error-page .signup-form .input-control input[type=email],
            .lh-error-page .signup-form .input-control input[type=password],
            .lh-error-page .forgot-form .input-control input[type=text],
            .lh-error-page .forgot-form .input-control input[type=email],
            .lh-error-page .forgot-form .input-control input[type=password] {
                width: 100%;
                padding: 12px 20px;
                margin: 8px 0;
                display: inline-block;
                border-bottom: 2px solid #ccc;
                border-top: 0;
                border-left: 0;
                border-right: 0;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
                border-radius: 5px;
                font-size: 14px;
                color: #666;
                background-color: #f8f8f8;
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                .lh-login-page .login-form .input-control input[type=text]:focus,
                .lh-login-page .login-form .input-control input[type=email]:focus,
                .lh-login-page .login-form .input-control input[type=password]:focus,
                .lh-login-page .signup-form .input-control input[type=text]:focus,
                .lh-login-page .signup-form .input-control input[type=email]:focus,
                .lh-login-page .signup-form .input-control input[type=password]:focus,
                .lh-login-page .forgot-form .input-control input[type=text]:focus,
                .lh-login-page .forgot-form .input-control input[type=email]:focus,
                .lh-login-page .forgot-form .input-control input[type=password]:focus, .lh-error-page .login-form .input-control input[type=text]:focus,
                .lh-error-page .login-form .input-control input[type=email]:focus,
                .lh-error-page .login-form .input-control input[type=password]:focus,
                .lh-error-page .signup-form .input-control input[type=text]:focus,
                .lh-error-page .signup-form .input-control input[type=email]:focus,
                .lh-error-page .signup-form .input-control input[type=password]:focus,
                .lh-error-page .forgot-form .input-control input[type=text]:focus,
                .lh-error-page .forgot-form .input-control input[type=email]:focus,
                .lh-error-page .forgot-form .input-control input[type=password]:focus {
                    border-radius: 5px;
                    border-bottom: 2px solid #799ffe;
                    outline: none !important;
                }

                .lh-login-page .login-form .input-control input[type=text]::-webkit-input-placeholder, .lh-login-page .login-form .input-control input[type=email]::-webkit-input-placeholder, .lh-login-page .login-form .input-control input[type=password]::-webkit-input-placeholder, .lh-login-page .signup-form .input-control input[type=text]::-webkit-input-placeholder, .lh-login-page .signup-form .input-control input[type=email]::-webkit-input-placeholder, .lh-login-page .signup-form .input-control input[type=password]::-webkit-input-placeholder, .lh-login-page .forgot-form .input-control input[type=text]::-webkit-input-placeholder, .lh-login-page .forgot-form .input-control input[type=email]::-webkit-input-placeholder, .lh-login-page .forgot-form .input-control input[type=password]::-webkit-input-placeholder, .lh-error-page .login-form .input-control input[type=text]::-webkit-input-placeholder, .lh-error-page .login-form .input-control input[type=email]::-webkit-input-placeholder, .lh-error-page .login-form .input-control input[type=password]::-webkit-input-placeholder, .lh-error-page .signup-form .input-control input[type=text]::-webkit-input-placeholder, .lh-error-page .signup-form .input-control input[type=email]::-webkit-input-placeholder, .lh-error-page .signup-form .input-control input[type=password]::-webkit-input-placeholder, .lh-error-page .forgot-form .input-control input[type=text]::-webkit-input-placeholder, .lh-error-page .forgot-form .input-control input[type=email]::-webkit-input-placeholder, .lh-error-page .forgot-form .input-control input[type=password]::-webkit-input-placeholder {
                    font-size: 13px;
                }

                .lh-login-page .login-form .input-control input[type=text]::-moz-placeholder, .lh-login-page .login-form .input-control input[type=email]::-moz-placeholder, .lh-login-page .login-form .input-control input[type=password]::-moz-placeholder, .lh-login-page .signup-form .input-control input[type=text]::-moz-placeholder, .lh-login-page .signup-form .input-control input[type=email]::-moz-placeholder, .lh-login-page .signup-form .input-control input[type=password]::-moz-placeholder, .lh-login-page .forgot-form .input-control input[type=text]::-moz-placeholder, .lh-login-page .forgot-form .input-control input[type=email]::-moz-placeholder, .lh-login-page .forgot-form .input-control input[type=password]::-moz-placeholder, .lh-error-page .login-form .input-control input[type=text]::-moz-placeholder, .lh-error-page .login-form .input-control input[type=email]::-moz-placeholder, .lh-error-page .login-form .input-control input[type=password]::-moz-placeholder, .lh-error-page .signup-form .input-control input[type=text]::-moz-placeholder, .lh-error-page .signup-form .input-control input[type=email]::-moz-placeholder, .lh-error-page .signup-form .input-control input[type=password]::-moz-placeholder, .lh-error-page .forgot-form .input-control input[type=text]::-moz-placeholder, .lh-error-page .forgot-form .input-control input[type=email]::-moz-placeholder, .lh-error-page .forgot-form .input-control input[type=password]::-moz-placeholder {
                    font-size: 13px;
                }

                .lh-login-page .login-form .input-control input[type=text]:-ms-input-placeholder, .lh-login-page .login-form .input-control input[type=email]:-ms-input-placeholder, .lh-login-page .login-form .input-control input[type=password]:-ms-input-placeholder, .lh-login-page .signup-form .input-control input[type=text]:-ms-input-placeholder, .lh-login-page .signup-form .input-control input[type=email]:-ms-input-placeholder, .lh-login-page .signup-form .input-control input[type=password]:-ms-input-placeholder, .lh-login-page .forgot-form .input-control input[type=text]:-ms-input-placeholder, .lh-login-page .forgot-form .input-control input[type=email]:-ms-input-placeholder, .lh-login-page .forgot-form .input-control input[type=password]:-ms-input-placeholder, .lh-error-page .login-form .input-control input[type=text]:-ms-input-placeholder, .lh-error-page .login-form .input-control input[type=email]:-ms-input-placeholder, .lh-error-page .login-form .input-control input[type=password]:-ms-input-placeholder, .lh-error-page .signup-form .input-control input[type=text]:-ms-input-placeholder, .lh-error-page .signup-form .input-control input[type=email]:-ms-input-placeholder, .lh-error-page .signup-form .input-control input[type=password]:-ms-input-placeholder, .lh-error-page .forgot-form .input-control input[type=text]:-ms-input-placeholder, .lh-error-page .forgot-form .input-control input[type=email]:-ms-input-placeholder, .lh-error-page .forgot-form .input-control input[type=password]:-ms-input-placeholder {
                    font-size: 13px;
                }

                .lh-login-page .login-form .input-control input[type=text]::-ms-input-placeholder, .lh-login-page .login-form .input-control input[type=email]::-ms-input-placeholder, .lh-login-page .login-form .input-control input[type=password]::-ms-input-placeholder, .lh-login-page .signup-form .input-control input[type=text]::-ms-input-placeholder, .lh-login-page .signup-form .input-control input[type=email]::-ms-input-placeholder, .lh-login-page .signup-form .input-control input[type=password]::-ms-input-placeholder, .lh-login-page .forgot-form .input-control input[type=text]::-ms-input-placeholder, .lh-login-page .forgot-form .input-control input[type=email]::-ms-input-placeholder, .lh-login-page .forgot-form .input-control input[type=password]::-ms-input-placeholder, .lh-error-page .login-form .input-control input[type=text]::-ms-input-placeholder, .lh-error-page .login-form .input-control input[type=email]::-ms-input-placeholder, .lh-error-page .login-form .input-control input[type=password]::-ms-input-placeholder, .lh-error-page .signup-form .input-control input[type=text]::-ms-input-placeholder, .lh-error-page .signup-form .input-control input[type=email]::-ms-input-placeholder, .lh-error-page .signup-form .input-control input[type=password]::-ms-input-placeholder, .lh-error-page .forgot-form .input-control input[type=text]::-ms-input-placeholder, .lh-error-page .forgot-form .input-control input[type=email]::-ms-input-placeholder, .lh-error-page .forgot-form .input-control input[type=password]::-ms-input-placeholder {
                    font-size: 13px;
                }

                .lh-login-page .login-form .input-control input[type=text]::placeholder,
                .lh-login-page .login-form .input-control input[type=email]::placeholder,
                .lh-login-page .login-form .input-control input[type=password]::placeholder,
                .lh-login-page .signup-form .input-control input[type=text]::placeholder,
                .lh-login-page .signup-form .input-control input[type=email]::placeholder,
                .lh-login-page .signup-form .input-control input[type=password]::placeholder,
                .lh-login-page .forgot-form .input-control input[type=text]::placeholder,
                .lh-login-page .forgot-form .input-control input[type=email]::placeholder,
                .lh-login-page .forgot-form .input-control input[type=password]::placeholder, .lh-error-page .login-form .input-control input[type=text]::placeholder,
                .lh-error-page .login-form .input-control input[type=email]::placeholder,
                .lh-error-page .login-form .input-control input[type=password]::placeholder,
                .lh-error-page .signup-form .input-control input[type=text]::placeholder,
                .lh-error-page .signup-form .input-control input[type=email]::placeholder,
                .lh-error-page .signup-form .input-control input[type=password]::placeholder,
                .lh-error-page .forgot-form .input-control input[type=text]::placeholder,
                .lh-error-page .forgot-form .input-control input[type=email]::placeholder,
                .lh-error-page .forgot-form .input-control input[type=password]::placeholder {
                    font-size: 13px;
                }

            .lh-login-page .login-form .input-control .password-field-show,
            .lh-login-page .signup-form .input-control .password-field-show,
            .lh-login-page .forgot-form .input-control .password-field-show, .lh-error-page .login-form .input-control .password-field-show,
            .lh-error-page .signup-form .input-control .password-field-show,
            .lh-error-page .forgot-form .input-control .password-field-show {
                position: relative;
                display: block;
            }

                .lh-login-page .login-form .input-control .password-field-show .field-icon,
                .lh-login-page .signup-form .input-control .password-field-show .field-icon,
                .lh-login-page .forgot-form .input-control .password-field-show .field-icon, .lh-error-page .login-form .input-control .password-field-show .field-icon,
                .lh-error-page .signup-form .input-control .password-field-show .field-icon,
                .lh-error-page .forgot-form .input-control .password-field-show .field-icon {
                    position: absolute;
                    top: 23px;
                    right: 10px;
                    z-index: 2;
                    color: #868686;
                }

            .lh-login-page .login-form .input-control .label-container,
            .lh-login-page .signup-form .input-control .label-container,
            .lh-login-page .forgot-form .input-control .label-container, .lh-error-page .login-form .input-control .label-container,
            .lh-error-page .signup-form .input-control .label-container,
            .lh-error-page .forgot-form .input-control .label-container {
                display: inline-block;
                position: relative;
                padding-left: 30px;
                margin: 12px 0;
                cursor: pointer;
                font-size: 14px;
                color: #868686;
                line-height: 25px;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                .lh-login-page .login-form .input-control .label-container a,
                .lh-login-page .signup-form .input-control .label-container a,
                .lh-login-page .forgot-form .input-control .label-container a, .lh-error-page .login-form .input-control .label-container a,
                .lh-error-page .signup-form .input-control .label-container a,
                .lh-error-page .forgot-form .input-control .label-container a {
                    color: #799ffe;
                    font-weight: 600;
                }

                .lh-login-page .login-form .input-control .label-container:hover input ~ .checkmark,
                .lh-login-page .signup-form .input-control .label-container:hover input ~ .checkmark,
                .lh-login-page .forgot-form .input-control .label-container:hover input ~ .checkmark, .lh-error-page .login-form .input-control .label-container:hover input ~ .checkmark,
                .lh-error-page .signup-form .input-control .label-container:hover input ~ .checkmark,
                .lh-error-page .forgot-form .input-control .label-container:hover input ~ .checkmark {
                    background-color: #3c3c3c;
                    -webkit-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                }

                .lh-login-page .login-form .input-control .label-container input[type=checkbox],
                .lh-login-page .signup-form .input-control .label-container input[type=checkbox],
                .lh-login-page .forgot-form .input-control .label-container input[type=checkbox], .lh-error-page .login-form .input-control .label-container input[type=checkbox],
                .lh-error-page .signup-form .input-control .label-container input[type=checkbox],
                .lh-error-page .forgot-form .input-control .label-container input[type=checkbox] {
                    outline: 2px solid #868686;
                    -webkit-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                    position: absolute;
                    opacity: 0;
                    cursor: pointer;
                    height: 0;
                    width: 0;
                    border-radius: 10px;
                }

                .lh-login-page .login-form .input-control .label-container .checkmark,
                .lh-login-page .signup-form .input-control .label-container .checkmark,
                .lh-login-page .forgot-form .input-control .label-container .checkmark, .lh-error-page .login-form .input-control .label-container .checkmark,
                .lh-error-page .signup-form .input-control .label-container .checkmark,
                .lh-error-page .forgot-form .input-control .label-container .checkmark {
                    position: absolute;
                    top: 2px;
                    left: 2px;
                    height: 20px;
                    width: 20px;
                    background-color: #fff;
                    outline: 2px solid transparent;
                    border: 2px solid #cccccc;
                    border-radius: 5px;
                }

                    .lh-login-page .login-form .input-control .label-container .checkmark:after,
                    .lh-login-page .signup-form .input-control .label-container .checkmark:after,
                    .lh-login-page .forgot-form .input-control .label-container .checkmark:after, .lh-error-page .login-form .input-control .label-container .checkmark:after,
                    .lh-error-page .signup-form .input-control .label-container .checkmark:after,
                    .lh-error-page .forgot-form .input-control .label-container .checkmark:after {
                        content: "";
                        position: absolute;
                        display: none;
                        left: 5px;
                        top: 1px;
                        width: 5px;
                        height: 10px;
                        border: solid white;
                        border-width: 0 2px 2px 0;
                        -webkit-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }

                .lh-login-page .login-form .input-control .label-container input:checked ~ .checkmark,
                .lh-login-page .signup-form .input-control .label-container input:checked ~ .checkmark,
                .lh-login-page .forgot-form .input-control .label-container input:checked ~ .checkmark, .lh-error-page .login-form .input-control .label-container input:checked ~ .checkmark,
                .lh-error-page .signup-form .input-control .label-container input:checked ~ .checkmark,
                .lh-error-page .forgot-form .input-control .label-container input:checked ~ .checkmark {
                    background-color: #799ffe;
                }

                    .lh-login-page .login-form .input-control .label-container input:checked ~ .checkmark:after,
                    .lh-login-page .signup-form .input-control .label-container input:checked ~ .checkmark:after,
                    .lh-login-page .forgot-form .input-control .label-container input:checked ~ .checkmark:after, .lh-error-page .login-form .input-control .label-container input:checked ~ .checkmark:after,
                    .lh-error-page .signup-form .input-control .label-container input:checked ~ .checkmark:after,
                    .lh-error-page .forgot-form .input-control .label-container input:checked ~ .checkmark:after {
                        display: block;
                    }

            .lh-login-page .login-form .input-control span.psw,
            .lh-login-page .signup-form .input-control span.psw,
            .lh-login-page .forgot-form .input-control span.psw, .lh-error-page .login-form .input-control span.psw,
            .lh-error-page .signup-form .input-control span.psw,
            .lh-error-page .forgot-form .input-control span.psw {
                float: right;
                padding-top: 12px;
            }

                .lh-login-page .login-form .input-control span.psw a,
                .lh-login-page .signup-form .input-control span.psw a,
                .lh-login-page .forgot-form .input-control span.psw a, .lh-error-page .login-form .input-control span.psw a,
                .lh-error-page .signup-form .input-control span.psw a,
                .lh-error-page .forgot-form .input-control span.psw a {
                    font-size: 13px;
                    color: #799ffe;
                    font-weight: 500;
                    text-decoration: none;
                    -webkit-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                }

                    .lh-login-page .login-form .input-control span.psw a:hover,
                    .lh-login-page .signup-form .input-control span.psw a:hover,
                    .lh-login-page .forgot-form .input-control span.psw a:hover, .lh-error-page .login-form .input-control span.psw a:hover,
                    .lh-error-page .signup-form .input-control span.psw a:hover,
                    .lh-error-page .forgot-form .input-control span.psw a:hover {
                        color: #444;
                    }

            .lh-login-page .login-form .input-control .login-btns,
            .lh-login-page .signup-form .input-control .login-btns,
            .lh-login-page .forgot-form .input-control .login-btns, .lh-error-page .login-form .input-control .login-btns,
            .lh-error-page .signup-form .input-control .login-btns,
            .lh-error-page .forgot-form .input-control .login-btns {
                text-align: center;
            }

                .lh-login-page .login-form .input-control .login-btns button,
                .lh-login-page .signup-form .input-control .login-btns button,
                .lh-login-page .forgot-form .input-control .login-btns button, .lh-error-page .login-form .input-control .login-btns button,
                .lh-error-page .signup-form .input-control .login-btns button,
                .lh-error-page .forgot-form .input-control .login-btns button {
                    background-color: #799ffe;
                    color: white;
                    padding: 8px 15px;
                    margin: 8px 0;
                    cursor: pointer;
                    font-size: 14px;
                    font-weight: 600;
                    border-radius: 5px;
                    border: 2px solid transparent;
                    -webkit-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                }

                    .lh-login-page .login-form .input-control .login-btns button:hover,
                    .lh-login-page .signup-form .input-control .login-btns button:hover,
                    .lh-login-page .forgot-form .input-control .login-btns button:hover, .lh-error-page .login-form .input-control .login-btns button:hover,
                    .lh-error-page .signup-form .input-control .login-btns button:hover,
                    .lh-error-page .forgot-form .input-control .login-btns button:hover {
                        background-color: transparent;
                        color: #799ffe;
                        border: 2px solid #799ffe;
                    }

            .lh-login-page .login-form .input-control .division-lines,
            .lh-login-page .signup-form .input-control .division-lines,
            .lh-login-page .forgot-form .input-control .division-lines, .lh-error-page .login-form .input-control .division-lines,
            .lh-error-page .signup-form .input-control .division-lines,
            .lh-error-page .forgot-form .input-control .division-lines {
                width: 100%;
                position: relative;
                display: block;
            }

                .lh-login-page .login-form .input-control .division-lines p,
                .lh-login-page .signup-form .input-control .division-lines p,
                .lh-login-page .forgot-form .input-control .division-lines p, .lh-error-page .login-form .input-control .division-lines p,
                .lh-error-page .signup-form .input-control .division-lines p,
                .lh-error-page .forgot-form .input-control .division-lines p {
                    text-align: center;
                    width: 40%;
                    margin: 15px auto;
                    text-transform: uppercase;
                    font-size: 12px;
                    font-weight: 600;
                    color: #aaa;
                    position: relative;
                    z-index: 2;
                }

                .lh-login-page .login-form .input-control .division-lines:before,
                .lh-login-page .signup-form .input-control .division-lines:before,
                .lh-login-page .forgot-form .input-control .division-lines:before, .lh-error-page .login-form .input-control .division-lines:before,
                .lh-error-page .signup-form .input-control .division-lines:before,
                .lh-error-page .forgot-form .input-control .division-lines:before {
                    content: "";
                    width: 30%;
                    height: 1px;
                    background: #e0e0e0;
                    position: absolute;
                    top: 13px;
                    right: 0;
                    margin: auto;
                }

                .lh-login-page .login-form .input-control .division-lines:after,
                .lh-login-page .signup-form .input-control .division-lines:after,
                .lh-login-page .forgot-form .input-control .division-lines:after, .lh-error-page .login-form .input-control .division-lines:after,
                .lh-error-page .signup-form .input-control .division-lines:after,
                .lh-error-page .forgot-form .input-control .division-lines:after {
                    content: "";
                    width: 30%;
                    height: 1px;
                    background: #e0e0e0;
                    position: absolute;
                    top: 13px;
                    left: 0;
                    margin: auto;
                }

            .lh-login-page .login-form .input-control .login-with-btns,
            .lh-login-page .signup-form .input-control .login-with-btns,
            .lh-login-page .forgot-form .input-control .login-with-btns, .lh-error-page .login-form .input-control .login-with-btns,
            .lh-error-page .signup-form .input-control .login-with-btns,
            .lh-error-page .forgot-form .input-control .login-with-btns {
                text-align: center;
            }

                .lh-login-page .login-form .input-control .login-with-btns .google,
                .lh-login-page .login-form .input-control .login-with-btns .facebook,
                .lh-login-page .login-form .input-control .login-with-btns .twitter,
                .lh-login-page .login-form .input-control .login-with-btns .linkedin,
                .lh-login-page .signup-form .input-control .login-with-btns .google,
                .lh-login-page .signup-form .input-control .login-with-btns .facebook,
                .lh-login-page .signup-form .input-control .login-with-btns .twitter,
                .lh-login-page .signup-form .input-control .login-with-btns .linkedin,
                .lh-login-page .forgot-form .input-control .login-with-btns .google,
                .lh-login-page .forgot-form .input-control .login-with-btns .facebook,
                .lh-login-page .forgot-form .input-control .login-with-btns .twitter,
                .lh-login-page .forgot-form .input-control .login-with-btns .linkedin, .lh-error-page .login-form .input-control .login-with-btns .google,
                .lh-error-page .login-form .input-control .login-with-btns .facebook,
                .lh-error-page .login-form .input-control .login-with-btns .twitter,
                .lh-error-page .login-form .input-control .login-with-btns .linkedin,
                .lh-error-page .signup-form .input-control .login-with-btns .google,
                .lh-error-page .signup-form .input-control .login-with-btns .facebook,
                .lh-error-page .signup-form .input-control .login-with-btns .twitter,
                .lh-error-page .signup-form .input-control .login-with-btns .linkedin,
                .lh-error-page .forgot-form .input-control .login-with-btns .google,
                .lh-error-page .forgot-form .input-control .login-with-btns .facebook,
                .lh-error-page .forgot-form .input-control .login-with-btns .twitter,
                .lh-error-page .forgot-form .input-control .login-with-btns .linkedin {
                    width: 35px;
                    height: 35px;
                    margin: 8px 5px 8px 0;
                    display: -webkit-inline-box;
                    display: -ms-inline-flexbox;
                    display: inline-flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    border: 2px solid #c3c3c3;
                    border-radius: 5px;
                    background-color: transparent;
                    outline: 1px solid transparent;
                    -webkit-transition: all 0.2s ease-in-out;
                    transition: all 0.2s ease-in-out;
                }

                    .lh-login-page .login-form .input-control .login-with-btns .google i,
                    .lh-login-page .login-form .input-control .login-with-btns .facebook i,
                    .lh-login-page .login-form .input-control .login-with-btns .twitter i,
                    .lh-login-page .login-form .input-control .login-with-btns .linkedin i,
                    .lh-login-page .signup-form .input-control .login-with-btns .google i,
                    .lh-login-page .signup-form .input-control .login-with-btns .facebook i,
                    .lh-login-page .signup-form .input-control .login-with-btns .twitter i,
                    .lh-login-page .signup-form .input-control .login-with-btns .linkedin i,
                    .lh-login-page .forgot-form .input-control .login-with-btns .google i,
                    .lh-login-page .forgot-form .input-control .login-with-btns .facebook i,
                    .lh-login-page .forgot-form .input-control .login-with-btns .twitter i,
                    .lh-login-page .forgot-form .input-control .login-with-btns .linkedin i, .lh-error-page .login-form .input-control .login-with-btns .google i,
                    .lh-error-page .login-form .input-control .login-with-btns .facebook i,
                    .lh-error-page .login-form .input-control .login-with-btns .twitter i,
                    .lh-error-page .login-form .input-control .login-with-btns .linkedin i,
                    .lh-error-page .signup-form .input-control .login-with-btns .google i,
                    .lh-error-page .signup-form .input-control .login-with-btns .facebook i,
                    .lh-error-page .signup-form .input-control .login-with-btns .twitter i,
                    .lh-error-page .signup-form .input-control .login-with-btns .linkedin i,
                    .lh-error-page .forgot-form .input-control .login-with-btns .google i,
                    .lh-error-page .forgot-form .input-control .login-with-btns .facebook i,
                    .lh-error-page .forgot-form .input-control .login-with-btns .twitter i,
                    .lh-error-page .forgot-form .input-control .login-with-btns .linkedin i {
                        color: #c3c3c3;
                        font-size: 14px;
                        -webkit-transition: all 0.2s ease-in-out;
                        transition: all 0.2s ease-in-out;
                    }

                    .lh-login-page .login-form .input-control .login-with-btns .google:hover,
                    .lh-login-page .signup-form .input-control .login-with-btns .google:hover,
                    .lh-login-page .forgot-form .input-control .login-with-btns .google:hover, .lh-error-page .login-form .input-control .login-with-btns .google:hover,
                    .lh-error-page .signup-form .input-control .login-with-btns .google:hover,
                    .lh-error-page .forgot-form .input-control .login-with-btns .google:hover {
                        border: 2px solid #db4437;
                    }

                        .lh-login-page .login-form .input-control .login-with-btns .google:hover i,
                        .lh-login-page .signup-form .input-control .login-with-btns .google:hover i,
                        .lh-login-page .forgot-form .input-control .login-with-btns .google:hover i, .lh-error-page .login-form .input-control .login-with-btns .google:hover i,
                        .lh-error-page .signup-form .input-control .login-with-btns .google:hover i,
                        .lh-error-page .forgot-form .input-control .login-with-btns .google:hover i {
                            color: #db4437;
                        }

                    .lh-login-page .login-form .input-control .login-with-btns .facebook:hover,
                    .lh-login-page .signup-form .input-control .login-with-btns .facebook:hover,
                    .lh-login-page .forgot-form .input-control .login-with-btns .facebook:hover, .lh-error-page .login-form .input-control .login-with-btns .facebook:hover,
                    .lh-error-page .signup-form .input-control .login-with-btns .facebook:hover,
                    .lh-error-page .forgot-form .input-control .login-with-btns .facebook:hover {
                        border: 2px solid #3b5998;
                    }

                        .lh-login-page .login-form .input-control .login-with-btns .facebook:hover i,
                        .lh-login-page .signup-form .input-control .login-with-btns .facebook:hover i,
                        .lh-login-page .forgot-form .input-control .login-with-btns .facebook:hover i, .lh-error-page .login-form .input-control .login-with-btns .facebook:hover i,
                        .lh-error-page .signup-form .input-control .login-with-btns .facebook:hover i,
                        .lh-error-page .forgot-form .input-control .login-with-btns .facebook:hover i {
                            color: #3b5998;
                        }

                    .lh-login-page .login-form .input-control .login-with-btns .twitter:hover,
                    .lh-login-page .signup-form .input-control .login-with-btns .twitter:hover,
                    .lh-login-page .forgot-form .input-control .login-with-btns .twitter:hover, .lh-error-page .login-form .input-control .login-with-btns .twitter:hover,
                    .lh-error-page .signup-form .input-control .login-with-btns .twitter:hover,
                    .lh-error-page .forgot-form .input-control .login-with-btns .twitter:hover {
                        border: 2px solid #00acee;
                    }

                        .lh-login-page .login-form .input-control .login-with-btns .twitter:hover i,
                        .lh-login-page .signup-form .input-control .login-with-btns .twitter:hover i,
                        .lh-login-page .forgot-form .input-control .login-with-btns .twitter:hover i, .lh-error-page .login-form .input-control .login-with-btns .twitter:hover i,
                        .lh-error-page .signup-form .input-control .login-with-btns .twitter:hover i,
                        .lh-error-page .forgot-form .input-control .login-with-btns .twitter:hover i {
                            color: #00acee;
                        }

                    .lh-login-page .login-form .input-control .login-with-btns .linkedin:hover,
                    .lh-login-page .signup-form .input-control .login-with-btns .linkedin:hover,
                    .lh-login-page .forgot-form .input-control .login-with-btns .linkedin:hover, .lh-error-page .login-form .input-control .login-with-btns .linkedin:hover,
                    .lh-error-page .signup-form .input-control .login-with-btns .linkedin:hover,
                    .lh-error-page .forgot-form .input-control .login-with-btns .linkedin:hover {
                        border: 2px solid #0e76a8;
                    }

                        .lh-login-page .login-form .input-control .login-with-btns .linkedin:hover i,
                        .lh-login-page .signup-form .input-control .login-with-btns .linkedin:hover i,
                        .lh-login-page .forgot-form .input-control .login-with-btns .linkedin:hover i, .lh-error-page .login-form .input-control .login-with-btns .linkedin:hover i,
                        .lh-error-page .signup-form .input-control .login-with-btns .linkedin:hover i,
                        .lh-error-page .forgot-form .input-control .login-with-btns .linkedin:hover i {
                            color: #0e76a8;
                        }

                .lh-login-page .login-form .input-control .login-with-btns .already-acc,
                .lh-login-page .signup-form .input-control .login-with-btns .already-acc,
                .lh-login-page .forgot-form .input-control .login-with-btns .already-acc, .lh-error-page .login-form .input-control .login-with-btns .already-acc,
                .lh-error-page .signup-form .input-control .login-with-btns .already-acc,
                .lh-error-page .forgot-form .input-control .login-with-btns .already-acc {
                    margin-top: 10px;
                    display: block;
                    color: #868686;
                    font-size: 14px;
                }

                    .lh-login-page .login-form .input-control .login-with-btns .already-acc a,
                    .lh-login-page .signup-form .input-control .login-with-btns .already-acc a,
                    .lh-login-page .forgot-form .input-control .login-with-btns .already-acc a, .lh-error-page .login-form .input-control .login-with-btns .already-acc a,
                    .lh-error-page .signup-form .input-control .login-with-btns .already-acc a,
                    .lh-error-page .forgot-form .input-control .login-with-btns .already-acc a {
                        padding: 0 5px;
                        color: #799ffe;
                        background-color: transparent;
                        text-decoration: none;
                        font-weight: 600;
                        -webkit-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }

                        .lh-login-page .login-form .input-control .login-with-btns .already-acc a:hover,
                        .lh-login-page .signup-form .input-control .login-with-btns .already-acc a:hover,
                        .lh-login-page .forgot-form .input-control .login-with-btns .already-acc a:hover, .lh-error-page .login-form .input-control .login-with-btns .already-acc a:hover,
                        .lh-error-page .signup-form .input-control .login-with-btns .already-acc a:hover,
                        .lh-error-page .forgot-form .input-control .login-with-btns .already-acc a:hover {
                            color: #444;
                        }

    .lh-error-page:after {
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .lh-error-page .hero-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
        z-index: 15;
    }

        .lh-error-page .hero-container h1, .lh-error-page .hero-container h4, .lh-error-page .hero-container p {
            text-align: center;
        }

        .lh-error-page .hero-container h1 {
            margin-bottom: 30px;
            font-size: 100px;
            font-weight: 800;
            color: #fff;
        }

        .lh-error-page .hero-container h4 {
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 20px;
            color: #fff;
        }

        .lh-error-page .hero-container p {
            margin-bottom: 30px;
            color: #fff;
        }

    .lh-error-page canvas {
        position: absolute;
    }

.lh-maintenance-page:after {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lh-maintenance-page .lh-maintenance-content {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .lh-maintenance-page .lh-maintenance-content .content-detail {
        max-width: 500px;
        padding: 0 15px;
        text-align: center;
        z-index: 15;
    }

        .lh-maintenance-page .lh-maintenance-content .content-detail h1 {
            color: #fff;
            font-size: 40px;
            font-weight: 600;
        }

        .lh-maintenance-page .lh-maintenance-content .content-detail p {
            margin-top: 15px;
            color: #fff;
            font-size: 14px;
            line-height: 26px;
        }

.lh-maintenance-page .animation {
    display: inline-block;
    margin-bottom: 5%;
}

.lh-maintenance-page .one, .lh-maintenance-page .two, .lh-maintenance-page .three {
    display: block;
    float: left;
}

.lh-maintenance-page .one {
    background-image: url("../img/other/gear-2.png");
    width: 80px;
    height: 80px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: -10px;
    margin-right: 8px;
}

.lh-maintenance-page .two {
    background-image: url("../img/other/gear-1.png");
    width: 100px;
    height: 100px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.lh-maintenance-page .three {
    background-image: url("../img/other/gear-1.png");
    width: 80px;
    height: 80px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: -50px;
    margin-left: -10px;
}

@-webkit-keyframes gear-one {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-359deg);
        transform: rotate(-359deg);
    }
}

@keyframes gear-one {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-359deg);
        transform: rotate(-359deg);
    }
}

.lh-maintenance-page .gear-one {
    -webkit-animation: gear-one 2.5s infinite linear;
    animation: gear-one 2.5s infinite linear;
}

@-webkit-keyframes gear-two {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes gear-two {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.lh-maintenance-page .gear-two {
    -webkit-animation: gear-two 3s infinite linear;
    animation: gear-two 3s infinite linear;
}

.lh-maintenance-page canvas {
    position: absolute;
    top: 0;
}

/**  Auth pages Responsive  **/
@media screen and (max-width: 991px) {
    .auth-section.anim:after {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .lh-login-page .container {
        padding: 15px;
    }

    .lh-login-page #signup-modal .modal-content {
        max-width: 350px;
        top: 15%;
    }

    .lh-login-page .modal .input-control input[type=text],
    .lh-login-page .modal .input-control input[type=email],
    .lh-login-page .modal .input-control input[type=password] {
        padding: 10px 20px;
    }

    .lh-error-page .hero-container h1 {
        font-size: 80px;
    }

    .lh-maintenance-page .lh-maintenance-content .content-detail h1 {
        font-size: 35px;
    }
}

@media screen and (max-width: 576px) {
    .auth-section::after {
        content: "";
        width: 100%;
        height: 50vh;
        top: 50%;
    }

    .lh-error-page:after {
        height: 100vh;
        top: 0;
    }

    .lh-error-page .hero-container h1 {
        font-size: 60px;
    }

    .lh-maintenance-page .lh-maintenance-content .content-detail h1 {
        font-size: 30px;
    }

    .lh-maintenance-page:after {
        height: 100vh;
        top: 0;
    }

    .lh-login-page .login-form,
    .lh-login-page .forgot-form {
        width: 290px;
    }

    .lh-login-page .signup-form {
        width: 290px;
    }

        .lh-login-page .login-form .input-control .division-lines:before, .lh-login-page .login-form .input-control .division-lines:after,
        .lh-login-page .signup-form .input-control .division-lines:before,
        .lh-login-page .signup-form .input-control .division-lines:after {
            width: 25%;
        }

        .lh-login-page .login-form .input-control .division-lines p,
        .lh-login-page .signup-form .input-control .division-lines p {
            width: 50%;
        }
}

@media screen and (max-width: 480px) {
    .lh-login-page .modal .input-control .division-lines p {
        width: 45%;
    }

    .lh-login-page .modal .input-control .division-lines:after, .lh-login-page .modal .input-control .division-lines:before {
        width: 25%;
    }
}
/** General alert popup **/
.alert-popup ul li {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid #eee;
    border-radius: 5px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .alert-popup ul li:not(:last-child) {
        margin-bottom: 15px;
    }

    .alert-popup ul li:hover {
        background-color: rgba(223, 230, 237, 0.2);
    }

.swal2-popup {
    padding: 30px;
    border-bottom: 5px solid #799ffe;
}

    .swal2-popup .swal2-icon {
        margin: 0 auto 30px auto;
    }

    .swal2-popup .swal2-title {
        padding: 0;
        font-size: 22px;
        color: #484d54;
    }

    .swal2-popup .btn {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        margin: 5px;
    }

        .swal2-popup .btn:hover {
            background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1)));
            background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
        }

    .swal2-popup .swal2-confirm {
        background-color: #799ffe;
    }

        .swal2-popup .swal2-confirm:focus {
            outline: none;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

    .swal2-popup .btn-danger {
        background-color: #ff4f7f;
    }

    .swal2-popup .swal2-success-ring {
        border-color: #2bbb93 !important;
    }

    .swal2-popup .swal2-success {
        color: #2bbb93 !important;
    }

    .swal2-popup div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
        background-color: #2bbb93 !important;
    }

.swal2-icon-success {
    border-bottom: 5px solid #2bbb93;
}

.swal2-icon-question {
    border-bottom: 5px solid #ff4f7f;
}

    .swal2-icon-question div:where(.swal2-icon).swal2-question {
        border-color: #ff4f7f;
    }

    .swal2-icon-question div:where(.swal2-icon).swal2-question {
        color: #ff4f7f;
    }

.swal2-icon-error {
    border-bottom: 5px solid #fb2f2f;
}

    .swal2-icon-error div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left], .swal2-icon-error div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right] {
        background-color: #fb2f2f;
    }

    .swal2-icon-error div:where(.swal2-icon).swal2-error {
        border-color: #fb2f2f;
    }

.swal2-icon-info {
    border-bottom: 5px solid #50d1f8;
}

/**  Invoice page  **/
.lh-invoice .invoice-wrapper .invoice-item-img {
    width: 35px;
}

.lh-invoice .invoice-wrapper .i-logo {
    width: 180px;
    margin-top: 10px;
}

.lh-invoice .invoice-wrapper address {
    font-size: 14px;
    color: #777;
    line-height: 24px;
}

.lh-invoice .invoice-wrapper p {
    font-size: 14px;
    font-weight: 600;
    color: #484d54;
}

.lh-invoice .invoice-wrapper .table-invoice {
    margin-top: 30px;
}

    .lh-invoice .invoice-wrapper .table-invoice > thead > tr {
        background-color: #1d2531;
    }

        .lh-invoice .invoice-wrapper .table-invoice > thead > tr th {
            padding: 10px;
            color: #fff;
        }

    .lh-invoice .invoice-wrapper .table-invoice > tbody > tr:nth-of-type(even) > * {
        background-color: rgba(223, 230, 237, 0.2);
    }

    .lh-invoice .invoice-wrapper .table-invoice > tbody > tr td {
        padding: 12px;
        font-size: 14px;
        color: #777;
    }

        .lh-invoice .invoice-wrapper .table-invoice > tbody > tr td:first-child {
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
        }

        .lh-invoice .invoice-wrapper .table-invoice > tbody > tr td:last-child {
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
        }

.lh-invoice .invoice-wrapper .list-unstyled {
    margin: 24px 0 0 0;
}

    .lh-invoice .invoice-wrapper .list-unstyled li {
        font-size: 15px;
        color: #484d54;
        font-weight: 500;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .lh-invoice .invoice-wrapper .list-unstyled li span {
            color: #777;
        }

.lh-invoice .invoice-wrapper .note {
    margin-top: 24px;
}

    .lh-invoice .invoice-wrapper .note label {
        font-size: 15px;
        font-weight: 500;
        color: #484d54;
    }

    .lh-invoice .invoice-wrapper .note p {
        margin: 0;
        font-size: 13px;
        font-weight: 300;
        line-height: 26px;
        color: #999;
    }
/*# sourceMappingURL=style.css.map */
