@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;1,700&display=swap');
:root {
    --primary-color: #A7338E;
    --white-color: #fff;
    --black-color: #000000;
    --smoke-white: #f5f5f5;
    --sucess-color: #008000;
    --home-section: #FEFEFE;
    --color-primary: #7380ec;
    --color-danger: #ff7782;
    --color-success: #41f1b6;
    --color-warning: #ffbb55;
    --color-white: #fff;
    --color-info-dark: #7d8da1;
    --color-info-light: #dce1eb;
    --color-dark: #363949;
    --color-light: #rgba(132, 139, 200, 0.18);
    --color-primary-variant: #111e88;
    --color-dark-variant: #677483;
    --color-background: #f6f6f9;
    --color-black: #0000;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    font-family: 'Lato', sans-serif;
    overflow: clip;
}

th {
    font-size: 14px;
}

tr {
    font-size: 14px !important;
}



.disabled-link {
    pointer-events: none;
}

#loader {
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: 50%;
    margin-top: -50px;
    background-image: url(../images/loading-gif.gif);
    z-index: 999;
    height: 198px;
    width: 183px;
    background-size: 30%;
    background-repeat: no-repeat;
}

#overlay {
    position: fixed;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
}
/* login start */
.main_logo {
    position: absolute;
    left: 21px;
    top: 21px;
}

.login-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-heading h1 {
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.main-heading h2 {
    font-size: 16px;
    font-weight: 400;
    color: #9E9E9E;
    text-align: center;
}

.main-heading h1 span {
    color: var(--primary-color);
}

.main-heading p {
    font-size: 16px;
    font-weight: 400;
    color: #9E9E9E;
}

.main-heading h3 span {
    padding-right: 10px;
}

.main-heading h3 {
    font-size: 18px;
    font-weight: 400;
    color: #9E9E9E;
    display: flex;
    justify-content: center;
    padding-top: 18px;
}

    .main-heading h3 a {
        text-decoration: none;
        color: #9E9E9E;
    }

.login-image {
    width: 100%;
    height: 100vh;
    background-image: url(../images/login-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    float: right;
}

.emails-center h1,
h5 {
    text-align: center;
}

.login-buttons.reset-button a {
    margin-top: 10px;
}

input {
    width: 100%;
    border: 1px solid #9E9E9E;
    border-radius: 4px;
    background-color: #F6F6F6;

    outline: none;
    padding: 5px;
    box-sizing: border-box;
 
}

 

    input[type="password"]:focus {
        border-color: #eedee9;
        box-shadow: 0 0 8px 0 #eedee9;
    }

    input[type="text"]:focus {
        border-color: #eedee9;
        box-shadow: 0 0 8px 0 #eedee9;
    }

.inputWithIcon input[type="text"] {
    padding-left: 10px;
    padding-right: 50px
}

.inputWithIcon {
    position: relative;
    width: 390px;
    margin: 18px 0;
    display: flex;
    align-items: center;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--primary-color);
}

.inputWithIcon i {
    position: absolute;
    right: 16px;
  
    font-size: 25px;
   
    color: #919191;
    transition: 0.3s;
}

    .inputWithIcon i.fa-envelope {
        font-size: 20px;
    }

.inputWithIcon input[type="text"]:focus + i {
    color: #eedee9;
}

.inputWithIcon.inputIconBg i {
    background-color: #aaa;
    color: #fff;
    padding: 9px 4px;
    border-radius: 4px 0 0 4px;
}

.inputWithIcon.inputIconBg input[type="text"]:focus + i {
    color: #fff;
    background-color: dodgerBlue;
}

.form-check-input {
    padding: 9px;
}

.box-form {
    display: flex;
    justify-content: space-between;

}

    .box-form p {
        color: var(--primary-color);
        font-size: 15px;
        margin: 0;
    }

    .box-form label {
        display: flex;
        align-items: center;
    }

    .box-form a {
        color: var(--primary-color);
        text-decoration: none;
    }

    .box-form label span.text-checkbox {
        padding-left: 6px;
    }


.login-buttons {
    margin: 0;
}

    .login-buttons a {
        width: 100%;
        background-color: var(--primary-color);
        border: var(--primary-color);
        padding: 10px;
        margin-top: 20px;
        font-weight: 700;
        color: #ffff;
    }

        .login-buttons a:focus-visible {
            width: 100%;
            background-color: var(--primary-color);
            border: var(--primary-color);
            padding: 10px;
            margin-top: 12px;
            font-weight: 700;
            color: #ffff;
        }

        .login-buttons a:hover {
            width: 100%;
            background-color: var(--primary-color);
            border: var(--primary-color);
            color: #fff;
        }


        .login-buttons a.btn:active {
            width: 100%;
            background-color: var(--primary-color);
            border: var(--primary-color);
            color: #fff;
        }

.main-heading button {
    width: 100%;
    background-color: var(--primary-color);
    border: var(--primary-color);
    padding: 10px;
    margin-top: 12px;
    color: white;
    font-weight: 500;
    font-size: 20px;
}

  
    .main-heading button a {
        color: #ffffff;
        text-decoration: none;
    }

    .main-heading button:hover {
        width: 100%;
        background-color: var(--primary-color);
        border: var(--primary-color);
        padding: 10px;
    }

.email-center h5 {
    font-size: 18px;
    color: #9E9E9E;
}

.form-field .down-sign {
    text-align: center;
    padding-top: 12px;
    font-size: 16px;
    font-weight: 400;
}

    .form-field .down-sign span {
        color: var(--primary-color);
    }

        .form-field .down-sign span a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 700;
        }

