* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: 'Helvetica Now Display';
    background-color: var(--body_color);
}

:root {
    --black: #000000;
    --orange: #F05537;
    --white: #ffffff;
    --side_title_text: #A4A7AE;
    --menu_color: #535A6D;
    --body_color: #F6F6F6;
    --dark_text: #2D3E6B;
    --header_border: #D9D9D9;
    --notification: #FF0000;
    --shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    --blue: #1569BD;
    --dropdown: #ECEDEF;
    --event_text: #7A7A7A;
    --table_header: #F4F9FD;
    --table_header_text: #6E717B;
    --icon_color: #F4F4F5;
    --btn_border: #D3DCE6;
    --orange_shadow: 1px 1px 5px var(--orange);
}

::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: var(--header_border);
}


input[type="time"]::-webkit-clear-button {
  display: none;
}

/************************************ common ***************************************/
.main_wrapper {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.body_wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 100vh;
    overflow: auto;

}

.body_inner_content {
    padding: 25px 74px 24px 60px;
}

.box {
    height: 100%;
    padding: 24px 24px 24px 24px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.table_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 25px;
}
/* .table_title .justify-content-end{
    margin-left: auto;
} */

.table_title .add_btn {
    background-color: var(--orange);
    color: var(--white);
    padding: 9px 30px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    box-shadow: 1px 1px 5px var(--orange);
    display: block;
}
.modal_add_btn{
    justify-content: center;
    margin-bottom: 0;
    margin-top: 20px;

}
.modal_add_btn .add_btn{
    padding: 6px 28px;
    border: 0;
}

.table_title .add_btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all .5s;
    z-index: -1;
}

.table_title .add_btn:hover::after {
    left: 0;
    width: 100%;
}

.table_title h3 {
    margin: 0;
    color: var(--dark_text);
    font-size: 20px;
    font-weight: 700;
}

.user_add_icon {
    margin-right: 10px;
}

.user_title {
    margin-bottom: 14px;
}

.user_title h3 {
    margin: 0;
    color: var(--dark_text);
    font-size: 16px;
    font-weight: 500;
}

.form-check-input:focus {
    box-shadow: none;
}

.form-check-input {
    border: 2px solid var(--header_border);
    width: 20px;
    height: 20px;
}

.site_setting_section_space {
    margin-bottom: 32px;
}

.site_settings_second_right_section .input_box {
    max-width: 100%;
    margin: 0;
}

.site_settings_second_right_section .user_upload_photos .upload-field-customized {
    width: 100%;
    height: 320px;
}

.site_settings_second_right_section .user_upload_photos .upload-field-customized input[type="file"] {
    width: 100%;
    height: 320px;
    border-radius: 10px;
}

.site_settings_second_right_section .user_upload_photos .upload-field-customized span img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.table-responsive tbody tr {
    transition: all .5s;
}

.table-responsive tbody tr:hover {
    background-color: #f9f9f9;
}

.view:hover {
    color: var(--dark_text);
}

.orange {
    color: var(--orange);
    font-weight: 700;
}

.form-switch .form-check-input {
    background-color: #E8E8E8;
    border: 0;
    background-image: url("../img/check_bg.svg");
    width: 2.8em;
    height: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    cursor: pointer;
}

.form-switch .form-check-input:checked {
    background-color: #00C414;
    border: 1px solid #00C414;
}

.form-switch .form-check-input:focus {
    background-image: url("../img/check_foucs.svg");
}

.back_btn a {
    background: #fff;
    padding: 10px 20px;
    text-decoration: none;
    color: #2D3E6B;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
}

.back_btn a span {
    padding-left: 8px;
}

.main_wrapper_body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/************************************ end_common ***************************************/

/************************************ side_bar ***************************************/
.side_bar {
    width: auto;
    height: 100vh;
    overflow: auto;
    padding: 28px 60px 0 45px;
    background-color: var(--white);
    flex-grow: 0;
    flex-shrink: 0;
}

.side_bar_logo img {
    max-width: 128px;
}

.side_bar_menu_title {
    padding: 56px 0 18px 0;
}

.side_bar_menu_title h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--side_title_text);
    margin: 0;
}

.side_bar_menu_list ul {
    padding: 0;
    margin: 0;
}

.side_bar_menu_list ul li {
    list-style-type: none;
    margin-bottom: 28px;
}

.side_bar_menu_list ul li a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.side_bar_menu_list ul li a .menu_name {
    padding-left: 24px;
    color: var(--menu_color);
    font-size: 16px;
    font-weight: 500;
}

.sub_menu ul li a.active {
    color: var(--orange);
    position: relative;
}


.side_bar_menu_list ul li a.active {
    font-weight: bold;
    position: relative;
}

.side_bar_menu_list ul li a.active::after {
    content: "";
    position: absolute;
    top: 6px;
    right: -38%;
    width: 4px;
    height: 100%;
    background-color: var(--orange);
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    transform: translate(50%, -30%);
}

#sub_menu ul a.active {
    color: var(--orange) !important;
    position: relative;
}

#sub_menu ul a.active::after {
    content: "";
    display: none;
}


.menu_icon {
    width: 20px;
    height: 20px;
}

.active_icon {
    display: none;
}

.side_bar_menu_list .menu_item:hover .unactive_icon {
    display: none !important;
}

.side_bar_menu_list .menu_item:hover .active_icon {
    display: block !important;
}

.side_bar_menu_list .menu_item:hover .menu_name {
    color: var(--orange) !important;
}

.sub_menu {
    margin: 18px 0 0 44px;
    display: none;
}

.sub_menu ul {
    padding: 0;
    margin: 0;
}

.sub_menu ul li {
    margin-bottom: 12px;
}

.sub_menu ul li a {
    font-size: 14px;
    color: var(--dark_text);
}

.sub_menu ul li a:hover {
    color: var(--orange);
}

.arrow {
    position: absolute;
    top: 10%;
    right: -25%;
}

.rotate {
    transform: rotate(-180deg);
}

.rotate-reset {
    transform: rotate(-90deg);
    transition: .3s;
}



/************************************ end_side_bar ***************************************/

/************************************ header ***************************************/

.header_bar {
    background-color: var(--body_color);
    border-bottom: 1px solid var(--header_border);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 37px 60px 24px;
    position: sticky;
    top: 0;
    z-index: 100;

}

.header_bar h3 {
    white-space: nowrap;
    color: #556387;
    font-weight: 700;
    font-size: 20px;
}

.inner_title {
    color: #2D3E6B;
    font-weight: 800;
}

.header_bar form {
    width: 100%;
}

.header {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.header_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header_search_bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 432px;
    background-color: var(--white);
    padding: 12px;
    border-radius: 10px;
    margin-right: 24px;
    flex-shrink: 0;
}

.search {
    width: 100%;
    border: 0;
    outline: none;
    box-shadow: none;
    padding-left: 12px;
}

.search_box {
    width: 100%;
}

.search::placeholder {
    color: var(--dark_text);
    font-size: 16px;
    font-weight: 500;
}

