﻿/*
    ******** This Cascading style sheet written by team of ux, Logic Valley Technology Pvt Ltd ********
    
----------------------------------------------------------------------------------------------------------*/


@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');
@import url('colors.css');


* {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

body {
    margin: 0;
    padding: 0px;
    min-width: 100%;
    color: #12284C;
}

*:focus {
    outline: 0 !important;
}
span.select2-selection.select2-selection--single {
    outline: none !important;
}
.body-bg {
    background: url('../img/login-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.Dashboardbody-bg {
    background-image: url('../img/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}
a:hover {
    text-decoration: none;
}

ul {
    padding: 0;
}

    ul li {
        list-style: none;
    }

/*--------------------------------------------------------
    1.0 Nav
--------------------------------------------------------*/
.bg-dark {
    background: rgba(18,40,76,1);
    background: linear-gradient(140deg, rgba(18,40,76,1) 0%, rgba(0,94,133,1) 75%);

    /*background: rgb(11,15,18);
    background: linear-gradient(90deg, rgba(11,15,18,1) 0%, rgba(66,31,60,1) 75%);*/
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255, 1);
}
/* .navbar-expand-lg .navbar-nav .nav-link img {
    height: 14px;
} */
.navbar-dark .navbar-brand img {
    height: 25px;
    margin-top: -2px;
    margin-bottom: -2px;
}

.top_bar {
    background-color: #484A4E;
    color: #ffffff;
    font-size: 1rem;
    padding: .5rem 0;
}

    .top_bar .card-title {
        margin-bottom: .25rem;
        margin-top: .45rem;
    }

    .top_bar button .fa-circle {
        color: #3094b4;
    }

button .fa {
    margin-right: 3px;
}
.db-link:hover {
    text-decoration:none !important;
}
.db-header-content .db-link a:hover {
    text-decoration: none !important;
}
.navbar .nav-item .user-profile {
    height: 32px;
    width: 32px;
    border-radius: 16px;
    background-color: #fafafa;
    color: #421F3C !important;
    text-transform: uppercase;
    text-align: center;
    padding-left: 0px;
    padding-right: 0;
    font-weight: 600 !important;
    transition: all .5s;
    margin-left: 7px;
}

    .navbar .nav-item .user-profile:hover {
        background-color: #fafafac2;
        color: #421F3C;
    }

    .navbar .nav-item .user-profile span {
        font-weight: 600;
    }
/*--------------------------------------------------------
    2.0 content
--------------------------------------------------------*/
.main {
    margin: 0;
    padding: 0;
    width: 100%;
    height: calc(100vh - 90px);
    display: flex;
    flex-direction: row;
    position: relative;
}

.sidebar {
    width: 270px;
    height: 100%;
    background: #fafafa;
    flex: 0 0 auto;
    padding: 0;
    border-right: 1px solid #cccccc;
    position: relative;
    overflow: hidden;
}


    .sidebar ul li {
        list-style: none;
        transition: all 1s;
    }

        .sidebar ul li.sidebar-link {
            padding: 8px 15px;
        }

        .sidebar ul li:first-child {
            padding: 15px 15px 8px;
        }

        .sidebar ul li.sidebar-link a {
            color: #393939;
            cursor: pointer;
        }

            .sidebar ul li.sidebar-link a:hover {
                text-decoration: none;
                color: #000;
                font-weight: 500;
            }

        .sidebar ul li:hover,
        .sidebar ul li.active {
            background: #3094b4;
        }

        .sidebar ul li.active {
            border-left: 3px solid #12284C;
            background: #3094b4;
        }

    .sidebar .sidebar-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        font-size: 10px;
        text-align: center;
    }
    /* -------------- sidebar dropdown Menu ---------------*/

    .sidebar ul li.sidebar-dropdown-menu a.nav-arrow {
        position: relative;
        display: inline-block;
        width: 100%;
    }

        .sidebar ul li.sidebar-dropdown-menu a.nav-arrow::after {
            font-family: FontAwesome;
            content: "\f105";
            position: absolute;
            right: -5px;
            top: -3px;
            font-size: 18px;
            color: #6B1E57;
        }

    .sidebar .sidebar-submenu {
        position: absolute;
        background: #ffffff;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        z-index: 1;
        transition: all .3s ease 0s;
    }

    .sidebar .sidebar-submenu-open {
        left: 0;
    }

    .sidebar .sidebar-submenu .sidebar-submenu-ctrl {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

        .sidebar .sidebar-submenu .sidebar-submenu-ctrl a {
            padding: 15px;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

            .sidebar .sidebar-submenu .sidebar-submenu-ctrl a i {
                font-size: 18px;
                color: #6B1E57;
            }


.db-content {
    flex: 1 1 auto;
    padding: 30px 21px 21px;
    max-height: 100%;
    overflow-y: scroll;
}

    .db-content .db-header {
        margin-bottom: 30px;
    }

    .db-content .db-header-content {
        border-top: 2px solid #d7d7d7;
        display: flex;
    }

        .db-content .db-header-content .db-header-content-ls {
            flex: 1;
            margin-right: 3px;
        }

        .db-content .db-header-content .db-header-content-lr {
            flex: 0 0 auto;
            width: 350px;
        }

.db-content-lp {
    width: 90%;
}

.db-content .db-header-content ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}

    .db-content .db-header-content ul li {
        flex: 0 0 auto;
    }

.db-content .db-header-content .db-link {
    padding: 8px 15px;
    align-items: center;
    display: flex;
}

    .db-content .db-header-content .db-link a {
        display: flex;
    }

        .db-content .db-header-content .db-link a,
        .db-content .db-header-content .db-link a:hover {
            color: #343a40;
            text-decoration: none !important;
        }

            .db-content .db-header-content .db-header-content-ls ul {
                justify-content: flex-start;
            }

.db-content .db-header-content .input-group > .form-control {
    border-bottom: 1px solid #ced4da;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.db-content .db-header-content .input-group > .input-group-append > .input-group-text {
    background-color: #ffffff;
    border-bottom: 1px solid #ced4da;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.db-content .db-header-content .la, .db-content .db-header-content .las {
    font-size: 18px;
    margin-right: 1px;
}

.data-table-wrap {
    margin-top: 15px;
}




/* new css  ---------*/

.home-product-list .list-items .list-item-img {
    width: 100%;
    overflow: hidden;
}

.home-product-list img {
    width: 100%;
    transition: all .5s ease-in-out;
}

.home-product-list .list-items:hover img {
    transform: scale(1.1) rotate(5deg);
}

.home-product-list .list-items {
    border: 1px solid #CACACA;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 30px;
}

    .home-product-list .list-items .list-items-title {
        padding: 15px 7px;
        text-align: center;
        font-size: 21px;
        font-weight: 500;
    }

@media (max-width: 575.98px) {
    .home-product-list .list-items .list-items-title {
        font-size: 16px;
    }
}

/* new css  ---------*/

.data--wrap {
    margin-top: 15px;
    /* height: calc(100vh - 195px);
    overflow-y: scroll;
    overflow-x: hidden; */
}

.home-product-list .list-items .list-item-img {
    width: 100%;
    overflow: hidden;
}

.home-product-list img {
    width: 100%;
    transition: all .5s ease-in-out;
}

.home-product-list .list-items:hover img {
    transform: scale(1.1) rotate(5deg);
}

.home-product-list .list-items {
    border: 1px solid #CACACA;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 30px;
}

    .home-product-list .list-items .list-items-title {
        padding: 15px 7px;
        text-align: center;
        font-size: 21px;
        font-weight: 500;
    }

@media (max-width: 575.98px) {
    .home-product-list .list-items .list-items-title {
        font-size: 16px;
    }
}

.db-content-lp .card {
    border: 0;
}

.db-content-lp .card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(0,0,0,.125);
}

    .db-content-lp .card-header .btn-link {
        color: #393939;
      
    }

        .db-content-lp .card-header .btn-link:hover {
            text-decoration: none;
            font-weight:700;
            color: #000000;
        }

.card-header {
    cursor: pointer;
    /*box-shadow: inset 0 0 0 0 #3094b4;*/
    /*-webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
    transition: ease-out 0.2s;
    transition: transform .8s;*/
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-header:hover {       
        background: #f6f4f5;
        box-shadow: 0 0 4px 0 rgba(33,33,33,0.2);
        transform: scale(1.05) translate(20px, 0);
    }

.qa-data-frm .select2-container {
    width: 100% !important;
}

.btn-link.focus, .btn-link:focus {
    text-decoration: none !important;
}
._pagenation {
    width: 100%;
    display: flex;
    flex-direction:row;
    justify-content: flex-end;
}
._pagenation ul {
    margin-top: 1rem;
}


._pagenation ul li a {
    font-size: 16px; 
    font-weight: 500;
    padding: 5px 12px;
    color: #212529;
}
._pagenation ul li a:focus,
._pagenation ul li a:hover {
    text-decoration: none;
}
    ._pagenation ul li .current {
        height: 21px;
        width: 21px;
        color: #ffffff;
        background: rgba(18,40,76,1);
        background: linear-gradient(140deg, rgba(18,40,76,1) 0%, rgba(0,94,133,1) 75%);
    }
/* new css end  ---------*/
/* new-2 css start  ---------*/
.db-qn-group {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    margin-bottom: .5rem;
}

    .db-qn-group .qn-lt {
        width: 100%;
        background-color: #eaeaea;
        padding: 6px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
 .db-qn-group .qn-lt .qn-item-lt {
     flex: 0 0 auto;
     width: 210px
 }
 .db-qn-group .qn-lt .qn-item-rt {
     flex: 1 1 auto;
 }

.db-qn-group .qn-subm {
    width: 100%;
    padding: 10px;
    display: none;
}

    .db-qn-group.qn-subm-show .qn-subm {
        display: block !important;
    }

.HQgroup .form-group {
    margin-bottom: 0 !important;
}
/* new-2 css end  ---------*/
/* new - 3 css */
.tag-chk {
    display: block !important;
}

.tag-chk-disabled {
    display: none;
}

.qa-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
}

.qa-number {
    background: #D8B7D2;
    height: 30px;
    width: 30px;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin-right: 7px;
    margin-top: 5px;
}

.qa-data-frm {
    flex: 1 1 auto;
}
/*-----*/
/*--------------------------------------------------------
    2.1 Footer
--------------------------------------------------------*/
.footer {
    margin-top: 30px;
    margin-bottom: 15px;
}

/*--------------------------------------------------------
    2.2 Form
--------------------------------------------------------*/

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--theme_color);
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255, 0);
}