input[type="password"] {
    padding-left: 10px;
    padding-right: 50px;
}

/*login End */


/* Left Menu Start */


.wrapper {
    display: flex;
    min-height: 100%;
}

.dash-center {
    padding-left: 12px;
    padding-right: 12px;
}

.dash-bg {
    padding: 17px 0px;
}

.body-center-bg {
    background-color: #F3F4FF;
  
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.dash-donation {
    margin: 0px;
}


.company-body .card-body {
    height: calc(90vh - 172px);
    overflow-y: auto;
}



.dash-donation h2 {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    color: #000000;
    margin: 32px 0px 32px 0px;
}

.dash-donation h3 {
    font-size: 21px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    color: #000000;
    padding: 20px 24px;
    background-color: #E7EFFA;
    margin-bottom: 20px;
    border-radius: 6px;
}

.strick {
    color: red;
}

.dash-donation h4 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    color: #000000;
    padding: 10px 0px;
    margin-bottom: 20px;
}

.dash-member {
    padding: 0px 14px;
    background-color: #ffffff;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
    border-radius: 10px;
    margin-left: 0px;
    margin-right: 0px;
}

    .dash-member h2 {
        font-size: 21px;
        font-weight: bold;
        font-family: 'Lato', sans-serif;
        color: #475799;
        margin: 32px 0px;
    }

