/*Modal style*/
.eb-modal-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    z-index:101010;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.50);
}
.eb-modal-wrap{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.eb-modal-dialog {
    width: 740px;
    max-width: calc(100% - 30px);
    background: #fff;
    border-radius: 15px;
}
.eb-modal-content{
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 12px #c8c8c8;
}
.eb-modal-header{
    position: relative;
    padding: 15px 20px;
    border-bottom: 1px solid #F0F3F4
}
.eb-modal-header .eb-modal-title{
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
    padding: 0;
    color: var(--eb-text-black);
    max-width: calc(100% - 50px);
}
.eb-modal-header .eb-modal-title h3{
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    color: var(--eb-text-black);
}
.eb-modal-close{
    position: absolute;
    top: 17px;
    right: 20px;
    margin: 0;
    font-size: 11px;
    padding: 4px 5px;
    border: 0;
    background: none;
    box-shadow: 0 0 0 0;
    cursor: pointer;
    opacity: 1;
    color: var(--eb-text-black);
    transition: var(--eb-all-300);
}
.eb-modal-close .ebi-icon-close:before{
    color: var(--eb-text-black);
}
.eb-modal-close:hover .ebi-icon-close:before{
    opacity: 0.7;
}
.eb-modal-body{
    padding: 24px;
    flex-grow: 1;
    overflow: hidden;
    overflow-y: auto;
}
.eb-modal-footer{
    padding: 20px 20px;
    border-top: 1px solid var(--eb-gray-600);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*.eb-modal-dialog*/
.eb-add-more-session-modal .eb-modal-dialog{
    width: 398px;
    max-width: 100%;
}
.eb-add-more-session-modal .eb-modal-header{
    border-bottom: 0;
    padding-bottom: 0;
}
.eb-add-more-session-modal .eb-modal-body{
    padding: 13px 24px 16px;
}
.eb-add-more-session-modal .eb-modal-footer{
    gap: 10px;
    border-top: 0;
    padding-top: 0;
    justify-content: flex-start;
}
.eb-ticket-popup-wrap{
    width: 100%;
    max-width: 100%;
}
/*eb-ticket-modal*/
.eb-ticket-modal .eb-modal-dialog{
    border-radius: 0;
}
.eb-ticket-modal .eb-modal-header {
    /*background: var(--eb-bg-dark-blue);*/
    border-bottom: 0;
    padding: 24px 20px;
    background: var(--eb-bg-dark-blue) url("../src/images/modal-base.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
}
.eb-ticket-modal .eb-modal-close{
    opacity: 0.5;
    top: 24px;
}
.eb-ticket-modal .eb-modal-close:hover{
    opacity: 1;
}
.eb-ticket-modal .eb-modal-close .ebi-icon-close:before{
    color: #f6f6f7;
}
.eb-ticket-modal .eb-modal-body{
    background: var(--eb-gray-600);
    max-height: calc(100vh - 300px);
}
.eb-ticket-modal .eb-modal-footer{
    padding: 12px 20px;
    border-top: 0;
    background: var(--eb-white-color);
}
.eb-modal-ticket-name {
    padding-right: 35px;
}
.eb-modal-ticket-name h5{
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 6px;
    padding: 0;
    color: var(--eb-gray-light-2);
}
.eb-modal-ticket-name .eb-ticket-address{
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin: 0;
    padding: 0;
    color: var(--eb-gray-rgba-80);
    display: flex;
    align-items: center;
}
.eb-modal-ticket-name .eb-ticket-address i {
    margin-right: 8px;
    font-size: 15px;
    color: #F6F6F7;
}
.eb-modal-ticket-name .eb-ticket-address svg{
    margin-right: 8px;
    margin-top: -0.5px;
}
.eb-ticket-date-time {
    border-top: 1px solid #FFFFFF26;
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
}
.eb-ticket-date-time h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 3px;
    padding: 0;
    color: var(--eb-gray-light-2);
}
.eb-ticket-date-time span {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    padding: 0;
    color: var(--eb-gray-light-2);
}
.eb-ticket-date,
.eb-ticket-time {
    width: 50%;
}
.eb-ticket-price {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: var(--eb-text-color);
}

.eb-ticket-modal-add-btn-wrap {
    text-align: center;
    position: relative;
    margin: -5px 0 20px 0;
}
.eb-ticket-modal-add-btn-wrap h4{
    margin: 0;
    line-height: 20px;
}
.eb-ticket-modal-back-arrow-wrap{
    position: absolute;
    top: 50%;
    left: 0;
    height: 26px;
    margin-top: -2px;
    padding: 5px 5px 5px 0;
    cursor: pointer;
    transform: translateY(-50%);
}
.eb-ticket-modal-back-arrow-wrap i{
    font-size: 16px;
    transition: var(--eb-all-300);
}
.eb-ticket-modal-back-arrow-wrap:hover i{
    color: var(--eb-primary-color);
}
.eb-ticket-card {
    box-shadow: 0 1px 2px 0 var(--eb-border-color-v2);
    background: #fff;
    padding: 16px;
    margin-bottom: 10px;
}
.eb-ticket-card:last-child{
    margin-bottom: 0;
}
.eb-ticket-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.eb-ticket-wrap + .eb-ticket-wrap{
    border-top: 1px solid var(--eb-border-color-v3);
    padding-top: 9px;
    margin-top: 12px;
}
.eb-ticket-group-title {
    border-bottom: 1px solid var(--eb-border-color-v3);
    padding-bottom: 9px;
    margin-bottom: 12px;
}
.eb-ticket-group-title h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin: 0;
    color: #000;
}
.eb-ticket-left {
    flex-grow: 1;
    padding-right: 20px;
}
.eb-ticket-left h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin: 0 0 4px;
    color: #000;
}
.eb-variation-ticket-wrap .eb-ticket-left h4{
    font-size: 14px;
}
.eb-ticket-price-wrap {
    margin-bottom: 4px;
}
.eb-ticket-price-wrap span {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
}
.eb-ticket-price-wrap strike {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #828282;
    padding-left: 10px;
}
.eb-gray-label {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #4F4F4F;
}
.eb-variation-ticket-wrap{
    border-top: 1px solid var(--eb-border-color);
    padding: 12px 0 12px;
}
.eb-ticket-card.eb-single-ticket-variation-wrap .eb-ticket-details-wrap,
.eb-ticket-card.eb-group-ticket-variation-wrap .eb-ticket-details-wrap {
    margin-top: 2px;
    /*border-top: 0;*/
}
.eb-ticket-card.eb-single-ticket-variation-wrap .eb-ticket-group-title,
.eb-ticket-card.eb-group-ticket-variation-wrap .eb-ticket-group-title {
    margin-bottom: 0;
    border-bottom: 0;
}
.eb-ticket-card.eb-single-ticket-variation-wrap .max-ticket-exceeded-error,
.eb-ticket-card.eb-group-ticket-variation-wrap .max-ticket-exceeded-error {
    margin-bottom: 0;
}