.header_user_profile {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.notification {
    position: relative;
    display: none;
}

.notification_dot {
    width: 6px;
    height: 6px;
    outline: 2px solid var(--white);
    background-color: var(--notification);
    position: absolute;
    top: 4px;
    right: 3px;
    border-radius: 100%;
}

.user_profile {
    margin-left: 34px;
}

.user_profile_img {
    background-color: var(--white);
    padding: 4px 14px 4px 4px;
    border-radius: 30px;
}

.user_profile_img img {
    width: 34px;
    height: 34px;
    border-radius: 100%;
    margin-right: 12px;
}

.user_profile_img a {
    text-decoration: none;
    color: var(--dark_text);
    font-size: 14px;
    font-weight: 700;
}

.toggle_menu_btn {
    cursor: pointer;
    margin-left: 12px;
    display: none;
}

.toggle_menu_btn img {
    width: 25px;
}

.toggle_menu_btn .menu_close {
    display: none;
}

.header_left_content {
    display: flex;
    flex-direction: row;
    align-items: center;

}

.header_action {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header_action .custom-select {
    margin: 0 14px 0 0;
}

.header_btn_submit {
    border: 0;
    outline: none;
    background-color: var(--orange);
    border: 1px solid var(--orange);
    color: var(--white);
    padding: 9px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
}

.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 19px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: var(--dark_text) transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent var(--dark_text) transparent;
    top: 13px;
}

.select-items div,
.select-selected {
    color: var(--dark_text);
    padding: 10px 12px;
    background-color: #F0F0F1;
    border: 1px solid #A8AFB9;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-items {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-selected {
    border-radius: 5px;
}

.select-items {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.select-items div {
    background-color: var(--white);
    color: var(--dark_text);
    border: 0;
    transition: all .5s;
}

.select-items div:hover {
    background-color: #EFEFEF;
}

.header_left_bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    
}


.date_box {
    border: none;
    padding: 0;
    padding: 10px 12px;
    font-weight: 600;
    margin-right: 14px;
    border-radius: 5px;
    color: var(--dark_text);
    position: relative;
    background-color: #F0F0F1;
    border: 1px solid #A8AFB9;
}

.date_box::placeholder {
    font-weight: 500;
    color: var(--dark_text);
}

.date_box:focus {
    outline: none;
}

#ui-datepicker-div {
    display: none;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-top: 0.25rem;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.ui-datepicker-calendar thead th {
    padding: 0.25rem 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    color: #78909C;
}

.ui-datepicker-calendar tbody td {
    width: 2.5rem;
    text-align: center;
    padding: 0;
}

.ui-datepicker-calendar tbody td a {
    display: block;
    border-radius: 0.25rem;
    line-height: 2rem;
    transition: 0.3s all;
    color: #546E7A;
    font-size: 0.875rem;
    text-decoration: none;
}

.ui-datepicker-calendar tbody td a:hover {
    background-color: var(--orange);
    color: var(--white);
}

.ui-datepicker-calendar tbody td a.ui-state-active {
    background-color: var(--orange);
    color: white;
}

.ui-datepicker-header a.ui-corner-all {
    cursor: pointer;
    position: absolute;
    top: 0;
    width: 2rem;
    height: 2rem;
    margin: 0.5rem;
    border-radius: 0.25rem;
    transition: 0.3s all;
}

.ui-datepicker-header a.ui-corner-all:hover {
    background-color: #ECEFF1;
}

.ui-datepicker-header a.ui-datepicker-prev {
    left: 0;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-size: 0.5rem;
    background-position: 50%;
    transform: rotate(180deg);
}

.ui-datepicker-header a.ui-datepicker-next {
    right: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: 50%;
}

.ui-datepicker-header a>span {
    display: none;
}

.ui-datepicker-title {
    text-align: center;
    line-height: 2rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
    color: #78909C;
    font-weight: 400;
    font-size: 0.75rem;
}

.date_secton {
    position: relative;
}

.date_symbol {
    position: absolute;
    top: 0;
    right: 14px;
    background: var(--orange);
    color: var(--white);
    height: 100%;
    width: 50px;
    text-align: center;
    display: grid;
    place-content: center;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}


/************************************ end_header ***************************************/


/************************************ dashboard ***************************************/
.dashboard_first_section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.dashboard_first_section_counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
    flex-grow: 8;
}

.box_arrow_green {
    padding: 4px 15px;
    display: inline-block;
    background-color: #E5FDFF;
    color: #007A84;
    border-radius: 30px;
}

.box_arrow_yellow {
    background-color: #FFFFE2;
    color: #828200;
}

.box_arrow_marun {
    background-color: #FFE2E2;
    color: #780000;
}

.box_arrow_pista {
    background-color: #E2FFE7;
    color: #002706;
}

