@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", serif;
}

.loginRegister-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: radial-gradient(91.71% 102.99% at 50% 50.12%, #FFFFFF 0%, #F7F7F7 24%, #E1E1E1 62%, #C4C4C4 100%);

}

.loginRegister-container .loginRegister-box {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    min-width: 420px;
}

.loginRegister-logo-container {
    margin-bottom: 48px;
}

.loginRegister-container .form-group label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.loginRegister-container .form-group input,
.loginRegister-container .form-group select {
    border: 1px solid #f1f1f1;
    padding: 10px;
    height: 40px;
    box-shadow: none;
    color: #000;
    font-weight: 400;
    border-radius: 8px !important;
}

.loginRegister-container .form-group input::placeholder {
    color: #000;
    opacity: 0.5;
}

.loginRegister-container .form-group {
    margin-bottom: 24px;
    position: relative;
}

.loginRegister-container .form-group.password-field i {
    position: absolute;
    right: 12px;
    bottom: 12px;
    cursor: pointer;
}

.loginRegister-container .btn-submit {
    margin: 30px 0 0px;
}

.loginRegister-container .btn-submit button {
    background: #FF4F22;
    color: #fff;
    padding: 8px 42px;
    font-weight: 500;
    border-radius: 16px;
    line-height: 20px;
    border: 0;
}

.loginRegister-container .signup-link {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.loginRegister-container .signup-link a {
    color: #FF4F22;
    font-weight: 600;
    text-decoration: none;
}

.loginRegister-logo-container p {
    margin-top: 32px;
    font-size: 20px;
    color: #000;
}

.signup-link {
    margin-top: 48px;
}


.register-form-box .form-section .form-title {
    display: flex;
    align-items: center;
}

.register-form-box .form-section .form-title > span {
    color: #FF4F22;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    margin-left: 8px;
}

.inner-form-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    margin-top: 32px;
}

.loginRegister-container .loginRegister-box.register-form-box {
    min-width: 790px;
}

.register-form-box .loginRegister-logo-container {
    margin-bottom: 0;
}

.register-form-box .form-section .form-title {
    margin-top: 32px;
}

.full_length {
    grid-column: 1 / -1;
}

.loginRegister-container.register-form-container .btn-submit button {
    min-width: 410px;
}

.loginRegister-container.register-form-container {
    height: 100%;
}

/* school name field popup css */
#school-name-field .modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    width: 100%;
}

#school-name-field .modal-content {
    min-width: 480px;
    border-radius: 20px 20px 8px 8px;
}

#school-name-field .modal-content .modal-header {
    padding: 30px 22px;
    border-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #113140;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

#school-name-field .modal-content .modal-header > h5 {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    line-height: 23px;
}

#school-name-field .modal-content .modal-header .close {
    margin-top: 0;
    color: #fff;
    opacity: 1;
    font-weight: 400;
    text-shadow: inherit;
    font-size: 36px;
}

#school-name-field .modal-content .modal-body {
    padding: 24px;
}

#school-name-field .modal-content .modal-body .modal-content-heading > h6 {
    font-size: 22px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -1.1%;
    color: #000;
}

#school-name-field .custom-dropdown .dropdown-toggle {
    width: 100%;
    text-align: left;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    background-color: #fff;
    padding: 10px;
    position: relative;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    outline: 0;
    box-shadow: none;
}

#school-name-field .custom-dropdown label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
}

#school-name-field .custom-dropdown .dropdown-toggle::after {
    content: "";
    position: absolute;
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: -18px;
    height: 8px;
    width: 8px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 15px;
    right: 15px;
}

#school-name-field .custom-dropdown.open .dropdown-toggle::after {
    transform: rotate(22px);
    -webkit-transform: rotate(225deg);
}

#school-name-field .custom-dropdown .dropdown-menu {
    width: 100%;
    overflow-y: auto;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    margin-top: 0;
    position: unset;
    float: inherit;
    transition: max-height 0.8s ease-in-out;
    box-shadow: none;
    border-top: 0;
}

#school-name-field .custom-dropdown.open .dropdown-menu {
    max-height: 150px;
}

#school-name-field .custom-dropdown .dropdown-menu > li > a {
    padding: 16px;
    font-size: 13px;
    color: #090909;
    text-decoration: none;
}

#school-name-field .custom-dropdown .dropdown-menu > li > a:hover {
    background-color: #f5f5f5;
}

#school-name-field .custom-dropdown .dropdown-menu::-webkit-scrollbar-track {
    background-color: #fff;
}

#school-name-field .custom-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 5px;
    background-color: #d9d9d9;
}

#school-name-field .custom-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
}

#school-name-field .add-school-btn {
    background: #FF4F22;
    color: #fff;
    padding: 8px 42px;
    font-weight: 500;
    border-radius: 16px;
    line-height: 20px;
    border: 0;
    margin-top: 24px;
    outline: 0;
}

#school-name-field {
    padding: 0;
}

#school-name-field .add-school-btn:disabled {
    background: #A9ADB1;
}

.loginRegister-container .password-field.class-error i {
    bottom: 32px;
}

#add-school-btn {
    background: #FF4F22;
    margin-top: 27px;
    border-radius: 20px;
    border: 0;
}

#school-results {
    max-height: 160px;
    /* Set maximum height */
    overflow-y: auto;
    /* Enable scrolling */
    list-style-type: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.approval-status.approval_block .pending-status .status_user_img {
    padding: 10px;
    background: #F1F1F1;
    border-radius: 8px;
}

.approval-status.approval_block {
    gap: 24px;
    padding: 0;
    width: 100%;
    margin-top: 0;
    border: 0;
    margin-bottom: 47px;
}

.student_tab_wrapper .approval-status.approval_block {
    flex-wrap: wrap;
}

.student_tab_wrapper .approval-status.approval_block .pending-status {
    flex: auto;
    flex-basis: 20px;
}

.approval-status.approval_block .pending-status p {
    margin-bottom: auto;
    font-size: 16px;
    line-height: 18px;
}

.approval-status.approval_block .pending-status p > span {
    display: block;
    padding-top: 3px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
}

.approval-status.approval_block .pending-status {
    gap: 8px;
    border: 1px solid #FF4F22;
    border-radius: 8px;
    padding: 19px 10px;
    flex: 1;
}

.approval-status.approval_block .pending-status:last-of-type {
    min-width: 208px;
}

.approval-status.approval_block .pending-status:last-of-type .status_user_img img {
    filter: brightness(0) saturate(100%) sepia(1) hue-rotate(-15deg) saturate(600%) !important;
}

.teacher-list-heading-block .heading-filter-btn > div.quick-view-summary {
    align-items: center;
    gap: 32px;
}

.teacher-list-heading-block .heading-filter-btn > div.quick-view-summary .grade_filter {
    cursor: pointer;
}

.student-list-block.teacher-list-heading-block .heading-filter-btn {
    gap: 32px;
}

.student-list-block.teacher-list-heading-block .heading-filter-btn > div {
    margin-left: 0;
}

.student-list-block.teacher-list-heading-block .tab-btn .btn,
.student-list-block .heading-filter-btn > div.quick-view-summary .btn {
    min-width: 197px
}

.modal_center_block .modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 90px);
    margin: 0;
    width: 100%;
    margin-top: 90px;
}

#filterModal .modal-body {
    width: 352px;
    padding: 24px;
}

.student_profile_modal .modal-body,
.noteModel .modal-body,
.avatar_modal .modal-body,
.addGuestModal .modal-body {
    width: 477px;
    padding: 24px 16px;
}

.addSponsorModel .modal-body {
    width: 400px;
    padding: 24px 16px;
}

#filterModal .modal-content .modal-header,
.student_profile_modal .modal-content .modal-header,
.noteModel .modal-content .modal-header,
.preview_modal_data .modal-content .modal-header,
.avatar_modal .modal-content .modal-header,
.filter_pendingapproval_modal .modal-content .modal-header,
.addSponsorModel .modal-content .modal-header,
.awardTicketModal .modal-content .modal-header,
.addGuestModal .modal-content .modal-header {
    padding: 32px 22px;
    background-color: #113140;
    position: relative;
    border-radius: 13px 13px 0 0;
}

#filterModal .modal-content .modal-header button.close,
.student_profile_modal .modal-content .modal-header button.close,
.noteModel .modal-content .modal-header button.close,
.preview_modal_data .modal-content .modal-header button.close,
.avatar_modal .modal-content .modal-header button.close,
.filter_pendingapproval_modal .modal-content .modal-header button.close,
.addSponsorModel .modal-content .modal-header button.close,
.awardTicketModal .modal-content .modal-header button.close,
.addGuestModal .modal-content .modal-header button.close {
    position: absolute;
    top: 44px;
    right: 32px;
    color: #fff;
    margin: 0;
}

#filterModal .modal-content .modal-header h4,
.student_profile_modal .modal-content .modal-header h4,
.noteModel .modal-content .modal-header h4,
.preview_modal_data .modal-content .modal-header h4,
.avatar_modal .modal-content .modal-header h4,
.filter_pendingapproval_modal .modal-content .modal-header h4,
.addSponsorModel .modal-content .modal-header h4,
.awardTicketModal .modal-content .modal-header h4,
.addGuestModal .modal-content .modal-header h4 {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    font-family: "Roboto", serif;
}

.addSponsorModel .modal-content .modal-header h4 {
    font-size: 20px;
}

.addSponsorModel .modal-content .modal-header {
    padding: 22px 16px;
}

.addSponsorModel .modal-content .modal-header button.close {
    top: 26px;
    right: 20px;
}

#filterModal .modal-content,
.student_profile_modal .modal-content,
.noteModel .modal-content,
.preview_modal_data .modal-content,
.avatar_modal .modal-content,
.filter_pendingapproval_modal .modal-content {
    border-radius: 16px 16px 8px 8px;
}

.addSponsorModel .modal-content {
    border-radius: 16px 16px 0px 0px;
}

.awardTicketModal .modal-content,
.addGuestModal .modal-content {
    border-radius: 16px 16px 8px 8px !important;
}

.addSponsorModel .modal-body form span.select2-container {
    width: 100% !important;
    margin-bottom: 20px;
}

.addSponsorModel .modal-body .selection .select2-selection {
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    height: 40px;
}

.addSponsorModel .modal-body .selection .select2-selection .select2-selection__rendered {
    line-height: 40px;
    font-size: 14px;
    color: #000;
}

.addSponsorModel .modal-body .selection .select2-selection .select2-selection__arrow {
    top: 8px;
}

.addSponsorModel .modal-body .creator_permission_options h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0 0 30px;
}

.addSponsorModel .modal-body .setting-option-content {
    margin-bottom: 16px;
}

.addSponsorModel .modal-body form .setting-option-content > h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    margin-top: 0;
    margin-bottom: 5px;
}

.addSponsorModel .modal-body form .setting-option-content > p {
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: -1.1%;
    margin: 0;
}

.addSponsorModel .modal-body form .creator_permission_options {
    margin-bottom: 20px;
}

#filterModal .grade_filter_block h5 {
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", serif;
    color: #000;
    line-height: 22px;
    margin-top: 0;
    margin-bottom: 16px;
}

.grade_filter_item label {
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: #090909;
    margin-bottom: 16px;
    width: 100%;
    position: relative;
}

.grade_filter_item label span:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0px;
    top: 1px;
    margin-left: -23px;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    background-color: #fff;
}

.grade_filter_item label > input[type="checkbox"]:checked + span::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 10px;
    color: #fff;
    border-color: transparent;
    background-color: #FF4F22;
    position: absolute;
    border: 0;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    right: 0px;
    line-height: 20px;
    padding: 0;
    top: 1px;
    display: flex;
    justify-content: center;
}

.grade_filter_item label > input {
    display: none;
}

#filterModal .apply-filter-btn,
.add-student-btn {
    width: 100%;
    text-align: center;
}

#filterModal .apply-filter-btn .btn-orange,
.add-student-btn .btn-orange {
    margin-top: 8px;
    min-width: 182px;
}

.student-list-block .tab-heading-block h3 {
    margin: 0;
}

.student-list-block {
    margin-bottom: 32px;
}

.student_info_wrapper .student_info_heading > h5 {
    font-size: 23px;
    font-weight: 500;
    font-family: "Roboto", serif;
    line-height: 34px;
    margin-top: 0;
    margin-bottom: 16px;
    color: #000;
}

.student_info_wrapper form .form-group label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
}

.student_info_wrapper form .form-group label > span {
    font-weight: 700;
    color: #FF4F22;
    display: inline-block;
    margin-left: 2px;
}

.student_info_wrapper form .form-group input.form-control,
.student_info_wrapper form .form-group select.form-control,
.noteModel .form-group input.form-control,
.noteModel .form-group textarea.form-control {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    padding: 10px;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    height: 40px;
    margin-bottom: 3px;
}

.noteModel .form-group textarea.form-control {
    height: auto;
}

.noteModel .note_button_block {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.noteModel .modal-content-wrapper {
    display: flex;
    flex-direction: column;
}

.noteModel .note_button_block .btn[disabled] {
    background: #A9ADB1;
    min-width: 170px;
}

.student_info_wrapper form .form-group {
    margin-bottom: 24px;
}

.student_info_wrapper form {
    display: flex;
    flex-direction: column;
}

.custom-alert {
    width: 550px;
    padding: 24px;
    border-radius: 8px;
    border: 2px solid #34C759;
    background-color: #F0F9F2 !important;
    color: #090909 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notify_alert_wrapper {
    position: fixed;
    top: 65px;
    right: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
}

.custom-alert .custom_alert_box {
    display: flex;
    gap: 16px;
}

.custom-alert .custom_alert_box .custom_alert_content h6 {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.custom-alert .custom_alert_box .custom_alert_content p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.custom-alert .custom_alert_box .custom_alert_success_icon {
    margin-top: 4px;
}

.custom-alert .custom_alert_box .custom_alert_close {
    margin-left: auto;
}

.custom-alert .custom_alert_box .custom_alert_close > img {
    cursor: pointer;
}


/* student profile page css */
.student_profile_wrapper .tabs-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 29px;
    padding-top: 22px;
}

.student_profile_wrapper .tabs-heading h2 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    font-family: "Roboto", serif;
    margin: 0;
}

.student_profile_wrapper a.back-arrow > i {
    padding-right: 10px;
    font-size: 20px;
    color: #000;
}

.student_profile_wrapper a.back-arrow > span {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.student_profile_wrapper .user-detail-block > div > ul {
    display: block;
    grid-template-columns: 1fr 1fr;
    column-gap: 0px;
    max-width: 100%;
}

.student_profile_wrapper .detail-heading h6 {
    font-family: "Roboto", serif;
}

.student_profile_wrapper .user-profile-content .user-profile-name > h4 {
    font-family: "Roboto", serif;
    color: #000;
    margin-bottom: 16px;
}

.student_profile_wrapper .user-profile-content .user-profile-name > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #A9ADB1;
    margin: 0;
}

.student_profile_wrapper .profile-block-content .user-profile-content .user-status-block {
    padding-bottom: 21px;
}

.student_profile_wrapper .add_note_section,
.student_profile_wrapper .add_note_section .add_note_wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.student_profile_wrapper .add_note_section .add_note_wrapper {
    cursor: pointer;
}

.student_profile_wrapper .add_note_section span {
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    font-family: "Roboto", serif;
    margin: 0;
}

.student_button_wrapper {
    margin-top: 58px;
    display: flex;
    gap: 24px;
}

.student_profile_wrapper .user-profile-content .user-status-block .user-profile-status .edit-btn {
    border: 0;
}

.student_profile_wrapper .edit_button_block ul {
    left: -20px;
    min-width: inherit;
    padding: 0;
}

