/* importing fonts */
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700&display=swap");

/* start variables */
:root {
    --main-color: #00768d;
    --secondery-color: #e5eff0;
    --base-color: #fff;
    --line-color: #878787;
    --heading-color: #1c1c1c;
    --sub-heading-color: #3f3f3f;
}
/* start global style */
* {
    padding: 0;
    margin: 0;
}
body {
    box-sizing: border-box;
    font-family: "Alexandria", sans-serif;
    direction: rtl;
    text-align: right;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
img {
    max-width: 100%;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}
/* start side menu */

.navbar {
    padding: 20px 0;
    /* background: #fff; */
    border: none;
    border-radius: 0;
    /* margin-bottom: 40px; */
    /* height: 80px; */
    margin-bottom: 30px;
}
.user_box h3 {
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}
/* SIDEBAR STYLE*/
.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 300px;
    max-width: 300px;
    /* background: #00768d; */
    background: url(../images/navbar.svg) no-repeat bottom, #00768d;
    background-size: contain;

    color: #fff;
    transition: all 0.3s;
}
.offcanvas-end {
    background: #00768d;
    width: 270px;
}
.modal-backdrop {
    background: #00768d;
}
.modal-backdrop.show {
    opacity: 0.1;
}

#sidebar.active {
    margin-right: -300px;
}

#sidebar .sidebar-header {
    background: var(--main-color);
    display: flex;
    justify-content: center;
}
.bg-light {
    background: #e5eff0 !important;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul li {
    transition: all ease 0.2s;
}
#sidebar ul li a {
    padding: 15px 10px;
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: #d9d9d9;
    transition: all ease 0.2s;
    margin: 10px 30px;
    border-radius: 8px;
    background: url(../images/left.svg) no-repeat 15px center, transparent;
}
.offcanvas-end ul li a {
    padding: 10px;
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: #d9d9d9;
    transition: all ease 0.2s;
    margin: 10px;
    border-radius: 8px;
    background: url(../images/left.svg) no-repeat 15px center, transparent;
}
.coll_cust {
    margin: 10px 30px;
}
.coll_cust a {
    background: unset !important;
}
#sidebar ul a:hover,
#sidebar ul a:focus {
    color: var(--main-color);
    transition: all ease 0.2s;
    background: url(../images/left-color.svg) no-repeat 15px center, #fcfcfc;

    box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.05);
}
.offcanvas-end ul a:hover,
.offcanvas-end ul a:focus {
    color: var(--main-color);
    transition: all ease 0.2s;
    background: url(../images/left-color.svg) no-repeat 15px center, #fcfcfc;

    /* box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.05); */
}
.coll_cust a:hover,
.coll_cust a:focus {
    background: unset !important;
    background-color: #fcfcfc !important;
}
hr {
    background-color: #fcfcfc;
}
#sidebar ul li a.active {
    color: var(--main-color);
    background: var(--base-color);
    transition: all ease 0.2s;
    background: url(../images/left-color.svg) no-repeat 15px center, #fcfcfc;
    box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.05);
}
.collaps-btn {
    background: url(../images/left.svg) no-repeat 15px center, #fcfcfc;
}
#sidebar ul li svg {
    margin: 0 5px;
    fill: #d9d9d9;
    transition: all ease 0.2s;
}
#sidebar ul li a:hover svg,
#sidebar ul li a:focus svg {
    fill: var(--main-color) !important;
    transition: all ease 0.2s;
}
#sidebar ul li a.active svg {
    fill: var(--main-color) !important;
    transition: all ease 0.2s;
}

.offcanvas-end ul li svg {
    margin: 0 5px;
    fill: #d9d9d9 !important;
    transition: all ease 0.2s;
}
.offcanvas-end ul li a:hover svg,
.offcanvas-end ul li a:focus svg {
    fill: var(--main-color) !important;
    transition: all ease 0.2s;
}
.offcanvas-end ul li a.active svg {
    fill: var(--main-color) !important;
    transition: all ease 0.2s;
}

a[data-toggle="collapse"] {
    position: relative;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

/* CONTENT STYLE */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    #sidebar {
        min-width: 180px;
        max-width: 180px;
    }
    #sidebar {
        margin-right: -180px;
    }
    #sidebar.active {
        margin-right: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}