.box_arrow_green h5 {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.box_arrow_green h5 img {
    margin-left: 4px;
}


.box_large_text h3 {
    font-size: 30px;
    color: var(--dark_text);
    font-weight: 900;
    margin: 0;
}

.box_small_text {
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box_small_text h4 {
    margin: 0;
    font-size: 18px;
    color: var(--dark_text);
    font-weight: 700;
}

.box_small_text a {
    color: var(--blue);
    text-decoration: none;
    border-bottom: 1px solid var(--blue);
    line-height: 20px;
    font-weight: 500;
}

.dashboard_first_section_users {
    flex-grow: 1;
}

.dashboard_users_box {
    padding: 30px 14px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 0 0 0 24px;
    display: flex;
    align-items: center;

}

.user_box_title {
    padding-right: 27px;
}

.user_box_title h3 {
    margin: 0;
    color: var(--dark_text);
    font-size: 18px;
    font-weight: 700;
}

.more_user_watch a {
    font-size: 14px;
    color: var(--blue);
    font-weight: 500;
}

.more_user_watch {
    margin-top: 4px;
}

.more_user_watch a img {
    margin-left: 5px;
}


.dashboard_user_profile img {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    margin-left: -15px;
    outline: 3px solid var(--white);
}

.dashboard_user_profile img:first-child {
    margin-left: 0;
}

.dashboard_second_section {
    margin: 32px 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 24px;
}

.select_year {
    color: var(--dark_text);
    font-weight: 700;
    border: 1px solid var(--dropdown);
    padding: 5px 14px;
    border-radius: 30px;
    display: block;
    width: 13%;
    font-size: 1em;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    outline: none;
}

.ct-series-a .ct-point,
.ct-series-a .ct-line {
    stroke: var(--orange) !important;
}

.ct-label {
    color: #B0B3BC !important;
    font-size: 14px;
    font-weight: 500;
}

.ct-line-chart {
    height: 330px;
}

.section_space {
    padding-top: 32px;
}

.order_table {
    align-items: center;
    white-space: nowrap;
}

.order_table thead tr th {
    color: var(--dark_text);
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 12px;
}

.order_table tbody tr td {
    color: #6C7898;
    border: 0;
    font-size: 14px;
    font-weight: 500;
    padding-top: 28px;
    padding-bottom: 28px;
    vertical-align: middle;
}

.upcoming_main_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.upcoming_event_section {
    border-right: 1px solid #DCDEE1;
}

.upcoming_event_section:last-child {
    border-right: 0;
}

.upcoming_event_box {
    display: flex;
    flex-direction: row;
    align-items: center;
/*    margin-bottom: 35px;*/
}

.upcoming_event_box:last-child {
    margin-bottom: 0;
}

.upcoming_event_img img {
    width: 95px;
    height: 59px;
}

.upcoming_event_details {
    margin-left: 14px;
}

.upcoming_event_details h3 {
    color: var(--dark_text);
    font-size: 18px;
    font-weight: 700;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upcoming_event_details h5 {
    color: var(--event_text);
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/************************************ end_dashboard ***************************************/


/************************************ admin_user ***************************************/
.admin_user_table table {
    white-space: nowrap;
}

.admin_user_table table thead tr {
    background-color: var(--table_header);
}

.admin_user_table table thead tr th {
    color: var(--table_header_text);
    font-size: 14px;
    border: 0;
    font-weight: 500;
    padding: 16px 28px;
}

.admin_user_table table thead tr th:first-child {
    border-top-left-radius: 20px;
}

.admin_user_table table thead tr th:last-child {
    border-top-right-radius: 20px;
}

.admin_user_table table tbody {
    background-color: var(--white);
}

.admin_user_table table tbody tr td {
    padding: 28px 28px;
    font-size: 16px;
    color: var(--dark_text);
    font-weight: 500;
    border-bottom: 1px solid #ECEDEF;
}

.admin_user_table table tbody tr td .edit,
.view,
.delete_record,
.ban,
.green_btn {
    margin: 0 16px 0 0;
    text-decoration: none;
    background-color: var(--icon_color);
    color: var(--dark_text);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 21px;
    border-radius: 5px;
}

.ban {
    background-color: #FBE7E7;
    color: #D41313;
}

.green_btn {
    background-color: #00C514;
    color: var(--white);
}

.green_btn:hover {
    color: var(--white);
}

.ban:hover {
    color: #D41313;
}

.delete_record {
    padding: 8px;
    font-size: 12px;
}

.delete_record:hover {
    color: var(--dark_text);
}

.admin_user_table table tbody tr td a:last-child {
    margin: 0;
}

.admin_user_table table tbody tr td .active_dot,
.deactive_dot,
.close_dot {
    width: 8px;
    height: 8px;
    background-color: #00C514;
    border-radius: 100%;
    margin-right: 11px;
    position: relative;
    top: 17px;
    margin-top: 8px;
}

.deactive_dot {
    background-color: #A4A4A4;
}

.user_status,
.user_status_deactive,
.user_status_close {
    position: relative;
}

.close_dot {
    background-color: #FFB800;
}

.user_status_deactive {
    color: #A4A4A4 !important;
}

.status {
    padding-left: 15px;
}

.admin_user_table tr:last-child td:first-child {
    border-bottom-left-radius: 30px;
}

.admin_user_table tr:last-child td:last-child {
    border-bottom-right-radius: 30px;
}

.admin_user_table tbody>tr:last-child>td {
    border-bottom: 0;
}

.cust_pagination {
    margin-top: 39px;
    display: flex;
    align-items: center;
}

.cust_pagination .page-item .page-link {
    border: 0;
    background-color: transparent;
    border-radius: 5px;
    margin: 0 10px 0 0;
    color: #515F84;
    font-weight: 700;
    box-shadow: none;
    outline: none;
}

.page-link.active,
.active>.page-link {
    background-color: var(--orange) !important;
    color: var(--white) !important;
}

.page_left_arrow {
    margin-right: 12px;
    font-size: 22px;
    color: var(--orange);
}

.page_right_arrow {
    font-size: 22px;
    color: var(--orange);

}

.admin_user_modal .user_profile_data_box h4:first-child {
    min-width: 180px;
}

/************************************ end_admin_user ***************************************/


/************************************ create_admin_user ***************************************/
.user_upload_photos {
    margin-bottom: 24px;
}

.user_upload_photos .upload-field-customized {
    width: 166px;
    height: 166px;
    position: relative;
    cursor: pointer;
}
.border_class .upload-field-customized{
    border: 1px solid var(--body_color);

}

.user_upload_photos .upload-field-customized input[type="file"] {
    position: absolute;
    width: 166px;
    height: 166px;
    opacity: 0;
    cursor: pointer;
    left: 0px;
    top: 0px;
    z-index: 10;
}

.user_upload_photos .upload-field-customized span {
    text-align: center;
    width: 100%;
    display: block;
    height: 50px;
    line-height: 50px;
}

.user_upload_photos .upload-field-customized span img {
    /* opacity: 0.2; */
    width: 166px;
    height: 166px;
    border-radius: 5px;
}

.input_filed {
    width: 100%;
    min-width: 96%;
    height: 45px;
    max-width: 332px;
    padding: 10px 11px;
    border: 1px solid var(--body_color);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    border-radius: 5px;
    box-sizing: border-box;
}

.input_filed::placeholder {
    color: var(--dark_text);
    font-weight: 500;
}

.form_group {
    display: flex;
    flex-direction: row;
    margin-bottom: 24px;
    position: relative;
}

.input_box {
    width: 100%;
    max-width: 332px;
    margin: 0 24px 0 0;
}
.cust_tab_menu .input_box{
    max-width: 100% !important;
    margin-bottom: 28px;
}


.select_gender_section {
    display: flex;
    padding-top: 10px;
}

.select_gender_section .form-check {
    margin: 0 28px 0 0;
}

.select_gender_section .form-check .form-check-label {
    color: var(--dark_text);
    font-weight: 500;
    margin-top: 1px;
    margin-left: 10px;
}

.radio_button {
    display: flex;
    flex-direction: column;
    margin: 0 14px 0 0;
}

.radio_group {
    display: flex;
}

.button_section {
    margin-top: 38px;
}

.button_section .form_btn,
.header_clear_btn {
    padding: 8px 0;
    width: 128px;
    margin: 0 14px 0 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    background-color: var(--white);
}

.button_section .form_btn,
.header_clear_btn {
    padding: 8px 0;
    width: 128px;
    margin: 0 14px 0 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    background-color: var(--white);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}
.notification_btn{
    width: auto !important;
    padding: 8px 20px !important;
}
.header_clear_btn {
    color: var(--dark_text);
    border: 1px solid var(--btn_border);
    padding: 10px 0;
    font-size: 16px;
}

.header_clear_btn:hover {
    color: var(--dark_text);
}

.button_section .form_btn.cancel {
    color: var(--dark_text);
    border: 1px solid var(--btn_border);
}

.button_section .form_btn.save {
    color: var(--white);
    background-color: var(--orange);
    border: 0;
    box-shadow: var(--orange_shadow)
}

/************************************ end_create_admin_user ***************************************/

/************************************ create_admin_role ***************************************/
.create_admin_role {
    display: flex;
    gap: 50px;
}


.push_create_admin_role_left_section{
    flex-grow: 1;
    width: 100%;
    min-width: 10%
}

.create_admin_role_left_section .input_box,
.input_filed {
    max-width: 100%;
    min-width: 100%;
}

.description {
    flex-grow: 2;
}

.description .input_box {
    width: 100%;
    max-width: 100%;
}

.description_box {
    height: 142px;
}
.input_box .create_admin_role_select_option{
    margin: 0 20px 10px 0;
}

.create_admin_role_select_option .form-check-label {
    color: var(--dark_text);
    font-weight: 500;
    margin-left: 10px;
    margin-top: 2px;
    white-space: nowrap;
}
.ellipsis_text{
    width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.create_admin_role_select_option {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.create_admin_role_select_option .form-check {
    margin-bottom: 22px;
}

/************************************ end_create_admin_role ***************************************/

/************************************ event_category ***************************************/
.event_category_table table tbody tr td {
    vertical-align: middle;
    padding: 20px 28px;
}

.event_category_table table tbody tr td img {
    height: 35px;
    object-fit: contain;
}

/************************************ end_event_category ***************************************/

/************************************ add_new_event_category ***************************************/
.add_new_event_cat .upload-field-customized {
    width: 280px;
    height: 177px;
}

.add_new_event_cat .upload-field-customized input[type="file"] {
    width: 280px;
    height: 177px;
}

.add_new_event_cat .upload-field-customized span img {
    width: 280px;
    height: 177px;
    border-radius: 10px;
}

.add_new_eve_cat_des {
    width: 50%;
}

.event_category_table table tbody tr td:nth-child(4) {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/************************************ end_add_new_event_category ***************************************/


/************************************ add_page ***************************************/
.add_page_description {
    flex-grow: 108;
}

.add_page_description .input_filed {
    height: 278px;
}

.add_page_description .input_box {
    max-width: 100%;
}

.add_page_upload_img {
    width: 408px;
    height: 177px;
}

.add_page_upload_img .upload-field-customized {
    width: 408px;
    height: 177px;
}

.add_page_upload_img .upload-field-customized input[type="file"] {
    width: 408px;
    height: 177px;
}

.add_page_upload_img .upload-field-customized span img {
    width: 408px;
    height: 177px;
    object-fit: contain;
    padding: 5px;
}

.seo_title {
    margin-bottom: 24px;
}

.seo_title h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark_text);
    margin: 0;
}

.add_page_description_two {
    flex-grow: 4;
}

.custome_width {
    width: 15.5%;
}

/************************************ end_add_page ***************************************/


/************************************ contact ***************************************/
.contact_page .input_filed {
    width: 35%;
}

/************************************ end_contact ***************************************/


/************************************ site_settings ***************************************/


.site_settings_first_left_content {
    display: flex;
    flex-direction: row;
}

.site_settings_first_left_content .site_settings_profile {
    margin: 0 28px 0 0;
}

.site_setting_middle_content {
    width: 100%;
}

.pt-28 {
    padding-top: 28px;
}

.site_setting_middle_content .input_box {
    max-width: 100%;
}

.site_settings_profile .upload-field-customized {
    width: 150px;
    height: 150px;
}

.site-setting .upload-field-customized {
    width: 100%;
    border-radius: 10px;
}

.site_settings_profile .upload-field-customized input[type="file"] {
    width: 150px;
    height: 150px;
}

.site_settings_profile .upload-field-customized span img {
    /* opacity: 0.2; */
    width: 150px;
    height: 150px;
    border-radius: 5px;
    object-fit: contain;
    padding: 10px;
}

.site_setting_middle_content .form_group {
    margin-bottom: 28px;
}

.site_setting_last_content {
    flex-grow: 2;
}

.site_setting_last_content .input_box {
    max-width: 100%;
    margin: 0;
}

.site_setting_last_content .input_filed {
    width: 100%;
    height: 148px;
}

.site_settings_second_section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.site_settings_second_left_section .input_box {
    max-width: 100%;
}

.site_settings_third_section .input_box {
    max-width: 100%;
}

/************************************ end_site_settings ***************************************/


/************************************ site_configuration ***************************************/
.site_configuration_box {
    margin-bottom: 24px;
}

.site_configuration_section .input_box {
    max-width: 100%;
}

.site_configuratoin_title {
    margin-bottom: 28px;
}

/************************************ end_site_configuration ***************************************/

/************************************ future_events ***************************************/
.light_text {
    color: #556387;
}

.future_events_details_first_left_icon img {
    width: 280px;
    height: 177px;
    border-radius: 10px;
}

.future_events_details_second_top_section {
    margin-bottom: 28px;
}

.future_events_details_second_top_section:last-child {
    margin-bottom: 0;
}

.future_events_details_second_top_section h4 {
    color: var(--dark_text);
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 8px 0;
}

.future_events_details_second_top_section p {
    color: #5B698D;
    margin: 0;
    max-width: 300px;
}

.future_events_details_first_section {
    display: flex;
    flex-direction: row;
    flex-grow: 3;
}

.future_events_details_first_left_icon {
    margin-right: 28px;
}

.future_events_details_last_section {
    display: flex;
    justify-content: space-between;
    flex-grow: 3;
}

.future_events_box {
    display: flex;
    justify-content: space-between;
}

.future_full_description {
    margin-top: 28px;
}

.future_full_description p {
    max-width: 100%;
}

.future_events_table table thead trr {
    border-bottom: 1px solid #EBEBEB;
}

.future_events_table table thead tr th {
    color: var(--dark_text);
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
}

.future_events_table table tbody tr td {
    color: #5B698D;
    font-size: 12px;
    font-weight: 500;
    padding: 14px;
}

.future_events_table table tbody>tr:last-child>td {
    border-bottom: 0;
}

.future_events_table table tbody tr td:nth-child(3) {
    width: 248px;
}

.future_events_table {
    border: 1px solid #EBEBEB;
    border-radius: 10px;
}

.future_event_img {
    margin-right: 28px;
}

.future_event_img img {
    width: 280px;
    height: 177px;
    border-radius: 10px;
}

.mb-38 {
    margin-bottom: 38px;
}

.mb-28 {
    margin-bottom: 28px;
}

.border-right {
    border-right: 1px solid #EBEBEB;
}

.future_event_box h3 {
    color: var(--dark_text);
    font-size: 16px;
    font-weight: 700;
}

.future_events_section {
    display: flex;
    flex-direction: row;
}

.future_event_box h4 {
    color: #5B698D;
    font-size: 16px;
    max-width: 450px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.future_event_details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.future_event_box_description {
    margin: 28px 0;
}

.future_event_box_description h4 {
    max-width: 100%;
    white-space: initial;
    line-height: 1.4;
}

.future_table {
    border: 1px solid #EBEBEB;
    border-radius: 10px;
}

.future_table .table thead tr th {
    color: var(--dark_text);
    font-size: 16px;
    font-weight: 700;
    padding: 14px;
    white-space: nowrap;
}

.future_table .table tbody tr td {
    color: #5B698D;
    font-size: 14px;
    padding: 14px;
    white-space: nowrap;
}

.future_table .table tbody tr:last-child td {
    border-bottom: 0;
}

.future_table .table tbody tr td:nth-child(3) {
    max-width: 180px;
    white-space: break-spaces;
}

/************************************ end_future_events ***************************************/

/************************************ user ***************************************/
.user_table table tbody td img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 100%;
}

.user_modal .modal-dialog {
    max-width: 431px;
}

.user_modal .modal-dialog .modal-content {
    border-radius: 5px;
    border: 1px solid #D3DCE6;
}

.users_profile_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 22px 20px 25px;
}

.users_profile_img {
    position: relative;
}

.users_profile_img img {
    width: 77px;
    height: 77px;
    border-radius: 100%;
}

.users_profile_content {
    margin-left: 24px;
}

.users_profile_content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark_text);
    margin: 0;
}

.users_profile_content h4 {
    font-weight: 500;
    font-size: 14px;
    color: var(--dark_text);
    margin-top: 6px;
    margin-bottom: 0;
}

.users_active_status,
.users_inactive_status {
    width: 10px;
    height: 10px;
    background-color: #00C414;
    border-radius: 100%;
    position: absolute;
    bottom: 3px;
    right: 7px;
    outline: 3px solid var(--white);
}

.users_inactive_status {
    background-color: #A4A4A4;
}

.user_profile_data_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-top: 1px solid #ECEDEF;
    border-bottom: 1px solid #ECEDEF;
    padding: 14px 28px;
}

.user_profile_data_box h4 {
    font-size: 14px;
    color: #728190;
    font-weight: 500;
    margin-bottom: 0;
    min-width: 110px;
}

.user_profile_data_box h4:last-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark_text);
    margin: 0;
    width: 100%;
}

