@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --rs-main-color: #e5e5e5;
    --rs-primary-color: #6c8ffe;
    --rs-second-color: #f33;
    --rs-font-color: #242424;
    --rs-white-color: #fff;
    --rs-font-one: "Poppins", sans-serif;
    --rs-font-two: "Lora", sans-serif;
}

/**user-selext-content**/
::-moz-selection {
    /* Code for Firefox */
    color: var(--rs-white-color);
    background: var(--rs-primary-color);
}

::selection {
    color: var(--rs-white-color);
    background: var(--rs-primary-color);
}

/**user-selext-content-end**/
body {
    /*-webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: var(--rs-font-two);
    color: var(--rs-font-color);
    background-color: #f3f5ff;
}
.table > tbody {
    font-family: "Poppins", sans-serif;
}
.loader-29 {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0);
}
.wave {
    width: 5px;
    height: 90px;
    background: transparent linear-gradient(106deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    margin: 10px;
    animation: wave 1s linear infinite;
    border-radius: 20px;
}
.wave:nth-child(2) {
    animation-delay: 0.1s;
}
.wave:nth-child(3) {
    animation-delay: 0.2s;
}
.wave:nth-child(4) {
    animation-delay: 0.3s;
}
.wave:nth-child(5) {
    animation-delay: 0.4s;
}
.wave:nth-child(6) {
    animation-delay: 0.5s;
}
.wave:nth-child(7) {
    animation-delay: 0.6s;
}
.wave:nth-child(8) {
    animation-delay: 0.7s;
}
.wave:nth-child(9) {
    animation-delay: 0.8s;
}
.wave:nth-child(10) {
    animation-delay: 0.9s;
}

@keyframes wave {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

/* loader and scrollbar */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}
/* #status {
            width: 100px;
            height: 100px;
            position: fixed;
            left: 50%;
            top: 50%;
            background-color: green;
            background-image: url('../../images/Loader.gif');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            transform: translate(-50%, -50%);
        } */
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* background: url('../images/loader.gif') no-repeat rgba(249, 249, 249, 0.8); */
    background-size: 5%;
    background-position: center;
}

/*scroll bar css**/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgb(102 77 253 / 50%);
}

/*loader and scrollbar end*/
.header {
    padding: 5px 0;
    border-bottom: 1px solid #eef2f6;
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 9;
}
.wrapper {
    padding-top: 63px;
}
.inner_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inner_header .logout_inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logout_bt {
    padding-left: 10px;
}

.logout_bt span {
    padding-left: 5px;
}
.profile_detiles .user_name span {
    font-family: var(--rs-font-two);
}
.logout_bt a, .logout_bt_mobile a {
    text-decoration: none;
    color: #1e1e1e;
    font-family: "Poppins", sans-serif;
}
.profile_detiles .btn {
    background: transparent !important;
    border: 0 !important;
    padding: 0;
    color: #010206 !important;
    display: flex;
    align-items: center;
}

.profile_detiles .dropdown-toggle::after {
    opacity: 0;
}

.profile_detiles .user_name {
    text-align: left;
    padding-left: 10px;
    width: calc(100% - 90px);
}

.profile_detiles .user_name p {
    margin: 0;
    font-family: var(--rs-font-two);
}