.eb-ticket-details-wrap {
    padding-top: 8px;
    border-top: 1px solid var(--eb-border-color);
    margin-top: 12px;
}
.eb-ticket-details p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--eb-gray-200);
    margin: 4px 0 0 0;
}
/*ticket modal components*/
.eb-booking-start-status,
.eb-booking-end-status,
.eb-early-discount-status {
    padding: 7px 16px;
    background: var(--eb-early-bird-discount-status-bg);
    margin: -16px -16px 16px;
}
.eb-booking-start-status {
    background: var(--eb-booking-start-on-status-bg);
}
.max-ticket-exceeded-error {
    color: var(--eb-error-text-color);
    line-height: 18px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    box-shadow: 0 0 0 1px var(--eb-error-text-color);
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #fff;
}
.max-ticket-exceeded-error:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    top: -6px;
    right: 43px;
    margin: auto;
    border-style: solid;
    border-color: var(--eb-error-text-color);
    border-width: 1px 0 0 1px;
    transform: rotate(45deg);
    background: #fff;
}
.eb-ticket-modal-session-btn-wrap .eb-icon-btn{
    padding: 16px;
    margin-right: -16px;
}
.eb-ticket-modal-ss-thumb-wrap{
    width: 70px;
    height: 70px;
    min-width: 70px;
    max-width: 70px;
    overflow: hidden;
    margin-right: 15px;
}
.eb-ticket-modal-ss-thumb-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eb-ticket-modal-session-container .eb-ticket-left{
    display: flex;
}
.eb-ticket-modal-session-container .eb-ticket-modal-session-data .eb-ticket-ss-date-time{
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 4px;
    color: var(--eb-text-color);
}
.eb-ticket-modal-session-container .eb-ticket-modal-session-data .eb-ticket-ss-duration{
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--eb-gray-200);
}