.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 118, 141, 0.2);
}
.btn-side svg {
    transition: all ease 0.2s;
}
.btn-side:focus svg {
    color: #000;
    transition: all ease 0.2s;
}
/* start navbar */
.user_box {
    font-weight: 500;
    font-size: 16px;
    color: var(--heading-color);
}
.prof_avatar img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-inline-start: 32px;
}
.input-box {
    position: relative;
    width: 100%;
    max-width: 60px;
    height: 55px;

    border-radius: 6px;
    transition: all 0.5s ease-in-out;
}
.input-box.open {
    max-width: 350px;
}
.input-box input {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    padding: 0 15px;
    border: none;
    border-radius: 0px;
    outline: none;
    transition: all 0.5s ease-in-out;
    background-color: transparent;
    border-bottom: 1px solid var(--heading-color);
}
.input-box.open input {
    padding: 0 15px 0 65px;
    background-color: transparent;
    border-bottom: 1px solid var(--heading-color);
}

.input-box .search {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e5eff0;
    border-radius: 0px;
    cursor: pointer;
}
.input-box.open .search {
    border-radius: 0;
}
.search .search-icon {
    font-size: 30px;
    color: #1c1c1c;
}
.input-box .close-icon {
    position: absolute;
    top: 50%;
    right: -30px;
    font-size: 16px;
    color: #1c1c1c;
    padding: 5px;
    transform: translateY(-50%);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
}
.input-box.open .close-icon {
    transform: translateY(-50%) rotate(180deg);
    pointer-events: auto;
    opacity: 1;
}
/* start login page style */
.login_wrapper {
    background: url(../images/login-shape.svg) no-repeat bottom,
        var(--main-color);
    min-height: calc(100vh - 55px);
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login_box {
    background-color: var(--base-color);
    border-radius: 20px;
    padding: 50px;
}
.login_footer {
    padding: 20px;
    text-align: center;
}
.login_footer h4 {
    font-weight: 400;
    font-size: 12px;
    color: #515151;
    opacity: 0.7;
}
.floating-label-group {
    position: relative;
    margin-top: 15px;
    margin-bottom: 25px;
}
.floating-label-group .floating-label {
    position: absolute;
    pointer-events: none;
    top: 4px;
    right: 12px;
    transition: all 0.1s ease;
    padding: 5px;
    font-weight: 400;
    font-size: 13px;
    color: #3f3f3f;
}
.floating-label-group input:focus ~ .floating-label,
.floating-label-group input:not(:focus):valid ~ .floating-label {
    top: -15px;
    background-color: var(--base-color);
    bottom: 0px;
    right: 10px;
    font-size: 14px;
    opacity: 1;
    color: #404040;
    height: 50%;
    padding: 5px 10px;
}
input:focus {
    box-shadow: unset !important;
}
.form-control:focus {
    border-color: var(--main-color);
}
.login_box input {
    height: 50px;
}
.login_box input::placeholder {
    font-weight: 400;
    font-size: 12px;
    color: #b8b8bb;
}
.btn_1 {
    background: var(--main-color);
    height: 50px;
    color: var(--base-color) !important;
    transition: all ease 0.3s;
}
.btn_1:hover {
    opacity: 0.8;
    transition: all ease 0.3s;
}
.dropdown-menu {
    text-align: start;
    padding: 0;
    border: unset;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--main-color);
}
.dropdown-item {
    font-weight: 400;
    font-size: 13px;
    color: #1c1c1c;
    padding: 0.5rem;
    border-radius: 5px;
}