.student_profile_wrapper .edit_button_block .dropdown-menu > li > a {
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.41px;
    color: #090909;
    font-family: "Roboto", serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

.student_profile_wrapper .edit_button_block .dropdown-menu > li > a:hover {
    color: #fff;
    background-color: #FF4F22;
}

.student_profile_wrapper .edit_button_block .dropdown-menu > li > a:hover img {
    filter: invert(1) brightness(1000%);
}

.student_profile_wrapper .add_note_section {
    padding-top: 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.notes_detail_block {
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
}

.notes_detail_block .note_name_block h5 {
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", serif;
    color: #000;
}

.student_profile_wrapper .user-detail-block > div {
    width: 100%;
}

.notes_detail_block .note_name_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notes_detail_block .note_name_block > i {
    cursor: pointer;
}

.notes_detail_block .note_name_block button {
    border: 0;
    background: inherit;
}

.notes_detail_block .note_name_block ul.dropdown-menu > li {
    margin: 0;
}

.notes_detail_block .note-message-block {
    padding: 15px 0;
}

.notes_detail_block .note-message-block p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    color: #090909;
}

.notes_detail_block .note-date-block span {
    border: 1px solid #113140;
    border-radius: 100px;
    padding: 6PX 24PX;
    font-size: 12px;
    line-height: 20px;
    color: #090909;
    font-weight: 400;
    display: inline-block;
}

.teacher-list-table.student-table-data .table > thead > tr > th:nth-child(2) {
    text-align: center;
}

.teacher-list-table.student-table-data .table > tbody > tr > td:nth-child(2) {
    text-align: center;
}

.teacher-list-table.student-table-data .table > thead > tr > th:after {
    display: none;
}

.student_setting_block .setting-option-content > p,
.student_setting_block .setting-option-content > h6 {
    color: #000;
    font-family: "Roboto", serif;
}

.register-form-box .phone-container .iti--allow-dropdown,
.addGuestModal .phone-container .iti--allow-dropdown {
    display: flex;
    gap: 24px;
}

.register-form-box .phone-container .iti--allow-dropdown .iti__flag-container,
.addGuestModal .phone-container .iti--allow-dropdown .iti__flag-container {
    position: unset;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
}

.register-form-box .phone-container .iti--allow-dropdown > input#phone,
.addGuestModal .phone-container .iti--allow-dropdown > input#phone {
    padding-left: 10px !important;
}

.dashboard-container .sidebar {
    overflow-y: auto;
}

.preview_modal_data .modal-body {
    padding: 32px 32px 0;
}

.preview_modal_data .preview_modal_wrapper .preview_table_heading h5 {
    font-size: 28px;
    font-weight: 400;
    font-family: "Roboto", serif;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 32px;
    color: #000;
}

.preview_modal_data .preview_modal_wrapper .table thead {
    background-color: #113140;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 13px;
}

.preview_modal_data .preview_modal_wrapper .table > thead > tr > th {
    border: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    padding: 14px 8px;
    font-family: "Roboto", serif;
}

.preview_modal_data .preview_modal_wrapper .table thead th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.preview_modal_data .preview_modal_wrapper .table thead th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.preview_modal_data .modal-body {
    max-height: 100%;
}

.preview_modal_data .table > thead > tr > th,
.preview_modal_data .table > tbody > tr > th,
.preview_modal_data .table > tfoot > tr > th,
.preview_modal_data .table > thead > tr > td,
.preview_modal_data .table > tbody > tr > td,
.preview_modal_data .table > tfoot > tr > td {
    border: 0;
}

.preview_modal_data .preview_modal_wrapper .table tbody > tr > td {
    color: #000;
    text-align: center;
    padding: 22px 10px;
    font-family: "Roboto", serif;
    position: relative;
}

.preview_modal_data.modal_center_block .modal-dialog-centered {
    display: block;
    margin: auto;
    width: 100%;
    margin-top: 90px;
    max-width: 950px;
}

.preview_modal_data .preview_modal_wrapper .table {
    margin: 0;
}

.preview_modal_data .modal-footer {
    border: 0;
    padding: 16px 55px 75px 0;
}

.preview_modal_data .modal-footer button {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Roboto", serif;
}

.preview_modal_data .modal-footer button.btn-custom-default {
    min-width: 130px;
    padding: 8px 42px;
}

.preview_modal_data .preview_modal_wrapper .table tbody > tr > td .custom_checkbox {
    position: relative;
}

.preview_modal_data .preview_modal_wrapper .table tbody > tr > td .custom_checkbox:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 15px;
    top: -8px;
    margin-left: -23px;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    background-color: #fff;
}

.preview_modal_data .preview_modal_wrapper .table tbody > tr > td input[type="checkbox"]:checked + span::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 10px;
    color: #fff;
    border-color: transparent;
    background-color: #FF4F22;
    position: absolute;
    border: 0;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    left: 15px;
    line-height: 20px;
    padding: 0;
    top: -8px;
    display: flex;
    justify-content: center;
}

.preview_modal_data .preview_modal_wrapper .table tbody > tr > td > label > input {
    display: none;
}

.upload-file-name .progress-bar {
    width: 0%;
    height: 100%;
    background: #28a745;
    transition: width 2s ease-in-out;
}

.upload-file-name .progress-container {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.upload-file-name {
    flex-wrap: wrap;
}

.upload-file-name .download_btn {
    display: none;
}

.upload-file-name.show_download_btn {
    align-items: center;
    justify-content: inherit;
}

.upload-file-name.show_download_btn .download_btn {
    margin-left: auto;
}

.register-form-box .form-group label > span {
    font-weight: 700;
    color: #FF4F22;
    display: inline-block;
}

.register-form-box #add-school-btn > i {
    margin-right: 6px;
}


/* voting tab css */
.voting-block-section .tabs-heading h2 {
    font-family: "Roboto", serif;
    margin-bottom: 70px;
}

.voting-poll-form .form-group input,
.voting-poll-form .custom-dropdown .custom-dropdown-toggle,
.voting-poll-form .form-group textarea {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    padding: 10px;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    height: 40px;
    margin-bottom: 3px;
}

.voting-poll-form .form-group label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
}

.dashboard-inner-content-block.voting-block-section {
    width: 75%;
}

.voting-block-section .voting-poll-form form .d-flex {
    gap: 24px;
}

.voting-block-section .voting-poll-form form .custom-dropdown-toggle {
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.voting-block-section .voting-poll-form form .custom-dropdown-menu {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    padding: 0px;
    list-style: none;
    display: none;
    position: absolute;
    width: 100%;
    z-index: 99;
    background: rgb(255, 255, 255);
}

.voting-block-section .voting-poll-form form .custom-dropdown {
    position: relative;
}

.voting-block-section .voting-poll-form form .custom-dropdown-menu li {
    border-bottom: 1px solid #f1f1f1;
    padding: 13px 10px;
}

.voting-poll-form .form-group .custom-dropdown-menu li input {
    display: none;
}

.voting-poll-form .form-group .custom-dropdown-menu li label > span {
    position: relative;
}

.voting-poll-form .form-group .custom-dropdown-menu li label > span:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    top: 0px;
    margin-left: -23px;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    background-color: #fff
}

.voting-poll-form .form-group .custom-dropdown-menu li label {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}

.voting-poll-form .form-group .custom-dropdown-menu li label > input[type="checkbox"]:checked + span::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 10px;
    color: #fff;
    border-color: transparent;
    background-color: #FF4F22;
    position: absolute;
    border: 0;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    left: 2px;
    line-height: 10px;
    padding: 3px;
    top: 0px;
}

.voting-poll-form .form-group textarea {
    width: 100%;
    min-height: 100px;
}

.voting-block-section .voting-poll-form form #selected-poll-text {
    display: block;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.voting-poll-form .input-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px;
}

.voting-poll-form .input-container input {
    width: 100%;
}

.voting-poll-form .input-container .add-btn {
    background: 0;
    border: 2px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    cursor: pointer;
    line-height: 16px;
}

.voting-poll-form .input-container .remove-btn {
    border: 0;
    background: 0;
    color: #000;
    font-size: 20px;
}

.voting-poll-form .input-container .add-btn:disabled {
    color: #999;
    border: 2px solid #999;
    pointer-events: none;
}

.voting-poll-form .preview-container {
    display: flex;
    gap: 20px;
}

.voting-poll-form .preview-container > img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 8px;
}

.voting-poll-form .preview-container .upload-box {
    margin: 0;
    background: rgba(35, 52, 66, 1);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.voting-poll-form .preview-container input {
    display: none;
}

.voting-poll-form .upload-container {
    margin-top: 16px;
}

.voting-poll-form .poll-create-detail {
    width: 100%;
    justify-content: space-between;
}

.voting-poll-form .create_form_btn {
    justify-content: flex-end;
    margin-top: 70px;
}

.voting-poll-form .create_form_btn > button {
    min-width: 130px;
}

.voting-poll-form .create_form_btn > a.btn {
    min-width: 130px;
    line-height: 24px;
}

.voting-poll-form .form-group.upload_image_box {
    margin-bottom: 24px;
}

.voting-poll-form .vote-radio-btn input {
    display: none;
}

.voting-poll-form .vote-radio-btn {
    margin-bottom: 25px;
}

.vote-radio-btn > div > label > span {
    position: relative;
    padding-left: 34px;
}

.vote-radio-btn > div > label > span:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 0px;
    top: 0px;
    border: 1px solid #c5c5c5;
    background-color: #fff;
}

.vote-radio-btn > div > label > input[type="radio"]:checked + span:after {
    content: "";
    font-family: FontAwesome;
    font-size: 10px;
    color: #fff;
    border-color: transparent;
    background-color: #FF4F22;
    position: absolute;
    border: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 5px;
    line-height: 10px;
    padding: 3px;
    top: 5px;
}

.vote-radio-btn > div > label {
    display: flex;
    align-items: center;
}

.voting-block-section .voting-poll-form form .vote-radio-btn .d-flex {
    justify-content: space-between;
    margin-top: 10px;
}

.voting-block-section .voting-poll-form .poll_detail_left {
    width: 49%;
}

.vote-checkbox-grp .vote-checkbox-item > label input {
    display: none;
}

.vote-checkbox-grp .vote-checkbox-item > label span {
    position: relative;
    padding-left: 34px;
    cursor: pointer;
    padding-top: 1px;
}

.vote-checkbox-grp .vote-checkbox-item > label span:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 23px;
    top: 0px;
    margin-left: -23px;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    background-color: #fff;
}

.vote-checkbox-grp .vote-checkbox-item > label > input[type="checkbox"]:checked + span:before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 10px;
    color: #fff;
    border-color: transparent;
    background-color: #FF4F22;
    position: absolute;
    border: 0;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    left: 23px;
    line-height: 10px;
    padding: 5px;
    top: 0px;
}

.voting-poll-form .poll_detail_left .form-group label {
    font-size: 16px;
}

.voting-poll-form .poll_detail_left .form-group.vote-checkbox-grp label {
    margin-bottom: 20px;
}

.voting-block-section .voting-poll-form .poll_detail_right .form-group label {
    width: 100%;
}

.voting-block-section .voting-poll-form .poll_detail_right .form-group input {
    width: 100%;
}

.voting-block-section .voting-poll-form .poll_detail_right .beginning_date .form-group:last-of-type {
    margin-bottom: 30px;
    margin-bottom: 0;
}

.poll-toogle-btn .setting-option-content h6 {
    font-size: 16px;
    color: #000;
    font-family: "Roboto", serif;
}

.poll-toogle-btn .setting-option-content {
    margin-bottom: 0;
}

.poll-toogle-btn {
    justify-content: space-between;
    align-items: center;
}

.poll-toogle-btn .setting-option-row {
    flex: 1;
    width: 100%;
    justify-content: space-between;
}

/* events tab css */
.tester-dev {
    display: none;
}

.events-tabs .dashboard-inner-content .tabs-heading > h2 {
    margin-bottom: 26px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: "Roboto", serif;
}

.step-progress {
    display: flex;
    gap: 75px;
    margin-bottom: 48px;
}

.step-progress .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 88px;
}

.step-progress .step .step-circle {
    width: 42px;
    height: 42px;
    background: #A9ADB1;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    font-family: "Roboto", serif;
}

.step-progress .step.active .step-circle {
    background: #FF4F22;
}

.step-progress .step > p {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin: 10px 0 0;
    color: #113140;
}

.step-progress .step:before {
    content: '';
    display: block;
    position: absolute;
    width: 46px;
    height: 2px;
    background: #090909;
    transform: translate(100%, -50%);
    top: 50%;
    left: 65%;
    border-radius: 2px;
}

.step-progress .step:last-of-type::before {
    display: none;
}

.events-tabs .content-section .add_image_block > h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    font-family: "Roboto", serif;
    margin: 0 0 18px;
}

.events-tabs .content-section .add_image_block > p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", serif;
    line-height: 20px;
    color: #000;
    margin: 0 0 26px;

}

.events-tabs .content-section {
    display: none;
}

.events-tabs .content-section.active {
    display: block;
}

.events-tabs .file_upload_wrapper {
    position: relative;
    background: url(../backend/images/dashboard/upload_bg_img.svg) center / cover no-repeat;
    min-height: 166px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 43px;
}

.events-tabs .file_upload_wrapper > img {
    width: 100%;
}

.events-tabs .file_upload_wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.events-tabs .file_upload_wrapper .file-upload-content {
    text-align: center;
}

.events-tabs .file_upload_wrapper .file-upload-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    font-family: "Roboto", serif;
    margin: 20px 0 0px;
}

.events-tabs .file_upload_wrapper #uploaded-image {
    display: none;
    width: 100%;
}

.file-upload-info {
    background: #D3E8FF;
    border-radius: 8px;
    padding: 10px 24px;
    margin-bottom: 40px;
}

.file-upload-info > p {
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", serif;
    margin: 0;
    line-height: 20px;
}

.event-des-form > h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Roboto", serif;
    margin: 0 0 22px;
    color: #000;
}

.events-tabs .form-group {
    float: inherit;
    margin-bottom: 24px;
}

.events-tabs .form-group label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    margin-bottom: 4px;
}

.event-des-form .form-group label > span {
    color: #A9ADB1;
}

.events-tabs .form-group input,
.events-tabs .form-group textarea,
.events-tabs .form-group select {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    padding: 10px;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    height: 40px;
    margin-bottom: 3px;
}

.event-des-form .form-group textarea {
    height: 100%;
}

.event-des-form .add_categories_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.event-des-form .add_categories_block .add_categories_wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 24px;
}

.event-des-form .add_categories_block .add_categories_wrapper > span {
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    font-family: "Roboto", serif;
    margin: 0;
    color: #000;
}

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

.input_box_block > p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0;
}

.input_box_block .input_box_content {
    border: 1px solid #F1F1F1;
    border-radius: 8px;
    padding: 11px 10px;
    min-width: 88px;
    text-align: center;
}

.input_box_block .input_box_content > span {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Roboto", serif;
    color: #000;
}

.event-des-form .time_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.event-section-1 {
    width: 50%;
}

.nav-buttons_wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 95px;
    gap: 24px;
}

.step-progress .step.completed .step-circle {
    background: #34C759;
}

.step-progress .step .step-circle img {
    filter: brightness(1000%) contrast(1000%) !important;
}

.step-progress .step .step-circle img {
    display: none;
}

.step-progress .step.completed .step-circle img {
    display: block;
}

.step-progress .step.completed .step-circle span {
    display: none;
}

.event-section-2,
.event-section-3,
.event-section-4 {
    padding-left: 96px;
}

.create_entry_wrapper > h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0 0 34px;
}

.create_entry_wrapper .create_entry_block {
    display: flex;
    gap: 57px;
    margin-bottom: 48px;
}

.create_entry_wrapper .create_entry_block label.option-box {
    flex-basis: 280px;
    cursor: pointer;
    box-shadow: 0px 6px 20px 0px #0000001A;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    margin: 0;
    border: 1px solid transparent;
}

.create_entry_wrapper .create_entry_block label.option-box.active {
    border: 1px solid #FF4F22;
}

.create_entry_wrapper .create_entry_block label.option-box > h6 {
    font-size: 24px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0;
}

.create_entry_wrapper .create_entry_block label.option-box > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0;
    text-align: center;
}

.paid_detail_block > h5 {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0 0 18px;
}

.entry_details_block {
    width: 50%;
}

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

.options_toggle_btn .option_toggle_content > p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0;
}

.options_toggle_btn .setting-option-toggle {
    display: flex;
}

.options_toggle_btn .setting-option-toggle label {
    margin: 0;
}

.entry_details_block > div {
    display: none;
}