.user_modal_close {
    margin-top: -20px;
    margin-right: -20px;
    cursor: pointer;
    margin-left: auto;
}

/************************************ end_user ***************************************/


/************************************  manage_events ***************************************/
.manage_table_action ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.manage_table_action ul li {
    list-style-type: none;
    color: #1569BD;
    font-weight: bold;
}

.manage_table_action ul li:first-child {
    margin-right: 12px;
}

.manage_table_action ul li a {
    text-decoration: none;
}

.manage_table_action ul li a img {
    width: 12px !important;
    height: 12px !important;
    border-radius: 0 !important;
    margin: 0 15px 0 0;
}

.manage_events_table .view {
    padding: 10px 21px;
}

/************************************ end_manage_events ***************************************/


/************************************ manage_events_dashboard ***************************************/
.manage_first_das_top_section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark_text);
    margin: 0;
}

.manage_first_das_top_section a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #1569BD;
    margin-left: 12px;
}

.manage_first_das_top_section a img {
    margin-left: 7px;
}

.manage_first_das_top_section {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.manage_first_das_bottom_section {
    margin-top: 8px;
}

.manage_first_das_bottom_section p {
    margin: 0;
    color: var(--event_text);
    font-size: 14px;
    font-weight: 500;
}

.ban_btn {
    background-color: #C62A0C;
    color: var(--white);
    display: inline-flex;
    padding: 3px 14px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.ban_btn img {
    margin-right: 4px;
}

.manage_first_das_section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.manage_events_number_section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.manage_events_number_box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #495C6F;
    margin: 0;
}

.manage_events_number_box h3 {
    color: var(--dark_text);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 32px;
}

.small_text {
    font-size: 18px;
}

.manage_events_das_last_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.progress_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.progress_title h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark_text);
    margin: 0;
}

.progress_title h4:last-child {
    color: var(--event_text);
    font-weight: 500;
}

.custome_progress_bar {
    height: 24px;
    border-radius: 15px;
    background-color: #EEEEEE;
}

.custome_progress_bar .progress-bar {
    border-radius: 15px;
}

.custome_progress_bar .progress-bar.tomato_bar {
    background-color: #E24C33;
}

.custome_progress_bar .progress-bar.yellow_bar {
    background-color: #FFB950;
}

.custome_progress_bar .progress-bar.green_bar {
    background-color: #64C1C0;
}

.manage_event_progess_box {
    margin-bottom: 22px;
}

.manage_events_dasr_last_right_table_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.manage_events_dasr_last_right_table_title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark_text);
}

.manage_events_dasr_last_right_table_title a {
    color: #1569BD;
    font-size: 14px;
    font-weight: 700;
}

.manage_events_dast_last_right_table table {
    white-space: nowrap;
}

.manage_events_dast_last_right_table table thead tr th {
    color: var(--dark_text);
    font-size: 16px;
    font-weight: 700;
}

.manage_events_dast_last_right_table table tbody tr td {
    font-size: 14px;
    color: var(--event_text);
    font-weight: 500;
}

.manage_events_das_last_right_section {
    overflow-x: hidden;
}

#sold_ticket_modal .modal-dialog {
    max-width: 1085px;
}

#sold_ticket_modal .modal-dialog .modal-content {
    border-radius: 5px;
    border: 2px solid #D3DCE6;
}

.ticket_header {
    text-align: center;
    margin-bottom: 24px;
}

.ticket_header h5 {
    font-size: 20px;
    color: var(--dark_text);
    font-weight: 700;
}

.ticket_header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark_text);
}

.ticket_light_text {
    color: var(--dark_text);
    font-size: 14px;
    font-weight: 500;
}

.ticket_table .admin_user_table table thead tr th:first-child {
    border-top-left-radius: 0px;
}

.ticket_table .admin_user_table table thead tr th:last-child {
    border-top-right-radius: 0px;
}

.ticket_table .admin_user_table tr:last-child td:first-child {
    border-bottom-left-radius: 0px;
}

.ticket_table .admin_user_table tr:last-child td:last-child {
    border-bottom-right-radius: 0px;
}

.ticket_table .admin_user_table table thead tr th {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark_text);
}

.ticket_table .admin_user_table table tbody tr td {
    font-size: 14px;
}

.ticket_table tfoot {
    background-color: var(--table_header);
}

.ticket_table tfoot tr td {
    padding: 16px 28px;
    border-bottom: 0;
    font-weight: 700;
    color: var(--dark_text);
    font-size: 14px;
}

.modal_close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    margin-top: -20px;
    margin-right: -20px;
}

.pending_refund_table table thead tr th:last-child {
    text-align: center;
}

.pending_refund_table table tbody tr td:last-child {
    text-align: right;
}

.accept_refund_table table tbody tr td a {
    color: #00C414;
    text-decoration: none;
}


.reject_refund_table table tbody tr td a {
    color: #9D9D9D;
    text-decoration: none;
}

/************************************ end_manage_events_dashboard ***************************************/

/************************************ login ***************************************/
.auth_main_bg {
    width: 100%;
    height: 100vh;
    background-color: var(--orange);
    position: relative;
}

.white_box {
    width: 100%;
    max-width: 1000px;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.white_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    background-image: url("../img/eventz_dot.png");
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left;
    z-index: -1;
}

