﻿body {
    padding: 0;
    margin: 0;
    width: 100%;
    color: #282A3A;
    background-color: rgba(245, 246, 249, 1);
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a, 
span,
label,
button,
input {
    font-family: 'Roboto', sans-serif;
}

.primary-btn {
    background-color: #6F367D;
    color: #fff;
}

.fw-500 {
    font-weight: 500 !important;
}

.w-33 {
    width: 33% !important;
}

.f-14 {
    font-size: 14px !important;
}


/* login page */

.login-swction {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/login-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-brand-logo {
    width: 75px;
    margin-bottom: 15px;
}

.login-box {
    width: 337px;
    padding: 15px 25px;
    background-color: #fff;
    box-shadow: 0px 3px 15px #0B204642;
}

    .login-box > h2 {
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 25px
    }

.form-item {
    margin-bottom: 15px;
}

    .form-item label {
        font-size: 11px;
        line-height: 15px;
        margin-bottom: 0;
        color: #282A3A;
    }

    .form-item span {
        color: rgba(40, 42, 58, 0.5);
        font-size: 10px;
        line-height: 13px;
        display: block;
    }

    .form-item input,
    .form-item textarea {
        width: 100%;
        background-color: #F6F2F8;
        border: 0;
        outline: 0;
        padding: 10px;
        font-size: 13px;
        height: 40px
    }

    .form-item textarea {
        min-height: 100px;
    }

.mi-login-btn {
    background-color: #6F367D;
    color: #fff;
    margin-top: 5px;
    font-size: 11px;
    height: 40px;
    border: 0;
    line-height: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.form-link {
    display: block;
    text-align: center;
    margin-bottom: 5px;
    color: rgba(40, 42, 58, 0.5);
    font-size: 11px;
    line-height: 15px;
}

@media(max-width:450px) {
    .login-box {
        width: 100%;
    }

    #logout-btm a{
        border-bottom:none;
    }
}

button:focus {
    outline: 0;
    box-shadow: none;
}


/* login page end*/


/* layout */

#close-sidebar button {
    background-color: rgba(245, 246, 249, 1);
    border: 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    height: 30px;
}

    #close-sidebar button img {
        width: 15px;
    }

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(0deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(5deg);
    }

    70% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes sonar {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-dropdown > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/*----------------toggeled sidebar----------------*/

.page-wrapper.toggled .sidebar-wrapper {
    left: -250px;
}

.page-wrapper.toggled main {
    width: 100%;
    margin-left: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
    .page-wrapper.toggled .page-content {
        padding-left: 300px;
    }
}


/*----------------show sidebar button----------------*/

#show-sidebar {
    border-radius: 0 4px 4px 0px;
    width: 20px;
    transition-delay: 0.3s;
    padding: 0;
}

.page-wrapper.toggled #show-sidebar {
    left: -40px;
}

    .page-wrapper.toggled #show-sidebar:focus {
        outline: 0;
        box-shadow: none !important;
    }


/*----------------sidebar-wrapper----------------*/

.sidebar-wrapper {
    width: 235px;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    background-color: #4A265A;
    left: 0px;
    z-index: 98;
}

    .sidebar-wrapper ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-wrapper a {
        text-decoration: none;
    }


/*----------------sidebar-content----------------*/


/* .sidebar-content {
    max-height: calc(100% - 30px);
    height: calc(100% - 30px);
    overflow-y: auto;
    position: relative;
  } */

.sidebar-content.desktop {
    overflow-y: hidden;
}


/*--------------------sidebar-brand----------------------*/

.sidebar-wrapper .sidebar-brand {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #664872;
}

    .sidebar-wrapper .sidebar-brand > a {
        display: block;
        width: 75px;
        height: 75px;
        margin: 0 auto;
    }

        .sidebar-wrapper .sidebar-brand > a > img {
            width: 100%;
        }

    .sidebar-wrapper .sidebar-brand #close-sidebar {
        cursor: pointer;
        font-size: 20px;
        display: none;
        right: 10px;
        top: 10px;
        position: absolute;
    }


/*--------------------sidebar-header----------------------*/

.sidebar-wrapper .sidebar-header {
    padding: 20px;
    display: flex;
    overflow: hidden;
}

.user-picture {
    position: relative;
}

.user-grade {
    position: absolute;
    border: 2px solid #E9883D;
    background-color: #F2AA4C;
    display: flex;
    height: 21px;
    width: 21px;
    right: 10px;
    top: 6px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}
.user-grade img{
    display:block;
    width:100%;
}

.sidebar-wrapper .sidebar-header .user-pic {
    float: left;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
}

    .sidebar-wrapper .sidebar-header .user-pic img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

.sidebar-wrapper .sidebar-header .user-info .user-role {
    font-size: 12px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
    font-size: 11px;
    margin-top: 4px;
}

    .sidebar-wrapper .sidebar-header .user-info .user-status i {
        font-size: 8px;
        margin-right: 4px;
        color: #5cb85c;
    }


/*-----------------------sidebar-search------------------------*/

.sidebar-wrapper .sidebar-search > div {
    padding: 10px 20px;
}


/*----------------------sidebar-menu-------------------------*/

.sidebar-wrapper .sidebar-menu {
    padding-bottom: 10px;
}

    .sidebar-wrapper .sidebar-menu .header-menu span {
        font-weight: bold;
        font-size: 14px;
        padding: 15px 20px 5px 20px;
        display: inline-block;
    }

    .sidebar-wrapper .sidebar-menu ul li a {
        display: inline-block;
        width: 100%;
        text-decoration: none;
        position: relative;
        line-height: 29px;
        padding: 8px 30px 8px 20px;
    }

        .sidebar-wrapper .sidebar-menu ul li a i {
            margin-right: 10px;
            font-size: 12px;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            border-radius: 4px;
        }

        .sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
            display: inline-block;
            animation: swing ease-in-out 0.5s 1 alternate;
        }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
        content: '';
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-align: center;
        background: 0 0;
        position: absolute;
        right: 15px;
        top: 18px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
        padding: 5px 0;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
        padding-left: 25px;
        font-size: 13px;
    }

    .sidebar-wrapper .sidebar-menu ul li a span.label,
    .sidebar-wrapper .sidebar-menu ul li a span.badge {
        float: right;
        margin-top: 8px;
        margin-left: 5px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
        float: right;
        margin-top: 0px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-submenu {
        display: none;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
        transform: rotate(90deg);
        right: 17px;
    }

.sidebar-dropdown.current .sidebar-submenu {
    display: block !important;
}

.badge {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EE992A;
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    line-height: 16px;
}


/*--------------------------side-footer------------------------------*/

.sidebar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
}

    .sidebar-footer > a {
        flex-grow: 1;
        text-align: center;
        height: 30px;
        line-height: 30px;
        position: relative;
    }

        .sidebar-footer > a .notification {
            position: absolute;
            top: 0;
        }

.badge-sonar {
    display: inline-block;
    background: #980303;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 0;
}

    .badge-sonar:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        border: 2px solid #980303;
        opacity: 0;
        border-radius: 50%;
        width: 100%;
        height: 100%;
        animation: sonar 1.5s infinite;
    }

.sidebar-wrapper .sidebar-brand #close-sidebar {
    cursor: pointer;
    font-size: 20px;
}


/*--------------------sidebar-header----------------------*/

.sidebar-wrapper .sidebar-header {
    padding:15px 20px;
    overflow: hidden;
}

    .sidebar-wrapper .sidebar-header .user-info p {
        font-size: 14px;
        color: #fff;
        line-height: 19px;
        border-bottom: 0;
        margin-bottom: 0;
        font-weight: 500;
    }

    .sidebar-wrapper .sidebar-header .user-info > span {
        display: block;
        color: rgba(255, 255, 255, 0.5);
        font-size: 12px;
        line-height: 16px;
    }

    .sidebar-wrapper .sidebar-header .user-info .user-role {
        font-size: 9.5px;
        text-transform:lowercase;
    }
        .sidebar-wrapper .sidebar-header .user-info .user-role:first-letter{
            text-transform:uppercase;
        }
        .sidebar-wrapper .sidebar-header .user-info .user-status {
            font-size: 11px;
            margin-top: 4px;
        }

        .sidebar-wrapper .sidebar-header .user-info .user-status i {
            font-size: 8px;
            margin-right: 4px;
            color: #5cb85c;
        }


/*-----------------------sidebar-search------------------------*/

.sidebar-wrapper .sidebar-search > div {
    padding: 10px 20px;
}


/*----------------------sidebar-menu-------------------------*/

