/* @import 'bootstrap/dist/css/bootstrap.min.css'; */
/* @import '@fortawesome/fontawesome-svg-core/styles.css';
@import '../../fonts/helvetica/fonts.css';
@import '../../fonts/caveat/fonts.css';
@import '../../fonts/poppins/fonts.css'; */

* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: 'Poppins-Regular' !important;
  width: 100%;
  height: 100%;
}

:root {
  --black: #000000;
  --new-black: #0D0D0D;
  --yellow: #FFC708;
  --white: #ffffff;
  --light-dark: #F4F4F4;
  --arrow: #595959;
  --border: #B6B6B6;
  --dark_text: #505050;
  --blue: #263D54;
  --dark-blue: #1569BD;
  --text-color: #7A7A7A;
  --hover: #FBFCFC;
  --login-border:#E4E4E4;
  --new-dark-blue: #3659E3;
  --new-gray: #767676;
  --light-black:#1C1C1C;
}

.note-current-fontname {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

/********************************* common-css ***********************************/
.new_container {
  width: 100%;
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.slick-track{
  margin-left: inherit!important;
}
/********************************* end_common-css ***********************************/

/********************************* new_header ***********************************/
.new_header {
  padding: 10px 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.new_header_logo a img{
  width: 60px;
}
.new_user_profile img{
  width: 40px;
}
.new_header_menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

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

.new_header_left_section {
  display: flex;
  align-items: center;
}
.new_header_left_section a{
  padding-right: 24px;
  position: relative;
}
/* .new_header_left_section a::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 80%;
  background-color: var(--new-black);
  margin-top: 8px;
} */
 .new_header_left_section a img:nth-child(1){
  border-right: 1px solid var(--new-black);
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
 }

.header_location {
  margin-left: 24px;
}

.header_location h3 {
  font-size: 18px;
  font-family: 'Poppins-SemiBold';
  margin: 0;
}

.location_dropdown .dropdown {
  position: relative;
  display: inline-block;
  border-bottom: 2px dotted var(--yellow);
}
.location_dropdown ul li a:hover{
  color: var(--black);
}
.location_dropdown .dropdown-toggle {
  font-family: 'Poppins-SemiBold';
  background-color: transparent;
  color: var(--yellow);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.location_dropdown .dropdown-toggle::after {
  content: none;
}

.location_dropdown .dropdown-toggle .arrow {
  margin-left: 5px;
  transition: transform 0.3s;
}

.location_dropdown .dropdown-toggle .arrow.openMenu {
  transform: rotate(180deg);
}

.location_dropdown .dropdown-menu {
  display: block;
  position: absolute;
  top: 120%;
  left: 0;
  background-color: white;
  min-width: 160px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 1000;
  padding: 0;
  overflow: hidden;
}
.language-menu{
  top: -200% !important;
}
.footer_location_dropdown .dropdown-menu {
  display: block;
  position: absolute;
  top: auto;
  bottom: 100%;
  left: 0;
  background-color: white;
  min-width: 160px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 1000;
  padding: 0;
  overflow: hidden;
}
.footer_location_dropdown .language-menu{
  top: auto !important;
  bottom: 100%;
}
.dropdown-menu-language{
  display: block;
  position: absolute;
  top: -200% !important;
  left: 0;
  background-color: white;
  min-width: 160px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 1000;
  padding: 0;
  overflow: hidden;
}

.location_dropdown .dropdown-menu li {
  padding: 8px 12px;
  cursor: pointer;
  white-space: nowrap;
}

.location_dropdown .dropdown-menu li:hover {
  background-color: #f1f1f1;
}

.location_dropdown .dropdown-menu li a {
  text-decoration: none;
  color: black;
  display: block;
  font-size: 14px;
}

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

.new_header_right_section ul li {
  list-style-type: none;
  margin: 0 0 0 40px;
}

.new_header_right_section ul li:first-child {
  margin: 0;
}

.new_header_right_section ul li:last-child {
  margin-right: 24px;
}

.new_header_right_section ul li a {
  font-family: 'Poppins-Medium';
  text-decoration: none;
  color: var(--new-black);
  transition: all .5s;
  font-size: 14px;
}

.new_header_right_section ul li a:hover {
  color: var(--yellow);
}

.new_header_right_section {
  display: flex;
  flex-direction: row;
}
.new_header_right_section ul li a.active{
  color: var(--yellow);
}

.new_user_profile img {
  cursor: pointer;
}

.new_toggle_btn {
  cursor: pointer;
  margin-left: 10px;
  display: none;
}

.new_toggle_btn img {
  width: 25px;
}
.new_header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 500;
  animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
  0% {
      transform: translateY(-40px);
  }

  100% {
      transform: translateY(0px);
  }
}
.user_dropdown{
  position: relative;
  
}
.new_dropdown_menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  transform-origin: 50% 0;
  transform: scaleY(0);
  z-index: 1000;
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

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

.user_logout img{
  width: 45px;
  height: 45px;
  border-radius: 100%;
}
.new_dropdown_menu button{
  font-family: 'Poppins-SemiBold' !important;
}
.user_logout:hover .new_dropdown_menu{
  opacity: 1 !important; 
  visibility: visible !important; 
  transform: scaleY(1) !important; 
} 
.user_logout:hover .new_dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.new_dropdown_menu div{
  background-color: var(--yellow) !important;
}

.new_dropdown_menu ul{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  margin: 0 !important;
}
.new_dropdown_menu ul li{
  padding: 12px 10px;
  margin: 0 !important;
  width: 100%;
  transition: all .5s;
}
.new_dropdown_menu ul li:hover{
  background-color: #f4f4f4;
}
.new_dropdown_menu ul li:last-child{
  background-color: var(--yellow);
  width: 100%;
}

.new_dropdown_menu ul li a:last-child {
  display: block;
}
.new_dropdown_menu ul li a{
  color: var(--black) !important;
}
.new_dropdown_menu ul li a:last-child:hover{
  color: var(--white);
}
/********************************* end_new_header ***********************************/


/********************************* new_search ***********************************/
.new_search_section {
  padding: 20px 0;
  background-image: url("/img/new_icon/yellow_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.new_search {
  background-color: var(--white);
  border-radius: 50px;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.new_search_content {
  padding: 12px 20px;
  position: relative;
}

.new_search_content::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 50%;
  border-right: 1px solid #767676;
  transform: translateY(-50%);
  opacity: 0.5;
}

.new_date_section {
  position: relative;
}

.new_date_section::after {
  content: none;
}

.new_search_box {
  width: 100%;
}

.new_box {
  border: 0;
  outline: none;
  width: 90%;
}

.new_search_box img {
  margin-right: 8px;
}

.new_box::placeholder {
  font-family: 'Poppins-Regular';
  color: #767676;
  font-size: 16px;
}

.new_search_box .location_dropdown .dropdown-toggle {
  padding: 0;
  color: #767676;
  font-family: 'Poppins-Regular';

}

.new_search_box .location_dropdown .dropdown {
  border-bottom: 0;
}

.location_dropdown {
  display: flex;
  align-items: center;
}

.new_search_large {
  flex-grow: 2;
  width: 40%;
}

.new_search_btn img {
  cursor: pointer;
  width: 60px;
  padding: 4px;
}

.new_search_box .location_dropdown .dropdown-menu {
  left: 30%;
  transform: translateX(-50px);
}

.new_search_box {
  display: flex;
}


.responsive_search{
  padding: 0 16px;
  display: none;
}
.mobile_responsive_search_box{
  width: 100%;
  padding: 10px 16px;
  border-radius: 30px;
  border: 0;
  outline: none;
  box-shadow: none;
}
.mobile_responsive_search{
  position: relative;
}
.mobile_responsive_search_box::placeholder{
  color: #BABABA;
}
.mobile_dropdown{
  width: 100%;
}
.mobile_res_search .location_dropdown{
  width: 100%;
}
.mobile_responsive_search_btn{
  width: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-30%, -50%);
}
.mobile_dropdown .arrow{
  position: absolute;
  right: 0;
}
.mobile_dropdown .dropdown-toggle{
  width: 100%;
}
.mobile_responsive_white_box{
  background-color: var(--white);
  border-radius: 30px;
  margin-top: 12px;
}
.mobile_two_cat{
  display: flex;
  flex-direction: row;
  column-gap: 16px;
}
.responsive_search .new_search_content{
  width: auto;
}

/********************************* end_new_search ***********************************/

/********************************* slider_section ***********************************/
.new_slider_section{
  margin: 12px 10px 0;
  position: relative;
}
.new_slider_section .slick-slide{
  padding: 0 12px 0 0;
  border-radius: 16px;
}
.new_slider_section .item{
  position: relative;
}
/* .new_slider_section .item::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: 1;
  border-radius: 20px;
} */
.new_slider_section .item .slider_img{
  width: 100%;
  height: 598px;
  object-fit: cover;
}
.new_slider_section .slick-list{
  border-radius: 16px;
}
.new_slider_content{
  position: absolute;
  bottom: 0px;
  left: 80px;
  z-index: 100;
  opacity: 0; 
  transition: all .8s;
  pointer-events: none;
}
.slick-center .new_slider_content {
  opacity: 1;
  bottom: 40px; 
  pointer-events: auto;
}
.slick-center {
  position: relative;
}
.new_slider_section .item::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: 1;
  border-radius: 20px;
}


.new_slider_content h4{
  font-family: 'Poppins-Medium';
  color: var(--yellow);
  font-size: 20px;
}
.new_slider_content h2{
  font-family: 'Poppins-SemiBold';
  font-size: 40px;
  color: var(--white);
  width: 100%;
  max-width: 661px;
  text-transform: uppercase;
}
.item_action{
  margin: 16px 0;
  display: flex;
  align-items: center;
}
.find_tickets_btn{
  font-family: 'Poppins-SemiBold';
  border: 0;
  padding: 12px 40px;
  border-radius: 8px;
  background-color: var(--yellow);
  color: #1C1C1C;
  font-size: 16px;
  text-decoration: none;
}
.new_slider_content h6{
  font-family: 'Poppins-Regular';
  color: var(--white);
  font-size: 18px;
  margin: 0 8px 0 0;
}
.new_slider_content h5{
  font-family: 'Poppins-SemiBold';
  color: var(--white);
  font-size: 20px;
}
.main_slider_action{
  position: absolute;
  top: 50%;
  width: 100%;
  opacity: 0;
  transition: all .5s;
}
.new_slider_section:hover .main_slider_action{
  opacity: 1;
} 
.main_slider_action img{
  cursor: pointer;
}
.main_slider_action .cat_left_arrow{
  position: absolute;
  left: 2%;
  width: 50px;
}
.main_slider_action .cat_right_arrow{
  position: absolute;
  right: 2%;
  width: 50px;
}
/********************************* end_slider_section ***********************************/

/********************************* new_category_section ***********************************/
.new_category_section{
  padding: 20px 0;
}
.new_category_box button{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.new_category_section ::-webkit-scrollbar {
  height:10px;
}

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

/* Handle */
.new_category_section ::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 10px;
}

.new_category_box_icon{
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 1px solid #BABABA;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .5s;
}
.new_category_box_icon img{
  width: 50px;
}
.new_category_box:first-of-type .new_category_box_icon {
  /* background-color: var(--yellow); */
  /* border: 1px solid var(--yellow); */

}
.new_category_box_icon:hover{
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
}
.category_img{
  transition: all .3s;
  will-change: transform;
  backface-visibility: hidden; 
}
.new_category{
  display: flex;
  flex-direction: row;
  column-gap: 60px;
  overflow-x: auto;
  overflow-y: hidden;
}
.new_category_box button{
  text-decoration: none;
  background-color: transparent;
  border: 0;
}
.new_category_box_icon.yellow{
  background-color: var(--yellow);
}
.new_category_box_icon:hover .category_img{
  transform: scale(1.1);
}
.new_category_box_icon_name{
  text-align: center;
  padding-top: 12px;
}
.new_category_box_icon_name h4{
  font-family: 'Poppins-Medium';
  color: var(--black);
  font-size: 16px;
}
/********************************* end_new_category_section ***********************************/


/********************************* slider_category ***********************************/
.slider_category{
  padding: 40px 0;
}

.bg_yellow{
  background-color: #FFFBEB;
}
.slider_title h3{
  font-family: 'Poppins-SemiBold';
  font-size: 28px;
  position: relative;
}
.new_border{
  width: 100px;
  height: 4px;
  background-color: var(--yellow);
  margin-left: 10px;
}
.slider_left_title{
  display: flex;
  align-items: center;
}
.slider_title{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider_button{
  font-family: 'Poppins-Medium';
  background-color: transparent;
  border: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--black);
}
.slider_button img{
  margin-left: 8px;
}
.new_category_slider_section{
  margin-top: 40px;
}

.new_category_slider_section_box{
  position: relative;
}
.new_category_slider_section_box_img{
  position: relative;
  display: flex;
  height: 300px;
  justify-content: center;
}
.new_category_slider_section_box_img img{
  border-radius: 8px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  position: relative;
}
.new_category_slider_section_box{
  padding: 0 20px 0 0;
}
.new_category_slider_section_content{
  padding: 8px 10px;
  background-color: var(--white);
  border-radius: 8px;
  position: absolute;
  bottom: 1%;
  width: 97%;
  margin: auto; 
}
.new_category_slider_section_content h2{
  color: var(--light-black);
  text-decoration: none;
  font-family: 'Poppins-SemiBold';
  font-size: 16px;
}
.new_category_slider_section_content a{
  color: var(--light-black);
  text-decoration: none;
  font-family: 'Poppins-SemiBold';
  font-size: 14px;
}
.new_category_slider_section_content h4{
  font-family: 'Poppins-SemiBold';
  color: var(--yellow);
  font-size: 12px;
  margin: 9px 0;
}
.ticket_location{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.new_category_slider_section_content .ticket_location img{
  width: 15px;
  height: auto;
  position: relative;
  z-index: 1 !important;
}
.new_category_slider_section_content .ticket_location h5{
  font-family: 'Poppins-Medium';
  margin-left: 6px;
  color: #767676;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.find_ticket_btn{
  background-color: #FFFBEB;
  padding: 6px;
  margin-top: 8px;
  border-radius: 8px;
}
.find_ticket_left_section p{
  font-family: 'Poppins-Medium';
  color: #1C1C1C;
  font-size: 13px;
}
.find_ticket_left_section h6{
  font-family: 'Poppins-SemiBold';
  font-size: 16px;
  color: #1C1C1C;
}
.find_ticket_btn{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.find_ticket_right_section_btn{
  font-family: 'Poppins-Medium';
  background-color: var(--yellow);
  color: var(--black);
  border: 0;
  padding: 7px 15px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}
.find_ticket_right_section .find_ticket_right_section_btn a{
  font-family: 'Poppins-Medium' !important; 

}
.slick-next{
  right: 0 !important;
  display: none !important;
}
.slider_category .slick-next{
  display: none;
}
.cat_like{
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 30px;
  z-index: 1;
}
.new_category_slider_section{
  position: relative;
}
.cat_arrow_btn{
  position: absolute;
  top: 50%;
  width: 100%;
}
.cat_arrow_btn .cat_left_arrow{
  left: -4%;
  position: absolute;
  cursor: pointer;
}
.cat_arrow_btn .cat_right_arrow{
  right: -2.5%;
  position: absolute;
  cursor: pointer;
}
.yellow_grid{
  position: relative;
}
.yellow_grid::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url("/img/new_icon/yellow_grid.png");
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.6;
}
.star{
  position: absolute;
  bottom: 0;
  left: 70px;
  transform: translate(0%, 50%);
}
.star_right{
  position: absolute;
  bottom: 0;
  right: 70px;
  transform: translate(0%, 50%);
}
.new_search_content .react-datepicker__day--keyboard-selected{
  background-color: var(--yellow) !important;
  color: var(--black) !important;
}

/********************************* end_slider_category ***********************************/

/********************************* extra_css ***********************************/
.show_password_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--login-border);
  border-radius: 5px;
}
.show_password_box .input_fild{
  border: 0;
}
.show_password{
  padding-right: 18px;
  cursor: pointer;
}
.grid_section{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  row-gap: 20px;
}
.load_more_btn{
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.load_more_btn a{
  font-family: 'Poppins-SemiBold';
  text-decoration: none;
  padding: 10px 45px;
  border: 1px solid var(--yellow);
  color: var(--light-black);
  font-size: 14px;
  border-radius: 5px;
  transition: all .5s;
}
.load_more_btn a:hover{
  background-color: var(--yellow);
}
.event_not_found{
  text-align: center;
  padding: 200px 0;
}
.event_not_found h4{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 24px;
}
/********************************* end_extra_css ***********************************/


/********************************* event_details ***********************************/
.new_events_section{
  position: relative;
  background-color: var(--black);
  overflow: hidden;
}
.new_events_banner{
  width: 100%;
  height: 100%;
  padding: 40px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  overflow: hidden;
  filter: blur(12px);
}
.new_events_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1; 
}
.new_eventz_image_section{
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2; 
  padding: 40px 0;

}
.new_eventz_image_left_section{
  position: relative;
}
.new_eventz_image_left_section img{
  width: 270px;
  height: 168px;
  object-fit: cover;
  border-radius: 8px;
}
.new_eventz_image_right_section{
  margin-left: 40px;
}
.new_eventz_image_right_section h4{
  font-family: 'Poppins-SemiBold';
  color: var(--white);
  font-size: 16px;
}
.new_eventz_image_right_section h1{
  font-family: 'Poppins-Bold';
  color: var(--white);
  font-size: 40px;
  margin: 10px 0;
}
.wallet_section{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.wallet_section img{
  width: 32px;
}
.wallet_section h3{
  font-family: 'Poppins-SemiBold';
  color: var(--white);
  margin-left: 12px;
  font-size: 16px;
}
.new_eventz_like{
  width: 32px;
  height: 32px;
  background-color: var(--yellow);
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 14px;
  right: 14px;
}
.new_eventz_like img{
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.new_events_details_tab_section{
  padding: 24px 0 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: sticky;
  top: 60px;
  z-index: 100;
  background: #fff;
}

.new_events_details_tab_menu ul{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.new_events_details_tab_menu ul li{
  list-style-type: none;
}
.new_events_details_tab_menu ul li a{
  text-decoration: none;
  color: var(--new-gray);
  font-size: 16px;
  margin: 0 18px 0 0;
  padding-bottom: 12px;
  display: inline-block;
}
.new_events_details_tab_menu ul li a.active{
  font-family: 'Poppins-Bold';
  color: #333333;
  border-bottom: 2px solid #333333;
}
.events_page_back{
  padding: 24px 0;
}
.events_page_back a{
  font-family: 'Poppins-SemiBold';
  color: #333333;
  font-size: 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.events_page_back a img{
  margin-right: 8px;
}
.new_events_header_left_text{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.tab_icon{
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 30px;
}
.new_events_header_left_text img{
  padding: 10px 12px;
  cursor: pointer;
}
.new_events_header_left_text img.active {
  background-color: var(--yellow);
}
.new_events_header_left_text img.active:nth-child(1){
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.new_events_header_left_text img.active:nth-child(2){
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.new_events_header_left_text h3{
  font-family: 'Poppins-Bold';
  font-size: 24px;
  color: var(--light-black);
}
.resuls{
  font-family: 'Poppins-Medium';
  font-size: 16px;
}
.new_events_details_header{
  margin-bottom: 24px;
}
.new_events_details_body_box{
  border: 1px solid #E5E5E5;
  padding: 24px 24px;
  border-radius: 16px;
  max-height: 700px;
  overflow: auto;
  margin-bottom: 40px;
}
.new_events_details_body_right_section{
  flex-grow: 1;
  flex-shrink: 0;
  margin-top: 52px;
  margin-left: auto;
  max-width: 25%;
}
.new_events_details_body_inner_right_section{
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 0px 16px;
}
.new_events_details{
  display: flex;
  align-items: flex-start;
  width: 100%;
  column-gap: 40px;
  padding-bottom: 40px;
}
.new_events_details_body_left_section{
  flex-grow: 6;
  flex-shrink: 0;
  max-width: 72%;
}
.new_events_details_body_inner_box{
  padding: 16px 16px;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.new_events_details_body_inner_date_box{
  text-align: center;
  padding: 16px;
  background-color: #FFF7DA;
  display: inline-block;
  border-radius: 8px;
}
.new_events_details_body_inner_date_box h4{
  font-family: 'Poppins-Medium';
  font-size: 14px;
  color: var(--light-black);
}
.new_events_details_body_inner_date_box h3{
  font-family: 'Poppins-SemiBold';
  font-size: 24px;
  color: var(--yellow);
}
.new_events_details_body_inner_time_box{
  margin-left: 16px;
}
.new_events_details_body_inner_time_box h4{
  font-family: 'Poppins-Medium';
  text-transform: uppercase;
  color: #4C4C4C;
  font-size: 16px;
  margin-bottom: 10px;
}
.new_events_details_body_inner_time_box h3{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 18px;
}
.new_events_details_body_inner_left_text{
  display: flex;
  align-items: center;
}
.new_events_details_body_inner_right_text{
  display: flex;
  align-items: center;
}
.new_events_details_body_inner_right_text .find_ticket_right_section_btn{
  border-radius: 5px;
  padding: 9px 16px;
}
.availability{
  font-family: 'Poppins-Medium';
  padding: 8px 10px;
  border-radius: 26px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  margin-right: 60px;
}
.availability_green{
  background-color: #DFF3DD;
}
.availability_red{
  background-color: #F5DFDF;
}
.availability_dot{
  width: 6px;
  height: 6px;
  border-radius: 100%;
  margin-right: 6px;
}
.availability_dot_green{
  background-color: #28AF1D;
}
.availability_dot_red{
  background-color: #BD2B2B;
}
.availability_dot_gray{
  background-color: var(--new-gray);
}
.availability_status_gray{
  color: var(--new-gray);
}
.availability_status_green{
  color: #28AF1D;
}
.availability_status_red{
  color: #BD2B2B;
}
.availability_yellow{
  background-color: #FFF7DA;
}
.availability_dot_yellow{
  background-color: #FFC708;
}
.availability_status_yellow{
  color: var(--yellow);
}
.availability_sold{
  background-color: #DBDBDB;
}
.sold_out{
  background-color: #DBDBDB;
  color: #767676;
}
.add_on_border-bottom {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.add_on_border-bottom:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.buy_tickets{
  font-family: 'Poppins-SemiBold';
  /* width: 100%; */
  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;
  border: 0;
}
.new_events_details_body_inner_right_box{
  border-bottom: 1px solid #E5E5E5;
  padding: 15px 0;
}
.new_events_details_body_inner_right_box:last-child{
  border-bottom: 0;
}
.new_events_details_body_inner_right_box .sub_title{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 20px;
  margin-bottom: 12px;
}
.events_location{
  font-family: 'Poppins-Regular' !important;
  color: var(--new-gray) !important;
  font-size: 16px !important;
  margin-bottom: 0 !important;
}
.presented{
  display: flex;
  align-items: center;
}
.presented img{
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-right: 12px;
}
.presented .events_location{
  font-family: 'Poppins-Medium' !important;
  color: var(--new-gray);
}
.social_icons{
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.icon_box{
  width: 48px;
  height: 48px;
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin: 0 16px 0 0;
}
.new_about_section{
  padding: 0 0 40px;
}

.about_content h3{
  font-family: 'Poppins-Bold';
  font-size: 24px;
  color: var(--light-black);
}
.about_description{
  margin-top: 40px;
}
.about_description h4{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 20px;
}
.about_description p{
  width: 100%;
  max-width: 822px;
  margin-top: 20px;
  color: var(--new-gray);
  font-size: 16px;
}
.about_description div{
  font-family: 'Poppins-Regular';
}
.about_description ul{
  margin-top: 20px;
  margin-left: 20px;
}
.about_description ul li{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 16px;
}
/********************************* end_event_details ***********************************/


/********************************* seat ***********************************/
.new_seat_selection_header{
  padding: 16px 0;
  background-color: #FFF1C1;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.new_seat_selection_header h3{
  font-family: 'Poppins-SemiBold';
  color: #333333;
  font-size: 16px;
  text-align: center;
}
.new_seat_body_section{
  padding: 12px 16px;
  max-height: 400px;
  overflow: auto;
}
.new_seat_body_section_box{
  padding: 8px 16px;
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 5px;
  margin-bottom: 8px;
}
.new_seat_title{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.new_seat_title h4{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 16px;
}
.new_seat_title h5{
  font-family: 'Poppins-SemiBold';
  color: var(--yellow);
  font-size: 16px;
}
.new_seat_details{
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.new_seat_details h3{
  font-family: 'Poppins-SemiBold';
  font-size: 14px;
  color: var(--light-black);
}
.new_seat_details img{
  cursor: pointer;
}
.new_seat_footer_section{
  padding: 16px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E4E4E4;
}

.yotix_logo{
  width: auto !important;
}
.new_seact_total_tickets_number h3{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 16px;
}
.new_seact_total_price h4{
  font-family: 'Poppins-Medium';
  font-size: 16px;
  color: var(--yellow);
}
.new_seact_total_price h4 span{
  color: var(--new-gray);
}
.new_seact_total_price h5{
  font-family: 'Poppins-Light';
  color: var(--new-gray);
  font-size: 12px;
  margin-top: 8px;
}
.buy_tickets_modal .modal-dialog{
  max-width: 592px;
}
.enter_booking_code .modal-dialog{
  max-width: 382px;
}
.booking_code_section{
  width: 80%;
  margin: auto;
}
.booking_code{
   padding: 8px 10px;
   border: 1px solid #E4E4E4;
   border-radius: 5px;
   outline: none;
   box-shadow: none;
   width: 100%;
   margin-bottom: 16px;
   background-color: var(--white);
}
.modal-dialog .modal-content {
  border: 1px solid #D3DCE6;
  background: #FAFCFF;
}
.buy_tickets_modal .modal-dialog .modal-content{
  border-radius: 5px;
  padding: 24px 24px;
}
.buy_tickets_header{
  text-align: center;
}
.buy_tickets_header h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 24px;
  margin-bottom: 8px;
}
.buy_tickets_header p{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 14px;
  width: 100%;
  max-width: 486px;
  margin: 0 auto 16px;
}
.buy_tickets_box{
  padding: 16px 16px;
  background-color: #F5F8FC;
  border: 1px solid #E4E4E4;
  border-radius: 6px;
  margin-bottom: 16px;
}
.buy_tickets_box:last-child{
  margin-bottom: 0;
}
.buy_tickets_inner_section{
  margin-top: 6px;
}
.ticket_count_left_section h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 16px;
  margin-bottom: 5px;
}
.ticket_count_left_section h4{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 14px;
}
.ticket_count_section{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.ticket_count_left_section h4 span{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
}
.ticket_count_right_section h3{
  font-family: 'Poppins-Medium';
  font-size: 12px;
  color: var(--new-gray);
}
.new_ticket_count_section{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  padding: 3px 10px;
  margin-top: 8px;
}
.new_ticket_count_section button{
  border: 0;
  background-color: transparent;
  font-size: 25px;
}
.new_ticket_count_section h4{
  font-family: 'Poppins-SemiBold';
  font-size: 16px;
}
.minus{
  color: var(--text-color);
}
.plus{
  color: var(--light-black);
}
.modal_close{
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.modal_close img{
  cursor: pointer;
}
/********************************* end_seat ***********************************/

/********************************* checkout ***********************************/
.new_checkout_section{
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  column-gap: 132px;
}
.new_checkout_left_section{
  flex-grow: 2;
  flex-shrink: 0;
  flex-basis: 0;
}
.new_checkout_right_section{
  flex-grow: 2;
  flex-shrink: 0;
  flex-basis: 0;
  max-width: 570px;
  position: sticky;
  top: 100px;
}
.new_checkout_title h3{
  font-family: 'Poppins-Medium';
  color: var(--black);
  font-size: 24px;
  margin-bottom: 15px;
}
.new_checkout_title p{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 16px;
}
.new_checkout_title p a{
  font-family: 'Poppins-SemiBold';
  color: var(--yellow);
}
.new_checkout_form_section{
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.new_form_label{
  font-family: 'Poppins-Medium';
  color: var(--black);
  font-size: 16px;
  margin-bottom: 8px;
}
.new_form_label span{
  color: red;
}
.new_input{
  padding: 12px 16px;
  border: 1px solid #E4E4E4;
  outline: none;
  box-shadow: none;
  width: 100%;
  max-width: 350px;
  border-radius: 5px;
}
.new_input::placeholder{
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
}
.pb-24{
  padding-bottom: 24px;
  border-bottom: 1px solid #BABABA;
}
.pt-24{
  padding-top: 24px;
}

.new_method_section{
  margin-top: 32px;
}
.new_method_section .status_box_btn{
  justify-content: flex-start;
}
.new_method_section .status_box_btn a{
  width: 30%;
}
.new_method_section .status_box_btn{
  margin: 0 0 20px 0;
}
.new_method_section_box{
  padding: 12px 16px;
  border-radius: 5px;
  border: 1px solid #E4E4E4;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new_ticket_section{
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background-color: #E4E4E4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ticket{
  width: 16px;
  height: 16px;
}
.new_method_section_left_text{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.new_ticket_text{
  margin-left: 8px;
}
.new_ticket_text h3{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
}
.new_ticket_text p{
  width: 100%;
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
  font-size: 14px;
}

.new_method_section_right_text{
  display: flex;
}
.new_radio_label{
  font-family: 'Poppins-Medium';
  margin-right: 8px;
  color: var(--light-black);
  font-size: 16px;
}

.new_method_section_box.active {
  background-color: #E1FFE1;
  border: 1px solid #00A600;
}
.new_method_section_box.active .new_ticket_section{
  background-color: #00A600;
}
.new_method_section_box.active .ticket{
  filter: brightness(0) invert(1);
}
.new_method_section_box.active .new_ticket_text h3{
  color: #00A600;
}
.new_method_section_box.active .new_radio_label{
  color: #00A600;
}
.new_method_section_box.active .form-check-input:checked{
  background-color: #00A600;
  border: 1px solid #00A600;
}
.ticket_insurance .new_method_section_box{
  margin-bottom: 12px;
}
.card_section{
  margin-top: 32px;
}
.new_card_section{
  padding: 20px 16px;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 16px;
  cursor: pointer;
}
.new_card_left_header span{
  font-family: 'Poppins-Medium';
  margin-left: 16px;
  color: var(--new-gray);
  font-size: 16px;
}
.new_card_header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.new_card_header .form-check-input:checked{
  background-color: #00A600;
  border: 1px solid #00A600;
}
.new_checkout_right_box{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: var(--white);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.new_checkout_right_box_header{
  padding: 16px 24px;
  background-color: #FFF7DA;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.new_checkout_right_box_header img{
  margin-right: 8px;
}
.new_checkout_right_box_header h4{
  font-family: 'Poppins-Regular';
  color: var(--light-black);
  font-size: 18px;
}
.new_checkout_right_box_header h4 span{
  font-family: 'Poppins-SemiBold';
}
.new_checkout_right_box_body_content{
  padding: 16px 24px;
}
.new_checkout_right_box_body_first_section{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 16px;
}
.new_checkout_right_box_body_img_section img{
  width: 160px;
  height: 100px;
  border-radius: 5px;
  object-fit: cover;
}
.new_checkout_right_box_body_text_section{
  padding-left: 16px;
}
.new_checkout_right_box_body_text_section h3{
  font-family: 'Poppins-SemiBold';
  font-size: 18px;
  color: var(--light-black);
}
.new_checkout_right_box_body_text_section h4{
  font-family: 'Poppins-Medium';
  margin: 8px 0;
  color: var(--light-black);
  font-size: 16px;
}
.new_checkout_right_box_body_text_section h5{
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
  font-size: 16px;
}
.new_checkout_right_box_body_second_inner_content{
  border-top: 1px solid #BABABA;
  padding: 16px 0;
}
.new_checkout_right_box_body_second_inner_content h3{
  font-family: 'Poppins-SemiBold';
  color: var(--black);
  font-size: 16px;
  margin-bottom: 24px;
}
.new_checkout_right_box_body_second_content h3{
  font-family: 'Poppins-SemiBold';
    color: var(--black);
    font-size: 16px;
    margin-bottom: 10px;
}
.new_checkout_right_box_body_second_top_text{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.new_checkout_right_box_body_second_top_text h3{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
  margin-bottom: 8px;
}
.new_checkout_right_box_body_second_top_text h3:nth-child(2){
  font-family: 'Poppins-SemiBold';
  font-size: 18px;
}
.new_checkout_right_box_body_second_top_text:nth-child(2) h3{
  margin-bottom: 0;
}
.new_checkout_right_box_body_second_top_text h6{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
}
.new_checkout_right_box_body_second_bottom_text{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.new_checkout_right_box_body_second_bottom_text h4{
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
  font-size: 16px;
}
.order_total{
  font-family: 'Poppins-SemiBold' !important;
  font-size: 20px !important;
}
.new_card_right_header_right{
  display: flex;
  margin: 10px 0;
}
.new_card_right_header_right p{
  color: var(--new-gray);
  font-size: 14px;
  margin-left: 12px;
}
.new_card_right_header_right .form-check-input:checked{
  background-color: #00A600;
    border: 1px solid #00A600;
}
/********************************* end_checkout ***********************************/

/********************************* status ***********************************/
.new_status_section{
  margin-top: 100px;
}
.new_status_box_left_side{
   background-color: var(--white);
   border-radius: 5px;
   padding: 140px 0;
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
   flex-grow: 30;
   flex-shrink: 0;
}
.new_status_section{
  display: flex;
  column-gap: 40px;
  width: 100%;
}
.new_status_box_right_side{
  flex-grow: 4;
  flex-shrink: 0;
}
.new_status_box_right_side{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: var(--white);
}
.new_status_box_right_side .new_checkout_right_box{
  box-shadow: none;
  background-color: transparent;
}
.status_header{
  text-align: center;
}
.status_header h3{
  font-family: 'Poppins-SemiBold';
  color: #28AF1D;
  font-size: 24px;
  margin: 12px 0;
}
.status_header p{
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
  font-size: 16px;
}
.status_btn{
  margin-top: 24px;
}
.new_status_btn{
  font-family: 'Poppins-Medium';
  text-decoration: none;
  padding: 12px 34px;
  margin: 0 0 0 16px;
  color: var(--light-black);
  font-size: 16px;
  border-radius: 5px;
  display: inline-block;
}
.view_tickets{
  border: 1px solid #E4E4E4;
}
.discover_more{
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
}
.new_status_box_header{
  padding: 16px 0;
  background-color: #FFF7DA;
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.new_status_box_header h3{
  font-family: 'Poppins-Medium';
  font-size: 18px;  
  color: var(--light-black);
}
.new_details{
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.new_details:last-child{
  margin-bottom: 0;
}
.new_details h4{
  font-family: 'Poppins-Medium';
  margin-left: 16px;
  font-size: 16px;
  color: var(--light-black);
}
.payment_failed{
  color: #FF4444 !important;
}
.p-120{
  padding: 12px 120px;
}
.new_status_box_right_side .new_checkout_right_box_body_second_inner_content h3{
  font-size: 20px;
}
/********************************* end_status ***********************************/


/********************************* profile ***********************************/
.profile_title h3{
  font-family: 'Poppins-Bold';
  color: var(--light-black);
  font-size: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E4E4E4;
}
.tab{
  min-width: 320px;
  position: sticky;
  top: 100px;
  height: 100%;
}

.new_tab_menu li{
  list-style-type: none;
}
.new_tab_menu li a{
  font-family: 'Poppins-Medium';
  text-decoration: none;
  color: var(--light-black);
  font-size: 16px;
  display: block;
  padding: 16px 16px;
  border-bottom: 1px solid #E4E4E4;
}
.new_tab_menu li:last-child a{
  color: #FF4444;
  border-bottom: 0;
}
.new_tab_menu li a img{
  margin-right: 12px;
  vertical-align: text-bottom;
}
.new_profile_inner_section{
  margin-top: 40px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: row;
  column-gap: 24px;
}
.tab{
  flex-grow: 1;
}

.new_tab_content{
  /* padding: 24px 24px; */
  /* background-color: #FAFAFA; */
}
.new_tab_content_seven{
  flex-grow: 7;
  padding: 24px 24px;
  background-color: #FAFAFA;
}
.new_tab_content_header h4{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 24px;
}
.new_tab_menu .active {
   background-color: #FFF7DA;
}
.new_tab_menu .active:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.new_tab_menu .active a{
  color: var(--yellow);
  border-bottom: 1px solid var(--yellow);
}
.tab_active_icon{
  display: none;
}
.new_tab_menu .active a .tab_defult_icon{
  display: none;
}
.new_tab_menu .active a .tab_active_icon{
  display: inline-block;
}
.account_details_box{
  width: 100%;
}
.w-720{
  max-width: 720px;
}
.new_tab_content_header p{
  font-family: 'Poppins-Regular';
  margin-top: 16px;
  color: var(--new-gray);
  font-size: 16px;
  width: 100%;
  max-width: 487px;
}
.new_profile_section{
  margin: 24px 0 0;
}
.new_profile_section .w-30{
  width: 30%;
}
.new_profile{
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100%;
  border: 1px solid #E4E4E4;
}
.upload_new_photo{
  font-family: 'Poppins-Medium';
  padding: 12px 18px;
  background-color: var(--white);
  color: var(--new-gray);
  font-size: 16px;
  border: 1px solid #E4E4E4;
  border-radius: 30px;
  margin: 0 16px;
  width: 90%;
}
.profile_delete{
  font-family: 'Poppins-Medium';
  padding: 12px 18px;
  background-color: #FBE7E7;
  color: var(--new-gray);
  border: 0;
  border-radius: 30px;
  font-size: 16px;
}
.new_form_section{
  margin-top: 40px;
}
.new_form_box .form_label{
  font-family: 'Poppins-Medium';
  font-size: 16px;
  color: var(--black);
  margin-bottom: 14px;
}
.new_form_box .form_label span{
  color: #FF4444;
  margin-left: 3px;
}

.new_form_input::placeholder{
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
  font-size: 14px;
}
.new_form_input{
  width: 100%;
  padding: 12px 16px;
  background-color: var(--white);
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  outline: none;
}
.new_form_section{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.new_form_section .new_form_box:last-of-type {
  grid-column: 1 / -1; 
}
.mt-24{
  margin-top: 24px;
}
.address_information .new_form_box:last-of-type {
  grid-column: auto; 
}
.submit_form_btn{
  padding-top: 40px;
  display: flex;
  justify-content: flex-end;
}
.submit_form_new_btn{
  font-family: 'Poppins-SemiBold';
  padding: 12px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  margin: 0 0 0 16px;
  min-width: 140px;
  text-align: center;
  border: 0;
}
.cancel{
  border: 1px solid var(--new-gray);
  color: var(--new-gray);
}
.save{
  background-color: var(--yellow);
  color: var(--light-black);
}
.w-550{
  width: 100%;
  max-width: 550px;
}
.change_password_form_section{
  margin-top: 40px;
}
.change_password_form_section .new_form_box{
  margin-bottom: 24px;
  position: relative;
}
.change_password_form_section .new_form_box:last-of-type {
  margin-bottom: 0;
}
.new_show_password{
  position: absolute;
  right: 0px;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
}
.account_delete_section{
  padding: 24px 0;
  border-bottom: 1px solid #E4E4E4;
}
.account_delete_section p{
  font-family: 'Poppins-Medium';
  color: #7A7A7A;
  font-size: 16px;
  margin-bottom: 16px;
}
.select_section .form-check-label{
  margin-bottom: 16px;
}
.new_card_section .form-check-label a{
  color: var(--yellow);
}
.form-check-label span{
  font-family: 'Poppins-Medium';
  margin-left: 16px;
  color: var(--black);
  font-size: 16px;
}
.account_delete_section .form-check-input{
  border: 2px solid #D9D9D9;
}
.account_delete_section .form-check-input:checked {
  background-color: #0d6efd;
  border: 2px solid #0d6efd;
}
.select_section{
  display: flex;
  flex-direction: column;
}
.mt-24{
  margin-top: 24px;
}

.identification_img img{
  width: 236px;
  height: 150px;
  border-radius: 5px;
}
.identification_status{
  font-family: 'Poppins-Medium';
  padding: 10px 19px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
}
.identification_status img{
  margin-right: 8px;
}
.identification_section{
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 24px;
}
.identification_pending{
  background-color: #FBF5E2;
  border: 1px solid #FFC708;
  color: #FFC708;
}
.identification_verifid{
  background-color: #E5F3E4;
  color: #28AF1D;
  border: 1px solid #28AF1D;
}
.identification_box{
  padding: 19px 0;
  background-color: var(--white);
  border: 1px dashed #E4E4E4;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}

.identification_box h4{
  font-family: 'Poppins-Regular';
  color: var(--yellow);
  font-size: 12px;
  margin-top: 10px;
}
.id_name{
  margin: 10px 0 0;
  color: var(--light-black);
  font-family: 'Poppins-SemiBold';
  font-size: 16px;
}
/********************************* end_profile ***********************************/

/******************************** shimmer *****************************************/
.new_shimmer_wrapper{
  display: flex;
  justify-content: space-between;
  width: 100%;
  column-gap: 20px;
  margin-bottom: 20px;
}
.new_shimmer_card {
  position: relative;
  -webkit-box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  border-radius: 6px;
  height: 300px;
  overflow: hidden;
  width: 100%;
}
.slider_shimmer{
  height: auto;
}
.shimmerBG {
  animation-duration: 2.2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: shimmer;
  animation-timing-function: linear;
  background: #ddd;
  background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
  background-size: 1200px 100%;
}
.category_shimmer .media{
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.category_shimmer .new_shimmer_card{
  box-shadow: none;
}
@-webkit-keyframes shimmer {
  0% {
      background-position: -100% 0;
  }
  100% {
      background-position: 100% 0;
  }
}

@keyframes shimmer {
  0% {
      background-position: -1200px 0;
  }
  100% {
      background-position: 1200px 0;
  }
}

  .media {
  height: 200px;
}

.p-32 {
  padding: 32px;
}

.title-line {
  height: 24px;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 20px;
}

.content-line {
  height: 8px;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 8px;
}
.end {
    width: 40%;
}
.m-t-24 {
  margin-top: 24px;
}
/******************************** shimmer *****************************************/

/******************************** Favorite_Section *****************************************/
.favorite_section{
  width: 100%;
  max-width: 766px;
  margin: auto;
}
.favorite_tab ul{
  display: flex;
  justify-content: space-between;
  background-color: #F8F8F8;
  padding: 8px;
  border-radius: 8px;
}
.favorite_tab ul li{
  list-style-type: none;
}
.favorite_tab ul li a{
  font-family: 'Poppins-SemiBold';
  text-decoration: none;
  font-size: 16px;
  color: var(--light-black);
  padding: 12px 54px;
  display: inline-block;
}
.favorite_tab ul .active{
  background-color: var(--yellow);
  border-radius: 5px;
}
.favorite_section_list{
  margin-top: 24px;
  padding-bottom: 24px;
}
.favorite_section_box{
  padding: 16px 24px;
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 16px;
}
.favorite_section_left_img img{
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}
.favorite_section_event_name{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.favorite_section_right_content{
  width: 100%;
}
.favorite_section_event_name a{
  text-decoration: none;
}
.favorite_section_event_name h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 16px;
}
.favorite_section_event_inner_description h4{
  font-family: 'Poppins-SemiBold';
  color: var(--yellow);
  font-size: 14px;
  margin: 12px 0;
}
.favorite_section_event_inner_description h5{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 14px;
  margin-bottom: 12px;
}
.favorite_section_event_inner_description h5 img{
  margin: 0 6px 0 0;
}
.favorite_section_event_inner_description h6{
  font-family: 'Poppins-Medium';
  font-size: 12px;
  background-color: #FFF7DA;
  padding: 4px 8px;
  border-radius: 18px;
  display: inline-block;
}
.no_events_found_box{
  text-align: center;
  margin-top: 130px;
}
.no_events_found_box h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 24px;
  margin: 18px 0;
}
.no_events_found_box a{
  font-family: 'Poppins-SemiBold';
  text-decoration: none;
  display: inline-block;
  background-color: var(--yellow);
  color: var(--light-black);
  font-size: 16px;
  padding: 12px 90px;
  border-radius: 5px;
}
.saved_icon{
  width: 30px;
  height: 30px;
  background-color: var(--yellow);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.saved_icon img{
  cursor: pointer;
}
.f-24{
  font-size: 32px !important;
}
/******************************** End_Favorite_Section *****************************************/


/******************************** Ticket_Summary *****************************************/
.ticket_summary_left_section{
  border: 1px solid #E4E4E4;
  padding: 16px 16px;
  border-radius: 5px;
  flex-grow: 0;
  flex-shrink: 0;
}
.new_ticket_summary{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  column-gap: 60px;
}

.new_ticket_summary_img img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 5px;
}

.new_ticket_summary_content{
  padding: 20px 0 0;
}

.summary_order_id{
  font-family: 'Poppins-Medium';
  background-color: #FFF7DA;
  color: var(--light-black);
  font-size: 16px;
  border-radius: 5px;
  display: inline-block;
  padding: 4px 8px;
}
.summary_order_event_name{
  font-family: 'Poppins-SemiBold';
  font-size: 24px;
  color: var(--light-black);
  width: 100%;
  max-width: 334px;
  margin: 16px 0;
}
.summary_date{
  font-family: 'Poppins-Medium';
  color: var(--yellow);
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.yellow_dots{
  width: 5px;
  height: 5px;
  background-color: var(--yellow);
  border-radius: 100%;
  display: inline-block;
  margin: 0 8px;
}
.customer_support{
  border: 1px solid #E4E4E4;
  background-color: transparent;
}
.order_cancel{
  font-family: 'Poppins-SemiBold';
  text-align: center;
  display: block;
  color: var(--yellow);
  font-size: 14px;
}
.ticket_summary_right_section{
  flex-grow: 1;
  flex-shrink: 0;
}
.ticket_summary_right_section_title h3{
  font-family: 'Poppins-SemiBold';
  color: var(--black);
  font-size: 24px;
}
.ticket_summary_right_table{
  width: 100%;
}
.ticket_summary_right_table{
  margin-top: 16px;
}
.ticket_summary_right_table thead tr th{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 16px;
  text-align: right;
}
.ticket_summary_right_table thead tr th:first-child{
  text-align: left;
}
.ticket_summary_right_table tbody tr td{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 16px;
}
.ticket_summary_right_table tbody tr td{
  text-align: right;
}
.ticket_summary_right_table tbody tr td:first-child{
  text-align: left;
}
.w-500{
  width: 500px;
}
.ticket_summary_right_table tfoot tr td{
  font-family: 'Poppins-SemiBold';
  text-align: right;
  color: var(--light-black);
  font-size: 18px;
}
.ticket_summary_right_table tfoot tr:last-child td{
  border: 0;
}
.ticket_summary_right_table .table>:not(caption)>*>*{
  padding: .8rem .5rem;
}
.iframe_loader{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.summary_button_section .button_content{
  display: flex;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.summary_button_section .button_content .discard , .summary_button_section .button_content .continue{
  width: 50%;
}
.summary_button_section .button_content .continue{
  margin: 0;
  background-color: var(--yellow);
  color: var(--light-black);
  border: 1px solid var(--yellow);
}
.swal2-icon{
  display:none !important
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){
  background-color:var(--yellow) !important;
  color:var(--black) !important
}
.cal_full_details{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.cal_event_name{
  display: inline-flex;
  flex-direction: column;
}
.cal_event_name a{
  text-decoration: none;
  color: var(--light-black);
}
.rbc-event-content{
  display: inline-flex !important;
}
/******************************** End_Ticket_Summary *****************************************/

/******************************** About *****************************************/
.about_top_padding{
  padding: 60px 0;
}
.about_page_title{
  text-align: center;
}
.about_page_title h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 40px;
}
.about_page_title p{
  width: 100%;
  max-width: 760px;
  margin: 16px auto 40px;
  color: var(--new-gray);
  font-size: 16px;
}
.about_wrapper{
  width: 100%;
  max-width: 1080px;
  margin: auto;
}
.about_tab ul{
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.about_tab ul li{
  list-style-type: none;
  margin: 0 16px 0 0;
}
.about_tab ul li a{
  font-family: 'Poppins-Medium';
  text-decoration: none;
  color: var(--light-black);
  font-size: 16px;
  display: inline-block;
  padding: 16px 30px;
  border-bottom: 2px solid var(--login-border);
}
.about_tab ul li a span{
  font-family: 'Poppins-SemiBold';
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background-color: #E4E4E4;
  color: var(--light-black);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
}
.about_inner_content{
  margin-top: 60px;
  display: flex;
  column-gap: 50px;
}
.about_left_inner h4{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 24px;
  margin-bottom: 16px;
}
.about_left_inner p{
  width: 100%;
  max-width: 487px;
  color: var(--new-gray);
  font-size: 16px;
}
.about_input_box{
  margin-bottom: 20px;
  position: relative;
}
.about_input_box label{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}
.about_box{
  width: 100%;
  border: 1px solid #E4E4E4;
  padding: 12px 16px;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
}
.about_box::placeholder{
  color: var(--new-gray);
}
.about_right_inner{
  flex-grow: 1;
  flex-shrink: 0;
}
.about_right_inner .form-check-label{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
}
.about_calender{
  position: absolute;
  top: 44px;
  right: 12px;
}
.about_form_btn{
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.about_form_btn a{
  font-family: 'Poppins-SemiBold';
  display: inline-block;
  background-color: var(--yellow);
  color: var(--light-black);
  font-size: 16px;
  border-radius: 5px;
  padding: 12px 32px;
  text-decoration: none;
}
.about_tab ul li a.active{
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
}
.about_tab ul li a.active span{
  background-color: var(--yellow);
}
.about_back_btn{
  padding: 28px 0;
}
.about_back_btn a{
  font-family: 'Poppins-SemiBold';
  text-decoration: none;
  color: var(--light-black);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}
.about_back_btn a img{
  margin-right: 12px;
}
.about_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 24px;
}
.about_flex .about_input_box{
  flex-grow: 1;
  flex-shrink: 0;
}
.cap_box{
  font-family: 'Poppins-Medium';
  background-color: var(--yellow);
  color: var(--light-black);
  font-size: 16px;
  border-radius: 100px;
  padding: 4px 20px;
  display: inline-block;
}
.single_about p{
  margin: 16px auto 24px;
}
.single_about h4{
  font-family: 'Poppins-SemiBold';
  color: var(--yellow);
  font-size: 26px;
}
.about_slider{
  background-color: var(--yellow);
  padding: 60px 0 0;
  margin: 30px 0;
}
.about_slider p{
  font-family: 'Poppins-SemiBold';
  text-align: center;
  color: var(--light-black);
  font-size: 24px;
}
.about_logos img{
  width: 100% !important;
}
.about_logos div:focus-visible{
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
.ticketing_section{
  padding: 60px 0;
}
.ticketing_box{
  padding: 22px 24px;
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
  text-align: center;
}
.ticketing_main_wrapper{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 24px;
  margin-top: 50px;
}
.ticketing_main_wrapper a{
  text-decoration: none;
}
.ticketing_box h3{
  font-family: 'Poppins-Medium';
  color: var(--black);
  font-size: 20px;
}
.about_last_section{
  width: 100%;
  padding: 60px 0 150px;
  background-image: url("/img/about_bg.png");
  background-size: contain;
}
.about_last_left_section h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 40px;
}
.about_last_left_section p{
  font-family: 'Poppins-Medium';
  margin: 16px 0;
  font-size: 18px;
  width: 100%;
  max-width: 448px;
}
.about_last_left_section a{
  background-color: var(--black);
  color: var(--yellow);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
}
.about_last_text{
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.about_last_right_inner_box{
  text-align: center;
  position: relative;
  padding: 0 50px;
}
.about_last_right_inner_box::after{
  content: "";
  position: absolute;
  top: 50%;
  right: -0%;
  width: 3px;
  height: 60%;
  background-color: var(--white);
  transform: translate(-50%, -50%);
}
.about_last_right_inner_box:last-child::after {
  content: none;
}
.about_last_right_inner_box h4{
  font-family: 'Poppins-SemiBold';
  font-size: 60px;
  color: var(--light-black);
  margin-bottom: 10px;
}
.about_last_right_inner_box h5{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
}
.about_last_right_inner_section{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.about_last_left_section{
  flex-grow: 1;
  flex-shrink: 0;
}
.about_last_right_section{
  flex-grow: 2;
    flex-shrink: 0;
}
/******************************** End_About *****************************************/


/******************************** Help_support *****************************************/
.support_tickets_header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.support_tickets_header h4{
  font-family: 'Poppins-SemiBold';
  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_ticket_section{
  margin: 24px 0;
}
.support_ticket_section thead tr th{
  font-family: 'Poppins-SemiBold';
  background-color: #F0F0F0;
  padding: 16px 24px;
  color: var(--light-black);
  font-size: 18px;
}
.support_ticket_section tbody tr td{
  padding: 16px 24px;
}

.support_ticket_section .table-responsive{
  border: 1px solid #E4E4E4;
  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;
}
.text_light{
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
}
.file_previews{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.support_img_previou img{
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

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


.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%);
}
.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;
}
.chat_section{
  margin: 40px auto;
  width: 100%;
  max-width: 812px;
  border: 1px solid var(--login-border);
  border-radius: 8px;
  padding: 24px 24px;
}
.chat_left_title h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 18px;
}
.chat_left_title h4{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 16px;
  margin-top: 8px;
}
.chat_title{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--login-border);
}
.chat_right_title a{
  font-family: 'Poppins-Medium';
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid var(--login-border);
  border-radius: 8px;
  color: var(--light-black);
  font-size: 16px;
  display: inline-block;
}
.chat_day{
  font-family: 'Poppins-Medium';
  text-align: center;
  color: var(--new-gray);
  font-size: 14px;
  margin-bottom: 24px;
}

.right_message_section p, .left_message_section p{
  padding: 12px 12px;
  background-color: #FFF9E6;
  color: var(--light-black);
  font-size: 14px;
  border-radius: 8px;
  border-top-right-radius: 0px;
  width: 100%;
  max-width: 500px;
}
.left_message_section p{
  background-color: #F3F5F7;
  border-radius: 8px;
  border-top-left-radius: 0px;
}
.right_message_section h5, .left_message_section h5{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 12px;
  margin-top: 12px;
}
.right_chat{
  display: flex;
  justify-content: flex-end;
  column-gap: 8px;
  margin-bottom: 8px;
  /* margin-right: 10px; */
}
.right_message_section{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.right_profile img, .left_profile img{
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.left_chat{
  display: flex;
  column-gap: 8px;
  margin-bottom: 8px;
}
.chat_footer{
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 18px 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.chat_input{
  border: 0;
  outline: none;
  width: 90%;
}
.chat_body{
  max-height: 650px;
  overflow: auto;
}
.chat_body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: var(--yellow);
} 
.support_ticket_box a{
  text-decoration: none;
}
.rbc-calendar{
  margin: 0 !important;
}
.event_icon{
  border: 0;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 100%;
}
.event_icon svg{
  color: var(--yellow);
}
.toolbar{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.rbc-header{
  padding: 10px 3px;
  font-size: 12px !important;
}
.rbc-date-cell{
  color: var(--light-black) !important;
}
.rbc-off-range-bg{
  background-color: #F6F6F6 !important;
}
.rbc-today{
  background-color: var(--white) !important;
}
.rbc-event{
  background-color: transparent !important;
  color: var(--light-black) !important;
  font-size: 14px !important;
  font-family: 'Poppins-SemiBold' !important;
}
.rbc-header{
  padding: 10px !important;
}
.rbc-month-view{
  margin-bottom: 20px !important;
}
.month_name{
  color: var(--light-black);
  font-family: 'Poppins-SemiBold';
}
.dot{
  width: 6px;
  height: 6px;
  background-color: #28AF1D;
  border-radius:100%;
  display: inline-block;
  position: relative;
  bottom: 1px;
}
.rbc-event div{
  font-size: 14px;
}
.from_text{
  font-size: 10px;
  color: var(--new-gray);
  display: block;
}
.availabilty_status{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.availabilty_dots{
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-right: 5px;
}
.av_green{
  background-color: #28AF1D;
}
.availabilty_status div{
  font-family: 'Poppins-Regular';
  color: var(--light-black);
  font-size: 14px;
  margin: 0 10px 0 0;
}
.av_yellow{
  background-color: #FFC708;
}
.av_red{
  background-color: #FF4444;
}
.av_gray{
  background-color: #767676;
}
.rbc-button-link{
  font-family: 'Poppins-Medium';
  font-size: 16px !important;
  color: var(--light-black);
  z-index: -1;
  position: relative;
}
.rbc-event, .rbc-day-slot .rbc-background-event{
  padding: 2px 21px !important;
}
.support_ticket_table_box h3{
  font-family: 'Poppins-SemiBold';
  font-size: 18px;
  color: var(--light-black);
}
.support_ticket_inner_table_box_data{
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-top: 8px;
}
.support_ticket_inner_table_box_data h4{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 16px;
}
.yellow_dot{
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--yellow);
  margin: 0 16px;
}
.support_ticket_inner_table_title{
  color: var(--light-black);
}
.support_ticket_inner_table_status{
  font-family: 'Poppins-Medium';
  padding: 2px 10px;
  border-radius: 4px;
  background-color: #FEF5D9;
  color: var(--yellow);
  font-size: 12px;
}
.support_ticket_table_status{
  font-family: 'Poppins-Medium';
  padding: 4px 8px;
  color: var(--white);
  font-size: 14px;
  border-radius: 8px;
  display: inline-block;
  width: 100px;
  text-align: center;
}
.customer_supports_box_section{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 24px;
  row-gap: 10px;
}
.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;
}
.customer_supports_left_box h2{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 28px;
}
.support_ticket_section tbody tr:last-child td{
  border: 0;
}
.bg_sky{
  background-color: #4FAAFF;
}
.bg_green{
  background-color: #28AF1D;
}
.bg_red{
  background-color: #FF4444;
}
.bg_rak{
  background-color: #D9A800;
}
.status_green{
  background-color: #E3F9E2;
  color: #E3F9E2;
}
.customer_supports_box_section{
  margin-bottom: 40px;
}
.view_tickets_title h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 28px;
  margin-bottom: 24px;
}


.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{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 18px;
}
.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{
  font-family: 'Poppins-Medium';
  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-family: 'Poppins-SemiBold';
  font-size: 18px;
  color: var(--light-black);
  margin-bottom: 8px;
}

.mb_16{
  margin-bottom: 16px !important;
}
.view_tickets_right_inner_box_content p{
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
  font-size: 16px;
}
.view_tickets_left_inner_body_text{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 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{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 16px;
}
.ref_id{
  font-family: 'Poppins-SemiBold' !important;
  color: var(--light-black) !important;
}
.attach_img_section{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5,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;
}
.attach_img_box{
  position: relative;
}
.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{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 16px;
  padding: 16px 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-style: italic;
  color: var(--new-gray);
}
.view_tickets_button_section{
  margin: 16px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.attachment_btn{
  font-family: 'Poppins-Medium';
  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{
  font-family: 'Poppins-SemiBold';
  padding: 12px 24px;
  background-color: var(--yellow);
  color: var(--light-black);
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid var(--yellow);
}
.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{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 16px;
}
.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;
}
.view_tickets_profile_details p{
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
  font-size: 16px;
  margin-top: 8px;
}
.view_tickets_profile_section{
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.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;
}
.view_tickets_left_box{
  width: 100%;
}
.attachment_image_section h5{
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
  font-size: 14px;
  margin: 0 10px;
}
.cust_margin{
  margin: 0 100px 0 10px !important;
}
/******************************** End_Help_support *****************************************/


/******************************** Verify *****************************************/
.new_verify_screen{
  width: 100%;
  height: calc(100% - 10%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.new_verify_box{
  padding: 40px 40px;
  border: 1px solid var(--login-border);
  border-radius: 5px;
  width: 100%;
  max-width: 630px;
}
.new_verify_box_title{
  text-align: center;
}
.new_verify_box_title h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 24px;
}
.new_verify_box_title p{
  color: var(--new-gray);
  font-size: 16px;
  width: 100%;
  max-width: 518px;
  margin: 16px auto 24px;
}
.new_verify_inner_box{
  border: 1px solid var(--login-border);
  border-radius: 5px;
  padding: 24px 24px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.new_verify_inner_box.active{
  border: 1px solid #28AF1D;
}
.box_verify_icon{
  display: none;
}
.new_verify_inner_box.active .box_verify_icon{
  display: inline-block;
}
.new_verify_inner_box.active .box_action{
  display: none;
}
.new_verify_inner_box.active .phone_desc{
  display: none;
}
.new_verify_inner_box.active .new_verify_inner_box_left{
  align-items: center;
}
.new_verify_inner_box:last-child{
  margin-bottom: 0;
}
.new_verify_inner_box_right_icon h4{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 16px;
}
.new_verify_inner_box_right_icon p{
  font-family: 'Poppins-Regular';
  color: var(--new-gray);
  margin-top: 8px;
  font-size: 12px;
}
.new_verify_inner_box_left{
  display: flex;
  flex-direction: row;
  column-gap: 12px;
}
.new_verify_inner_box_right a{
  font-family: 'Poppins-Medium';
  text-decoration: none;
  padding: 6px 15px;
  display: inline-block;
  background-color: var(--yellow);
  color: var(--light-black);
  font-size: 14px;
  border-radius: 5px;
}
.cancel_btn_box{
  display: flex;
  justify-content: flex-end;
}

.cancel_btn{
  display: inline-block;
  padding: 10px 37px;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
}
.btn_disabled{
  background-color: var(--new-gray) !important;
  color: var(--white) !important;
  border: 1px solid var(--new-gray);
  opacity: .5;
}

.verify_modal .modal-content{
  max-width: 488px !important;
  padding: 24px 24px;
  border-radius: 5px;
  margin: auto;
}
.verify_modal_title h3{
  font-family: 'Poppins-SemiBold';
  text-align: center;
  font-size: 22px;
  color: var(--light-black);
  margin-bottom: 24px;
}
.verify_modal_title p{
  text-align: center;
}
.verify_modal_title span{
  font-family: 'Poppins-Regular';
  color: var(--light-black);
}
.verify_modal_title a{
  color: var(--yellow);
}
.phone_number_box .form-control {
  width: 100% !important;
  padding: 20px 50px !important;
}
.phone_number_box .flag-dropdown{
  background-color: transparent !important;
}
.country-list {
  width: 440px !important;
}
.verify_modal p{
  font-family: 'Poppins-Regular';
  margin-top: 12px;
  color: var(--new-gray);
  font-size: 16px;
}
.verify_modal .form-check{
  margin: 15px 0;
}
.verify_modal .form-check .form-check-label{
  font-family: 'Poppins-Regular';
  font-size: 14px;
  color: var(--new-gray);
}
.verify_modal .form-check .form-check-label a{
  color: var(--yellow);
}
.verify_btn{
  display: flex;
  flex-direction: row;
  justify-content:center;
  align-items: center;
  column-gap: 16px;
}
.verify_btn a{
  font-family: 'Poppins-SemiBold';
  text-decoration: none;
  display: inline-block;
  padding: 12px 30px;
  color: var(--light-black);
  font-size: 16px;
  border-radius: 5px;
  min-width: 212px;
  text-align: center;
}
.verify_btn a:nth-child(1){
  border: 1px solid var(--login-border);
}
.verify_btn a:nth-child(2){
  background-color: var(--yellow);
}
.verify_input_filed{
  width: 48px;
  height: 48px;
  border: 1px solid var(--login-border);
  border-radius: 5px;
  background-color: transparent;
  text-align: center;
}
.verify_input_filed:focus{
  outline: 1px solid var(--yellow);
}
.verify_input_filed::placeholder{
  color: var(--login-border);
}
.verify_input_box{
  margin: 24px 0;
  display: flex;
  justify-content: center;
  column-gap: 16px;
}
.did_code{
  text-align: center;
  margin-bottom: 24px;
}
.did_code a{
  font-family: 'Poppins-Medium';
  text-decoration: none;
  color: var(--yellow);
}
.resend__action_btn{
  background-color: transparent;
  color: var(--yellow);
}
.rbc-event-content{
  z-index: -1 !important;
  position: relative !important;
}
.rbc-event{
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
}
/******************************** End_Verify *****************************************/


/******************************** yo_id_verification *****************************************/
.verification_tab{
  width: 100%;
  max-width: 750px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.verification_step{
  font-family: 'Poppins-Medium';
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #ABB7C2;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}
.verification_tab_box,.verification_tab_box_yellow{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.verification_tab_box::after,.verification_tab_box_yellow::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 80%;
  height: 3px;
  background-color: #ABB7C2;
  transform: translate(50%, -600%);
}
.verification_tab_box_yellow::after{
  background-color: var(--yellow);
}
.verification_tab_box:last-child::after {
  content: none;
}
.verification_step_yellow{
  font-family: 'Poppins-Medium';
  background-color: var(--yellow);
  color: var(--light-black);
}
.verification_tab_box h4{
  font-family: 'Poppins-Medium';
  font-size: 16px;
  margin-top: 16px;
  color: #ABB7C2;
}
.verification_name_yellow{
  color: var(--light-black) !important;
}
.verification_tab a{
  text-decoration: none;
}
.id_verification_box{
  padding: 24px 24px;
  border: 1px solid #E4E4E4;
  border-radius: 5px;
}
.id_verification_body_content{
  width: 100%;
  max-width: 675px;
  margin: 48px auto 0;
}
.id_verification_header{
  text-align: center;
}
.id_verification_header h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 24px;
}
.id_verification_header p{
  font-size: 16px;
  width: 100%;
  max-width: 524px;
  color: var(--new-gray);
  margin: 10px auto 24px;
}
.id_verification_body_content .new_input{
  width: 100%;
  max-width: 100%;
  color: var(--new-gray);
  font-size: 14px;
}

.id_verification_box .new_form_box:not(:last-child){
  margin-bottom: 24px;
}
.id_ver_btn a{
  font-family: 'Poppins-Medium';
  text-decoration: none;
  background-color: var(--yellow);
  display: inline-flex;
  align-items: center;
  color: var(--light-black);
  padding: 10px 24px;
  border-radius: 5px;
  font-size: 16px;
}
.id_ver_btn a img{
  margin-left: 8px;
}
.id_ver_btn{
  padding: 24px 0 150px;
  display: flex;
  justify-content: flex-end;
}
input:disabled {
  background-color: #E4E4E4 !important;
}
.id_verification_body_content .image-preview img{
  width: 120px;
}
.id_verification_body_content .identification_box{
  border: 1px solid #E4E4E4;
  padding: 32px 0;
}
.replace{
  text-decoration: none;
  background-color: var(--yellow);
  color: var(--light-black);
  font-size: 12px;
  padding: 6px 16px;
  display: inline-block;
  border-radius: 5px;
  position: absolute;
  right: 16px;
  bottom: 0;
  font-family: 'Poppins-Medium';
}
.id_verification_body_content .image-preview{
  position: relative;
}
.id_ver_btn .back{
  border: 1px solid var(--new-gray);
  color: var(--new-gray);
  background-color: transparent;
  margin-right: 16px;
}
.max-width-820{
  max-width: 820px;
}
.id_verification_body_content .new_status_box_left_side{
  padding: 100px 0;
}
.camera_process{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.camera_process button{
  margin-top: 24px;
  font-family: 'Poppins-Medium';
  background-color: var(--yellow);
  border: 0;
  padding: 12px 60px;
  border-radius: 5px;
}
.capture_img{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sign_up_box{
  width: 100%;
  max-width: 498px;
  margin: 30px auto 0;
  height: auto;
  border-radius: 5px;
}

.sign_up_img_box{
  display: flex;
  flex-direction: row;
  column-gap: 142px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100% - 10%);
  padding: 50px 0;
}
.sign_up_img_box .sign_up_box{
  margin: 0;
}
.signup_img{
  height: 100%;
  object-fit: contain;
}

.language_div{
  margin-top: 10px;
}
.language_div #language-select{
  width: 100%;
  min-width: 150px;
  padding: 5px;
  background: #000;
  color: #ffc708;
  border: 2px dotted #ffc708;
}
.language_div #language-select:focus{
  outline: none;
}
.custome_contry_flag .flag_img{
  width: 20px;
  margin-right: 5px;
}
.custome_country_header{
  border: 1px solid var(--login-border);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  align-items: center;
}
.custome_contry_flag{
  border-right: 1px solid #b9b9b9;
  width: 55px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
}
.custome_country_number_box{
  padding-left: 10px;
  width: 100%;
}
.custome_country_number_box h4{
  font-size: 14px;

}
.custome_country_body_section{
  border: 1px solid var(--login-border);
  padding: 10px 10px 0 10px;
  margin-top: -1px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  position: absolute;
  width: 100%;
  z-index: 100;
  background: #fff;
}
.custome_country_section{
  position: relative;
}
.search_county{
  border-bottom: 1px solid var(--login-border);
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.search_county img{
  margin-right: 8px;
  cursor: pointer;
}
.search_country_box{
  width: 80%;
  border: 0;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.search_country_box::placeholder{
  color: #c5c5c5;
}

.search_county_show_flag img{
  width: 20px;
}
.search_country_show{
  display: flex;
  align-items: center;
  padding: 8px 0;
  transition: all .5s;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
}
.search_country_show:last-child{
  border-bottom: 0;
}
.search_country_show:hover{
  background-color: #f4f4f4;
  padding: 8px 5px;
}
.search_country_show h3{
  font-family: 'Poppins-SemiBold';
  font-size: 14px;
  padding-left: 10px;
}
.search_country_show h3 span{
  font-family: 'Poppins-Light';
  color: gray;
}
.search_country_list{
  max-height: 250px;
  overflow: auto;
}

.phone_number_input{
  background-color: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  width: 90%;
}
.phone_number_input::placeholder{
  color: gray;
}
.let_logo{
  width: 150px;
}
.war_message{
  padding: 15px;
  background-color: #FFF7DA;
  width: 80%;
  margin: 0 auto 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.war_message p{
  margin: 0 5px;
  color: var(--light-black);
  font-size: 14px;
}
.war_message a{
  font-family: 'Poppins-Medium';
  color: var(--yellow);
  font-size: 14px;
}
.fist_verify_modal .verify_btn{
  margin-top: 30px;
}
.fist_verify_modal .verify_btn a{
  min-width: 159px;
}
.form_label_text{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.form_label_text a{
  font-family: 'Poppins-Medium';
  color: var(--yellow);
  text-decoration: none;
}
.remain_text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.remain_text p{
  margin: 0 5px 0 0;
}
.resend_code_txt{
  color: var(--yellow);
}
.resend__action_btn{
  margin-left: 0;
}
.footer_logo img{
  height: 70px;
}

.ins_title{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.ins_title h4{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
}
.ins_check{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.ins_check h5{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
  margin-right: 16px;
}
.refund_box p{
  color: #767676;
  font-size: 14px;
  margin-top: 4px;
}
.refund_box a{
  font-family: 'Poppins-Medium';
  color: var(--yellow);
  margin-top: 2px;
  width: 100%;
  max-width: 336px;
}

.cust_pagination{
  display: flex;
  justify-content: flex-end;
}
.cust_pagination li{
  margin: 0 8px 0 0;
}
.cust_pagination li a{
  border: 1px solid #E4E4E4;
  color: var(--new-gray);
  padding: 9px 17px;
  border-radius: 8px;
  font-family: 'Poppins-Medium';
}
.cust_pagination li a:focus{
  box-shadow: none;
  background-color: transparent;
  color: var(--new-gray);
}
.cust_pagination li a:hover{
  color: var(--new-gray);
  background-color: transparent;
}
.cust_pagination li.active a{
  background-color: var(--yellow) !important;
  color: var(--black);
  border: 1px solid var(--yellow);
}
.cust_pagination .page-item:first-child .page-link{
  border-radius: 8px;
}
.cust_pagination .page-item:last-child .page-link{
  border-radius: 8px;
}
.cust_pagination img{
  width: 8px;
}
.h-150{
  height: 150px;
}
.second_yall_logo{
  width: 80px;
}
/******************************** End_yo_id_verification *****************************************/
.ticket_protection_box{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
}
.ticket_protection_box span{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 12px;
  margin: 0 0 0 8px;
}
.ticket_protection_box span:last-child{
  margin: 0;
}
.mt-10{
  margin-top: 10px;
}
.see_more_cust{
  text-align: center;
}
.see_more_cust a{
  font-family: 'Poppins-SemiBold';
  margin: 20px 0;
  display: inline-block;
  border-radius: 5px;
}

/******************************** new_oraganizer_design *****************************************/
.new_org_header{
  padding: 16px 0;
  background-color: var(--white);
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  border-bottom: 1px solid #E4E4E4;
  position: relative;
}
.new_org_header .new_container{
  max-width: 90%;
}
.new_org{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.new_org .new_org_logo{
  position: relative;
  /* padding-right: 24px; */
  display: inline-block;
}
.new_org .new_org_logo::after{
  content: "";
  position: absolute;
  top: 0;
  right: -202%;
  width: 1px;
  height: 80%;
  background-color: var(--new-black);
  border-right: 1px solid #E4E4E4;
  margin-top: 8px;
}
.new_org_right_menu ul{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.new_org_right_menu ul li{
  list-style-type: none;
}
.new_org_right_menu ul li a{
  font-family: 'Poppins-Medium';
  text-decoration: none;
  margin: 0 24px 0 40px;
  color: var(--light-black);
  font-size: 16px;
}
.new_org_right_menu ul li a.active{
  font-family: 'Poppins-SemiBold';
  color: var(--yellow);
  position: relative;
}
.new_org_right_menu ul li a.active::after{
  content: "";
  position: absolute;
  bottom: -160%;
  left: 0;
  background-color: var(--yellow);
  width: 100%;
  height: 4px;
}
.new_org_right_menu{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.org_login_profile{
  display: inline-block;
  padding-left: 24px;
  position: relative;
}
.org_login_profile img{
  width: 48px;
  height: 48px;
  border-radius: 100%;
}
.org_login_profile::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 80%;
  background-color: var(--new-black);
  margin-top: 8px;
}
.new_org_toggle_btn img{
  width:25px;
  margin-left: 10px;
  display: none;
}
.org_user_content{
  padding-top: 40px;
}
.org_login_img{
  width: 100%;
  max-width: 700px;
}
.org_user_content{
  display: flex;
  align-items: center;
  column-gap: 145px;
}
.org_login_box{
  width: 100%;
  max-width: 460px;
}
.org_login_box .forgot_pwd .form-check{
  padding: inherit;
}
.org_login_box .form-check .form-check-input{
  margin-left: 0;
}
.org_login_box .forgot_pwd .form-check .form-check-label{
  margin-left: 10px;
}
.org_user_content .login_content{
  text-align: center;
}
.org_user_content .login_content h5{
  color: var(--new-gray);
  font-size: 14px;
  margin: 8px 0 32px 0;
}
.org_user_content .forget_par{
  max-width: max-content;
}
.org_wrapper{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.org_main_wrapper{
  display: flex;
  flex-direction: row;
  height: 100%;
  overflow: auto;
}
.org_side_bar{
  padding-top: 80px;
  padding-left: 26px;
  background-color: var(--white);
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  border-right: 1px solid #E4E4E4;
  flex-grow: 1;
  flex-shrink: 0;
  overflow: auto;
}
.org_side_bar ul{
  margin-right: 16px;
}
.org_side_bar ul li a img{
  margin-right: 16px;
}
.org_side_bar ul li{
  list-style-type: none;
  padding-bottom: 20px;
}
.org_side_bar ul li a{
  font-family: 'Poppins-Medium';
  text-decoration: none;
  color: var(--light-black);
  font-size: 16px;
  padding: 14px 16px;
  display: block;
  transition: all .2s;
}
.org_side_bar ul li a:hover{
  background-color: var(--yellow);
  border-radius: 6px;
}
.org_side_bar ul li a.active{
  background-color: var(--yellow);
  border-radius: 6px;
  position: relative;
}
.org_side_bar ul li a.active::after{
  content: "";
  position: absolute;
  left: -12%;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: var(--yellow);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.org_main_div{
  background-color: #F8FAFD;
  padding: 24px 24px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: auto;
}
.org_main_div::-webkit-scrollbar {
  width: 5px;
}
.org_main_div::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
.org_main_div::-webkit-scrollbar-thumb {
  background: var(--yellow); 
}
.org_main_div_title{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.org_main_div_title h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 32px;
}
/* .org_main_div_title img{
  width: 25px;
  cursor: pointer;
  display: none;
} */
.org_dashboard_first_section{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.mb-24{
  margin-bottom: 24px;
}
.org_white_box{
  background-color: var(--white);
  padding: 20px 28px;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.org_report h4{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 16px;
}
.org_report h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 28px;
  margin: 12px 0;
}
.org_report img{
  margin-right: 8px;
}
.org_report h5{
  color: var(--new-gray);
  font-size: 14px;
}
.org_report h5 .text_green{
  color: #28AF1D;
}
.org_report h5 .text_red{
  color: #FF4444;
}
.org_report_box{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.org_dashboard_second_section{
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.org_dashboard_second_section .org_white_box:nth-child(1){
  flex-grow: 7;
  flex-basis: 0;
}
.org_dashboard_second_section .org_white_box:nth-child(2){
  flex-grow: 2;
  flex-basis: 0;
}
.org_white_box_title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.org_white_box_title h4{
  font-family: 'Poppins-SemiBold';
  font-size: 24px;
  color: var(--light-black);
}
.org_graph_dropdown{
  width: 100%;
  max-width: 115px;
  color: var(--new-gray);
  font-size: 14px;
}
.org_num_dropdown{
  max-width: 150px;
}
.org_graph_dropdown:focus{
  outline: none;
  box-shadow: none;
}
.pb-20{
  padding-bottom: 20px;
}

.TransactionHistory {
  width: 100%;
  height: 300px;
  overflow-x: auto;
}



.TransactionHistory table {
  width: 100%;
  border-collapse: collapse;
}
.TransactionHistory thead tr th:nth-child(1){
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.TransactionHistory thead tr th:last-child{
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.TransactionHistory th{
  padding: 16px 24px;
  text-align: left;
  font-size: 14px;
  background-color: #FFF9E4;
  color: var(--light-black);
}
.TransactionHistory td {
  border-bottom: 1px solid #f1f0f0;
  padding: 22px 24px;
  text-align: left;
  font-size: 14px;
  color: var(--light-black);
}
.transaction_id img{
  margin-right: 16px;
}
.transaction_id span{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 14px;
}
.transaction_status{
  font-family: 'Poppins-Medium';
  padding: 5px 9px;
  border-radius: 30px;
  color: var(--white);
  font-size: 14px;
  text-align: center;
}
.status_success{
  background-color: #00B69B;
}
.status_pending{
  background-color: #FFC708;
}
.status_Failed{
  background-color: #FF4444;
}
.org_visitor_box{
  padding: 12px 16px;
  background-color: #F2F2F2;
  border-radius: 16px;
  margin-bottom: 12px;
}
.org_visitor_title{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
  margin-bottom: 8px;
}
.org_visitor_left_content img{
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid var(--white);
  margin-left: -20px;
}
.org_visitor_left_content img:nth-child(1){
  margin-left: 0;
}
.org_visitor_left_content{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.org_visitor_content{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 12px;
}
.org_visitor_content::after{
  content: "";
  position: absolute;
  left: 60%;
  top: 50%;
  width: 2px;
  height: 100%;
  background-color: #BDBEBE;
  transform: translate(-50%,-50%);
}
.org_visitor_right_counter h4{
  font-family: 'Poppins-SemiBold';
  color: #202224;
  font-size: 18px;
  margin-bottom: 8px;
}
.org_visitor_right_counter img{
  margin-right: 8px;
}
.org_visitor_right_counter h5{
  font-family: 'Poppins-Medium';
  color: #00B69B;
  font-size: 14px;
}

.org_inner_div{
  margin: 40px 24px 0;  
  width: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.org_footer{
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.org_footer h4{
  font-size: 16px;
  color: #808080;
}
.org_footer h4 a{
  color: var(--yellow);
}
.org_footer ul{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.org_footer ul li{
  list-style-type: none;
  margin: 0 5px 0;
  padding: 0 5px 0;
  position: relative;
}
.org_footer ul li::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 104%;
  width: 1px;
  height: 60%;
  background-color: #808080;
  transform: translate(500%, -50%);
}
.org_footer ul li:last-child::after{
  content: none;
}

.org_footer ul li a{
  text-decoration: none;
  color: #808080;
  font-size: 14px;
}
.manage_org_tab{
  background-color: var(--white);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 1px solid #E4E4E4;
}
.manage_org_tab ul{
  display: flex;
  flex-direction: row;
}
.manage_org_tab ul li{
  list-style-type: none;
}
.manage_org_tab ul li a{
  font-family: 'Poppins-Medium';
  padding: 16px 24px;
  display: inline-block;
  text-decoration: none;
  color: var(--light-black);
  font-size: 16px;
}
.manage_org_tab ul li a.active{
  font-family: 'Poppins-SemiBold';
  background-color: var(--yellow);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.manage_org_body_section{
  margin-top: 24px;
}
.org_label{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
  margin-bottom: 16px;
}
.org_new_profile{
  width: 155px;
  height: 150px;
  border-radius: 24px;
  object-fit: contain;
  border: 1px solid #E4E4E4;
}
.manage_profile_div{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.manage_input_box h5{
  font-family: 'Poppins-Medium';
  color: #FF4444;
  font-size: 14px;
  margin-left: 16px;
  margin-top: 24px;
}
.manage_org_body_section{
  width: 100%;
  max-width: 600px;
}
.manage_org_input_section{
  margin-top: 16px;
}
.manage_org_input_box{
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #E4E4E4;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
}
.manage_org_input_box::placeholder{
  font-size: 14px;
}
.manage_org_form_btn{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  text-align: center;
}
.manage_org_form_btn button, .manage_org_form_btn a{
  font-family: 'Poppins-SemiBold';
  padding: 10px 40px;
  margin: 0 0 0 16px;
  border-radius: 5px;
  min-width: 156px;
  border: 0;
  font-size: 16px;
  text-decoration: none;
}
.manage_org_form_btn button:nth-child(1){
  border: 1px solid #E4E4E4;
}
.mass_mail_description p{
  max-width: 600px;
  word-wrap: break-word;
}
.manage_org_form_btn button:nth-child(2){
  background-color: var(--yellow);
}
.manage_org_form_btn a:nth-child(1){
  /* background-color: var(--yellow); */
  /* color: var(--light-black); */
  color: var(--light-black);
  border: 1px solid #E4E4E4;
  background-color: var(--white);

}
.current_events_text{
  transform: translate(0%);
}
.current_events_text h3{
  font-size: 22px;
}
.manage_org_form_btn input[type="submit"]{
  font-family: 'Poppins-SemiBold';
  padding: 10px 40px;
  margin: 0 0 0 16px;
  border-radius: 5px;
  min-width: 156px;
  border: 0;
  font-size: 16px;
  background-color: var(--yellow);

}
.new_manage_event_tab ul{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.new_manage_event_tab ul li{
  list-style-type: none;
}
.new_manage_event_tab ul li a{
  font-family: 'Poppins-Medium';
  text-decoration: none;
  margin: 0 16px 0 0;
  padding: 12px 22px;
  display: inline-block;
  border: 1px solid var(--login-border);
  border-radius: 30px;
  color: var(--light-black);
  font-size: 14px;
}
.new_manage_event_tab ul li a.active{
  font-family: 'Poppins-SemiBold';
  background-color: #F9F2D8;
  border: 1px solid var(--yellow);
  color: var(--yellow);
}
.new_manage_event_tab{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.create_event_btn a{
  font-family: 'Poppins-SemiBold';
  text-decoration: none;
  padding: 12px 24px;
  display: inline-block;
  background-color: var(--yellow);
  color: var(--light-black);
  font-size: 16px;
  border-radius: 5px;
}
.manage_event_filter{
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 16px;
}
.manage_event_filter_box{
  background-color: var(--white);
  border-radius: 5px;
  display: inline-block;
}
.manage_event_filter_input{
  padding: 12px 16px;
  border: 0;
  outline: none;
  box-shadow: none;
  width: 90%;
}

.manage_event_filter_input_dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.new_future_table .responsive-table{
  width: 100%;
  white-space: nowrap;
}
.update_details{
  background-color: var(--yellow);
  border: 1px solid var(--yellow) !important;
}
.new_future_table thead tr th{
  padding-bottom: 16px;
}
.new_future_table .responsive-table {
  width: 100%;
  border-spacing: 0 16px;
}
.new_future_table thead tr th{
  color: var(--light-black);
  font-size: 16px;
  font-family: 'Poppins-SemiBold';
}
.new_future_table tbody td{
  padding: 10px 0;
}
.new_future_table tbody td a{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.org_new_eventz_name{
  margin-left: 14px;
}
.org_new_eventz_name h4{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 16px;
  margin-bottom: 8px;
}
.org_new_eventz_name h5{
  color: var(--new-gray);
  font-size: 14px;
}
.org_new_eventz_img{
  width: 95px;
  height: 59px;
  border-radius: 5px;
}
.new_future_table tbody td{
  color: var(--light-black);
  font-size: 16px;
}
.new_org_table_action{
  position: relative;
  display: flex;
}
.new_org_table_action a img{
  width: 40px;
}
.new_org_table_action a img{
  margin: 0 0 0 20px;
}
.new_future_table tbody{
  border-collapse: collapse;
}
.new_future_table tbody tr{
  border-bottom: 1px solid #ddd;
}

.icon_hidden{
  display: none;
}
.org_main_div_wihtout_bg{
  background-color: transparent;
}
.org_inner_div .switch_section{
  align-items: flex-start;
}
.org_inner_div .c_date_section h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 24px;
}
.org_button{
  width: 90%;
}
.stream_table{
  width: 100%;
}
.stresming_filter_seaction{
  margin-bottom: 24px;
}
.stresming_filter_seaction .manage_event_filter{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
}
.stresming_filter_seaction .manage_event_filter .manage_event_filter_box{
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
}
.stresming_filter_seaction .manage_event_filter .manage_event_filter_box img{
  margin-right: 15px;
}
.stresming_filter_seaction .manage_event_filter .manage_event_filter_box .manage_event_filter_input{
  width: 100% !important;
}
.stresming_filter_seaction .manage_event_filter .manage_event_filter_box:nth-child(3) {
  max-width: 200px;
}
.stresming_filter_seaction a{
  font-family: 'Poppins-SemiBold';
  display: inline-block;
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  color: var(--light-black);
  border: 1px solid #E4E4E4;
}
.page_title h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 24px;
}
.back a{
  font-family: 'Poppins-SemiBold';
  display: inline-block;
  background-color: var(--yellow);
  color: var(--light-black);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.back a img{
  margin-right: 5px;
}
.filter_submit{
  background-color: var(--yellow);
}
.filter_clear{
  background-color: var(--white);
}
.event_max_title{
  width: 350px;
}
.stream_table thead{
  background-color: #E6ECF2;
}
.stream_table thead tr th{
  padding: 14px 16px;
  font-size: 16px;
  color: var(--light-black);
  white-space: nowrap;
}
.stream_table tbody tr{
  border-bottom: 1px solid #ddd;
}
.stream_table tbody tr td{
  padding: 14px 16px;
  font-size: 14px;
  color: var(--light-black);
  font-family: 'Poppins-Medium';

}
.stream_table thead tr th:nth-child(1){
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.stream_table thead tr th:last-child{
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.org_event_img{
  width: 76px;
  height: 40px;
  border-radius: 4px;
}
.status_green,.status_red{
  font-family: 'Poppins-SemiBold';
  color: #28AF1D;
}
.status_red{
  color: red;
}
.play_stream{
  font-family: 'Poppins-Medium';
  padding: 6px 20px;
  display: inline-block;
  border-radius: 5px;
  background-color: var(--yellow);
  color: var(--light-black);
  font-size: 14px;
  text-decoration: none;
}
.stream_edit{
  font-family: 'Poppins-Medium';
  padding: 6px 20px;
  display: inline-block;
  border-radius: 5px;
  background-color: #E5E6E9;
  color: var(--light-black);
  font-size: 14px;
  text-decoration: none;
  margin: 0 16px;
}
.stream_table{
  overflow: auto;
}
.org_star{
  color: red;
}
.new_org_date{
  display: flex;
}

.bg_white{
  background-color: var(--white);
}
.new_org_input{
  border: 0;
  outline: none;
  box-shadow: none;
  width: 100%;
}
.org_inner_time_section{
  display: flex;
  gap: 10px;
}
.org_inner_time_section .manage_org_input_section{
  width: 100%;
}
.streaming_label{
  margin: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.livestraimg_toggle{
  display: flex;
  align-items: center;
}
.livestraimg_toggle input:checked+.slider{
  background-color: var(--yellow);
  border-color: var(--yellow) !important;
}
.livestraimg_toggle .switch{
  height: 28px;
}
.livestraimg_toggle .slider:before{
  bottom: 4px;
}
.livestraimg_toggle p{
  font-family: 'Poppins-Medium';
  margin-left: 12px;
  color: var(--light-black);
}
.streaming_label p{
  font-family: 'Poppins-Medium';
  font-size: 14px;
  color: var(--light-black);
  text-align: center;
  background-color: #F9F2D8;
  border: 1px solid var(--yellow);
  border-radius: 30px;
  padding: 8px 16px;
  display: inline-block;
}

.streamin_screen img{
  width: 100%;
}
.streaming_controller_action button{
  outline: none;
  border: 0;
  background-color: transparent;
  margin: 0 0 0 24px;
}
.streaming_controller{
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.streaming_controller_action_btn a, .streaming_controller_action_btn button{
  font-family: 'Poppins-SemiBold';
  text-decoration: none;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 30px;
  font-size: 16px;
  margin: 0 0 0 16px;
}
.streaming_controller_action_btn a:nth-child(1){
  background-color: #FF4444;
  color: var(--white);
}
.streaming_controller_action_btn a:nth-child(2){
  background-color: var(--yellow);
  color: var(--light-black);
}
.cust_flex{
  /* display: flex; */
  flex-direction: row;
  align-items: center;
}
.btn_yellow{
  background-color: var(--yellow);
  color: var(--light-black);
}
.btn_yellow:hover{
  background-color: var(--yellow);
  color: var(--light-black);
}
.btn_red{
  background-color: #FF4444;
  color: var(--white);
}
.btn_red:hover{
  background-color: #FF4444;
  color: var(--white);
}
.streaming_controller_action_btn a:nth-child(3){
  background-color: #E5E7E9;
  color: var(--light-black);
}
.w-250{
  width: 250px;
}
.streaming_url {
  margin-left: 25px;
}
.text-right{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.streaming_url_box {
  background-color: var(--white);
  padding: 12px 16px;
  border: 1px solid var(--login-border);
  display: flex; 
  align-items: center;
  justify-content: space-between; 
  flex-wrap: wrap;
  border-radius: 5px;
  margin-bottom: 12px;
  width: fit-content;
}

.streaming_url_box p {
  font-size: 14px;
  color: var(--new-gray);
  margin: 0; 
  flex: 1;
  word-break: break-word; 
}

.streaming_url_box p span {
  font-family: 'Poppins-Medium';
  color: var(--light-black);
}

.streaming_url_box img {
  margin-left: 12px;
  width: 20px; 
  height: 20px;
}
.streaming_details_video{
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.streaming_details_video img{
  width: 100%;
  max-width: 560px;
  height: 310px;
}
.streaming_details_video .streaming_controller_action_btn{
  margin: 24px 0 40px;
}

.streaming_details_white_box{
  padding: 24px 24px 0;
  background-color: var(--white);
  border: 1px solid #E4E4E4;
  border-radius: 8px;
  margin-bottom: 16px;
}
.streaming_details_white_box_title h3{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 18px;
  border-bottom: 1px solid #E4E4E4;
  padding: 0 0 24px 0;
  margin-bottom: 24px;
}
.streaming_details_white_box_inner_details h4{
  font-family: 'Poppins-Medium';
  color: var(--new-gray);
  font-size: 16px;
  margin-bottom: 10px;
}
.streaming_details_white_box_inner_details h5{
  color: var(--light-black);
  font-size: 18px;
  font-family: 'Poppins-SemiBold';
}
.streaming_details_white_box_inline_details{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  row-gap: 24px;
  margin-bottom: 24px;
}
.mb-24{
  margin-bottom: 24px;
}
.streamin_details_status{
  color: #28AF1D !important;
}
.streamin_details_status_red{
  color: #FF4444 !important;
}
.push_notification thead tr th{
  font-family: 'Poppins-Regular';
}
.push_notification_img{
  width: 32px;
  height: 32px;
  object-fit: cover;
}
.notification_delete{
  background-color: #F9DFE1;
}
.pagination{
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}
.pagination ul{
  display: flex;
  flex-direction: row;
}
.pagination ul li{
  list-style-type: none;
  margin: 0 0 0 8px;
}
.pagination ul li a{
  font-family: 'Poppins-Medium';
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #E4E4E4;
  border-radius: 8px;
  text-decoration: none;
  color: var(--new-gray);
}
.pagination ul li a.active{
  color: var(--light-black);
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
}
.notification_radio{
  display: flex;
}
.notification_radio .form-check{
  margin: 0 10px 0 0;
}
.notification_radio .form-check .form-check-label{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
}
.w-720{
  max-width: 720px !important;
}
.bg_yellow_btn{
  background-color: var(--yellow);
}
.report_white_box{
  padding: 24px 24px;
  background-color: var(--white);
  border-radius: 10px;
  min-width: 300px;
}
.report_white_box h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 20px;
}
.report_dropdown h4{
  color: var(--new-gray);
  font-size: 14px;
  margin-bottom: 8px;
}
.report_body_box{
  display: flex;
  flex-direction: row;
  column-gap: 24px;
  align-items: flex-start;
}
.report_dropdown{
  width: 30%;
}
.report_manage_org_input_section{
  margin-bottom: 16px;
}
.report_white_box p{
  max-width: 200px;
}
.report_body_box .create_event_btn{
  margin-top: 22px;
}
.repo_box{
  margin-bottom: 40px;
}
.repo_box h2{
  font-family: 'Poppins-SemiBold';
  margin-bottom: 24px;
  color: var(--light-black);
  font-size: 24px;
}
.back_to_list{
  font-family: 'Poppins-SemiBold';
  text-decoration: none;
  display: inline-block;
  padding-bottom: 15px;
  color: var(--light-black);
}
.back_to_list img{
  margin-right: 10px;
}
.new_org_dropdown_menu ul {
  display: flex;
  flex-direction: column;
}
.new_org_dropdown_menu{
  border-radius: 8px;
}
.new_org_dropdown_menu ul li a{
  margin: 0;
  white-space: nowrap;
}
.new_org_name_email{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.org_user_name_or_email{
  padding-right: 16px;
}
.org_user_name_or_email h5{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
  text-align: right;
}
.org_user_name_or_email h4{
  font-family: 'Poppins-Regular';
  font-size: 14px;
  color: var(--new-gray);
}
.new_org_dropdown_menu ul li a img{
  width: 24px;
  margin-right: 12px;
}
.new_org_dropdown_menu ul li{
  padding: 0;
}
.new_org_dropdown_menu ul li a {
  font-family: 'Poppins-Medium';
  border-bottom: 1px solid #E4E4E4;
  padding: 2px 14px;
  transition: all .5s;
  color: var(--new-gray) !important;
}
.new_org_dropdown_menu ul li:last-child{
  background-color: transparent;
}
.new_org_dropdown_menu ul li:last-child a{
  border-bottom: 0;
}
.new_org_dropdown_menu ul li a:hover{
  background-color: #FFF9E6;
  color: var(--yellow) !important;
}
.org_user_drop_active{
  display: none;
}
.new_org_dropdown_menu ul li a:hover .org_user_drop_unactive{
  display: none;
}
.new_org_dropdown_menu ul li a:hover .org_user_drop_active{
  display: inline-block;
}

.new_tooltip{
  font-family: 'Poppins-Medium';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translate(-30%, -0%);
  font-size: 12px;
  background: #eeeeee;
  padding: 1px 12px;
  color: #000;
  border-radius: 5px;
  opacity: 0;
  transition: all .5s;
}
.new_org_table_icon:hover .new_tooltip{
  opacity: 1;
}
.org_table_header{
  padding: 14px 24px;
  background-color: #D3DCE6;
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
}
.org_table_header div{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
}
.org_table_header div:first-child{
  flex-grow: 4;
  flex-shrink: 0;
}
.org_table_header div:nth-child(2){
  flex-grow: 1;
  flex-shrink: 0;
}
.org_table_header div:nth-child(3){
    flex-grow: 2;
    flex-shrink: 0;
}
/******************************** End_new_oraganizer_design *****************************************/

.note{
  color: red;
}
.mass_full_section {
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 30px;
}
.mass_box {
  margin-bottom: 10px;
}
.mass_box .form_select{
  white-space: pre-wrap;
}
.csv_btn {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background-color: transparent;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}
.uploadBtnWrapper {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.fileInput {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.csv_title {
  color: var(--black);
  font-size: 14px;
  padding-top: 5px;
}

.mass_submit_btn {
  margin-top: 20px;
  background-color: var(--yellow);
  color: var(--light-black);
  border: 0;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}
.email_template .logo {
  width: 60px;
}
.email_template .content h3 {
  font-size: 18px;
}

.email_template .content {
  margin-top: 14px;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.email_template .eventImage {
  display: inline-block;
  width: 80%;
  background-color: #f4f4f4;
  padding: 12px 12px 0;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.email_template .details {
  margin: 0px auto 0;
  background-color: #f4f4f4;
  padding: 12px 12px 20px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  display: block;
}
.email_template .eventInfo {
  margin: auto;
  background-color: #F4F4F4;
  padding: 12px;
}
.email_template .eventInfo h3 {
  color: #1D1D1D;
  font-size: 18px;
  padding: 12px;
}
.email_template .cust_location_section {
  display: flex;
  align-items: flex-start;
  align-items: center;
}
.email_template .details h3 {
  font-size: 12px;
  color: #656565;
}
.email_template .details span {
  font-size: 14px;
  color: #656565;
}
.email_template .buttonContainer {
  display: flex;
  justify-content: center;
}
.email_template .button {
  font-family: 'Poppins-SemiBold';
  border-radius: 5px;
  background-color: var(--yellow);
  padding: 12px 12px;
  font-size: 16px;
  color: var(--light-black);
  text-decoration: none;
  font-weight: normal;
  display: inline-block;
}
.email_template .footer h3 {
  font-size: 12px;
  color: #212121;
}
.email_template .footer a {
  color: #1569bd;
}
.email_template .footer h4 {
  color: #212121;
  font-size: 12px;
  margin-top: 12px;
}
.email_template .footer {
  padding-top: 25px;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.email_template .content p {
  color: var(--light-black);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  max-width: 500px;
  margin: 15px auto;
}
.email_template .content h3 {
  font-size: 18px;
}
.email_template .highlight {
  color: var(--yellow);
}
.mass_full_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 52%;
  width: 2px;
  height: 100%;
  background-color: #f6f6f6;
}
.email_template .divider {
  border-bottom: 1px solid #f6f6f6;
  padding-top: 16px !important;
}
.email_template .eventz_details_description {
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
.mass_title{
  font-family: 'Poppins-Medium';
  text-align: left;
  color: #767676;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.mass_box_border{
  border: 1px solid #E4E4E4;
  padding: 24px 24px;
  border-radius: 5px;
}
.mass_box_title h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 16px;
  margin-bottom: 18px;
}
.mass_box_radio_section{
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 50px;
}
.mass_date_format{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  column-gap: 15px;
  margin-top: 16px;
}
.mass_date_format_inner{
  width: 100%;
}
.mass_box_radio_section .form-check-label{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 14px;
}
.mass_box_radion_inner_section{
  margin-top: 16px;
}
.mass_box_radion_inner_section_box{
  border: 1px solid var(--login-border);
  border-radius: 6px;
  padding: 10px 10px;
  height: 100px;
  width: 100%;
  outline: none;
  box-shadow: none;
}
.mass_box_radion_inner_section_two{
  font-family: 'Poppins-Regular';
  color: var(--light-black);
  border: 1px solid #D3DCE7;
  background-color: #F5F8FC;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  margin-top: 16px;
}
.mt-25{
  margin-top: 25px;
}
.mass_box_input_file{
  border: 1px solid #D3DCE7;
  padding: 5px 8px;
  width: 100%;
  border-radius: 6px;
  margin-top: 8px;
}
.perfomance_section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  gap: 10px;
}
.perfomance_box {
  padding: 20px;
  text-align: center;
  background-color: #F5F8FC;
  border: 1px solid #D3DCE7;
  border-radius: 5px;
}
.perfomance_box h4 {
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  margin-bottom: 5px;
}
.perfomance_box h5 {
  font-family: 'Poppins-SemiBold';
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
.complete {
  color: #37C356;
  margin: 0;
}
.rows_5{
  height: 150px;
}
.mass_left,.mass_right{
  width: 50%;
  flex-grow: 1;
  flex-shrink: 0;
}
.manage_events_table_popup ul li a{
  display: block;
}
.map_container{
  overflow: hidden;
}
.leaflet-container {
  overflow: hidden;
}
.product_div{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.product_div h4{
  font-size: 16px;
  color: var(--light-black);
  margin-left: 24px;
}
.add_on_body_products h4{
  font-size: 16px;
}
.right_side_add{
  display: flex;
  justify-content: flex-end;
}
.include_box{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: 1px solid var(--login-border);
  border-radius: 5px;
  align-items: center;
  padding: 8px;
  width: 100px;
}
.include_box button{
  background-color: transparent;
  border: 0;
}
.product_div img{
  width: 50px;
  border-radius: 5px;
}  
.addOnSummaryTitle{
  font-family: 'Poppins-SemiBold' !important;
  color: var(--light-black) !important;
  font-size: 16px !important;
}
.add_on_table tbody tr:last-child td {
  border: 0;
}

.merchandise_table .product_img{
  width: 60px;
  border-radius: 4px;
}
.merchandise_table .edit{
  font-family: 'Poppins-Medium';
  background-color: #E5E6E9;
  color: var(--light-black);
  font-size: 14px;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 5px;
  text-decoration: none;
  margin-right: 16px;
}
.merchandise_table tbody tr td{
  padding: 10px !important;
}



.create_addon_modal .modal-dialog{
  max-width: 510px;
}
.create_addon_modal .modal-content{
  padding: 24px 24px;
}
.addon_title h3{
  font-family: 'Poppins-SemiBold';
  color: var(--light-black);
  font-size: 24px;
  margin-bottom: 24px;
}
.addon_label{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
  font-size: 16px;
  margin-bottom: 6px;
}
.addon_label span{
  color: #FF4444;
}
.addon_input{
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--login-border);
  border-radius: 5px;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.addon_input::placeholder{
  color: var(--new-gray);
}
.addon_form_box{
  margin-bottom: 16px;
}
.addon_radion_section{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.addon_radion_section .form-check{
  margin: 0 20px 0 0;
}
.addon_radion_section .form-check .form-check-label{
  font-family: 'Poppins-Medium';
  color: var(--light-black);
}
.border_bottom_class{
  border-bottom: 1px solid var(--login-border);
}
.addon_form_btn{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-top: 24px;
}
.addon_btn{
  font-family: 'Poppins-SemiBold';
  padding: 12px 40px;
  border-radius: 5px;
  font-size: 16px;
  background-color: transparent;
  margin: 0 0 0 16px;
}
.addon_form_btn .cancel{
  color: var(--new-gray);
  font-size: 16px;
  border: 1px solid var(--new-gray);
}
.addon_form_btn .save{
  background-color: var(--yellow);
  color: var(--new-black);
  border: 1px solid var(--yellow);
}
.addon_status_modal .modal-dialog{
  max-width: 390px;
}
.addon_status_modal .modal-content{
  padding: 24px 24px;
}
.addon_status_success{
  font-family: 'Poppins-SemiBold';
  margin: 10px 0;
  font-size: 24px;
  color: var(--light-black);
}
.addon_status_faild{
  font-family: 'Poppins-SemiBold';
  margin: 10px 0;
  font-size: 24px;
  color: #FF4444;
}
.status_msg{
  color: var(--new-gray);
  font-size: 16px;
}
.status_btn{
  font-family: 'Poppins-SemiBold';
  display: block;
  text-decoration: none;
  background-color: var(--yellow);
  color: var(--light-black);
  border-radius: 8px;
  padding: 12px 0;
}
.addon_status_modal .modal_close img{
  width: 50px;
}
.status_faild{
  color: #FF4444;
}
@media (max-width: 1899.98px) {
  .cat_arrow_btn{
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
  }
  .cat_arrow_btn .cat_left_arrow{
    position: relative;
    left: 0;
    margin: 0 5px 0 0;
  }
  .cat_arrow_btn .cat_right_arrow{
    position: relative;
    right: 0;
  }
  .new_container {
    width: 80%;
  }
  .new_org_header .new_container{
    width: 87%;
  }
  .new_header_right_section ul li:last-child {
    margin-right: 16px;
  }
  .new_slider_section .item .slider_img{
    height: 450px;
  }
  .new_header_right_section ul li {
    margin: 0 0 0 20px;
  }
  .new_slider_content {
    left: 40px;
  }
  .grid_section{
    grid-template-columns: repeat(4, 1fr);
  }
  .support_ticket_section{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .slider_category{
    padding: 20px 0;
  }
  .new_category_slider_section {
    margin-top: 20px;
  }
  .slider_title h3{
    font-size: 22px;
  }
  .star{
    left: 40px;
  }
  .star_right{
    right: 40px;
  }
  .star img{
    width: 100px;
  }
  .star_right img{
    width: 100px;
  }
  .new_category_box_icon img {
    width: 40px;
  }
  .new_category_box_icon {
    width: 70px;
    height: 70px;
  }
  .new_category_box_icon_name {
    padding-top: 6px;
  }
  .new_search_section {
    padding: 12px 0;
  }
  .new_border {
    width: 70px;
  }

  .ticketing_box h3{
    font-size: 18px;
  }
  .footer_menu ul li a{
    padding: 0 12px;
  }
  /*new_oraganizer_design*/
  .org_dashboard_second_section{
    flex-direction: column;
  }
  .new_org .new_org_logo::after{
    right: -150%;
  }
  .new_org_header .new_container {
    width: 84%;
  }
  /*end_new_oraganizer_design*/
}

@media (max-width: 1399.98px) {
 
  .new_slider_content {
    bottom: 20px;
    left: 20px;
  }
  .new_slider_content h4{
    font-size: 26px;
  }
  .new_slider_content h2{
    font-size: 30px;
    max-width: 500px;
  }
  .item_action {
    margin: 10px 0;
  }
  .find_tickets_btn {
    padding: 10px 30px;
  }
  .item_action h5{
    font-size: 20px;
  }
 
  .new_category{
    column-gap: 40px;
  }
  .star{
    left: 20px;
  }
  .star img{
    width: 80px;
  }
  .star_right{
    right: 20px;
  }
  .star_right img{
    width: 80px;
  }
  .event_not_found {
    padding: 150px 0;
  }
  .new_events_details_body_box {
    padding: 14px 14px;
  }
  .new_events_details {
    column-gap: 20px;
  }
  .new_events_details_body_inner_right_box {
    padding: 12px 0;
  }
  .new_events_details_body_inner_right_box .sub_title{
    font-size: 18px;
    margin-bottom: 8px;
  }
  .presented img {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }
  .social_icons {
    margin-top: 14px;
  }
  .icon_box {
    margin: 0 10px 0 0;
  }
  .new_about_section {
    padding: 0px 0 40px;
  }
  .about_description {
    margin-top: 30px;
  }
  .about_description ul {
    margin-top: 10px;
    margin-left: 20px;
  }
  .new_checkout_section {
    margin-top: 20px;
    column-gap: 100px;
  }
  .new_status_section {
    margin-top: 50px;
  }
  .new_status_box_left_side {
    padding: 120px 0;
  }
  .new_form_section {
    margin-top: 20px;
  }
  .w-500 {
    width: 300px;
  }
  .new_ticket_summary {
    column-gap: 20px;
  }
  .new_events_details{
    padding-bottom: 20px;
  }
  .grid_section {
    grid-template-columns: repeat(3, 1fr);
  }
  .about_top_padding {
    padding: 40px 0;
  }
  .about_page_title h3{
    font-size: 36px;
  }
  .about_page_title p {
    margin: 12px auto 30px;
  }
  .about_inner_content {
    margin-top: 40px;
    column-gap: 30px;
  }
  .about_slider {
    padding: 40px 0 0;
  }
  .ticketing_section {
    padding: 40px 0;
  }
  .ticketing_box {
    padding: 10px 10px;
  }
  .ticketing_box h3 {
    font-size: 16px;
  }
  .ticketing_main_wrapper {
    column-gap: 10px;
    margin-top: 16px;
  }
  .about_last_section {
    padding: 50px 0 120px;
  }
  .ltd-seatplan.ltd-seatplan--mobile {
    position: relative;
    margin-bottom: 50px;
  }
  .new_events_details{
    flex-direction: column;
  }
  .new_events_details_body_right_section{
    margin-left: 0;
    max-width: 100%;
  }
  .new_events_details{
    display: block;
  }
  .new_events_details_body_left_section{
    max-width: 100%;
  }
  .support_tickets_header a {
    padding: 14px 40px;
  }
  .support_ticket_inner_box {
    padding: 16px 16px 14px;
  }
  .support_ticket_footer {
    padding: 14px 14px;
  }
  .chat_section {
    margin: 30px auto;
    padding: 18px 18px;
  }
  .new_search_btn img {
    cursor: pointer;
    width: 50px;
  }
  .let_logo{
    width: 200px;
  }
  .about_last_right_inner_box {
    padding: 0 20px;  
  }
  .id_verification_body_content {
    margin: 30px auto 0;
  }
  .sign_up_img_box {
    column-gap: 70px;
  }
  .view_tickets_left_box{
    width: 40%;
  }
  .view_tickets_left_inner_box {
    padding: 16px 16px;
  }
  .view_tickets_right_inner_box{
    padding: 16px 16px;
  }
  .view_tickets_main_section {
    column-gap: 14px;
  }

  
  
  /*new_oraganizer_design*/
  .new_org_header {
    padding: 12px 0;
  }
  .new_org_right_menu ul li a{
    margin: 0 20px 0 20px;
  }
  .new_org_right_menu ul li a.active::after {
    bottom: -140%;
  }
  .org_login_img {
    max-width: 600px;
  }
  .org_user_content{
    column-gap: 80px;
  }
  .org_side_bar {
    padding-top: 60px;
    padding-left: 20px;
  }
  .org_side_bar ul li {
    padding-bottom: 16px;
  }
  .org_side_bar ul li a{
    padding: 12px 14px;
  }
  .org_side_bar ul li a.active::after{
    left: -10%;
  }
  .org_main_div {
    padding: 20px 20px;
  }
  .org_inner_div{
    margin: 20px 20px 0;
  }
  .org_dashboard_first_section{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .org_white_box_title h4{
    font-size: 20px;
  }
  
  .org_dashboard_second_section{
    gap: 16px;
  }
  .org_visitor_content::after{
    left: 50%;
  }
  .org_table_header div:first-child{
    flex-grow: 5;
  }
  .streaming_details_white_box {
    padding: 14px 14px 0;
    margin-bottom: 10px;
  }
  .streaming_details_white_box_title h3{
    font-size: 16px;
    padding: 0 0 16px 0;
    margin-bottom: 16px;
  }
  .streaming_details_white_box_inner_details h5 {
    font-size: 16px;
  }
  .streaming_details_white_box_inner_details h4 {
    margin-bottom: 6px;
  }
 
  /*end_new_oraganizer_design*/
}

@media (max-width: 1199.98px) {
  .new_header_right_section ul li {
    margin: 0 0 0 20px;
  }

  .header_location {
    margin-left: 14px;
  }



  .new_user_profile img {
    width: 40px;
  }


  .new_search_content {
    padding: 12px 12px;
  }
  .new_slider_section {
    margin: 16px 0px 0px;
  }
  .new_slider_section .slick-slide {
    padding: 0 12px 0 0;
  }
  .new_slider_content h4 {
    font-size: 22px;
  }
  .new_slider_content h2 {
    font-size: 26px;
  }
  .find_tickets_btn {
    padding: 8px 25px;
  }
 
  .new_category{
    column-gap: 30px;
  }
  .slider_category {
    padding: 20px 0;
  }
  .new_category_slider_section {
    margin-top: 20px;
  }
  .slider_title h3 {
    font-size: 22px;
  }
  .new_border {
    width: 70px;
  }
  .new_category_slider_section_box {
    padding: 0 10px 0 0;
  }
  .star{
    left: 20px;
  }
  .star img{
    width: 60px;
  }
  .star_right{
    right: 20px;
  }
  .star_right img{
    width: 60px;
  }
  .grid_section {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
 }
  .load_more_btn {
    margin-top: 30px;
  }
 .event_not_found {
    padding: 100px 0;
  }
  .event_not_found img{
    width: 150px;
  }
  .event_not_found h4 {
    font-size: 20px;
  }
  .new_events_banner {
    padding: 30px 0;
  }
  .new_eventz_image_right_section {
    margin-left: 30px;
  }
  .new_eventz_image_right_section h1 {
    font-size: 32px;
  }
  .new_events_details {
    column-gap: 20px;
  }
 
  .new_events_details_body_box {
    border-radius: 10px;
  }
  .new_events_details_body_inner_box {
    padding: 12px 12px;
  }

  .about_description {
    margin-top: 20px;
  }
  .about_description p{
    margin-top: 16px;
    max-width: 100%;
  }
  .new_checkout_title h3 {
    font-size: 22px;
    margin-bottom: 8px; 
  }
  .new_checkout_form_section {
    margin-top: 16px;
    gap: 16px;
  }
  .new_input {
    padding: 10px 12px;
  }
  .new_method_section {
    margin-top: 16px;
  }
  .new_checkout_right_box_header {
    padding: 12px 19px;
  }
  .new_checkout_right_box_header h4{
    font-size: 16px;
  }
  .new_checkout_right_box_body_content {
    padding: 12px 10px;
  }
  .new_checkout_right_box_body_second_inner_content h3 {
    margin-bottom: 12px;
  }
  .new_status_section {
    margin-top: 30px;
  }
  .new_status_box_left_side {
    padding: 80px 0;
  }
  .status_header h3 {
    font-size: 22px;
    margin: 8px 0;
  }
  .new_status_btn {
    padding: 10px 28px;
  }
  .profile_title h3 {
    font-size: 30px;
    padding-bottom: 18px;
  }
  .new_profile_inner_section {
    margin: 30px 0;
  }

  .new_profile_section {
    margin: 20px 0 0;
    padding-bottom: 20px;
  }
  .submit_form_btn {
    padding-top: 30px;
  }
  .account_delete_section {
    padding: 14px 0;
  }
  .new_slider_section .item .slider_img {
    height: 400px;
  }
  .new_ticket_summary{
    flex-direction: column;
    align-items: flex-start;
    column-gap: 0;
    row-gap: 20px;
  }
  .new_category_slider_section_box_img img {
    height: 280px;
  }
  
  .new_header_right_section ul {
    display: block;
    position: fixed;
    top: 0;
    left: -100%; 
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    padding-top: 20px;
    transition: left 0.5s ease;
    margin: 0;
    border: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .new_header_right_section{
    align-items: center;
  }
  .new_header_right_section ul.openMenu {
    left: 0; 
  }
  .new_header_right_section ul li{
    border-bottom: 1px solid #ebebeb;
    margin: 0;
    padding-left: 10px;
  }
  .new_header_right_section ul li a{
    padding: 10px 0;
    display: block;
  }
  .new_header_right_section ul li:last-child{
    margin-right: 0;
  }
  .new_toggle_btn {
    display: inline-block;
  }

  .about_top_padding {
    padding: 30px 0;
  }
  .about_tab ul li a {
    padding: 12px 10px;
  }
  .about_tab ul li a span{
    margin-right: 12px;
  }
  .about_inner_content {
    margin-top: 30px;
  }
  .about_left_inner h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .about_box {
    padding: 10px 12px;
  }
  .about_back_btn {
    padding: 20px 0;
  }
  .about_last_section {
    padding: 40px 0 80px;
  }
  .about_last_left_section h3{
    font-size: 40px;
  }
  .about_last_left_section p {
    margin: 10px 0;
  }
  .about_last_right_inner_box {
    padding: 0 20px;
  }
  .about_last_right_inner_box h4{
    font-size: 50px;
  }
  .manage_organizer_header{
    flex-direction: column;
  }
  .create_profile_btn{
    margin-top: 20px;
  }
  .support_tickets_header h4{
    font-size: 20px;
  }
  .support_tickets_header a {
    padding: 12px 40px;
  }
  .support_ticket_section {
    margin-top: 14px;
  }
  .support_ticket_body h3{
    font-size: 16px;
  }
  .support_ticket_header h5,.support_footer_status h6, .support_ticket_footer h4 {
    font-size: 14px;
  }
  .support_send_btn {
    padding: 14px 0;
  }
  .chat_section {
    padding: 16px 16px;
  }
  .chat_right_title a{
    padding: 12px 24px;
  }
  .chat_left_title h3 {
    font-size: 16px;
  }
  .new_verify_box {
    padding: 30px 30px;
  }
  .id_verification_box {
    padding: 20px 20px;
  }
  .id_verification_header h3 {
    font-size: 22px;
  }
  .id_verification_header p {
    margin: 10px auto 16px;
  }
  .sign_up_box{
    max-width: 400px;
    padding: 10px;
  }
  .sign_up_box .login_box{
    padding: 0px 5px;
  }
  .sign_up_box{
    height: auto !important;
  }
  .sign_up_box .login_content {
    margin-top: 0px;
  }
  .sign_up_img_box{
    padding: 30px 0;
  }
  .signup_img{
    width: 45%;
  }
  .customer_supports_box_section{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
  }
  .view_tickets_title h3{
    font-size: 24px;
    margin-bottom: 12px;
  }
  .view_tickets_left_inner_box {
    padding: 12px 12px;
  }
  .view_tickets_left_inner_body_text {
    padding: 16px 0;
  }
  .view_tickets_left_inner_body_text h4 {
    font-size: 14px;
  } 
  .view_tickets_right_inner_box {
    padding: 12px 12px;
  }
  .view_tickets_right_inner_box_content h4 {
    font-size: 16px;
  }
  .view_tickets_right_inner_box_content p{
    font-size: 14px;
  }
  .view_tickets_right_inner_box {
    margin-bottom: 12px;
  }
  .view_tickets_left_inner_box{
    margin-bottom: 12px;
  }
  .view_tickets_profile_details p{
    font-size: 14px;
  }
  .attachment_btn {
    padding: 6px 18px;
    font-size: 14px;
  }
  .replay_btn {
    padding: 6px 24px;
  }
  /*new_oraganizer_design*/
  .org_side_bar {
    padding-top: 40px;
  }
  .org_side_bar ul li {
    padding-bottom: 12px;
  }
  .org_side_bar ul li a{
    font-size: 14px
  }
  .org_main_div {
    padding: 18px 18px;
  }
  .org_inner_div{
    margin: 15px 15px 0;
  }
  .org_main_div_title h3 {
    font-size: 28px;
  }
  .org_white_box {
    padding: 16px 18px;
  }
  .org_report h3{
    font-size: 24px;
  }
  .org_footer h4 {
    font-size: 14px;
  }
  .org_footer {
    padding: 15px 0;
  }
  .org_main_div_title{
    margin-bottom: 20px;
  }
  .manage_org_tab ul li a{
    padding: 12px 20px;
    font-size: 14px;
  }
  .org_new_profile {
    width: 140px;
    height: 130px;
  }
  .new_manage_event_tab ul li a {
    margin: 0 10px 0 0;
    padding: 8px 18px;
    font-size: 12px;
  }
  .create_event_btn a{
    padding: 8px 18px;
    font-size: 14px;
  }
  .manage_event_filter{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
  }
  .new_org_header .new_container {
    width: 85%;
  }
  .org_table_header{
    padding: 14px 12px;
  }
  .show_book_ticket_box{
    padding: 24px 12px;
  }
  .org_table_header div:first-child {
    flex-grow: 7;
  }
  /*end_new_oraganizer_design*/

  .email_template .content p{
    max-width: 400px;
  }
  .email_template .divider {
    padding-top: 6px !important;
  }
  .email_template .content h3 {
    font-size: 16px;
  }
  .email_template .eventInfo h3 {
    font-size: 16px;
  }
  .email_template .button{
    padding: 8px 12px;
    font-size: 14px;
  }
}


@media (max-width: 991.98px) {
  .new_header_logo img {
    width: 50px;
  }

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

  .location_dropdown .dropdown-toggle {
    padding: 6px 10px;
  }

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

  .new_user_profile img {
    width: 35px;
  }

  .new_header {
    padding: 8px 0;
  }

 
  .new_right_menu ul li{
    margin: 0 !important;
  }
  .new_search {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    width: 90%;
  }

  .new_search_content {
    width: 100%;
  }

  .new_search_content::after {
    content: none;
  }

  .new_search_content {
    border-bottom: 1px solid #ececec;
  }

  .new_search_btn img {
    width: 60px;
  }

  .new_search_section {
    padding: 30px 0;
  }
  .new_slider_content h4 {
    font-size: 18px;
  }
  .new_slider_content h2 {
    font-size: 22px;
  }
  .find_tickets_btn{
    font-size: 16px;
  }
  .new_category_box_icon {
    width: 80px;
    height: 80px;
  }
  .new_category_box{
    width: 80px;
  }
  .new_category_box_icon img{
    width: 35px;
  }
  .new_category_section {
    padding: 20px 0;
  }
  .slider_title h3 {
    font-size: 20px;
  }
  .new_border {
    width: 60px;
    height: 3px;
  }
  .slider_button {
    font-size: 14px;
  }
  .slider_button img {
    margin-left: 5px;
  }
  .main_slider_action{
    display: none;
  }
  .grid_section {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
  }
  .load_more_btn a{
    padding: 8px 30px;
  }
  .event_not_found {
    padding: 80px 0;
  }
  .event_not_found img{
    width: 120px;
  }
  .event_not_found h4 {
    font-size: 18px;
  }
  .new_eventz_image_right_section h1 {
    font-size: 28px;
  }
  .wallet_section h3 {
    margin-left: 10px;
    font-size: 18px;
  }
  .new_events_details_body_left_section{
    width: 100%;
  }
  .new_events_details{
    flex-direction: column;
  }
  .new_events_details_body_right_section {
    margin-top: 20px;
    width: 100%;
  }
  .new_events_details_tab_section {
    position: relative;
    top: 0;
  }
 
 
  .new_dropdown_menu ul{
    height: auto;
    right: 0;
    left: auto;
    padding-top: 0px;
  }
  .new_dropdown_menu ul li a{
    padding: 0;
  }
  
  .new_header_right_section{
    align-items: center;
  }
  .about_content h3 {
    font-size: 22px;
  }
  .about_description {
    margin-top: 10px;
  }
  .about_description p {
    margin-top: 12px;
  }
  .new_events_details_body_right_section {
    max-width: 100%;
  }
  .selected_profile{
    width: 30px;
  }
  .new_events_details_body_left_section{
    max-width: 100%;
  }
  .seat_section{
    margin-bottom: 20px;
  }
  .new_checkout_title h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .new_checkout_title p {
    font-size: 14px;
  }
  .new_checkout_section{
    flex-direction: column;
    column-gap: 0px;
    row-gap: 20px;
  }
  .new_checkout_right_section{
    order: -1;
  }
  .new_checkout_left_section{
    width: 100%;
  }
  .new_card_section {
    padding: 10px 12px;
  }
  .new_checkout_right_section{
    max-width: 100%;
    width: 100%;
    position: relative;
    top: 0;
  }
  .new_status_section{
    flex-direction: column;
    column-gap: 0;
    row-gap: 20px;
  }
  .new_status_box_left_side {
    padding: 60px 0;
  }
  .status_header img{
    width: 120px;
  }
  .new_details {
    margin-bottom: 14px;
  }
  .new_details h4 {
    margin-left: 9px;
  }
  .new_profile_inner_section{
    flex-direction: column;
  }
  .profile_title h3 {
    font-size: 24px;
    padding-bottom: 12px;
  }
  .new_profile_inner_section {
    margin-top: 20px;
    column-gap: 0;
    row-gap: 20px;
  }
  .new_tab_menu li a {
    font-size: 14px;
    padding: 12px 12px;
  }
 
  .new_tab_content_header h4 {
    font-size: 20px;
  }
  .new_tab_content_header p {
    margin-top: 14px;
  }
  .new_profile_section {
    margin: 16px 0 0;
    padding-bottom: 16px;
  }
  .new_form_box .form_label{
    margin-bottom: 10px;
  }
  .w-720,.w-550{
    max-width: 100%;
  }
  .submit_form_btn {
    padding-top: 20px;
  }
  .tab{
    position: relative;
    top: 0;
  }
  .select_section .form-check-label {
    margin-bottom: 12px;
  }
  .form-check-label span {
    margin-left: 10px;
  }
  .new_container {
    width: 90%;
  }
  .new_slider_section .item .slider_img{
    height: 350px;
  }
  .favorite_tab ul li a {
    padding: 10px 30px;
  }
  .favorite_section_list {
    margin-top: 16px;
    padding-bottom: 16px;
  }
  .favorite_section_box {
    padding: 10px 12px;
    column-gap: 12px;
    margin-bottom: 10px;
  }
  .grid_section {
    grid-template-columns: repeat(2, 1fr);
  }
  .about_top_padding {
    padding: 20px 0;
  }
  .about_page_title h3 {
    font-size: 32px;
  }
  .about_page_title p {
    margin: 8px auto 20px;
  }
  .about_tab ul{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  .about_tab ul li {
    margin: 0 10px 10px 0;
  }
  .about_tab ul li a{
    width: 100%;
    padding: 10px 10px;
  }
  .about_inner_content{
    flex-direction: column;
    column-gap: 0px;
    row-gap: 20px;
  }
  .about_back_btn {
    padding: 16px 0;
  }
  .about_slider {
    padding: 30px 0 0;
    margin: 20px 0;
  }
  .about_slider p {
    font-size: 22px;
  }
  .ticketing_main_wrapper {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
  }
  .ticketing_section {
    padding: 0px 0 20px;
  }
  .about_last_section {
    padding: 30px 0 60px;
  }
  .about_last_left_section h3 {
    font-size: 34px;
  }
  .about_last_left_section a {
    padding: 10px 18px;
  }
  .about_last_text{
    flex-direction: column;
    align-items: center;
  }
  .about_last_left_section{
    text-align: center;
    padding-bottom: 20px;
  }
  .about_last_right_inner_box h4 {
    font-size: 42px;
    margin-bottom: 6px;
  }
  .about_last_right_inner_box {
    padding: 0 40px;
  }
  .guest_login_box{
    bottom: 3%;
  }
  .identification_img img {
    width: 200px;
    height: 120px;
  }
  .identification_section {
    column-gap: 14px;
  }
  .identification_status {
    padding: 8px 19px;
  }
  .support_tickets_header a {
    padding: 10px 20px;
  }
  .support_ticket_section {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .support_send_btn {
    padding: 12px 0;
  }
  .chat_section {
    margin: 20px auto;
    padding: 14px 14px;
  }
  .chat_left_title h4 {
    font-size: 14px;
    margin-top: 6px;
  }
  .chat_right_title a {
    padding: 10px 16px;
    font-size: 14px;
  }
  .right_message_section p, .left_message_section p{
    max-width: 400px;
  }
  .let_logo{
    width: 150px;
  }
  .new_verify_box {
    padding: 20px 20px;
  }
  .new_verify_box_title h3{
    font-size: 20px;
  }
  .new_verify_box_title p {
    font-size: 14px;
    margin: 10px auto 12px;
  }
  .new_verify_inner_box {
    padding: 16px 16px;
  }
  .new_verify_inner_box_left {
    column-gap: 8px;
  }
  .verification_tab_box h4{
    font-size: 14px;
  }
  .id_verification_header h3 {
    font-size: 20px;
  }
  .id_verification_box .new_form_box:not(:last-child) {
    margin-bottom: 18px;
  }
  .new_header_right_section ul li:first-child{
    margin: auto;
  }

  .new_search{
    display: none;
  }

  .responsive_search{
    display: block;
  }

  .signup_img{
    display: none;
  }
  .support_create_form {
    margin: 10px auto;
    padding: 20px;
  }
  .support_create_ticket_title{
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
  .support_create_ticket_title h3{
    font-size: 18px;
  }
  .view_tickets_main_section{
    flex-direction: column;
  }
  .view_tickets_left_box {
    width: 100%;
  }

  /*new_oraganizer_design*/
  .new_org_header {
    padding: 8px 0;
  }
  .new_org_right_menu ul{
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 0;
    overflow-x: hidden;
    height: 100%;
    background-color: var(--white);
    padding-top: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 100;
    transition: all .5s;
    white-space: nowrap;
  }
  .new_org_right_menu ul.expanded {
    width: 300px;  /* New width when menu is expanded */
  }
  .new_org_right_menu ul li a.active::after {
    bottom: -40%;
    height: 2px;
  }
  .new_org_right_menu ul li{
    margin-bottom: 20px;
  }
  .org_login_profile::after{
    content: none;
  }
  .org_login_profile img {
    width: 40px;
    height: 40px;
  }
  .new_org_toggle_btn img{
    display: inline-block;
  }
  .org_user_content{
    flex-direction: column;
  }
  .org_user_content {
    column-gap: 0px;
    padding-top: 20px;
  }
  .org_login_img {
    max-width: 500px;
  }
  .org_user_content .login_box {
    padding: 0px 10px;
  }
  .org_user_content .login_content {
    margin-top: 0;
  }
  .org_user_content .login_box_logo {
    padding: 12px 0 8px 0;
  }
  .org_side_bar{
    display: none;
  }
  .org_main_div_title h3 {
    font-size: 28px;
  }
  .org_main_div {
    border-radius: 6px;
  }
  .org_main_div_title img{
    display: inline-block;
  }
  .org_dashboard_first_section {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .org_dashboard_second_section {
    gap: 10px;
  }
  .org_white_box_title h4 {
    font-size: 18px;
  }
  .TransactionHistory th {
    padding: 10px 16px;
  }
  .TransactionHistory td {
    padding: 10px 16px;
  }
  .transaction_id span {
    font-size: 12px;
  }
  .TransactionHistory th{
    font-size: 12px;
  }
  .transaction_status{
    font-size: 12px;
  }
  .org_footer{
    flex-direction: column;
  }
  .org_label{
    margin-bottom: 14px;
  }
  .manage_event_filter_box {
    padding: 10px 12px;
  }
  .manage_event_filter{
    margin: 10px 0;
  }
  .new_future_table thead tr th {
    padding-bottom: 6px;
  }
  .new_future_table tbody td {
    padding: 10px 10px;
  }
  .streaming_controller{
    margin-top: 14px;
  }
  .streaming_controller_action button{
    margin: 0 0 0 10px;
  }
  .streaming_controller_action button img{
    width: 50px;
  }
  .streaming_controller_action_btn a{
    margin: 0 0 0 6px;
    padding: 8px 40px;
    font-size: 14px;
  }
  .streaming_label p {
    padding: 6px 14px;
  }
  .report_body_box{
    flex-direction: column;
    align-items: flex-start;
  }
  .report_white_box, .report_dropdown{
    width: 100%;
  }
  .report_dropdown{
    margin: 20px 0 0;
  }
  .repo_box h2 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .report_body_box .create_event_btn {
    margin-top: 0;
  }
  .report_white_box {
    padding: 18px 18px;
  }
  .repo_box {
    margin-bottom: 20px;
  }
  .new_org .new_org_logo::after{
    right: -50%;
  }
  .new_future_table{
    overflow: auto;
  }
  .manage_events_table_popup {
   top: 0;
  }
  .org_table_header div:first-child {
    flex-grow: 6;
  }
  .streaming_details_white_box_inline_details {
    grid-template-columns: repeat(2, 1fr);
  }
  .streaming_details_white_box {
    padding: 10px 10px 0;
  }
  .streaming_details_white_box_inner_details h4 {
    margin-bottom: 4px; 
  }
  .streaming_details_white_box_inner_details h5 {
    font-size: 14px;
  }

  /*end_new_oraganizer_design*/
  .mass_full_section{
    flex-direction: column;
  }
  .mass_full_section::after {
    content: none;
  }
  .mass_submit_btn {
    margin-top: 0px;
  }
  .mass_full_section{
    gap: 0;
  }
  .email_template .eventImage {
    width: 100%;
  }
  .email_template .eventInfo, .email_template .details{
    width: 100%;
  }
  .perfomance_section {
    grid-template-columns: repeat(2, 1fr);
  }
  .mass_left, .mass_right {
    width: 100%;
  }
  .mass_box_border {
    padding: 12px 12px;
  }
  .mass_box_radio_section{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
 
  .new_header_right_section {
    align-items: center;
  }

  .new_search_content {
    padding: 12px 12px;
  }
  .new_slider_section .slick-slide {
    padding: 0;
  }
  .new_category_box_icon_name {
    padding-top: 8px;
  }
  .slick-center .new_slider_content{
    bottom: 20px;
  }
  .event_not_found {
    padding: 60px 0;
  }
  .event_not_found img {
    width: 100px;
  }
  .new_events_banner {
    padding: 20px 0;
  }
  .new_eventz_image_right_section {
    margin-left: 20px;
  }
  .new_eventz_image_right_section h1 {
    font-size: 24px;
  }
  .new_container {
    width: 100%;
  }
  .new_events_details_body_inner_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .new_events_details_body_inner_right_text{
    margin-top: 10px;
  }
  .new_category_slider_section_box_img{
    height: auto;
  }
  .new_verify_box {
    max-width: 400px;
  }
  .new_verify_inner_box{
    flex-direction: column;
    row-gap: 10px;
  }
  .new_verify_box {
    padding: 15px 15px;
  }
  .new_verify_box_title h3 {
    font-size: 18px;
  }
  .new_verify_box_title p {
    font-size: 14px;
    margin: 6px auto 8px;
  }
  .new_verify_inner_box {
    padding: 12px 10px;
  }
  .new_verify_inner_box_right_icon h4 {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .new_verify_inner_box_right_icon p {
    font-size: 14px;
  }
  .cancel_btn {
    padding: 8px 37px;
  }
  .customer_supports_box{
    padding: 12px 12px;
    border-radius: 10px;
  }

  
  /*new_oraganizer_design*/
  .new_manage_event_tab{
    flex-direction: column;
  }
  .new_manage_event_tab ul{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 100%;
    gap: 10px;
  }
  .new_manage_event_tab ul li a{
    width: 100%;
  }
  .create_event_btn{
    margin-top: 10px;
  }
  .manage_event_filter{
    grid-template-columns: repeat(1, 1fr);
  }
  .new_org_header .new_container{
    width: 100%;
    max-width: 100%;
  }
  /*end_new_oraganizer_design*/
  .mass_submit_btn{
    padding: 10px 40px;
  }
  .seating_two{
    padding-bottom: 300px;
  }
  .new_events_details_body_inner_right_section{
    margin-top: 20px;
  }
 
}

@media (max-width: 575.98px) {
  .new_header_logo img {
    width: 45px;
  }

  .header_location {
    margin-left: 10px;
  }

  .location_dropdown .dropdown-toggle {
    font-size: 14px;
  }

  .new_user_profile img {
    width: 30px;
  }

  .new_search_section {
    padding: 20px 0;
  }

  .new_search_btn img {
    width: 50px;
  }
  .new_slider_section {
    margin: 8px 10px 0;
  }
  .new_category_box {
    padding-bottom: 20px;
  }
  .new_category_section ::-webkit-scrollbar {
    height:5px;
  }
  .new_category {
    column-gap: 20px;
  }
  .new_category_slider_section_box {
    padding: 0 20px;
  }
  .slider_title h3 {
    font-size: 18px;
  }
  .cat_like{
    right: 30px;
  }
  .star img, .star_right img {
    width: 40px;
  }
  .grid_section {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10px;
  }
  .grid_section .new_category_slider_section_box {
    padding: 0 5px;
  }
  .new_eventz_image_section{
    flex-direction: column;
    align-items: flex-start;
  }
  .new_eventz_image_right_section{
    margin-left: 0;
    margin-top: 10px;
  }
  .new_eventz_image_right_section h1 {
    font-size: 22px;
  }
  .new_events_details_tab_section {
    padding: 18px 0 0;
  }
  .events_page_back {
    padding: 14px 0;
  }
  .new_events_details_header {
    margin-bottom: 18px;
  }
  .new_events_details_body_inner_box{
    flex-direction: column;
    align-items: flex-start;
  }
  .availability{
    margin-right: 10px;
  }
  .new_events_details_body_inner_right_text{
    margin-top: 10px;
  }
  .new_events_details_body_inner_date_box {
    padding: 8px;
  }
  .new_events_details_body_inner_date_box h3 {
    font-size: 20px;
  }
  .new_events_details_body_inner_time_box h4 {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .new_events_details_body_inner_time_box h3 {
    font-size: 16px;
  }
  .new_events_details_body_box {
    padding: 10px 10px;
  }
  .new_events_details_body_inner_right_section {
    border-radius: 6px;
    padding: 0px 12px;
  }
  .buy_tickets {
    padding: 9px 0;
  }
  .new_events_details_body_inner_right_box .sub_title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .events_location {
    color: var(--new-gray) !important;
    font-size: 14px !important;
  }
  .new_events_details_body_inner_right_box {
    padding: 8px 0;
  }
  .icon_box {
    width: 40px;
    height: 40px;
  }
  .social_icons {
    margin-top: 10px;
  }
  .about_content h3 {
    font-size: 20px;
  }
  .about_description h4 {
    font-size: 18px;
  }
  .about_description p{
    font-size: 14px;
  }
  .about_description ul li{
    font-size: 14px;
  }
  .new_events_details_body_inner_right_text .find_ticket_right_section_btn {
    border-radius: 5px;
    padding: 7px 16px;
  }
  .new_checkout_title h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .new_form_label {
    margin-bottom: 5px
  }
  .new_input {
    padding: 8px 10px;
  }
  .new_method_section_box {
    padding: 8px 10px;
    max-width: 100%;
  }
  .new_card_section{
    max-width: 100%;
  }
  .new_checkout_right_box_header {
    padding: 10px 19px;
  }
  .new_checkout_right_box_body_first_section{
    flex-direction: column;
    align-items: flex-start;
  }
  .new_checkout_right_box_body_text_section {
    padding-left: 0;
    padding-top: 10px;
  }
  .new_checkout_right_box_body_second_inner_content h3 {
    margin-bottom: 6px;
  }
  .new_checkout_right_box_body_second_inner_content {
    border-top: 1px solid #BABABA;
    padding: 12px 0;
  }
  .new_status_section {
    margin-top: 10px;
  }
  .new_status_box_left_side {
    padding: 30px 0;
  }
  .status_btn {
    margin-top: 16px;
  }
  .new_status_btn {
    margin: 0 0 0 10px;
  }
  .new_details {
    margin-bottom: 8px;
  }
  .new_details h4 {
    font-size: 14px;
  }
  .new_status_box_header {
    padding: 12px 0;
  }
  .new_status_box_header h3 {
    font-size: 16px;
  }
  .new_status_box_right_side .new_checkout_right_box_body_second_inner_content h3 {
    font-size: 16px;
  }
  .new_profile_inner_section {
    margin: 12px 0;
  }
  .new_tab_menu li a img {
    margin-right: 8px;
  }
  .new_profile {
    width: 80px;
    height: 80px;
  }
  .upload_new_photo {
    padding: 10px 12px;
    font-size: 14px;
    margin: 0 10px;
  }
  .profile_delete {
    padding: 10px 18px;
    font-size: 14px;
  }
  .new_form_section {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .new_form_input {
    padding: 10px 12px;
  }
  .new_form_box .form_label {
    margin-bottom: 5px;
  }
  .submit_form_new_btn {
    padding: 8px 25px;
  }
  .form-check-label span {
    font-size: 14px;
  }
  .select_section .form-check-label {
    margin-bottom: 8px;
  }
  .mt-24 {
    margin-top: 16px;
  }
  .account_delete_section p {
    font-size: 14px;
  }
  .new_slider_section .item .slider_img {
    height: 250px;
  }
  .favorite_tab ul li a {
    padding: 10px 20px;
    font-size: 14px;
  }
  .favorite_section_box{
    flex-direction: column;
    align-items: flex-start;
    column-gap: 0;
    row-gap: 10px;
  }
  .favorite_section_event_inner_description h4 {
    margin: 8px 0;
  }
  .favorite_section_event_inner_description h5 {
    margin-bottom: 10px;
  }
  .new_ticket_summary_content {
    padding: 10px 0 0;
  }
  .ticket_summary_left_section {
    padding: 10px 10px;
  }
  .summary_order_id{
    font-size: 14px;
  }
  .summary_order_event_name {
    font-size: 20px;
    margin: 12px 0;
 }
  .w-500 {
    width: auto;
  }
  .ticket_summary_right_table .table>:not(caption)>*>* {
    padding: .6rem .5rem;
  }
  .ticket_summary_right_table tfoot tr td {
    font-size: 16px;
  }
  .ticket_summary_right_section_title h3 {
    font-size: 20px;
  }
  .ticket_summary_right_table tfoot tr td {
    white-space: nowrap;
  }
  .about_page_title h3 {
    font-size: 28px;
  }
  .about_page_title p {
    margin: 8px auto 15px;
  }
  .about_tab ul li a {
    font-size: 14px;
    white-space: nowrap;
  }
  .about_tab ul li a span {
    font-family: 'Poppins-SemiBold';
    width: 24px;
    height: 24px;
  }
  .about_tab ul li a span {
    margin-right: 6px;
  }
  .about_input_box label {
    margin-bottom: 6px;
  }
  .about_input_box {
    margin-bottom: 15px;
  }
  .about_calender {
    top: 40px;
  }
  .single_about h4 {
    font-size: 20px;
  }
  .about_slider {
    padding: 20px 0 0;
    margin: 10px 0;
  }
  .about_slider p {
    font-size: 18px;
  }
  .ticketing_main_wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }
  .ticketing_section {
    padding: 0px 0 20px;
  }
  .ticketing_box h3 {
    font-size: 16px;
  }
  .ticketing_box img{
    width: 120px;
  }
  .about_last_section {
    padding: 30px 0;
  }
  .about_last_left_section h3 {
    font-size: 28px;
  }
  .about_last_right_inner_box h4 {
    font-size: 34px;
  }
  .about_last_right_inner_box {
    padding: 0 20px;
  }
  .identification_img img {
    width: 150px;
    height: 90px;
  }
  .identification_status {
    padding: 6px 16px;
  }
  .support_tickets_header h4 {
    font-size: 18px;
  }
  .support_tickets_header a {
    padding: 8px 20px;
  }
  .chat_section {
    margin: 18px auto;
    padding: 12px 12px;
  }
  .right_message_section p, .left_message_section p{
    max-width: 300px;
    font-size: 12px;
  }
  .chat_day {
    margin-bottom: 16px;
  }
  .right_profile img, .left_profile img {
    width: 30px;
    height: 30px;
  }
  .chat_footer {
    padding: 12px 16px;
  }
  .let_logo{
    width: 120px;
  }
  .about_page_title h3 {
    font-size: 22px;
  }
  .event_icon{
    width: 30px;
    height: 30px;
  }
  .verify_btn a {
    min-width: 150px;
    padding: 10px 30px;
    font-size: 14px;
  }
  .verify_modal .modal-content {
    padding: 16px 16px;
  }
  .verify_modal_title h3{
    font-size: 18px;
    margin-bottom: 16px;
  }
  .verify_modal .form-check .form-check-label {
    font-size: 14px;
  }
  .view_tickets_title h3 {
    font-size: 18px;
  }
  
  /*new_oraganizer_design*/
  .org_login_img {
    max-width: 300px;
  }
  .org_user_section .login_box {
    padding: 0px 10px;
  }
  .org_main_div {
    padding: 14px 14px;
  }
  .org_inner_div{
    margin: 12px 12px 0;
  }
  .org_main_div_title h3 {
    font-size: 24px;
  }
  .org_dashboard_first_section {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .org_report_img img{
    width: 50px;
  }
  .org_white_box_title h4 {
    font-size: 16px;
  }
  .org_visitor_box{
    border-radius: 10px;
  }
  .manage_org_tab ul{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  .manage_org_tab ul li a{
    width: 100%;
  }

  .manage_input_box h5{
    margin-top: 10px;
  }
  .org_new_eventz_img {
    width: 80px;
    height: 45px;
  }
  .org_new_eventz_name {
    margin-left: 6px;
  }
  .org_new_eventz_name h4{
    font-size: 14px;
    margin-bottom: 6px;
  }
  .new_future_table tbody td{
    font-size: 14px;
  }
  .new_org_table_action a img {
    margin: 0 0 0 10px;
  }
  .stream_table thead tr th{
    font-size: 14px;
  }
  .w-250{
    display: none;
  }
  .bg_yellow{
    margin-top: 5px !important;
  }
  .org_table_header div:first-child {
    flex-grow: 2;
  }
  .streaming_details_white_box_inline_details {
    grid-template-columns: repeat(1, 1fr);
  }
  .streaming_controller_action_btn a:nth-child(3){
    margin-top: 10px;
  }
  /*end_new_oraganizer_design*/
}

@media (max-width: 425.98px) {
  .find_tickets_btn {
    padding: 6px 20px;
  }
  .new_border {
    width: 50px;
  }
  .grid_section {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10px;
  }
  .event_not_found h4 {
    font-size: 16px;
  }
  .new_checkout_form_section {
    margin-top: 10px;
    gap: 8px;
    grid-template-columns: repeat(1, 1fr);
  }
  .new_input {
    max-width: 100%;
  }
  .new_form_label {
    font-size: 14px;
  }
  .new_card_left_header span {
    margin-left: 12px;
  }
  .new_checkout_right_box_header h4 {
    font-size: 14px;
  }
  .new_checkout_right_box_body_text_section h3 {
    font-size: 16px;
  }
  .status_header h3 {
    font-size: 19px;
    margin: 4px 0;
  }
  .favorite_tab ul li a {
    padding: 10px 10px;
    font-size: 12px;
  }
  .no_events_found_box h3 {
    font-size: 20px;
    margin: 12px 0;
  }
  .about_flex{
    flex-direction: column;
    align-items: flex-start;
    column-gap: 0;
    row-gap: 10px;
  }
  .about_flex .about_input_box {
    flex-grow: 1;
    flex-shrink: 0;
    width: 100%;
  }
  .about_last_right_inner_box h4 {
    font-size: 26px;
  }
  .about_last_right_inner_box h5{
    font-size: 16px;
  }
  .support_tickets_header a{
    font-size: 14px;
  }
  .support_ticket_section {
    grid-template-columns: repeat(1, 1fr);
  }
  .chat_right_title a {
    padding: 8px 10px;
    font-size: 12px;
  }
  .chat_left_title h3 {
    font-size: 14px;
  }
  .chat_left_title h4 {
    font-size: 12px;
    margin-top: 4px;
  }
  .verification_tab_box h4 {
    font-size: 12px;
  }
  .verification_step {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .verification_tab_box::after, .verification_tab_box_yellow::after {
    height: 2px;
    transform: translate(50%, -800%);
  }
  .id_ver_btn a {
    padding: 8px 20px;
  }
  .war_message{
    width: 100%;
  }

  
  /*new_oraganizer_design*/
  .org_footer h4 {
    font-size: 12px;
  }
  .org_footer ul li a {
    font-size: 12px;
  }
  .org_footer {
    padding: 10px 0;
  }
  /*end_new_oraganizer_design*/
}


