.vc-header {
    width: 100%;
    min-height: 50vh;
    display: grid;
    align-content: end;
    position: relative;
    &:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        display: block;
        background-color: rgba(0, 0, 0, 0.411);
    }
}

.vc-header-2 {
    height: 100%;
    min-height: 60vh;
    display: grid;
    align-content: end;
    position: relative;
    background-size: cover !important;
    width: 100%;
    &:after
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-color: #00000059;
}
}

.vc-header-2.vc-header-__atomic {
    min-height: 40vh;
}


.vc-header__text {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
    z-index: 90;
    & h1 {
        font-size: 40px;
        color: white;
        margin: 0;
        font-weight: 600;
    }
    & p {
        color: white;
    }
}

.vc-view__tickets {
    width: 90%;
    margin: 20px auto 140px;
}

.vc-tabs-view {
    display: flex;
    gap: 40px;
    font-weight: 300;
}

.vc-tab__active {
    border-bottom: 1px solid black;
}

.vc-view__tickets-container {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 60px;

    @media (max-width: 552px){
        grid-template-columns:1fr;
    }
}

.vc-view__tickets-container.old-tickets-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.vc-ticket {
    display: flex;
    flex-direction: column;
    position: relative;
}

.vc-ticket.old-ticket > .img-placeholder {
    width: 100%;
    clip-path: polygon(
            0% 0%,
            95% 0%,
            100% 8%,
            100% 0%,
            100% 0%,
            100% 100%,
            100% 100%,
            100% 96%,
            95% 100%,
            0% 100%
    );
}

.vc-ticket.old-ticket {
    width: 100%;
}

.vc-ticket.old-ticket .ticket-design {
    right: 0;
    height: 100%;
    & > .ticket-border {
        height: 100%;
        width: 2px;
        content: "";
        display: block;
        position: relative;
        border-style: dashed;
        border-width: 1px;
        /* top: -15px; */
    }
}

.vc-ticket.old-ticket .vc-book {
    display: none !important;
}

.vc-ticket.old-ticket .ticket-status {
    background-color: #fff;
}

.vc-ticket.old-ticket .ticket-date {
    background-color: #eeeeee;
}

.img-placeholder-design {
    position: absolute !important;
    top: 0;
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    z-index: 79;
    clip-path: polygon(
            0% 100%,
            73% 0%,
            76% 4%,
            79% 0%,
            100% 0%,
            100% 100%,
            79% 100%,
            76% 96%,
            73% 100%,
            0% 100%
    );
}

.vc-ticket.old-ticket:hover .img-placeholder-design-0 {
    transform: scale(1) rotate(0deg) !important;
}
.vc-ticket.old-ticket:hover .img-placeholder-design-1 {
    transform: scale(1) rotate(0deg) !important;
}
.vc-ticket.old-ticket:hover .img-placeholder-design-2 {
    transform: scale(1) rotate(0deg) !important;
}

.img-placeholder-design-0 {
    transform: scale(1) rotate(0deg);
    background-color: #000000;
    transition: transform 0.3s ease-in-out;

    z-index: 79;
    & img {
        transform: scale(1) rotate(0deg);
    }
}

.img-placeholder-design-1::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(66, 66, 66, 0.677);
    z-index: 80;
}

.img-placeholder-design-2::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 38, 38, 0.874);
    z-index: 80;
}

.vc-ticket:hover .img-placeholder-design-0 {
    transform: scale(1) rotate(-2.5deg) !important;
}

.img-placeholder-design-1 {
    opacity: 1;
    z-index: 77;
    /* & img {
      transform: scale(1) rotate(0deg) !important;
    } */
    z-index: 78;
}

.vc-ticket:hover .img-placeholder-design-1 {
    transform: scale(1) rotate(0) !important;
}

.img-placeholder-design-2 {
    opacity: 1;
    z-index: 70;
    /* & img {
      transform: scale(1) rotate(0deg) !important;
    } */
}

.vc-ticket:hover .img-placeholder-design-2 {
    transform: scale(1) rotate(3deg) !important;
    opacity: 0.6;
}

.vc-ticket > .img-placeholder {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    transform: scale(1) rotate(0deg);
    @media (max-width: 552px){
        height: 180px;
    }
    transition: transform 0.3s ease-in-out;
    clip-path: polygon(
            0% 0%,
            73% 0%,
            76% 4%,
            79% 0%,
            100% 0%,
            100% 100%,
            79% 100%,
            76% 96%,
            73% 100%,
            0% 100%
    );
}

