


@media (min-width: 768px) {
    .app-content1 {
        margin-left: 70px;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .app-content1 {
        min-width: 100%;
    }
}

@media print {
    .app-content1 {
        margin: 0;
        padding: 0;
        background-color: #fff;
    }
}

.app-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 9999 !important;
    border-bottom: 1px solid #e9edf4;
    background: #0192ff;
    transition: padding-left 0.3s ease;
}

@media (min-width: 992px) {
    .app-header {
        padding-right: 10px;
        padding-left: 285px;
        z-index: 9 !important;
    }
}

@media print {
    .app-header {
        display: none;
    }
}

.app-header__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    color: #fff;
    text-align: center;
    font-family: "Niconne";
    padding: 0 15px;
    font-size: 26px;
    font-weight: 400;
    line-height: 50px;
}

.app-header__logo:focus,
.app-header__logo:hover {
    text-decoration: none;
}

@media (min-width: 991px) {
    .app-header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: block;
        width: 230px;
    }
}

.app-sidebar__toggle {
    color: #fff !important;
    z-index: 1;
    transition: padding-left 0.3s ease;
    padding: 0 9px;
    text-align: center;
    font-size: 1.5rem;
    position: relative;
    right: 7px;
}



.app-sidebar__toggle:focus,
.app-sidebar__toggle:hover {
    text-decoration: none;
    color: #fff;
}


@media (max-width: 991px) {
    .app-sidebar__toggle {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}

.app-sidebar {
    position: fixed;
    top: 40px;
    bottom: 0;
    padding-left: 10px;
    left: 0;
    color: #282f53;
    z-index: 99;
    background: #2c303b;
    -webkit-box-shadow: 0 8px 24px rgba(168, 180, 208, 0.1);
    box-shadow: 0 8px 24px rgba(168, 180, 208, 0.1);
    -webkit-transition: left 450ms ease, width 450ms ease;
    transition: left 450ms ease, width 450ms ease;
    -o-transition: left 450ms ease, width 450ms ease;
    border-right: 1px solid #e9edf4;
}

.app-sidebar::-webkit-scrollbar {
    width: 6px;
}

.app-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

@media print {
    .app-sidebar {
        display: none;
    }
}

@media (max-width: 991px) {
    .app-sidebar__overlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 9;
    }
}

.app-sidebar__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #a8a8a8;
    width: 100%;
    padding: 15px 0 15px;
    display: inline-block;
}

.app-sidebar__user .dropdown-menu {
    top: 10px !important;
}

.app-sidebar__user img {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 5px 5px 0px rgba(44, 44, 44, 0.2);
}

.app-sidebar__user-avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 15px;
}

.app-sidebar__user-name {
    font-size: 17px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 600;
    color: #e5e9ec;
    font-size: 15px;
    margin-top: 5px !important;
}

.app-sidebar__user-name.text-sm {
    font-size: 12px;
    font-weight: 400;
}

.app-sidebar__user-designation {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 600;
    color: #e5e9ec;
    font-size: 15px;
    margin-top: 5px !important;
}

.side-menu {
    margin-bottom: 0;
    padding: 0 10px 0 10px;
}

.side-menu__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    -webkit-transition: border-left-color 0.3s ease, background-color 0.3s ease;
    -o-transition: border-left-color 0.3s ease, background-color 0.3s ease;
    transition: border-left-color 0.3s ease, background-color 0.3s ease;
    color: #ffffff;
    margin: 2px 0px;
    white-space: nowrap;
}