.dropdown-item svg {
    margin-inline-end: 5px;
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--main-color);
    color: var(--base-color);
}
/* start static page */
.task_box {
    text-align: center;
    padding: 30px;
    box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    min-height: 200px;
}
.task_box img {
    margin-bottom: 1.5rem;
}
.task_box h2 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 32px;

    color: #1c1c1c;
}
.task_box p {
    font-weight: 400;
    font-size: 18px;
    color: #3f3f3f;
}
.task_one {
    background: #e5eff0;
}
.task_two {
    background: #e3f5ff;
}
.task_three {
    background: #fff0e6;
}
.chart_box {
    padding: 30px;
    box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-top: 30px;
    height: 600px;
}
.chart_box h3 {
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    /* border-bottom: 1px solid #E5E5EF;
padding-bottom: 15px; */
}
#my_chart {
    width: 100% !important;
    height: 100% !important;
}
.head_box h2 {
    font-weight: 600;
    font-size: 20px;
    color: #1c1c1c;
    margin-bottom: 1rem;
}
.head_box p {
    font-weight: 400;
    font-size: 14px;
    color: #878787;
}
.user_chat_box {
    padding: 20px;
    background-color: var(--base-color);
    filter: drop-shadow(0px 5px 14px rgba(0, 0, 0, 0.05));
    margin-bottom: 30px;
}
.user_chat_box h4 {
    font-weight: 600;
    font-size: 14px;
    color: #3f3f3f;
    margin-bottom: 0.5rem;
}
.user_chat_box p {
    font-weight: 400;
    font-size: 12px;
    color: #878787;
}
.user_chat_box p svg {
    margin-inline-end: 5px;
}
.user_chat_box img {
    width: 55.86px;
    height: 56.5px;
    border-radius: 50%;
    margin-inline-end: 20px;
}
.banner_profile {
    background: url(../images/profile.png) no-repeat;
    min-height: 200px;
    border-radius: 20px;
    background-size: cover;
}
.banner_layout {
    background: rgba(0, 118, 141, 0.95);
    border-radius: 20px;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.profil_banner {
    /* width: 62px;
height: 62px; */
    border-radius: 50%;
    position: absolute;
    z-index: 2222;
    bottom: -50px;
    right: calc(50% - 100px);
}
.profil_banner img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 4px solid #f9f9f9;
}
.profil_banner h4 {
    font-weight: 600;
    font-size: 14px;
    color: #3f3f3f;
    /* width:170px ; */
}
.container-fluid {
    padding: 0 50px !important;
}
#sidebarCollapse {
    padding: 0 !important;
}
.btn-side:focus {
    box-shadow: unset !important;
}
.btn-side:focus svg {
    color: var(--main-color) !important;
}
.profile_info {
    padding: 30px;
    background-color: var(--base-color);
    border-radius: 20px;
    margin-top: 100px;
}
hr.linex {
    background-color: #e6e8ec;
    height: 2px;
}

.profile_info h4 {
    font-weight: 400;
    font-size: 12px;
    color: #1c1c1c;
    min-width: 150px;
}
.profile_info p {
    font-weight: 400;
    font-size: 14px;
    color: #878787;
}
.btn-default {
    min-width: 100px;
    background: var(--main-color);
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 400;
    font-size: 14px;
    color: var(--base-color) !important;
    border: 1px solid var(--main-color);
    margin-top: 10px;
}
.btn-default svg {
    margin-inline-end: 10px;
}
.btn-outlin-default {
    min-width: 100px;
    color: var(--main-color) !important;
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 400;
    font-size: 14px;
    background-color: var(--base-color);
    border: 1px solid var(--main-color);
    margin-top: 10px;
}
.prof_form .form-control,
.prof_form .form-select {
    font-weight: 400;
    font-size: 12px;
    color: #777777;
    border: 1px solid #f5f5f5;
    height: 50px;
    padding: 0.375rem 0.75rem;
}
.prof_form .form-select {
    background-position: 12px;
}
.prof_form .form-control::placeholder {
    font-weight: 400;
    font-size: 12px;
    color: #777777;
}
.toggle-password {
    font-size: 14px;
    color: #777777;
    margin-inline-end: 10px !important;
}
.prof_form .input-group {
    border: 1px solid #f5f5f5 !important;
    height: 50px;
    padding: 0;
}
/* profile image upload */
/* .profile-pic-wrapper {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */
.pic-holder {
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 20px; */
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0px auto;
    margin-bottom: 0.5rem;
}

.pic-holder .upload-file-block,
.pic-holder .upload-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(90, 92, 105, 0.7);
    color: #f8f9fc;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pic-holder .upload-file-block {
    cursor: pointer;
}