.vc-ticket > .img-placeholder > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ticket-date {
    background-color: #fff500;
    position: absolute;
    top: 0px;
    left: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0px 10px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 300;
    z-index: 90;
}

.ticket-date__day {
    font-size: 16px;
    font-weight: 500
}

.ticket-status {
    position: absolute;
    right: 10px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 2px 8px;
    background-color: #fff500;
    border-radius: 4px;
    top: 10px;
    font-weight: 400;
    z-index: 90;
    @media (max-width: 552px){
        font-size: 8px;
    }
}

.ticket-design {
    position: absolute;
    right: 23.8%;
    height: 100%;
    z-index: 90;
    opacity: 1;
    & > .ticket-border {
        height: 100%;
        width: 2px;
        content: "";
        display: block;
        position: relative;
        border-style: dashed;
        border-width: 1px;
        /* top: -15px; */
    }

    /* & > .ticket-bullet {
      height: 30px;
      width: 30px;
  
      content: "";
      display: block;
      position: relative;
      border-radius: 100px;
      background-color: white;
      left: -15px;
    }
    & > .ticket-bullet-top {
      top: -15px;
    }
    & > .ticket-bullet-bottom {
      bottom: 15px;
    } */
}

.vc-ticket__text {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 10px;

    @media (max-width: 552px){
        align-items: start;
        flex-direction: column;
        gap: 8px
    }
}

.vc-btn {
    padding: 5px 10px;
    background-color: #fff500;
    border-radius: 4px;
    min-width: 180px;
}

.vc-ticket__text h1 {
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
}

.vc-ticket__text p {
    font-size: 16px;
    font-weight: 400;
}

.vc-text-small {
    font-size: 12px !important;
    color: red;
    font-weight: 900;
}

.vc-booking-wrapper {
    width: 90%;
    margin:0px auto;
}

.vc-h-1 {
    font-size: 32px;
    font-weight: 700;
}

.vc-h-2 {
    font-size: 28px;
    font-weight: 400;
}

.vc-h-3 {
    font-size: 25px;
}

.vc-h-4 {
    font-size: 16px;
    line-height: 1;
}

.u-bold {
    font-weight: 700;
}

.vc-p {
    font-size: 16px;
}

.sec-color {
    color: #555555;
}

.vc-info__container {
    width: 100%;
    /*display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;*/
     grid-template-areas:
/*    "speaker price map-location"
    "speaker tickets map-location"
    "extra pdf-file map-location";*/
    /*grid-template-areas:
        "speaker price map-location"
        "speaker tickets map-location"
        "extra pdf-file map-location";*/

    @media (max-width: 1170px) {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
        "speaker price "
        "speaker tickets "
        "extra pdf-file "
        "map-location map-location";
    }

    @media (max-width: 690px) {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas:
        "speaker "
        "price "
        " tickets "
        "extra"
        "pdf-file"
        "map-location ";
    }
}

.speaker {
    grid-area: speaker;
}
.price {
    grid-area: price;
}
.tickets {
    grid-area: tickets;
}

.extra {
    grid-area: extra;
}

.map-location {
    grid-area: map-location;
}

.pdf-file {
    grid-area: pdf-file;
}

.vc-info__content {
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
    min-width: fit-content;
    width: 30%;
}

@media(max-width: 650px){
    .vc-info__content {
       
        width: 100%;
    }
}

.map-img-placeholder {
    height: 100%;
    overflow: hidden;
}

.map-img-placeholder iframe{
    height: 100% !important;
    min-height: 250px !important;
}

.vc-info__content {
    border: 1px solid #d6d6d6;
    padding: 12px;
    border-radius: 8px;
}

.vc-detail {
    margin: 8px 28px 0px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vc-detail-2 {
    margin: 8px 4px 0px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border-radius: 4px;
}



.btn {
    padding: 8px 16px;
    text-transform: uppercase;
    border-radius: 8px;

    font-weight: 700;
}

.btn-primary {
    background-color: #fff500;
}
.btn-secondary {
    border: 2px solid #fff500;
}
.numberOfPeople {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.trigger-number {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    height: 40px;
    background-color: #e7e7e7;
}

.show-number {
    width: 40px;
    height: 40px;
    border: 1px solid black;
    border-radius: 4px;
    text-align: center;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; /* Optional */
}
input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}
.vc-booking-ticket__form {
    width: 100%;
    background-color: #c2c2c22b;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    @media (max-width: 632px) {
        grid-template-columns: 1fr;
    }
}
.vc-booking-ticket__form input {
    border: 1px solid rgb(139, 139, 139);
    border-radius: 4px;
    padding: 8px;
}

