* {
	margin: 0;
	padding: 0;
}

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

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


	--yellow: #FFC708;
}

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

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



/************************************ common ***************************************/


.color_box{
	width: 12px;
	height: 12px;
	background-color: var(--main-color);
	border-radius: 100%;
	margin-top: 6px;
}

.error {
	color: red;
}
.main_wrapper {
	display: flex;
	flex-direction: row;
	height: 100%;
}

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

}

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

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

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

.table_title .add_btn {
	background-color: var(--orange);
	color: var(--white);
	padding: 10px 28px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 8px;
	font-size: 14px;
	position: relative;
	z-index: 1;
	box-shadow: 1px 1px 5px var(--orange);
	white-space: nowrap;
}

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

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

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

.user_add_icon {
	margin-right: 10px;
}

.user_title {
	margin-bottom: 14px;
}

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

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

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

.site_setting_section_space {
	margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

.form-switch .form-check-input:focus {
	background-image: url("../img/check_foucs.svg");
}
.back_btn{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.back_btn .save{
	background-color: var(--orange);
	color: var(--white);
	padding: 8px 20px;
}
.back_btn a {
	background: #fff;
	padding: 10px 20px;
	text-decoration: none;
	color: #2D3E6B;
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	border-radius: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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


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

.active_icon {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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



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

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

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

}

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

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

.header_bar form {
	width: 100%;
}

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

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

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

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

.search_box {
	width: 100%;
}

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

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

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

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

.user_profile {
	margin-left: 34px;
}

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

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

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

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

.toggle_menu_btn img {
	width: 25px;
}

.toggle_menu_btn .menu_close {
	display: none;
}

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

}

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

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

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

.custom-select select {
	display: none;
}

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

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

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

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

.select-hide {
	display: none;
}

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

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

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

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

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


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

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

.date_box:focus {
	outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.date_secton {
	position: relative;
}

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


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


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

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

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

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

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

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

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

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


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

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

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

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

.dashboard_first_section_users {
	flex-grow: 1;
}

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

}

.user_box_title {
	padding-right: 27px;
}

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

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

.more_user_watch {
	margin-top: 4px;
}

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


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

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

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

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

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

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

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

.section_space {
	padding-top: 32px;
}

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

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

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

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

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

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

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

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

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

.upcoming_event_details {
	margin-left: 14px;
}

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

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

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


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

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

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

.admin_user_table table thead tr th:first-child {
	border-top-left-radius: 20px;
}
.support_ticket_section table thead tr th:first-child{
	border-top-left-radius: 0px;
}
.support_ticket_section table thead tr th:last-child{
	border-top-right-radius: 0px !important;
}

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

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

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

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

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

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

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

.ban:hover {
	color: #D41313;
}

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

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

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

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

.deactive_dot {
	background-color: #A4A4A4;
}

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

.close_dot {
	background-color: #FFB800;
}

.user_status_deactive {
	color: #A4A4A4 !important;
}

.status {
	padding-left: 15px;
}

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

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

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

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

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

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

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

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

}

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

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


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

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

.user_upload_photos .upload-field-customized input[type="file"] {
	position: absolute;
	width: 166px;
	height: 166px;
	opacity: 0;
	cursor: pointer;
	left: 0px;
	top: 0px;
	z-index: 10;
}
#create_event .user_upload_photos .upload-field-customized input[type="file"]{
	width: 100%;
}
#create_event .c_event_tab .nav {
	justify-content: center;
}
.user_upload_photos .upload-field-customized span {
	text-align: center;
	width: 100%;
	display: block;
	height: 50px;
	line-height: 50px;
}

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

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

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

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

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


.select_gender_section {
	display: flex;
}

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

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

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

.radio_group {
	display: flex;
}

.button_section {
	margin-top: 38px;
}

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

.button_section .form_btn,
.header_clear_btn {
	padding: 8px 0;
	width: 128px;
	margin: 0 14px 0 0;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	background-color: var(--white);
	display: inline-block;
	text-decoration: none;
	text-align: center;
}

.header_clear_btn {
	color: var(--dark_text);
	border: 1px solid var(--btn_border);
	padding: 10px 0;
	font-size: 16px;
}

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

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

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

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

/************************************ create_admin_role ***************************************/
.create_admin_role {
	display: flex;
}

.create_admin_role_left_section {
	flex-grow: 1;
}

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

.description {
	flex-grow: 2;
}

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

.description_box {
	height: 142px;
}

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

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

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

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

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

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

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

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

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

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

.add_new_eve_cat_des {
	width: 50%;
}

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

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


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

.add_page_description .input_filed {
	height: 278px;
}

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

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

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

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

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

.seo_title {
	margin-bottom: 24px;
}

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

.add_page_description_two {
	flex-grow: 4;
}

.custome_width {
	width: 15.5%;
}

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


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

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


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


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

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

.site_setting_middle_content {
	width: 100%;
}

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

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

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

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

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

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

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

.site_setting_last_content {
	flex-grow: 2;
}

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

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

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

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

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

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


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

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

.site_configuratoin_title {
	margin-bottom: 28px;
}

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

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

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

.future_events_details_second_top_section {
	margin-bottom: 28px;
}

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

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

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

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

.future_events_details_first_left_icon {
	margin-right: 28px;
}

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

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

.future_full_description {
	margin-top: 28px;
}

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

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

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

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

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

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

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

.future_event_img {
	margin-right: 28px;
}

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

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

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

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

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

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

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

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

.future_event_box_description {
	margin: 28px 0;
}

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

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

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

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

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

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

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

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

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

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

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

.users_profile_img {
	position: relative;
}

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

.users_profile_content {
	margin-left: 24px;
}

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

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

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

.users_inactive_status {
	background-color: #A4A4A4;
}

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

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

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

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

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


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

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

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

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

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

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

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


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

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

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

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

.manage_first_das_bottom_section {
	margin-top: 8px;
}

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

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

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

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

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

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

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

.small_text {
	font-size: 18px;
}

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

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

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

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

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

.custome_progress_bar .progress-bar{
	width: auto !important;
    padding: 0 10px !important;
}

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

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

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

.manage_event_progess_box {
	margin-bottom: 22px;
}

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

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

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

.manage_events_dast_last_right_table table {
	white-space: nowrap;
}

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

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