.pic-holder:hover .upload-file-block,
.uploadProfileInput:focus ~ .upload-file-block {
    opacity: 1;
}

.pic-holder.uploadInProgress .upload-file-block {
    display: none;
}

.pic-holder.uploadInProgress .upload-loader {
    opacity: 1;
}

/* Snackbar css */
.snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 30px;
    font-size: 14px;
    transform: translateX(-50%);
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

/* chat room */
.chat_room_header {
    background-color: var(--main-color);
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.chat_box {
    height: 100%;
    background: url(../images/whats.svg) no-repeat 100%, #f7f9fb;
    padding: 20px;
    background-size: cover;
}
/* .container-fluid.p-0{
  padding: 0 !important;
} */
.chat_time {
    width: 100px;
    background: rgba(0, 118, 141, 0.81);
    border-radius: 15px;
    text-align: center;
    /* padding: 7px 25px; */
    color: var(--base-color);
    font-weight: 400;
    font-size: 12px;
    margin: 0 auto;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat_header_info h5 {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.chat_header_info p {
    font-weight: 400;
    font-size: 12px;
    color: #f5f5f5;
}
.chat_header_info svg {
    margin-inline-end: 5px;
}
.chat_header_info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-inline-end: 20px;
    border: 2px solid #fff;
}
.chat_sender {
    float: right;
    /* background: #ffffff; */
    background: #e6f1f3;
    border-radius: 16px;
    padding:10px ;
    width: 50%;
 
    margin: 10px 0;
}
.chat_reciver {

    /* border-radius: 16px;
    padding: 20px;
    width: 50%; */
    float: left;
    /* margin: 10px 0; */
    /* background: rgba(239, 245, 247, 0.81); */
       background: #ffffff;
}
.chat_sender p {
    font-weight: 400;
    font-size: 12px;
    /* color: var(--base-color); */
    color: #1c1c1c;
    /* text-align: end; */
    margin-bottom: 0.3rem;
}
.chat_reciver p {
    /* text-align: start; */
    color: #1c1c1c;
    /* color: var(--base-color); */
}
.chat_box_body {
    height: 450px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.chat_sender .msg_time {
    font-weight: 400;
    font-size: 12px;

    color: #958e8e;
}
.chat_reciver .msg_time {
    color: #958e8e;
}
.chat_sender .msg_time svg {
    margin-inline-end: 5px;
}
.chat_footer {
    padding-top: 20px;
}
.chat_footer li {
    margin: 0 7px;
}
.file_header {
    background: #f7f9fb;
    padding: 20px;
    /* margin-top: 20px; */
}
.file_container {
    /* padding: 20px; */
    border: 1px solid #e5eff0;
    min-height: 500px;
}
.files_list {
    height: 235px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.file_body {
    padding: 20px;
}
/* styling radio */
body {
    direction: rtl;
}





[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    right: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label {
    position: relative;
    padding-right: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #878787;
    border-radius: 3px;
    background: #fff;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
   content: '';
  display: block;
  position: absolute;
top: 3px;
    right: 7px;
    width: 5px;
    height: 10px;
  border: solid #0079bf;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    /*-webkit-transform: scale(0);*/
    /*transform: scale(0);*/
}
[type="checkbox"]:checked + label:after {
    opacity: 1;
    /*-webkit-transform: scale(1);*/
    /*transform: scale(1);*/
}









/*  */
.files_list li img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}
.files_list li video{
       height: 70px;
 
}
.files_list li {
    display: inline-flex;
        flex-direction: column-reverse;
    width: 30%;
    margin: 1%;
}
.files_list li svg,
.files_list li i {
    /*position: absolute;*/
    /*bottom: 6px;*/
    /*right: 5px;*/
    /*width: 100%;*/
     font-size: 40px;
    margin-top: 10px;
    color: #bb3e3e;
}
.del_box {
    font-weight: 400;
    font-size: 14px;
    color: rgba(135, 135, 135, 0.6);
    margin-top: 10px;
        cursor: pointer;
}
.notif_box {
    margin-top: 20px;
    align-items: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 10px;
}
.notif_box img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    margin-inline-end: 10px;
}
.notif_box h5 {
    font-weight: 400;
    font-size: 11px;
    margin-bottom: 0.3rem;
}
.notif_box p {
    font-weight: 300;
    font-size: 10px;
    color: #878787;
}
.chart_box a {
    font-weight: 500;
    font-size: 14px;
    color: #00768d;
}
.main_table th {
    font-weight: 400;
    font-size: 12px;
    color: rgba(63, 63, 63, 0.6);
    padding: 1rem 0.5rem;
}
.main_table thead {
    background: #f7f9fb;
}
.main_table td {
    font-weight: 400;
    font-size: 12px;
    color: #3f3f3f;
    border-top: 1px solid #e6e8ec;
    padding: 1rem 0.5rem;
}
.state_2 {
    color: #ff8736;
}
.state_3 {
    color: #00a4ff;
}
.chart_box_newheight {
    height: 400px;
    overflow-y: scroll;
}
/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 68px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 68px;
}

.sender_info h4 {
    font-weight: 400;
    font-size: 14px;
    color: #00768d;
    margin: 7px 0;
}
.sender_info p {
    font-weight: 400;
    font-size: 12px;
    color: #878787;
}
.sender_info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.files_list2 {
    height: 115px !important;
}
.w-30 {
    width: 30%;
}
.w-20 {
    width: 20%;
}
.option_list img {
    width: 16px;
    height: 16px;
    border-radius: 0;
    border: unset;
    margin-inline-end: 5px;
}
.option_list ul li {
    margin-inline-end: 10px;
    margin-bottom: 10px;
}
/*.sender_name {*/
/*    margin-bottom: 10px;*/
/*}*/
.sender_name h2 {
    font-weight: 400;
    font-size: 12px;
    color: #00768d;
}
.chat_reciver .sender_name h2 {
    color: var(--base-color);
}
.edit_state li {
    margin-inline-start: 20px;
    font-weight: 400;
    font-size: 13px;
    color: #878787;
}
.edit_state li svg,
.edit_state li i {
    margin-inline-end: 5px;
}
.head_line {
    font-weight: 600;
    font-size: 20px;
    color: #1c1c1c;
}
/* image */
#picture__input {
    display: none;
}

.picture {
    width: 100%;
    height: 50px;
    cursor: pointer;
    margin-bottom: 130px;
    font-weight: 400;
    font-size: 12px;
    color: #777777;
    border: 1px solid #f5f5f5;
    padding: 0.375rem 0.75rem;
    padding-top: 15px;
    border-radius: 0.25rem;
}

.picture__img {
    max-width: 100%;
    position: absolute;
    top: 70px;
    border: 1px solid #f5f5f5;
    border-radius: 0.25rem;
    height: 120px;
    width: 120px;
    padding: 10px;
    right: 15px;
}
.picture__info {
    color: #00768d;
}
/* multi select */
.select2-container--default .select2-selection--multiple {
    font-size: 12px;
    color: #777777;
    border: 1px solid #f5f5f5 !important;
    /* padding: 0.375rem 0.75rem;
  padding-top: 15px; */
    border-radius: 0.25rem;
    height: 50px;
}
.select2-container--default.select2-container--focus
    .select2-selection--multiple {
    font-size: 12px;
    color: #777777;
}
.select2-container--default .select2-search--inline .select2-search__field {
    text-align: right;
    padding: 0;
    margin: 0;
    font-family: "Alexandria", sans-serif;
}
.select2-search.select2-search--inline {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
}
.select2-container--default .select2-results__option {
    background-color: #e5eff0;
    font-size: 12px;
    color: #777777;
}
.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--main-color);
    color: white;
}
/* .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #E5EFF0 !important;

  border: unset;
  border-radius: 25px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;

}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background: #E5EFF0 !important;
  border: none;

} */
.select2-dropdown {
    border-color: #f5f5f5;
}
/* copy */