.sidebar {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    height: 100vh;
    width: 260px;
    position: sticky;
    top: 0px;
    left: 0px;
    background: var(--primary-color);
    background-size: cover;
    z-index: 100;
    transition: all 0.5s ease;
}

    .sidebar.close, .fullwidthPanel .sidebar {
        width: 78px;
        opacity: 1;
      

        height: 100vh;
    }

    .sidebar .logo-details {
        height: 89px;
        width: 100%;
    
        align-items: center;
        background-color: #ffffff;
    }

        .sidebar .logo-details i {
            font-size: 30px;
            color: #fff;
            height: 50px;
            min-width: 20px;
            text-align: center;
            line-height: 50px;
            margin: 0px;
        }

        .sidebar .logo-details .img-1 {
            color: #fff;
            height: 72px;
       
            text-align: center;
            line-height: 50px;
            margin-left: 25px;
        }
        .sidebar .logo-details .img-2 {
            color: #fff;
            height: 72px;
            
            text-align: center;
            line-height: 50px;
            margin-left: 0px;
        }
            .sidebar .logo-details .logo_name {
                font-size: 22px;
                color: #fff;
                font-weight: 600;
                transition: 0.3s ease;
                transition-delay: 0.1s;
            }

    .sidebar.close .logo-details .logo_name, .fullwidthPanel .sidebar .logo-details .logo_name {
        transition-delay: 0s;
        opacity: 0;
        pointer-events: none;
    }

    .sidebar .company-name .user_logo {
    }

    .sidebar .nav-links {
        padding: 30px 0 70px 0;
        overflow: auto;
        height: 100vh;
    }

    .sidebar.close .nav-links, .fullwidthPanel .sidebar .nav-links {
        overflow: visible;
    }

    .sidebar .nav-links::-webkit-scrollbar {
        display: none;
    }

    .sidebar .nav-links li {
        position: relative;
        list-style: none;
        transition: all 0.4s ease;
    }

        .sidebar .nav-links li:hover,
        .sidebar .nav-links li.active {
            background: rgb(131, 56, 116);
        }

        .sidebar .nav-links li .icon-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    .sidebar.close .nav-links li .icon-link, .fullwidthPanel .sidebar .nav-links li .icon-link {
        display: block
    }


    .sidebar .nav-links li i {
        height: 50px;
        min-width: 55px;
        text-align: center;
        line-height: 50px;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sidebar .nav-links li img {
        height: 20px;
        min-width: 55px;
        text-align: center;
        line-height: 50px;
        padding: 0px 0px;
        margin: 20px 0px;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sidebar .nav-links li.showMenu i.arrow {
        transform: rotate(-180deg);
    }

    .sidebar.close .nav-links i.arrow, .fullwidthPanel .sidebar .nav-links i.arrow {
        display: none;
    }

    .sidebar .nav-links li a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

        .sidebar .nav-links li a .link_name {
            font-size: 16px;
            font-weight: 400;
            color: #fff;
            transition: all 0.4s ease;
        }

    .sidebar.close .nav-links li a .link_name, .fullwidthPanel .sidebar .nav-links li a .link_name {
        opacity: 0;
        pointer-events: none;
    }

    .sidebar .nav-links li .sub-menu {
        padding: 10px 6px 10px 55px;
        margin-top: -10px;
        background: var(--primary-color);
        display: none;
    }

    .sidebar .nav-links li.showMenu .sub-menu {
        display: block;
    }

    .sidebar .nav-links li .sub-menu a {
        color: #fff;
        font-size: 15px;
        padding: 5px 0;
        white-space: nowrap;
        opacity: 0.6;
        transition: all 0.3s ease;
    }

        .sidebar .nav-links li .sub-menu a:hover {
            opacity: 1;
        }

    .sidebar.close .nav-links li .sub-menu, .fullwidthPanel .sidebar .nav-links li .sub-menu {
        position: absolute;
        left: 100%;
        top: -10px;
        margin-top: 0;
        padding: 10px 20px;
        border-radius: 0 6px 6px 0;
        opacity: 0;
        display: block;
        pointer-events: none;
        transition: 0s;
    }

    .sidebar.close .nav-links li:hover .sub-menu, .fullwidthPanel .sidebar .nav-links li:hover .sub-menu {
        top: 0;
        opacity: 1;
        pointer-events: auto;
        transition: all 0.4s ease;
    }

    .sidebar .nav-links li .sub-menu .link_name {
        display: none;
    }

    .sidebar.close .nav-links li .sub-menu .link_name, .fullwidthPanel .sidebar .nav-links li .sub-menu .link_name {
        font-size: 18px;
        opacity: 1;
        display: block;
    }

    .sidebar .nav-links li .sub-menu.blank {
        opacity: 1;
        pointer-events: auto;
        padding: 3px 20px 6px 16px;
        opacity: 0;
        pointer-events: none;
    }

    .sidebar .nav-links li:hover .sub-menu.blank {
        top: 50%;
        transform: translateY(-50%);
    }

    .sidebar .profile-details {
        position: fixed;
        bottom: 0;
        width: 260px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #1d1b31;
        padding: 12px 0;
        transition: all 0.5s ease;
    }

    .sidebar.close .profile-details, .fullwidthPanel .sidebar .profile-details {
        background: none;
    }

    .sidebar.close .profile-details, .fullwidthPanel .sidebar .profile-details {
        width: 78px;
    }

    .sidebar .profile-details .profile-content {
        display: flex;
        align-items: center;
    }

    .sidebar .profile-details img {
        height: 52px;
        width: 52px;
        object-fit: cover;
        border-radius: 16px;
        margin: 0 14px 0 12px;
        background: #1d1b31;
        transition: all 0.5s ease;
    }

    .sidebar.close .profile-details img, .fullwidthPanel .sidebar .profile-details img {
        padding: 10px;
    }

    .sidebar .profile-details .profile_name,
    .sidebar .profile-details .job {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        white-space: nowrap;
    }

    .sidebar.close .profile-details i,
    .sidebar.close .profile-details .profile_name,
    .sidebar.close .profile-details .job,
    .fullwidthPanel .sidebar .profile-details i,
    .fullwidthPanel .sidebar .profile-details .profile_name,
    .fullwidthPanel .sidebar .profile-details .job {
        display: none;
    }

    .sidebar .profile-details .job {
        font-size: 12px;
    }

.home-section {
    position: relative;
    background: var(--home-section);
  
    left: 0px;
    width: calc(100% - 100px);
    transition: all 0.5s ease;
}

.sidebar.close ~ .home-section, .fullwidthPanel .sidebar ~ .home-section {
    left: 0px;
    width: calc(100% - 78px);
}
.member-live-streaming.d-flex.justify-content-between.align-items-center {
    flex-wrap: wrap;
}

.home-section .home-content {
    height: 85px;
    display: flex;
    align-items: center;
    background-color: var(--color-white);
}

    .home-section .home-content .bx-menu,
    .home-section .home-content .text {
        color: #11101d;
        font-size: 35px;
    }

.home-middle {
    display: flex;
    align-items: center;
    background-color: var(--color-white);
}


.graph_heading {
    display: flex;
    justify-content: space-between;
    margin: 12px 0px;
}

.primary_head {
    border: 1px solid #575757;
    padding: 12px 36px;
    display: flex;
    align-items: center;
}

    .primary_head:hover {
        border: 1px solid #575757;
    }

.graph_heading button {
    background: #fff;
    border-radius: 6px;
}


.sidebar .nav-links li .custom-icon {
    height: 50px;
    min-width: 55px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 13px;
}

.sidebar .nav-links li .donation-icon {
    height: 50px;
    min-width: 55px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 13px;
}

.sidebar .nav-links li .annous-icon {
    height: 50px;
    min-width: 55px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 13px;
}

.home-section .home-content .fa-align-left {
    margin: 0 15px;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 100;
}

.home-section .home-content .text {
    font-size: 26px;
    font-weight: 600;
}

.dash-header {
    display: flex;
    padding-bottom: 5px;
    position: sticky;
    top: 0;
    z-index: 2;
    justify-content: space-between;
    background-color: var(--color-white);
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
}

.profile-text {
}

.img-circular {
    width: 46px;
    height: 46px;
    background-size: cover;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
}

.home-right {
    display: flex;
    align-items: center;
}

    .home-right ul.dropdown-menu.show {
        display: block;
        margin: 0px 0px !important;
    }

.filter {
    top: 100%;
    left: 0;
    display: block;
    text-align: left;
    line-height: 1.5;
}

button#dropdownMenuOffset {
    background-color: #ffffff;
    border: #ffffff;
}


.dash-body {
    margin-top: 32px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .dash-body h1 {
        font-size: 24px;
        font-weight: bold;
        font-family: 'Lato', sans-serif;
    }

h2.main-heading {
    font-size: 21px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    color: #475799;
    margin: 6px 0px 10px 0px;
}

.icons-section img {
    width: 53px;
}

.box-section {
    background: #fff;
    display: flex;
    align-items: center;
    min-height: 100px;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
  
    height: 100%;
}

.content-box {
    margin-left: 14px;
}

    .content-box p {
        font-size: 16px;
        font-weight: 700;
        color: #153B96;
        padding: 0px;
        margin: 5px 2px;
    }

    .content-box h3 {
        font-size: 14px;
        font-weight: 700;
        color: #000000;
        padding: 0px;
        margin: 5px 2px;
    }

.dash_cards {
    margin-top: 35px;
}

.dash-member .card {
    border: 0;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
    border: 1px solid #f9f9f9;
}

.dash-donation .card {
    border: 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 16%);
    border: 1px solid #f9f9f9;
}

.bottom_bank {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 22px;
}

.box-shadow {
    border: 0;
    box-shadow: 0 1px 4px rgb(0 0 0 / 10%);
    border: 1px solid #f9f9f9;
    border-radius: 4px;
}

.main-bank {
    padding: 0px 20px 20px 20px;
}

    .main-bank h4 {
        padding-bottom: 0px;
        padding-top: 26px;
    }

    .main-bank h5 {
        font-weight: 700;
    }

.nofication a {
    padding-right: 20px;
    color: var(--primary-color);
    font-size: 21px;
}

.dashboard_button {
    background-color: var(--primary-color);
    border: var(--primary-color);
    padding: 12px 26px;
    border-radius: 6px;
    color: #fff;
}

    .dashboard_button:hover {
        background-color: var(--primary-color);
        border: var(--primary-color);
    }

.icon_manage {
    margin: 0;
}

    .icon_manage i.fa.fa-pencil-square-o {
        padding-right: 14px;
        font-size: 16px;
    }

    .icon_manage i.fa.fa-pencil-square-o {
        padding-right: 14px;
        font-size: 16px;
    }

    .icon_manage i.fa.fa-key {
        padding-right: 14px;
        font-size: 16px;
    }

    .icon_manage i.fa.fa-upload {
        padding-right: 14px;
        font-size: 16px;
    }

    .icon_manage h6 {
        font-size: 18px;
        font-weight: 700;
    }

    .icon_manage a.dropdown-item:hover {
        background-color: var(--primary-color);
        color: #fff;
    }

/* Left Menu end */

/* Company ragister Start */
.dash-company {
    padding-left: 26px;
    padding-right: 26px;
    background-color: #F3F4FF;
     height: calc(100vh - 100px); 
}


.company-body h1 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    margin-bottom: 16px;
    padding-top: 26px;
}