.manage_events_das_last_right_section {
	overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

.box_logo img {
	height: 80px;
}

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

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

.form_section {
	padding: 0px 98px
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.user_dropdown ul {
	padding: 0;
}

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

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

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

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

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

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

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

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

.error_header img {
	width: 123px;
}

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

.error_body_left_text img {
	width: 350px;
}

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

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

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

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

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

.width-450 {
	width: 450px;
}

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

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

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

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

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

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

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

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

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

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

.pagination {
	margin-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cust_tab_menu .nav-pills .nav-link{
	color: #535A6D;
	font-size: 16px;
	margin: 0;
	padding: 18px 40px;
}
.cust_tab_menu .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
	background-color: transparent;
	color: var(--orange);
	border-bottom: 2px solid var(--orange);
	border-radius: 0;
	font-weight: 700;
}
.cust_tab_menu ul{
	background-color: #F7FAFF;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.cust_tab_menu .tab-content{
	background-color: var(--white);
	padding: 42px 28px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}



/************************************ create_events ***************************************/
#create_event .page_content_title h3 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 12px;
}

#create_event .page_content_title p {
	max-width: 480px;
	text-align: center;
	margin: auto;
	font-weight: 500;
}

#create_event .page_inner_content {
	width: 100%;
	max-width: 700px;
	margin: 42px auto 20px;
	text-align: left;
}

#create_event .custom-select {
	position: relative;
	text-align: left;
	width: 100%;
}

#create_event .custom-select_drop select{
	display: block;

}

#create_event .select-selected {
	background-color: #F5F8FC;
	border: 1px solid #D3DCE7 !important;
}

#create_event .select-selected:after {
	position: absolute;
	content: "";
	width: 10px;
	height: 10px;
	top: 50%;
	right: 15px;
	transform: translateY(-50%) rotate(45deg);
	border-bottom: 2px solid #263D54;
	border-right: 2px solid #263D54;
	border-top: 0;
	border-left: 0;
	cursor: pointer;
	transition: border-color 0.4s;
}

#create_event .select-selected.select-arrow-active:after {
	border: none;
	top: 58%;
	border-left: 2px solid #263D54;
	border-top: 2px solid #263D54;
}

#create_event .select-items div,
.select-selected {
	color: #263D54;
	padding: 10px 14px;
	border: 1px solid #A8AFB9;
	cursor: pointer;
	user-select: none;
	border-radius: 5px !important;
	font-size: 16px;
	font-weight: 700;
	border-radius: 0;
}

#create_event .select-items {
	position: absolute;
	background-color: #fbfbfb;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 102;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#create_event .select-hide {
	display: none;
}

#create_event .select-items div:hover,
#create_event .same-as-selected {
	background-color: rgb(243 243 243);
}

#create_event .label {
	text-align: left;
	color: #7A7A7A;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
}

#create_event .c_event_box {
	width: 100%;
	padding: 10px 14px;
	background-color: #F5F8FC;
	border: 1px solid #D3DCE7;
	border-radius: 5px;
	outline: none;
	color: #263D54 !important;
	font-weight: 700;
	font-size: 14px;
}

#create_event .c_event_box::placeholder {
	color: #263D54 !important;
}

#create_event .input_box {
	margin-bottom: 20px;
	position: relative;
	max-width: 100%;
	/* overflow: hidden; */
}

#create_event .switch {
	position: relative;
	display: inline-block;
	width: 58px;
	height: 29px;
}

#create_event .switch input {
	display: none;
}

#create_event .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #E8E8E8;
	border-radius: 40px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: 1px solid #fff;
}

#create_event .slider:before {
	position: absolute;
	content: "";
	height: 24px;
	width: 24px;
	background: #fff;
	border-radius: 50%;
	left: 2px;
	bottom: 2px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: 1px solid #fff;
}

#create_event input:checked+.slider {
	background: #126AE9;
	border-color: #126AE9 !important;
}

#create_event input:checked+.slider:before {
	-webkit-transform: translateX(30px);
	-moz-transform: translateX(30px);
	transform: translateX(30px);
	background-color: #ffff;
	left: 0px;
	border: 0;
}

#create_event .switch_section {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#create_event .switch_section h4, .switch_text_one {
	margin-left: 14px;
	font-size: 16px;
	color: #263D54;
	font-weight: 700;
}
#create_event .switch_text_one{
	display: none;
}

#create_event .c_event_textarea {
	height: 100px;
}
#create_event .on_toggle_show_section{
	display: none;
}
#create_event .c_event_map{
	margin-top: 12px;
}
#create_event .c_date_section{
	margin-top: 10px;
}
.show_map_text{
	margin-left: 20px;
}
#create_event .c_event_tab{
	margin: 24px 0 0 0;
}
#create_event .c_event_tab .nav-pills .nav-link{
	font-weight: 700;
	padding: 10px 80px 10px 14px;
	background-color: #F5F8FC;
	border: 1px solid #D3DCE7;
	color: #263D54;
	margin: 0 22px 0 0;
}
#create_event .c_event_tab .nav-pills .nav-link.active{
	background-color: #FFD0C7;
	border: 1px solid #FFA897;
	color: var(--orange);
	font-size: 16px;
}
#create_event .date_tab_content{
	margin-top: 20px;
}
#create_event input[type="date"]{
	position: relative;
}
#create_event input[type="date"]::-webkit-calendar-picker-indicator {
	color: transparent;
	background: none;
	z-index: 1;
  }
  
  #create_event input[type="date"]:before {
	color: transparent;
	background: none;
	display: block;
	content: '';
	width: 10%;
	height: 100%;
	position: absolute;
	top: 13px;
	right: 0px;
	background-image: url("../img/calender.png");
	background-repeat: no-repeat;
	
  }

  #create_event input[type="time"]{
	position: relative;
}
#create_event input[type="time"]::-webkit-calendar-picker-indicator {
	color: transparent;
	background: none;
	z-index: 1;
  }
  
  #create_event input[type="time"]:before {
	color: transparent;
	background: none;
	display: block;
	content: '';
	width: 10%;
	height: 100%;
	position: absolute;
	top: 15px;
	right: 6px;
	background-image: url("../img/clock.png");
	background-repeat: no-repeat;
  }
  #create_event .event_img_section{
	margin: 9px 0 0 0;
  }
  #create_event .event_img_section .user_upload_photos .upload-field-customized span img{
	width: 100%;
	height: 200px;
	border-radius: 5px;
	object-fit: cover;
}
#create_event .event_img_section .user_upload_photos .upload-field-customized {
	width: 100%;
	height: 200px;
}
  #create_event .file-uploader {
	flex: 0 1 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background-color: #fff;
	border-radius: 5px;
}
#create_event .file-uploader #file-input {
	display: none;
}
#create_event .file-uploader label[for="file-input"] {
	padding: 1em 1.5em;
	flex: 1 1 auto;
	text-align: center;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	background-image: url("../img/file_one.png");
	height: 200px;
	z-index: 1;
}
.file-output-img{
/*    position: absolute;*/
	width: 100%;
	height: 200px;
	z-index: 2;
	object-fit: cover;
}
#create_event .file-uploader .image-preview {
	margin: 0 0 1rem;
	min-height: 250px;
	flex: 1 0 75%;
	background-color: #c1c1c1;
}
#create_event .c_event_description{
	height: 200px;
	box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