.user_pic {
    width: 50px;
    height: 50px;
    position: relative;
    background: transparent linear-gradient(121deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}
.user_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.user_pic:before {
    position: absolute;
    content: "";
    background: #65e339;
    width: 15px;
    height: 15px;
    top: -2px;
    right: -5px;
    border-radius: 50px;
    border: 2px solid #fff;
}
.body_inner {
    padding: 15px 0;
}
.card {
    box-shadow: 0px 8px 20px #70bcfe14;
    border: 1px solid #eef2f6;
    border-radius: 24px;
}
.logout_bt a:hover,
.logout_bt a:hover svg {
    color: #6c8ffe;
}
.pending_rq {
    text-align: right;
}
.pending_rq .btn-outline-primary {
    border: 1px solid #eef2f6;
    padding: 7px 26px;
}

.pending_rq .btn-group {
    border-radius: 10px;
}

.pending_rq .btn-check:checked + .btn,
.pending_rq .btn.active,
.pending_rq .btn.show,
.pending_rq .btn:first-child:active,
.pending_rq:not(.btn-check) + .btn:active,
.pending_rq .btn-check + .btn:hover {
    background: transparent linear-gradient(142deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    border-color: #6eaffd;
    color: #fff;
}
.btn-primary {
    padding: 12px;
    background: transparent linear-gradient(121deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    border: 0;
    border-radius: 8px;
}
.btn {
    min-width: 130px;
    padding: 10px 14px;
}
.btn-primary:hover {
    background: transparent linear-gradient(121deg, #664dfd 0%, #70bcfe 100%) 0%
        0% no-repeat padding-box;
}
.btn-outline-primary {
    border: 1px solid #1e1e1e;
    color: #1e1e1e;
}

.btn-outline-primary:hover {
    color: #fff;
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
}
.modal-dialog {
    max-width: 676px;
}

.modal-header,
.modal-body,
.modal-footer {
    padding: 20px 50px;
}

.modal-footer {
    border: 0;
    padding-top: 0;
    padding-bottom: 40px;
}
.form-control {
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    height: 40px;
    padding: 5px 16px;
    color: #242021;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.form-control:focus {
    border-color: #675efd;
    box-shadow: none;
}
.copy_link .form-control:disabled {
    background: white;
}

.copy_link .copy_icon {
    background: white;
    cursor: pointer;
}
.all_result {
    padding: 15px;
}

.main_table {
    padding: 15px 0;
}
.table > :not(caption) > * > * {
    padding: 10px 5px;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
    text-align: left;
    padding-right: 5px !important;
}
thead tr {
    background: transparent linear-gradient(106deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    color: #fff;
    text-align: center;
}

th {
    font-weight: 400;
}
td {
    text-align: center;
}
.complted_check i {
    text-align: center;
    color: #ffffff;
    box-shadow: 0 0 0px 4px #0da400;
    border-radius: 50%;
    background: #0da400;
}

.complted_check {
    text-align: center;
}

.uncomplted_check {
    text-align: center;
}

.uncomplted_check i {
    text-align: center;
    color: #0da400;
    box-shadow: 0 0 3px 4px rgb(13 164 0 / 16%);
    border-radius: 50%;
    background: rgb(13 164 0 / 16%);
}

.time_check {
    text-align: center;
}

.time_check i {
    text-align: center;
    color: #f1ba3e;
    box-shadow: 0 0 3px 4px rgb(241 186 62 / 16%);
    border-radius: 50%;
    background: rgb(241 186 62 / 16%);
}

.time_check.warning {
    position: relative;
    display: inline-block;
}

.time_check.warning .fa-triangle-exclamation {
    color: #f1ba3e;
    font-size: 9px;
    position: absolute;
    bottom: 5px;
    right: -3px;
}
.bg_pending {
    padding: 5px 11px;
    background: rgb(241 186 62 / 48%);
    border-radius: 50px;
    color: #535353;
    font-size: 12px;
    display: inline-block;
}
.bg_completed {
    padding: 5px 11px;
    background: rgb(13 164 0 / 32%);
    border-radius: 50px;
    color: #535353;
    font-size: 11px;
    display: inline-block;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.bg_approved {
    padding: 5px 11px;
    background: #0da400;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    display: inline-block;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.bg_warning > i {
    color: #e0b23b;
}
table.dataTable td,
table.dataTable th {
    vertical-align: middle;
}
table.dataTable thead tr > .dtfc-fixed-left {
    background: #6ea6fe;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
    text-align: center;
}
.dataTables_length,
.dataTables_info {
    padding-left: 15px;
    color: #868589;
}

.dataTables_filter,
.dataTables_paginate {
    padding-right: 15px;
}
table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
    opacity: 0;
}

table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
    opacity: 0;
}

.dataTables_scrollBody {
    margin: 0 0 15px;
}
ul.pagination li {
    padding: 0 5px;
}

ul.pagination li a {
    border: 1px solid #6ea0fe !important;
    background: #fff !important;
    color: #6da0fe !important;
}

ul.pagination li a:hover,
ul.pagination li.active a {
    color: #fff !important;
    background: transparent linear-gradient(121deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box !important;
}
/* select2 css */
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: black;
    line-height: 40px;
    font-family: "Poppins", sans-serif;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #e7e7e7;
    border-radius: 10px;
}

.select2-container .select2-selection--single {
    height: 40px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 40px;
}
.select_new span.select2.select2-container.select2-container--default {
    width: 100% !important;
}
.select_new span.selection {
    width: 100%;
    display: block;
}

.select2-container--default .select2-selection--multiple {
    width: 100%;
}

span.selection {
    display: block;
    width: 100%;
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.select2-container--default.select2-container--focus
    .select2-selection--multiple {
    border: solid #dfe5ef 1px;
    height: 39px;
    line-height: 25px;
    border-radius: 8px;
    padding: 0 8px;
}

/* span.select2-container.select2-container--default.select2-container--open {
    z-index: 9999 !important;
} */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #dfe5ef;
    height: 40px;
    line-height: 25px;
    padding: 0 10px;
}
.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background: transparent linear-gradient(121deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
}
.mobile_seltct {
    display: none;
}
.top_dr_name {
    background: transparent linear-gradient(106deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    border-radius: 24px 24px 0px 0px;
    padding: 12px 15px;
    color: #fff;
}

.dr_name h4 {
    margin: 0;
    color: #fff;
}

.back_arrow a {
    color: #fff;
    padding: 0 10px;
    font-size: 18px;
}
.calender_dr_detiles {
    display: flex;
}

.calender_dr_detiles .month {
    padding: 10px 0;
    width: 200px;
    border-right: 1px solid #eef2f6;
}

.calender_dr_detiles .month_view {
    flex-wrap: wrap;
    display: flex;
    padding: 30px 24px;
    width: calc(100% - 200px);
    justify-content: space-between;
}
.calender_dr_detiles .month_view .left {
    width: 60%;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 20px;
    position: relative;
}
.arrow a {
    border: 1px solid #7c92fe;
    color: #7c92fe;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    left: 25px;
}

.arrow a:hover {
    color: #fff;
    background: #7c92fe;
}

.arrow.right_side a {
    left: inherit;
    right: -5px;
}
.calender_dr_detiles .month_view .right {
    width: calc(100% - 61%);
    border: 1px solid #eef2f6;
    border-radius: 16px;

    padding: 20px;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1520px;
    width: 100%;
}
.title h4 {
    color: #6c8ffe;
    margin: 0;
}
.calender_dr_detiles .month .title {
    text-align: center;
    padding-bottom: 10px;
}
.black_eye {
    color: #1e1e1e;
    text-decoration: none;
}

.black_eye:hover {
    color: #664efd;
}
.month_calender ul {
    padding: 0;
    margin: 0;
}

.month_calender ul li {
    list-style: none;
    padding-left: 20px;
    border-bottom: 1px solid #eef2f6;
    display: flex;
    align-items: center;
}

.month_calender ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #535353;
    padding: 12px;
    display: inline-block;
    width: 100%;
}

.month_calender ul li a.active {
    background: transparent linear-gradient(139deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    border-radius: 8px;
    color: #fff;
}
.month_calender ul li a:hover {
    background: transparent linear-gradient(139deg, #664dfd 0%, #70bcfe 100%) 0%
        0% no-repeat padding-box;

    border-radius: 8px;
    color: #fff;
}

.month_calender ul li div {
    display: inline-block;
    padding-left: 10px;
    margin-right: 10px;
}
.att_doc {
    padding: 15px 0;
    border: 1px solid #eef2f6;
    border-left: 0;
    border-radius: 0;
    border-right: 0;
}

.att_doc p {
    margin: 0;
    font-family: "Poppins", sans-serif;
}
p {
    font-family: "Poppins", sans-serif;
}
.attech_from {
    padding: 10px 0 0;
}

.file_upload {
    background: #f5f7ff;
    border: 2px dashed #7c92fe;
    border-radius: 16px;
    margin-bottom: 15px;
    padding: 5px;
}

.gallery_img {
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.gallery_img h4 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    padding-bottom: 5px;
}
.select2-results__option {
    font-family: "Poppins", sans-serif;
}
.com_files {
    color: #7c92fe;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.com_files input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    width: -webkit-fill-available;
}

.com_files:hover {
    color: black;
    cursor: pointer;
}

.com_files:hover input {
    cursor: pointer;
}
.gallery {
    margin: 0 auto 15px;
    background: #6b89fe;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
input[type="date"] {
    position: relative;
    padding: 10px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    z-index: 1;
}

input[type="date"]:before {
    color: transparent;
    background: none;
    display: block;
    font-family: "FontAwesome";
    content: "\f073";
    /* This is the calendar icon in FontAwesome */
    width: 15px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 12px;
    color: #a6a6ab;
}
.form-check-input:checked {
    background-color: #664dfd;
    border-color: #664dfd;
}
.page_next {
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page_next a,
.page_next span {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    padding: 6px 15px;
    color: #868589;
    background: #fff;
}

.page_next a:hover {
    background: transparent linear-gradient(121deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    color: #fff;
    border-color: #6da3fd;
}
.calender_main img {
    width: 100%;
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}
.calender_next {
    text-align: center;
    padding-top: 30px;
}

.calender_next h4 {
    color: #6c8ffe;
    display: inline-block;
    padding: 0 30px;
    margin: 0;
}

.calender_next a {
    display: inline-block;
    border: 1px solid #6c95fd;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    padding: 6px 15px;
    color: #6c95fd;
}

.calender_next a:hover {
    color: #fff;
    background: transparent linear-gradient(121deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
}
.calender_main {
    padding-top: 50px;
}
.toggle_bar {
    display: none;
}
.photos_label {
    display: none;
}
.login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 10px;
}
.login .container,
.bg_white {
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 8px 20px #70bcfe14;
    border-radius: 24px;
}
.login_img img {
    width: 100%;
}
.login_filed {
    padding: 10px 0;
}

.img_login {
    text-align: center;
    padding-bottom: 10px;
}

.welcome_title {
    padding: 10px 0;
    text-align: center;
}

.welcome_title h3 {
    color: #00047e;
}

.view {
    position: relative;
}

.view_password {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #bcb9b9;
}

/****admin-css*****/
.fillter_admin .select2-container .select2-selection--single {
    background: transparent linear-gradient(142deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    border-color: #6eaffd;
}

.fillter_admin
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: #fff;
    padding: 0 40px;
}

.fillter_admin
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: #fff transparent transparent transparent;
}

.fillter_admin
    .select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent #fff transparent;
}
.fillter_admin {
    position: relative;
}
.dr_name svg {
    width: 24px;
    height: initial;
}
.fillter_admin i {
    position: absolute;
    top: 50%;
    left: 15px;
    /* z-index: 99999; */
    z-index: 1;
    color: #fff;
    transform: translateY(-50%);
}

.next_arrow {
    text-align: right;
}

.next_arrow a {
    color: #6c8ffe;
    text-decoration: none;
    background: #fff;
    padding: 6px 20px;
    display: inline-block;
    border-radius: 8px;
    border-color: #fff;
    border: 1px solid;
}

.next_arrow a:hover {
    color: #fff;
    background: transparent;
}
.admin_calender {
    width: calc(100% - 200px);
    padding: 20px;
}
.btn-success {
    background: #0da400;
    border-color: #0da400;
}

.btn-success:hover {
    background: transparent;
    color: #0da400;
    border-color: #0da400;
}
.btn-danger {
    background: #ee3f34;
    border-color: #ee3f34;
}

.btn-danger:hover {
    color: #ee3f34;
    background: transparent;
    border-color: #ee3f34;
}
.admin_calender_view {
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 20px;
    max-height: calc(100vh - 260px);
    margin-top: 20px;
    overflow: auto;
}
.full_calender .calender_next {
    padding-top: 0;
}

.admin_calender_view .calender_next {
    padding: 0;
}

.admin_calender_view .calender_next h4 {
    width: 100%;
    max-width: 400px;
}
hr {
    border-color: #eef2f6;
    opacity: 1;
}
.inner_admin {
    height: 100%;
    padding-bottom: 78px;
    position: relative;
}

.inner_admin .bottom_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
}
.red {
    color: #ee3f34;
}
textarea.form-control {
    height: auto;
}
.full_calender {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 0 50px;
}
/* .ui-widget-content {
    width: 100%;
} */
.full_calender .pending_req {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
    right: 0;
    text-align: center;
}

.pend_img {
    background: rgb(241 186 62 / 16%);
    width: 113px;
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pending_req h4 {
    color: #f1ba3e;
    padding: 20px 0;
    font-family: "Poppins", sans-serif;
    margin: 0;
}
.month_calender ul {
    max-height: calc(100vh - 224.4px);

    overflow: auto;
}

.calender_dr_detiles .month_view .left,
.calender_dr_detiles .month_view .right {
    max-height: calc(100vh - 210.4px);
    overflow: auto;
    overflow-x: hidden;
}
.mobile_view {
    display: none;
    align-items: center;
    justify-content: space-between;
}

.mobile_view .gallery {
    margin: inherit;
}

.mobile_view > span {
    width: calc(100% - 170px);
    color: #242021;
    font-family: "Poppins", sans-serif;
}
table td {
    line-height: 1.6;
}
.vbox-child {
    background: transparent !important;
}
h4 {
    font-size: 20px;
}
.user_name_detiles {
    display: none;
}
.edit_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.edit_title .edit_icon .btn {
    min-width: auto;
    padding: 4px 10px;
}
.dr_link {
    text-decoration: none;
    color: #212529;
}

.dr_link:hover {
    color: #6864fe;
}
.reject_doc {
    display: flex;
    align-items: baseline;
}
.edit_title .edit_icon .btn:hover svg path {
    fill: #685dfd;
    stroke: #685dfd;
}
.edit_icon .btn.btn-success {
    background: transparent;
    border: transparent;
}
.reject_doc div + div {
    padding-left: 15px;
}
.file_preview {
    max-width: 210px;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    display: block;
}
.edit_upload.main {
    display: block;
}

.edit_upload {
    display: none;
}

.file_preview.main {
    display: none;
}

.file_preview img {
    width: 100%;
}

.file_preview .edit_p {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 9;
    cursor: pointer;
    overflow: hidden;
}
.edit_p input {
    position: absolute;
    left: 0;
    opacity: 0;
}
.file_preview .edit_p img {
    width: 25px;
}

.file_preview .close_p {
    position: absolute;
    top: 5px;
    right: 5px;
    /* background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 4px 26px #143F5329;
    border-radius: 25px;
    width: 17px;
    height: 17px; */
    text-align: center;
    z-index: 9;
    cursor: pointer;
}

.file_preview .close_p i {
    font-size: 12px;
    position: relative;
    top: 0;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 4px 26px #143f5329;
    border-radius: 25px;
    width: 17px;
    height: 17px;
    line-height: 17px;
}
.logo_img a img + img {
    /* display: none; */
    max-width: 80px;
    position: relative;
    top: 6px;
    margin: 0 !important;
}
.middle_status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.middle_status a {
    width: calc(100% - 20px);
    display: block;
    padding-left: 10px;
}
/*min-devices-media-query*/
.all_detiles_calender {
    display: flex;
    position: relative;
}
.upload_custom_img {
    position: absolute;
    top: 39px;
    left: 10px;
    width: calc(100% - 45%);
    height: calc(100% - 46px);
    background: #fff;
    z-index: 0;
}

.upload_custom_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.all_detiles_calender .left_cal {
    width: 50%;
}

.all_detiles_calender .right_cal {
    width: 50%;
}

.all_detiles_calender .left_cal img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.ui-widget-content {
    border-color: #7c92fe;
    padding: 0;
    border-radius: 0;
    padding: 0;
    /* background: transparent linear-gradient(106deg, #70BCFE 0%, #664DFD 100%) 0% 0% no-repeat padding-box; */
}
.ui-datepicker .ui-datepicker-header {
    color: #6863fe;
    background: transparent linear-gradient(106deg, #ffffff 0%, #ffffff 100%) 0%
        0% no-repeat padding-box;
}
.ui-datepicker td span,
.ui-datepicker td a {
    text-align: center;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background: rgb(255 255 255 / 70%);
}

td.ui-datepicker-days-cell-over.ui-datepicker-current-day.ui-datepicker-today
    a {
    background: transparent linear-gradient(106deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    color: #fff;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    background: transparent;
    border: 0;
}

a.ui-state-default:hover {
    background: transparent linear-gradient(106deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    color: #fff;
}
.claer_bt .btn {
    min-width: auto;
    padding: 7px 15px;
}
.created_By h4 b {
    color: #6862fd;
}
.created_By {
    text-align: right;
    padding: 10px 0;
}
.created_By h4 {
    font-size: 16px;
    text-align: center;
}
.count_user {
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    margin-bottom: 10px;
}
.count_user .right_co {
    background: rgb(104 104 253 / 50%);
    padding: 4px 10px;
    border-radius: 4px;
}
.count_user h5 {
    margin: 0;
    padding-right: 15px;
    font-weight: 700;
}

.count_user span {
    font-weight: 600;
    color: #000000;
}

.count_user span + span {
    color: #000;
}
.br_copy {
    margin: 0 5px;
    padding: 2px;
    border-radius: 4px;
}

.br_copy .ms-3 {
    margin: 0 2px !important;
    display: inline-block;
}
.br_copy a + a {
    display: none !important;
}
.br_copy {
    display: none;
}
.created_By h4 {
    text-transform: capitalize;
}
.btn-info i {
    color: #fff;
}

.btn-info:hover {
    border-color: #0dcaf0;
    background: transparent;
    color: #0dcaf0;
}

.btn-info:hover i {
    color: #0dcaf0;
}
.black_eye svg {
    width: 16px;
    vertical-align: top;
}
/* .galleryADD {
    pointer-events: none;
} */

hr {
    margin: 15px 0;
    border-top: 1px solid #6c757d;
    display: block;
    opacity: 0.5;
}
.logout_bt {
    display: none;
}
.file_upload {
    max-width: 210px;
    margin: 0 auto 15px;
    position: relative;
}

.file_upload img {
    width: 100%;
}

.file_upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.gallery_img span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.select2-container {
    z-index: 1055 !important;
}
.loge_check label {
    position: relative;
    width: 100%;
    border: 1px solid #c3c3c3;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    padding: 5px;
    display: block;
}

.loge_check input {
    /* display: none; */
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
}

.loge_check img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.loge_check label {
    display: block;
}

.tick_container {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent linear-gradient(139deg, #70bcfe 0%, #664dfd 100%) 0% 0% no-repeat padding-box;
    width: 15px;
    height: 15px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    opacity: 0;
}

.loge_check {
    width: 100%;
    position: relative;
}

.loge_check input:checked + label {
    border: 1px solid #664dfd;
}

.loge_check input:checked + label .tick_container {
    opacity: 1;
}
.cal_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 0 0 ;
        flex-wrap: wrap;
}

.cal_logo .item {
    width: 33.33%;
    padding: 0 15px;
}

.cal_logo .item img {
    width: 100%;
}

@media (min-width: 1200px) {
}

@media (min-width: 575.98px) {
    .user_name_detiles {
        display: none !important;
    }
    .logout_bt {
        display: none;
    }

}
@media (min-width: 767.98px) {
    ...;
}
@media (min-width: 991.98px) {
    ...;
}
@media (min-width: 1024.98px) {
    ...;
}
@media (min-width: 1199.98px) {
    ...;
}
@media (min-width: 1200.98px) {
    ...;
}

/*max-devices-media-query*/

@media (max-width: 1200.98px) {
    ...;
}
@media (max-width: 1199.98px) {
    .calender_next h4 {
        padding: 0 5px;
        font-size: 18px;
    }

    .calender_dr_detiles .month_view .right {
        padding: 15px;
    }

    .calender_dr_detiles .month_view {
        padding: 10px;
    }

    .bottom_btn {
        text-align: center;
    }

    .bottom_btn .btn {
        margin-bottom: 5px;
    }

    .admin_calender_view .calender_next h4 {
        max-width: fit-content;
    }
    .inner_admin {
        padding: 20px 0 50px;
    }
    .inner_admin .mb-5 {
        margin: 0 0 20px 0 !important;
    }
}
@media (max-width: 1024.98px) {
    ...;
}
@media (max-width: 991.98px) {
    .calender_dr_detiles .month_view .left,
    .calender_dr_detiles .month_view .right,
    .month_calender ul,
    .admin_calender_view {
        /* max-height: 100%; */
        overflow: auto;
    }
    .pending_req p {
        display: none;
    }
    .admin_calender_view {
        max-height: calc(100vh - 300px);
        padding: 15px;
    }
    .calender_dr_detiles .month_view .left,
    .calender_dr_detiles .month_view .right {
        width: 100%;
        margin-bottom: 5px;
    }

    .calender_main {
        padding: 10px 0 0 0;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .calender_next {
        padding-top: 10px;
    }
    .pend_img {
        width: 70px;
        height: 70px;
    }

    .pend_img img {
        width: 20px;
    }

    .pending_req h4 {
        padding: 10px;
    }

    .full_calender .pending_req {
        max-width: 100%;
        padding: 0 25px;
    }
}
@media (max-width: 767.98px) {
    .pending_rq .btn-group {
        flex-wrap: wrap;
    }
    .dataTables_length,
    .dataTables_info {
        padding-bottom: 10px;
    }
    .login_img {
        display: none;
    }
    .next_arrow {
        text-align: center;
    }
}
@media (max-width: 575.98px) {
    .att_doc.reject_doc {
        display: flex;
    }
    .pending_req p {
        display: block;
    }
    .dr_name.admin {
        display: block !important;
    }
    .user_name_detiles {
        position: absolute;
        top: 100%;
        z-index: 9999;
        background: white;
        right: 20px;
        padding: 16px 15px;
        border-radius: 10px;
        margin: 9px 0 0;
        border-top: 1px solid #685dfd;
        box-shadow: 0px 4px 6px 0px #dbdbdb;
        width: calc(100% - 40px);
    }
    .user_name_detiles li {
        list-style: none;
    }
    .profile_detiles .dropdown {
        position: inherit;
    }

    .user_name_detiles p {
        font-size: 16px;
        margin: 0;
        text-align: right;
    }

    .user_name_detiles span {
        font-weight: 600;
        text-align: right;
        display: block;
    }

    .inner_header {
        position: relative;
    }
    .toggle_bar {
        display: block;
        color: #6c8ffe;
        font-size: 24px;
    }
    .logout_bt {
        display: none;
    }
    .profile_detiles .user_name {
        display: none;
    }
    .profile_detiles .btn {
        justify-content: end;
    }

    .logo {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: calc(100% - 150px);
    }

    .logo_img {
        text-align: center;
    }
    .logout_bt {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #6652fd;
        z-index: 999;
        border-left: 0;
        border-right: 0;
    }

    .logout_bt a {
        display: block;
        padding: 15px;
    }

    .body_inner {
        padding: 0;
    }

    .body_inner .col-12 {
        padding: 0;
    }

    .body_inner .container-xxl + row {
        margin: 0;
    }
    .top_dr_name {
        border-radius: 0;
    }
    .calender_dr_detiles .month_view .left,
    .calender_dr_detiles .month_view .right {
        width: 100%;
        border: 0;
    }

    .calender_dr_detiles .month_view {
        padding: 0 5px;
    }

    .calender_dr_detiles .month {
        padding: 0;
    }

    .calender_dr_detiles .month .title {
        display: none;
    }
    .attech_from .row {
        margin: 0;
    }

    .calender_dr_detiles .month_view .left {
        padding: 0;
    }

    .calender_dr_detiles .month_view .title.pb-3 {
        padding: 10px;
    }

    .att_doc {
        padding: 10px;
        display: none;
    }
    .attech_from {
        padding: 10px;
    }
    .month_calender ul li {
        padding: 0;
    }
    .month_calender ul li a.active {
        border-radius: 0;
        background: rgb(112 188 254 / 50%);
        color: #242424;
    }
    .photos_label {
        display: block;
    }
    .month_calender ul li span {
        display: none;
    }

    .month_calender ul li a {
        padding: 10px;
    }

    .month_calender ul li a {
        width: 78px;
        padding-right: 22px;
    }
    .month_calender ul li {
        position: relative;
    }
    .month_calender ul li div {
        position: absolute !important;
        right: 10px;
        margin: 0 auto;
        padding: 0;
    }

    .calender_dr_detiles .month {
        width: auto;
        border: 0;
        box-shadow: 0 6px 24px #294e9a14;
    }

    .calender_dr_detiles .month_view {
        width: 100%;
    }
    .calender_main {
        padding: 10px 0;
        order: 2;
        max-width: 350px;
        margin: 0 auto;
    }

    .calender_next {
        padding: 10px;
        order: 1;
        margin: 0 auto;
    }
    .pre_view span {
        display: none;
    }

    .pre_view .btn {
        min-width: auto;
    }

    .pre_view .btn i {
        margin: 0 !important;
    }
    /* .calender_dr_detiles .month_view .right {
    width: calc(100% - 30px);
    border: 1px solid #6D98FE38;
    margin: 0 auto;
    background: #70BCFE12;
    margin-bottom: 15px;
    padding: 12px;
} */
    .calender_dr_detiles .month_view .right {
        width: 100%;
        border: 1px solid #6d98fe38;
        margin: 0 auto;
        background: #70bcfe12;
        margin-bottom: 15px;
        padding: 12px;
        max-width: 100%;
    }
    .mobile_order {
        display: flex;
        flex-wrap: wrap;
    }
    .page_next {
        margin: 0;
        padding: 20px 0 0;
    }
    .title h4 {
        font-size: 14px;
    }

    .calender_next h4 {
        font-size: 14px;
    }

    .calender_next a {
        font-size: 12px;
        padding: 3px 7px;
    }

    .calender_main {
        padding: 0;
    }

    .btn {
        min-width: 85px;
        padding: 7px 14px;
        font-size: 12px;
    }
    .claer_bt .btn {
        padding: 7px 12px;
    }
    .pending_rq .btn-outline-primary {
        padding: 5px 10px;
        width: 50%;
    }
    .pending_rq {
        text-align: center;
    }
    /* .pending_rq {
    display: none;
}

.mobile_seltct {
    display: block;
} */
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px;
    }

    .card {
        /* height: calc(100vh - 63px); */
        border-radius: 0;
        overflow: hidden;
    }
    .mobile_seltct {
        color: #70bcfe;
    }

    .mobile_seltct
        .select2-container--default
        .select2-selection--single
        .select2-selection__arrow {
        height: 35px;
    }

    .mobile_seltct
        .select2-container--default
        .select2-selection--single
        .select2-selection__rendered {
        height: 35px;
        line-height: 35px;
        color: #70bcfe;
        padding: 0 30px;
        text-align: center;
    }

    .mobile_seltct .select2-container .select2-selection--single {
        height: 35px;
        border-color: #70bcfe;
    }

    .mobile_seltct
        .select2-container--default
        .select2-selection--single
        .select2-selection__arrow
        b {
        border-color: #70bcfe transparent transparent transparent;
    }
    .mobile_seltct
        .select2-container--default.select2-container--open
        .select2-selection--single
        .select2-selection__arrow
        b {
        border-color: transparent transparent #6752fd transparent;
    }
    .next_arrow a {
        text-align: center;
        padding: 3px 10px;
    }
    .dr_name h4 {
        font-size: 16px;
    }

    .admin_calender {
        width: calc(100% - 44px);
        padding: 10px 15px 0;
    }
    body,
    .month_calender ul li a,
    .form-control,
    .page_next a,
    .page_next span {
        font-size: 12px;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 14px;
    }
    .inner_admin {
        padding: 10px 0;
    }
    .inner_admin .bottom_btn {
        position: relative;
    }
    .month_calender ul {
        max-height: calc(100vh - 184.4px);
    }
    .calender_dr_detiles .month_view .left {
        height: calc(100vh - 405px);
        overflow-x: hidden;
    }
    .calender_main img {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
        display: table;
    }
    /* .mobile_view {
    display: flex;
}
.des_view {
    display: none;
} */
    .gallery {
        width: 40px;
        height: 40px;
    }
    span.com_files {
        display: block;

        color: #242021;
    }
    .gallery img {
        width: 22px;
    }

    .file_upload {
        padding: 2px;
    }
    /* .file_upload {
    max-width: 210px;
} */
    .calender_dr_detiles .month_view .right {
        max-height: initial;
        margin: 0;
    }
    .select2-container .select2-selection--single .select2-selection__rendered {
        display: block;
        padding-left: 16px;
        padding-right: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: pre-line;
        height: 40px;
    }
    .main_table .col-sm-12.col-md-6 {
        width: 50%;
        padding: 0 5px;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .dataTables_length,
    .dataTables_info {
        padding: 0;
    }

    .dataTables_filter {
        padding: 0;
    }
    .dataTables_paginate {
        padding-top: 15px;
    }

    div.dataTables_wrapper div.dataTables_filter input {
        width: calc(100% - 10px);
    }

    div.dataTables_wrapper div.dataTables_filter label {
        font-size: 0;
    }
    .full_calender {
        padding: 50px 0 10px;
    }
    .arrow a {
        top: 10px;
    }

    .arrow.left_side a {
        right: 30px;
        left: inherit;
    }
    .all_detiles_calender {
        padding: 0;
        max-width: 220px;
        margin: 0 auto;
    }
    .upload_custom_img {
        position: absolute;
        top: 17px;
        left: 5px;
        width: calc(100% - 47%);
        height: calc(100% - 21px);
        background: #fff;
    }
}
.error {
    color: red !important;
    font-size: 14px !important;
}
.error {
    padding-top: 3px;
}

.preview_poster {
    text-decoration: none;
    /* color: #6C8FFE; */
    margin: 0;
}
.dr_prefix {
    display: flex;
    width: 100%;
}

.dr_prefix .left {
    width: 15%;
}

.dr_prefix .right {
    width: calc(100% - 15%);
    padding-left: 15px;
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
}
/* iPhone [portrait + landscape] */
@media only screen and (max-device-width: 480px) {
}

@media (max-width: 475.98px) {
    .logo_img img {
        max-width: 106px;
    }
    .logo_img a img + img {
        max-width: 50px;
        top: 3px;
    }

    /* .full_calender > img {
        display: none;
    }     */
    .blank_images > img {
        display: none;
    }
    .full_calender .pending_req {
        position: relative;
        padding: 0;
    }
    .all_detiles_calender {
        max-width: 220px;
        margin: 0 auto;
    }
    .dr_prefix .left {
        width: 30%;
    }

    .dr_prefix .right {
        width: calc(100% - 30%);
        padding-left: 15px;
    }
}
@media (max-width: 380.98px) {
    .mobile_view > span {
        width: calc(100% - 100px);
    }
    .mobile_view {
        flex-wrap: wrap;
        justify-content: center;
    }
    .mobile_view .gallery {
        margin: 0 10px 0 0px;
    }
    .mobile_view .btn {
        margin-top: 5px;
    }
    .col-lg-4.col-md-4.text-center.col-6 {
        padding: 0;
    }
}

.permissions_check label span {
    color: #000;
    padding: 7px 20px;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.permissions_check label input {
    display: none;
}

.permissions_check label input:checked + span {
    background: #664dfd;
    color: #fff;
    border: 1px solid #664dfd;
}
.permissions_check {
    padding: 20px 0;
    text-align: center;
}

.permissions_check h2 {
    color: #664dfd;
    font-size: 22px;
    padding-bottom: 10px;
    text-align: center;
}

.timeline li {
    list-style: none;
    position: relative;
    padding: 15px 10px 15px 40px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dfdfdf;
    /* border-left: 1px solid #dfdfdf; */
}

.timeline {
    padding: 20px 0 0 10px;
    margin: 0;
    max-height: calc(100vh - 165px);
    overflow: auto;
    overflow-x: hidden;
}
.all_poster {
    max-height: calc(100vh - 165px);
    overflow: auto;
    overflow-x: hidden;
}
.timeline li .left {
    width: 100%;
}

.timeline li .right {
    width: calc(100% - 300px);
    text-align: right;
    color: #a9a9a9;
}

.timeline li .right p {
    margin: 0;
}

.timeline li:before {
    z-index: 1;
    position: absolute;
    background: #664dfd;
    content: "";
    width: 15px;
    height: 15px;
    top: 15px;
    left: -6px;
    border-radius: 50px;
}
.timeline li:after {
    background: #dfdfdf;
    height: calc(100% - 15px);
    bottom: 0;
    left: 0;
    position: absolute;
    content: "";
    width: 1px;
    z-index: 0;
}
.file_upload {
    position: relative;
    width: 100%;
}

.file_upload .gallery_img {
    max-width: 210px;
    margin: 0 auto;
}

.file_upload .gallery_img img {
    width: 100%;
    position: relative;
    border-radius: 14px;
}

.file_upload .gallery_img input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    border-radius: 16px;
}
.file_upload .gallery_img.galleryADD:before {
    position: absolute;
    bottom: 8px;
    right: 7px;
    content: "";
    background-image: url(../images/edit_p.png);
    width: 25px;
    height: 25px;
    background-size: contain;
    border: 1px solid rgb(255 255 255 / 70%);
    border-radius: 50px;
    z-index: 1;
    background-color: red;
    pointer-events: none;
}

.file_upload .gallery_img {
    position: relative;
}
.poster_status ul {
    display: flex;
    justify-content: end;
    padding: 0 10px 0 0;
    flex-wrap: wrap;
    margin: 0 0 15px;
    /* border-bottom: 1px solid #dee2e6; */
}
.month_all_img {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 10px;
}

.month_all_img:last-child {
    border: 0;
}
.poster_status ul li {
    padding-left: 0;
    list-style: none;
    padding-bottom: 0;
}
.all_poster .month_all_img:last-child .poster_status ul {
    border: 0;
}
@media (max-width: 375.98px) {
    /* .file_upload {
        max-width: 120px;
    } */
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background: transparent linear-gradient(139deg, #70bcfe 0%, #664dfd 100%) 0%
        0% no-repeat padding-box;
    color: #fff;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
    display: none !important;
}
/* .month_all_img h4 {
    color: #000000;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 20px;
    padding: 10px 20px;
    background: rgb(104 104 253 / 50%);
    border-radius: 50px;
    font-size: 16px;
    display: table;
    margin-left: auto;
    margin: 0 15px 20px;
} */
.month_all_img h4 {
    color: #000;
    border-bottom: 1px solid rgb(0 0 0 / 50%);
    padding: 5px 0;
    display: inline-block;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}
.back_arrow {
    position: relative;
    z-index: 1;
}
@media (max-width: 575.98px) {
    .poster_status ul li {
        padding: 0px 5px 10px;
    }
    .timeline li .right {
        width: 100%;
        text-align: left;
    }

    .timeline li {
        flex-wrap: wrap;
    }
}
.notifyjs-bootstrap-success {
    z-index: 999999 !important;
}
/* <div class="notifyjs-bootstrap-base notifyjs-bootstrap-success">
<span data-notify-text="">Data added successfully.</span>
</div> */
.corona_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 0 0;
    flex-wrap: wrap;
}

.corona_logo .item {
    padding: 0 15px;
    width: 25%;
}
.corona_logo .item img {
    width: 100%;
}
@media (max-width: 991.98px) {
    .corona_logo {
        padding: 0;
    }
}
@media (max-width: 767.98px) {
    .corona_logo {
        padding: 30px 0;
    }
}
@media (max-width: 575.98px) {
    .corona_logo .item {
        width: 50%;
        text-align: center;
        padding: 0 10px 20px;
    }

    .corona_logo .item img {
        max-width: 150px;
        margin: 0 auto;
    }
    .corona_logo {
        padding: 15px 0;
    }
    .logout_bt_mobile{
        display: none;
    }
    .cal_logo .item {
        width: 50%;
        padding: 0 15px 15px;
    }
}