.event-creator-block .sponsor_user_detail {
    margin-bottom: 30px;
}

.event-creator-block .sponsor_user_detail .sponsor_user_block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 16px;
}

.sponsor_user_detail > h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Roboto", serif;
    margin-bottom: 30px;
    color: #000;
}

.event-creator-block .sponsor_user_detail .sponsor_user_block .sponsor_user_content > h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-creator-block .sponsor_user_detail .sponsor_user_block .sponsor_user_content > p {
    color: #A9ADB1;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Roboto", serif;
    margin: 0;
}

.add_sponsor_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
}

.add_sponsor_wrapper .add_sponsor_block {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.add_sponsor_wrapper .add_sponsor_block span {
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Roboto", serif;
    color: #000;
}

.creator_permission_wrapper > h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0 0 30px;
}

.setting-option-content > h6 {
    color: #000;
    font-family: "Roboto", serif;
}

.setting-option-content > p {
    color: #090909;
}

.creator_permission_options .setting-option-row {
    justify-content: space-between;
    max-width: 675px;
    gap: 20px;
}

.add-new-file-block .file-upload p,
.upload-file-name > p {
    color: #000;
}

.events-tabs .event-creator-block {
    max-width: 675px;
}

.addSponsorModel .modal-body > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Roboto", serif;
    color: #000;
}

.addSponsorModel .modal-body input {
    border: 1px solid #A9ADB1;
    border-radius: 4px !important;
    font-size: 13px;
    color: #090909;
    font-weight: 400;
    line-height: 20px;
}

.sponsor_button_block {
    text-align: center;
}

.event_details_wrapper > h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Roboto", serif;
    color: #000;
}

.event_details_wrapper {
    max-width: 515px;
}

.event_img_block img {
    width: 100%;
    height: 100%;
    margin-bottom: 32px;
}

.event_details_wrapper .event_detail_block .event_img_block img {
    margin-bottom: 0;
}

.event_detail_block .event_img_block .slick-dots {
    bottom: 10px;
}

.event_detail_block .event_img_block .slick-dots li button:before {
    font-size: 12px;
    opacity: 1;
    color: rgba(217, 217, 217, 1);
}

.event_detail_block .event_img_block .slick-dots li {
    margin: 0;
}

.event_detail_block .event_img_block .slick-dots li.slick-active button:before {
    opacity: 1;
    color: rgba(255, 79, 34, 1);
}

.event_details_wrapper .event_detail_block {
    box-shadow: 0px 6px 20px 0px #0000001A;
    padding: 24px;
    margin-top: 58px;
}

.event-detail-img .slick-dots li button:before {
    font-size: 12px;
    opacity: 1;
    color: rgba(217, 217, 217, 1);
}

.event-detail-img .slick-dots li {
    margin: 0;
}

.event-detail-img .slick-dots li.slick-active button:before {
    opacity: 1;
    color: rgba(255, 79, 34, 1);
}

.event-detail-img .slick-dots {
    bottom: -32px;
}

.event-grid-block.grid-view .event-grid-inner-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.event-grid-block.grid-view .event-grid-inner-wrapper .load_more_events {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 250px;
    text-align: center;
    margin: auto;
    background: #FF4F22;
    color: #fff;
    padding: 8px 42px;
    font-weight: 500;
    border-radius: 16px;
    line-height: 20px;
    border: 1px solid transparent;
    margin-top: 20px;
}

.event-grid-block.grid-view .event-grid-inner-wrapper .event-grid-item {
    width: 100%;
}

.event-grid-block.grid-view .event-grid-inner-wrapper .event-grid-inner-block .event-grid-content p {
    min-width: 145px;
}

.custom_select_wrapper label {
    width: 100%;
}

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

.custom_select_wrapper .select2-container .select2-search--inline .select2-search__field {
    height: auto;
    line-height: normal;
    width: 100% !important;
}

.custom_select_wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice {
    line-height: normal;
}

.custom_select_wrapper .select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-top: 11px;
    line-height: normal;
}

.events-tabs .custom_select_wrapper .selection .select2-selection {
    height: auto;
}

.custom_select_wrapper .select2-container .select2-search--inline {
    width: 100%;
}

.custom_select_wrapper .select2-container--below.select2-container .select2-search--inline {
    width: auto;
}

.event_details_wrapper .event_detail_block .event_items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.event_details_wrapper .event_detail_block .event_items p {
    font-size: 19px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0;
}

.event_details_wrapper .event_detail_block .event_items p > a {
    color: #000;
    text-decoration: none;
}

.event_details_wrapper .event_detail_block .event_items p:first-of-type {
    display: flex;
    align-items: center;
    gap: 5px;
}

.eventCreateModel .modal-content {
    border-radius: 8px;
}

.eventCreateModel .modal-body {
    width: 450px;
    text-align: center;
    padding: 48px 32px;
}

.eventCreateModel .modal-body h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    color: #FF4F22;
    font-family: "Roboto", serif;
    margin: 0 0 32px;
}

.eventCreateModel .modal-body p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #090909;
    font-family: "Roboto", serif;
    margin: 0 0 32px;
}

.eventCreateModel .modal-body button {
    width: 100%;
}

.events-tabs .event_tabs_wrapper {
    margin-top: 70px;
}

.events-tabs .event-list-heading-block {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 45px;
    padding-left: 18px;
}

.events-tabs .event-list-heading-block .heading-filter-btn {
    margin-left: auto;
    display: flex;
    gap: 32px;
    align-items: center;
}

.events-tabs .event-list-heading-block .heading-filter-btn .toggle_icon_btn {
    display: flex;
    align-items: center;
    gap: 32px;
    cursor: pointer;
}

.toggle_icon_btn > div {
    display: none;
}

.toggle_icon_btn > div.active {
    display: block;
}

.events-tabs .event-list-heading-block .heading-filter-btn .tab-btn {
    margin: 0;
}

.event-list-table .table thead {
    background-color: #113140;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 13px;
}

.teacher-list-table.event-list-table .table > tbody > tr > td {
    color: #090909;
}

.teacher-list-table.event-list-table .table > thead > tr > th:nth-child(2) {
    text-align: center;
}

.teacher-list-table.event-list-table .table > tbody > tr > td:nth-child(2) {
    text-align: center;
}

.event-grid-block.grid-view {
    display: none;
}

.event-grid-block > div {
    gap: 63px;
    flex-wrap: wrap;
}


.event-grid-block .event-grid-item {
    padding: 16px;
    box-shadow: -2px 4px 12px 0px #18181814;
    width: 36%;
}

.event-grid-block .event-grid-item .event-grid-img {
    position: relative;
}

.event-grid-block .event-grid-item .event-grid-img > img {
    width: 100%;
    border-radius: 4px;
}

.grid-status-button {
    position: absolute;
    left: 16px;
    top: 16px;
}

.grid-status-button a.btn,
.event-list-table.list-view table tbody > tr > td > a,
.view_status_btn a.btn {
    border-radius: 4px;
    padding: 4px 16px;
    font-weight: 600;
}

.view_status_btn a.btn {
    padding: 4px 20px;
}

.event-list-table.list-view table tbody > tr > td > a {
    padding: 4px 35px;
}

.grid-status-button a.btn:hover {
    background: #FF4F22;
    color: #fff;
    border: 1px solid transparent;
}

.event-grid-inner-block .event-grid-heading > h6 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #181818;
    font-family: "Roboto", serif;
    margin: 20px 0 16px;
}

.event-grid-inner-block p.event-grid-des {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #090909;
    font-family: "Roboto", serif;
    margin: 0 0 20px;
}

.event-grid-inner-block .event-grid-content {
    display: flex;
    flex-wrap: wrap;
}

.event-grid-inner-block .event-grid-content p {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #000;
    min-width: 162px;
    margin: 0 0 16px;
}

.event-grid-inner-block .event-grid-content p > img {
    filter: brightness(0) !important;
}

.grid_view_btn > button {
    width: 100%;
}

.events-tabs .tabs-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 29px;
    padding-top: 22px;
    display: flex;
}

.events-tabs a.back-arrow > i {
    padding-right: 10px;
    font-size: 20px;
    color: #000;
}

.events-tabs a.back-arrow > span {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.events-tabs .dashboard-inner-content .tabs-heading > h2 > .action-icon {
    display: flex;
    gap: 16px;
}

.input_box_block .input_box_content > span input {
    border: 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
    color: #090909;
    height: auto;
}

.input_box_block .input_box_content > span input.form-control::-webkit-outer-spin-button,
.input_box_block .input_box_content > span input.form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.events-tabs .file_upload_wrapper span.text-danger {
    position: absolute;
    bottom: -25px;
    left: 5px;
    width: 100%;
}

.events-tabs .file-upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.events-tabs .file-upload-preview img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.events-tabs .file-upload-preview .uploaded-image-wrapper {
    position: relative;
}

.events-tabs .file-upload-preview .uploaded-image-wrapper .remove-image {
    position: absolute;
    right: -10px;
    top: -8px;
    background: #FF4F22;
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.events-tabs .selection .select2-selection {
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    height: 40px;
}

.events-tabs .selection .select2-selection .select2-selection__rendered {
    line-height: 40px;
    font-size: 14px;
    color: #000;
}

.events-tabs .selection .select2-selection .select2-selection__arrow {
    top: 8px;
}

.event-detail-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    margin-top: 30px;
    border-radius: 4px;
}

.event-detail-wrapper {
    margin-top: 70px;
}

.event-detail-wrapper h6 {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    font-family: "Roboto", serif;
    margin: 0 0 16px;
}

.event-dateTime-block > div {
    gap: 16px;
}

.event-dateTime-block > div p {
    min-width: 162px;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #000;
    font-family: "Roboto", serif;
    display: flex;
    align-items: center;
    gap: 16px;
}

.event-dateTime-block > div:last-of-type {
    gap: 30px;
    margin-top: 32px;
}

.event-dateTime-block > div .event-location-detail > p > span {
    width: 185px;
    display: inline-block;
}

.event-ticket-detail {
    gap: 20px;
    margin-bottom: 30px;
}

.event-dateTime-block > div p > img {
    filter: brightness(0) !important;
}

.event-sale-summary .event-summary-item > h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
    font-family: "Roboto", serif;
    margin: 0 0 16px;
}

.event-sale-summary .event-summary-item > p,
.event-sale-summary .event-summary-item > p > a {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #000;
    font-family: "Roboto", serif;
    display: flex;
    align-items: center;
    gap: 16px;
}

.event-sale-summary > div {
    column-gap: 120px;
    flex-wrap: wrap;
    row-gap: 37px;
}

.event-sale-summary .event-summary-item:last-of-type {
    width: 100%;
}

.event-tickets-block .ticket_manage_icon > a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #113140;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-tickets-block .ticket_manage_icon > a.active,
.event-tickets-block .ticket_manage_icon > a:hover {
    background: #FF4F22;
}

.event-tickets-block .ticket_manage_icon {
    display: flex;
    gap: 20px;
    align-items: center;
}

.input_box_block .input_box_content.ticket_price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    width: max-content;
    min-width: auto;
    max-width: max-content;
    padding: 11px 24px;
    cursor: text
}

.auto-resize::-webkit-outer-spin-button,
.auto-resize::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.no_of_tickets_container input[type=number],
.per_ticket_limit_container input[type=number],
.is_collect_tax_container input[type=number],
input[type=number].auto-resize {
    -moz-appearance: textfield;
    appearance: textfield;
    margin: 0;
}

.input_box_block .input_box_content.ticket_price input.form-control {
    text-align: left;
    width: 2ch;
    padding: 0;
    border: 0;
    padding: 0;
    font-size: 16px;
    color: #090909;
    height: auto;
}

.black-event-wrapper {
    margin-top: 70px;
    box-shadow: 0px 6px 20px 0px #0000001A;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.black-event-wrapper > h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #090909;
    font-family: "Roboto", serif;
    margin: 32px 0;
}

.black-event-wrapper > p {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    font-family: "Roboto", serif;
    margin: 0 0 32px;
    max-width: 75%;
}

.event-grid-block .event-grid-item {
    padding: 16px;
    box-shadow: -2px 4px 12px 0px #18181814;
    width: 36%;
}

.create_poll_grid.event-grid-block .event-grid-item {
    padding: 16px 16px 33px;
}

.create_poll_grid.event-grid-block .event-grid-item {
    flex: 1;
    width: auto;
}

.event-grid-block .event-grid-item .event-grid-img {
    position: relative;
}

.event-grid-block .event-grid-item .event-grid-img > img {
    width: 100%;
    border-radius: 4px;
}

.grid-status-button {
    position: absolute;
    left: 16px;
    top: 16px;
}

.grid-status-button a.btn,
.event-list-table.list-view table tbody > tr > td > a,
.view_status_btn a.btn {
    border-radius: 4px;
    padding: 4px 16px;
    font-weight: 600;
}

.view_status_btn a.btn {
    padding: 4px 20px;
}

.event-list-table.list-view table tbody > tr > td > a {
    padding: 4px 35px;
}

.grid-status-button a.btn:hover {
    background: #FF4F22;
    color: #fff;
    border: 1px solid transparent;
}

.event-grid-inner-block .event-grid-heading > h6 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #181818;
    font-family: "Roboto", serif;
    margin: 20px 0 16px;
}

.event-grid-inner-block p.event-grid-des {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #090909;
    font-family: "Roboto", serif;
    margin: 0 0 20px;
}

.create_poll_grid .event-grid-inner-block p.event-grid-des {
    color: rgba(71, 71, 71, 1);
    min-height: 75px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.event-grid-inner-block .event-grid-content {
    display: flex;
    flex-wrap: wrap;
}

.create_poll_grid .event-grid-inner-block .event-grid-content {
    flex-direction: column;
}

.event-grid-inner-block .event-grid-content p {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #000;
    min-width: 162px;
    margin: 0 0 16px;
}

.create_poll_grid .event-grid-content p > img {
    filter: brightness(0) saturate(100%) sepia(1) hue-rotate(-15deg) saturate(600%) !important;
}

.create_poll_grid .event-grid-content p:last-of-type {
    margin-bottom: 20px;
}

.create_poll_grid .grid_view_btn button {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
}

.create_poll_grid .event-grid-item.closed-event-grid .grid-status-button a {
    background: rgba(169, 173, 177, 1);
    pointer-events: none;
}

.create_poll_grid .event-grid-item.closed-event-grid .grid_view_btn button {
    border-color: rgba(45, 104, 254, 1);
    background: #fff;
    color: rgba(45, 104, 254, 1);
}

.dashboard-inner-content .voting-detail-section {
    width: 75%;
}

.dashboard-inner-content .voting-detail-section .tabs-heading > h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 46px;
    color: #000;
    margin-bottom: 24px;
    font-family: "Roboto", serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-inner-content .voting-detail-section .tabs-heading > h2 > .voting_detail_edit {
    cursor: pointer;
}

.dashboard-inner-content .voting-detail-section .tabs-heading a.back-arrow > span {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.dashboard-inner-content .voting-detail-section .tabs-heading a.back-arrow > i {
    padding-right: 10px;
    font-size: 20px;
    color: #000;
}

.voting_detail_subheading > h4 {
    color: rgba(24, 24, 24, 1);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    font-family: "Roboto", serif;
    margin: 0 0 30px;
}

.voting_detail_inner_wrapper .voting_img_wrapper img {
    width: 100%;
    max-height: 194px;
    min-height: 194px;
    object-fit: cover;
    border-radius: 4px;
}

.voting_detail_inner_wrapper .voting_img_wrapper {
    margin-bottom: 50px;
}

.vote_counter_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 38px;
}

.vote_counter_wrapper > div {
    flex: 0.8;
    background: rgba(255, 79, 34, 1);
}

.vote_counter_wrapper > div.vote_counter_middle {
    flex: 1;
    background: #fff;
    border-top: 1px solid rgba(255, 79, 34, 1);
    border-bottom: 1px solid rgba(255, 79, 34, 1);
}

.vote_counter_wrapper > div:last-of-type {
    border-radius: 0 8px 8px 0;
}

.vote_counter_wrapper > div:first-of-type {
    border-radius: 8px 0 0 8px;
}

.vote_counter_wrapper .vote_counter_content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 14px;
    gap: 32px;
}