.vc-booking-ticket {
    margin-top: 20px;
    max-width: 800px;
    margin-bottom: 20px;
    display: grid;
/*    height: 200px;*/
    grid-template-columns: 180px 1fr;
    border-radius: 8px;
    /* overflow: hidden; */
    position: relative;

    @media (max-width: 845px) {
        grid-template-columns: 1fr;
        height: 100%;
    }
}
.numberSeat {
    background-color: #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    flex-direction: column;
    @media (max-width: 845px) {
        padding: 40px 0px;
    }
}

.vc-booking-ticket__design {
    position: absolute;
    right: 0px;
    height: 100%;
    @media (max-width: 845px) {
        left: 0px;
        bottom: 0px;
    }
}
.vc-booking-ticket__border {
    height: 100%;
    width: 2px;
    content: "";
    display: block;
    position: absolute;
    border-style: dashed;
    border-width: 1px;
    background-color: #797979;
    @media (max-width: 845px) {
        height: 2px;
        width: 100%;
        bottom: 0px;
    }
}

.vc-booking-ticket__radius {
    width: 30px;
    height: 30px;
    background-color: white;
    position: absolute;

    border-radius: 100px;
}

.radius-top {
    right: -15px;
    top: -15px;
    z-index: 80;
    @media (max-width: 845px) {
        left: -15px;
        top: calc(100% - 15px);
    }
}

.radius-bottom {
    right: -15px;
    bottom: -15px;

    z-index: 80;
    @media (max-width: 845px) {
        right: -15px;
        bottom: -15px;
    }
}


.vc-booking-button{
    text-align: center;
    @media (max-width: 560px) {
    width: 100%;
}
}

iframe {
    width:100%;
    height:300px;
}

.navbar-unique {
    background-color: #fff;
    box-shadow: 0 4px 10px rgb(0 0 0 / 9%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    backdrop-filter: blur(4px);
}

.unique-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    margin: 0 auto;
    padding: 20px 0;
}

.navbar-unique__img {
    width: 200px;
}
@media(max-width: 750px){
    .navbar-unique__img {
        width: 140px;
    }
    .unique-wrapper{
        padding: 10px 0;
    }
}

.navbar-unique__buttons{
    display: flex;
    gap: 12px;
}

.navbar-unique__buttons .unique-login-btn {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    background-color: #FDE100;
    border: 2px solid #FDE100;
}

.navbar-unique__buttons .unique-register-btn {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
/*    background-color: #FDE100;*/
    border: 2px solid #FDE100;
}

.share-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.share-button__style {
    display: flex;
    gap: 4px;

    background-color: #ffffff;
    padding: 8px 8px;
    border-radius: 4px;
    border: 1px solid #d6d6d6;
    align-items: center;
    cursor: pointer;
    width: fit-content;
}

.share-button__style a{
    display: flex;
    align-items: center;
    gap: 4px;
}

@media(max-width: 846px){
    .share-container {
        display: flex;
    }
}

.share-button__style img{
    width: 16px;
}

    .share-button__style p {
        font-size: 14px;
    }

.vc-share-button {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    cursor: pointer;

}



.bookingItemRemoveBtn {
    position: absolute;
    right: -5px;
    top: -10px;
    padding: 4px;
    background-color: white;
    border-radius: 100px;
    width: 20px;
    height: 20px;
    background-color: red;
    display: flex;
    justify-content: center;
    color: white;
    align-items: center;
}

.vc-share-button img {
    width: 20px;
}

.pdf-ticket__container {
    margin-top: 20px;
    border: 1px dashed black;
    padding: 8px;
    page-break-inside: avoid;
}


.vc-pdf__header {
    padding: 1rem;
    border-radius: 8px;
}

.vc-pdf__logo {
    text-align: center;
    display: flex;
    justify-content: start;
    margin-bottom: 12px;
}

.vc-pdf__logo img{
    width: 200px
}

.vc-pdf__header__wrapper {
    max-height: 250px;
    overflow: hidden;
}

