/*============================================================================================*/
/* custom styles */
/*============================================================================================*/

.shine {
  position: relative;
  overflow: hidden;
}
.shine:after {
  animation: shine 2s forwards infinite;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 248, 248, 0.63) 50%, transparent);
  filter: blur(15px);
  transform: rotateZ(120deg) translate(0em, 15em);
}

@keyframes shine {
  100% {
    transform: rotateZ(120deg) translate(0em, -15em);
  }
}

.gradient-bg {
    background: linear-gradient(to right, #0F2027, #203A43, #2C5364);
}

.gradient-bg-2 {
    background: linear-gradient(to right, #44A08D , #093637);
}

.gradient-bg-3 {
    background: linear-gradient(to right, #a8ff78 , #78ffd6);
}

.gradient-bg-4 {

  background-image: radial-gradient(
      at 40% 20%,
      rgb(255, 184, 122) 0px,
      transparent 50%
    ),
    radial-gradient(at 80% 0%, rgb(163, 212, 55) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgb(255, 219, 222) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgb(53, 221, 0) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgb(184, 225, 95) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgb(107, 102, 255) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgb(213, 255, 115) 0px, transparent 50%);
  background-repeat: no-repeat;
}

/* Flexbox centering for the figure container */
.category-item {
    display: flex;
    flex-direction: column;
    justify-content: center;  /* Center vertically */
    align-items: center;  /* Center horizontally */
    height: 100%;  /* Ensure the container takes full height */
    text-align: center;
    margin: 0;
    padding: 20px;  /* Optional padding for spacing */
}

.event-sticky-header {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    padding: 10px 0px 10px 0px;
    z-index: 999; /* Ensure it stays on top of other elements */
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
}

.event_info h1{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0px;
    }
    .event_info span{
    font-size: 13px;

    }

@media (max-width: 576px) {
   .event_info h1{
    font-size: 16px;
    }
    .event_info span{
    font-size: 12px;
    margin-bottom: 0;
    line-height: 1.2;
    }
}

.event-buy-ticket-btn{
    font-size: 16px;
    padding: 12px 20px 12px 20px;
}
@media (max-width: 576px) {
    .event-buy-ticket-btn{
        font-size: 14px;
        font-weight: bold;
        padding: 10px 15px 10px 15px;
}
}

.bottom-button {
  position: fixed;
  left: 0;
  bottom: 0;
  /*width: 100%;*/
  padding: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  display: block;
  z-index: 9999;
}
@media (max-width: 991px) {
  .bottom-button {
    display: block;
  }
}

.rounded-8{
         border-radius: 8px;
     }

.ticket-card{
    outline: 1px solid var(--gradient-second);
}


.ticket-card:hover{
    outline: 2px solid var(--theme-dark);

}

.btn-tickify{
 background-color: var(--gradient-second);
    color: #f0f0f0;
}
.btn-tickify:hover{
 background-color: var(--theme-dark);
    color: #f0f0f0;
}

.btn-tickify-1{
 background-color: var(--color-primary-a40);
 color: var(--color-surface-a0);
}
.btn-tickify-1:hover{
    background-color: var(--color-primary-a10);
    color: var(--color-surface-a0);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.theme-color{
    color: var(--theme-color);
}

.text-gradient {
    background: -webkit-linear-gradient(45deg, #b3ff63, #e6ffc2 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-dark {
    background: -webkit-linear-gradient(45deg, #000000, #4fb600 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cart-ticket:hover{
    color: red;
}


.order-pgw {
    filter: #6c6c6c;
    -webkit-filter: grayscale(2); /* Webkit Nightlies & Chrome Canary */
    padding: 10px 10px;
    cursor: pointer;
    background-color: white;
    border: 1px solid #292929;
}

.order-pgw:hover {
    filter: none;
    -webkit-filter: grayscale(0);
}

.order-pgw.active {
    filter: none;
    background-color: #f2ffc8;
    border: 1px solid #a3d437;
    outline: 2px solid #a3d437; /* Change to your desired border color */
}

.profile-image {
    display: block;
    height: 100%;
    position: absolute;
    margin: auto;
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;
}

.text-bg-tickify{
    background-color: var(--color-primary-a50);
    color: #0b0b0b;
}

.text-tickify{
    color: #a3d437;;
}

.main-section{
    padding-top: 100px;
}

.full-page{
    min-height: 50vh;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .main-section {
        padding-top: 60px;
    }
}

.nav-link{
    color: #000000;
    background-color: #ededed;
    border: 1px solid transparent; /* Predefine border */
    transition: border-color 0.3s ease; /* Smooth transition for border color */
}
.nav-link:hover {
    background-color: #ffffff;
    border-color: #000000; /* Change border color on hover */
    color: #0b0b0b;
}
.nav-pills .nav-link.active{
    background-color: #000000;
    /* border: 1px solid; */
    font-weight: bold;
    color: #ffffff;
}

.animated-text{
  color: transparent;
  background-image: linear-gradient(90deg, #000000, #a3d437, #000000);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: move 5s linear infinite;
}


@-webkit-keyframes move {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: -200% center;
  }
}
@-moz-keyframes move {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: -200% center;
  }
}
@keyframes move {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: -200% center;
  }
}

.avatar-upload {
    position: relative;
    max-width: 150px;
    margin: 10px auto;
    .avatar-edit {
        position: absolute;
        right: 12px;
        z-index: 1;
        top: 10px;
        input {
            display: none;
            + label {
                display: inline-block;
                width: 34px;
                height: 34px;
                margin-bottom: 0;
                border-radius: 100%;
                background: #FFFFFF;
                border: 1px solid transparent;
                box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
                cursor: pointer;
                font-weight: normal;
                transition: all .2s ease-in-out;
                &:hover {
                    background: var(--color-primary-a50);
                    border-color: #d6d6d6;
                }
                &:after {
                    content: "\f030";
                    font-family: 'FontAwesome';
                    color: #757575;
                    position: absolute;
                    top: 10px;
                    left: 0;
                    right: 0;
                    text-align: center;
                    margin: auto;
                }
            }
        }
    }
    .avatar-preview {
        width: 150px;
        height: 150px;
        position: relative;
        border-radius: 100%;
        border: 6px solid #F8F8F8;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
        > div {
            width: 100%;
            height: 100%;
            border-radius: 100%;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }
    }
}


.org{
    width: 380px;
    border: none;
    border-radius: 15px;
    padding: 8px;
    background-color: #fff;
    position: relative;
    }


    .upper img{

    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    }

    .user{
    position: relative;
    }

    .profile img{


    height: 80px;
    width: 80px;
    margin-top:2px;


    }

    .profile{

    position: absolute;
    top:-50px;
    left: 38%;
    height: 90px;
    width: 90px;
    border:3px solid #fff;

    border-radius: 50%;

    }

    .follow{

    border-radius: 8px;
    padding-left: 20px;
    padding-right: 20px;
        margin: 5px;
    height: 35px;
    }

    .stats span{

    font-size: 29px;
    }

.footer-pgw {
      filter: gray;
      -webkit-filter: grayscale(2); /* Webkit Nightlies & Chrome Canary */
      -webkit-transition: all .5s ease-in-out;
    }

.footer-pgw:hover {
filter: none;
  -webkit-filter: grayscale(0);
  -webkit-transform: scale(1.01);
}


.otp-input {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.otp-input input {
    width: 45px;
    height: 45px;
    margin: 0 5px;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid #d5cfcf;
    border-radius: 4px;
    background-color: #e7edf8;
    color: #000000;
}
.otp-input input::-webkit-outer-spin-button,
.otp-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.otp-input input[type=number] {
  -moz-appearance: textfield;
}
.otp-button {
  background-color: rgba(255, 255, 255, 0);
  color: #000000;
  border: 1px solid #000000;
    padding: 5px 10px;
    font-size: 1rem;
    border-radius: 3px;
    margin-top: 4px;
  cursor: pointer;
}
.otp-button:hover {
  background-color: #000000;
    color: #ffffff;
}
.otp-button:disabled {
    background-color: #eaeaea;
    color: #bbbbbb;
    cursor: not-allowed;
    border: 1px solid white;
}
#timer {
  font-size: 1rem;
    text-align: center;
  margin-top: 1rem;

  color: #154546;
}


.scroller {
  max-width: max-content;
}

.scroller__inner {
  padding-block: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.slider_img{
    width: 20vw;
    border-radius: 10px;
}
.slider_img:hover {

}

@media (max-width: 576px) {
    .slider_img{
        width: 44vw;
        border-radius: 10px;

    }
}


/*EVENT TITLE...*/
.event_title.marquee {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.event_title.marquee span {
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    animation: marquee 10s linear infinite alternate;
}

@media (max-width: 576px) {
   .event_title.marquee span{
        margin-top: 10px;
        font-size: 22px;
        font-weight: bold;
    }
}

.event_title span {
    font-size: 30px;
    font-weight: bold;
}

@media (max-width: 576px) {
   .event_title span{
    font-size: 16px;
    font-weight: bold;
    }
}

@media (min-width: 576px) {
.event_title.marquee span {
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    animation: none;
}
}

@keyframes marquee {
    0% {
        transform: translateX(20%);
    }
    100% {
        transform: translateX(-80%);
    }
}

img.comms {
	width: 40px !important;
	height: auto;
}

:root {
  --theme-primary: #88c501 ;
  --theme-secondary: rgb(27, 69, 71);
  --theme-header: #ffffff;
  --theme-dark: #000000;
}

.event-status-coming-soon {
   position: absolute;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    background-color: #008af1;
    padding: 0px 10px;
    border-radius: 3px;
    right: 12px;
    top: 16px;
    z-index: 999;
}
.event-status-cancel {
    position: absolute;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    background-color: var(--theme-primary);
    padding: 0px 10px;
    border-radius: 3px;
    right: 12px;
    top: 16px;
    z-index: 999;
}
.event-status-closed {
    position: absolute;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    background-color: var(--theme-primary);
    padding: 0px 10px;
    border-radius: 3px;
    right: 12px;
    top: 16px;
    z-index: 999;
}
.event-status-ended {
    position: absolute;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    background-color: var(--theme-secondary);
    padding: 0px 10px;
    border-radius: 3px;
    right: 12px;
    top: 16px;
    z-index: 999;
}

.event-status-live {
    position: absolute;
    color: #ffffff;
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    cursor: pointer;
    background-color: rgb(0 0 0 / 25%);
    padding: 2px 5px;
    border-radius: 5px;
    right: 13px;
    top: 13px;

    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(0.98);
	animation: pulse 2s infinite;
}


.event-date {
    color: #ffffff;
    font-size: 20px;
    line-height: 15px;
    font-weight: 600;
    cursor: pointer;
    background-color: rgb(9, 9, 9);
    padding: 10px 13px;
    border-radius: 5px;
display: inline-block;
    z-index: 999;
}

.event-category {
    position: absolute;
    color: #ffffff;
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    cursor: pointer;
    background-color: rgb(0 0 0 / 25%);
    padding: 2px 5px;
    border-radius: 5px;
    left: 13px;
    top: 13px;
    z-index: 999;
}
@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 var(--theme-secondary);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}


#preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.3s ease-out;
        }

        /* Optional: Hide preloader once page is fully loaded */
        body.loaded #preloader {
            opacity: 0;
            visibility: hidden;
        }


#my-image, #use {
  display: none;
}

.marquee-container {
  width: 100%; /* Adjust width as needed */
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  position: relative;
}

.marquee-text {
  display: inline-block;
  position: relative;
  left: 0; /* Start position */
  animation: none; /* Initially stopped */
}

.marquee-container:hover .marquee-text {
  animation: marquee-left 5s linear infinite; /* Start moving on hover */
}

@keyframes marquee-left {
  0% {
    transform: translateX(0%); /* Start from the right */
  }
  100% {
    transform: translateX(-100%); /* Move to the left */
  }
}




.notice {
  position: absolute;
  top: 60px;
  right: 2px;
  border-radius: 12px;
  background: #fff;
  padding: 20px 35px 20px 25px;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.notice.active {
  transform: translateX(0%);
}

.notice .notice-content {
  display: flex;
  align-items: center;
}

.notice-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #4070f4;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.notice-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.message .text {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}

.message .text.text-1 {
  font-weight: 600;
  color: #333;
}

.notice .notice-close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.notice .notice-close:hover {
  opacity: 1;
}

.notice .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;

}

.notice .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
}

.progress.active:before {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}