.header-color {
    font-family: 'Lato', sans-serif;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    padding: 0.75rem 1.25rem;
}

.field-name h3 {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 10px;
}

.field-name h4 {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 10px;
}

.field-name .form-label {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    text-shadow: 0 0 #000;
}

.field-name .form-control {
    line-height: 2;
}

.field-name .form-select {
    line-height: 2;
}

@-moz-document url-prefix() {
    .field-name .form-select {
        line-height: 2;
        padding: 10px 6px;
    }
}

.input-button {
    justify-content: flex-end;
    display: flex;
}

    .input-button a {
        background-color: var(--primary-color);
        padding: 10px 30px;
        border-radius: 6px;
        color: #ffffff;
        text-decoration: none;
        height: 100%;
    }

        .input-button a:nth-child(2) {
            background-color: #6c757d !important;
            padding: 10px 30px;
            border-radius: 6px;
            color: #ffffff;
            text-decoration: none;
            height: 100%;
            border: none;
        }

            .input-button a:nth-child(2):hover {
                background-color: #cbcbcb;
                padding: 10px 30px;
                border-radius: 6px;
                color: #ffffff;
                text-decoration: none;
            }

        .input-button a:hover {
            background-color: var(--primary-color);
        }

.field-name .form-control:focus {
    border-color: #eedee9;
    box-shadow: 0 0 8px 0 #eedee9;
}

.field-name .form-select:focus {
    border-color: #eedee9;
    box-shadow: 0 0 8px 0 #eedee9;
}

/* Company ragister end */

/* Company ragister table start */
.table-data-bg {
    background-color: var(--primary-color);
    color: #fff;
}

form-control
.pagination .active > .page-link,
.page-link.active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.pagination .next a.page-link,
.pagination .previous .page-link {
    font-size: 0;
    color: var(--primary-color);
}

    .pagination .next a.page-link:before,
    .pagination .previous a.page-link:before {
        content: "\f104";
        font-family: 'FontAwesome';
        font-size: 16px;
    }

#company_detail tr th {
    font-size: 16px;
    font-weight: 400;
}

#member_detail tr th {
    font-size: 16px;
    font-weight: 400;
}

#role-list tr th {
    font-size: 16px;
    font-weight: 400;
}

.pagination .next a.page-link:before {
    content: "\f105";
}

.write-pop-up {
    text-align: center;
    line-height: 30px;
}

    .write-pop-up svg {
        width: 60px;
        padding-bottom: 10px;
    }

.popup-content .modal-header {
    border: 0;
}

.popup-content button {
    border: 1px solid #000;
    border-radius: 30px;
    font-size: 12px;
}

span.status {

    color: #21B731;
  
}

.status-yellow {

    color: #ffc63f;

}

.status-red {

    color: #FF2625;
  
}

.field-name .form-control.is-valid, .was-validated .form-control:valid {
    border-color: #ced4da !important;
    background-image: none;
}

    .field-name .form-control.is-valid:focus, .was-validated .form-control:valid:focus {
        border-color: #eedee9;
        box-shadow: 0 0 8px 0 #eedee9;
    }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.pop-button a {
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
}

    .pop-button a:nth-child(2) {
        background-color: #afafaf;
        padding: 10px 20px;
        border-radius: 6px;
        color: #ffffff;
        text-decoration: none;
    }

.alert i {
    margin-right: 5px;
}