.white_box::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    background-image: url("../img/eventz_dot.png");
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right;
    z-index: -1;
}

.box_logo {
    padding: 30px 0;
    border-bottom: 2px solid dotted var(--orange);
}

.box_logo img {
    height: 50px;
}

.form_title {
    text-align: center;
    padding-top: 67px;
}

.form_title h3 {
    margin: 0;
    font-size: 36px;
    font-family: 'MADE Sunflower', sans-serif;
}

.form_section {
    padding: 0px 98px
}

.form_group {
    margin-top: 36px;
    margin-bottom: 0;
}

.form_input_section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.form_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 14px;
}

.form_box label {
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
    padding-left: 20px;
}

.form_box .input_form {
    height: 60px;
    border-radius: 30px;
    outline: none;
    border: 1px solid var(--orange);
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: none;
}

.forgot_password {
    text-align: right;
    padding-right: 20px;
    padding-top: 5px;
}

.forgot_password a {
    text-decoration: none;
    font-size: 16px;
    color: var(--black);
}

.submit_btn_section {
    margin: 70px 0;
    position: relative;
}

.submit_btn_section .submit_btn {
    width: 275px;
    height: 59px;
    background-color: var(--orange);
    color: var(--white);
    border: 0;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 700;
    box-shadow: rgb(240 85 55 / 40%) 0px 8px 24px;
}

.submit_btn_section img {
    position: absolute;
    top: -25px;
    margin-left: -10px;
}

.otp_section {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.otp_box {
    width: 43px;
    height: 60px;
    border: 1px solid var(--orange);
    border-radius: 35px;
    outline: none;
    box-shadow: none;
    text-align: center;
    margin: 0 5px;
}

.otp_box:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--orange);
}

.user_dropdown {
    background-color: var(--white);
    padding: 18px 24px;
    border-radius: 25px;
    margin-top: 12px;
    display: block;
    transform: scaleY(0);
    transform-origin: 50% 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    position: absolute;
}

.user_dropdown ul {
    padding: 0;
}

.user_dropdown ul li {
    list-style-type: none;
}

.user_dropdown ul li a {
    text-decoration: none;
    color: var(--dark_text);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    display: inline-block;
}

.user_profile:hover .user_dropdown {
    transform: scaleY(1);
}

/************************************ end_login ***************************************/

.footer {
    padding: 10px 0;
    background-color: var(--white);
    color: var(--event_text);
    text-align: center;
}

.text-red {
    color: var(--orange);
    font-weight: 800;
    text-decoration: none;
}

.text-red:hover {
    color: var(--orange);
}

/************************************ error_page ***************************************/
.error_header {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.error_header img {
    width: 123px;
}

.error_body_content {
    width: 100%;
    height: calc(100vh - 89px);
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.error_body_left_text img {
    width: 350px;
}

.error_body_left_text h3 {
    font-size: 28px;
    width: 100%;
    max-width: 375px;
    padding: 20px 48px;
}

.error_back_arrow {
    width: 25px !important;
    margin: 0 14px 0 45px;
}

.error_body_left_text a {
    text-decoration: none;
    color: var(--black);
    font-weight: 900;
}

.w-300 {
    width: 300px;
    margin-left: 53px
}

.h-500 {
    height: 500px;
    object-fit: contain;
}

.width-450 {
    width: 450px;
}

.report_box {
    padding: 24px 24px 24px 24px;
}

.report_box_title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #263D54;
    margin-bottom: 18px;
}

.report_box_body h4 {
    color: #7A7A7A;
    font-size: 14px;
    font-weight: 700;
}

.report_box_body .form-select {
    background-color: #F5F8FC;
    border: 1px solid #D3DCE7;
    font-size: 14px;
    font-weight: 700;
    color: #263D54;
    box-shadow: none;
    outline: none;
    margin-bottom: 8px;
}

.report_border {
    border: 1px solid #EAEAEA;
}

.common_label {
    padding: 2px 20px;
    margin: 0 8px 0 0 ;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.orange_label {
    background-color: var(--orange);
    color: var(--white);
}

.green_label {
    background-color: #E7EDE2;
    color: #3E7216;
    border: 1px solid #3E7216;
}
.yellow_label{
    color: #FFA800;
    border: 1px solid #FFA800;
    background-color: #FEF4E0;
}
.ban_label_text{
    color: #8F3321;
    border: 1px solid #8F3321;
    background-color: #F1E6E3;
}
.draft_label{
    background-color: #F1F1F1;
    color: #8F8F8F;
    border: 1px solid #8F8F8F;
}

.manage_first_das_left_section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/************************************ end_error_page ***************************************/

.pagination {
    margin-top: 10px;
}

.pagination .page-link {
    color: var(--black);
    box-shadow: none;
    outline: none;
}

.pagination .active>.page-link {
    border: 1px solid var(--orange);
}

.cust_toggle .switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 23px;
}

/* Hide default HTML checkbox */
.cust_toggle .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.cust_toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E8E8E8;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-transition: .4s;
    transition: .4s;
}

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

.cust_toggle input:checked+.slider {
    background-color: #F05537;
}

.cust_toggle input:focus+.slider {
    box-shadow: 0 0 1px #F05537;
}

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

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

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

.ban_icon {
    margin-right: 8px;
    width: 12px;
}