.vote_counter_wrapper .vote_counter_content span {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
}

.vote_counter_wrapper > div.vote_counter_middle .vote_counter_content span {
    color: #000;
}

.vote_percentage_block .vote_percentage_heading h4 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: #000;
}

.vote_percentage_block {
    margin-bottom: 33px;
}

.vote_percentage_subheading > p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: rgba(169, 173, 177, 1);
    margin-bottom: 30px;
}

.voting-detail-section .setting-option-content {
    margin-bottom: 0px;
}

.voting-detail-section .setting-option-content h6 {
    margin: 0;
}

.voting-detail-section .setting-option-row {
    margin-bottom: 24px;
    justify-content: space-between;
    align-items: center;
}

.voting-detail-section .setting-option-row .switch {
    margin: 0;
}

.voting-detail-section .vote_pdf_btn a {
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    font-family: "Roboto", serif;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.voting_img_wrapper .slick-list {
    border-radius: 8px;
}

.voting_img_wrapper .slick-dots li {
    margin: 0;
}

.voting_img_wrapper .slick-dots li button:before {
    font-size: 10px;
    opacity: 1;
    color: rgba(217, 217, 217, 1);
}

.voting_img_wrapper .slick-dots li.slick-active button:before {
    opacity: 1;
    color: rgba(255, 79, 34, 1);
}

.black-event-wrapper {
    margin-top: 70px;
    box-shadow: 0px 6px 20px 0px #0000001A;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.black-event-wrapper > h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #090909;
    font-family: "Roboto", serif;
    margin: 32px 0;
}

.black-event-wrapper > p {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    font-family: "Roboto", serif;
    margin: 0 0 32px;
    max-width: 75%;
}

.voting-block-section .voting-tabs-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
    margin-top: 20px;
}

.voting-block-section .voting-tabs-heading .tabs-heading > h2 {
    margin: 0;
}

.voting-block-section .create_poll_grid .event-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vote_percentage_counting_block {
    border-bottom: 1px solid rgba(169, 173, 177, 1);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.vote_percentage_counting_block .counting_block_item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
}

.vote_percentage_counting_block .counting_block_item .counting_serial_no {
    width: 32px;
    height: 30px;
    background: rgba(255, 79, 34, 1);
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 22px;
    border-radius: 50%;
}

.vote_percentage_counting_block .counting_block_item .counting_block_content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.voting-block-section .upload_image_box .image-preview-block img {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    object-fit: cover;
}

.voting-block-section .upload_image_box #image-previews {
    display: flex;
    gap: 20px;
}

.voting-block-section .upload_image_box .preview-container > img {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    object-fit: cover;
}

.voting-block-section .upload_image_box .image-preview-block {
    position: relative;
}

.voting-block-section .upload_image_box .image-preview-block .remove_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF4F22;
    color: #fff;
    line-height: normal;
    font-size: 16px;
    position: absolute;
    right: -10px;
    top: -16px;
    cursor: pointer;
}

/* voting page css end */
#filterModal .grade_filter_content.grade_filter_block {
    margin-top: 10px;
}

.grade_filter_item label > input[type="radio"]:checked + span::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 10px;
    color: #fff;
    border-color: transparent;
    background-color: #FF4F22;
    position: absolute;
    border: 0;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    right: 0px;
    line-height: 20px;
    padding: 0;
    top: 1px;
    display: flex;
    justify-content: center;
}

#studentTable_wrapper table.dataTable thead .sorting_asc {
    background-image: none !important;
}

#studentTable_wrapper .student-avatar-block {
    display: inline-block;
    background: rgba(169, 173, 177, 1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 6px;
    margin-right: 10px;
}

.register-form-box #add-school-btn {
    background: #fff;
    margin-top: 27px;
    border-radius: 20px;
    border: 1px solid rgba(17, 49, 64, 1);
    color: rgba(17, 49, 64, 1);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    min-width: 130px;
}

.user-profile-edit button#choose-avatar {
    background: rgba(169, 173, 177, 1);
    border: 0;
    height: 36px;
    width: 36px;
    border-radius: 50%;
}

.avatar_modal .modal-body #avatar-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.avatar_modal .modal-content {
    padding-bottom: 24px;
}

.teacher-list-table.student-table-data #studentTable.table tbody tr td:first-child {
    text-align: left;
    padding-left: 70px;
}


/* pending-approval-ui start*/
.custom_checkbox_block {
    position: relative;
    margin: 0;
}

.custom_checkbox_block input {
    display: none;
}

.custom_checkbox_block span::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 20px;
    top: -15px;
    margin-left: -23px;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    background-color: #fff;
}

.custom_checkbox_block > input[type="checkbox"]:checked + span::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 10px;
    color: #fff;
    border-color: transparent;
    background-color: #FF4F22;
    position: absolute;
    border: 0;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    left: 20px;
    line-height: 20px;
    padding: 0;
    top: -15px;
    display: flex;
    justify-content: center;
}

.table-header-dropdown {
    position: relative;
}

.table-header-dropdown i {
    position: absolute;
    right: 2px;
    top: 13px;
    font-size: 21px;
    cursor: pointer;
}

.table-header-dropdown ul.dropdown-menu {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background: #fff;
    border-radius: 0 0 8px 8px;
    border: 0;
    left: -32px;
    top: 37px;
    padding: 0;
}

.table-header-dropdown ul.dropdown-menu > li > a {
    color: #000;
    font-size: 16px;
    line-height: 22px;
    padding: 7px 8px;
}

.table-header-dropdown ul.dropdown-menu > li:first-of-type a img {
    filter: brightness(0) saturate(100%) sepia(1) hue-rotate(-15deg) saturate(600%) !important;
}

.table-header-dropdown ul.dropdown-menu > li:first-of-type a:hover img {
    filter: none !important;
}

.table-header-dropdown ul.dropdown-menu > li:last-of-type a:hover img {
    filter: brightness(0) invert(1) !important;
    border-radius: 0 0 8px 8px;
}

.table-header-dropdown ul.dropdown-menu > li:last-of-type a:hover {
    border-radius: 0 0 8px 8px;
}

.table-header-dropdown ul.dropdown-menu > li > a:hover {
    background: rgba(255, 79, 34, 1);
    color: #fff;
}

.pending-approval-wrepper .teacher-list-table .dataTables_wrapper .row:first-of-type {
    display: none;
}

.pending-approval-wrepper .teacher-list-table .dataTables_wrapper .table,
.ticket-approval-wrapper .teacher-list-table .dataTables_wrapper .table {
    border: 0;
}

.open-filter-btn {
    border: 0;
    background: none;
}

.pending-approval-wrepper #studentTable_wrapper table.dataTable thead .sorting_asc::after {
    display: none;
}

.filter_pendingapproval_modal .modal-content .modal-header h4 {
    text-align: center;
}

.filter_pendingapproval_modal .modal-body > h5 {
    font-size: 22px;
    color: #000;
    font-weight: 500;
    font-family: "Roboto", serif;
    margin: 0 0 16px;
}

.filter_pendingapproval_modal .modal-body {
    padding: 24px;
}

.filter_pendingapproval_modal .modal-body form label {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    font-family: "Roboto", serif;
}

.filter_pendingapproval_modal .modal-body form input {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    padding: 10px;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    height: 40px;
    margin-bottom: 3px;
}

.filter_pendingapproval_modal .modal-body form .sort_time > label {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    font-family: "Roboto", serif;
    margin-bottom: 18px;
}

.filter_pendingapproval_modal .modal-body form .sort_time .form-check {
    position: relative;
    margin-bottom: 16px;
}

.filter_pendingapproval_modal .modal-body form .sort_time .form-check input {
    display: none;
}

.filter_pendingapproval_modal .modal-body form .sort_time .form-check label {
    width: 100%;
    margin: 0;
}

.filter_pendingapproval_modal .modal-body form .sort_time .form-check label:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: auto;
    right: 0;
    top: 0px;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    background-color: #fff;
}

.filter_pendingapproval_modal .modal-body form .sort_time .form-check input[type="radio"]:checked + label::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 10px;
    color: #fff;
    border-color: transparent;
    background-color: #FF4F22;
    position: absolute;
    border: 0;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    left: auto;
    right: 0;
    line-height: 20px;
    padding: 0;
    top: 0px;
    display: flex;
    justify-content: center;
}

.filter_pendingapproval_modal .modal-body {
    max-height: 455px;
    width: 455px;
}

.filter_pendingapproval_modal .modal-body .apply_filter_btn .btn[disabled] {
    background: rgba(169, 173, 177, 1);
    color: #fff;
}

#confirmationModal.switch-btn-modal .modal-content > p {
    font-size: 18px;
    line-height: 22px;
}

#confirmationModal.switch-btn-modal .modal-content > div.d-flex {
    justify-content: center;
    gap: 62px;
}

#confirmationModal.switch-btn-modal .modal-content > div.d-flex button {
    min-width: 130px;
}

.custom-alert.error-popup-alert {
    background-color: rgba(255, 79, 34, 0.5) !important;
    border: 2px solid rgba(255, 79, 34, 1);
}

.pending-approval-wrepper .black-event-wrapper h4 {
    font-weight: 400;
    width: 445px;
    text-align: center;
}

.pending-approval-wrepper .black-event-wrapper .image_block_wrapper {
    position: relative;
}

.pending-approval-wrepper .black-event-wrapper .image_block_wrapper .tick_green_block {
    width: 35px;
    height: 35px;
    background: rgba(52, 199, 89, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -20px;
    bottom: -17px;
}

.teacher-list-table.student-table-data .table tbody > tr > td > a {
    color: #333;
}

.register-form-box .info-tooltip {
    border: 2px solid rgba(121, 176, 226, 1);
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 14px 8px;
    border-radius: 4px;
    background: rgba(240, 248, 255, 1);
    max-height: 70px;
}

.register-form-box .info-tooltip p > span {
    font-size: 12px;
    font-weight: 500;
    font-family: "Roboto", serif;
    color: rgba(63, 63, 63, 1);
    line-height: 20px;
}

.register-form-box .info-tooltip p:first-of-type {
    display: flex;
    gap: 5px;
    margin-bottom: 0px;
}

.register-form-box .info-tooltip p:last-of-type {
    font-size: 11px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Roboto", serif;
    color: rgba(63, 63, 63, 1);
    padding-left: 24px;
    margin: 0;
}

.register-form-box #add-school-btn {
    margin-top: 0;
}

.loginRegister-container .form-group#school-dropdown {
    margin-bottom: 16px;
}

.photo-upload-container {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
}

.upload-label {
    cursor: pointer;
    display: block;
}

.upload-label i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.photo-preview {
    margin-bottom: 15px;
    text-align: center;
}

.remove-photo {
    margin-top: 10px;
}

.view-photo-btn {
    padding: 0;
    vertical-align: baseline;
}

/* pending-approval-ui end*/


.input_box_block .input_box_content.ticket_price input[type="number"]::-webkit-outer-spin-button,
.input_box_block .input_box_content.ticket_price input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.event-creator-block .sponsor_user_detail .sponsor_container .sponsor_user_block {
    margin-bottom: 15px;
}

.event-creator-block .sponsor_user_detail .sponsor_container .sponsor_user_block .sponsor_user_content a {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    margin-bottom: 8px;
    display: inline-block;
}

.event-creator-block .sponsor_user_detail .sponsor_container .sponsor_user_block .sponsor_user_content a > img {
    margin-left: 15px;
}

.add_new_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.add_new_block > div {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
}

.add_new_block > button {
    background: 0;
    border: 2px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    line-height: 16px;
}

.voting-poll-form .input-container {
    align-items: center;
}

.voting-poll-form .input-container .input_image_block > img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
}

.voting-poll-form .input-container .input_image_block {
    margin: 0;
    background: rgba(35, 52, 66, 1);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.voting-poll-form .input-container .input_image_block input {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.voting-poll-form .input-container .input_image_block.image_uploaded {
    background: none;
    padding: 0;
}

.voting-poll-form .input-container .input_image_block.image_uploaded > img {
    width: 72px;
    height: 72px;
}

.student-list-heading-block.d-flex {
    justify-content: space-between;
    align-items: center;
}

.teacher_tab_content .dataTables_length,
.teacher_tab_content .dataTables_filter {
    display: none;
}

.teacher_tab_content table.dataTable thead .sorting_asc {
    background-image: none !important;
}

.teacher_tab_content table.dataTable thead .sorting_asc:after {
    display: none;
}

/* setting tab css */
.setting_blocks_heading h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
    color: #000;
    margin-bottom: 42px;
    font-family: "Roboto", serif;
}

.setting_tab_wrapper .setting-tab-content > a {
    border: 1px solid rgba(17, 49, 64, 1);
    border-radius: 8px;
    width: 190px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.setting_tab_wrapper .setting-tab-content {
    display: flex;
    column-gap: 90px;
    flex-wrap: wrap;
    row-gap: 45px;
}

.setting_tab_wrapper.dashboard-inner-content {
    width: 75%;
}

.setting_tab_wrapper .setting-tab-content > a > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.setting_tab_wrapper .setting-tab-content > a > div > p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(17, 49, 64, 1);
    font-family: "Roboto", serif;
    margin: 0;
}

.help-modal-block .modal-content,
.contact-modal-block .modal-content,
.user_withdraw_modal .modal-content,
.user_registered_modal .modal-content {
    max-width: 497px;
    border-radius: 8px;
    box-shadow: none !important;
    border: 0;
}

.help-modal-block .modal-dialog-centered .modal-body,
.user_withdraw_modal .modal-dialog-centered .modal-body {
    text-align: center;
    padding: 48px 32px;
}

.help-modal-block .modal-dialog-centered .modal-body .modal-heading > h2,
.user_withdraw_modal .modal-dialog-centered .modal-body .modal-heading > h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 37px;
    color: #FF4F22;
    margin: 0 0 32px;
}

.help-modal-block .modal-content,
.contact-modal-block .modal-content,
.user_withdraw_modal .modal-content {
    max-width: 497px;
    border-radius: 8px;
    box-shadow: none !important;
    border: 0;
}

.help-modal-block .modal-content > p,
.user_withdraw_modal .modal-content > p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 54px;
    color: #090909;
}

.help-modal-block .modal-dialog-centered,
.contact-modal-block .modal-dialog-centered,
.user_withdraw_modal .modal-dialog-centered,
.user_registered_modal .modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    width: 100%;
}

.help-modal-block .modal-content .d-flex,
.user_withdraw_modal .modal-content .d-flex {
    justify-content: center;
    gap: 60px;
}

.help-modal-block .modal-content .d-flex .btn-custom-default,
.user_withdraw_modal .modal-content .d-flex .btn-custom-default {
    min-width: 130px;
    margin: 0;
}

.help-modal-block .modal-content .d-flex .btn-orange {
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 150px;
    justify-content: center;
}

.help-modal-block .modal-content .d-flex .btn-orange img {
    filter: brightness(0) invert(1) !important;
}

.help-modal-block .modal-content .d-flex .btn-orange:hover img {
    filter: brightness(0) saturate(100%) sepia(1) hue-rotate(-15deg) saturate(600%) !important;
}

.privacy_policy_wrapper .setting_blocks_heading h2,
.term_condition_wrapper .setting_blocks_heading h2,
.change_password_wrapper .setting_blocks_heading h2 {
    font-weight: 500;
}

.privacy-policy-content > div {
    margin-bottom: 22px;
}

.privacy-policy-content > div > h3 {
    font-size: 16px;
    font-weight: 500;
    color: rgba(17, 49, 64, 1);
    font-family: "Roboto", serif;
    margin: 0 0 4px 0;
}

.privacy-policy-content > div > p {
    color: rgba(169, 173, 177, 1);
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", serif;
    margin: 0;
}

.privacy-policy-content > div > ul {
    padding-left: 30px;
}

.privacy-policy-content > div > ul > li {
    color: rgba(169, 173, 177, 1);
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", serif;
    margin: 0;
}

.change_password_wrapper .change_pass_block {
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    width: 450px;
}

.change_password_wrapper .change_pass_block .change-password-logo {
    margin-bottom: 48px;
}