.check-padding {
    padding-top: 2px;
}
/* Company ragister table end */

/* Members table Start */
.add_member {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}

.members-add a {
    color: #ffffff;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}

a.page-link {
    color: var(--primary-color);
}

.members-add a:hover {
    background-color: var(--primary-color);
}

.manege-data td a {
    padding: 0px 4px;
   /* font-size: 20px;*/
    color: #000;
    text-decoration: none;
}

    .manege-data td a:nth-child(2) {
        color: #E83F54;
        /*font-size: 20px;*/
    }
/* Members table end */

/* User profile  Start */

.profile-img {
    text-align: center;
    margin-bottom: 15%;
    margin-top: 10%;
}

    .profile-img img {
        width: 90%;
        height: 100%;
    }

    .profile-img .file input {
        position: absolute;
        opacity: 0;
        right: 0;
        top: 0;
    }

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

#btnDonationPopupclose {
    margin-top: 20px;
}

.profile-img .file {
    position: relative;
    overflow: hidden;
    margin-top: -20%;
    width: 70%;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    background: var(--primary-color);
    color: #fff;
}

    .profile-img .file:hover {
        background: var(--primary-color);
    }

.profile-button-pr2 {
    margin-left: 10px;
}
/* User profile end */

/* Calender Start */
#Calendars {
 
    width: 100%;

}

.card-body.calendarBody {
    overflow-x: auto;
    max-height: 730px;
}

.fc-event {
    background: #df31a8;
    border-color: #e131a9;
}
/* Calender End */
.marque-width {
    width: 100%;
}



.dash-body h1 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
}

.dashboard_button {
    background-color: var(--primary-color);
    border: var(--primary-color);
    padding: 12px 26px;
    border-radius: 6px;
    color: #fff;
}

.members-add a {
    color: white !important;
    border: none !important;
}
/* ----------Donation CSS-----------  */



.amount-card {
    margin-left: 20px;
}

.card-number {
    margin-left: 20px;
}

.dash-donation {
    margin: 0px;
}

    .dash-donation h2 {
        font-size: 24px;
        font-weight: bold;
        font-family: 'Lato', sans-serif;
        color: #000000;
        margin: 32px 0px 32px 0px;
    }

    .dash-donation h3 {
        font-size: 21px;
        font-weight: bold;
        font-family: 'Lato', sans-serif;
        color: #000000;
        padding: 20px 24px;
        background-color: #E7EFFA;
        margin-bottom: 20px;
    }

.strick {
    color: red;
}

.dash-donation h4 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    color: #000000;
    padding: 10px 0px;
    margin-bottom: 20px;
}





.graph_heading {
    display: flex;
    justify-content: space-between;
    margin: 12px 0px;
}

.primary_head {
    border: 1px solid #575757;
    padding: 12px 36px;
    display: flex;
    align-items: center;
}

    .primary_head:hover {
        border: 1px solid #575757;
    }

.graph_heading button {
    background: #fff;
    border-radius: 6px;
}


/* Calender End */



/* Calender End */
#myModal {
    backdrop-filter: brightness(0.5);
    /* width: 50%; */
}