#create_event .input_box .form-check{
	margin-bottom: 10px;
}
#create_event .button_section{
	padding: 17px 0;
	width: 100%;
	bottom: 0;
	left: 0;
	text-align: center;
	z-index: 100;
}
#create_event .button_content{
	width: 80%;
	text-align: right;
}
#create_event .discard, .continue{
	border-radius: 5px;
	border: 0;
	padding: 10px 60px;
	background-color: transparent;
	border: 2px solid #D3DCE6;
	color: #263D54;
	font-weight: 700;
	font-size: 16px;
	margin: 0 10px 0 0;
	text-decoration: none;
	display: inline-block;
}
#create_event .discard:hover{
	color: #263D54;
}
#create_event .continue{
	background-color: var(--orange);
	color: var(--white);
	border: 2px solid var(--orange);
}
#create_event .page_content{
	padding-bottom: 10px;
}
#create_event #create_organizer .modal-dialog{
	max-width: 312px;
	margin: auto;
}
#create_event #create_organizer .modal-dialog .modal-content{
	border: 1px solid #D3DCE6;
}
#create_event #create_organizer .modal-dialog .delete_modal_text p{
	max-width: 253px;
	text-align: center;
	margin: auto;
	color: var(--text-color);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 19px;
}
#create_event #create_organizer .modal-title{
	color: #263D54;
	font-weight: 700;
	font-size: 18px;
}
#create_event .create_organizer_btn{
	width: 100%;
	padding: 10px 0;
	background: var(--orange);
	color: var(--white);
	border: 0;
	border-radius: 5px;
	font-size: 16px;
	display: block;
	text-align: center;
	text-decoration: none;
	transition: all .5s;
}
#create_event .create_organizer_btn:hover{
	background-color: var(--black);
	color: var(--white);
}
#bookingDetails .modal_close{
	position: absolute;
    top: 0;
    right: 0;
    transform: translate(10%, -0%);
}
#create_event #create_organizer .modal_close{
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%,-50%);
}
#create_event .create_event .input_box{
	max-width: 100%;
}
#create_event .form-check-input{
	width: 18px;
	height: 18px;
}



#create_event .page_inner_content_box{
	padding: 34px 34px 15px;
	background-color: #FAFCFF;
	border: 1px solid #DBDBDB;
	border-radius: 5px;
	position: relative;
	margin-bottom: 20px;
}
#create_event .select_time_wrapper{
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-bottom: 30px;
}
#create_event .select_time_wrapper label {
	background-color:#F5F8FC;
	border-radius: 5px;
	cursor: pointer;   
	margin: 0 10px;
}

#create_event .select_time_wrapper label a {
	font-size: 16px;
	font-weight: 700;
	padding: 12px 120px 12px 10px;
	border: 1px solid var(--orange);
/*    background-color:#FFD0C7;*/
	background-color: #fff;
	color:var(--orange);
	border-radius: 5px;
	text-decoration: none;
	transition: all .5s;
	display: block;
}
#create_event .select_time_wrapper label a:hover{
	background-color:#FFD0C7;
	color:var(--orange);
}
#create_event .select_time_wrapper  input:checked + span {
	background-color:#FFD0C7;
	color:var(--orange);
	border: 1px solid #FFA897;
	border-radius: 5px;
}
.dele_icon{
	width: 25px !important;
	height: 25px;
	border-radius: 100%;
	border: 1px solid var(--orange);
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
}
.acc_close{
	position: absolute;
	top: 0;
	right: 0;
   transform: translate(-50%, 25%);
	color: var(--orange);
	font-size: 14px;
	background: #fff;
}


/*.page_inner_content_box .addeventtickets{
	
}*/
#create_event .label_p{
	font-weight:400;
}
#create_event .custom-control-label::after{
	border-radius: 50%!important;
	width: 24px;
	height: 24px;
	top: 0px;
	color: transparent;
}
#create_event .form_bot_wrapper .custom-control-label::before{
	background-color: #ebebeb;
	height: 24px;
	width: 24px;
	border-radius: 50%;
	top: 0;
}
#create_event .custom-checkbox .custom-control-input:checked~.custom-control-label::before{
	background-color: #ebebeb;
}
#create_event .c_event_ticket{
	margin-top: 25px;
}
#create_event .doller_img{
	position: absolute;
    top: 25%;
    z-index: 1;
    left: 5%;
}
#create_event .advance_settings .accordion-item{
	border: 0;
}
#create_event .advance_settings .accordion-button{
	background-color: #FAFCFF;
	padding: 0 0 10px 0;
	box-shadow: none;
	outline: none;
}
#create_event .setting_header{
	position: relative;
	width: 100%;
	color: #263D54;
	font-weight: 700;
	font-size: 16px;
}
#create_event .advance_settings .setting_header::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 25%;
	width: 74%;
	height: 2px;
	background-color: #D9D9D9;
	border-radius: 2px;
}
#create_event .setting_content{
	background-color: #FAFCFF;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
}
.servicesfee .select_fee{
	width: 98% !important;
}
.buyer_total{
	margin-top: 20px !important;             
}
#create_event .setting_content .form-check-label{
	font-size: 14px;
	color: #7A7A7A;
}

#create_event .setting_content p{
	color: #7A7A7A;
	margin: 0;
	font-size: 12px;
	border-color: #FAFCFF;
}
#create_event .c_event_ticket_bg{
	background-color: #FAFCFF;
}
#create_event .simple_text p{
	font-size: 14px;
	color: #7A7A7A;
	margin: 0;
}
#create_event .accordion_close{
	position: absolute;
	top: 0%;
	right: 0%;
	transform: translate(50%,-50%);
}

#create_event .page_bottom_section{
	display: flex;
	justify-content: center;
}
#create_event .ml-50{
	margin-left: 50px;
}
#create_event .continue_btn{
	display: flex;
	justify-content: center;
}
#create_event .radio_section .form-check-label{
	color: var(--dark_text);
	font-weight: 700;
}


.radio_section{
	display: flex !important;
	justify-content: space-between;
	position: relative;
	left: 24px;
}


.radio_button .form-check .form-check-input{
	margin-left: 0;
}