.change_password_wrapper .change_pass_block form {
    height: 100%;
    display: inline-block;
    width: 100%;
}

.change_password_wrapper .change_pass_block form input {
    border: 1px solid #f1f1f1;
    padding: 10px;
    height: 40px;
    box-shadow: none;
    color: #000;
    font-weight: 400;
    border-radius: 8px !important;
}

.change_password_wrapper .form-group.password-field {
    position: relative;
    margin-bottom: 30px;
}

.change_password_wrapper .form-group.password-field i {
    position: absolute;
    right: 12px;
    bottom: 12px;
    cursor: pointer;
}

.change_password_wrapper .form-group.password-field label {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", serif;
    line-height: 20px;
}

.change_password_wrapper .form-group.password-field span {
    position: absolute;
    padding: 4px 0;
    font-size: 12px;
}

.change_password_wrapper .btn-submit button {
    background: #FF4F22;
    color: #fff;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 16px;
    line-height: 20px;
    border: 0;
    margin-top: 40px;
}

.dashboard-container .topbar .d-flex > div.user-block > span.user_profile_btn a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.add_note_wrapper img,
.add_note_img img {
    filter: brightness(0) saturate(100%) sepia(1) hue-rotate(-15deg) saturate(600%) !important;
}

.add_note_img {
    display: flex;
    align-items: center;
    gap: 4px;
}

.form_group_row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.form_group_row > div {
    width: auto;
    flex: 1;
}

.contact-modal-block .modal-header,
.user_registered_modal .modal-header {
    padding: 32px 22px;
    background-color: #113140;
    position: relative;
    border-radius: 13px 13px 0 0;
}

.contact-modal-block .modal-header h4,
.user_registered_modal .modal-header h4 {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    font-family: "Roboto", serif;
    margin: 0;
}

.contact-modal-block .modal-header button.close,
.user_registered_modal .modal-header button.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    margin: 0;
}

.contact-modal-block .modal-content,
.user_registered_modal .modal-content {
    border-radius: 16px 16px 8px 8px;
}

.contact-modal-block .modal-body,
.user_registered_modal .modal-body {
    width: 477px;
    padding: 24px 16px;
}

.contact-modal-block .modal-body .modal-content > p,
.user_registered_modal .modal-body > p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 20px;
    color: #090909;
}

.user_registered_modal .modal-body > p:first-of-type {
    margin-bottom: 4px;
}

.contact-modal-block .modal-body .modal-content textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    padding: 10px;
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
}

.contact-modal-block .modal-body .modal-content .send-btn {
    justify-content: center;
}

.user_registered_modal .modal-body .d-flex {
    justify-content: center;
    gap: 30px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

.user_registered_modal .modal-body .d-flex .btn-custom-default {
    min-width: 130px;
    margin: 0;
    color: #113140;
    background-color: #fff;
    border-color: #113140;
    border-radius: 16px;
    width: auto;
}

.user_registered_modal .modal-body .d-flex .btn-orange {
    background: #FF4F22;
    color: #fff;
    padding: 8px 42px;
    font-weight: 500;
    border-radius: 16px;
    line-height: 20px;
    border: 1px solid transparent;
}

.user_registered_modal .modal-body .d-flex .btn-orange:hover {
    background-color: #fff;
    color: #113140;
    border: 1px solid #113140;
}

.user_registered_modal .modal-body .d-flex .btn-custom-default:hover {
    background: #FF4F22;
    color: #fff;
    border: 1px solid transparent;
}

.user_registered_modal .modal-body .d-flex .btn {
    flex: 1;
}

.contact-modal-block .modal-body .modal-content .send-btn > a {
    min-width: 170px;
}

.contact-modal-block .modal-body .modal-content .send-btn {
    justify-content: center;
    gap: 20px;
}

.custom-alert.error-alert {
    background-color: rgb(222 78 59 / 90%) !important;
    border: 2px solid rgb(222 78 59 / 90%);
    color: #fff !important;
}

.custom-alert.error-alert .custom_alert_close img {
    filter: brightness(0) invert(1) !important;
}

.custom-alert.info-alert {
    background-color: rgb(229 160 0 / 90%) !important;
    color: #ffff !important;
    border: 2px solid transparent;
}

.custom-alert.info-alert .custom_alert_close img {
    filter: brightness(0) invert(1) !important;
}

.user_withdraw_modal .modal-content > p:first-of-type {
    margin-bottom: 0;
}

.user_registered_modal .modal-header button.close {
    opacity: 1;
}

.btn-orange {
    background: #FF4F22;
    color: #fff;
    padding: 8px 42px;
    font-weight: 500;
    border-radius: 16px;
    line-height: 20px;
    border: 1px solid transparent;
}

.btn-custom-default {
    color: #113140;
    background-color: #fff;
    border-color: #113140;
    border-radius: 16px;
    margin-left: 24px;
}

/* panal dashboard css */
.panal-dashboard-wrapper .dashboard_balance_block {
    display: flex;
    align-items: center;
    background: rgba(255, 79, 34, 1);
    padding: 26px 48px;
    border-radius: 8px;
    gap: 20px;
    margin-bottom: 38px;
}

.panal-dashboard-wrapper .dashboard_balance_block p {
    font-size: 20px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: #fff;
    margin: 0;
}

.panal-dashboard-wrapper .dashboard_balance_block div > span {
    font-size: 40px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: #fff;
}

.panal-dashboard-wrapper .dashboard_balance_block img {
    filter: brightness(0) invert(1) !important;
}

.dashboard_event_detail {
    padding: 20px 60px 20px 28px;
    border-radius: 16px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-bottom: 38px;
    background-color: rgba(17, 49, 64, 0.5) !important;
}

.dashboard_event_left_block .dashbord-status-button a {
    border-radius: 5px;
    margin-bottom: 18px;
}

.dashboard_event_left_block .dasevent-content-detail p {
    font-size: 16px;
    font-weight: 600;
    font-family: "Roboto", serif;
    color: #fff;
    display: flex;
    gap: 16px;
    align-items: center;
}

.dashboard_event_left_block .dasevent-content-detail p > img {
    filter: brightness(0) invert(1) !important;
}

.dashboard_event_right_block .dashEvent_view_content h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: rgba(24, 24, 24, 1);
    font-family: "Roboto", serif;
    margin-bottom: 16px;
}

.dashboard_event_right_block .dashEvent_view_content {
    padding: 19px 18px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    max-width: 448px;
}

.dashboard_event_right_block .dashEvent_view_content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(9, 9, 9, 1);
    font-family: "Roboto", serif;
    margin-bottom: 16px;
}

.dashboard_event_right_block .dashEvent_view_content a {
    display: block;
    text-align: center;
    margin: 0 25px;
    line-height: 30px;
    font-weight: 600;
    font-size: 16px;
    font-family: "Roboto", serif;
}

.dashboard_event_detail > div.d-flex {
    gap: 80px;
    justify-content: space-between;
}

.panal-dashboard-wrapper .dashCreate_event_block {
    background: rgba(17, 49, 64, 1);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 38px;
}

.panal-dashboard-wrapper .dashCreate_event_block h4 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    font-family: "Roboto", serif;
    margin-bottom: 28px;
}

.panal-dashboard-wrapper .dashCreate_event_block p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    font-family: "Roboto", serif;
    margin-bottom: 0px;
}

.dashCreate_event_block a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.dashApproval_block {
    display: flex;
    gap: 40px;
}

.dashApproval_block .dashApproval_item {
    border: 1px solid rgba(255, 79, 34, 1);
    padding: 16px;
    border-radius: 16px;
    flex: 1;
}

.dashApproval_block .dashApproval_item h4 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    font-family: "Roboto", serif;
    margin-bottom: 32PX;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(32, 32, 32, 1);
}

.dashApproval_block .dashApproval_item p {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    font-family: "Roboto", serif;
}

.dashApproval_block .dashApproval_item p > a {
    color: #333;
}

.dashApproval_block .dashApproval_item a.pending_btn {
    background: rgba(245, 160, 31, 1);
    color: #fff;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", serif;
    padding: 7px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashApproval_block .dashApproval_item a.pending_btn span {
    line-height: normal;
}

.dashApproval_block .dashApproval_item .d-flex {
    justify-content: space-between;
    align-items: center;
}

#filterModal .approval_filter_item select {
    border: 1px solid #f1f1f1;
    padding: 10px;
    height: 40px;
    box-shadow: none;
    color: #000;
    font-weight: 400;
    border-radius: 8px !important;
    width: 100%;
}

#filterModal .approval_filter_block {
    margin-bottom: 16px;
}

#filterModal .approval_filter_block h5 {
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", serif;
    color: #000;
    line-height: 22px;
}

/* message tabs css start */
.dashboard-inner-content.message_tabs_container {
    margin: 82px 0 0;
    height: calc(100vh - 82px);
}

.message_tabs_container .message-header-wrapper {
    align-items: center;
    gap: 15px;
}

.message_tabs_container .message-header-wrapper > a {
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 0;
}

.message_tabs_container .message-header-wrapper > a > i {
    padding-right: 10px;
    font-size: 20px;
    color: #113140;
}

.message_tabs_container.message_tabs_lists {
    overflow: auto;
}

.message_name_wrapper {
    width: 50px;
    height: 50px;
    background: #ff7f00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", serif;
}

.message_tabs_container.message_tabs_lists a.list-group-item {
    justify-content: space-between;
}

.message_tabs_container.message_tabs_lists a.list-group-item .text-end {
    margin-top: auto;
}

.message_tabs_container.message_tabs_lists a.list-group-item div.gap-3 {
    gap: 15px;
}

.message_tabs_container.message_tabs_lists a.list-group-item h6 {
    font-size: 20px;
    color: #090909;
    margin: 0 0 5px;
}

.message_tabs_container.message_tabs_lists a.list-group-item p {
    margin: 0;
    color: #090909;
}

/* message tabs css end */
/* sidebar dropdown css start*/
.sidebar_dropdown_block > a {
    position: relative;
}

.sidebar_dropdown_block > a.active {
    color: #ff4f22;
    font-weight: 600;
}

.sidebar_dropdown_block > a > i {
    position: absolute;
    right: 0;
}

.sidebar_dropdown_block ul {
    display: none;
}

.sidebar_dropdown_block ul > li > a {
    font-size: 14px !important;
}

.sidebar_dropdown_block ul > li:first-of-type a {
    margin: 0;
    padding-bottom: 0 !important;
}

.dashboard-inner-content.message_tabs_container .tabs-heading {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-inner-content.message_tabs_container.message_tabs_lists .card {
    overflow-y: auto;
    height: calc(100vh - 200px);
}

.dashboard-container .sidebar .sidebar_dropdown_block ul {
    padding-left: 20px;
}

/* sidebar dropdown css end*/
.group_message_chat .card .card-header {
    background-color: #113140;
    border-bottom: none;
    padding: 15px 20px;
    color: #fff;
    justify-content: space-between;
}

.group_message_chat .card .card-header span {
    font-size: 24px;
    font-family: "Roboto", serif;
}

.group_message_chat .card .direct-chat-messages {
    height: calc(100vh - 255px);
    display: flex;
    flex-direction: column;
}

.group_message_chat .card .direct-chat-messages #messages-list {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.group_message_chat .card .direct-chat-messages .my-2 {
    margin: 10px 0;
}

.group_message_chat .card .direct-chat-messages .direct-chat-text > p {
    margin-bottom: 8px;
}

.group_message_chat .card .direct-chat-messages .direct-chat-timestamp {
    display: flex;
    justify-content: flex-end;
    font-size: 10px;
}

.group_message_chat .card .direct-chat-messages .direct-chat-msg.right .direct-chat-text {
    background: #113140;
    border: 1px solid #113140;
    margin: 5px 0 0 50px;
    color: #fff;
}

.group_message_chat .card .direct-chat-messages .direct-chat-msg.right .direct-chat-text {
    max-width: 80%;
    margin-left: auto !important;
}

.group_message_chat .card .direct-chat-messages .direct-chat-msg .direct-chat-text {
    max-width: 80%;
    width: max-content;
    margin-right: 50px !important;
}

.group_message_chat .right .direct-chat-text:before,
.group_message_chat .right .direct-chat-text:after {
    border-left-color: #113140;
}

.group_message_chat .message-input-container {
    padding: 10px 20px;
    background-color: #fff;
}

.group_message_chat .message-input-container .form-group.center {
    display: flex;
    align-items: center;
    border: 1px solid #113140;
    border-radius: 5px;
    padding: 0 10px 0 0;
}

.group_message_chat .message-input-container .form-group.center textarea {
    resize: none;
    border: 0;
    background: #fff;
    border-radius: 5px !important;
    color: #333;
    min-height: 40px;
    max-height: 80px;
}

.group_message_chat .message-input-container .form-group.center .input-group-append {
    display: flex;
    gap: 10px;
    align-items: center;
}

.group_message_chat .message-input-container .form-group.center .input-group-append i {
    font-size: 22px;
}

.group_message_chat .message-input-container .form-group.center .input-group-append button.btn {
    background: #ff7f00;
    border: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.group_message_chat .message-input-container .form-group.center .input-group-append button.btn svg {
    height: 20px;
    width: 20px;
    fill: #fff;
}

.group_message_chat .message-input-container #image-preview .position-relative {
    position: relative;
}

.group_message_chat .message-input-container #image-preview button.btn {
    border-radius: 50%;
    padding: 4px 8px;
    background-color: #ff4d4d;
    border: none;
    position: absolute;
    top: -6px;
    right: -11px;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* admin side css start */
.admin-box-header-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.admin-box-header-row .admin-box-header-items {
    flex-grow: 1;
}

.admin-box-header-row .admin-box-header-items.button_box {
    flex-basis: auto;
    flex-grow: initial;
}

.admin-box-header-row .admin-box-header-items.button_box .btn-group > a {
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    display: contents !important;
    padding: 0 !important;
    margin: 0;
}

table.dataTable th,
table.dataTable td {
    white-space: nowrap;
}

.check-request-content ul.nav-tabs {
    margin: 5px 10px;
}

section.content .box .box-body table.dataTable tbody td {
    padding: 10px 18px;
}

section.content .box .box-body .table {
    border: 0;
    margin-top: 0 !important;
}

section.content .box .box-body .dataTables_scrollBody {
    border-left: 1px solid #f4f4f4;
    border-right: 1px solid #f4f4f4;
}

section.content .box .box-body .dataTables_scrollHead {
    border: 1px solid #f4f4f4 !important;
    border-bottom: 0 !important;
}

.admin-action-btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.admin-action-btn .dropdown-menu {
    left: auto;
}

.dashboard-inner-content-block.admin-create-form .tabs-heading > h2 {
    margin-bottom: 0;
}

.create-group-popup.switch-btn-modal .modal-dialog-centered .modal-body .modal-heading > h2 {
    margin-bottom: 20px;
}

.create-group-popup.switch-btn-modal .modal-content > p {
    margin-bottom: 16px;
}

.create-group-popup.switch-btn-modal .modal-content .form-group {
    text-align: left;
}

.create-group-popup.switch-btn-modal .modal-content .form-group label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
}

.create-group-popup.switch-btn-modal .modal-content .form-group input {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    padding: 10px;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    height: 40px;
    margin-bottom: 3px;
}

.create-group-popup.switch-btn-modal .modal-content .modal-group-btn {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    line-height: 24px;
}

.create-group-popup.switch-btn-modal .modal-content .btn-custom-default {
    min-width: 120px;
}

.group_message_chat .card .card-header .add_user_block .btn {
    background: none;
    color: #fff;
    outline: 0;
    box-shadow: none;
}

.group_message_chat .card .card-header .add_user_block .btn > i {
    font-size: 22px;
}

.group_message_chat .card .add_user_block {
    position: relative;
}

.group_message_chat .card .add_user_block .dropdown-menu {
    left: auto;
    right: 0;
    background: #fff;
    border-color: #fff;
    padding: 0;
    margin: 0;
    border: 0;
}

.group_message_chat .card .add_user_block .dropdown-menu > li > a {
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.41px;
    color: #090909;
    font-family: "Roboto", serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

.group_message_chat .card .add_user_block .dropdown-menu > li > a:hover {
    background-color: #ff7f00;
    color: #fff;
}

#addmemberForm {
    display: flex;
    flex-direction: column;
}