.copy-text {
    position: relative;
    padding-inline-start: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.copy-text input.text {
    /* padding: 10px; */
    font-size: 14px;
    color: #555;
    border: none;
    outline: none;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}
.copy-text button {
    padding: 10px;
    background: var(--main-color);
    color: #fff;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    min-width: 100px;
    /* display: contents;
  height: 50px; */
}
.copy_text {
    padding: 10px;
    background: var(--main-color);
    color: #fff;
    font-size: 18px;
}
.copy-text button:active {
    background: var(--main-color);
}
.copy-text button:before {
    content: "Copied";
    position: absolute;
    top: -45px;
    right: 0px;
    background: var(--main-color);
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 15px;
    display: none;
}
.copy-text button:after {
    content: "";
    position: absolute;
    top: -20px;
    right: 25px;
    width: 10px;
    height: 10px;
    background: var(--main-color);
    transform: rotate(45deg);
    display: none;
}
.copy-text.active button:before,
.copy-text.active button:after {
    display: block;
}
.roll_wrapper h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: #1c1c1c;
}
.roll_wrapper ul li {
    margin: 0 10px;
}
.bg-gray {
    background: #d9d9d9;
    border-radius: 5px;
}
.filter {
    font-weight: 400;
    /* font-size: 12px; */
    color: #878787;
    display: inline-block;
    /* height: 40px; */
}
.h-c {
    height: 40px;
}
.page-link {
    position: relative;
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    color: rgba(28, 28, 28, 0.6);
    border: unset;
    background: #e5eff0;
    border-radius: 50%;
    margin: 5px;
}
.page-link:hover {
    color: #333;
    background-color: var(--main-color);
}
.page-link:focus {
    color: var(--base-color);
    background-color: var(--main-color);
    outline: 0;
    box-shadow: unset;
}
.roll_info_box {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}
.roll_info_box h2 ,.roll_info_box h2 a{
    font-weight: 400;
    font-size: 14px;
    color: #1c1c1c;
    /* margin-bottom: 1rem; */
}
.roll_info_box h3 ,.roll_info_box h3 a {
    font-weight: 400;
    font-size: 12px;
    color: #878787;
    margin-bottom: 0.7rem;
}
.roll_info_box h3 i,
.roll_info_box h3 svg {
    margin-inline-end: 10px;
}
.roll_info_box img {
    width: 30px;
    height: 30px;
    border-radius: 2px;
    margin-inline-end: 10px;
}
.roll_info_box ul li ,.roll_info_box ul li .btn{
    font-weight: 400;
    font-size: 14px;
    color: #878787;
    display: flex;
    align-items: center;
    /* margin: 0 10px; */
}