.sidebar-wrapper .sidebar-menu {
    padding-bottom: 10px;
    height: calc(100vh - 220px);
}

    .sidebar-wrapper .sidebar-menu .header-menu span {
        font-weight: bold;
        font-size: 14px;
        padding: 15px 20px 5px 20px;
        display: inline-block;
    }

    .sidebar-wrapper .sidebar-menu > ul > li > a {
        display: inline-block;
        width: 100%;
        text-decoration: none;
        font-size: 14px;
        position: relative;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 400;
        padding: 8px 15px 8px 20px;
        border-bottom: 1px solid #664872;
    }

    .sidebar-wrapper .sidebar-menu > ul > li.active > a {
        background-color: rgba(255, 255, 255, 0.10);
        color: rgba(255, 255, 255, 0.9);
    }

    .sidebar-wrapper .sidebar-menu ul li a i {
        margin-right: 10px;
        font-size: 12px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        border-radius: 4px;
    }

    .sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
        display: inline-block;
        animation: swing ease-in-out 0.5s 1 alternate;
    }


    /* .sidebar-wrapper .sidebar-menu .sidebar-dropdown>a:after {
    content: "";
    background-image: url(../images/svg/left-arrow.svg);
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: 15px;
    top: 14px;
} */

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
        padding: 0;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
        padding-left: 0;
        background-color: rgba(255, 255, 255, 0.05);
        font-weight: 400;
        border-bottom: 1px solid #664872;
        font-size: 13px;
    }

        .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a {
            color: rgba(255, 255, 255, 0.9);
            padding: 8px 30px 8px 50px;
            font-weight: 400;
        }

        .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li.current {
            /* border-left: 2px solid #F2AA4C; */
            background-color: rgba(255, 255, 255, 0.10) !important;
        }

            .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li.current a {
                color: rgba(255, 255, 255, 0.9);
            }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown.current .sidebar-submenu li a {
        color: rgba(255, 255, 255, 0.6);
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown.current .sidebar-submenu li.current a {
        color: rgba(255, 255, 255, 0.9);
    }


    /* .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    font-size: 8px;
} */

    .sidebar-wrapper .sidebar-menu ul li a span.label,
    .sidebar-wrapper .sidebar-menu ul li a span.badge {
        float: right;
        margin-top: 8px;
        margin-left: 5px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
        float: right;
        margin-top: 0px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-submenu {
        display: none;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
        transform: rotate(180deg);
        right: 17px;
        top: 14px;
    }

    .sidebar-wrapper .sidebar-menu .current > a,
    .sidebar-wrapper .sidebar-menu .current .sidebar-submenu li {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .sidebar-wrapper .sidebar-menu .current > a {
        border-left: 2px solid #F2AA4C;
        color: rgba(255, 255, 255, 0.9);
    }

        .sidebar-wrapper .sidebar-menu .current > a .icon {
            opacity: 1;
        }

    .sidebar-wrapper .sidebar-menu .current.sidebar-dropdown > a {
        border-left: 0;
    }

.sidebar-dropdown > a:after {
    content: '';
    height: 14px;
    width: 14px;
    position: absolute;
    right: 15px;
    top: 14px;
    background-image: url(../images/dropdown_arrow.png) !important;
    background-repeat: no-repeat !important;
    background-size: 14px;
    background-position: right 14px center;
}


/*--------------------------side-footer------------------------------*/

.sidebar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
}

    .sidebar-footer > a {
        flex-grow: 1;
        text-align: center;
        height: 30px;
        line-height: 30px;
        position: relative;
    }

        .sidebar-footer > a .notification {
            position: absolute;
            top: 0;
        }

.badge-sonar {
    display: inline-block;
    background: #980303;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 0;
}

    .badge-sonar:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        border: 2px solid #980303;
        opacity: 0;
        border-radius: 50%;
        width: 100%;
        height: 100%;
        animation: sonar 1.5s infinite;
    }

.icon {
    display: inline-block;
    height: 17px;
    margin: auto;
    margin-right: 10px;
    width: 17px;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0.5;
    background-color: rgba(255, 255, 255, 0.9);
}

.sidebar-wrapper .sidebar-menu ul li.active .icon {
    background-color: rgba(255, 255, 255, 1);
}

.icon-dashboard {
    mask-image: url(../images/svg/dashboard-icon.svg);
    -webkit-mask-image: url(../images/svg/dashboard-icon.svg);
}

.icon-purchase {
    mask-image: url(../images/svg/purchase.svg);
    -webkit-mask-image: url(../images/svg/purchase.svg);
}

.icon-meeting {
    mask-image: url(../images/svg/meeting.svg);
    -webkit-mask-image: url(../images/svg/meeting.svg);
}

.icon-follwup {
    mask-image: url(../images/svg/followup-icon.svg);
    -webkit-mask-image: url(../images/svg/followup-icon.svg);
}

.icon-order {
    mask-image: url(../images/svg/orders-icon.svg);
    -webkit-mask-image: url(../images/svg/orders-icon.svg);
}

.icon-content {
    mask-image: url(../images/svg/content-icon.svg);
    -webkit-mask-image: url(../images/svg/content-icon.svg);
}

.icon-notification {
    mask-image: url(../images/svg/notification-icon.svg);
    -webkit-mask-image: url(../images/svg/notification-icon.svg);
}

.icon-contacts {
    mask-image: url(../images/svg/MyContacts.svg);
    -webkit-mask-image: url(../images/svg/MyContacts.svg);
}

.icon-chat {
    mask-image: url(../images/svg/chat-icon.svg);
    -webkit-mask-image: url(../images/svg/chat-icon.svg);
}

.icon-info {
    mask-image: url(../images/svg/my-info-icon.svg);
    -webkit-mask-image: url(../images/svg/my-info-icon.svg);
}

.icon-power{
    mask-image: url(../images/svg/power-off.png);
    -webkit-mask-image: url(../images/svg/power-off.png);
}

.icon-demo {
    mask-image: url(../images/svg/Demo.svg);
    -webkit-mask-image: url(../images/svg/Demo.svg)
}

.sidebar-footer ul {
    width: 100%;
}

    .sidebar-footer ul li > label {
        font-size: 13px;
        color: rgba(238, 153, 42, 1);
        line-height: 18px;
        margin-bottom: 0;
    }

    .sidebar-footer ul li > p {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 0;
        line-height: 18px;
        margin-left: auto;
        display: inline-block;
    }

    .sidebar-footer ul li {
        display: flex;
        padding: 6px 15px 6px 25px;
        background-color: rgba(54, 23, 68, 1);
        border-bottom: 1px solid #664872;
    }


/* layout end */


/* dashboard page */

main {
    width: calc(100% - 235px);
    margin-left: 235px;
    padding: 0 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.DSA-head {
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    height: 70px;
    align-items: center;
}

    .DSA-head h2 {
        color: #282A3A;
        display: inline-block;
        font-size: 20px;
        margin-left: 15px;
        font-weight: bold;
        margin-bottom: 0;
    }

.text-primary {
    color: rgba(109, 49, 135, 1) !important;
}

.text-secondary {
    color: rgba(242, 170, 76, 1) !important;
}

.date-details {
    text-align: right;
    margin-left: auto;
}

    .date-details .d-flex {
        justify-content: flex-end;
    }

    .date-details label {
        font-size: 14px;
        font-weight: bold;
        line-height: 19px;
        margin-bottom: 0;
    }

    .date-details p {
        font-size: 12px;
        margin-bottom: 0;
        white-space: nowrap;
        margin-left: 7px;
        line-height: 16px;
        color: rgba(40, 42, 58, 0.5);
    }

.DSA-box {
    padding: 10px 15px;
    height: 100%;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(14, 49, 77, 0.1);
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -9px;
    margin-left: -9px;
}

    .form-row [class*=col-] {
        padding-left: 9px;
        padding-right: 9px;
    }

.col-row-mrgn [class*=col-] {
    margin-bottom: 18px;
}

.DSA-box-head h3 {
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 0;
    width: 40%;
    line-height: 19px;
    display: inline-block;
    color: #282A3A;
}

.DSA-box-head .lgends {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 60%;
    float: right;
}

    .DSA-box-head .lgends li {
        list-style-type: none;
        line-height: 19px;
        margin-right: 10px;
        color: rgba(40, 42, 58, 1);
        font-size: 10px;
    }

        .DSA-box-head .lgends li > span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            margin-right: 5px;
            display: inline-block;
        }

.self-repurchase span {
    background-color: rgba(109, 49, 135, 1);
}

.org1-direct span {
    background-color: rgba(242, 170, 76, 1);
}

.org2-direct span {
    background-color: rgba(73, 163, 203, 1);
}

.org1-downline span {
    background-color: rgba(128, 101, 75, 1);
}

.org2-downline span {
    background-color: rgba(123, 151, 103, 1);
}

.counter-value {
    text-align: center;
    margin-top: 25px;
}

    .counter-value h1 {
        font-size: 36px;
        line-height: 48px;
        margin-bottom: 0px;
    }

    .counter-value p {
        color: rgba(40, 42, 58, 0.7);
        font-size: 12px;
    }

.line-chart {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    display:none;
}

.box-merge {
    margin-left: -15px;
    margin-right: -15px;
}

.table {
    border-radius: 0;
    border: 0;
    overflow-y: visible;
}

    .table thead th {
        background-image: url(../images/shoting_arrow.png);
        background-size: 6px;
        background-position: right 7px center;
        background-repeat: no-repeat;
    }

.no-short {
    background-image: unset !important;
}

input:focus,
button:focus,
select:focus,{
    box-shadow: none !important;
    outline: none !important;
}
textarea:focus{
    outline:none !important;
}
button {
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

    button:hover,
    button:focus {
        opacity: 0.8;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }

table.dashboard-table thead th {
    color: rgba(11, 32, 70, 0.8);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

table.dashboard-table tbody td {
    color: rgba(11, 32, 70, 1);
    font-size: 14px;
    line-height: 19px;
    border-bottom: 1px solid rgba(235, 238, 245, 1);
    font-weight: 500;
}

.table th {
    border-bottom: 0 !important;
}

.top-1 td {
    background-color: #F9ECFF;
}

.top-2 td {
    background-color: #FFF6E9;
}

.top-3 td {
    background-color: #F9FBFF;
}

.dashboard-table tbody tr td,
.dashboard-table thead tr th {
    white-space: nowrap;
    padding-right:25px;
}

@media(max-width:1024px) {
    main {
        width: 100%;
        margin-left: 0;
    }

    .sidebar-wrapper .sidebar-brand #close-sidebar {
        display: block;
    }
}

@media(max-width:767px) {
    .DSA-head h2 {
        font-size: 18px;
        margin-left: 7px;
    }

    .line-chart {
        position: relative;
        margin-left: -15px;
        margin-bottom: -10px;
    }
}

@media(max-width:690px) {
    .dashboard-table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}

@media(max-width:320px) {
    .date-details p {
        font-size: 10px;
    }

    .date-details label {
        font-size: 12px;
    }

    .DSA-head h2 {
        font-size: 16px;
    }
}


/* dashboard page end */


/* purchase page */

.week-filter {
    display: flex;
    margin-left: auto;
}

    .week-filter label {
        color: rgba(23, 23, 23, 0.5);
        font-size: 12px;
        line-height: 30px;
        margin: 0 8px 0 5px;
    }

    .week-filter input {
        height: 30px;
        font-weight: 500;
        border: 0;
        width: 60px;
        background-color: #fff;
        color: rgba(23, 23, 23, 1);
        font-size: 12px;
        padding: 6px 8px;
    }

.purchase-table {
    width: 75%;
    margin: 0 auto;
}

.bg-table {
    box-shadow: 0px 3px 6px rgba(14, 49, 77, 0.1);
    background-color: #fff;
}

    .bg-table thead tr th,
    .bg-table tbody tr td,
    .bg-table tbody tr td > p {
        background-color: rgba(237, 238, 243, 1);
        color: rgba(11, 32, 70, 1);
        font-size: 12px;
        margin-bottom: 0;
        padding: 10px 25px;
        line-height: 16px;
        font-weight: 500;
    }

        .bg-table tbody tr td,
        .bg-table tbody tr td > p {
            font-weight: 400;
            vertical-align: middle;
            background-color: transparent;
        }
        table tr td p{
            margin-bottom:0;
        }
.table-head {
    font-size: 16px;
    font-weight: bold;
    line-height: 21px;
    margin-bottom: 15px;
}

.datatable tr th,
.datatable tr td {
    padding: 10px 20px;
}

.bg-table tbody tr td > p {
    padding: 0 !important;
}

@media(max-width:767px) {
    .purchase-table {
        width: 100%;
    }
}


/*end purchase page */


/* meeting schedule page */

.dataTables_wrapper {
    background-color: #fff;
    width: 100%;
    overflow-x: auto;
    box-shadow: 0px 3px 6px #0E314D1A;
}
    .dataTables_wrapper .row{
        margin:0 !important;
    }
    .dataTables_wrapper .row > [class*="col-"] {
        padding: 0 !important;
    }
    .dataTable_flex {
        display: flex;
        flex-wrap: wrap;
    }
.dataTables_wrapper .bg-table {
    border-bottom: 1px solid #EBEEF5;
}
    .dataTables_wrapper .bg-table tr td {
        border-top: 1px solid #EBEEF5;
    }
    .dataTables_wrapper .bg-table {
        box-shadow: none;
        width: 100% !important;
    }

#meeting-type label {
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    margin-right: 10px;
    margin-top: 15px;
    font-size: 10px;
    color: rgba(0, 23, 55, 0.5);
}

#meeting-type select {
    border: 1px solid rgba(219, 225, 230, 1);
    background-color: rgba(245, 246, 249, 1);
    color: rgba(0, 23, 55, 1);
    font-size: 10px;
    width: 120px;
    height: 18px;
    padding: unset 7px;
}