.vc-pdf__subInfo {
    display: inline-block;
    /*grid-template-columns: 20px 1fr;*/
    align-items:center;
    gap: 4px;
}

.vc-pdf__subInfo__image {
    width: 14px;
    height: 20px;
    position: relative;
    top: 5px;
    align-items: center;
    display: inline-block;
}


.vc-pdf__subInfo img {
    height: 16px;
}

.vc-pdf__info__container{
    display: flex;
    flex-direction: column;
}

.vc-pdf__info__title {
    font-size: 36px;
    font-weight: 600;
}

.vc-pdf__subInfo p{
    font-size: 18px;
    display: inline-block; 
    margin-right: 12px;
}

.vc-pdf__subInfo__container {
    display: inline-block;
    gap: 40px;
    margin-top: 20px;
}
.vc-ticket__user-container {
    border-radius: 8px;
    width: 100%;
    display: flex;
    padding: 1rem;
    justify-content: space-between;
    align-items: center;
    min-height: 165px;
    height: 100%;
    position: relative;
}

  /*  .vc-ticket__user-container::after {
        content: "";
        position: absolute;
        display: block;
        bottom: -20px;
        width: 100%;
        height: 1px;
        background-color: #0000001c;
        left: 0px;
    }*/

    .vc-ticket__user {
        display: flex;
        gap: 40px;
        min-height: 140px;
        align-items: center;

        
    }

.vc-ticket__user-info{
    display: flex;
    gap: 8px;
    align-items: center;
}

.vc-ticket__user-info__container{
    display: inline-block;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    bottom: 35px;
}

    .vc-ticket__user-info__container .vc-ticket__user-info:first-child img {
        display: none;
    }

    .vc-ticket__user-info__container .vc-ticket__user-info:first-child p {
        font-size: 34px;
        font-weight: 600;
    }
.vc-ticket__user-info p{
    font-size: 20px;
    display: inline-block;
    position: relative;
    top: 5px;
    margin-left: 4px;
}

    .vc-ticket__user-info img{
        display: inline-block;
    }

    .vc-ticket__user {
    }
.qr-code__place{
    width: 160px;
    height: 160px;
    display: inline-block;
}

.qr-code__place img{
    width: 100%;
    height: 100%;
}

.vc-ticket__user-info img {
    width: 16px;
}

.vc-ticket__user-container .share-container{
    display: grid;
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 8px
}

.vc-pdf__body {
    display: flex;
    justify-content: start;
    flex-direction: column; 
    width: calc(100% - 4rem);
}

.walletImages img{
    height: 39px;
}

.event-confirmed {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -40px;
    margin-bottom: 20px;
    z-index: 10;
}
.event-confirmed h1{
    font-size: 34px;
    font-weight: 600;
    text-align: center;
    padding: 0 2rem;
}

    .event-confirmed p {
        font-size: 14px;
        padding: 4px;
        background-color: #fde1043b;
        font-weight: 400;
    }

.vc-reservation__details-item{
    display: flex;
}

.vc-reservation__details-item img{
    width: auto;
    height: 16px;
    opacity: 0.8
}
.vc-reservation__details h1{
    font-size: 32px;
    font-weight: 600;
}
.vc-reservation__details-item{
    display: flex;
    gap: 8px;
    align-items: center;
}

.vc-reservation__details {
    width: 100%;
    background-color: #c2c2c22b;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.ticket__contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vc-success-message {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: #23a26d;
    margin-top: 80px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative
}

.vc-success-message__container{
    padding: 2rem;
}

.vs__check-icon {
    width: 50px;
    height: 50px;
    border: 4px solid white;
    border-radius: 100px;
    padding: 8px;
    position: absolute;
    top: -25px;
    background-color: #3bcb8f;
}

.vs__check-icon img{
    width: 100%;
    height: 100%;
}

/*Modal*/
/* Modal container */
.code-verification__modal__container {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
}

    .code-verification__modal__container.active {
        display:flex;
    }

    /* Modal content */
    .code-verification__modal__content {
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        width: 100%;
        max-width: 500px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        justify-content: center;
        display: flex;
        flex-direction: column;
        text-align: center;
        position: relative;
    }

.code-verification__modal__content-p{
    padding: 2rem;
    position: relative;
}

.code-verification__modal__content h1 {
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
}
/* Input styling */
.code-verification__modal__content input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

    /* Button styling */