.cust_tab_menu .nav-pills .nav-link{
    color: #535A6D;
    font-size: 16px;
    margin: 0;
    padding: 18px 40px;
}
.cust_tab_menu .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
    background-color: transparent;
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
    border-radius: 0;
    font-weight: 700;
}
.cust_tab_menu ul{
    background-color: #F7FAFF;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.cust_tab_menu .tab-content{
    background-color: var(--white);
    padding: 42px 28px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.common_view_profile{
    width: 100px;
    margin: auto;
    position: relative;
}
.common_view_profile img{
    width: 100px;
    height: 100px;
}
.common_view_profile .users_active_status, .users_inactive_status{
    bottom: 7px;
    right: 12px;
}
.users_profile_img h4{
    color: #86929F;
}
.user_profile_left_content_box{
    display: flex;
    margin-bottom: 18px;
}
.user_profile_left_content_box:last-child{
    margin-bottom: 0;
}
.user_profile_left_content_box h4{
     color: #86929F;
     margin: 0;
     font-size: 14px;
     width: 150px;
}
.user_profile_left_content_box h4:nth-child(2){
    color: #263D54;
    width: auto;
}
.user_profile_img_description{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.user_profile_right_content_toggle{
    display: flex;
    align-items: center;
}
.user_profile_right_content_toggle .ban_lab{
    color: #263D54;
    font-size: 14px;
    font-weight: 700;
    margin-right: 15px;
}
.user_profile_close_btn a{
    text-decoration: none;
    color: #263D54;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #D3DCE6;
    padding: 8px 70px;
    border-radius: 8px;
}
.user_profile_right_content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.cust_checkbox{
    margin: 0 20px 0 0;
}
.schedule_datetime{
/*    display: flex !important;*/
    align-items: center;
    gap: 20px;
}
.schedule_datetime .form_group{
    width: 100%;
}
.note_text{
    font-weight: 500;
    font-size: 14px;
    padding: 5px 0;
    color: red;
}

/* input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}
input[type="time"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
} */
.input_icon{
    width: 18px;
    object-fit: contain;
    position: absolute;
    right: 2%;
    top: 28%;
    z-index: 1;
    pointer-events: none;
}
.ui-datepicker-header a.ui-corner-all{
    margin: 2px !important;
}
li.ui-timepicker-selected, .ui-timepicker-list li:hover, .ui-timepicker-list .ui-timepicker-selected:hover{
    background-color: var(--orange) !important;
    color: var(--white) !important;
}
.ql-container{
    height: 140px !important;
}
#editor{
    border-radius: 0;
}
.stream_textarea{
    height: 150px;                 
}
.becma_user{
    font-size: 12px;
    background: #ECEDEF;
    padding: 2px 10px;
    border-radius: 5px;
}
.guest_user{
    font-size: 12px;
    background: #a4a4a4;
    padding: 2px 10px;
    border-radius: 5px;
    color: #fff;
}


/************************************ media ***************************************/


/************************************ bacma_page ***************************************/
.single_table_dropdown{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 0;
}
.cust_input_box{
    padding: 8px 10px;
    width: 100%;
    max-width: 30%;
    border: 0;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
    margin-right: 10px;
}
.cust_input_box:focus{
    outline: none;
}
.table_main{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}
.page_title{
    flex-grow: 1;
    flex-shrink: 0;
    font-size: 20px;
    color: var(--dark_text);
    font-weight: 600;
    margin: 0;
}
.date_filter{
    margin-right: 10px;
}
.table_new_btn{
    padding: 8px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 8px 0 0;
    min-width: 100px;
    text-decoration: none;
    text-align: center;
}
.flex-grow-2{
    flex-grow: 3;
}
.color_gray{
    border: 1px solid var(--orange);
    color: var(--orange);
}
.color_gray:hover{
    color: var(--orange);
}
.table_new_btn:nth-child(1){
    background-color: var(--orange);
    color: var(--white);
}
.table_new_btn:nth-child(2){
    border: 1px solid var(--orange);
    color: var(--orange);
    background-color: var(--white);
}
.table_new_btn:nth-child(3){
    background-color: var(--dark_text);
    color: var(--white);
}
.custome_table{
    white-space: nowrap;
}
.flex_btn{
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}


.profiles_page_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.users_profile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
}
.users_profile img{
    width: 133px;
    height: 129px;
    border-radius: 16px;
}
.users_profile h3{
    margin-top: 13px;
    color: #232323;
    font-size: 24px;
    font-weight: bold;
}
.users_body_descriptions{
    width: 100%;
    max-width: 1250px;
    margin: 40px auto;
}
.users_body_title h4{
    color: #232323;
    font-size: 16px;
    margin-bottom: 28px;
}
.user_more_details_box h4{
    color: #7A7A7A;
    font-size: 16px;
}
.user_more_details_box h5{
    color: #232323;
    font-size: 18px;
    font-weight: bold;
}
.users_more_details{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    row-gap: 40px;
}
.date_picker_flex{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.input_icon {
    width: 18px;
    object-fit: contain;
    position: absolute;
    right: 2%;
    top: 28%;
    z-index: 1;
    pointer-events: none;
}
.form_group{
    position: relative;
}
.input_box .create_admin_role_select_option {
    margin: 0 20px 10px 0;
}

/************************************ end_bacma_page ***************************************/

@media (max-width: 1899.98px){
    .large_left_bar {
        flex-wrap: wrap;
    }
    .front_user_list {
        margin: 10px 0;
    }
}
@media (max-width: 1536.98px) {
    .dashboard_users_box {
        margin: 0 0 0 6px;
    }

    .upcoming_main_content {
        grid-template-columns: repeat(2, 1fr);
    }

    .upcoming_event_section:nth-child(2) {
        border-right: 0;
    }
    .large_left_bar{
        flex-wrap: wrap;
    }
    
}

@media (max-width: 1399.98px) {
    .side_bar {
        padding: 20px 20px 0 20px;
    }

    .header_bar {
        padding: 20px 50px 15px;
    }

    .side_bar_menu_title {
        padding: 35px 0 18px 0;
    }

    .body_inner_content {
        padding: 16px 50px 24px 7px;
    }

    .box_large_text h3 {
        font-size: 26px;
    }

    .box_small_text h4 {
        font-size: 16px;
    }

    .section_space {
        padding-top: 20px;
    }

    .select_year {
        width: 20%;
    }

    .box {
        height: auto;
    }

    .order_table tbody tr td {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .select_year {
        width: 23%;
    }




    .create_admin_role_select_option {
        grid-template-columns: repeat(4, 1fr);
    }

    .add_page_file_upload .add_new_event_cat .upload-field-customized {
        width: 336px;
        height: 166px;
    }

    .custome_width {
        width: 34.5%;
    }

    .contact_page .input_filed {
        width: 50%;
    }

    .site_settings_first_left_content .site_settings_profile {
        margin: 0 15px 0 0;
    }

    .site_setting_middle_content {
        max-width: 360px;
    }

    .future_events_details_first_left_icon {
        margin-right: 15px;
    }

    .future_events_details_first_left_icon img {
        width: 260px;
        height: 160px
    }

    .header_search_bar {
        max-width: 334px;
    }

    .user_profile:hover .user_dropdown {
        right: 1%;
    }

    .future_event_details {
        grid-template-columns: repeat(2, 1fr);
    }

    .future_event_box {
        margin-bottom: 10px;
    }
    .table_main {
        margin: 14px 0;
        padding-bottom: 16px;
    }
    .table_title{
        margin-bottom: 15px;
    }
    .front_user_list{
        margin: 10px 0;
    }
    .feature_event_filter{
        flex-wrap: wrap;
    }
    .feature_event_filter .header_action{
        margin-top: 10px;
        flex-wrap: wrap;
    }
    
}

@media (max-width: 1440.98px) {
    .header_bar {
        padding: 37px 10px 24px;
    }
    .dashboard_second_section{
        flex-wrap: wrap !important;
    }
}

@media (max-width: 1199.98px) {
    .error_body_left_text img {
        width: 300px;
    }

    .error_body_left_text h3 {
        font-size: 24px;
        padding: 10px 48px;
    }

    .w-300 {
        width: 280px;
    }

    .side_bar {
        padding: 20px 60px 0 30px;
    }

    .header_bar {
        padding: 20px 25px 15px;
    }

    .side_bar_menu_title {
        padding: 35px 0 18px 0;
    }

    .body_inner_content {
        padding: 16px 30px 24px 30px;
    }

    .box_large_text h3 {
        font-size: 24px;
    }

    .dashboard_first_section_counter {
        grid-gap: 14px;
        width: 100%;
    }

    .box {
        padding: 20px 20 20px 20px;
    }

    .dashboard_users_box {
        padding: 15px 14px;
        margin: 14px 0 0 0;
    }

    .dashboard_second_section {
        margin: 18px 0;
    }

    .select_year {
        width: 24%;
    }

    .order_table thead tr th {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .dashboard_second_section {
        flex-direction: column;
    }

    .upcoming_main_content {
        gap: 30px;
    }

    .upcoming_event_details {
        margin-left: 8px;
    }

    .upcoming_event_details h3 {
        font-size: 16px;
    }

    .upcoming_event_box {
        margin-bottom: 24px;
    }

    .table_title h3 {
        font-size: 18px;
    }

    .admin_user_table table thead tr th {
        padding: 10px 24px;
    }

    .admin_user_table table tbody tr td {
        padding: 20px 28px;
    }

    .cust_pagination {
        margin-top: 25px;
    }

    .radio_button {
        margin: 0;
    }

    .select_gender_section .form-check {
        margin: 0 20px 0 0;
    }

    .create_admin_role_select_option .form-check-label {
        margin-left: 5px;
        font-size: 14px;
    }

    .add_new_eve_cat_des {
        width: 70%;
    }

    .custome_width {
        width: 44.5%;
    }

    .site_setting_middle_content {
        max-width: 300px;
    }

    .site_settings_second_section {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .site_setting_section_space {
        margin-bottom: 24px;
    }

    .site_setting_header {
        padding-top: 40px
    }

    .site_settings_second_right_section .user_upload_photos .upload-field-customized span img {
        height: 200px;
    }

    .future_events_details_first_section {
        flex-direction: column;
    }

    .future_events_details_first_left_icon {
        margin: 0 0 20px 0;
    }

    .future_events_box {
        flex-direction: column;
    }

    .future_events_details_second_section {
        margin-bottom: 20px;
    }

    .future_events_table .table {
        white-space: nowrap;
    }

    .manage_events_number_box h3 {
        font-size: 24px;
    }

    .manage_events_number_section {
        gap: 14px;
    }

    .manage_events_das_last_section {
        gap: 14px;
    }

   

    .upcoming_main_content {
        grid-template-columns: repeat(1, 1fr);
    }

    .upcoming_event_section {
        border: 0;
    }

    .future_event_img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .future_events_section {
        flex-direction: column;
    }

}

@media (max-width: 991.98px) {
    .error_body_left_text img {
        width: 250px;
    }

    .w-300 {
        width: 250px;
    }

    .error_body_content {
        gap: 20px;
    }

    .error_body_left_text h3 {
        font-size: 22px;
        padding: 10px 36px;
    }

    .error_back_arrow {
        width: 25px !important;
        margin: 0 14px 0 33px;
    }

    .side_bar {
        padding: 10px 49px 0 20px;
    }

    .side_bar_menu_list ul li a .menu_name {
        padding-left: 14px;
    }

    .side_bar_logo img {
        max-width: 110px;
    }

    .side_bar_menu_list ul li a .menu_name {
        font-size: 14px;
    }

    .menu_icon {
        width: 18px;
        height: 18px;
    }

    .header_bar {
        padding: 13px 16px 15px;
    }

    .header_search_bar {
        padding: 10px;
    }

    .body_inner_content {
        padding: 16px 24px 24px 24px;
    }

    .box {
        padding: 14px 14px 14px 14px;
    }

    .box_large_text h3 {
        font-size: 22px;
    }

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

    .user_box_title h3 {
        font-size: 16px;
    }

    .select_year {
        width: 25%;
        font-size: 14px;
    }

    .section_space {
        padding-top: 14px;
    }

    .dashboard_second_section {
        gap: 14px;
    }

    .upcoming_main_content {
        grid-template-columns: repeat(1, 1fr);
    }

    .upcoming_event_section:first-child {
        border-right: 0;
    }

    .upcoming_event_section {
        border-bottom: 1px solid #DCDEE1;
        padding-bottom: 20px;
    }

    .upcoming_event_section:last-child {
        border-bottom: 0;
    }

   
    .table_title h3 {
        font-size: 16px;
    }

    .admin_user_table table tbody tr td {
        font-size: 14px;
    }

    .cust_pagination {
        margin-top: 20px;
    }

    .select_gender_section .form-check {
        margin: 0 10px 0 0;
    }

    .button_section {
        margin-top: 20px;
    }

    .create_admin_role_select_option {
        grid-template-columns: repeat(3, 1fr);
    }

    .add_page_row {
        flex-direction: column;
    }

    .add_page_description {
        margin-top: 30px;
    }

    .contact_page .input_filed {
        width: 70%;
    }


    .site_setting_middle_content {
        max-width: 100%;
    }

    .site_setting_middle_content .form_group {
        margin-bottom: 24px;
    }

    .site_setting_header {
        padding-top: 10px;
    }

    .site_setting_middle_content {
        margin: 10px 0;
    }

    .future_events_details_second_top_section p {
        font-size: 14px;
    }

    .manage_first_das_top_section h3 {
        font-size: 18px;
    }

    .manage_first_das_bottom_section {
        margin-top: 5px;
    }

    .manage_events_number_section {
        grid-template-columns: repeat(3, 1fr);
    }

    .manage_events_das_last_section {
        grid-template-columns: repeat(1, 1fr);
    }

    .white_box {
        max-width: 900px;
    }

    .box_logo {
        padding: 20px 0;
    }

    .box_logo img {
        width: 160px;
    }

    .form_title {
        padding-top: 40px;
    }

    .user_dropdown {
        border-radius: 25px;
        margin-top: 5px;
    }

    .user_dropdown ul li a {
        font-size: 14px;
        margin-bottom: 9px;
    }

    .border-right {
        border-right: 0;
        border-bottom: 1px solid #EBEBEB;
        margin-bottom: 10px;
    }
    .table_main{
        flex-direction: column;
    }
    .page_title{
        order: -1;
    }
    .single_table_dropdown{
        margin: 15px 0;
        width: 100%;
        justify-content: center;
    }
    .filter_submit_btn{
        margin: 5px 5px 0 0 !important;
    }
    .organizer_filter{
        flex-wrap: wrap;
    }
    .organizer_filter .header_action{
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .width-450 {
        width: 300px;
    }

    .side_bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        transition: all .5s;
        z-index: 100;
        margin-left: -100%;
    }

    .side_bar_menu_list ul li a.active::after {
        right: -9%;
        width: 4px;
    }

    .toggle_menu_btn {
        display: block;
    }


    .user_profile {
        margin-left: 16px;
    }

    .user_name {
        display: none;
    }

    .user_profile_img {
        padding: 3px;
    }

    .user_profile_img img {
        margin-right: 0;
    }

    .body_inner_content {
        padding: 10px 18px 24px 18px;
    }

    .arrow {
        right: 0%;
    }

    .add_new_eve_cat_des {
        width: 100%;
    }

    .header_search_bar {
        margin-right: 12px;
    }

    .select-items div,
    .select-selected {
        padding: 8px 11px;
    }

    .white_box {
        max-width: 700px;
    }

    .box_logo {
        padding: 10px 0;
    }

    .box_logo img {
        width: 140px;
    }

    .form_title {
        padding-top: 30px;
    }

    .white_box::before,
    .white_box::after {
        background-size: 8%;
    }

    .submit_btn_section .submit_btn {
        width: 230px;
        height: 50px;
        font-size: 20px;
    }

    .submit_btn_section {
        margin: 40px 0;
    }

    .form_box .input_form {
        height: 50px;
    }
    .header_search_bar{
        max-width: 100%;
    }
    .header_action{
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    .w-300 {
        margin-left: 0px;
    }

    .side_bar {
        padding: 10px 38px 0 20px;
    }

    .toggle_menu_btn img {
        width: 30px;
    }

    .box_large_text h3 {
        font-size: 18px;
    }

    .dashboard_first_section_counter {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .upcoming_event_img img {
        width: 80px;
        height: 50px;
    }

    .sub_menu ul li {
        margin-bottom: 10px !important;
    }

  

    .user_add_icon {
        margin-right: 8px;
    }

    .admin_user_table table tbody tr td a {
        margin: 0 14px 0 0;
        padding: 5px 16px;
    }

    .admin_user_table table thead tr th {
        padding: 8px 20px;
    }

    .admin_user_table table tbody tr td {
        padding: 16px 25px;
    }

    .table_title {
        margin-bottom: 15px;
    }

    .admin_user_table tr:last-child td:first-child {
        border-bottom-left-radius: 10px;
    }

    .admin_user_table tr:last-child td:last-child {
        border-bottom-right-radius: 10px;
    }

    .form_group {
        margin-bottom: 20px;
    }

    .user_title h3 {
        font-size: 14px;
    }

    .user_title {
        margin-bottom: 10px;
    }

    .description_box {
        height: 130px;
    }

    .form-check-input {
        border: 2px solid var(--header_border);
        width: 18px;
        height: 18px;
    }

    .add_page_description .input_filed {
        height: 180px;
    }

    .add_page_upload_img {
        width: 100%;
        height: 220px;
    }

    .add_page_upload_img .upload-field-customized {
        width: 100%;
        height: 220px;
    }

    .add_page_upload_img .upload-field-customized input[type="file"] {
        width: 100%;
        height: 220px;
    }

    .add_page_upload_img .upload-field-customized span img {
        width: 100%;
        height: 220px;
    }

    .site_setting_middle_content .form_group {
        margin-bottom: 18px;
    }

    .site_settings_second_section {
        gap: 16px;
    }

    .site_setting_section_space {
        margin-bottom: 16px;
    }

    .site_setting_header {
        padding-top: 0px;
    }

    .header_img {
        margin-bottom: 0;
    }

    .future_events_details_last_section {
        margin-top: 20px;
    }

    .future_events_details_second_top_section {
        margin-bottom: 16px;
    }

    .manage_first_das_top_section h3 {
        font-size: 16px;
    }

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

    .manage_events_number_box h3 {
        font-size: 20px;
    }

    .manage_events_number_section {
        gap: 10px;
    }

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

    .manage_event_progess_box {
        margin-bottom: 15px;
    }

    .progress_title {
        margin-bottom: 10px;
    }

    .custome_progress_bar {
        height: 20px;
    }

    .manage_events_das_last_section {
        gap: 10px;
    }

    .manage_events_dasr_last_right_table_title h3 {
        font-size: 16px;
    }

    .modal_close {
        margin-top: -20px;
        margin-right: -10px;
    }

    .ticket_header h5 {
        font-size: 16px;
    }

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

    .manage_events_table .view {
        padding: 6px 18px;
    }

    .manage_table_action ul li:first-child {
        margin-right: 0px;
    }

    .manage_table_action ul li a img {
        margin: 0;
    }

    .accept_btn {
        padding-left: 0 !important;
    }

    .pending_refund_table table thead tr th:last-child {
        text-align: left;
    }

    .sub_menu ul li a.active::after {
        width: 4px !important;
    }

    .white_box {
        max-width: 500px;
    }

    .form_input_section {
        flex-direction: column;
    }

    .white_box::before,
    .white_box::after {
        display: none;
    }

    .form_title {
        padding-top: 10px;
    }

    .form_box {
        margin-bottom: 20px;
        margin-left: 0;
    }

    .box_logo {
        padding: 10px 0 0;
    }

    .user_dropdown {
        border-radius: 10px;
    }

    .user_profile:hover .user_dropdown {
        right: 2%;
    }

    .future_event_details {
        grid-template-columns: repeat(1, 1fr);
    }

    .future_event_box:last-child {
        margin-bottom: 0px;
    }

    .future_event_box h4 {
        max-width: 350px;
    }

    .error_body_content {
        flex-direction: column;
    }

    .error_body_left_text img {
        width: 200px;
    }

    .w-300 {
        width: 200px;
    }

    .error_body_left_text h3 {
        font-size: 22px;
        padding: 10px 36px 0;
        text-align: center;
    }

    .error_body_content {
        gap: 10px;
        text-align: center;
    }

    .error_back_arrow {
        width: 25px !important;
        margin: 0 14px 0 0px;
    }
    .create_admin_role{
        flex-wrap: wrap;
    }
    .button_section .form_btn.save{
        margin-bottom: 10px;
    }
    .page_title {
        font-size: 18px;
    }
    .custome_table{
        font-size: 14px;
    }
    .single_table_dropdown{
        flex-wrap: wrap;
    }
    .cust_input_box{
        max-width: 100%;
    }
    .single_table_dropdown {
        margin: 15px 0 0;
    }
    .table_new_btn {
        margin: 10px 8px 0 0;
    }
}

@media (max-width: 425px) {

    .header_bar {
        padding: 13px 12px 10px;
    }

    .body_inner_content {
        padding: 10px 9px 24px 9px;
    }

    .header_search_bar {
        padding: 10px;
    }

    .search_icon img {
        width: 18px;
    }

    .search {
        padding-left: 6px;
        font-size: 16px;
    }

    .search::placeholder {
        font-size: 14px;
    }

    .user_profile {
        margin-left: 10px;
    }

    .notification img {
        width: 25px;
        height: 25px;
    }

    .user_profile_img img {
        width: 30px;
        height: 30px;
    }

    .toggle_menu_btn {
        margin-left: 12px;
    }

    .toggle_menu_btn img {
        width: 30px;
    }

    .side_bar {
        padding: 10px 28px 0 20px;
    }

    .side_bar_menu_title {
        padding: 15px 0 18px 0;
    }

    .side_bar_menu_list ul li {
        margin-bottom: 22px;
    }

    .side_bar_menu_list ul li a.active::after {
        right: -10%;
        width: 8px;
    }

    .box_arrow_green {
        padding: 2px 10px;
    }

    .dashboard_first_section_counter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 8px;
    }

    .dashboard_first_section_users {
        width: 50%;
    }

    .dashboard_users_box {
        margin: 8px 0 0 0;
    }

    .dashboard_second_section {
        gap: 8px;
    }

    .dashboard_second_section {
        margin: 8px 0;
    }

    .ct-label {
        font-size: 10px !important;
    }

    .select_year {
        width: 30%;
        padding: 2px 14px;
    }

    .box_small_text a {
        font-size: 14px;
    }

    .order_table tbody tr td {
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 12px;
    }

    .upcoming_event_img img {
        width: 70px;
        height: 40px;
    }

    .upcoming_event_details h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .upcoming_event_details h5 {
        font-size: 12px;
    }

    .upcoming_main_content {
        gap: 10px;
    }

    .upcoming_event_details h3,
    .upcoming_event_details h5 {
        max-width: 250px;
    }

    .form_group {
        flex-direction: column;
        margin-bottom: 0;
    }

    .input_box {
        width: 100%;
        max-width: 100%;
        margin: 0 0 10px 0;
    }

    .input_filed {
        max-width: 100%;
    }

    .select_gender_section {
        padding-top: 0;
    }

    .button_section {
        margin-top: 10px;
    }

    .button_section .form_btn {
        padding: 6px 0;
        width: 110px;
        margin: 0 10px 0 0;
        border-radius: 5px;
    }

    .create_admin_role {
        flex-direction: column;
    }

    .create_admin_role_select_option {
        grid-template-columns: repeat(2, 1fr);
    }

    .create_admin_role_select_option .form-check-label {
        margin-left: 0px;
    }

    .create_admin_role_select_option .form-check {
        margin-bottom: 10px;
    }

    .event_category_table table tbody tr td {
        padding: 10px 22px;
    }

    .select_gender_section .form-check .form-check-label {
        margin-left: 2px;
    }


    .add_page_upload_img {
        width: 100%;
        height: 180px;
    }

    .add_page_upload_img .upload-field-customized {
        width: 100%;
        height: 180px;
    }

    .add_page_upload_img .upload-field-customized input[type="file"] {
        width: 100%;
        height: 180px;
    }

    .add_page_upload_img .upload-field-customized span img {
        width: 100%;
        height: 180px;
    }

    .add_page_description {
        margin-top: 5px;
    }

    .custome_width {
        width: 100%;
    }

    .contact_page .input_filed {
        width: 100%;
    }

    .user_upload_photos .upload-field-customized {
        width: 140px;
        height: 140px;
    }

    .user_upload_photos .upload-field-customized input[type="file"] {
        width: 140px;
        height: 140px;
    }
    /* .upload_design .upload-field-customized{
        width: auto !important;
        height: auto !important;
    } */

    

    .user_upload_photos .upload-field-customized span img {
        width: 140px;
        height: 140px;
        object-fit: cover;
    }

    .site_setting_middle_content .form_group {
        margin-bottom: 8px;
    }

    .header_img {
        display: none;
    }

    .add_new_event_cat .upload-field-customized span img {
        width: 250px;
        height: fit-content;
    }

    .future_events_details_last_section {
        flex-direction: column;
    }

    .future_events_details_second_section {
        margin-bottom: 10px;
    }

    .future_full_description {
        margin-top: 10px;
    }

    .manage_first_das_top_section {
        flex-direction: column;
        align-items: flex-start;
    }

    .table_title h3 {
        font-size: 14px;
    }

    .manage_first_das_top_section a {
        margin-left: 0px;
    }

    .manage_first_das_bottom_section p {
        font-size: 13px;
    }

    .manage_events_number_section {
        grid-template-columns: repeat(2, 1fr);
    }

    .manage_events_dast_last_right_table table thead tr th {
        font-size: 14px;
    }

    .ticket_table tfoot tr td {
        padding: 8px 20px;
        border-bottom: 0;
    }

    .users_profile_section {
        padding: 12px 14px 12px;
    }

    .users_profile_img img {
        width: 60px;
        height: 60px
    }

    .users_profile_content {
        margin-left: 14px;
    }

    .users_profile_content h4 {
        margin-top: 2px;
    }

    .user_profile_data_box {
        padding: 10px 18px;
    }

    .user_modal_close {
        margin-right: -12px;
    }

    .admin_user_modal .user_profile_data_box h4:first-child {
        min-width: 120px;
    }

    .white_box {
        max-width: 400px;
    }

    .form_section {
        padding: 0px 20px;
    }

    .form_title h3 {
        font-size: 30px;
    }

    .error_body_content {
        text-align: center;
    }

    .h-500 {
        height: 300px;
    }
    
   
    .user_upload_photos .upload-field-customized {
        width: 250px;
        height: 158px;
    }
    .user_upload_photos .upload-field-customized input[type="file"] {
        width: 100%;
        height: 140px;
    }
}


@media (max-width: 375px) {
    .header_search_bar {
        max-width: 150px;
        padding: 5px;
    }

    .search_icon img {
        width: 14px;
    }

    .search {
        font-size: 14px;
    }

    .search::placeholder {
        font-size: 14px;
    }

    .user_profile {
        margin-left: 10px;
    }

    .notification img {
        width: 22px;
        height: 22px;
    }

    .user_profile_img img {
        width: 25px;
        height: 25px;
    }

    .toggle_menu_btn {
        margin-left: 12px;
    }

    .toggle_menu_btn img {
        width: 22px;
    }

    .side_bar {
        padding: 10px 20px 0 20px;
    }

    .box {
        padding: 10px 10px 12px 10px;
    }

    .ct-label {
        font-size: 8px !important;
    }

    .upcoming_event_box {
        flex-direction: column;
        align-items: flex-start;
    }

    .upcoming_event_details {
        margin: 5px 0;
    }

    .upcoming_event_box {
        margin-bottom: 10px;
    }

    .upcoming_event_section {
        padding-bottom: 10px;
    }

    .radio_group {
        flex-direction: column;
        margin: 0 14px 20px 0;
    }

    .status_check {
        margin-top: 10px;
    }

    .create_admin_role_select_option .form-check-label {
        font-size: 12px;
        margin-top: 3px;
    }

    .form-check-input {
        width: 15px;
        height: 15px;
    }

    .add_page_upload_img {
        width: 100%;
        height: 160px;
    }

    .add_page_upload_img .upload-field-customized {
        width: 100%;
        height: 160px;
    }

    .add_page_upload_img .upload-field-customized input[type="file"] {
        width: 100%;
        height: 160px;
    }

    .add_page_upload_img .upload-field-customized span img {
        width: 100%;
        height: 160px;
    }

    .add_page_description .input_filed {
        height: 150px;
    }

   


    

    .add_new_event_cat .upload-field-customized span img {
        /* width: 200px; */
        height: fit-content;
    }

    .manage_events_number_section {
        grid-template-columns: repeat(1, 1fr);
    }
    
}
/* 
@media (orientation: landscape) {
    .header_action {
        display: inline-flex;
    }

    .header_action .custom-select {
        margin: 0 8px 0 0;
    }

    .header_btn_submit {
        padding: 8px 28px;
    }
} */

/************************************ end-media ***************************************/