.addMemberPopup.filter_pendingapproval_modal .modal-body form .sort_time.grade-options .form-check label:before {
    right: auto;
    left: 0;
}

.addMemberPopup.filter_pendingapproval_modal .modal-body form .sort_time.grade-options .form-check label {
    padding-left: 30px;
}

.addMemberPopup.filter_pendingapproval_modal .modal-body form .sort_time.grade-options .form-check input[type="radio"]:checked + label::before {
    right: auto;
    left: 0;
}

.addMemberPopup .student-lists-block ul li,
.groupInfoPopup .student-lists-block ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.addMemberPopup .student-lists-block ul li button,
.groupInfoPopup .student-lists-block ul li a {
    margin-left: auto;
}

.addMemberPopup .student-lists-block ul li .user_img,
.groupInfoPopup .student-lists-block ul li .user_img {
    background: rgba(169, 173, 177, 1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.addMemberPopup .student-lists-block ul li .user_img img,
.groupInfoPopup .student-lists-block ul li .user_img img {
    object-fit: cover;
}

.addMemberPopup .student-lists-block .search-box,
.groupInfoPopup .student-lists-block .search-box {
    margin-bottom: 12px;
}

.addMemberPopup .student-lists-block .search-box input,
.groupInfoPopup .student-lists-block .search-box input {
    width: 100%;
}

.groupInfoPopup .student-lists-block h6 {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    font-family: "Roboto", serif;
}

.groupInfoPopup .gropu_img {
    width: 50px;
    height: 50px;
    background: #ff7f00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto", serif;
    text-transform: uppercase;
}

.groupInfoPopup .group_detail_block h6 {
    font-size: 20px;
    color: #090909;
    margin: 0 0 5px;
}

.groupInfoPopup .group_detail_block p {
    margin: 0;
    color: #090909;
}

.groupInfoPopup .group_detail_block {
    gap: 15px;
}

/* ticket profile tabs css */
.ticket_profile_block .ticket_user_block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 44px;
}

.ticket_profile_block .ticket_user_block .check-in-btn {
    margin-left: auto;
    margin-right: 50px;
}

.ticket_profile_block .ticket_user_block .user_detail_block h5 {
    font-size: 24px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: rgba(0, 0, 0, 1);
    margin: 0 0 20px;
}

.ticket_profile_block .ticket_user_block .user_detail_block ul {
    list-style: none;
    padding: 0;
}

.ticket_profile_block .ticket_user_block .user_detail_block ul > li {
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: rgba(0, 0, 0, 1);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket_profile_block .ticket_detail_block {
    background: rgba(244, 246, 249, 1);
    border-radius: 16px;
    padding: 24px 48px 60px;
}

.ticket_profile_block .ticket_detail_block .ticket_event_heading {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 16px;
}

.ticket_profile_block .ticket_detail_block .ticket_event_heading > h4 {
    font-size: 24px;
    font-weight: 700;
    font-family: "Roboto", serif;
    color: rgba(0, 0, 0, 1);
    line-height: 20px;
}

.ticket_profile_block .ticket_detail_block .ticker_detail_inner p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: rgba(0, 0, 0, 1);
    line-height: 24px;
    margin-bottom: 20px;
}

.ticket_profile_block .ticket_detail_block .ticker_detail_inner {
    border-bottom: 1px solid rgba(169, 173, 177, 1);
    margin-bottom: 20px;
}

.ticket_profile_block .ticket_detail_block .ticker_member_detail p span:nth-child(2) {
    font-weight: 600;
}

.ticket_profile_block .ticket_detail_block .ticker_payment_detail h5 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto", serif;
    color: rgba(0, 0, 0, 1);
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ticket_profile_block .ticket_detail_block .ticker_payment_detail a {
    flex: 1;
    margin: 0;
}

.payment_detail_btn {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
}

.payment_detail_btn > a > img {
    margin-right: 5px;
}

.payment_detail_btn .btn-custom-default.btn-decline:disabled {
    background: rgba(169, 173, 177, 1);
}

.payment_detail_btn .btn-orange.btn-decline img {
    filter: brightness(0) invert(1) !important;
}

.payment_detail_btn .btn-custom-default.btn-decline:hover:disabled {
    border-color: rgba(169, 173, 177, 1);
    color: #fff;
}

.payment_detail_btn .btn-orange.btn-accept:hover img {
    filter: brightness(0) saturate(100%) !important;
}

.payment_detail_btn .btn-orange.btn-accept:hover {
    background: none;
}

.payment_detail_btn .btn-custom-default.comeSee_btn,
.payment_detail_btn .btn-custom-default.btn-decline {
    border-color: #FF4F22;
    color: #FF4F22;
    background: none;
}

.declineModal .d-flex button,
.comeSeeModal .d-flex button {
    width: 150px;
}

.acceptModal .d-flex {
    justify-content: center;
    gap: 20px;
}

.acceptModal .d-flex button {
    min-width: 130px;
}

.switch-btn-modal.declineModal .modal-content > p {
    margin-bottom: 30px;
}

.ticker_notes_detail .notes_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ticker_notes_detail .notes_heading h5,
.ticker_detail_wrapper h5 {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    font-family: "Roboto", serif;
    color: rgba(0, 0, 0, 1);
    line-height: 20px;
    margin: 0;
}

.ticker_detail_wrapper h5 {
    margin-bottom: 16px;
}

.ticker_notes_detail .notes_heading .add_note {
    display: flex;
    gap: 6px;
    align-items: center;
    cursor: pointer;
}

.ticker_notes_detail .notes_heading .add_note span {
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: rgba(0, 0, 0, 1);
}

.ticket_profile_block .ticket_btn_block {
    display: flex;
    justify-content: flex-end;
}

.ticket_profile_block .ticket_btn_block .btn-custom-default {
    min-width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.refundPopup.filter_pendingapproval_modal .modal-body {
    width: 350px;
}

.refundPopup .input_box_block .form-check input {
    display: none;
}

.refundPopup .input_box_block .form-check label {
    position: relative;
    padding-left: 30px;
}

.refundPopup .input_box_block .form-check label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    right: auto;
    top: -1px;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    background-color: #fff;
    border-radius: 50%;
}

.refundPopup .input_box_block .form-check input[type="radio"]:checked + label::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 10px;
    left: 5px;
    right: auto;
    top: 4px;
    border-radius: 3px;
    background-color: #FF4F22;
    border-radius: 50%;
}

.refundPopup .input_box_block .input_box_content span {
    color: rgba(169, 173, 177, 1);
    font-weight: 600;
}

.refundPopup .input_box_block .input_box_content input.form-control {
    margin: 0;
    color: rgba(169, 173, 177, 1);
    font-size: 16px;
    font-weight: 600;
}

.refundPopup .refund_btn button {
    min-width: 200px;
    margin-left: 0;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 16px;
}

.refundPopup .refund_btn button.btn-orange:disabled {
    background: rgba(169, 173, 177, 1);
}

/* .refundPopup .input_box_block .input_box_content{
    pointer-events: none;
} */
.refundPopup .input_box_block.active-refund .input_box_content {
    pointer-events: initial;
}

.refundPopup .input_box_block.active-refund .input_box_content span,
.refundPopup .input_box_block.active-refund .input_box_content input.form-control {
    color: rgba(17, 49, 64, 1);
}

.refundConfirmationModal .modal-body {
    max-height: 500px;
}

.refundConfirmationModal .modal-content h6 {
    font-family: "Roboto", serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(9, 9, 9, 1);
}

.refundConfirmationModal.switch-btn-modal .modal-content > p {
    font-size: 16px;
    font-family: "Roboto", serif;
}

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

.refundConfirmation_btn_block button {
    min-width: 200px;
}

.addMemberPopup .search-box .select2-container {
    width: 100% !important;
}

.addMemberPopup .search-box .select2-container .select2-selection {
    min-height: 30px;
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
}

.addMemberPopup .search-box .select2-container .select2-selection .select2-selection__rendered {
    max-height: 60px;
    overflow-y: auto;
    padding: 10px;
}

.addMemberPopup .search-box .select2-container .select2-selection .select2-selection__rendered > li.select2-search {
    margin: 0;
}

.addMemberPopup .search-box .select2-container .select2-selection .select2-selection__rendered > li > input {
    height: auto;
    margin: 0;
}

.addMemberPopup .search-box .select2-container .select2-selection .select2-selection__rendered > li.select2-selection__choice {
    margin-bottom: 0;
    background: #113140;
    color: #fff;
    border-color: #113140;
    padding: 2px 4px;
}

.addMemberPopup .search-box .select2-container .select2-selection .select2-selection__rendered > li.select2-selection__choice .select2-selection__choice__remove {
    color: #fff;
}

.addMemberPopup .search-box .select2-container.select2-container--focus .select2-selection .select2-selection__rendered > li.select2-search input {
    margin-top: 9px;
}

.select2-container .select2-dropdown {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
}

.addMemberPopup .search-box textarea {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

#addmemberForm .student-lists-block ul {
    max-height: 150px;
    overflow-y: auto;
}

.switch-btn-modal.awardTicketModal .modal-dialog.modal-dialog-centered {
    width: fit-content;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inherit;
    min-height: auto;
}

.switch-btn-modal.awardTicketModal .modal-content {
    min-width: 480px;
    max-width: 480px;
}

.switch-btn-modal.awardTicketModal .modal-inner-content .form-group label {
    display: block;
    text-align: left;
}

.switch-btn-modal.awardTicketModal .modal-inner-content .select2-container {
    width: 100% !important;
    text-align: left;
}

.switch-btn-modal.awardTicketModal .modal-inner-content .select2-container .select2-selection {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    height: 40px;
    margin-bottom: 3px;
}

.switch-btn-modal.awardTicketModal .modal-inner-content .select2-container .select2-selection .select2-selection__rendered {
    line-height: 40px;
}

.switch-btn-modal.awardTicketModal .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.switch-btn-modal.awardTicketModal .award_button_block button {
    margin: 0;
    min-width: 130px;
}

.switch-btn-modal.awardTicketModal .award_button_block {
    display: inline-flex;
    gap: 30px;
    margin-top: 30px;
}

.comeSeeModal .modal-content .d-flex,
.declineModal .modal-content .d-flex,
.switch-btn-modal.updateNoteModal .d-flex {
    gap: 30px;
    justify-content: center;
}

.comeSeeModal .modal-content .d-flex .btn,
.declineModal .modal-content .d-flex .btn,
.switch-btn-modal.updateNoteModal .modal-content .d-flex .btn {
    width: 150px;
    margin: 0;
}

.switch-btn-modal.updateNoteModal .modal-content {
    min-width: 350px;
}

.switch-btn-modal.updateNoteModal .modal-content label {
    display: block;
    text-align: left;
}

.switch-btn-modal.updateNoteModal .modal-content textarea {
    width: 100%;
    margin-bottom: 15px;
    min-height: 80px;
    padding: 5px;
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    color: #000;
    font-size: 14px;
}

.dashboard-container.admin-dashboard-wrapper .left-side-container {
    margin-left: 230px;
    transition: transform .3s ease-in-out, margin .3s ease-in-out;
    height: calc(100vh - 100px);
}

.sidebar-mini.sidebar-collapse .dashboard-container.admin-dashboard-wrapper .left-side-container {
    margin-left: 50px;
}

.dashboard-container.admin-dashboard-wrapper .dashboard-inner-content .tabs-heading > h2 {
    margin: 0;
}

.loginRegister-container .form-group input#school-name-input {
    padding-right: 30px;
}

.event-list-table.list-view .dataTables_wrapper table tbody > tr > td > a {
    padding: 4px 5px;
}

.pending-approval-wrepper .teacher-list-table .table thead th:first-child label {
    width: 25px !important;
}

.pending-approval-wrepper .teacher-list-table .table > tbody > tr > td label.custom_checkbox_block {
    width: 25px !important;
}

.pending-approval-wrepper .teacher-list-table .checkbox-center label > span::before {
    left: 20px;
}

.teacher-list-table .checkbox-center label > input[type="checkbox"]:checked + span::before {
    left: 32px;
}

.student_profile_wrapper .user-detail-block .user_detail_block_wrapper {
    width: 75%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.student_detail_wrapper .student_profile_wrapper .user-detail-block .user_detail_block_wrapper {
    width: 100%;
    gap: 20px;
}

.student_detail_wrapper .student_profile_wrapper .user-detail-block > div > ul > li {
    display: flex;
    align-items: center;
}

.student_profile_wrapper .user-detail-block .user_detail_block_wrapper .student_button_wrapper {
    margin-top: 24px;
}

.student_profile_wrapper .user-detail-block > div > ul > li > span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 200px;
}

.student_profile_tabs .student_profile_wrapper .user-detail-block > div > ul {
    display: grid;
}

.student_profile_tabs .student_profile_wrapper .user-detail-block > div > ul > li:first-of-type {
    grid-column: 1 / -1;
}

.student_profile_tabs .student_profile_wrapper .user-detail-block .user_detail_block_wrapper {
    grid-template-columns: 1fr;
}

.edit_poll_wrapper .select2-container .select2-selection--single,
.create_poll_wrapper .select2-container .select2-selection--single {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    height: 40px;
}

.edit_poll_wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.create_poll_wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.edit_poll_wrapper .select2-container--default .select2-selection--single .select2-selection__arrow,
.create_poll_wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.teacher_tab_wrapper .teacher-list-table table tbody tr > td > a,
.teacher_tab_wrapper .teacher-list-table table tbody tr > td {
    color: rgba(9, 9, 9, 1);
}

#gradeLevelModal.student_profile_modal .modal-body h2,
#gradeLevelModal.student_profile_modal .modal-body p {
    color: #090909;
}

.student_tab_wrapper table.table {
    border: 0;
}

.customize_upload_wrapper .photo_upload_block .file_upload_wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(35, 52, 66, 1);
    border-radius: 4px;
}

.customize_upload_wrapper .photo_upload_block .file_upload_wrapper #uploaded-image {
    display: none;
}

.customize_upload_wrapper .photo_upload_block .file_upload_wrapper input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.customize_upload_wrapper {
    display: flex;
    flex-wrap: wrap;
}

.customize_upload_wrapper .file-upload-preview .uploaded-image-wrapper {
    margin-right: 20px;
}

.customize_upload_wrapper p {
    color: #000;
    font-size: 16px;
    margin-bottom: 16px;
    flex-basis: 100%;
}

.customize_upload_wrapper .file-upload-preview .uploaded-image-wrapper img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
}

.customize_upload_wrapper .file-upload-preview .uploaded-image-wrapper {
    position: relative;
}

.customize_upload_wrapper .file-upload-preview .uploaded-image-wrapper .remove-image {
    position: absolute;
    right: -10px;
    top: -8px;
    background: #FF4F22;
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    text-align: center;
    line-height: 25px;
}

.customize_event_color {
    margin-top: 30px;
}

.customize_event_color > p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.customize_event_color .panel-default {
    border-color: #f1f1f1;
    box-shadow: none;
}

.customize_event_color .panel-default .panel-heading {
    background: none;
    border: 0;
}

.customize_event_color .panel-default .panel-heading a {
    display: block;
    color: #000;
    font-size: 18px;
    font-family: "Roboto", serif;
    font-weight: 400;
    position: relative;
}

.customize_event_color .panel-default .panel-heading a:after {
    content: "\f106";
    font: normal normal normal 14px / 1 FontAwesome;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.3s;
}

.customize_event_color .panel-default .panel-heading a.collapsed::after {
    content: "\f107";
}

.customize_event_block {
    display: none;
}

.customize_event_block .static_color_select .color-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