.roll_info_box ul li i,
.roll_info_box ul li svg {
    margin-inline-end: 10px;
}
/* toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 53px;
    height: 25px;
    margin-inline-end: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 5px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: var(--main-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--main-color);
}

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

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

.slider.round:before {
    border-radius: 50%;
}
.min-w {
    min-width: unset;
}
.bg-light2 {
    background-color: var(--main-color) !important;
}
.bg-light2 .nav-link {
    color: #fff !important;
}
.bg-light2 .prof_avatar img {
    border-radius: 50%;
    border: 2px solid #fff;
    margin-inline-end: 10px;
}
.bg-light2 .btn-side {
    color: #fff !important;
}
.bg-light2 .btn-side:focus svg,
.bg-light2 .btn-side:focus i {
    color: #fff !important;
}
.bg-light2 .btn-side:hover svg,
.bg-light2 .btn-side:hover i {
    color: #fff !important;
}
.task_box {
    margin: 15px 0;
}
.select2 {
    width: 100% !important;
}
.chat_sender .dropdown-toggle::after {
    display: none;
}
.bg-none {
    background: none !important;
}
.badg_notif {
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 50%;
    right: 0px;
    top: 0px;
    display:none;
}
.forgetPass {
    font-weight: 400;
    font-size: 11px;
    color: #00768d !important;
}

@media (min-width: 1400px) {
    .container-fluid {
        padding: 0 150px !important;
    }
}
.chat_footer > div {
    display: flex;
    justify-content: end;
    border: 2px solid #e6f1f3;

}
.chat_footer > div .no-btn {
    background: transparent;
    border: unset;
    padding: 10px;
}
.chat_footer audio {
    height: 30px;
    /*width: 200px;*/
}
.chat_footer > div .no-btn svg {
    color: #bbb;
}
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    align-items: center;
}
.chat_footer .form-control:focus {
    box-shadow: unset !important;
}
.chat_footer li {
    cursor: pointer;
}