.code-verification__modal__content button {
    padding: 10px 20px;
    background-color: #fde100;
    color: white;
    color: black;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

    .code-verification__modal__content button:hover {
        background-color: #f1d700;
    }

/* Close button styling */
.close-modal {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    border-radius: 100px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    padding: 4px;
    cursor: pointer;
}

.vc-success-message p a{
    font-weight: 600;
    text-decoration: underline;
}

.pickupLocationItems {
    margin-top: 4px;
    width: fit-content;
    border: none;
/*    padding: 12px;*/
/*    border: 1px dashed #0000004d;*/
}

.loc-venue {
    width: 20px;
}

.loc-image{
    width:13px;
    margin-left: 4px;
    margin-right: 4px;
}

@media(max-width: 650px) {
    .pickupLocationItems{
        width: 100%;
    }
}

    .pickupLocationItems h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .pickupLocationItems p{
        font-size: 14px;
        margin-bottom: 4px;
    }

    .pickupLocationItem {
        display: flex;
        gap: 8px;
        align-items: center;
    }
.pdf-forAll{
    margin-top: 20px;
}

.vc-booking-wrapper-sm {
    width: 90%;
    margin: 0 auto;
    max-height: 300px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease-in-out; /* Smooth transition */
}

    .vc-booking-wrapper-sm.active {
        max-height: none; /* Allows full expansion */
    }

        .vc-booking-wrapper-sm.active::after {
            opacity: 0; /* Hide gradient when expanded */
        }

    .vc-booking-wrapper-sm::after {
        content: "";
        display: block;
        opacity: 1;
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, white, transparent);
        bottom: 0;
    }

.read-more-text {
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #fff500;
    cursor: pointer;
    color: black;
    margin-top: 20px;
}



.read-more__container {
    width: 90%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
/*.max-width-6{
    max-width: 600px;
}*/

.hr-seperate {
    display: none;
}

.pickUp-wrapper{
    width: 90%;
    margin-top: 20px;
}

.pickupLoc-selected__container{
    display: flex;
    gap: 8px;
}

.updatePickupLocation {
    margin-top: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #fde104;
    font-size: 16px;
    border: 1px solid #fde104;
}

.pickupLocationItems select {
    padding: 4px;
    font-size: 14px;
    
}

.pickupLocationItems option {
    padding: 8px;
}

.pickupLocation__after__wrapper{
    margin-top: 12px;
    margin-top: 12px;
}

.pickupLocation__after__content {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap
}

.pickupLocation__after__heading{
    font-size: 16px;
}

.pickupLocation__after__text{
    font-size: 16px;
    margin-top: 4px;
}

.pickupLocation__after__change-btn {
    display: flex;
    gap: 4px;
    border: 1px solid rgba(0,0,0,0.4);
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
}

.pickupLocSelect{
    padding: 0;
    margin-top: 8px;
}

.pickupLocation__after__title {
    font-size: 16px;
    font-weight: 600;
}


.pickupLocation__after__change-btn img {
    width: 16px;
}

.closePickuploc {
    margin-top: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.4);
    font-size: 16px;
}

.pickupLocSelect select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.3);
}

.pickupLocSelect{
    display: none;
}

.pickupLocSelect.active {
    display: flex;
}

.pickupLocation__after__add-btn{
    display: none;
    gap: 4px;
    border: 1px solid rgba(0,0,0,0.3);
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
}

.pickupLocation__after__add-btn.active{
    display: flex;
}

.data-address{
    display: none;
}

.cancelVcReservationBtn {
    display: flex;
    gap: 4px;
    margin-top: 12px;
    background-color: #fd2727;
    padding: 8px 8px;
    border-radius: 4px;
    border: 1px solid #fff;
    align-items: center;
    cursor: pointer;
    width: fit-content;
    color: #fff;
}
.event-ticket__actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 9;
}
.edit-participant, .delete-participant {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid #00000061;
    width: fit-content;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    
     
}

    .edit-participant p, .delete-participant p {
        font-size: 12px;
    }

    .edit-participant img {
        width: 16px;
    }

.delete-participant img{
    width: 12px;
}

.modal-content__participant {
    background-color: white;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative
}

    .modal-content__participant .heading h1 {
        font-size: 1.4rem;
        font-weight: 600;
    }