.form-control::placeholder {
    color: #CACACA;
}

/*.required-lable {
    position:relative;
}*/
.required-lable::after {
    /*position: absolute;*/
    right: 15px;
    top:5px;
    content:'*';
    color: #ee0000;
}

/*--------------------------------------------------------
    2.2.1 Select2
--------------------------------------------------------*/
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057;
    line-height: 1.5;
    font-size: 1rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: .375rem .75rem;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--form_border_color) !important;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 31.2667px !important ;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 31.2667px !important;
    position: absolute;
    top: 0px;
    right: 1px;
    width: 20px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--form_border_color) !important;
    border-radius: 16px;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px 8px;
}

.select2-dropdown {
    border: 1px solid var(--form_border_color) !important;
    border-radius: .25rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--theme_color) !important;
}
.select2-container {
    width: 100% !important;
}

textarea:focus, input:focus {
    outline: none;
}


    /*--------------------------------------------------------
    2.3 Button
--------------------------------------------------------*/
    .btn-success.focus, .btn-success:focus {
    box-shadow: 0 0 0 .2rem rgba(40,167,69, 0);
}

.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.0);
}

.btn-danger.focus, .btn-danger:focus {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.0);
}

.btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.0);
}

.btn-primary {
    /*background: rgb(18,40,76,1);*/
    background: rgba(18,40,76,1);
    background: linear-gradient(140deg, rgba(18,40,76,1) 0%, rgba(0,94,133,1) 75%);
    /*background: linear-gradient(90deg, rgba(11,15,18,1) 0%, rgba(66,31,60,1) 75%);*/
    border-color: transparent;
}

    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        background-color: var(--theme_color);
        border-color: var(--theme_color);
    }

        .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(0,123,255,.0);
        }

    .btn-primary.focus, .btn-primary:focus {
        box-shadow: 0 0 0 .2rem rgba(0,123,255,.0);
    }

    .btn-primary:hover {
        background-color: var(--theme_color);
        border-color: var(--theme_color);
    }