/*Product*/
.eb-ticket-modal-product-container .eb-ticket-left{
    display: flex;
    align-items: center;
}
.eb-ticket-modal-product-thumb-wrap{
    width: 70px;
    height: 70px;
    min-width: 70px;
    max-width: 70px;
    overflow: hidden;
    margin-right: 15px;
}
.eb-ticket-modal-product-thumb-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eb-ticket-modal-product-data h4{
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin: 0;
    color: var(--eb-text-black);
}


/*UI Slider*/
.slider-container {
    width: calc(100% - 10px);
    margin-bottom: 10px;
    padding-top: 10px;
}
.slider-container.opacity05 {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}
.slider-container .slider-label-text {
    margin-bottom: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.slider-container .slider-label-text span {
    font-size: 14px;
    font-weight: 500;
    color: #383838;
    line-height: 20px;
}
.slider-container .slider-label-text span:first-child {
    padding-right: 12px;
}
.slider-container .ui-widget.ui-widget-content {
    height: 8px;
    background: #edf2f2 !important;
    border-color: rgba(64, 109, 109, 0.2) !important;
}
.slider-container .ui-slider-horizontal .ui-slider-handle {
    top: -7px !important;
}
.slider-container .ui-state-default, .slider-container .ui-widget-content .ui-state-default {
    width: auto !important;
    height: 20px !important;
    border-radius: 5px;
    border: 0 !important;
    background: #000;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600 !important;
    line-height: 18.5px;
    padding: 3px 15px;
    cursor: pointer !important;
}
.slider-container .ui-state-default:before {
    width: 7px;
    position: absolute;
    left: 3px;
    top: 5px;
    content: "\e901";
    font-family: 'EventBookings' !important;
    speak: never;
    font-size: 10px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}
.slider-container .ui-state-default:after {
    width: 7px;
    position: absolute;
    right: 3px;
    top: 5px;
    content: "\e900";
    font-family: 'EventBookings' !important;
    speak: never;
    font-size: 10px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

/*Donation ticket*/
.eb-donation-ticket-wrap > .input-group.number-input{
    display: flex;
    align-items: center;
    position: relative;
    width: 153px;
    border: 1px solid #D6D6D6;
    height: 36px;
    border-radius: 4px;
    overflow: hidden;
}
@media (max-width: 767px){
    .eb-donation-ticket-wrap > .input-group.number-input{
        width: 112px;
    }
}
.eb-donation-ticket-wrap .input-group-append{
    font-size: 16px;
    background: #F3F3F3;
    height: 100%;
    padding: 5px 7px;
}
.form-control.donation_ticket_qty {
    width: calc(100% - 42px);
    height: 34px !important;
    min-width: auto;
    border: 0;
    padding: 5px 22px 5px 5px;
}
.eb-remove-donation-amount-btn{
    position: absolute;
    right: 5px;
    font-size: 10px;
}
.eb-donation-ticket-wrap .ebi-icon-close:before {
    color: #000;
}

@media (max-width: 575px){
    .eb-ticket-wrap{
        flex-wrap: wrap;
    }
    .eb-ticket-left {
        padding-right: 0;
    }
    .eb-donation-ticket-wrap > .input-group.number-input{
        width: 100%;
        margin-top: 10px;
    }
    .eb-ticket-wrap .eb-ticket-right-btn  .eb-input-number {
        margin-top: 10px;
    }
    .slider-container,
    .eb-ticket-right-b-wrap,
    .select-input-group.eb-donation-ticket-wrap,
    .eb-ticket-wrap .eb-ticket-right-btn  .eb-input-number input{
        width: 100%;
    }
    .max-ticket-exceeded-error{
        margin-top: 10px;
    }
    .eb-soldout-status{
        margin-top: 5px;
    }
    .eb-ticket-modal .eb-modal-body{
        padding: 15px;
    }
}


/*TimeSlot -----------------------------*/
.eb-ticket-modal {
    /*# sourceMappingURL=style.css.map */
}
.eb-ticket-modal .eb-sell-appointment-main-wrap {
    display: flex;
    padding: 0;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
    .eb-ticket-modal .eb-sell-appointment-main-wrap {
        flex-wrap: wrap;
        padding: 0;
        margin: -10px -15px -12px;
    }
}
.eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap {
    flex-grow: 1;
    border-right: 1px solid #e3e3e3 !important;
}
@media (max-width: 767px) {
    .eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap {
        width: 100%;
        -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
        margin-bottom: 6px;
    }
}
.eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap .eb-card-header {
    padding: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}
@media (max-width: 767px) {
    .eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap .eb-card-header {
        padding: 10px 15px;
    }
}
.eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap table {
    margin-bottom: 5px;
}
.eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap table.table-sm td,
.eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap table.table-sm th {
    padding: 6px;
}
@media (max-width: 767px) {
    .eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap table.table-sm td,
    .eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap table.table-sm th {
        padding: 0 4px 4px;
    }
}
@media (max-width: 767px) {
    .eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap table.table-sm th {
        padding-bottom: 8px;
    }
}
.eb-ticket-modal .eb-sell-appointment-main-wrap .eb-sell-ap-calender-wrap .eb-card-body {
    padding: 7px 8px 0;
}
.eb-ticket-modal .eb-sell-appointment-main-wrap .sell-ap-calender-right-wrap {
    width: 239px;
}
@media (max-width: 767px) {
    .eb-ticket-modal .eb-sell-appointment-main-wrap .sell-ap-calender-right-wrap {
        width: 100%;
        margin-bottom: 19px;
    }
}
.eb-ticket-modal .eb-sell-appointment-main-wrap .sell-ap-calender-right-wrap .eb-card-header {
    padding: 16px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}
@media (max-width: 767px) {
    .eb-ticket-modal .eb-sell-appointment-main-wrap .sell-ap-calender-right-wrap .eb-card-header {
        padding: 10px 0;
    }
}
.eb-ticket-modal .eb-sell-appointment-main-wrap .sell-ap-calender-right-wrap .eb-card-body {
    padding: 15px 0;
}

.eb-ticket-modal .eb-timeslot-modal-footer {
    min-height: auto;
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.14);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.14);
    border-top: 0;
    z-index: 11;
}
.eb-ticket-modal .eb-timeslot-modal-footer.left-card {
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
}
.eb-ticket-modal .eb-timeslot-modal-footer.left-card .eb-status-lable-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}
.eb-ticket-modal .page-hero h3 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: -1px -1px 1px #460000, 2px 2px 1px #ff4965;
    text-transform: uppercase;
    color: #bd122d;
}
.eb-ticket-modal .page-hero p {
    color: #f1acb7;
}
.eb-ticket-modal .eb-card-header strong,
.eb-ticket-modal .eb-card-header {
    background: #fff;
    color: #000;
    font-family: var(--eb-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}
.eb-ticket-modal .eb-card-header .prevMonth {
    cursor: pointer;
    border: 1px solid #c7c7c7;
    height: 22px;
    width: 22px;
    display: inline-block;
    border-radius: 3px;
    font-size: 0;
    background: url(../src/images/sell-cal-icon-left.png);
    background-repeat: no-repeat;
    background-position: center;
}
.eb-ticket-modal .eb-card-header .nextMonth {
    cursor: pointer;
    border: 1px solid #c7c7c7;
    height: 22px;
    width: 22px;
    display: inline-block;
    border-radius: 3px;
    font-size: 0;
    background: url(../src/images/sell-cal-icon-right.png);
    background-repeat: no-repeat;
    background-position: center;
}
.eb-ticket-modal .eb-card-body .days span {
    background: transparent;
    border-radius: 50%;
    height: 32px;
    display: block;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    line-height: 32px;
    color: #666;
}
.eb-ticket-modal .eb-card-body .dates span {
    background: transparent;
    color: #000;
    display: inline-block;
    height: 36px;
    width: 44px;
    cursor: pointer;
    border-radius: 29px;
    font-weight: 400;
    font-size: 14px;
    line-height: 34px;
    text-align: center;
}
.eb-ticket-modal .eb-card-body .dates span.bg-light {
    background: #fff !important;
    border: 1px solid #b6b6b6;
    color: #b6b6b6;
    pointer-events: none;
    user-select: none;
}
.eb-ticket-modal .eb-card-body .dates span.previous_date {
    color: #b6b6b6;
    pointer-events: none;
    user-select: none;
}
.eb-ticket-modal .eb-card-body .dates span.ntMonth.nextMonth {
    background: transparent;
    color: #b6b6b6;
}
.eb-ticket-modal .card#event .eb-card-header .close {
    color: #fff;
    opacity: 1;
}
.eb-ticket-modal .eb-card-body .events-today {
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 15px;
    margin: 0 -3px;
    display: flex;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
    .eb-ticket-modal .eb-card-body .events-today {
        overflow-y: auto;
        max-height: calc(100vh - 399px);
    }
}
.eb-ticket-modal .eb-card-body .events-today .time-slotes {
    width: calc(50% - 7px);
    margin: 3.5px !important;
    padding: 10px;
    cursor: pointer;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    text-align: center;
    border: 1px solid #dee2e6;
}
@media (max-width: 767px) {
    .eb-ticket-modal .eb-card-body .events-today .time-slotes {
        width: calc(33.333% - 7px);
    }
}
.eb-ticket-modal .eb-card-body .events-today .status-lable {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #b6b6b6;
}
.eb-ticket-modal .eb-card-body .events-today .active {
    background: var(--eb-primary-color);
    border-color: var(--eb-primary-color);
    color: #fff;
}
.eb-ticket-modal .eb-card-body .events-today .active .status-lable{
    color: #fff;
}
.eb-ticket-modal .eb-card-body .events-today > div.alert-secondary {
    background: #f3f3f3;
    border-color: #f3f3f3;
    pointer-events: none;
    user-select: none;
}
.eb-ticket-modal .eb-card-body .events-today > div.alert-secondary .visitor-date-time {
    color: #b6b6b6;
}
.eb-ticket-modal .eb-card-body .events-input .data-invalid {
    border-color: red;
}
.eb-ticket-modal .eb-card-body .events-input .error {
    font-size: 12px;
    color: red;
    position: absolute;
    top: 100%;
}
@media (max-width: 767px) {
    .eb-ticket-modal .pa-sm {
        position: absolute;
    }
    .eb-ticket-modal .eb-card-body .days span {
        height: 20px;
        width: 38px;
        line-height: 20px;
        font-size: 0.8rem;
    }
    .eb-ticket-modal .eb-card-body .dates span {
        height: 32px;
        width: 38px;
        line-height: 30px;
        font-size: 0.8rem;
    }
}
.eb-ticket-modal span.show_event.has_event {
    background: transparent !important;
    border: 1px solid var(--eb-primary-color);
}
.eb-ticket-modal span.booked_event {
    background: rgba(235, 87, 87, 0.2) !important;
}
.eb-ticket-modal span.show_event.active {
    background: var(--eb-primary-color) !important;
    color: #fff !important;
}
.eb-ticket-modal .alert.alert-secondary.time-slotes.selectable {
    cursor: pointer;
}
.eb-ticket-modal .alert.alert-secondary.time-slotes.selectable:hover {
    background: #addac7;
}
.eb-ticket-modal .alert.alert-secondary.time-slotes.selected {
    background: #66dfbd;
}
.eb-ticket-modal .eb-sell-ap-calender-wrap div.status-lable {
    margin-right: 12px;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #666;
    display: flex;
    align-items: center;
}
@media (max-width: 575px){
    .eb-ticket-modal .eb-sell-ap-calender-wrap div.status-lable{
        margin-right: 8px;
    }
}
.eb-ticket-modal div.status-lable > span.s-circle {
    height: 16px;
    width: 30px;
    border-radius: 36px;
    display: inline-block;
    margin-right: 6px;
}
.eb-ticket-modal div.status-lable > span.available, .eb-ticket-modal .slot-status.slot-status {
    background: transparent;
    border: 1px solid var(--eb-primary-color);
}
.eb-ticket-modal div.status-lable > span.booked {
    background: rgba(235, 87, 87, 0.2);
    border: 1px solid rgba(235, 87, 87, 0.2);
}
.eb-ticket-modal div.status-lable > span.unavailable {
    background: transparent;
    border: 1px solid #b6b6b6;
}