.meeting-type {
    margin-left: auto;
    margin-right: 20px;
}

.DSA-btn {
    background-color: #EE992A;
    border: none;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    height: 35px;
    padding: 8px 15px;
    margin-left: auto;
}

.DSA-nrml-btn {
    background-color: transparent;
    border: 0;
    float: right;
    padding: 0 5px;
}

.dataTables_wrapper .btn-group {
    float: right;
}

.DSA-nrml-btn img {
    width: 12px;
}

.dropdown-menu.show {
    display: block;
    border: 1px solid rgba(245, 246, 250, 1);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.16);
    min-width: 125px;
}

.dropdown-item {
    font-size: 12px;
    color: rgba(40, 42, 58, 1);
    line-height: 16px;
    padding: 6px 15px !important;
}

.fas {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 7px;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.fas-live {
    display: inline-block;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background-color: #81B54D;
    margin-right: 12px;
    margin-left: 3px;
}
.fas-liveoff {
    display: inline-block;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background-color: #ee992a;
    margin-right: 12px;
    margin-left: 3px;
}

.fas-view {
    background-image: url(../images/svg/view-icon.svg);
}

.fas-edit {
    background-image: url(../images/svg/edit-icon.svg);
}
.fas-addcontact {
    background-image: url(../images/svg/mbl.svg);
}

.fas-delete {
    background-image: url(../images/svg/delete.svg);
}

.fas-map {
    background-image: url(../images/svg/mapview.svg);
    width: 12px;
    height: 15px;
}

.fas-view {
    background-image: url(../images/svg/view-icon.svg);
}

.fas-gallery {
    background-image: url(../images/svg/view-icon.svg);
}

.modal-content {
    border-radius: 0;
}

.map-modal .modal-title {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 0;
}

.map-modal .modal-header {
    height: 40px;
    display: flex;
    align-items: center;
    border: 0;
}

.map-modal .close {
    opacity: 1;
    float: right;
}

.map-viewer {
    height: 230px;
    overflow: hidden;
}

@media(max-width:450px) {
    .table-filter,
    .meeting-type,
    .search-box {
        margin-left: auto;
        margin-right: auto;
    }

    .dataTables_info,
    .dataTables_paginate {
        width: 100% !important;
    }

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: center;
        margin-right: unset !important;
    }
}
@media(max-width:640px){
    .dataTables_wrapper{
        overflow-x:auto;
    }
}

/* box info */