.modal-content.width {
    width: max-content;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.changeps .login-center {
    height: auto;
    padding: 0px 5px 15px 0px;
}

.modal-content.width span.close {
    font-size: 30px;
    display: flex;
    position: absolute;
    justify-content: end;
    top: 0px;
    right: 10px;
    cursor: pointer !important;

}

.heading_cp {
    padding: 15px 0px 0px 20px;
    color: var(--primary-color);
}

    .heading_cp span {
        color: #000;
    }


.customModal_Header {
    background-color: #c5329f;
    padding: 15px;
}

    .customModal_Header h1 {
        font-size: 20px;
        color: #fff;
        font-weight: 500;
    }

    .customModal_Header button {
        background-color: transparent;
        opacity: 1;
        color: #fff;
        border: none;
    }


.modalTitle_Heading {
    text-align: center;
}

    .modalTitle_Heading h3 {
        font-size: 23px;
        text-align: center;
        margin-bottom: 20px;
        padding: 0px 65px
    }

.customBTN_Group a {
    background-color: #fff;
    color: #c5329f;
    border: 1px solid #c5329f;
}

    .customBTN_Group a.active {
        background-color: #c5329f;
        border: 1px solid #c5329f;
        color: #fff;
    }

.header-left {
    display: flex;
}

.active-dots span a {
    height: 16px;
    width: 16px;
    line-height: 16px;
    border: solid 2px #ccc;
}

.customBTN_Group a.btn.btn-primary {
    padding: 15px 18px;
    width: 25%;
}

    .customBTN_Group a.btn.btn-primary:hover {
        color: #fff;
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .customBTN_Group a.btn.btn-primary.active {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.select-amount {
    margin-top: 30px;
    margin: 22px auto;
}

    .select-amount .form-select {
        border-radius: 0;
    }

.amount-section {
    display: flex;
    flex-wrap: wrap;
}

.modal-body-section .amount {
    border: solid 2px #ccc;
    height: 60px;
    font-size: 20px;
    line-height: 75px;
    border-radius: 5px;
    display: flex;
    /* padding: 10px; */
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal-body-section .text-input {
    text-align: left;
    padding-left: 15px;
}

.modal-body-section {
    padding: 0 25px;
}

.text-buttton {
    display: flex;
    width: 100%;
    height: 69px;
    text-align: center;
    justify-content: center;
}


.next-button-arrow button.btn.btn-primary {
    width: 100%;
    height: 55px;
    font-size: 1.3rem;
    font-weight: 300;
    background-color: var(--primary-color);
    text-transform: uppercase;
}

    .next-button-arrow button.btn.btn-primary:hover {
        background-color: #c727a4;
        border-color: #c727a4;
        color: #fff;
    }

.next-button-arrow primary:not(:disabled):not(.disabled):active, .show > .btn-primary {
    color: #fff;
    background-color: #c727a4;
    border-color: #c727a4;
}

.amount2-section {
    display: flex;
    flex-wrap: wrap;
}


.active-dots span {
    display: block;
    height: 20px;
    width: 20px;
    background: #b3b3b3a8;
    margin: 4px;
    border-radius: 50%;
}

.active-dots {
    display: flex;
    background: transparent;
}

    .active-dots span > a {
        background: none !important;
        border: 0;
    }

body:has(.customBTN_Group > a.active:first-child) .active-dots > span:first-child, body:has(.customBTN_Group > a.active:nth-child(2)) .active-dots > span:nth-child(2), body:has(.customBTN_Group > a.active:nth-child(3)) .active-dots > span:nth-child(3), body:has(.customBTN_Group > a.active:nth-child(4)) .active-dots > span:nth-child(4) {
    background: #fff !important;
}

.header-left .fa-lock {
    font-size: 24px;
    color: #fff;
}

.header-left > div:first-child {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.card-signle-wrp-design:before {
    content: '\f00c';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 1.3em;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #bbbbbb;
    display: flex;
    align-items: center;
    border-radius: 1.2rem 0 0 1.2rem;
    padding: 5px;
    opacity: 0.4;
}

.card-signle-wrp-design.show-cvc:before {
    background: var(--primary-color);
    opacity: 1;
}

.card-other-details h3 {
}

.no-before:before {
    content: unset;
}

.form-label {
    margin-bottom: 0.5rem !important;
    margin-top: 10px !important;
}

.bling-cl {
    padding-top: 12px;
}

.upd-accordian-cl {
    margin: 14px 0px;
}

.accordion {
    --bs-accordion-border-color: black !important;
}


.accordion-button:not(.collapsed) {
    color: unset !important;
}

.accordion {
    --bs-accordion-btn-focus-border-color: black !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-item:last-of-type {
    border: 1px solid #9E9E9E !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.close-updcl:before {
    content: "\f00d";
    position: absolute;
    right: 12px;
    top: 12px;
    color: #343a40;
}

.new-modalcon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
    width: 71% !important;
    padding-top: -9px;
    margin-top: 25px;
    margin: auto;
}

.update-alert-danger {
    font-size: 12px;
}

.wi-cen {
    display: flex;
    justify-content: center;
}

.custom-tabs .nav-tabs .nav-link:first-child {
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 9px !important;
}

.bor-wid {
    text-align: left !important;
    padding-left: 26px !important;
}

.bi-x::before {
    content: none !important;
}

.members-add a {
    color: white !important;
    border: none !important;
    margin-right: 5px;
    font-size: 14px !important;
}

.l-wid {
    box-sizing: border-box;
    color: white;
    font-size: 19px;
    font-weight: 900 !important;
}

.ms-options-wrap > button:focus, .ms-options-wrap > button {
    padding: 12px 20px 8px 5px !important;
}

.cancel-btn {
    background-color: var(--primary-color) !important;
    margin-left: 10px;
}

.ui-widget-header {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    font-weight: bold;
}

    .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
        
        background: unset !important;
        color: var(--bs-pink) !important;
        border: 1px solid var(--primary-color) !important;
    }

    .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
        border: 1px solid #cccccc;
        background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x;
        font-weight: bold;
        color: black !important;
    }

.check-box-cl {
    margin-top: 15px;
    color: var(--primary-color);
}

.def-cl {
    color: black !important;
    margin-left: 5px;
    font-size: 16px;
}

.new-email {
    background-color: #888888;
}

.new-card-design {
    overflow-y: scroll !important;
    height: 40vh !important;
}

    .new-card-design::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
        border-radius: 10px;
    }

    .new-card-design::-webkit-scrollbar {
        width: 10px;
        background-color: #F5F5F5;
    }

    .new-card-design::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, var(--primary-color)), color-stop(0.48,var(--primary-color)), color-stop(0.86, var(--primary-color)));
    }


.card-design-wrp-section {
    margin-right: 20px;
}







.utility_cl {
    padding: 10px 0px 10px 0px !important;
    color: white;
    width: 140px !important;
    margin-left: -18px !important;
}

.utility_colo_cl {
    background-color: var(--primary-color) !important;
    color: white;
    width: 140px !important;
    padding: 10px 0px 10px 0px !important;
    margin-left: -75px !important;
    margin-right: 30px;
}

.input-button > .btn-secondary {
    background-color: #6c757d;
    margin-left: 10px;
}

    .input-button > .btn-secondary:hover {
        background-color: #6c757d;
    }

.utility_colo_cl:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--primary-color);
    color: white;
    border-color: var(--bs-btn-hover-border-color);
}
/* DONATION LIST  CSS INLINE TO EXTERNAL FILE*/
.amount:hover {
    background-color: var(--primary-color);
}

.amount2 {
    border: solid 2px #ccc;
    height: 71px;
    font-size: 1.3rem;
   
    font-size: 22px;
    line-height: 75px;
    border-radius: 5px;
    cursor: pointer;
}