.customize_event_block .static_color_select {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.customize_event_block .static_color_select .color-circle.selected {
    border: 1px solid #ff4f22;
    transform: scale(1.3);
    transition: transform 0.2s;
}

.customize_event_color .custom_color_wrapper .color_selector_heading > p {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.color_selector_heading {
    display: inline-block;
}

.custom_color_inner_wrapper .pickr {
    display: none;
}

.custom_color_inner_wrapper .pcr-app {
    transition: opacity .3s;
    visibility: visible;
    opacity: 1;
    padding: 0;
    box-shadow: none;
    width: 300px;
    max-width: 100%;
}

.custom_color_inner_wrapper .pcr-app[data-theme=nano] .pcr-selection {
    height: 230px;
}

.custom_color_inner_wrapper .pcr-app .pcr-interaction {
    display: none;
}

.custom_color_inner_wrapper .pcr-app .pcr-swatches {
    margin: 0;
}

.custom_color_inner_wrapper {
    display: none;
    gap: 20px;
    align-items: center;
}

.custom_color_inner_wrapper .custom_color_value {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.custom_color_inner_wrapper .custom_color_value select,
.custom_color_inner_wrapper .custom_color_value input {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    padding: 10px;
    font-size: 14px;
    background: none;
    max-width: 190px;
    min-width: 190px;
    box-shadow: none;
    outline: 0;
}

.custom_color_inner_wrapper .pcr-app[data-theme=nano] .pcr-selection .pcr-color-chooser {
    grid-area: 2 / 1 / 4 / 1;
}

.custom_color_inner_wrapper .pcr-app[data-theme=nano] .pcr-selection .pcr-color-preview {
    grid-area: 2 / 2 / 2 / 2;
}

.custom_color_inner_wrapper .pcr-app[data-theme=nano] .pcr-selection {
    grid-template-columns: 4fr 1fr;
}

.custom_color_inner_wrapper.show {
    display: flex !important;
}

.event_detail_wrapper {
    width: calc(100vw - 450px);
}

.time-wrapper {
    position: relative;
}

.time-wrapper .fa-clock-o {
    position: absolute;
    right: 15px;
    top: 38px;
    pointer-events: none;
}

.time-wrapper .time-picker::placeholder {
    color: #000;
}

.time-wrapper .flatpickr-calendar {
    top: auto !important;
    left: 0 !important;
    width: 100%;
}

.time-wrapper .flatpickr-calendar.hasTime .flatpickr-time {
    border-top: 0;
}

.time-wrapper .flatpickr-calendar.hasTime .flatpickr-time input {
    border: 0;
}

.time-wrapper .flatpickr-calendar.hasTime .flatpickr-time input:hover,
.time-wrapper .flatpickr-calendar.hasTime .flatpickr-time input:focus {
    background: none;
}

.time-wrapper .flatpickr-calendar.hasTime .flatpickr-time .numInputWrapper:hover {
    background: none;
}

.event_details_wrapper .event_detail_block .event_items.events_attendance p {
    word-break: break-all;
}

.event_details_wrapper .event_detail_block .event_items.events_attendance,
.event_details_wrapper .event_detail_block .event_items.event_link {
    gap: 20px;
}

.event_details_wrapper .event_detail_block .event_items.event_link p > span,
.event_details_wrapper .event_detail_block .event_items.events_attendance p > span {
    white-space: nowrap;
}

.event_balance_block {
    display: flex;
    align-items: center;
    background: rgba(255, 79, 34, 1);
    padding: 10px 15px;
    border-radius: 8px;
    gap: 15px;
    margin-bottom: 0px;
    width: auto;
}

.event_balance_block img {
    filter: brightness(0) invert(1) !important;
}

.event_balance_block div > span {
    font-size: 24px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: #fff;
}

.event_balance_block p {
    font-size: 20px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: #fff;
    margin: 0;
}

.events-tabs .event_detail_wrapper .tabs-heading {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.eventdetail_table_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.eventdetail_table_heading .tabs-heading {
    padding-top: 0;
}

.eventdetail_table_heading .tabs-heading h3 {
    margin: 0;
}

.no_of_tickets_container {
    position: relative;
}

.no_of_tickets_container span.text-danger {
    position: absolute;
    left: 0;
    bottom: -13px;
    font-size: 14px;
    color: #a94442;
}

.event_details_wrapper .event_detail_block .event_items.event_link p.event_url {
    word-break: break-all;
}

.panal-dashboard-wrapper .dashboard_balance_block > button {
    margin-left: auto;
    color: rgba(17, 49, 64, 1);
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 16px;
    outline: 0;
    box-shadow: none;
    line-height: 18px;
    padding: 8px 18px;
    font-size: 15px;
}

#requestAChequeModal .form-group.checkRequestSelectEvent label {
    display: block;
    text-align: left;
}

#requestAChequeModal .form-group.checkRequestSelectEvent .select2-selection {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    height: 40px;
    margin-bottom: 3px;
    align-content: center;
}

#requestAChequeModal .form-group.checkRequestSelectEvent .select2-selection .select2-selection__rendered {
    ine-height: 40px;
}

#requestAChequeModal .form-group.checkRequestSelectEvent .select2-container {
    width: 100% !important;
}

#requestAChequeModal .form-group.checkRequestSelectEvent .select2-selection .select2-selection__arrow {
    height: 40px;
}

.exclusive_event_check {
    display: flex;
    align-items: center;
    max-width: 50%;
    justify-content: space-between;
}

@media (min-width: 767px) and (max-width: 950px) {
    .dataTables_wrapper .dataTables_paginate .paginate_button a {
        font-size: 12px;
        padding: 6px 8px;
    }
}

@media (max-width: 1550px) {
    .dashApproval_block .dashApproval_item .d-flex {
        flex-wrap: wrap;
        gap: 20px;
    }

    .dashApproval_block .dashApproval_item h4 {
        font-size: 20px;
    }

}

@media (max-width: 1500px) {
    .voting-block-section .voting-poll-form form #selected-poll-text {
        max-width: 200px;
    }
}

@media (max-width: 1400px) {
    .dashApproval_block {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 1300px) {
    .dashApproval_block .dashApproval_item {
        flex: auto;
    }

    .panal-dashboard-wrapper .dashCreate_event_block div:last-child {
        margin-bottom: auto;
    }

    .student_profile_tabs .student_profile_wrapper .user-detail-block .user_detail_block_wrapper {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .panal-dashboard-wrapper .dashCreate_event_block {
        flex-direction: column;
        gap: 25px;
    }

    .panal-dashboard-wrapper .dashCreate_event_block h4 {
        line-height: 32px;
    }

    .event-section-1 {
        width: 80%;
    }

    .student_profile_wrapper .user-detail-block .user_detail_block_wrapper {
        width: 100%;
    }
}

@media (max-width: 1140px) {
    .event_detail_wrapper {
        width: calc(100vw - 350px);
    }
}

@media (max-width: 1100px) {
    .dashboard_event_detail > div.d-flex {
        gap: 40px;
        flex-wrap: wrap;
    }

    .event-section-2, .event-section-3, .event-section-4 {
        padding-left: 0;
    }

    .event_detail_wrapper {
        width: calc(100vw - 250px);
    }
}

@media (max-width: 992px) {
    .events-tabs .dashboard-inner-content .tabs-heading > h2 {
        margin-bottom: 0;
    }

    .event-grid-block.grid-view .event-grid-inner-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .pending-approval-wrepper .table-header-dropdown ul.dropdown-menu {
        left: auto;
    }

    .event_detail_wrapper {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .exclusive_event_check {
        max-width: 100%;
    }

    .admin-box-header-row {
        flex-direction: column;
    }

    .admin-box-header-row .admin-box-header-items {
        width: 100%;
    }

    .admin-box-header-row .admin-box-header-items.button-filter label {
        display: none;
    }

    .dashboard_event_right_block .dashEvent_view_content {
        max-width: 100%;
    }

    .dashboard_event_right_block {
        width: 100%;
    }

    .dashboard_event_detail {
        padding: 20px 15px;
    }

    .register-form-box .info-tooltip {
        margin-bottom: 15px;
        max-height: 80px;
    }

    .event-section-1 {
        width: 100%;
    }

    .entry_details_block {
        width: 100%;
    }

    .create_entry_wrapper .create_entry_block {
        gap: 30px;
    }

    .dashboard-inner-content {
        padding: 0 15px !important;
    }

    .voting-block-section .voting-poll-form form #selected-poll-text {
        max-width: 130px;
    }
}

@media screen and (max-width: 640px) {
    .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
        text-align: left !important;
    }
}

@media screen and (max-width: 420px) {
    .dataTables_wrapper .dataTables_paginate .paginate_button a {
        font-size: 12px;
        padding: 6px 8px;
    }
}

/* admin side css end */

.custom_pagination_wrapper > nav > div:first-of-type {
    display: none;
}

.custom_pagination_wrapper > nav > div:last-of-type {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.custom_pagination_wrapper > nav > div:last-of-type > div > span {
    display: flex;
    align-items: center;
}

.custom_pagination_wrapper > nav > div:last-of-type > div > p {
    margin: 0;
}

.custom_pagination_wrapper {
    margin-top: 30px;
}

.custom_pagination_wrapper > nav > div:last-of-type > div > span svg {
    width: 35px;
    height: 35px;
}

.custom_pagination_wrapper > nav > div:last-of-type > div > span > span:first-of-type {
    display: inline-block;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_pagination_wrapper > nav > div:last-of-type > div > span > span:first-of-type > span {
    display: flex;
    align-items: center;
}

.custom_pagination_wrapper > nav > div:last-of-type > div > span > a[rel="next"] {
    display: inline-block;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_pagination_wrapper > nav > div:last-of-type > div > span > a {
    border: 1px solid #ddd;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_pagination_wrapper > nav > div:last-of-type > div > span > span {
    border: 1px solid #ddd;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voting-block-section.create_poll_wrapper .form-group select.form-control {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    height: 40px;
}

.custom_pagination_wrapper > nav > div:last-of-type > div > span > span[aria-current="page"] {
    background-color: #337ab7;
    border-color: #337ab7;
    color: #fff;
}

.custom_pagination_wrapper > nav > div:last-of-type > div span[aria-disabled="true"] span[aria-hidden="true"] {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
}

.custom_pagination_wrapper > nav > div:last-of-type > div span[aria-disabled="true"] span[aria-hidden="true"] svg {
    fill: #ddd;
}

.events_tab_item.event-grid-item p.event-grid-des {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.events_tab_item.event-grid-item .event-grid-heading h6 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.events_tab_item.event-grid-item .event-grid-img .no-image {
    min-height: 160px;
    background: rgba(17, 49, 64, 0.5) !important;
    border-radius: 4px;
}

.events_tab_item.event-grid-item .event-grid-img img {
    min-height: 160px;
}

.ticket_price_unit {
    position: relative;
}

.ticket_price_unit span.text-danger {
    position: absolute;
    left: 0;
    bottom: -13px;
    font-size: 14px;
    color: #a94442;
}

/* .site_loader {
    width: 120px;
    height: 20px;
    -webkit-mask:linear-gradient(90deg,#000 70%,#0000 0) 0/20%;
    background:
        linear-gradient(#000 0 0) 0/0% no-repeat
        #ddd;
    animation: l4 2s infinite steps(6);
  }
  @keyframes l4 {
      100% {background-size:120%}
  } */
.loader_animation_wrapper {
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99999999999;
    background: rgb(0 0 0 / 25%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    display: none;
}

.site_loader {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #FF4F22;
    box-sizing: border-box;
    animation: animloader 1s linear infinite alternate;
}

.deny_close_icon img {
    filter: brightness(0) invert(1);
}

.deny_close_icon:hover img {
    filter: none;
}

.approve_heading_btn {
    display: flex;
    gap: 20px;
}

.approve_icon:hover img {
    filter: brightness(0) saturate(100%) !important;
}

.events-tabs .dashboard-inner-content .tabs-heading > h2 > .action-icon.event_detail_action {
    display: inline-block;
}

@keyframes animloader {
    0% {
        box-shadow: -38px -12px, -14px 0, 14px 0, 38px 0;
    }
    33% {
        box-shadow: -38px 0px, -14px -12px, 14px 0, 38px 0;
    }
    66% {
        box-shadow: -38px 0px, -14px 0, 14px -12px, 38px 0;
    }
    100% {
        box-shadow: -38px 0, -14px 0, 14px 0, 38px -12px;
    }
}

.create_poll_grid .event-grid-block .event-grid-item .event-grid-img > img {
    max-height: 188px;
    min-height: 188px;
}

.create_poll_wrapper .time-wrapper .fa-clock-o,
.edit_poll_wrapper .time-wrapper .fa-clock-o {
    top: 15px;
}

.edit_poll_wrapper .time-wrapper .flatpickr-calendar {
    top: 44px !important;
}

.create_poll_grid.event-grid-block .event-grid-item .event-grid-img > img {
    max-height: 195px;
    min-height: 195px;
    object-fit: cover;
}

#errorAlert.custom-alert.info-alert {
    background-color: rgb(222 78 59 / 90%) !important;
    border: 2px solid rgb(222 78 59 / 90%);
    color: #fff !important;
}

#informationAlert.custom-alert.info-alert {
    border: 2px solid #34C759;
    background-color: #F0F9F2 !important;
    color: #090909 !important;
}

#informationAlert.custom-alert.info-alert .custom_alert_close img {
    filter: none !important;
}

.switch-btn-modal.awardTicketModal .modal-dialog-centered .modal-body {
    padding: 24px;
}

.award_total_ticket {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.award_total_ticket > h6 {
    margin: 0;
    font-size: 22px;
    font-family: "Roboto", serif;
    color: #000;
    font-weight: 500;
}

.award_total_ticket .total_ticket_count > span {
    background: #FF4F22;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    font-family: "Roboto", serif;
    padding: 4px 10px;
    border-radius: 8px;
}

.award_guest_block {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid #F1F1F1;
    border-radius: 8px;
    margin-bottom: 16px;
}

.award_guest_block .award_guest_img img {
    border-radius: 50%;
}

.award_guest_block .award_guest_content {
    text-align: left;
}

.award_guest_content h6 {
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto", serif;
    color: #000;
    margin: 0 0 6px;
}

.award_guest_content > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.award_guest_content > div > p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: #000;
}

.award_guest_close {
    margin-left: auto;
}

.award_guest_close > span {
    display: flex;
    background: #FF4F22;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    font-family: "Roboto", serif;
    padding: 4px 10px;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

.award_guest_close > span > i {
    font-size: 15px;
}

.award_note_wrapper {
    margin-bottom: 16px;
}

.award_note_wrapper > h6 {
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", serif;
    color: #000;
    text-align: left;
}

.award_note_wrapper textarea {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    padding: 10px;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    height: 40px;
    margin-bottom: 3px;
    resize: none;
    width: 100%;
    min-height: 100px;
}

.award_add_guest span {
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", serif;
    color: #000;
    padding-top: 4px;
}

.award_add_guest {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    width: max-content;
    cursor: pointer;
}

.award_button_block button {
    font-weight: 700;
}

.add-guest-form .form-group input,
.add-guest-form .form-group select {
    border: 1px solid #f1f1f1;
    border-radius: 8px !important;
    padding: 10px;
    font-size: 14px;
    color: #000;
    line-height: 20px;
    height: 40px;
    margin-bottom: 3px;
}

.add-guest-form .form-group label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Roboto", serif;
    color: #000;
    text-align: left;
    width: 100%;
}

.add-guest-form {
    text-align: center;
}

.add-guest-form .form-group label span {
    font-weight: 700;
    color: #FF4F22;
    display: inline-block;
}

.add-guest-form input[type=number]::-webkit-inner-spin-button,
.add-guest-form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-guest-form input[type=number] {
    -moz-appearance: textfield;
}

.awardTicketModal span.text-danger,
.addGuestModal span.text-danger {
    text-align: left;
    display: inline-block;
    width: 100%;
}

.per_ticket_limit_container {
    position: relative;
}

.per_ticket_limit_container span.text-danger {
    position: absolute;
    left: 0;
    bottom: -13px;
    font-size: 14px;
    color: #a94442;
}

.dataTables_scrollHeadInner, .table.dataTable {
    width: 100% !important;
}

/* media */
@media (min-width: 768px) {
    .student_profile_wrapper .profile-block-content .user-profile-content div.d-flex .user-profile-img {
        display: none;
    }
}

@media (min-height: 800px) {
    .student_profile_modal .modal-body,
    .avatar_modal .modal-body,
    .addGuestModal .modal-body {
        max-height: 550px;
    }
}

@media (min-height: 950px) {
    .student_profile_modal .modal-body,
    .avatar_modal .modal-body {
        max-height: max-content;
    }

}

@media (min-width: 1100px) {
    /* .pending-approval-wrepper .teacher-list-table .table thead th:first-child{
        width: 70px !important;
    } */
}

@media (min-width: 576px) and (max-width: 992px) {
    .loginRegister-container {
        height: 100%;
        padding: 30px 0;
    }
}

@media (max-width: 1350px) {
    .dashboard-inner-content-block.voting-block-section {
        width: 85%;
    }
}

@media (max-width: 1250px) {
    .dashboard-inner-content-block.voting-block-section {
        width: 100%;
    }

    .create_poll_grid.event-grid-block .event-grid-item .event-grid-img > img {
        max-height: 165px;
        min-height: 165px;
    }
}

@media (max-width: 1100px) {
    .dashboard-inner-content {
        margin: 102px 0px 30px !important;
        padding: 0 30px;
    }

    .event-grid-block.grid-view .event-grid-inner-wrapper {
        display: flex;
    }

    .event-grid-block.grid-view .event-grid-inner-wrapper .event-grid-item {
        flex: 1;
    }

    .create_poll_grid.event-grid-block .event-grid-item .event-grid-img > img {
        max-height: 158px;
        min-height: 158px;
    }
}

@media (max-width: 992px) {
    .loginRegister-container .loginRegister-logo-container img {
        max-width: 55%;
    }

    .setting_tab_wrapper.dashboard-inner-content {
        width: 100%;
    }

    .setting_tab_wrapper .setting-tab-content {
        justify-content: start;
        column-gap: 60px;
    }

    .dashboard-inner-content .voting-detail-section {
        width: 100%;
    }
}

@media (max-width: 820px) {

    .loginRegister-container .loginRegister-box.register-form-box,
    .loginRegister-container.register-form-container .btn-submit button {
        min-width: auto;
    }

    .inner-form-content {
        grid-template-columns: repeat(1, 1fr);
    }

    .loginRegister-container.register-form-container {
        display: block;
        padding: 0;
    }

    .loginRegister-container.register-form-container .confirm-password-field {
        margin-bottom: 0;
    }

    .loginRegister-container.register-form-container .loginRegister-logo-container p {
        font-size: 18px;
    }

    .loginRegister-container .loginRegister-box.register-form-box {
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    .loginRegister-container .loginRegister-box {
        min-width: auto;
    }

    .event-detail-wrapper .event-ticket-detail.d-flex {
        flex-wrap: wrap;
    }

    .voting-block-section .create_poll_grid .event-grid-wrapper {
        gap: 20px;
    }

    .voting-block-section .voting-poll-form form .d-flex.poll-create-detail {
        flex-direction: column;
    }

    .voting-block-section .voting-poll-form form .d-flex.poll-toogle-btn {
        flex-direction: column;
        gap: 10px;
    }

    .student_profile_wrapper .profile-block-content > div.user-profile-img {
        display: none;
    }

    .profile-block-content .user-profile-content > div.d-flex {
        gap: 26px;
        justify-content: center;
        align-items: center;
    }

    .profile-block-content .user-profile-content > div.d-flex .user-profile-img .user-profile-edit {
        top: 60px;
        right: -7px;
    }

    .profile-block-content .user-profile-content > div.d-flex .user-profile-img .user-profile-edit > button {
        height: 30px;
        width: 30px;
    }

    .profile-block-content .user-profile-content > div.d-flex .user-profile-img .user-profile-edit > button > img {
        width: 15px;
        height: 15px;
    }

    .profile-block-content .user-profile-content > div.d-flex .user-profile-img .profile-image-preview {
        height: 95px;
        width: 95px;
    }

    .profile-block-content .user-profile-content > div.d-flex .user-profile-img .profile-image-preview img {
        width: 50px;
        height: 50px;
    }

    .profile-block-content .user-profile-content > div.d-flex .user-status-block {
        flex-direction: column;
        padding-bottom: 10px;
        justify-content: start;
        align-items: flex-start;
    }

    .profile-block-content .user-profile-content > div.d-flex .user-status-block .user-profile-status {
        margin-left: auto;
    }

    .student_profile_wrapper .user-detail-block .user_detail_block_wrapper {
        grid-template-columns: 1fr;
    }

    .student_profile_wrapper .user-detail-block ul > li,
    .student_profile_wrapper .user-detail-block ul > li h3 {
        margin-bottom: 0px;
    }

    .student_profile_wrapper .user-detail-block .user_detail_block_wrapper ul {
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .student_profile_wrapper .user-detail-block .user_detail_block_wrapper ul li:first-of-type {
        grid-column: 1 / -1;
    }

    .student_profile_wrapper .edit_button_block ul {
        left: auto;
        right: 0;
    }

    .student_detail_wrapper .student_profile_wrapper .user-profile-content .user-profile-name > h4 {
        margin-bottom: 5px;
    }

    .student_detail_wrapper .student_profile_wrapper .user-profile-content .user-profile-name {
        margin-bottom: 10px;
    }

    .student_profile_tabs .student_profile_wrapper .user-profile-content .user-profile-name > h4 {
        margin-bottom: 4px;
    }

    .student_profile_tabs .student_profile_wrapper .user-profile-content .user-profile-name {
        margin-bottom: 10px;
    }

    .step-progress {
        margin-top: 20px;
    }

    .custom_pagination_wrapper > nav > div:last-of-type {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 650px) {
    .panal-dashboard-wrapper .dashboard_balance_block {
        padding: 20px 15px;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .event-grid-block.grid-view .event-grid-inner-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .voting-block-section .create_poll_grid .event-grid-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .student_profile_tabs .student_profile_wrapper .user-detail-block .user_detail_block_wrapper .student_button_wrapper {
        flex-direction: column;
    }

    .switch-btn-modal.awardTicketModal .modal-content {
        min-width: 350px;
        max-width: 350px;
    }

    .voting-block-section .voting-poll-form form .d-flex {
        justify-content: space-between;
        gap: 0;

    }

    .voting-block-section.edit_poll_wrapper .voting-poll-form form > .d-flex,
    .voting-block-section.create_poll_wrapper .voting-poll-form form > .d-flex {
        flex-direction: column;
    }

    .voting-block-section.edit_poll_wrapper .voting-poll-form form > .d-flex.create_form_btn,
    .voting-block-section.create_poll_wrapper .voting-poll-form form > .d-flex.create_form_btn {
        gap: 20px;
    }

    .voting-block-section.edit_poll_wrapper .voting-poll-form form > .d-flex.create_form_btn .btn-custom-default,
    .voting-block-section.create_poll_wrapper .voting-poll-form form > .d-flex.create_form_btn .btn-custom-default {
        margin-left: 0;
        order: 2;
    }

    .voting-poll-form .create_form_btn > a.btn {
        margin-left: 0;
    }

    .voting-block-section .voting-poll-form .poll_detail_left {
        width: 80%;
    }

    .voting-block-section .voting-poll-form form #selected-poll-text {
        max-width: 270px;
    }

    .voting-block-section .voting-poll-form form #selected-poll-count {
        margin-left: auto;
        margin-right: 4px;
    }

    .voting-poll-form .input-container .input_image_block > img {
        height: 25px;
        width: 25px;
    }

    .voting-poll-form .upload-container .file_upload_container img {
        height: 25px;
        width: 25px;
    }

    .teacher_tab_wrapper .teacher-list-table .checkbox-center label > input[type="checkbox"]:checked + span::before {
        left: 15px;
    }

    .teacher_tab_wrapper .teacher-list-table .table > tbody > tr > td:nth-child(2) {
        display: inline-table;
    }

    .filter_pendingapproval_modal .modal-body {
        max-height: 455px;
        width: 355px;
    }

    #gradeLevelModal.student_profile_modal .modal-content .modal-header h4 {
        font-size: 24px;
    }

    #gradeLevelModal.student_profile_modal .modal-body h2 {
        font-size: 24px;
        color: #090909;
    }

    .student_tab_wrapper .teacher-list-table .table > tbody > tr > td:nth-child(2) {
        display: inline-table;
    }

    .dashboard-inner-content .voting-detail-section .tabs-heading > h2 {
        font-size: 32px;
    }

    #domainModal.noteModel .modal-content .modal-header h4 {
        font-size: 22px;
    }

    .pending-approval-wrepper .student-list-heading-block {
        flex-direction: column;
        gap: 15px;
    }

    .pending-approval-wrepper .student-list-heading-block .tab-heading-block,
    .pending-approval-wrepper .student-list-heading-block .heading-filter-btn {
        width: 100%;
    }

    .pending-approval-wrepper .approve_heading_btn a {
        min-width: 130px;
        text-align: center;
        padding: 8px 20px;
    }

    #confirmationModal.switch-btn-modal .modal-content {
        max-width: 100%;
    }

    #confirmationModal.switch-btn-modal .modal-dialog {
        padding: 0 15px;
    }

    .create_poll_grid.event-grid-block .event-grid-item .event-grid-img > img {
        max-height: 190px;
        min-height: 190px;
    }

    .addGuestModal .modal-content {
        max-width: 350px;
    }

    .addGuestModal .modal-body {
        width: 100%;
    }
}