.participant-forms{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media(max-width: 585px){
    .participant-forms {
        display: flex;
        flex-direction: column;

    }
}

    .participant-forms input {
        border: 1px solid #00000075;
        border-radius: 4px;
        padding: 4px 8px;
    }
.btn-save {
    background-color: #fde100;
    padding: 8px;
    width: fit-content;
    margin-top: 8px;
    cursor: pointer;
}

.form-group{
    display: flex;
    flex-direction: column;
}
    .form-group label {
        font-size: 14px;
        font-weight: 400
    }
    .form-group input {
        font-size: 14px;
        font-weight: 400
    }

.del-participant__modal{
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.del-participant__actions{
    display: flex;
    gap: 16px;
    justify-content: center;
}

.del-participant__actions__yes {
    border: 1px solid #00000040;
    padding: 4px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.del-participant__actions__no {
    border: 1px solid #00000040;
    padding: 4px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.del-participant__modal.hide{
    display: none;
}

@media(max-width:1260px) {
    .bookingItemInput .vc-booking-ticket__form {
        grid-template-columns: 1fr;
    }
}

.extra-info {
    margin: 20px 0;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 1rem;
    border: 1px dashed #00000030;
    max-width: 800px;
}

    .extra-info p span {
        background-color: #fff50045;
        padding: 4px;
    }

.mark-important text {
    width: 90%;
    margin: 0px auto 20px;
}

.vc-booking-wrapper .vc-h-1 {
    font-size: 34px;
    font-weight: 500;
    line-height: 36px;
}

.vc-dates h2 {
    font-size: 30px;
}

.vc-main-text{
    font-weight: 300;
}

.vc-title-info {
    font-weight: 500;
    font-size: 28px;
}

.vc-title-heading {
    font-size: 16px !important;
    font-family: 'CF ModGrotesk', sans-serif !important;
}

.vc-card_detail{
    font-size: 20px;
}

.event-error {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /*    top: -40px;*/
    margin-bottom: 20px;
    z-index: 10;
    margin-top: 20px;
    padding: 20px;
    border: 1px dashed black;
}

    .event-error h1 {
        font-size: 34px;
        font-weight: 600;
        text-align: center;
        padding: 0 2rem;
    }

@media(max-width:1260px) {
    .event-error{
        max-width: 300px;
    }
    .event-error h1 {
        font-size: 20px;
    }
}

    .event-error a {
        padding: 8px 16px;
        border-radius: 4px;
        margin-top: 20px;
        background: rgb(253 225 0 / var(--tw-bg-opacity, 1));
    }

    html, body{
        scroll-behavior: smooth
    }

.xronia30-photo{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.xronia30-photo  img{
    width: 100%;
}


.vfooter {
    padding: 2rem;
    position: relative;
    top: -1px;
    text-align: center;
    position: relative;
    font-size: 16px;
    display: flex;
    flex-wrap:wrap;
    gap: 16px;
    border-top: 1px solid #00000061;
    width: 100%;
    justify-content: center;
    align-items: center;
    /*    display: grid;*/
    /*    grid-template-areas: ". copyright credits";
    grid-template-columns: 1fr 1fr 1fr;*/
    /*    align-items: center;*/
}
.created-by{
    display: flex;
    gap: 4px;
}
.after-mark {
    display: flex;
}

.after-mark::after {
    content: "|";
    display: block;
    position: relative;
    color: black;
    margin-left: 8px;
    
}

.footer-mail {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vfooter p {
    grid-area: copyright;
    margin: 0;
    font-size: 14px;
}
.vfooter a {
    font-weight: 600;
    font-size: 14px !important;
}

    .vfooter p span {
        color: black
    }

.vfooter a {
    grid-area: credits;
    text-decoration: none;
    color: black;
    font-size: 12px;
    text-align: end;
}

.question-box {
    padding: 20px;
    text-align: center;
    /* border: 1px solid #00000040; */
    margin-bottom: 20px;
    border-radius: 8px;
    max-width: calc(60vw - 4rem);
    position: relative;
    background-color: #f2f2f2;
}

@media (max-width: 850px) {
    .question-box {
        max-width: calc(80vw - 4rem);
    }
}
.q-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
/*    width: 100px;*/
    border-radius: 100px;
    border: 1px solid #00000042;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.2);
}
.question-heading p {
    font-size: 30px;
    line-height: 0
   
}

.question-heading h1 {
    font-size: 24px;
    font-weight: 600;
}

.question-data{
    font-size: 16px;
}

.question-data a{
    font-size: 16px;
    font-weight: 600
}


.vc-noEvents{
    margin-top: 20px;
}