.custom-tabs .nav-link {
    display: block;
    padding: 0.8rem 1rem !important;
}

.custom-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) var(--primary-color) var(--primary-color) !important;
}

.custom-tabs .nav-tabs .nav-link {
    border: 1px solid var(--primary-color) !important;
    border-top-left-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    color: var(--primary-color);
}

.custom-tabs .nav-tabs {
    border-bottom: unset;
}


.amount-active {
    background-color: var(--primary-color);
}
/* DONATION LIST CSS COMPLETE*/

/* ADD GROUP TO EVENTS PAGE CSS*/
.assign-members .ms-options-wrap > .ms-options > ul input[type="checkbox"] {
    width: 20px !important;
    display: inline-block !important;
    right: 4px;
}

.assign-members div.ms-options li label {
    position: relative !important;
}

.form-c-lbl {
    margin-bottom: 12px;
    font-size: 16px;
}

/*20/11/2023*/

.comadd-btn {
    max-width: 107px;
}

/*21/11/2023*/
textarea#groupDescription {
    line-height: 1;
}

div#TblMemberList_wrapper {
    
    height: 100%;
}

    div#TblMemberList_wrapper table thead {
        position: sticky;
        top: 0px;
    }

input#addgroup {
    width: 140px;
}

input#Cancelgroup {
    width: 140px;
    padding: 10px 10px 8px !important;
}


/*20/11/2023*/

.comadd-btn {
    max-width: 107px;
}

/*21/11/2023*/
textarea#groupDescription {
    line-height: 1;
}



div#TblMemberList_wrapper table thead {
    position: sticky;
    top: 0px;
}


.table-outer table.table.table-striped thead.table-data-bg {
    position: sticky;
    top: -1px;
    left: 0;
}

.table-outer .table-data-bg :nth-of-type(3) {
    width: unset !important;
}

.custom-search .form-control {
    padding: 0.265rem 0.75rem;
}

.custom-filter .dropdown-item {
    font-size: 14px;
}

.btn-form .btn {
    padding: 0.350rem 2rem;
}
/* CSS for 4 Dec 2023 Ends */
/* CSS for 15 Dec 2023 start */

.btn_dash {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px !important;
}

    .btn_dash:hover {
        background: #e631aa;
        color: #fff;
    }

.btn_dash_outline {
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
}

.donate_btn {
    background: var(--primary-color) !important;
    color: #fff !important;
    font-size: 14px !important;
    float: right;
    margin-right: 1rem;
    padding: 5px 10px !important;
}

    .donate_btn:hover {
        background: #e631aa !important;
    }

ul.submenu-icons {
    margin-top: 5px !important;
    display: none;
    background: var(--primary-color);
    padding: 10px;
    margin: 0px 25px;

}

.submenu-icons .nav-list a {
    padding: 5px;
}

.rotate-180 {
    transform: rotateX(180deg);
}

td#TxtMsg img {
    height: 64px !important;
    width: 164px !important;
}

td#TxtMsg p {
    display: flex;
    flex-direction: column;
}

/*bank detais Radio account and holder Type */
.cstm-radio {
    visibility: unset !important;
    opacity: unset !important;
}

.cstm-div-label {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.mt-25 {
    margin-left: 28px;
}

.mt-35 {
    margin-left: 30px;
}

.form-check-input {
    margin-left: unset !important;
}

table#TblMemberList {
    display: inline-table;
}


.col-sm-12.table-responsive {
    overflow-y: hidden;
}

input, select {
    font-size: 14px !important;
}

video#videoElement {
    margin-top: -40px;
  height: calc(100vh - 200px);
}

/*Stream now css*/


.card-header.header-color {
    background: var(--primary-color);
    COLOR: WHITE;
}

h1 {
    font-size: 18px;
}

.btn-live {
    background-color: var(--primary-color);
    color: white;
}

    .btn-live:hover {
        color: var(--primary-color);
        background-color: white;
        border: 1px solid var(--primary-color);
    }

.all_button.d-flex.justify-content-between {
    margin-bottom: -20px;
}

.btn-fb {
    background-color: #0049bb;
    color: white;
}

    .btn-fb:hover {
        border: 1px solid #0049bb;
        background-color: white;
        color: #0049bb;
    }

.btn-insta {
    background-color: #962fbf;
    color: white;
    margin-left: 5px;
}

    .btn-insta:hover {
        background-color: white;
        color: #962fbf;
        border: 1px solid #962fbf;
    }

.btn-youTube {
    background-color: red;
    color: white;
    margin-left: 5px;
}

    .btn-youTube:hover {
        background-color: white;
        color: red;
        border: 1px solid red;
    }
/* Chat box */

/* ^1 Chat Screen Start */

#chating .outer-wrapper {
    position: fixed;
    right: 15px;
    bottom: 15px;
    top: 0;
    z-index: 999;
    flex-direction: row;
    left: auto;
    display: flex;
    align-items: flex-end;
}

section#chating ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

    section#chating ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.chat-icon {
    border: 1px solid #b7c9c7;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    background: var(--primary-color);
    position: fixed;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 0 10px var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


section#chating .chat-icon:after {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid var(--primary-color);
    content: '';
    position: absolute;
    transform: rotate(143deg);
    bottom: 0px;
    right: 3px;
    transition: all 0.3s ease-in-out;
}

section#chating .chat-icon:hover {
    color: var(--primary-color);
    background: #fff;
}

    section#chating .chat-icon:hover::after {
        border-bottom-color: #fff;
    }