@media (max-width: 520px) {
    #school-name-field .modal-content {
        min-width: auto;
        margin: 0 15px;
    }

    #school-name-field .modal-content .modal-header {
        gap: 40px;
    }

    #school-name-field .modal-content .modal-header .close {
        font-size: 30px;
    }

    #school-name-field .modal-content .modal-header > h5 {
        font-size: 18px;
    }

    #school-name-field .modal-content .modal-body .modal-content-heading > h6 {
        font-size: 20px;
    }

    .panal-dashboard-wrapper .dashCreate_event_block {
        padding: 15px;
    }

    .panal-dashboard-wrapper .dashCreate_event_block p {
        font-size: 16px;
    }

    .panal-dashboard-wrapper .dashboard_balance_block {
        padding: 20px 15px;
        gap: 10px;
    }

    .panal-dashboard-wrapper .dashboard_balance_block img {
        width: 30px;
        height: 30px;
    }

    .panal-dashboard-wrapper .dashboard_balance_block div > span {
        font-size: 30px;
    }

    .panal-dashboard-wrapper .dashboard_balance_block p {
        font-size: 18px;
    }

    .events-tabs .event-list-heading-block {
        gap: 10px;
        margin-bottom: 20px;
        padding-left: 0;
    }

    .events-tabs .event-list-heading-block .heading-filter-btn {
        gap: 10px;
    }

    .events-tabs .event-list-heading-block .heading-filter-btn .toggle_btn img,
    .events-tabs .event-list-heading-block .heading-filter-btn > a > img {
        width: 22px;
        height: 22px;
    }

    .events-tabs .event-list-heading-block .heading-filter-btn .tab-btn > a {
        min-width: 130px;
        padding: 8px 20px;
    }

    .step-progress {
        gap: 30px;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .step-progress .step:before {
        width: 30px;
        top: 36%;
        left: 60%;
    }

    .step-progress .step > p {
        font-size: 16px;
    }

    .step-progress .step:nth-child(1)::before {
        width: 24px;
    }

    .create_entry_wrapper .create_entry_block label.option-box {
        flex-basis: 100%;
    }

    .create_entry_wrapper .create_entry_block {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .entry_details_block > div.paid_detail_block {
        margin-top: 20px;
    }

    .entry_details_block .nav-buttons_wrapper {
        margin-top: 60px;
    }

    .event_details_wrapper .event_detail_block {
        margin-top: 25px;
    }

    .pending-approval-wrepper .heading-filter-btn .open-filter-btn img {
        width: 30px;
        height: 30px;
    }

    .student_tab_wrapper .student-list-block .heading-filter-btn > div.quick-view-summary .btn,
    .student_tab_wrapper .student-list-block.teacher-list-heading-block .tab-btn .btn {
        min-width: 130px;
    }

    .voting-block-section .voting-tabs-heading a.btn-orange {
        padding: 8px 25px;
    }

    .message_tabs_container.dashboard-inner-content.message_tabs_container {
        margin: 66px 0px 0px !important;
        padding: 0 !important;
        height: calc(100vh - 86px);
    }

    .message_tabs_container .message-input-container {
        padding: 10px 0 0;
    }

    .message_tabs_container .message-input-container #message-form {
        margin: 0;
    }

    .message_tabs_container .card .direct-chat-messages {
        height: calc(100vh - 226px);
    }

    .message_tabs_container .message-input-container .form-group.center {
        margin: 0;
    }

    .message_tabs_container .card-header span {
        font-size: 22px;
    }

    .message_tabs_container .card-header {
        min-height: 93px;
    }

    .group_message_chat.message_tabs_container .card-header {
        min-height: 74px;
    }

    .help-modal-block .modal-dialog-centered,
    .contact-modal-block .modal-dialog-centered {
        padding: 0 10px;
    }

    .help-modal-block .modal-content,
    .contact-modal-block.modal-content {
        max-width: 100%;
    }

    .help-modal-block .modal-content .d-flex, .user_withdraw_modal .modal-content .d-flex {
        gap: 30px;
    }

    .contact-modal-block .modal-body {
        width: 100%;
    }

    .vote_counter_wrapper {
        margin-bottom: 30px;
    }

    .vote_counter_wrapper .vote_counter_content {
        gap: 10px;
        padding: 10px;
    }

    .vote_counter_wrapper .vote_counter_content span {
        font-size: 16px;
    }

    .vote_counter_wrapper .vote_counter_left .vote_counter_content > div {
        display: flex;
        gap: 4px;
    }

    .event_details_wrapper .event_detail_block .event_items p {
        font-size: 16px;
    }

    .event_details_wrapper .event_detail_block {
        padding: 10px;
    }

    .event_details_wrapper .event_detail_block .event_items p:last-of-type {
        display: flex;
        justify-content: flex-end;
    }

    .event_details_wrapper .event_detail_block .event_items {
        gap: 20px;
    }

    .events-tabs .dashboard-inner-content .tabs-heading > h2 > .action-icon.event_detail_action {
        display: flex;
    }
}

@media (max-width: 480px) {
    .setting_tab_wrapper .setting-tab-content {
        flex-direction: column;
        row-gap: 24px;
    }

    .setting_tab_wrapper .setting-tab-content > a {
        width: 100%;
    }

    .setting_blocks_heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .change_password_wrapper .change_pass_block {
        width: auto;
    }

    .change_password_wrapper .btn-submit button {
        margin-top: 0;
    }

    .change_password_wrapper .change-password-content .change-password-logo img {
        width: 100%;
        height: 100%;
    }

    .student_profile_wrapper .student_button_wrapper button {
        width: 100%;
    }

    .events-tabs .dashboard-inner-content .tabs-heading > h2.event_detail_heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    #confirmationModal.switch-btn-modal .modal-content > div.d-flex {
        gap: 20px;
    }

    .custom_color_inner_wrapper {
        flex-direction: column;
    }

    .custom_color_inner_wrapper .pcr-app {
        width: 100%;
    }

    .events-tabs .event_detail_wrapper .tabs-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .event_balance_block {
        width: 100%;
    }

    .panal-dashboard-wrapper .dashboard_balance_block {
        flex-wrap: wrap;
    }

    .panal-dashboard-wrapper .dashboard_balance_block > button {
        margin-left: initial;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .dashboard-inner-content {
        padding: 0 15px;
    }

    .student_tab_wrapper .approval-status.approval_block {
        flex-direction: column;
    }

    .student_tab_wrapper .approval-status.approval_block .pending-status {
        width: 100%;
    }

    .student_tab_wrapper .teacher-list-heading-block .heading-filter-btn > div.quick-view-summary,
    .student_tab_wrapper .student-list-block.teacher-list-heading-block .heading-filter-btn {
        gap: 20px;
    }

    .voting-block-section .voting-poll-form form #selected-poll-text {
        max-width: 200px;
    }
}

@media (max-width: 375px) {
    .panal-dashboard-wrapper .dashboard_balance_block p {
        font-size: 16px;
    }
}

.iti {
    width: 100%;
}

.iti__selected-flag {
    background: transparent !important;
    border-right: none !important;
}

.iti__selected-dial-code {
    display: none;
}