.side-menu__item.active {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.side-menu__item.active:hover,
.side-menu__item.active:focus {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.side-menu__item:hover,
.side-menu__item:focus {
    text-decoration: none;
    color: var(--primary-bg-color);
}

.side-menu__item:hover .side-menu__icon,
.side-menu__item:hover .side-menu__label,
.side-menu__item:focus .side-menu__icon,
.side-menu__item:focus .side-menu__label {
    color: var(--primary-bg-color);
}

@media (min-width: 992px) {
    .app.sidebar-mini.sidenav-toggled .side-menu__label {
        display: none !important;
    }
}

.slide-item.active,
.slide-item:hover,
.slide-item:focus {
    text-decoration: none;
    color: #b5c1d2;
}

.slide-menu a.active {
    color: var(--primary-bg-color);
}

.slide-item.active,
.slide-item:hover,
.slide-item:focus {
    text-decoration: none;
    color: var(--primary-bg-color) !important;
}

.slide-menu li {
    position: relative;
}

.slide-menu li .slide-item:before {
    content: "\e048";
    font-family: "typicons";
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    top: 0px;
    font-size: 10px;
    margin-right: 7px;
    color: #68798b;
}

.slide.is-expanded a {
    text-decoration: none;
}

.side-menu .side-menu__icon {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
}

.side-menu__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.side-menu__label {
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-top: 3px;
}

.slide.is-expanded .slide-menu {
    display: block;
}

.slide.is-expanded .angle {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.slide-menu {
    display: none;
    font-size: 0.7rem !important;
    padding-left: 30px;
}

.slide-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 8px;
    font-size: 13.3px;
    color: #74829c;
    white-space: nowrap;
}

.slide-item .icon {
    margin-right: 5px;
}

.angle {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-right: 2px;
    font-size: 11px;
}

@media (min-width: 992px) {

    .sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .sidebar-mini.sidenav-toggled .app-sidebar__user-designation,
    .sidebar-mini.sidenav-toggled .angle,
    .sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .sidebar-mini.sidenav-toggled .user-notification,
    .sidebar-mini.sidenav-toggled .app-sidebar__user-name,
    .sidebar-mini.sidenav-toggled .user-info {
        display: none;
    }

    .sidebar-mini.sidenav-toggled .app-header.header {
        padding-left: 100px;
    }

    .sidebar-mini.sidenav-toggled .side-menu {
        padding: 0 0px 40px 0px;
    }

    .sidebar-mini.sidenav-toggled .side-menu .sub-category {
        display: none;
    }

    .sidebar-mini.sidenav-toggled .side-menu .side-menu__icon {
        background: none !important;
        box-shadow: none;
        margin-right: 0;
    }

    .sidebar-mini.sidenav-toggled .side-badge,
    .sidebar-mini.sidenav-toggled .slide-menu open.slide-menu hide .side-badge {
        top: 1px;
        right: 21px;
    }

    .sidebar-mini.sidenav-toggled .sidebar-mini.sidenav-toggled.user-notification::before {
        background: transparent;
        display: none;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar__user,
    .sidebar-mini.sidenav-toggled .side-menu {
        margin-top: 20px;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar__user-avatar {
        width: 25px;
        height: 25px;
    }

    .sidebar-mini.sidenav-toggled .side-menu li .side-menu__item.active:before {
        display: none;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar__user {
        padding: 12px 0px 12px 0;
        margin-bottom: 0px;
        border-bottom: 1px solid rgba(225, 225, 225, 0.05);
    }

    .sidebar-mini.sidenav-toggled .profile-img {
        top: 0px;
        right: 19px;
    }

    .sidebar-mini.sidenav-toggled .app-content1 {
        margin-left: 80px;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar {
        left: 0;
        width: 80px;
        overflow: hidden;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar:hover {
        overflow: visible;
    }

    .sidebar-mini.sidenav-toggled .slide-menu {
        position: absolute;
        opacity: 0;
        z-index: 9;
        visibility: hidden;
        -webkit-transition: visibility 0.3s ease;
        -o-transition: visibility 0.3s ease;
        transition: visibility 0.3s ease;
    }

    .app.sidebar-mini.sidenav-toggled .side-menu__item {
        padding: 10px 30px;
    }

    .sidebar-mini.sidenav-toggled .app-sidebar__user .avatar-md {
        margin: 0 auto;
    }

    .app.sidebar-mini.sidenav-toggled .nav-badge {
        position: absolute;
        top: 8px;
        right: 28px;
        padding: 0.2rem 0.4rem;
        font-size: 11px;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar {
        width: 270px;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-header {
        width: 270px !important;
        display: flex !important;
        padding: 17px 17px !important;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .light-logo,
    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .light-logo1,
    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .mobile-light {
        display: none !important;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-header .header-brand-img.light-logo1 {
        display: block !important;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 20px;
        position: relative;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu .sub-category {
        display: block;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__icon {
        font-size: 18px;
        line-height: 30px;
        text-align: center;
        vertical-align: middle;
        margin-right: 8px !important;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu__label {
        display: block !important;
        white-space: nowrap;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        margin-top: 3px;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .slide.is-expanded .slide-menu {
        display: block !important;
        position: unset;
        top: inherit;
        min-width: 0;
        width: 100%;
        opacity: inherit;
        visibility: inherit;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-menu {
        margin-top: 20px !important;
        padding: 0 10px 0 10px !important;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .angle {
        display: block;
    }

    .sidebar-mini.sidenav-toggled.sidenav-toggled-open .side-badge {
        top: 17px;
        right: 20px;
    }
}

@media print {
    .app-title {
        display: none;
    }
}

@media (max-width: 480px) {
    .app-title {
        margin: -15px -15px 15px;
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .app-title p {
        display: none;
    }
}

.app-breadcrumb {
    margin-bottom: 0;
    text-align: right;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    padding: 0;
    text-align: left;
    padding: 0;
    background-color: transparent;
}

@media (max-width: 480px) {
    .app-breadcrumb {
        margin-top: 10px;
    }
}

.sidenav-toggled .app-sidebar__user .avatar-md {
    line-height: 2rem;
    font-size: 1rem;
}

.sidenav-toggled .main-wrapper .side-menu .side-menu__item .nav-badge {
    position: absolute;
    top: 5px;
    left: 57px;
    display: block !important;
    padding: 3px 5px !important;
}

.sidenav-toggled .main-wrapper .side-menu .side-menu__item .nav-badge1 {
    display: none;
}

.nav-badge {
    border-radius: 30px;
    padding: 0.4em 0.6em;
    font-size: 12px;
}

.user-info .text-dark {
    color: #25252a !important;
    font-weight: 400;
    font-size: 16px;
}

.user-info .text-muted {
    color: #74829c !important;
}

.side-header .header-brand1 {
    text-align: center;
    margin: 0 auto !important;
}

.side-header .header-brand-img.desktop-logo {
    display: none;
}

.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.desktop-logo {
    display: none;
}

.side-header .header-brand-img.toggle-logo {
    display: none;
}

.side-header .header-brand-img.light-logo1 {
    display: block !important;
}

.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.toggle-logo {
    display: none;
    margin-right: 0;
}

.sidebar-mini.sidenav-toggled .sidebar-navs {
    display: none;
}

.side-header {
    display: flex;
    border-bottom: 1px solid #e9edf4;
    border-right: 1px solid #e9edf4;
    padding: 19px 17px;
    align-items: center;
    -webkit-transition: left 0.3s ease, width 450ms ease;
    -o-transition: left 0.3s ease, width 450ms ease;
    transition: left 0.3s ease, width 450ms ease;
    height: 75px;
}

.side-header .header-brand-img.toggle-logo,
.side-header .header-brand-img.light-logo {
    height: 2.5rem;
}

.sidebar-mini.sidenav-toggled .app-sidebar__toggle {
    padding-left: 10px;
}

.user-pic {
    margin-bottom: 0.8rem;
}

.side-menu .sub-category {
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding: 12px 30px 2px 20px;
    margin-bottom: 0;
    white-space: nowrap;
    position: relative;
}

.side-menu .sub-category:not(:first-child) {
    margin-top: 0.75rem;
}

.side-menu .sub-category h3 {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
    font-weight: 500;
}

.side-menu li:not(:first-child) h3 {
    margin-top: 0rem;
}

@media (min-width: 991px) {
    .sidenav-toggled .header-brand-img.light-logo {
        display: block !important;
        margin-right: 0;
    }
}

.header-brand-img.light-logo{
    display: none;
}

.side-badge,
.slide-menu open.slide-menu hide .side-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    border-radius: 50px;
    padding: 3px 6px 3px;
}

/*-- Subslide ---*/
.sub-side-menu__item {
    padding: 8px 8px;
    font-size: 13px;
    display: flex;
    color: #74829c;
}

.sub-side-menu__item .sub-side-menu__label {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.slide-menu a:before {
    content: "\e048";
    margin-right: 10px;
    font-size: 11px;
    position: relative;
    font-family: typicons !important;
    opacity: 0.6;
    top: 2px;
}

.sub-slide.is-expanded .sub-angle {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sub-angle {
    float: right;
    line-height: 40px;
    margin-top: 5px;
    margin-right: 14px;
    font-size: 12px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sub-slide.is-expanded .sub-slide-menu {
    display: block;
}

.sub-slide-menu {
    display: none;
    padding: 0 15px 15px 0;
    font-size: 13px !important;
    list-style: none;
}

.sub-slide-item {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 8px 0 8px 24px !important;
    color: #74829c;
    font-size: 13.5px;
}

/*-- Subslide2 ---*/
.sub-side-menu__item2 {
    padding: 8px 2px 8px 24px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #74829c;
    font-size: 12.5px;
}

.sub-slide2 .sub-side-menu__label2 {
    flex: 1 1 auto;
}

.sub-angle2 {
    float: right;
    line-height: 40px;
    margin-top: -2px;
    margin-right: 3px;
    font-size: 12px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sub-slide2.is-expanded .sub-angle2 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sub-slide2.is-expanded .sub-slide-menu2 {
    display: block;
}

.sub-slide-menu2 {
    display: none;
    padding: 0;
    font-size: 0.8rem !important;
    padding-left: 0;
    list-style: none;
}

.sub-slide-item2 {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 8px 0 8px 40px !important;
    font-size: 12.5px;
    color: #74829c;
}

@media (max-width: 991px) {
    .header-brand1 .desktop-logo {
        margin: 0 auto;
        margin-top: 6px;
    }
}

.app.sidebar-mini.sidenav-toggled .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: none !important;
}

.app.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar .side-header .header-brand-img.light-logo1 {
    display: block !important;
}

.side-menu-label1 {
    display: none;
}

.app.sidebar-mini .hor-angle {
    display: none !important;
}

.sidebar-mini .app-sidebar {
    width: 270px;
}

@media (max-width: 991px) {
    .sidebar-mini .app-header .light-logo1 {
        display: block !important;
    }
}

@media screen and (max-width: 991.9px) {
    .side-menu {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 991px) {
    .app-sidebar__toggle {
        padding-left: 15px !important;
    }
}

@media (min-width: 992px) {

    .horizontal-hover .side-menu__item:not(.has-link),
    .horizontal-hover .sub-side-menu__item:not(.has-link),
    .horizontal-hover .sub-side-menu__item2:not(.has-link) {
        pointer-events: none;
        cursor: pointer;
    }
}

























/* Custom Changes */

/* index page */


.pro-icon{
    padding: 4px 3px 4px 7px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 5px;

}

.country a{
    cursor: pointer;
}

/* .form-control {
    width: 100%;
    padding: 0.4rem 1.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 0;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0.25rem;
} */


.side-menu__item{
     text-decoration: none;
}
.side-menu__item:hover{
       color: #0090f9;
}

.heading-text{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 11px;
    color: #636363;
}

table#customers {
    overflow: hidden;
    /*height: 280px;*/
    width: 100%;
    text-align: center;
}
.table-fixed table#customers {
    table-layout: fixed !important;

}
table#customers tr{
    border-bottom: 1px solid #e8e8e8;
    height: 60px;
    position: relative;

}

table#customers tr td{

    font-size: 14px;
    font-weight: 500;
}

table#customers tr td span{
    font-size: 10px;
}

table#customers tr td i{
    color: #0090f9;
    font-weight: bold;
}


table#customers tr th{
     font-size: 1rem;
}

table#customers tr td:first-child , table#customers tr th:first-child {
    text-align: left ; padding-left: 20px;
}

.tbl-btn a{
    color: #0090f9;
    font-weight: 600;
    padding: 5px 10px;
    border: 2px solid #0090f9;
    border-radius: 20px;
    text-decoration: none;
}
.tbl-btn a:hover{
     color: #fff;
     background-color: #0090f9;
}

.card.card1:hover{
-webkit-transform: translateY(calc(-1.5rem / 5));
    transform: translateY(calc(-1.5rem / 5));
    -webkit-box-shadow: 0 5px 10px rgb(30 32 37 / 12%);
    box-shadow: 0 5px 10px rgb(30 32 37 / 12%);
}
.card.card1{
-webkit-transition: all .4s;
    transition: all .4s;
}

.scrolldata{
    height: 250px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.scrolldata::-webkit-scrollbar {
    display:none;
  }

/*------ Card -------*/
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow:  2px 1px 4px 1px rgb(0 0 0 / 11%);
-moz-box-shadow:  2px 1px 4px 1px rgb(0 0 0 / 11%);
box-shadow: 2px 1px 4px 1px rgb(0 0 0 / 11%);
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    border: inherit !important;
    background-clip: border-box;
    border-radius: 20px;

}

.card-text{
     display: inline-block;
}

.card-icon{
    display: inline-block;
    float: right;
    padding-top: 24px;
    text-align: right;
}

.card-icon img{
    width: 50%;
}

.card.card1 {
    border-radius: 0;
    padding: 8px 16px 10px 21px;
    height: 95px;
}
.card>hr {
    margin-right: 0;
    margin-left: 0;
}

.card>.list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.card>.list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 10px;
    margin: 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.card-subtitle {
    margin-top: -0.75rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link+.card-link {
    margin-left: 1.5rem;
}

.card-header:first-child {
    border-radius: 2px 2px 0 0;
}

.card-header+.list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 1.5rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid #e9edf4;
    color: #6e7687;
}

.card-img {
    width: 100%;
    border-radius: 2px;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group>.card {
    margin-bottom: 0.75rem;
}

.card-columns .card {
    margin-bottom: 1.5rem;
}

/*------ Default Card Values -------*/
.card-header {
    background: none;
    padding: 1.2rem 1.5rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 1px solid #e9edf4;
    letter-spacing: 0.2px;
}

.card-header .card-title {
    margin-bottom: 0;
}

.card-header.border-0+.card-body {
    padding-top: 0;
}

.card-title {
    font-size: 1.075rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.card-table {
    margin-bottom: 0;
}

.card-table tr:first-child td,
.card-table tr:first-child th {
    border-top: 0;
}

.card-table tr td:first-child,
.card-table tr th:first-child {
    padding-left: 1.5rem !important;
}

.card-table tr td:last-child,
.card-table tr th:last-child {
    padding-right: 1.5rem;
}

.card-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0;
}

.card .box .img img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
}

.card .box h2 {
    font-size: 20px;
    color: #262626;
    margin: 20px auto;
}

.card .box h2 span {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
}

.card .box p {
    color: #262626;
}


/*------ Default Card Values -------*/
.card {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
}

.card .card {
    border: 1px solid #e9edf4;
}

@media print {
    .card {
        box-shadow: none;
        border: none;
    }
}

.card-body+.card-body {
    border-top: 1px solid #e9edf4;
}

.card-body> :last-child {
    margin-bottom: 0;
}

@media print {
    .card-body {
        padding: 0;
    }
}

.card-body-scrollable {
    overflow: auto;
}

.card-footer,
.card-bottom {
    padding: 1rem 1.5rem;
    background: none;
}

@media print {
    .card-header {
        display: none;
    }
}

.card-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.reg {
    text-align: center;
    font-size: 50px;
    color: #2e1170;
    float: right;
}

.card-title a {
    color: inherit;
}

.card-title:only-child {
    margin-bottom: 0;
}

.card-title small {
    color: #9aa0ac;
    font-size: 0.875rem;
    display: block;
    margin: -0.75rem 0 1rem;
    line-height: 1.1;
    font-weight: 400;
}

.card-subtitle {
    color: #9aa0ac;
    font-size: 0.875rem;
    display: block;
    margin: -0.75rem 0 1rem;
    /* line-height: 1.1; */
    font-weight: 400;
}

.card-body+.card-table {
    border-top: 1px solid #e9edf4;
}

.card-profile .card-header {
    height: 5rem;
    background-size: cover;
    border: 0;
}

.card-link+.card-link {
    margin-left: 1rem;
}

.card-body+.card-list-group {
    border-top: 1px solid #e9edf4;
}

.card-list-group .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.card-list-group .list-group-item:last-child {
    border-bottom: 0;
}

.card-list-group .list-group-item:first-child {
    border-top: 0;
}

.card-header-pills {
    margin: -0.75rem 0;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.card-aside {
    -ms-flex-direction: row;
    flex-direction: row;
}

.card-aside-column {
    min-width: 5rem;
    width: 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    background: no-repeat center/cover;
}

.card-value {
    font-size: 1rem;
    line-height: 3.4rem;
    height: 3.4rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
}

.card-value i {
    vertical-align: middle;
    font-size: 30px;
}

.card-options {
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-order: 100;
    order: 100;
    margin-right: -0.5rem;
    color: #9aa0ac;
    -ms-flex-item-align: center;
    align-self: center;
}

.card-options a:not(.btn) {
    margin-left: 0.5rem;
    color: #76839a;
    display: inline-block;
    min-width: 1rem;
}

.card-options a:not(.btn):hover {
    text-decoration: none;
    color: #6e7687;
}

.card-options a:not(.btn) i {
    font-size: 1rem;
    vertical-align: middle;
}

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

.card-img-absolute {
    position: absolute;
    overflow: hidden;
    top: 0;
    height: 100%;
    width: 100%;
    margin-left: -28px;
}

.card-image {
    position: absolute;
    top: 0;
    height: 100%;
    margin-left: -126px;
}




/* Availability page css */



.accordion{
    padding: 0 21px;
}

.accordion a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;

  }
  .accordion-item{
    border: none;
    -webkit-box-shadow: 2px 1px 4px 1px rgb(0 0 0 / 11%);
    -moz-box-shadow: 2px 1px 4px 1px rgb(0 0 0 / 11%);
    box-shadow: 2px 1px 4px 1px rgb(0 0 0 / 11%);
    margin-bottom: 15px;

  }

  .accordion a:hover,
  .accordion a:hover::after {
    cursor: pointer;
    color: #0192ff;
  }



  .accordion a.active {
    color: #0192ff;

}

  .accordion a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f141';
    position: absolute;
    float: right;
    right: 1rem;
    font-size: 1rem;
    color: #181818;
    padding: 3px;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    text-align: center;
  }
    .accordion a.active::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f141';
    color: #181818;

  }

  .accordion .content {
    display: none;
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
  }

  .accordion .content p {
    font-size: 1rem;
    font-weight: 300;
  }

  .available-start-time {
    margin-top: 15px;
    margin-right: 40px;
    display: inline-block;
}


article{

    display: none;
  }
  article.on{
    display: block;
    margin: 20px 0;
  }



 button.btn-blue-border  {
     background-color: transparent;
     color: #0192ff;
     border-color: #0192ff;
     border-radius: 6px;
     margin-left: 20px;
     font-size: 14px;
     padding: 2px 16px;
 }

button.btn-blue {
    background-color: #0192ff;
    color: #fff;
    border-color: #0192ff;
    border-radius: 6px;
    margin-left: 20px;
    font-size: 17px;
    padding: 2px 27px;
}

button.btn-red {
    background-color: #ed1c24;
    color: #fff;
    border-color: #ed1c24;
    border-radius: 6px;
    margin-left: 20px;
    font-size: 17px;
    padding: 2px 27px;
}

.name-id-input input{
    padding: 4px 6px;
    width: 200px;
    margin-left: 20px;
    border-radius: 6px;
    border: 2px solid #b4b4b4;
    color: #676767;
}

.date-input input{
    padding: 4px 6px;
    width: 200px;
    margin-left: 20px;
    border-radius: 6px;
    border: 2px solid #b4b4b4;
    color: #676767;
}


  /* time input */
  .content input[type=time]:focus-visible{
    border: none !important;
  }

  input[type=time] {
    border: none;
    color: #0c0c0c;
    font-size: 14px;
    width: 190px;
  }

  /* Wrapper around the hour, minute, second, and am/pm fields as well as
  the up and down buttons and the 'X' button */
  input[type=time]::-webkit-datetime-edit-fields-wrapper {
    display: flex;
  }

  /* The space between the fields - between hour and minute, the minute and
  second, second and am/pm */
  input[type=time]::-webkit-datetime-edit-text {
    padding: 19px 4px;
  }

  /* The naming convention for the hour, minute, second, and am/pm field is
  `-webkit-datetime-edit-{field}-field` */

  /* Hour */
  input[type=time]::-webkit-datetime-edit-hour-field {
    background-color: #f2f4f5;
    border-radius: 15%;
    padding: 19px 13px;
  }

  /* Minute */
  input[type=time]::-webkit-datetime-edit-minute-field {
    background-color: #f2f4f5;
    border-radius: 15%;
    padding: 19px 13px;
  }

  /* AM/PM */
  input[type=time]::-webkit-datetime-edit-ampm-field {
    background-color: #0192ff;
    border-radius: 15%;
    color: #fff;
    padding: 19px 13px;
  }

  /* 'X' button for resetting/clearing time */
  input[type=time]::-webkit-clear-button {
    display: none;
  }

  /* Up/Down arrows for incrementing/decrementing the value */
  input[type=time]::-webkit-inner-spin-button {
    display: none;
  }






/* Notifications page */


.notifi-list p{
    margin: 0;
}

.notifi-list{
    position: relative;
}

.notifi-list::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f058';
    color: #0192ff;
    position: absolute;
    font-size: 30px;
    left: -40px;
    top: -10px;
    background-size: 10px 20px;


}

.noti-list-tr tr td:first-child{
    text-align: left;
    padding-left: 60px !important;
}



/* Agreements  Page  Css   */
.agreement-table tr td{
    text-align: left;
}

.agreement-table tr td:last-child{
  text-align: right;
  padding-right: 20px;
}



.switch {
  position: relative;
  display: inline-block;
  width: 85px;
  height: 35px;
}
.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ed081c;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  z-index: 2;
  content: "";
  height: 31px;
  width: 32px;
  left: 4px;
  bottom: 2px;
  background-color: #fff;
  -webkit-box-shadow: inset 0px 0px 5px 2px rgb(145 145 145);
  -moz-box-shadow: inset 0px 0px 5px 2px rgba(145,145,145,1);
  box-shadow: inset 0px 0px 5px 2px rgb(142 139 159);
  -webkit-transition: .4s;
  transition: all 0.4s ease-in-out;
}
.slider:after {
  position: absolute;
  left: -3px;
  z-index: 1;
  content: "Accept";
  font-size: 13px;
  text-align: left !important;
  line-height: 34px;
  padding-left: 0;
  width: 119px;
  color: #fff;
  height: 40px;
  border-radius: 100px;
  background-color: #00ae3b;
  -webkit-transform: translateX(-160px);
  -ms-transform: translateX(-160px);
  transform: translateX(-160px);
  transition: all 0.4s ease-in-out;
}

input:checked + .slider:after {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  width: -12px;
  padding-left: 12px;
}

input:checked + .slider:before {
  background-color: #fff;
}

input:checked + .slider:before {
  -webkit-transform: translateX(48px);
  -ms-transform: translateX(48px);
  transform: translateX(48px);

}

/* Rounded sliders */
.slider.round {
  border-radius: 100px;
}

.slider.round:before {
  border-radius: 50%;
}

.absolute-no {
  position: absolute;
  left: 39px;
  color: #fff;
  text-align: right !important;
  font-size: 14px !important;
  line-height: 38px;
}

.agree-accordion{
  text-align: left;
  padding: 0;
}

.agree-accordion .accordion-item{
  margin-bottom: 0;
  box-shadow: none;
}

.agree-accordion  a {
  font-size: 14px;
  padding-left: 0;
  font-weight: 500;
}

.agree-accordion  a::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f107';
  position: absolute;
  float: right;
  right: 2.5rem;
  font-size: 1rem;
  color: #7288a2;
  padding: 3px;
  width: 30px;
  height: 30px;
  border:none;
  text-align: center;
}


.agree-accordion a.active::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  color: #0192ff;
  border:none;
}

.agree-accordion a:hover::after {
  border: none;
}
/* .dismiss-text{
    margin-top: -15px;
} */



/* timesheet */

.accordion a .timesheet-list p{
    padding-bottom: 0px;
   font-size: .9rem;
   display: inline-block;
   padding-right: 40px;
   font-weight: 400;
}

.accordion a .timesheet-list span{
   color: #0090f9 ;
}

.time-list a{
   padding-bottom: 0px !important;
}

.time-list a:hover{
    color: inherit;
}

table#customers tr td .btn_cross i{
font-size: 20px;
   margin: 4px;
color: red !important;
}
table#customers tr td .btn-rignt  i {
     font-size: 20px !important;
       margin: 4px !important;
     color: #005e20 !important;
   }

   table#customers a.btn_cross_a{
   display: contents;

   }
   table#customers a.btn_cross_a::after  ,  .timesheet-list a::after  , .time-list a::after{
       content: none;
       display: inline-block;
   }



       .accordion #list::after {
           font-family: 'Font Awesome 5 Free';
           font-weight: 900;
           content: '\2b';
           position: absolute;
           float: right;
           right: 1rem;
           font-size: 1rem;
           color: #7288a2;
           padding: 3px;
           width: 30px;
           height: 30px;
           -webkit-border-radius: 50%;
           -moz-border-radius: 50%;
           border-radius: 50%;
           border: 1px solid #7288a2;
           text-align: center;
       }


   .time-list{
       position: relative;
   }

   .time-list .active-btn a {
       padding-bottom: 0px !important;
       display: inline-block;
       padding: 1rem 2rem 1rem 0rem;

       width: auto;
   }
   .time-list .active-btn{
   position: absolute;
   right: 57px;
   z-index: 999;}

   .time-list .active-btn .btn-rignt i{
       color: #005e20 !important;
   }

   .time-list .active-btn .btn_cross i ,  .time-list .active-btn .btn-rignt i{
       font-size: 2.2rem;
   }

   .time-list .active-btn .btn_cross i:hover , .time-list .active-btn .btn-rignt i:hover{

       color: #0090f9 !important;
   }


   .table-responsive {
       display: block;
       width: 100%;
       overflow-x: auto !important;
       -webkit-overflow-scrolling: touch;
   }

   .table-responsive #customers tr td{
       padding: 0 7px;
   }

   .table-responsive #customers tr td:first-child, .table-responsive #customers tr th:first-child {
       text-align: left;
       padding: 0 20px;
   }

   .table-responsive #customers tr td:last-child, .table-responsive #customers tr th:last-child{
       width: 8rem;
       padding: 0px;
   }

   @media(max-width:778px){
       .time-list .active-btn{
           top: 50px;
       }
       .btn-position-mob{
           display: block;
       }
       .timesheet-list input{
           width: 100% !important;
       }
   }

   @media(max-width:1300px){

       .btn-position-mob{
           display: block;
       }
   }

   .timesheet-list .btn-blue {
       margin-top: 10px;

   }
   .timesheet-list input {
       padding: 4px 6px;
       width: 198px;
       margin-right: 20px;
       margin-top: 10px;
       margin-left: 0;
       border-radius: 6px;
       border: 2px solid #b4b4b4;
       color: #676767;
   }

   .timesheet-list .btn-blue{
       margin-left: 0;
   }

   a{
     text-decoration: none;
   }