.note-editor .tooltip {
	display: none !important;
}
.ticket_org{
	color: var(--dark_text);
	font-weight: 600;
}
.ticket_text{
	color: var(--event_text);
	font-weight: 600;
	font-size: 14px; 
}
.seat_append{
	padding: 16px 16px !important;
}
#categoriesAppend{
	width: 97%;
	margin: 10px auto;
}
.ticket_action_icon a .fa-cog{
	color: var(--orange);
	text-align: right;
}
.buyer_text{
	display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.seating_date_section label{
	text-align: left;
    color: #7A7A7A;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}
.seating_date_section .form-group{
	margin-bottom: 15px;
}
#bfees{
	font-size: 14px;
}
.seat_select_fee{
	width: 95% !important;
}
.buyer_total{
	white-space: nowrap;
	position: relative;
	top: 8px;
}
.doller_input{
	position: relative;
}
/************************************ end_create_events ***************************************/



/************************************ reports ***************************************/
.reports_box_title{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.reports_box_title button{
	padding: 8px 18px;
	border-radius: 8px;
	background-color: var(--orange);
	color: var(--white);
	border: 0;
}
.resport_input_box button{
	padding: 6px 18px;
	border-radius: 8px;
	background-color: var(--orange);
	color: var(--white);
	border: 0;
	white-space: nowrap;
	margin-top: 24px;
}
.reports_box_title button img{
	margin-right: 10px;
}
.resport_input_box button img{
	margin-right: 10px;
}
.report_content_white_box{
	display: inline-block;
	min-width: 320px;
}
.report_content_white_box h4{
	color: #263D54;
	font-size: 20px;
	font-weight: 700;
}
.report_content_white_box p{
	margin-bottom: 0;
	color: #7A7A7A;
	width: 100%;
	max-width: 250px;
}
.report_dropdown_menu h4{
	color: #7A7A7A;
	font-size: 14px;
}
.resport_input_box .form-select{
	color: var(--dark_text);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 14px;
}
.w-90{
	width: 90%;
}
.resport_input_box .form-select:focus{
	outline: none;
	box-shadow: none;
}
.report_content{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 24px;
	border: 1px solid #E4E4E4;
	padding: 24px 24px;
	max-width: 930px;
	width: 100%;
	border-radius: 10px;
}
.resport_input_box{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
}
.report_dropdown_menu{
	width: 60%;
}
.dropdown_inner_group{
	width: 100%;
	margin-bottom: 16px;
}
.w-60{
	width: 100%;
}
.dropdown_inner_group .form-select{
	margin-bottom: 10px;
}
.new_org_profile{
	margin: 20px 0;
	text-align: center;
}

.new_org_profile img{
	width: 100px;
	border-radius: 10px;
}
.new_user_porfile_title h5{
	
    color: var(--dark_text);
    font-size: 16px;
    font-weight: 500;
}
.add_page_description .new_user_porfile{
	font-size: 14px;
	color: var(--black);
	border: 1px solid var(--body_color) !important;
}
.new_user_porfile{
	padding: 10px 10px;
	/* border: 1px solid #ECEDEF; */
	border: 1px solid var(--body_color) !important;
	border-radius: 5px;
}
.new_user_porfile_box{
	margin-bottom: 20px;
}
.new_user_social_icon img{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	padding: 5px;
	border: 2px solid #ECEDEF;
	margin: 0 5px 0 0;
}
.new_org_radio{
	display: flex;
}
.new_org_radio .form-check{
	margin: 0 20px 0 0;
}
.new_org_radio .form-check-label{
	position: relative;
    top: 2px;
}

.new_user_porfile_details{
	margin-top: 20px;
}
.new_user_porfile_details .remove_user_new_profile{
	display: inline-block;
	text-decoration: none;
	background-color: var(--orange);
	color: var(--white);
	padding: 8px 40px;
	border-radius: 5px;
	font-size: 18px;
}
.cust_flex{
	display: flex;
	flex-direction: column;
}
/************************************ end_reports ***************************************/


/************************************ custom-support ***********************************/
.new_container {
    width: 100%;
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.profile_title h3 {
    font-family: 'Poppins-Bold';
    font-size: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E4E4E4;
}

.support_create_form {
    width: 100%;
    max-width: 573px;
    margin: 40px auto;
    padding: 40px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
}

.support_create_ticket_title {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 24px;
}

.support_create_form .new_form_box {
    margin-bottom: 24px;
}

.new_form_box .form_label {
    font-family: 'Poppins-Medium';
    font-size: 16px;
    color: var(--black);
    margin-bottom: 14px;
}

.new_form_input {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--white);
    border: 1px solid #E4E4E4;
    border-radius: 5px;
    outline: none;
}

.new_form_input {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--white);
    border: 1px solid #E4E4E4;
    border-radius: 5px;
    outline: none;
}

.w-100 {
    width: 100%;
}

.support_send_btn {
    font-family: 'Poppins-SemiBold';
    width: 100%;
    padding: 16px 0;
    background-color: var(--yellow);
    color: var(--light-black);
    font-size: 16px;
    border-radius: 8px;
    border: 0;
}

.new_form_box .form_label span {
    color: #FF4444;
    margin-left: 3px;
}

.identification_box h4 {
    font-family: 'Poppins-Regular';
    color: var(--yellow);
    font-size: 12px;
    margin-top: 10px;
}

.text_light {
    font-family: 'Poppins-Regular';
    color: var(--new-gray);
}

.identification_box {
    padding: 19px 0;
    background-color: var(--white);
    border: 1px dashed #E4E4E4;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}

.hidden_file_input {
    display: none;
}

.support_img_preview {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file_preview {
    position: relative;
    display: inline-block;
}

.image_preview {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.close_button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.close_button {
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    text-align: center;
    cursor: pointer;
    width: 30px !important;
    height: 30px !important;
    transform: translate(50%, -50%);
}
.view_tickets_section{
    margin: 40px 0;
	padding: 30px 30px;
}
.view_tickets_right_box{
	flex-grow: 10;
    flex-shrink: 0;
}
.customer_supports_box_section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 10px;
    margin: 40px 0;
}

.customer_supports_box {
    padding: 20px 24px;
    border: 1px solid #E4E4E4;
    border-radius: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.customer_supports_left_box h4 {
    font-family: 'Poppins-Medium';
    color: var(--new-gray);
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 100;
}

.customer_supports_left_box h2 {
    font-family: 'Poppins-SemiBold';
    color: var(--light-black);
    font-size: 28px;
}

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

.support_tickets_header h4 {
    color: var(--light-black);
    font-size: 24px;
}

.support_tickets_header a {
    font-family: 'Poppins-SemiBold';
    display: inline-block;
    text-decoration: none;
    padding: 10px 40px;
    background-color: var(--yellow);
    color: var(--light-black);
    font-size: 16px;
    border-radius: 8px;
}
.support_tickets_header a:hover{
    color: var(--light-black);
}
.support_ticket_section {
    margin: 24px 0;
    white-space: nowrap;
}


.support_ticket_section thead tr th {
	background-color: #F4F9FD;
    padding: 16px 24px;
    color: var(--light-black);
    font-size: 18px;
}

.support_ticket_section tbody tr td {
    padding: 16px 24px;
}
.support_ticket_section tbody tr:last-child td{
    border: 0;
}
.support_ticket_section .table-responsive {
    border-radius: 8px;
}

.support_ticket_box {
    border: 1px solid var(--login-border);
    border-radius: 5px;
    overflow: hidden;
}

.support_ticket_inner_box {
    padding: 24px 24px 14px;
}

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

.support_ticket_header h5 {
    font-family: 'Poppins-Medium';
    font-size: 16px;
    color: var(--light-black);
}

.support_ticket_header h5 span {
    font-family: 'Poppins-Medium';
    color: var(--new-gray);
}

.support_ticket_header h6 {
    font-family: 'Poppins-Medium';
    color: var(--new-gray);
    font-size: 14px;
}

.support_ticket_body {
    padding: 8px 0 0;
    border-top: 1px solid var(--login-border);
    margin-top: 8px;
}

.support_ticket_body h3 {
    font-family: 'Poppins-SemiBold';
    color: var(--light-black);
    font-size: 18px;
    width: 100%;
    max-width: 230px;
}

.support_ticket_body h4 {
    font-family: 'Poppins-Medium';
    color: var(--new-gray);
    font-size: 14px;
    margin-top: 8px;
}

.support_ticket_footer {
    background-color: #FFF7DA;
    padding: 14px 24px;
}

.support_ticket_footer {
    font-family: 'Poppins-Medium';
    font-size: 16px;
    color: var(--light-black);
}

.status_dots {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin-right: 6px;
}

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

.support_ticket_footer h4 {
    font-family: 'Poppins-Medium';
    font-size: 16px;
    color: var(--light-black);
}

.support_green_dots {
    background-color: #28AF1D;
}

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

.support_footer_status h6 {
    font-family: 'Poppins-Medium';
    color: var(--light-black);
    font-size: 16px;
}

.support_red_dots {
    background-color: #FF4444;
}

.support_create_ticket {
    padding-top: 40px;
    padding-bottom: 120px;
}

.support_create_ticket_title {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 24px;
}

.support_create_ticket_title h3 {
    font-family: 'Poppins-SemiBold';
    color: var(--light-black);
    font-size: 24px;
}

.support_create_form {
    width: 100%;
    max-width: 573px;
    margin: 40px auto;
    padding: 40px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
}

.support_create_form .new_form_box {
    margin-bottom: 24px;
}

.support_ticket_table_box a {
    font-size: 16px;
    color: var(--dark_text);
	font-weight: 600;
    text-decoration: none;
}
.support_ticket_table_box a:hover{
    color: var(--light-black);
}

.support_ticket_inner_table_box_data h4 {
    color: #535A6D;
    font-size: 16px;
}

.support_ticket_inner_table_box_data {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    margin-top: 8px;
}

.yellow_dot {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--orange);
    margin: 0 16px;
}

.support_ticket_table_status {
    padding: 4px 8px;
    color: var(--white);
    font-size: 16px;
    border-radius: 8px;
    display: inline-block;
    width: 100px;
    text-align: center;
}

.bg_light, .status_new{
    background-color: #00D9D9;
}
.bg_light_yellow, .status_open {
    background-color: #FFC708;
}
.bg_sky, .status_in-progress {
    background-color: #4FAAFF;
}
.bg_light_red, .status_on-hold{
    background-color: #FF4444;
}
.bg_green, .status_closed {
    background-color: #28AF1D;
}
.bg_red, .status_re-open {
    background-color: #E01D1D;
}


.support_ticket_inner_table_status {
    padding: 2px 10px;
    border-radius: 4px;
    color: var(--yellow);
    font-size: 12px;
}

.priority_low{
    background-color: #FEF5D9 !important;
    color: #F5BE00 !important;
}
.priority_medium {
    background-color: #E3F9E2 !important;
    color: #28AF1D !important;
}
.priority_high{
    background-color: #FFE3E3 !important;
    color: #FF4444 !important;
}
.priority_critical{
    background-color: #E7C0C1 !important;
    color: #A00306 !important;
}



.table> :not(:last-child)> :last-child>* {
    border: 0;
}


.custom_modal {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Background overlay */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.custom_modal_dialog {
    background: #fff;
    padding: 20px;
    width: 400px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.modal_close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.enter_booking_code .modal-dialog {
    max-width: 382px;
}

.buy_tickets_modal .modal-dialog .modal-content {
    border-radius: 5px;
    padding: 24px 24px;
}

.modal-dialog .modal-content {
    border: 1px solid #D3DCE6;
    background: #FAFCFF;
}

.buy_tickets_header {
    text-align: center;
}

.buy_tickets_header h3 {
    color: var(--light-black);
    font-size: 24px;
    margin-bottom: 8px;
}

.buy_tickets_header p {
    color: var(--new-gray);
    font-size: 14px;
    width: 100%;
    max-width: 486px;
    margin: 0 auto 16px;
}

.buy_tickets {
    display: block;
    text-decoration: none;
    background-color: var(--yellow);
    border-radius: 5px;
    font-size: 16px;
    color: var(--light-black);
    padding: 9px 0;
    text-align: center;
    margin-bottom: 16px;
}

.buy_tickets:hover {
    color: var(--light-black);
}

.modal_close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}


.view_tickets_main_section {
    display: flex;
    flex-direction: row;
    column-gap: 24px;
    row-gap: 10px;
}

.view_tickets_left_box {
    flex-grow: 1;
    flex-shrink: 0;
    width: 30%;
}

.view_tickets_left_inner_box {
    border: 1px solid #E4E4E4;
    padding: 24px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.view_tickets_right_inner_box {
    border: 1px solid #E4E4E4;
    padding: 24px 24px;
    border-radius: 8px;
    width: 100%;
}

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

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

.view_tickets_left_inner_box_title a {
    color: var(--light-black);
    text-decoration: none;
    border: 1px solid #E4E4E4;
    padding: 9px 24px;
    border-radius: 8px;
    font-size: 14px;
}

.view_tickets_right_inner_box_content h4 {
    font-size: 18px;
    color: var(--dark_text);
	font-weight: 600;
    margin-bottom: 8px;
    word-wrap: break-word;
}



.event_img{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.event_img img{
    width: 85px;
    border-radius: 8px;
    margin-right: 16px;
}
.event_img h4{
    margin-bottom: 4px;
    word-wrap: break-word;
}
.event_img h5{
    font-size: 14px;
    color: var(--new-gray);
    margin-bottom: 0;
    word-wrap: break-word;
}


.mb_16 {
    margin-bottom: 16px !important;
}

.view_tickets_right_inner_box_content p {
    color: #535A6D;
    font-size: 16px;
	word-break: break-all;
    max-width: 850px;
}

.view_tickets_left_inner_body_text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #E4E4E4;
}

.view_tickets_left_inner_body_text:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.view_tickets_left_inner_body_text h4 {
    color: #535A6D;
    font-size: 16px;
}
.view_tickets_left_inner_body_text h4:last-child{
	color: var(--black) !important;
	font-weight: 600;
}

.ref_id {
    color: var(--black) !important;
}
.time{
	color: var(--black) !important;
	text-align: right;
	font-weight: 600;
}
.attach_img_section {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 20px;
    border-bottom: 1px solid #E4E4E4;
    row-gap: 20px;
    padding-bottom: 24px;

}

.attach_img_box .attachment_img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
	cursor: pointer;
}

.attach_img_box {
    position: relative;
	white-space: nowrap;
}

.att_close {
    cursor: pointer;
    position: absolute;
    top: 0;
    transform: translate(-50%, -30%);
}

.attachment_section {
    cursor: pointer;
}

.arrow-down {
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.arrow-up {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

.view_tickets_left_inner_box_content .support_ticket_inner_table_status {
    padding: 4px 40px;
    font-size: 16px;
}

.order_ticket_details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E4E4E4;
}

.text_right {
    text-align: right;
}

.order_ticket_details h4 {
    color: var(--light-black);
    font-size: 16px;
    padding: 5px 0;
}

.view_tickets_right_inner_box {
    margin-bottom: 24px;
}

.view_tickets_message_box {
    width: 100%;
    padding: 16px 16px;
    border: 0;
    border-radius: 8px;
    outline: none;
}

.view_tickets_note p {
    margin-top: 16px;
    font-size: 14px;
	font-weight: 300;
    font-style: italic;
    color: #535A6D;
}

.view_tickets_button_section {
    margin: 16px 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.attachment_btn {
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid var(--new-gray);
    color: var(--new-gray);
    font-size: 16px;
    border-radius: 8px;
    margin-right: 16px;
}

.attachment_btn img {
    margin-right: 9px;
}

.replay_btn {
    padding: 8px 24px;
    background-color: var(--orange);
    color: var(--white);
    font-size: 16px;
    border-radius: 8px;
	font-weight: 600;
    border: 1px solid var(--orange);
}

.replay_btn img {
    margin-left: 9px;
}

.view_tickets_profile_img img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

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

.view_tickets_profile_name h4 {
    color: var(--dark_text);
    font-size: 16px;
	font-weight: 600;
}

.view_tickets_profile_name h5 {
    color: var(--new-gray);
    font-size: 16px;
    margin-left: 16px;
}

.view_tickets_profile_section {
    display: flex;
    flex-direction: row;
    gap: 16px;
	border-bottom: 1px solid #E4E4E4;
    padding-bottom: 24px;
    margin-bottom: 24px;
	padding: 12px 12px 24px;
}
.customer_reply{
	background: #f9f9f9;
	border-radius: 5px;
}

.view_tickets_profile_details p {
    color: var(--new-gray);
    font-size: 16px;
    margin-top: 8px;
	margin-bottom: 0;
    width: 100%;
    max-width: 800px;
}


.view_tickets_profile_section:last-child {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.view_tickets_right_inner_box_two {
    max-height: 510px;
    overflow: auto;
}

.attachment_image_section {
    padding: 16px 0;
    border-top: 1px solid #E4E4E4;
    margin: 0 16px;
}

.attachment_image_section div {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    background-color: #F3F3F3;
    border: 1px solid #E4E4E4;
    padding: 8px 8px;
    border-radius: 8px;
}

.attachment_image_section img {
    width: 20px;
    height: 20px;
}

.attachment_image_section h5 {
    color: var(--new-gray);
    font-size: 14px;
    margin: 0 10px;
}

.cust_margin {
    margin: 0 100px 0 10px !important;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
.view_tickets_title h3 {
    color: #1C1C1C;
    font-size: 28px;
    margin-bottom: 24px;
	font-weight: 600;
}
.cust_header{
    background-color: var(--white);
	border-radius: 15px;

}
.cust_left_section{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 0;
}
.logo{
    height: 60px;
}
.cust_left_section h3{
    color: var(--light-black);
    font-size: 24px;
    margin-left: 10px;
    margin-bottom: 0;
    position: relative;
    top: 2px;
}
.cust_header .new_container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.cust_right_section{
    position: relative;
}
.cust_right_section img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    cursor: pointer;
}
.profile_dropdown{
    position: absolute;
    right: 0;
    top: 40px;
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 100px;
    display: none;
}
.profile_dropdown ul{
    padding: 0;
    margin: 0;
}
.profile_dropdown ul li{
    list-style-type: none;
}
.profile_dropdown ul li a{
    padding: 8px 8px;
    display: inline-block;
    text-decoration: none;
    color: var(--light-black);
}
.cust_right_section:hover .profile_dropdown{
    display: block;
}
.cust_left_section a{
    width: 40px;
    height: 40px;
    background-color: var(--black);
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.back_arrow{
    width: 20px;
}
.cust_pagination{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.cust_pagination ul li a{
    color: var(--light-black);
}
.cust_pagination ul li.active a{
    background-color: var(--yellow) !important;
    color: var(--light-black) !important;
    border: 1px solid var(--yellow) !important;
}
.support_table_action{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.eye_icon{
	margin-right: 30px;
}
.table_user_name{
	color: var(--dark_text) !important;
	font-weight: 600 !important;
}
.status_edit{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.status_edit .edit{
	margin-left: 16px;
}
.customer_profile{
	margin-top: 24px;
	display: flex;
	flex-direction: row;
	align-items: center;
	border-bottom: 1px solid #E4E4E4;
	padding-bottom: 20px;
}
.customer_profile .profile{
	width: 70px;
	height: 70px;
	border-radius: 100%;
}
.customer_profile h3{
	margin: 0 0 0 16px;
	color: var(--dark_text);
	font-size: 18px;
	font-weight: 600;
}
.support_modal .modal-content{
	max-width: 452px;
	margin: auto;
	border-radius: 8px;
	border: 1px solid #E4E4E4;
	background-color: var(--white);
	padding: 24px 24px;
}
.support_title h3{
	color: var(--dark_text);
	font-size: 18px;
	font-weight: 600;
}
.support_title{
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.support_title img{
	cursor: pointer;
	width: 20px;
}
.support_ticket_content{
	margin-top: 24px;
}
.support_ticket_content select{
	width: 100%;
	padding: 9px 16px;
	border: 1px solid #EEEFF1;
	color: var(--dark_text);
	border-radius: 8px;
	outline: none;
	box-shadow: none;
	font-weight: 500;
}
.support_info_save{
	margin-top: 16px;
	display: flex;
	justify-content: flex-end;
}
.support_info_save .save{
	padding: 8px 32px;
	background-color: var(--orange);
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	border: 0;
	border-radius: 8px;
	text-decoration: none;
}
.customer_filter{
	margin-bottom: 24px;
}
.custome_selection{
	padding: 12px 24px;
	width: 100%;
	max-width: 176px;
	border-radius: 8px;
	background-color: #EFF0F1;
	border: 1px solid #DFE2E4;
	outline: none;
	box-shadow: none;
	margin: 0 20px 0 0;
	font-weight: 500;
	color: var(--dark_text);
}
/**************************** end custome-support ****************************/

.select_gender_section .form-check{
	display: flex;
	padding-left: 0;
}
.selectDropdown{
	width: 100%;
}

.main_div{
	display: flex;
	flex-direction: row;
	column-gap: 30px;
}


.org_section{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	margin-bottom: 10px;
}
.org_box{
	box-shadow: rgb(149 157 165 / 4%) 0px 3px 18px;
    padding: 10px 14px;
    border-radius: 10px;
    background-color: var(--white);
    overflow: hidden;
    width: 100%;
}
.org_box h4{
	font-size: 16px;
}
.org_box h3{
	font-size: 26px;
	font-weight: 600;
}
.org_title{
	margin: 20px 0;
}
.org_title{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.org_title h3{
	font-size: 20px;
	font-weight: 600;
	margin: 0;
	padding-right: 5px;
	margin-right: 5px;
	border-right: 2px solid var(--black);
}
.org_title h4{
	font-size: 16px;
	margin: 0;
}
.back_btn{
	background-color: var(--black);
	color: var(--white);
	display: inline-block;
	padding: 4px 15px;
	border-radius: 8px;
	text-decoration: none;
}
.back_btn:hover{
	color: var(--white);
}
/************************************ media ***************************************/
@media (max-width: 1536.98px) {
	.dashboard_users_box {
		margin: 0 0 0 6px;
	}

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

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

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

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

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

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

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

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

	.section_space {
		padding-top: 20px;
	}

	.select_year {
		width: 20%;
	}

	.box {
		height: auto;
	}

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

	.select_year {
		width: 23%;
	}




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

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

	.custome_width {
		width: 34.5%;
	}

	.contact_page .input_filed {
		width: 50%;
	}

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

	.site_setting_middle_content {
		max-width: 360px;
	}

	.future_events_details_first_left_icon {
		margin-right: 15px;
	}

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

	.header_search_bar {
		max-width: 334px;
	}

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

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

	.future_event_box {
		margin-bottom: 10px;
	}
	.support_create_form {
        padding: 20px;
    }

    .support_create_form .new_form_box {
        margin-bottom: 15px;
    }

	.view_tickets_right_inner_box_content p{
		max-width: 700px;
	}
}

@media (max-width: 1440.98px) {
	.header_bar {
		padding: 37px 10px 24px;
	}
}

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

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

	.w-300 {
		width: 280px;
	}

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

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

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

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

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

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

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

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

	.dashboard_second_section {
		margin: 18px 0;
	}

	.select_year {
		width: 24%;
	}

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

	.dashboard_second_section {
		flex-direction: column;
	}

	.upcoming_main_content {
		gap: 30px;
	}

	.upcoming_event_details {
		margin-left: 8px;
	}

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

	.upcoming_event_box {
		margin-bottom: 24px;
	}

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

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

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

	.cust_pagination {
		margin-top: 25px;
	}

	.radio_button {
		margin: 0;
	}

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

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

	.add_new_eve_cat_des {
		width: 70%;
	}

	.custome_width {
		width: 44.5%;
	}

	.site_setting_middle_content {
		max-width: 300px;
	}

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

	.site_setting_section_space {
		margin-bottom: 24px;
	}

	.site_setting_header {
		padding-top: 40px
	}

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

	.future_events_details_first_section {
		flex-direction: column;
	}

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

	.future_events_box {
		flex-direction: column;
	}

	.future_events_details_second_section {
		margin-bottom: 20px;
	}

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

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

	.manage_events_number_section {
		gap: 14px;
	}

	.manage_events_das_last_section {
		gap: 14px;
	}

	.header_action {
		display: none;
	}

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

	.upcoming_event_section {
		border: 0;
	}

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

	.future_events_section {
		flex-direction: column;
	}
	.customer_supports_box_section {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
    }


    .footer_section {
        padding: 30px 0 0;
    }
	.customer_supports_box_section {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
    }


    .footer_section {
        padding: 30px 0 0;
    }

}

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

	.w-300 {
		width: 250px;
	}

	.error_body_content {
		gap: 20px;
	}

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

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

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

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

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

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

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

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

	.header_search_bar {
		padding: 10px;
	}

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

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

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

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

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

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

	.section_space {
		padding-top: 14px;
	}

	.dashboard_second_section {
		gap: 14px;
	}

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

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

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

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

	.table_title .add_btn {
		padding: 6px 26px;
	}

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

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

	.cust_pagination {
		margin-top: 20px;
	}

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

	.button_section {
		margin-top: 20px;
	}

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

	.add_page_row {
		flex-direction: column;
	}

	.add_page_description {
		margin-top: 30px;
	}

	.contact_page .input_filed {
		width: 70%;
	}


	.site_setting_middle_content {
		max-width: 100%;
	}

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

	.site_setting_header {
		padding-top: 10px;
	}

	.site_setting_middle_content {
		margin: 10px 0;
	}

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

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

	.manage_first_das_bottom_section {
		margin-top: 5px;
	}

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

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

	.white_box {
		max-width: 900px;
	}

	.box_logo {
		padding: 20px 0;
	}

	.box_logo img {
		width: 160px;
	}

	.form_title {
		padding-top: 40px;
	}

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

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

	.border-right {
		border-right: 0;
		border-bottom: 1px solid #EBEBEB;
		margin-bottom: 10px;
	}
	.report_dropdown_menu{
		width: 100%;
	}
	.report_content {
		padding: 14px 14px;
		margin-bottom: 14px;
	}
	.view_tickets_main_section{
        flex-direction: column;
    }
    .view_tickets_left_box{
        width: 100%;
    }
    .view_tickets_left_inner_box {
        padding: 12px 12px;
    }
    .view_tickets_left_inner_body_text{
        padding: 12px 0;
    }
    .ref_id{
        margin: 0;
    }
    .view_tickets_profile_section{
        flex-direction: column;
    }
    .footer_bottom{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer_menu ul{
        margin-top: 10px;
    }
    .footer_menu ul li{
        border-right: 0;
    }
    .footer_bottom ul li a{
        margin: 0 10px 0 0;
        padding: 0 10px 0 0;
    }
    .footer_mid_section {
        padding: 12px 0 20px;
    }
}

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

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

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

	.toggle_menu_btn {
		display: block;
	}


	.user_profile {
		margin-left: 16px;
	}

	.user_name {
		display: none;
	}

	.user_profile_img {
		padding: 3px;
	}

	.user_profile_img img {
		margin-right: 0;
	}

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

	.arrow {
		right: 0%;
	}

	.add_new_eve_cat_des {
		width: 100%;
	}

	.header_search_bar {
		margin-right: 12px;
	}

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

	.white_box {
		max-width: 700px;
	}

	.box_logo {
		padding: 10px 0;
	}

	.box_logo img {
		width: 140px;
	}

	.form_title {
		padding-top: 30px;
	}

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

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

	.submit_btn_section {
		margin: 40px 0;
	}

	.form_box .input_form {
		height: 50px;
	}
	.cust_left_section h3{
        font-size: 24px;
    }
}

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

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

	.toggle_menu_btn img {
		width: 30px;
	}

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

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

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

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

	.table_title .add_btn {
		padding: 5px 20px;
		font-size: 12px;
	}

	.user_add_icon {
		margin-right: 8px;
	}

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

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

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

	.table_title {
		margin-bottom: 15px;
	}

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

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

	.form_group {
		margin-bottom: 20px;
	}

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

	.user_title {
		margin-bottom: 10px;
	}

	.description_box {
		height: 130px;
	}

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

	.add_page_description .input_filed {
		height: 180px;
	}

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

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

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

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

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

	.site_settings_second_section {
		gap: 16px;
	}

	.site_setting_section_space {
		margin-bottom: 16px;
	}

	.site_setting_header {
		padding-top: 0px;
	}

	.header_img {
		margin-bottom: 0;
	}

	.future_events_details_last_section {
		margin-top: 20px;
	}

	.future_events_details_second_top_section {
		margin-bottom: 16px;
	}

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

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

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

	.manage_events_number_section {
		gap: 10px;
	}

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

	.manage_event_progess_box {
		margin-bottom: 15px;
	}

	.progress_title {
		margin-bottom: 10px;
	}

	.custome_progress_bar {
		height: 20px;
	}

	.manage_events_das_last_section {
		gap: 10px;
	}

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

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

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

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

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

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

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

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

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

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

	.white_box {
		max-width: 500px;
	}

	.form_input_section {
		flex-direction: column;
	}

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

	.form_title {
		padding-top: 10px;
	}

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

	.box_logo {
		padding: 10px 0 0;
	}

	.user_dropdown {
		border-radius: 10px;
	}

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

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

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

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

	.error_body_content {
		flex-direction: column;
	}

	.error_body_left_text img {
		width: 200px;
	}

	.w-300 {
		width: 200px;
	}

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

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

	.error_back_arrow {
		width: 25px !important;
		margin: 0 14px 0 0px;
	}
	.resport_input_box{
		flex-direction: column;
		align-items: flex-start;
	}
	.report_content_white_box{
		min-width: auto;
	}
	.report_dropdown_menu{
		width: 100%;
	}
	.resport_input_box button{
		margin: 0;
	}
	.dropdown_inner_group {
		margin-bottom: 5px;
	}
	.support_create_form {
        max-width: 500px;
    }
}

@media (max-width: 425px) {

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

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

	.header_search_bar {
		max-width: 230px;
		padding: 10px;
	}

	.search_icon img {
		width: 18px;
	}

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

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

	.user_profile {
		margin-left: 10px;
	}

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

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

	.toggle_menu_btn {
		margin-left: 12px;
	}

	.toggle_menu_btn img {
		width: 30px;
	}

	.side_bar {
		padding: 80px 28px 0 20px;
	}
	.side_bar_logo img {
        max-width: 60px;
    }

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

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

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

	.box_arrow_green {
		padding: 2px 10px;
	}

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

	.dashboard_first_section_users {
		width: 50%;
	}

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

	.dashboard_second_section {
		gap: 8px;
	}

	.dashboard_second_section {
		margin: 8px 0;
	}

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

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

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

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

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

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

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

	.upcoming_main_content {
		gap: 10px;
	}

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

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

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

	.input_filed {
		max-width: 100%;
	}

	.select_gender_section {
		padding-top: 0;
	}

	.button_section {
		margin-top: 10px;
	}

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

	.create_admin_role {
		flex-direction: column;
	}

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

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

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

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

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


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

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

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

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

	.add_page_description {
		margin-top: 5px;
	}

	.custome_width {
		width: 100%;
	}

	.contact_page .input_filed {
		width: 100%;
	}

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

	.user_upload_photos .upload-field-customized input[type="file"] {
		width: 140px;
		height: 140px;

	}

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

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

	.header_img {
		display: none;
	}

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

	.future_events_details_last_section {
		flex-direction: column;
	}

	.future_events_details_second_section {
		margin-bottom: 10px;
	}

	.future_full_description {
		margin-top: 10px;
	}

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

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

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

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

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

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

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

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

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

	.users_profile_content {
		margin-left: 14px;
	}

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

	.user_profile_data_box {
		padding: 10px 18px;
	}

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

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

	.white_box {
		max-width: 400px;
	}

	.form_section {
		padding: 0px 20px;
	}

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

	.error_body_content {
		text-align: center;
	}

	.h-500 {
		height: 300px;
	}
}


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

	.search_icon img {
		width: 14px;
	}

	.search {
		font-size: 14px;
	}

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

	.user_profile {
		margin-left: 10px;
	}

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

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

	.toggle_menu_btn {
		margin-left: 12px;
	}

	.toggle_menu_btn img {
		width: 22px;
	}

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

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

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

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

	.upcoming_event_details {
		margin: 5px 0;
	}

	.upcoming_event_box {
		margin-bottom: 10px;
	}

	.upcoming_event_section {
		padding-bottom: 10px;
	}

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

	.status_check {
		margin-top: 10px;
	}

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

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

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

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

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

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

	.add_page_description .input_filed {
		height: 150px;
	}

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

	.user_upload_photos .upload-field-customized input[type="file"] {
		width: 160px;
		height: 160px;

	}

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

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

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

@media (orientation: landscape) {
	.header_action {
		display: inline-flex;
	}

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

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

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