.btn-light.focus, .btn-light:focus {
    box-shadow: 0 0 0 .2rem rgba(248,249,250,.0);
}

.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(248,249,250,.0);
}

.btn-secondary.focus, .btn-secondary:focus {
    box-shadow: 0 0 0 .2rem rgba(108,117,125,.0);
}

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(108,117,125,.0);
}

/*--------------------------------------------------------
    2.4 Data Table
--------------------------------------------------------*/
.table th {
    font-weight: 600;
}

.table td, .table th {
    border-top: 0;
    border-bottom: 1px solid #dee2e6 !important;
}

table.dataTable td i {
    font-size: 16px;
    margin: 0 3px;
}

table.dataTable td .edit {
    color: var(--theme_color);
}

table.dataTable td .delete {
    color: #E93838;
}

.page-item.active .page-link {
    background: rgba(18,40,76,1);
    background: linear-gradient(140deg, rgba(18,40,76,1) 0%, rgba(0,94,133,1) 75%);
    /*background: rgb(11,15,18);
    background: linear-gradient(90deg, rgba(11,15,18,1) 0%, rgba(66,31,60,1) 75%);*/
    border-color: transparent;
}

.page-link {
    color: var(--theme_color);
    background-color: transparent;
    border: 1px solid transparent;
}

    .page-link:hover {
        color: var(--theme_color-dark);
    }

    .page-link:focus {
        z-index: 2;
        outline: 0;
        box-shadow: 0 0 0 .0rem rgba(0,123,255,.0);
    }

