/*Variables*/
:root {
    --body-bg: #F0F1F7;
    --le-menu-hover: #434241;
    --le-primary: #EC5601;
    --le-menu-bg: #2D2B2A;
    --le-light-orange: #FE8921;
    --le-orange: #ED5501;
    --le-dark: #2E2A27;
    --clr-white: #ffffff;
    --clr-black: #000000;
    --clr-black-rgb: 0,0,0;
    --clr-success: #26BF94;
    --clr-warning: #F5B849;
    --clr-danger: #E6533C;
    --clr-sky: #23B7E5;
    --clr-lavendar: #845ADF;
    --clr-success-bg: #E9F9F4;
    --clr-warning-bg: #FEF8ED;
    --clr-danger-bg: #FCEEEB;
    --clr-sky-bg: #E9F8FC;
    --clr-lavendar-bg: #F3EFFC;
    --clr-box-title: #8C9097;
    /*input*/
    --textbox-border: #8C9097;
    --textbox-placeholder: #8C9097;
}

body, html {
    background: var(--body-bg) !important;
}

.rotate-90 {
    transform: rotate(90deg);
}
/*login page*/
.main-wrapper {
    padding: 25px 50px 50px;
    /*background: url(../images/bg-logo.png) no-repeat center center, url(../images/t1.png) no-repeat top left,url(../images/t2.png) no-repeat bottom right,#EBEEF1;*/
    background: url(../images/login-bg.jpg) no-repeat 100% / cover;
    height: 100vh;
}

    .main-wrapper .login-master {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /*height:calc(100vh - 250px);*/
    }

.login-left {
    /*height: calc(100vh - 100px);*/
    overflow: hidden;
    width: calc(100% - 500px);
    position: relative;
}

    .login-left .login-logo {
        position: absolute;
        left: 0;
        bottom: 0;
    }

.login-right {
    width: 450px;
    background: var(--clr-white);
    border-radius: 10px;
    box-shadow: 0 0 32px rgba(0,0,0,.1);
}

.login-master {
    /*background: url(../images/top-left.png) no-repeat left top,url(../images/bottom-right.png) no-repeat bottom right, var(--le-menu-bg);*/
    /*height: 100vh;*/
    /*display: flex;
    align-items: center;*/
}

.login-logo img {
    max-width: 250px;
}

.login-right .login-body {
    padding: 50px 30px;
    height: 350px;
}

    .login-right .login-body h3 {
        color: var(--le-menu-bg);
        font-size: 24px;
        font-weight: 500;
        margin-top: 0;
    }

    .login-right .login-body .sub-title {
        color: var(--clr-box-title);
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 20px;
        display: block;
    }


.login-right .form-control {
    border: 1px solid var(--textbox-border);
    border-radius: 6px;
    font-size: 14px;
    padding: 8px 15px;
    height: 40px;
    background: transparent;
    color: var(--le-menu-bg);
    font-weight: 500;
}

    .login-right .form-control::placeholder {
        color: var(--clr-box-title) !important;
    }

.lg-btn-success {
    border-radius: 6px;
    font-size: 16px;
    padding: 10px 20px;
    height: 45px;
    background: var(--clr-success);
    color: var(--clr-white);
    font-weight: 500;
}

.lg-btn-warning {
    border-radius: 6px;
    font-size: 16px;
    padding: 10px 20px;
    height: 45px;
    background: var(--le-light-orange);
    color: var(--clr-white);
    font-weight: 500;
}