.swal2-confirm,
.swal2-cancel {
    margin: 20px;
}

.chat_sender p {
    display: flex;
    align-items: center;
    /*margin-bottom: 10px;*/

    justify-content: start;
    flex-direction: inherit;

    text-align: start;
}
.chat_sender p img {
    margin-inline-end: 10px !important ;
    margin-inline-start: 0px;
}
.chat_sender .msg_time {
    display: flex;
    align-items: center;
padding-top: 5px;
    justify-content: start;
    flex-direction: inherit;
    /* color: #fff; */
    color: #958e8e;
}

.chat_sender .msg_time svg {
    margin-inline-end: 5px;
    margin-inline-start: 0px;
}
/*********************/
.chat_reciver p {
    display: flex;
    justify-content: end;
    align-items: center;
    /*  */
    text-align: end;
    /*margin-top: 10px;*/
}
.chat___body p,
.chat___body span {
    flex-direction: row-reverse;
    justify-content: start !important;
}
.chat_reciver p img {
    margin-inline-start: 0x;
    margin-inline-end: 10px !important;
}
.chat_reciver .msg_time {
    font-weight: 400;
    font-size: 12px;
        color: #958e8e;

    /* color: #1c1c1c !important; */
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: row-reverse;
}
.chat_reciver .msg_time svg {
    margin-inline-end: 0px;
    margin-inline-start: 5px;
}

.file_btn {
    display: none;
    background: #fff;
    color: #00768d !important;
}
#exampleModal{
        z-index: 1071;
}
#exampleModal .modal-dialog{
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
#exampleModal select{
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-top:15px;
}
.product_qun{
    width: 15px;
    height: 15px;
    background-color: red;
    border-radius: 50%;
    right: 0px;
    top: 0px;
    position: absolute;
    font-size: 9px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 11px;
}
.navbar-expand-lg .navbar-nav .nav-link img{
        width: 30px;
}
.prof_avatar img {
    width: 36px !important;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
}
.nav-link.dropdown-toggle::after {
    margin-right: 0.5em;

}
audio{
    width:98%;
        height: 30px;

}
.chat_room_wrapper{
    margin-top:50px;
}


/* by nagla  */

@keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }

}

.imagePreview{
    background:#fff;
    /*position: relative;*/
        height: 150px;
    position: absolute;
    z-index: 2;
    bottom: 60px;
    left: 0;
    width: 100%;
  box-shadow: 0px -20px 20px rgba(0,0,0,.01);
}
.imagePreview img{
width: 98% !important;
        height: 150px;
    /*    position: absolute;*/
    /*z-index: 2;*/
    /*bottom: -40px;*/
    object-fit: cover;
}
.reply-box img{
   width: 25% !important;
    height: 100px; 
    margin-top:10px;
}
.chat_img {
       /* height: 250px; */
           width: 100%;
    object-fit: cover;

}
.chat_footer{
    position:relative;
}
.reply-box video{
    height:150px;
        width: unset !important;
}
/* .reply-box{
    position: relative;
    z-index: 2222;
} */
video{
        object-fit: cover;
}
.files_list li div{
    display: contents;
}






/**/




@media (max-width: 1000px){
    
    .chat_time {

    margin: 5px auto;
}
.new_chat_wrapp .chat_footer {
    bottom: unset;
    position: relative !important;
}
.new_chat_wrapp .chat_box_body {
    height: calc(100vh - 320px )!important;
}
.chat_sender {
    width: 60% !important;
    max-width: 250px !important;
}
.reply-box {
    border-radius: 5px !important;
    padding: 10px !important;
    width:94% !important;
    margin: 0 11px !important;
        border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.reply__chat_box.reciver{
    border-radius: 5px !important;

}
.reply-box p{
    font-size: 13px;
}
.reply__chat_box  span{
        font-size: 13px;

}
.chat___body p, .chat___body span {
word-break: break-all;
    line-height: 20px;
}

}