#chating .wrapper-list-chat {
    background: #f3fffe;
    padding: 0;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 340px;
    display: none;
}

    #chating .wrapper-list-chat.view {
        display: block;
    }

#chating.show .wrapper-list-chat {
    display: block;
}

section#chating.show .chat-icon {
    display: none;
}

#chating .wrapper-list-chat h3 {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.header-chat {
    background: #0049bb;
    margin-top: -2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

svg#close-compose {
    margin-left: auto;
}

.users {
   
    overflow: auto;
    margin: 5px 0px;
    padding: 5px;
}

    .users li:hover {
        background: #c8f3ee;
    }

    .users > ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

#chating .profile-pic {
    border: 1px solid #9E9E9E;
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 30px;
    margin-right: 5px;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
}

.rob-chat-pro {
    width: 30px;
    height: 30px;
    border-radius: 30px;
}

#chating .user {
    display: flex;
    font-size: 12px;
    margin-bottom: 5px;
    padding: 0 0 5px 0;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #bbf3ed;
}

.user .profile-pic img {
    max-width: 100%;
    height: auto;
}

#chating .user span.user-name {
    color: #9E9E9E;
    font-weight: 600;
    font-size: 14px;
    display: block;
    padding-right: 5px;
}

#chating .user span.chat-disc {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 150px;
    font-size: 12px;
    display: block;
}

#chating .user .time {
    font-size: 10px;
    color: #000;
    display: block;
    margin-left: auto;
}

#chating .user.active span.profile-pic:after {
    content: '';
    position: absolute;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 5px;
    bottom: 0px;
}

.user.active .profile-pic {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px var(--primary-color);
}

#chating .user .time small {
    display: -webkit-box;
}

#chating .user.active span.user-name {
    color: var(--primary-color);
    font-weight: 600;
}

.header-chat span.fa.fa-close {
    position: absolute;
    right: 9px;
    top: 16px;
    color: #fff;
    cursor: pointer;
}

/*  ^2 Compose box  */

.users.msg {
    max-height: 300px;
    padding: 5px 10px;
    margin-bottom: 50px;
}

.wrapper-composer {
    width: 350px;
    background: #cccccc;
    border: 1px solid #ddd;
    height: auto;
    position: relative;
    display: none;
}

    .wrapper-composer.view {
        display: block;
    }

.header-composer {
    background: var(--primary-color);

    display: flex;
    align-items: center;
    padding: 4px 12px;
    justify-content: space-between;
}

svg#close-chat {
    margin-left: 54%;
    color: white;
}

#close-chat {
    color: white;
}

.header-composer span.name {
    color: #fff;
}

#chating .header-composer .profile-pic {
    border-color: #fff;
}

.header-composer .fa-close.fa {
    color: #033f7b;
    cursor: pointer;
}

.header-composer span.name span.status {
    display: block;
    font-size: 10px;
    color: #fff;
}

#chating .message {
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 10px;
    border: 0;
    display: flex;
    background-color: transparent;
}

.chat-content {
    padding: 5px 5px 5px;
    border-radius: 0 5px 5px 5px;
    background: #fff;
    position: relative;
    padding-bottom: 15px;
    font-size: 14px;
}

    .chat-content .time {
        
        margin-top: 5px;
        margin-bottom: -10px;
        font-size: 10px;
        display: flex;
        justify-content: space-between;
  
        color: #b3acac;
    }

.specific-time, .specific-date {
    display: inline-block;
}

#chating .message.out-going .chat-content {
    text-align: right;
}

#chating .message.out-going {
    align-items: flex-end;
    justify-content: flex-end;
}

    #chating .message.out-going .chat-content {
        border-radius: 5px 0 5px 5px;
        border-right-width: 3px;
        background: #f9fff2;
        box-shadow: 0px 3px 3px #48484842;
       
    }

.out-going .chat-content:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 5px solid #f9fff2;
    border-bottom: 5px solid transparent;
    right: -5px;
    top: 6px;
    transform: rotate(180deg);
}

.in-comming .chat-content:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 5px solid #ffffff;
    border-bottom: 5px solid transparent;
    left: -5px;
    top: 3px;
}

.message.in-comming .chat-content {
    border-left-width: 3px;
    max-width: calc(100% - 40px);
    background: #e3e3e3;
}

.message.out-going .chat-content {
    border-right-width: 3px;
}

.wrapper-type-text {
    border: 1px solid #A733AE;
    padding: 4px;
    display: flex;
    width: 95%;
    justify-content: space-between;
    background: #fff;
    position: absolute;
    bottom: 0;
    right: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 2px;
}

    .wrapper-type-text > div.text {
        width: 100%;
        box-sizing: border-box;
    }

    .wrapper-type-text > div.trigger {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--primary-color);
    }

    .wrapper-type-text > div.emozi {
        color: #FF5722;
        font-size: 20px;
    }

    .wrapper-type-text > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .wrapper-type-text > div.text .form-control {
            border: 0;
            border-radius: 0;
        }

        .wrapper-type-text > div.attachment {
            width: 30px;
            overflow: hidden;
            margin-right: 10px;
            position: relative;
            cursor: pointer;
        }

.attachment input {
    opacity: 0;
}

.wrapper-type-text > div.attachment:before {
    content: "\f0c6";
    font: normal normal normal 20px/1 FontAwesome;
    color: #3F51B5;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 10px;
    cursor: pointer;
}

#RecurringDinationFD{
    background-color:var(--primary-color);
    color:var(--white-color);
}