.btn-radio-group {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.gallery {
    padding: 50px;
}

    .gallery .item h1 {
        color: #DF0E0E !important;
        font-size: 50px;
        font-weight: 400;
        text-transform: capitalize;
        font-style: normal;
        line-height: 1.3em;
    }

    .gallery .item p {
        text-align: left;
        color: #171717;
        font-size: 28px;
        font-weight: 400;
        line-height: 40px;
    }

.login-by {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

    .login-by:after {
        content: "";
        border-top: 1px solid var(--clr-box-title);
        position: absolute;
        left: 10%;
        width: 80%;
        top: 15px;
    }

    .login-by span {
        font-size: 18px;
        font-weight: 500;
        color: var(--le-menu-bg);
        display: inline-block;
        background: var(--clr-white);
        padding: 0 10px;
        z-index: 1;
        position: relative;
    }

.btn-radio {
    width: 125px;
}

    .btn-radio input[type="radio"] {
        display: none;
    }

        .btn-radio input[type="radio"]:checked + label {
            background: var(--le-menu-bg);
            color: var(--clr-white);
        }

            .btn-radio input[type="radio"]:checked + label:before {
                content: "";
                color: var(--clr-white) !important;
            }

        .btn-radio input[type="radio"] + label {
            color: var(--clr-box-title);
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            background: #f4f4f4;
            border-radius: 6px;
            padding: 6px 15px;
            cursor: pointer;
        }

    .btn-radio.username input[type="radio"] + label:before {
        content: "\ea07";
        font-family: 'feather' !important;
        color: var(--clr-box-title);
        font-size: 18px;
        font-weight: 500;
        padding-right: 10px;
    }

    .btn-radio.email input[type="radio"] + label:before {
        content: "\e989";
        font-family: 'feather' !important;
        color: var(--clr-box-title);
        font-size: 18px;
        font-weight: 500;
        padding-right: 10px;
    }

    .btn-radio.mobile input[type="radio"] + label:before {
        content: "\e9c5";
        font-family: 'feather' !important;
        color: var(--clr-box-title);
        font-size: 18px;
        font-weight: 500;
        padding-right: 10px;
    }

.imageslider {
    width: calc(100% - 500px);
    background: var(--clr-lavendar-bg);
}

    .imageslider img {
        width: 100%;
        height: calc(100vh - 1px);
    }

.owl-carousel .owl-item img {
    max-height: 550px !important;
    max-width: 90% !important;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width:1280px) {
    .login-right .login-body {
        padding: 25px;
        height: 300px;
    }

    .login-logo img {
        max-width: 150px;
    }

    .login-right .login-body .sub-title {
        margin-bottom: 10px;
    }

    .btn-radio-group {
        padding-bottom: 0px;
    }

    .owl-carousel .owl-item img {
        max-width: 100% !important;
    }
}

@media screen and (max-width:810px) {
    .login-right .login-body {
        height: auto;
    }

    .main-wrapper {
        padding: 30px;
        display: flex;
        flex-direction: column;
    }

        .main-wrapper .login-master {
            flex-direction: column;
            align-items: center;
            height: 0;
            order: 2;
        }

    .login-left {
        width: 100%;
        height: 60px;
        text-align: center;
        margin-bottom: 20px;
    }

        .login-left .gallery {
            display: none;
        }

    .login-logo {
        width: 100%;
        text-align: center;
    }

        .login-logo img {
            max-width: 100px;
        }

    .imageslider {
        display: none;
    }

    .login-master {
        width: 100%;
    }

        .login-master .login-body {
            padding: 30px;
        }

    .btn-radio {
        width: auto;
    }

        .btn-radio input[type="radio"] + label {
            font-size: 13px;
        }
}

@media screen and (max-width:767px) {
    .login-right {
        width: 100%;
    }
}

@media screen and (max-width:475px) {
    .btn-radio-group {
        flex-direction: column;
    }

        .btn-radio-group .email {
            margin: 5px 0;
        }
}
/*Header*/
.logo img {
    height: 40px;
}

.navbar-header {
    background: var(--clr-white);
}

.navbar-left {
    padding-left: 14px;
}

.top-left-part {
    background: var(--le-menu-bg);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-pic {
    display: flex !important;
    align-items: center !important;
}

.profile-icon {
    background: var(--le-light-orange);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

    .profile-icon i {
        color: var(--clr-white);
        font-size: 18px;
    }

.profile-username {
    line-height: 20px;
}

    .profile-username h4 {
        color: var(--le-menu-bg);
        font-size: 14px;
        line-height: 14px;
        font-weight: 600;
        padding: 0;
        margin: 0;
    }

    .profile-username span {
        color: var(--le-menu-bg);
        font-size: 12px;
        line-height: 12px;
        font-weight: 500;
    }

.navbar-top-links > li > a {
    color: var(--le-menu-bg);
    font-size: 20px;
}

.date-time i {
    color: var(--le-menu-bg);
    font-size: 20px;
}

.date-time span {
    color: var(--le-menu-bg);
    font-size: 18px;
    font-weight: 500;
}

    .date-time span sup {
        font-weight: 400;
    }
/*Breadcrumb*/
.bg-title {
    overflow: hidden;
    padding: 10px 0 0 0;
    margin-bottom: 0;
    margin-right: -7.5px;
    margin-left: -7.5px;
    background: transparent;
    align-items: center;
}

    .bg-title .page-title {
        font-weight: 600;
        color: var(--le-menu-bg);
    }

    .bg-title .breadcrumb {
        padding: 0;
        margin: 0;
        list-style: none;
        background-color: transparent;
        border-radius: 4px;
    }

        .bg-title .breadcrumb li a {
            color: var(--clr-box-title);
        }

        .bg-title .breadcrumb > .active {
            color: var(--le-primary);
        }
/*Sidebar*/
.sidebar {
    background: var(--le-menu-bg);
}

#side-menu {
    padding-left: 10px;
    padding-right: 10px;
}

    #side-menu > li {
        padding-bottom: 3px;
    }

        #side-menu > li.active > a, #side-menu > li.active > a:hover {
            border-left: 0;
            background: var(--le-primary);
            color: #fff;
            font-weight: 500;
            border-radius: 4px;
        }

        #side-menu > li > a {
            color: var(--clr-white);
            padding: 8px 30px 8px 10px;
        }

            #side-menu > li > a.active i {
                color: var(--clr-white);
            }

            #side-menu > li > a.active {
                border-left: 0;
                background: var(--le-primary);
                color: #fff;
                font-weight: 500;
                border-radius: 4px;
            }

    #side-menu li a {
        color: var(--clr-white);
    }