.page-item.disabled .page-link {
    background-color: transparent;
    border: 1px solid transparent;
}

.dataTables_filter {
    margin-top: -25px;
}

td .form-check-input,
th .form-check-input {
    position: relative;
    margin-top: 0;
    margin-left: 7px;
}

.table th .form-check-input, .table td .form-check-input {
    display: none;
}

.table tr:hover .container, .table tr:hover .form-check-input {
    display: block;
}

.table .db-check-box {
    width: 20px;
}
table.dataTable td .fa-edit {
    color: var(--theme_color);
    cursor:pointer;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--theme_color) !important;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--theme_color) !important;
}

.a_TopicName:hover{
    font-weight:600;
}
table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
    display: none !important;
}
table.dataTable thead .sorting_asc:before, .sorting_desc:before, table.dataTable thead .sorting_desc:after {
    display: none !important;
    opacity: 0 !important;
}
table.dataTable td .la-trash-alt {
    cursor: pointer;
}
/*--------------------------------------------------------
    2.6 Date picker
--------------------------------------------------------*/

.gj-datepicker-bootstrap [role="right-icon"] button .gj-icon, .gj-datepicker-bootstrap [role="right-icon"] button .material-icons {
    position: absolute;
    font-size: 21px;
    top: 6px;
    left: 9px;
}

.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
    background-color: var(--theme_color);
    border-color: var(--theme_color);
    border-radius: 4px;
}
/*--------------------------------------------------------
    2.7 Modal
--------------------------------------------------------*/
.modal-header {
    /*background: rgb(11,15,18);
    background: linear-gradient(90deg, rgba(11,15,18,1) 0%, rgba(66,31,60,1) 75%);*/
    background: rgba(18,40,76,1);
    background: linear-gradient(140deg, rgba(18,40,76,1) 0%, rgba(0,94,133,1) 75%);
    color: #ffffff;
}

.modal-header {
    border-top-left-radius: .2rem;
    border-top-right-radius: .2rem;
}

    .modal-header .close * {
        font-size: 1.5rem !important;
        font-weight: 500;
        line-height: 1;
        color: #ffffff;
        text-shadow: 0 1px 0 #000;
    }

/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
}

/*// Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
}

/*// Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
}

#img-shadow-1 {
    -webkit-box-shadow: 0 28px 16px -26px black;
    -moz-box-shadow: 0 28px 16px -26px black;
    box-shadow: 0 28px 16px -26px black;
}

    #img-shadow-1:hover {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        -webkit-box-shadow: 0 58px 36px -56px black;
        -moz-box-shadow: 0 58px 36px -56px black;
        box-shadow: 0 58px 36px -56px black;
    }

#img-shadow-1 {
    transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
}

    #img-shadow-1:hover {
        transition: all .6s ease-in-out;
        -webkit-transition: all .6s ease-in-out;
        -moz-transition: all .6s ease-in-out;
        -ms-transition: all .6s ease-in-out;
        -o-transition: all .6s ease-in-out;
    }