.box-overlay {
    height: 100vh;
    width: 100vw;
    background-color: rgba(40, 42, 58, 0.2);
    position: fixed;
    visibility: hidden;
    z-index: -10;
    opacity: 0;
    left:0;
    top:0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

    .box-overlay.open {
        opacity: 1;
        z-index: 99;
        
        visibility: visible;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }

.box-info,
.box-info1 {
    width: 450px;
    background-color: #fff;
    right: 0;
    position: fixed;
    z-index: 100;
    height: 100vh;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

    .box-info .form-row,
    .box-info1 .form-row {
        margin-left: -7px;
        margin-right: -7px;
    }

        .box-info .form-row [class*=col-],
        .box-info1 .form-row [class*=col-] {
            padding-left: 7px;
            padding-right: 7px;
        }

    .box-info.collapsed-box,
    .box-info1.collapsed-box {
        right: -500px;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
    }

.box-2 {
    opacity: 0;
    background-color: #fff;
    visibility: hidden;
    z-index: -10;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.open-box .box-2 {
    opacity: 1;
    background-color: #fff;
    visibility: visible;
    z-index: 101;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.open-box .box-1 {
    opacity: 0;
    display: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.box-info-head {
    padding: 25px 15px;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D8DCE6;
}

    .box-info-head h2 {
        font-size: 16px;
        font-weight: bold;
        line-height: 21px;
        margin-bottom: 0;
    }

.box-info-body,
.box-info-body1 {
    padding: 10px 15px;
    height: calc(100vh - 110px);
}

.without-footer-body {
    height: calc(100vh - 70px);
}

.box-info-footer {
    height: 40px;
    text-align: right;
    background-color: #EE992A;
    position: fixed;
    bottom: 0;
    width: 450px;
    justify-content: flex-end;
    display: flex;
}

    .box-info-footer button {
        float: right;
        border: 0;
        background-color: transparent;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        margin-right: 20px;
    }

.box-info-sm,
.box-info-sm .box-info-footer {
    width: 350px !important;
}

@media(max-width:450px) {
    .box-info,
    .box-info1,
    .box-info-sm,
    .box-info-sm .box-info-footer,
    .box-info-footer {
        width: 100% !important;
    }
}


/* box end */

.form-content {
    margin-bottom: 15px;
}

    .form-content label {
        color: rgba(11, 32, 70, 0.5);
        font-size: 10px;
        margin-bottom: 0;
        line-height: 13px;
    }

    .form-content p {
        color: #0B2046;
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 0;
    }

.form-item input {
    width: 100%;
    height: 40px;
    color: rgba(40, 42, 58, 1);
    font-size: 12px;
    border: 0;
    background-color: #F6F2F8;
}

input:focus {
    border: 1px solid #DBE1E6;
}

.form-item .map-item {
    height: 190px;
    width: 100%;
    overflow: hidden;
}

button:focus {
    outline: 0;
    box-shadow: none;
}

.box-close-btn,
.box-close-btn1 {
    background-color: transparent;
    border: 0;
    width: 12px;
    padding: 0;
    margin-left: auto;
}

    .box-close-btn img,
    .box-close-btn1 img {
        width: 100%;
    }

.update-btn,
.update-btn1 {
    padding: 5px 12px;
    background-color: rgba(74, 38, 90, 1);
    font-size: 13px;
    line-height: 18px;
    margin-left: auto;
    border: 0;
    margin-right: 25px;
    color: #fff;
    text-transform: uppercase;
}

.box-info-head .update-btn + button,
.box-info-head .update-btn1 + button {
    margin-left: unset !important;
}


/* box info end */


/* foloow-up-page */

.status-tag {
    height: 17px;
    padding: 2px 9px;
    line-height: 17px;
    border-radius: 8px;
    font-size: 10px;
}

.tag-orange {
    background-color: rgba(238, 153, 42, 0.2);
    color: rgba(238, 153, 42, 1);
}

.tag-violet {
    background-color: rgba(109, 49, 135, 0.2);
    color: rgba(109, 49, 135, 1);
}

.tag-green {
    background-color: rgba(103, 172, 33, 0.2);
    color: rgba(78, 151, 48, 1);
}

.tag-red {
    background-color: rgba(225, 88, 28, 0.2);
    color: rgba(225, 88, 28, 1);
}
.followup-table tr td,
.followup-table tr th {
    white-space: nowrap;
}

td.message-box {
    width: 245px;
    white-space: normal !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.message-box {
    width: 245px;
    white-space: normal !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.splitter {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 5px;
    margin-bottom: 15px;
    background-color: rgba(216, 220, 230, 1);
}

.followup-box {
    background-color: rgba(245, 246, 249, 1);
    padding: 8px 5px 0 5px;
    display: flex;
    border-radius: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

    .followup-box label {
        color: rgba(238, 153, 42, 1);
        font-size: 10px;
        line-height: 13px;
        margin-bottom: 0;
    }

    .followup-box p {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 10px;
    }

.form-content-box + .slimScrollDiv {
    margin-left: -7px;
    margin-right: -7px;
}

.follow-col {
    padding-left: 15px !important;
    padding-right: 23px !important;
}

.datepicker-here {
    background-image: url(../images/svg/datepicker.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center right 13px;
}

.select2-container {
    margin-bottom: 0;
}

.select2-container--default .select2-selection--single {
    height: 40px;
    border: 0;
    background-color: #F6F2F8;
    border-radius: 0;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 40px;
    }

.select2-dropdown {
    border: 1px solid #DBE1E6;
    border-radius: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    color: #282A3A;
}

.back-btn {
    background-color: transparent;
    border: 0;
}

    .back-btn img {
        width: 20px;
    }

@media(max-width:1400px) {
    .followup-table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}


/* follow-up-page-end */


/* orders page */

.nowrap-text tr td,
.nowrap-text tr td p,
.nowrap-text tr th,
.table tr td,
.table tr td p,
.table tr th {
    white-space: nowrap;
}

.order-details-info .slimScrollDiv {
    padding-right: 15px;
}

.order-details {
    display: flex;
    padding: 10px;
    background-color: #F5F6F9;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-img {
    width: 45px;
}

    .product-img img {
        width: 100%;
    }

.product-detail {
    margin-left: 13px;
    width: 100%;
}

    .product-detail p {
        color: #171717;
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 10px;
    }

.order-code {
    color: #EE992A;
    font-size: 10px;
    line-height: 13px;
    float: left;
}

.order-price {
    color: #6D3187;
    font-size: 12px;
    line-height: 13px;
    float: right;
    font-weight: 500;
    margin-left: auto;
}


/* order page end */


/* home banner page */

.full-width-table {
    width: 100%;
    overflow-x: auto;
}

.w-15p {
    width: 15px;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-left: 0 !important;
}

.promo-banner-item,
.promo-banner-item img {
    width: 75px;
}

.banner-item {
    width: 150px;
    padding-left: 0 !important;
}

    .banner-item img {
        width: 150px;
    }

.active-tag {
    font-size: 12px;
    line-height: 16px;
}

    .active-tag span {
        height: 6px;
        width: 6px;
        display: inline-block;
        border-radius: 50%;
        margin-right: 5px;
    }

.tag-active span {
    background-color: #81B54D;
}

.tag-active {
    color: #81B54D !important;
}

.tag-Inactive span {
    background-color: #D46447;
}

.tag-Inactive {
    color: #D46447 !important;
}

.input-file {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    width: 100%;
    text-align: center;
    position: relative;
    font-size: 11px;
    line-height: 15px;
    color: #fff !important;
    background-color: #764B8D;
    text-transform: uppercase;
}

.upload-vedios {
    background-color: rgba(54, 46, 58, 1);
    margin-top: 10px;
}

.input-file > img {
    margin-right: 7px;
}

.input-file > input {
    height: 40px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.input-label {
    color: rgba(40, 42, 58, 0.8);
    font-size: 10px;
    line-height: 13px;
    display: block;
    text-align: center;
    margin-top: 7px;
}

.banner-content {
    min-height: 53px !important;
    resize: none;
}


/* promo banner page */

.DSA-head .select2-container {
    width: 145px !important;
    margin-left: auto;
    margin-right: 18px;
}

.DSA-head .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
}

.DSA-head .select2-container + .DSA-btn {
    margin-left: unset;
}

.DSA-head .select2-container--default .select2-selection--single {
    height: 35px;
    padding-left: 15px !important;
    background-color: #fff;
}

    .DSA-head .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 35px;
    }

@media(max-width:450px) {
    .promobanner-head {
        height: auto;
    }

        .promobanner-head .select2-container {
            margin-right: unset;
        }

        .promobanner-head .DSA-btn {
            margin-left: auto !important;
            margin-top: 10px;
        }
}


/* vedio banner */

.vedio-banner-item,
.vedio-banner-item img {
    width: 62px;
}

.product-name {
    max-width: 225px;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* gallary page */

.text-violet {
    color: #6D3187 !important;
}

.uploaded-photo-grid {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18%, 1fr));
    grid-auto-rows: 1fr;
    grid-gap: 5px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 5px;
}

    .uploaded-photo-grid li {
        list-style-type: none;
        position:relative;
    }

        .uploaded-photo-grid li div > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .uploaded-photo-grid li div > span {
            position:absolute;
            top:0;
            right:0;
            background:#000;
            color:white;
            font-size:10px;
            width:12px;
            text-align:center;
            cursor:pointer;
        }

.opacity-7 .input-file {
    background-color: rgba(118, 75, 141, 0.7) !important;
}

.opacity-7 .upload-vedios {
    background-color: rgba(54, 46, 58, 0.7) !important;
}

.grid-hide .uploaded-photo-grid {
    display: none;
}

.uploaded-vedio-grid {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18%, 1fr));
    grid-auto-rows: 1fr;
    grid-gap: 5px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 5px;
}

    .uploaded-vedio-grid li div > img {
        width: 100%;
    }
    .uploaded-vedio-grid li {
        list-style-type: none;
        position: relative;
    }
    .uploaded-vedio-grid li div > span {
        position: absolute;
        top: 0;
        right: 0;
        background: #000;
        color: white;
        font-size: 10px;
        width: 12px;
        text-align: center;
        cursor: pointer;
    }

table.gallary-table tbody tr td {
    padding: 17px 25px !important;
}

.gallery-meeting-grid {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9%, 1fr));
    grid-auto-rows: 1fr;
    grid-gap: 13px;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 15px;
}

    .gallery-meeting-grid li div > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-meeting-grid li {
        position: relative;
    }

.DSA-sub-header {
    color: #282A3A;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 10px;
}

.gallery-meeting-vedio-grid {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15%, 1fr));
    grid-auto-rows: 1fr;
    grid-gap: 13px;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 15px;
}

    .gallery-meeting-vedio-grid li {
        list-style-type: none;
        position: relative;
    }

        .gallery-meeting-vedio-grid li div > img {
            width: 100%;
        }

.img-selector-btn {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    border: 1px solid #fff;
    overflow: hidden;
    background-color: #6D3187;
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 6;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .img-selector-btn.selected {
        background-color: #EE992A;
        border: 1px solid #fff;
    }

        .img-selector-btn.selected img {
            width: 10px;
            filter: invert(99%) sepia(0%) saturate(0%) hue-rotate(186deg) brightness(107%) contrast(101%);
        }

.img-selector-btn {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.gallery-meeting-vedio-grid > li:hover .img-selector-btn,
.gallery-meeting-grid > li:hover .img-selector-btn,
.gallery-meeting-grid > li.active .img-selector-btn,
.gallery-meeting-vedio-grid > li.active .img-selector-btn {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    z-index: -5;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.gallery-meeting-vedio-grid > li:hover .img-selector-btn.selected + .grid-overlay,
.gallery-meeting-grid > li:hover .img-selector-btn.selected + .grid-overlay,
.gallery-meeting-grid > li.active .img-selector-btn.selected + .grid-overlay,
.gallery-meeting-vedio-grid > li.active .img-selector-btn.selected + .grid-overlay {
    z-index: 5;
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.delete-btn {
    background-color: rgba(40, 42, 58, 1);
    margin-left: auto;
    margin-right: 15px;
}

    .delete-btn + .DSA-btn {
        margin-left: unset !important;
    }

td.text-ellipse p,
td.text-ellipse,
table .text-ellipse, table .text-ellipse p {
    max-width: 365px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-meeting-head .btn {
    padding: 0;
}

    .team-meeting-head .btn img {
        width: 16px;
    }

@media(max-width:1024px) {
    .gallery-meeting-grid {
        grid-gap: 7px;
        grid-template-columns: repeat(auto-fill, minmax(14%, 1fr));
    }

    .gallery-meeting-vedio-grid {
        grid-gap: 7px;
        grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    }
}

@media(max-width:767px) {
    .gallery-meeting-grid {
        grid-gap: 10px;
        grid-template-columns: repeat(auto-fill, minmax(16%, 1fr));
    }

    .gallery-meeting-vedio-grid {
        grid-gap: 10px;
        grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
    }
}

@media(max-width:450px) {
    .team-meeting-head {
        height: unset;
    }

    .gallery-meeting-grid {
        grid-gap: 5px;
        grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
    }

    .gallery-meeting-vedio-grid {
        grid-gap: 5px;
        grid-template-columns: repeat(auto-fill, minmax(44%, 1fr));
    }
}


/* gallary page end */


/* notification page */
.table th{
    border-top:0;
}
.DSA-body {
    position: relative;
    min-height: calc(100vh - 80px );
}
.detail_btn{
    background-color:transparent;
    border:0;
}
.notification-inbox-table {
    position: absolute;
    width: 0;
    left: 0;
    top: 0;
    overflow: hidden;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
}
    .notification-inbox-table.active {
        position: relative;
        width: 100%;
        height: 100%;
        left: 0;
        float: right;
        top: 0;
        box-shadow: 0px 3px 6px #0E314D1A;
        transition: 0.3s all ease;
        -webkit-transition: 0.3s all ease;
    }
.notification-inbox-table_detail {
    position: absolute;
    width: 0;

    left: 0;
    overflow: hidden;
    top: 0;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
}

    .notification-inbox-table_detail.active {
        position: relative;
        width: 100%;
        height: 100%;
        right: 0;
        float: right;
        box-shadow: 0px 3px 6px #0E314D1A;
        top: 0;
        transition: 0.3s all ease;
        -webkit-transition: 0.3s all ease;
    }
.page-wrapper{
    overflow-x:hidden;
}
.back_Btn {
    padding-left: 0;
    padding-right: 0;
}
.back_Btn img {
    width: 20px;
}
.with-tab-head {
    padding-bottom: 0;
    display: block;
    height: auto;
}

    .with-tab-head h2 {
        margin-bottom: 20px;
    }

    .with-tab-head .box-close-btn {
        position: absolute;
        top: 25px;
        right: 15px;
    }

.tab-pane {
    display: none;
}

.notification-list {
    padding: 0;
    margin: 0;
}

    .notification-list > li {
        list-style-type: none;
        padding: 6px 10px;
        position: relative;
        background-color: #FFFAF3;
        margin-bottom: 3px;
    }

.user-notify-detail {
    display: flex;
    align-items: center;
    width: calc(100% - 26px);
}

    .user-notify-detail > div + div {
        margin-left: 10px;
    }

    .user-notify-detail p {
        font-size: 11px;
        line-height: 15px;
        margin-bottom: 0;
    }

.notification-list > li > .toaster-close-btn {
    position: absolute;
    background-color: transparent;
    border: 0;
    color: #DE371D;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}


/* contact page */

.contact-table tr th:last-child,
.contact-table tr td:last-child {
    padding-right: 10px !important;
    text-align: center;
}

    .contact-table tr td:last-child > a img {
        width: 14px;
    }

.contact-table tr td button {
    float: unset !important;
}

.header-input-item {
    border: 1px solid #DBE1E6;
    font-size: 12px;
    width: 210px;
    padding-left: 12px;
    height: 35px;
    margin-right: 15px;
}

    .header-input-item + .DSA-btn {
        margin-left: unset !important;
    }

.header-select + .select2-container {
    margin-left: auto;
    width: 210px !important;
}

    .header-select + .select2-container .select2-selection--single {
        padding-left: 0 !important;
    }

        .header-select + .select2-container .select2-selection--single .select2-selection__rendered {
            padding-left: 12px;
        }

@media(max-width:768px) {
    .mycontact-head {
        height: auto;
    }

    .header-input-item + .DSA-btn {
        margin-left: auto !important;
        margin-top: 10px;
    }
}

@media(max-width:450px) {
    .mycontact-head {
        height: auto;
    }

        .mycontact-head .header-input-item {
            width: 160px;
        }

        .mycontact-head .header-select + .select2-container .select2-selection--single {
            margin-top: 10px;
            margin-bottom: 10px;
        }

    .DSA-head.mycontact-head .select2-container--default .select2-selection--single .select2-selection__arrow {
        margin-top: 10px;
        margin-right: unset;
    }

    .DSA-head.mycontact-head .select2-container {
        margin-right: 0;
    }
}


/* content management section */

.content-management {
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(14, 49, 77, 0.1);
}

    .content-management .pn-ProductNav_Wrapper {
        margin-left: 0;
    }

    .content-management .pn-ProductNav_Link {
        font-size: 14px;
        line-height: 44px;
        color: rgba(40, 42, 58, 0.9);
    }

    .content-management .pn-ProductNav_Indicator {
        background-color: rgba(242, 170, 76, 1) !important;
    }

    .content-management .pn-ProductNav_Indicator {
        top: 43px;
    }

.content-management-head {
    border-bottom: 1px solid rgba(216, 220, 229, 1);
}

.content-management-body {
    padding: 0 15px;
}

.content-management-section {
    border: 1px solid #D8DCE5;
    margin-top: 22px;
    min-height: 320px;
}

.default-btn {
    background-color: #EBEEF5;
    color: #282A3A;
}

.btn-grp {
    margin: 15px 0 20px 0;
    text-align: right;
}

    .btn-grp .default-btn {
        margin-right: 10px;
    }

        .btn-grp .default-btn + button {
            min-width: 95px;
        }

    .btn-grp button {
        font-weight: 500;
    }


/* user info modal popup */

.myinfo-header,
.myinfo-header > .d-flex {
    display: flex;
    height: 85px;
    align-items: center;
    background-color: rgba(249, 241, 231, 1);
}

    .myinfo-header > .d-flex {
        width: calc(100% - 85px);
        padding: 0 10px;
    }

.top-btn-grp {
    position: absolute;
    right: 0;
    padding: 5px 0;
    height: 27px;
    max-width: 110px;
    background-color: rgba(40, 42, 58, 0.2);
    top: -27px;
    display: flex;
    align-items: center;
}

    .top-btn-grp button {
        width: 35px;
        border: 0;
        background-color: transparent;
        padding: 0 10px;
        opacity: 1;
    }

    .top-btn-grp .close img {
        width: 12px;
        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(132deg) brightness(105%) contrast(105%);
    }

.user-info-item {
    width: 85px;
}

    .user-info-item img {
        width: 100%;
    }

.user-info-details h2 {
    color: #282A3A;
    font-size: 23px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

.user-info-details p {
    font-size: 10px;
    line-height: 13px;
    color: rgba(40, 42, 58, 0.8);
    margin-bottom: 0;
}

.user-info-grade {
    height: 37px;
    width: 37px;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #E9883D;
    background-color: #F2AA4C;
}

    .user-info-grade img {
        width: 18px;
    }

.social-links.active {
    width: 110px;
    max-width: 200px;
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

.social-links {
    position: absolute;
    background-color: #f9f1e7;
    right: 105px;
    overflow: hidden;
    height: 27px;
    width: 0;
    display: flex;
    height: 27px;
    align-items: center;
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

.social-link-map {
    right: 52px;
}

    .social-link-map.active {
        width: 110px;
        right: 52px;
    }

.social-links ul {
    padding: 0;
    display: flex;
    margin: 0;
}

    .social-links ul li {
        list-style-type: none;
        display: inline-block;
    }

        .social-links ul li a {
            padding: 0 10px;
        }

            .social-links ul li a img {
                width: 16px;
            }

.info-modal-body {
    padding: 5px 25px 7px 25px;
    display: flex;
}

    .info-modal-body label {
        color: #6F367D;
        font-size: 10px;
        line-height: 13px;
        margin-bottom: 0;
    }

    .info-modal-body p {
        color: #282A3A;
        font-size: 12px;
        margin-bottom: 0;
        line-height: 16px;
    }

.info-form-content {
    margin-bottom: 5px;
}

.info-logo {
    width: 95px;
    margin-left: auto;
    margin-top: auto;
}

    .info-logo img {
        width: 100%;
    }


/* info card 2 */

.myinfo-header2 {
    display: flex;
    padding: 25px 20px 85px 20px;
}

    .myinfo-header2 > .d-flex {
        height: 57px;
        align-items: center;
    }


    /* .myinfo-header2 .user-info-item,
.myinfo-header2 .user-info-details,
.myinfo-header2 .info-logo {
    height: 57px;
} */

    .myinfo-header2 .user-info-details {
        margin-left: 25px;
    }

.user-info-img-set {
    width: 57px;
    position: relative;
}

    .user-info-img-set .user-info-item {
        width: 57px;
        height: 57px;
        border-radius: 50%;
        overflow: hidden;
    }

    .user-info-img-set .user-info-grade {
        width: 24px;
        height: 24px;
        position: absolute;
        right: -7px;
        top: 0;
        margin-right: 0;
    }

        .user-info-img-set .user-info-grade img {
            width: 12px;
        }

.myinfo-header2 .user-info-item {
    width: 57px;
    border-radius: 50%;
    overflow: hidden;
}

.contact-tag {
    width: 12px;
    height: 12px;
    margin-right: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

.phone-tag {
    background-image: url(../images/svg/phone-sm.svg);
}

.mail-tag {
    background-image: url(../images/svg/mail-sm.svg);
}

.global-tag {
    background-image: url(../images/svg/global-sm.svg);
}

.location-tag {
    background-image: url(../images/svg/location-sm.svg);
}

.phone-dark-tag {
    background-image: url(../images/svg/phone-dark.svg);
}

.mail-dark-tag {
    background-image: url(../images/svg/mail-dark.svg);
}

.global-dark-tag {
    background-image: url(../images/svg/global-dark.svg);
}

.location-dark-tag {
    background-image: url(../images/svg/location-dark.svg);
}

.info-form-content a {
    color: #F8DCF9;
    font-size: 10px;
    margin-top: 15px;
    display: flex;
    line-height: 13px;
}

.info-modal-body2 {
    padding: 0px 20px 10px 20px;
    background-color: #6F367D;
    position: relative;
}

    .info-modal-body2:before {
        content: '';
        display: block;
        width: 100%;
        position: absolute;
        height: 10px;
        top: -10px;
        left: 0;
        background-color: #D7AAD9;
    }

.myinfo-header2 .info-logo {
    width: 80px;
    position: absolute;
    top: 15px;
    right: 20px;
}


/* user modal 3 */

.flex-card-content {
    padding: 3px;
    display: flex;
    flex-direction: unset !important;
}

.user-info-left-item {
    width: 165px;
    background-color: #6F367D;
    display: flex;
    height: 255px;
    align-items: center;
    justify-content: center;
}

    .user-info-left-item .user-info-img-set {
        margin: 0 auto;
    }

        .user-info-left-item .user-info-img-set .user-info-item {
            width: 62px;
            height: 62px;
            border: 2px solid rgba(255, 255, 255, 1);
            margin-bottom: 10px;
        }

    .user-info-left-item .user-info-grade {
        box-shadow: #6f367d 0px 0 0 1px;
        right: -11px;
    }

    .user-info-left-item .user-info-details {
        text-align: center;
    }

        .user-info-left-item .user-info-details h2 {
            font-size: 13px;
            line-height: 18px;
            color: #FFFFFF;
        }

        .user-info-left-item .user-info-details p {
            color: rgba(255, 255, 255, 0.8);
        }

.user-address-detail {
    padding: 10px 15px 15px 35px;
    width: calc(100% - 165px);
}

    .user-address-detail .brand-user-logo {
        width: 70px;
        margin-left: auto;
    }

        .user-address-detail .brand-user-logo img {
            width: 100%;
        }

    .user-address-detail ul {
        padding: 0;
        margin: 0;
        position: absolute;
        bottom: 15px;
        padding-right: 35px;
    }

        .user-address-detail ul li {
            list-style-type: none;
            margin-bottom: 10px;
        }

            .user-address-detail ul li a {
                color: rgba(40, 42, 58, 1);
                font-size: 10px;
                display: flex;
                line-height: 13px;
            }


/* user info 4 */

.overflow-box {
    display: block;
    overflow: hidden;
}

.flex-tappecard-content {
    flex-direction: row-reverse;
    display: flex;
    position: relative;
    overflow: hidden;
}

    .flex-tappecard-content .user-info-left-item:before {
        content: '';
        position: absolute;
        display: block;
        width: 0px;
        height: 0px;
        transform: rotate(90deg);
        top: -204px;
        left: -4%;
        border-style: solid;
        border-width: 29px 593px 194px 111px;
        border-color: transparent #6f367d transparent transparent;
    }

    .flex-tappecard-content .user-info-left-item:after {
        content: '';
        position: absolute;
        display: block;
        width: 0px;
        height: 0px;
        transform: rotate(108deg);
        top: -40%;
        left: 16%;
        border-style: solid;
        border-width: 29px 593px 185px 111px;
        box-shadow: #D7AAD9 0 0 0px 20px;
        border-color: transparent;
    }

    .flex-tappecard-content .user-info-left-item {
        background-color: #fff;
        width: 200px;
        /* position: relative; */
    }

        .flex-tappecard-content .user-info-left-item .user-info-details {
            text-align: right;
            position: absolute;
            bottom: 20px;
            right: 25px;
        }

    .flex-tappecard-content .user-address-detail {
        width: calc(100% - 200px);
        padding-left: 15px;
    }

        .flex-tappecard-content .user-address-detail .brand-user-logo {
            width: 80px;
            margin-left: 0;
        }

        .flex-tappecard-content .user-address-detail ul {
            padding-left: 25px;
            padding-right: unset;
        }


/* user info modal 5 */

.tapper-left-box {
    display: flex;
    position: relative;
    overflow: hidden;
}

    .tapper-left-box .user-address-detail:before {
        content: '';
        position: absolute;
        display: block;
        width: 0px;
        height: 0px;
        transform: rotate(92deg);
        top: -108%;
        left: -19%;
        border-style: solid;
        border-width: 29px 648px 263px 131px;
        border-color: transparent #6f367d transparent transparent;
    }

    .tapper-left-box .user-address-detail:after {
        content: '';
        position: absolute;
        display: block;
        width: 0px;
        height: 0px;
        transform: rotate(114deg);
        top: -40%;
        left: 6%;
        border-style: solid;
        border-width: 29px 593px 185px 111px;
        box-shadow: #D7AAD9 0px 10px 0px 8px;
        border-color: transparent;
    }

    .tapper-left-box .user-address-detail ul {
        padding-right: 0;
        right: 15px;
    }

        .tapper-left-box .user-address-detail ul li a {
            color: #F8DCF9;
        }

    .tapper-left-box .user-info-left-item {
        background-color: transparent;
    }

    .tapper-left-box .user-info-left-item {
        justify-content: unset;
        align-items: flex-end;
    }

    .tapper-left-box .user-info-details {
        position: absolute;
        top: 15px;
        left: 20px;
        text-align: left;
    }

        .tapper-left-box .user-info-details h2 {
            font-size: 15px;
            color: #3D2144;
        }

        .tapper-left-box .user-info-details p {
            font-size: 10px;
            color: rgba(61, 33, 68, 0.8);
        }

    .tapper-left-box .user-info-img-set .user-info-item {
        height: 74px;
        width: 74px;
    }

    .tapper-left-box .user-info-grade {
        box-shadow: unset;
        right: -19px;
    }

    .tapper-left-box .user-info-img-set {
        margin-left: 35px;
    }

    .tapper-left-box .brand-user-logo {
        position: relative;
        width: 55px;
    }

@media (min-width: 576px) {
    .user-info-modal,
    .overflow-box {
        width: 435px;
        max-width: 435px;
    }
}


/* chat page */

.chat-section {
    display: flex;
    width: 100%;
}

.chat-list {
    width: 260px;
    background-color: #fff;
    height: 100vh;
    z-index: 100;
    position: fixed;
    margin-left: -20px;
    box-shadow: 0px 3px 6px rgba(14, 49, 77, 0.1);
}

.chat-detail {
    width: calc(100% - 220px);
    margin-left: 245px;
    margin-right: -20px;
}

.chat-list .DSA-head {
    padding: 0 15px 0 20px;
}

.filter-btn {
    margin-left: auto;
    width: 28px;
    border: 0;
    height: 28px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #EEF0F5;
}

.chat-search-bar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #EEF0F5;
    background-image: url(../images/svg/search.svg);
    background-repeat: no-repeat;
    background-position: center right 7px;
    border: 1px solid transparent;
    outline: 0;
}

    .chat-search-bar::placeholder {
        color: transparent;
    }

.search-active {
    position: absolute;
    right: 15px;
    width: calc(100% - 60px);
    border-radius: 14px;
    padding-left: 10px;
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

    .search-active::placeholder {
        color: rgba(11, 32, 70, 0.5);
    }

.chat-back-btn {
    width: 30px;
    margin-right: 10px;
    display: none;
    background-color: transparent;
    border: 0;
}

    .chat-back-btn img {
        width: 20px;
    }

.add-span {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    background-color: #4A265A;
    color: #fff;
    justify-content: center;
}

.new-invite-btn {
    width: 100%;
    height: 48px;
    color: #0B2046;
    font-size: 15px;
    text-align: left;
    padding-left: 20px;
    background-color: rgba(74, 38, 90, 0.2);
    border: 0;
}

.user-active {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: rgba(242, 170, 76, 1);
    border: 1px solid rgba(233, 136, 61, 1);
}

.chat-people ul {
    padding: 0;
    margin: 0;
}

    .chat-people ul li {
        list-style-type: none;
    }

        .chat-people ul li a {
            display: flex;
            height: 48px;
            color: #0B2046;
            font-size: 15px;
            line-height: 20px;
            align-items: center;
            padding: 0 15px 0 20px;
            background-color: transparent;
            cursor:pointer;
        }

        .chat-people ul li.active a {
            background-color: rgba(245, 246, 249, 0.8);
            border-right: 3px solid rgba(74, 38, 90, 1);
            cursor: pointer;
        }

.user-active-item,
.user-active-item .chat-img {
    height: 28px;
    width: 28px;
    display: block;
}

.user-active.offline {
    background-color: rgba(179, 208, 226, 1);
    border: 1px solid rgba(147, 173, 190, 1);
}

.user-active-item {
    position: relative;
    margin-right: 12px;
}

    .user-active-item .chat-img {
        border-radius: 50%;
        overflow: hidden;
    }

        .user-active-item .chat-img img {
            width: 100%;
        }

.user-active {
    height: 14px;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: -7px;
    border-radius: 50%;
    background-color: #F2AA4C;
    border: 1px solid #E9883D;
}

    .user-active img {
       display:block;
       width:100%;
    }

.chat-badge {
    background-color: rgba(74, 38, 90, 1);
    height: 16px;
    width: 16px;
    text-align: center;
    border-radius: 50%;
    font-size: 10px;
    line-height: 16px;
    display: block;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.9);
}

.user-active-item .user-name,
.name-active .chat-img,
.chat-badge {
    display: none;
}

.name-active .user-name,
.badge-active .chat-badge {
    display: block;
}

.user-name {
    color: rgba(74, 38, 90, 1);
    font-size: 12px;
    display: block;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
    background-color: rgba(232, 235, 241, 1);
    height: 28px;
    width: 28px;
    border-radius: 50%;
}

.chat-detail .DSA-head {
    padding-left: 30px;
    border-bottom: 1px solid rgba(235, 235, 235, 1);
}

.DSA-head h2 .grade {
    font-size: 10px;
    vertical-align: text-top;
    margin-top: 3px;
    display: inline-block;
    color: rgba(40, 42, 58, 0.8);
}

.chat-history {
    padding: 30px 25px 0px 30px;
}

    .chat-history ul {
        padding: 0;
        margin: 0;
    }

        .chat-history ul li {
            list-style-type: none;
            display: flex;
            margin-bottom: 10px;
        }

.outgoing-msg .chat-box {
    margin-left: auto;
}

.chat-box > div {
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0px 3px 6px #1D20301A;
}

.chat-box p {
    color: rgba(40, 42, 58, 1);
    font-size: 13px;
    margin-bottom: 0;
    line-height: 18px;
}

.incoming-msg {
    width: auto;
    max-width: 65%;
}

    .incoming-msg .chat-box > div {
        background-color: #fff;
        border-radius: 0 15px 15px 15px;
    }

.outgoing-msg {
    width: auto;
    margin-left: auto;
    max-width: 65%;
}

    .outgoing-msg .chat-box > div p {
        color: #fff;
    }

    .outgoing-msg .chat-box > div {
        border-radius: 15px 0px 15px 15px;
        background-color: rgba(74, 38, 90, 0.6);
    }

    .outgoing-msg .user-active-item {
        display: none;
    }

.chat-box > p {
    color: rgba(40, 42, 58, 0.5);
    margin-bottom: 0;
    font-size: 10px;
    line-height: 13px;
}

.chat-sent-box {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #f5f6f9;
    width: calc(100% - 495px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.page-wrapper.toggled .chat-sent-box {
    width: calc(100% - 260px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.chat-sent-box textarea {
    resize: none;
    border: 0;
    width: 100%;
    height: 48px;
    box-shadow: 0px 3px 6px #0F16241A;
    border-radius: 22px;
    font-size: 13px;
    color: rgba(11, 32, 70, 1);
    line-height: 18px;
    padding: 15px 130px 15px 20px;
}

.message-textbox {
    resize: none;
    border: 0;
    width: 100%;
    height: 48px;
    box-shadow: 0px 3px 6px #0F16241A;
    border-radius: 22px;
    font-size: 13px;
    color: rgba(11, 32, 70, 1);
    line-height: 18px;
    padding: 15px 130px 15px 20px;
}

    .chat-sent-box textarea::placeholder {
        color: rgba(11, 32, 70, 0.5);
    }


    .chat-sent-box ul {
        padding: 0;
        margin: 0;
        position: absolute;
        bottom: 15px;
        width:100%;
    }

    .chat-sent-box ul li {
        list-style-type: none;
        display: flex;
        align-items:center;
        padding:0px 10px;
    }

        .chat-sent-box ul li button {
            border: 0;
            padding: 0;
            margin: 0 9px;
            background-color: transparent;
        }

            .chat-sent-box ul li button.chat-btn {
                border-radius: 50%;
                overflow: hidden;
                width: 33px;
                height: 33px;
                background-color: #EE992A;
                position:absolute;
                right:15px;
                bottom:7px;
                display:flex;
                align-items:center;
                justify-content:center;
            }

                .chat-sent-box ul li button.chat-btn img {
                    width: 18px;
                }

.chat-list .DSA-head .btn-group {
    margin-left: auto;
}

.chat-list .dropdown-menu.show {
    min-width: 120px;
    width: auto;
    padding: 10px 15px;
}

.chat-list .dropdown-menu li label {
    font-size: 13px;
}

.chat-list .DSA-head input[type="checkbox"] {
    margin-right: 10px;
}


/* */

.reset-btn {
    float: right;
    min-width: 50px;
    border: 0;
    background-color: #EE992A;
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
}

@media(max-width:1024px) {
    .chat-sent-box {
        width: calc(100% - 260px);
    }
}

@media(max-width:640px) {
    .chat-detail .DSA-head {
        padding-left: 15px;
    }

    .chat-section {
        margin-left: -20px;
        margin-right: -20px;
        width: unset;
    }

    .chat-back-btn {
        display: block;
    }

    .chat-list {
        width: 100%;
        margin-left: 0 !important;
    }

    .chat-detail {
        display: none;
        width: 100%;
        margin-left: 0 !important;
    }

    .incoming-msg,
    .outgoing-msg {
        max-width: 90%;
    }

    .chat-history ul li > span {
        display: none;
    }

    .chat-sent-box ul li button {
        margin: 0 6px;
    }

    .chat-sent-box ul {
        position: absolute;
        bottom: 12px;
        right: 0px;
        top: unset;
    }

        .chat-sent-box ul li {
            background-color: #f5f6f9;
        }
        .chat-sent-box textarea {
            padding: 15px 117px 15px 20px;
        }

    .chat-sent-box {
        padding: 10px;
        width: 100% !important;
    }
    .wdt-emoji-popup{
        bottom:80px !important;
    }
}

.share-btn {
    background-color: transparent;
    border: 0;
}


/* crop modal */

.cropper-container {
    margin: 20px auto 20px auto;
}

.crop-modal h5 {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 0;
}

.crop-modal .close img {
    width: 12px;
}

#image{
   max-width:100%;
}

.only-timepicker .datepicker--nav,
.only-timepicker .datepicker--content {
    display: none;
}

.only-timepicker.active {
    width: 200px;
}

    .only-timepicker.active .datepicker--time-current {
        margin-left: 5px;
        margin-right: 5px;
    }

    .only-timepicker.active .datepicker--time-row input {
        width: 110px;
    }

.only-timepicker .datepicker--time {
    border-top: none;
}

.home-banner-modal .modal-content {
    padding: 15px;
    border-radius: 10px;
    min-height: 320px;
    overflow: hidden;
}

.banner-img {
    margin-bottom: 15px;
    height: 215px;
}

    .banner-img img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

.home-banner-modal .form-content label {
    color: rgba(74, 38, 90, 0.9);
}

@media (min-width: 576px) {
    .home-banner-modal .modal-dialog {
        max-width: 950px;
        margin: 1.75rem auto;
    }

    #reject-box .modal-dialog {
        max-width: 290px;
    }
}

.checkbox-toggle {
    isolation: isolate;
    position: relative;
    height: 14px;
    margin-top: 10px;
    width: 30px;
    border-radius: 7px;
    overflow: hidden;
    background-color: #808080;
}

.checkbox-toggle-state:checked + .checkbox-toggle {
    background-color: #4E9730;
}

.checkbox-toggle-state {
    display: none;
}

.checkbox-indicator {
    height: 14px;
    width: 15px;
    box-shadow: 0px 0px 3px #00000029;
    background: #fff;
    border: 2px solid #808080;
    border-radius: 15px;
    transform: translate3d(0%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.85, 0.05, 0.18, 1.35);
}

.checkbox-toggle-state:checked + .checkbox-toggle .checkbox-indicator {
    border: 2px solid #4E9730;
}

.checkbox-toggle-state:checked + .checkbox-toggle .checkbox-indicator {
    /* transform: translate3d(25%, 0, 0); */
    transform: translate3d(100%, 0, 0);
}

.input-reload {
    color: #F2AA4C;
    font-size: 10px;
    width: 100%;
    text-align: center;
    line-height: 13px
}

    .input-reload input {
        opacity: 0;
        position: absolute;
        width: 100%;
        left: 0;
    }


.play-btn-img {
    width: 10px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(132deg) brightness(105%) contrast(105%);
}

.reload-img {
    width: 10px;
    filter: invert(64%) sepia(52%) saturate(530%) hue-rotate(351deg) brightness(103%) contrast(90%);
    margin-right: 3px;
}

.add-notify-btn {
    height: 40px;
    width: 40px;
    background-color: #ed992a;
    border: 0;
    font-size: 20px;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
}

.btn-primary {
    background-color: rgba(248, 127, 14, 1);
    border-radius: 0;
    position: relative;
    font-weight: 400;
    color: #fff;
    font-size: 13px;
    border: 0;
    margin-left: auto;
    padding: 7px 15px;
    box-shadow: 0 3px 6px rgba(25, 31, 36, 0.1);
    transition: all 0.2s ease;
}

    .btn-primary:hover {
        background-color: rgba(248, 127, 14, 1);
    }
.btn-secondary {
    color: #fff;
    border: 0;
    font-size: 13px;
    background-color: #8f959a;
    /* border-color: #6c757d; */
    border-radius: 0;
}

.modal-delete .modal-header {
    padding: 10px 15px;
}

.modal-delete .modal-body {
    padding: 15px;
}

.modal-delete .modal-title {
    font-size: 16px;
}

.modal-delete .modal-body,
.modal-delete .btn {
    font-size: 14px;
}

.modal-delete .modal-dialog {
    max-width: 340px;
}

label.error {
    font-size: 12px;
    /*position: absolute;
    right: 10px;
    top: -14px;*/
    color: red;
    z-index: 1;
    display: block;
    float: right;
}

.alert {
    z-index: 9999999;
}

.alert-success {
    background-color: rgba(232, 255, 209, 1);
    color: rgba(78, 151, 48, 1);
    border: 0;
    font-size: 14px;
}

    .alert-success .close {
        /* color: #282A3A; */
        color: rgba(78, 151, 48, 1);
        opacity: 1;
        font-weight: 400;
        text-shadow: unset;
    }

.alert-danger {
    border: 0;
    background-color: rgba(255, 229, 231, 0.8);
    font-size: 14px;
}

    .alert-danger .close {
        opacity: 1;
        color: #721c24;
        font-weight: 400;
        text-shadow: unset;
    }


/*
The loaders use CSS custom properties (variables) to control the attributes of the loaders
*/

:root {
    --loader-width: 70px;
    --loader-height: 70px;
    --loader-color-primary: hsl(283, 23%, 36%);
    --loader-color-secondary: #eee;
    --line-width: 3px;
    --animation-duration: 2s;
    --loader-initial-scale: 0.1;
}

.loader,
.loader:before,
.loader:after {
    box-sizing: border-box;
    flex-grow: 0;
    flex-shrink: 0;
}
/*
In order to get optimal results, please only change the 
variables above and don't change anything in the actual loader code
*/
@keyframes momentum {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.loader.quantum-spinner {
    --primary-circle-offset: calc(((var(--loader-width, 100px) * 0.2) / 2) - var(--line-width, 4px));
    --secondary-circle-offset: calc(((var(--loader-width, 100px) * 0.4) / 2) - var(--line-width, 4px));
    /*- (var(--line-width,4px) * 2)*/
    /* position: relative; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--loader-width, 100px);
    height: var(--loader-height, 100px);
    transform-origin: center center;
    border-radius: 50%;
    border: var(--line-width, 4px) solid rgba(0, 0, 0, 0);
    border-top-color: var(--loader-color-primary, #33f);
    animation: momentum var(--animation-duration, 1s) linear infinite;
}

.quantum-spinner:before {
    content: "";
    position: absolute;
    transform-origin: center center;
    top: var(--primary-circle-offset, 10px);
    left: var(--primary-circle-offset, 10px);
    width: calc(var(--loader-width, 100px) * 0.8);
    height: calc(var(--loader-height, 100px) * 0.8);
    border-radius: 50%;
    border: var(--line-width, 4px) solid rgba(0, 0, 0, 0);
    border-top-color: var(--loader-color-primary, #33f);
    opacity: 0.7;
    filter: hue-rotate(3eg);
    animation: momentum calc(var(--animation-duration, 1s) * 2) linear infinite;
}

.quantum-spinner:after {
    content: "";
    position: absolute;
    top: var(--secondary-circle-offset, 20px);
    left: var(--secondary-circle-offset, 20px);
    width: calc(var(--loader-width, 100px) * 0.6);
    height: calc(var(--loader-height, 100px) * 0.6);
    border-radius: 50%;
    transform-origin: center center;
    border: var(--line-width, 4px) solid rgba(0, 0, 0, 0);
    border-top-color: var(--loader-color-primary, #33f);
    opacity: 0.3;
    filter: hue-rotate(6eg);
    animation: momentum var(--animation-duration, 1s) linear infinite;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #fafbfdcc;
}


aside .dropdown-toggle::after {
    height: 14px;
    width: 14px;
    position: absolute;
    border:0 !important;
    background-image: url(../images/dropdown_arrow.png) !important;
    background-repeat: no-repeat !important;
    background-size: 14px;
    background-position: right 14px center;
    content: '';
    display: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: 17px;
    top: 26px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.dropdown-menu-right .dropdown-menu.show {
    top: -20px !important;
    right: 11px;
    left: auto !important;
}

aside .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
    right: 11px;
    top: 29px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.SbmtBtn {
    border: 1px solid transparent;
    height: 30px;
    padding: 0 20px;
    font-size: 12px;
    background-color: #ed941f;
    color: #fff;
    font-weight: 500;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.min-heightSetup {
    min-height: 70vh;
}



.chat-list .new-invite {
    width: 90%;
}

.chat-list .invite ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

    .chat-list .invite ul > li > button {
        border: none;
        background-color: #4a265a;
        color: #fff;
        padding: 3px 10px;
        border-radius: 2px;
    }

    .chat-list .invite ul > li > input:focus{
        outline:none;
    }

    .chat-list .invite.show {
        width: 100%;
        z-index: 1;
    }

.invite span {
    font-size: 12px;
    color: red;
    padding-top: 10px;
}


.chat-sent-box ul li > input {
    position: absolute;
    z-index: -1;
    border: none;
    background-color: rgba(245, 246, 249, 1);
    margin-left:44px;
}

.wdt-emoji-picker {
    position: absolute;
    right: 70px !important;
    top: 12px !important; 
    width: 19px;
    height: 19px;
}


.message-textbox:focus{
    outline:none;
}

.emoji-scroll{
    position:relative;
    bottom:247px;
}

.wdt-emoji-sections {
    background-color: rgba(245, 246, 249, 1) !important;
}
/*.wdt-emoji-popup, .wdt-emoji-popup * {
    position: relative;
    bottom: 247px;
    background-color: #f5f6f9;
}*/

.chat-sent-box ul li > input:focus{
    outline: none;
}


#preloader {
    background-color: #fafbfdcc;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    margin-left:235px;
    z-index:999;
}

/*.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #907b9b;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;*/ /* Safari */
    /*animation: spin 2s linear infinite;
}*/

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.aligning-file{
    position:relative;
    bottom:3px;
}

.bg-chat{
    background-color:#fff;
}

.pdf-image {
    display: block;
    width: 40%;
    margin: 0 auto;
}

.loading-btn{
    display:flex;
    align-items:center;
}

.laoding-svg{
    width:20px;
}

.loading-btn > img {
    margin-right: 5px;
    width: 20px;
}

/*button & input disabled css*/ 

/*.disabled-state{
    cursor:not-allowed !important;
    opacity:0.5;
}

.disabled-state:hover{
    opacity:0.5;
}*/

.stage{
    position:absolute;
    bottom:6px;
    right:42px;
}

.dot-flashing {
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #282A3A;
    color: #282A3A;
    animation: dotFlashing 1s infinite linear alternate;
    animation-delay: .5s;
}

.dot-flashing::before, .dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

    .dot-flashing::before {
        left: -15px;
        width: 5px;
        height: 5px;
        border-radius: 5px;
        background-color: #282A3A;
        color: #282A3A;
        animation: dotFlashing 1s infinite alternate;
        animation-delay: 0s;
    }

    .dot-flashing::after {
        left: 15px;
        width: 5px;
        height: 5px;
        border-radius: 5px;
        background-color: #282A3A;
        color: #282A3A;
        animation: dotFlashing 1s infinite alternate;
        animation-delay: 1s;
    }

@keyframes dotFlashing {
    0% {
        background-color: #282A3A;
    }
  50%,
  100% {
    background-color: #ebe6ff;
  }
}

@media only screen and (max-width:576px){
    .stage {
        position: absolute;
        bottom: 3px !important;
        right: 42px;
    }
}

#loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right:5px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}


.hz-line {
    background-color: #E5E5E550;
}

#logout-btm{
    position:absolute;
    bottom:0px;
    width:100%;
    left:0px;
    padding:0px 0px 10px 25px; 
}

    #logout-btm a {
        display: block;
        color: #BAADBA;
        font-size:14px;
    }

        #logout-btm a:hover{
            color:#BAADBA;
        }

        .map-location {
            color: #bbb !important;
            margin-left: 12px;
        }

@media only screen and (max-width:576px){
    .map-location{
        margin-left:0px;
        color:lightgrey;
    }
}

/* Demo video */

.demo-video button {
    padding: 10px 24px 5px 15px;
}

.demo-video1 img{
    width:100%;
    display:block;
}

.watch-demo {
    background-color: #f2aa4c;
    text-align: center;
    color: #fff !important;
}

    .watch-demo img {
        height: 32px;
        width: 39px;
        margin-right: 10px;
    }

.demo-video1 video{
    width:100%;
    height:auto;
}

.support-footer{
    position:absolute;
    right:0;
    bottom:0;
}

    .support-footer span {
        font-size: 13px;
        color: rgb(181 187 202 / 1);
        font-weight: bold;
    }