.sidebar .nav-second-level {
    padding-top: 10px;
}

    .sidebar .nav-second-level li {
        padding-bottom: 5px;
    }

        .sidebar .nav-second-level li a {
            padding-left: 13px;
        }

            .sidebar .nav-second-level li a:before {
                content: "";
                height: 6px;
                width: 6px;
                border: 1px solid var(--clr-white);
                border-radius: 8px;
                display: inline-block;
                margin-right: 15px;
            }

            .sidebar .nav-second-level li a i {
                display: none;
            }

#side-menu ul > li > a:hover {
    background: var(--le-menu-hover);
    color: var(--clr-white);
    border-radius: 4px;
}

#side-menu > li > a:hover, #side-menu > li > a:focus {
    background: var(--le-menu-hover);
    color: var(--clr-white);
    border-radius: 4px;
}

#side-menu ul > li > a.active {
    background: var(--le-menu-hover);
    color: var(--clr-white);
    border-radius: 4px;
}
/*Dashboard*/
.tile-master, .noti-master {
    background: var(--clr-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 2px var(--clr-black-rgb,0.5);
}

    .tile-master .tile-title h3 {
        margin: 0;
        font-size: 24px;
        font-weight: 600;
    }

    .tile-master .tile-title span {
        color: var(---clr-box-title);
        display: block;
        padding-bottom: 10px;
    }

    .tile-master .tile-icon {
        border-radius: 8px;
        height: 60px;
        width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
    }

        .tile-master .tile-icon i {
            font-size: 22px;
        }

        .tile-master .tile-icon.tile-lavendar {
            background: var(--clr-lavendar-bg);
            color: var(--clr-lavendar);
        }

        .tile-master .tile-icon.tile-sky {
            background: var(--clr-sky-bg);
            color: var(--clr-sky);
        }

        .tile-master .tile-icon.tile-danger {
            background: var(--clr-danger-bg);
            color: var(--clr-danger);
        }

        .tile-master .tile-icon.tile-warning {
            background: var(--clr-warning-bg);
            color: var(--clr-warning);
        }

        .tile-master .tile-icon.tile-success {
            background: var(--clr-success-bg);
            color: var(--clr-success);
        }

.main-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    padding-bottom: 10px;
}

.noti-list {
    min-height: 260px;
    overflow-y: auto;
}

.table.tbl-smpl > tbody > tr > th {
    border-top: 0;
    font-weight: 600;
}

.record-edit i {
    height: 21px;
    width: 21px;
    display: inline-flex;
    background: #3ea381;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
}


.record-delete i {
    height: 21px;
    width: 21px;
    display: inline-flex;
    background: #fb6068;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
}

.record-print i {
    height: 21px;
    width: 21px;
    display: inline-flex;
    background: #00a8e8;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
}

.record-view i {
    height: 21px;
    width: 21px;
    display: inline-flex;
    background: #7678ed;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
}

.record-edit i, .record-delete i, .record-print i, .record-view i {
    color: #ffffff;
}

.record-delete, .record-edit, .record-view, .record-print {
    margin: 1px;
}
/*.d-inline-flex{
    display:inline-flex;
}*/