.eb-ticket-modal .eb-modal-footer .selected-ticket-status span{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #4F4F4F;
}

.eb-invitation-code-main-wrap{
    margin-top: 22px;
}
.eb-invitation-code-wrap .eb-checkbox-radio{
    margin-bottom: 0;
}
.eb-invitation-code-wrap .eb-invitation-code-input-wrap{
    width: 100%;
    max-width: 290px;
}
.eb-invitation-code-wrap .eb-invitation-code-input-wrap{
    margin-top: 17px;
}
.eb-invitation-code-wrap .eb-invitation-code-input-wrap input[type="text"]{
    height: 40px;
}
@media (max-width: 425px){
    .eb-invitation-code-wrap .eb-invitation-code-input-wrap .eb-input-group-wrap{
        flex-wrap: wrap;
    }
    .eb-invitation-code-wrap .eb-invitation-code-input-wrap .eb-input-group-wrap input[type="button"]{
        width: 100%;
    }
}
.eb-popup-empty-state-text{
    margin: 10px 0 0 0;
    color: #454545;
    font-size: 15px;
}
.eb-popup-empty-state-text a{
    text-decoration: none;
    color: var(--eb-primary-color);
}
.eb-popup-empty-state-text a:hover{
    text-decoration: underline;
    color: var(--eb-primary-light);
}