i {
    font-style: italic !important;
}

.radio_label {
    display: table;
    position: relative;
    padding: 0;
    margin: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio_label input[type=radio] {
    opacity: 0;
    cursor: pointer;
    margin-right: 10px;
}

.radio_label_checkmark {
    position: absolute;
    top: -2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #2A2C2B;
}

.radio_label:hover input ~ .radio_label_checkmark {
    background-color: #ccc;
}

.radio_label input:checked ~ .radio_label_checkmark {
    background-color: #fff;
}

.radio_label_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio_label input:checked ~ .radio_label_checkmark:after {
    display: block;
}

.radio_label .radio_label_checkmark:after {
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2A2C2B;
}

.is-hidden {
    opacity: 0;
    transition: transform 0.4s, opacity 0.2s;
}

.spacer_40 {
    display: table;
    width: 100%;
    height: 40px;
}

.spacer_35 {
    display: table;
    width: 100%;
    height: 35px;
}

.mb_40 {
    margin-bottom: 40px;
}

input:read-only.rangeSlider {
    opacity: 1 !important;
}

input:read-only.rangeSlider.disabled_slider {
    opacity: 0.5 !important;
}

.disabled_div input:read-only.rangeSlider {
    opacity: 0.5 !important;
}

input[type='range']::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    margin-top: -7px;
    border: 1px solid #6C5CE7;
    border-radius: 50%;
    background: #6C5CE7;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #6C5CE7;
    height: 1px;
}

input[type='range'].disabled_slider {
    cursor: none;
}

input[type='range'].disabled_slider::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    margin-top: -7px;
    border: 1px solid #BDC3C7;
    border-radius: 50%;
    background: #BDC3C7;
}

input[type="range"].disabled_slider::-webkit-slider-runnable-track {
    background: #BDC3C7;
    height: 1px;
}

.input_field::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #BDC3C7;
    opacity: 1;
    /* Firefox */
    font-size: 16px;
}

.input_field:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #BDC3C7;
    font-size: 16px;
}

.input_field::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #BDC3C7;
    font-size: 16px;
}

.pageContainer_row_7 {
    width: 55%;
    display: inline-block;
    vertical-align: middle;
    padding-right: 10%;
}

.pageContainer_row_3 {
    width: 34%;
    display: inline-block;
    vertical-align: middle;
}

/* Event On Demand Style Create Page */
.text_12 {
    font-size: 12px !important;
    line-height: 15px !important;
}

.text_14 {
    font-size: 14px !important;
}

.text_15 {
    font-size: 15px !important;
    line-height: 18px !important;
}

.text_17 {
    font-size: 17px;
}

.event_ondemand_page_container {
    text-align: left;
}

.event_ondemand_page_inner {
}

.pageContainer_outlined {
    border: 1px solid #DEDEDE;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0;
}

.content_padding {
    padding: 40px 60px;
}

.field_header .text_30 {
    line-height: 30px;
    width: 60%;
}

.field_item {
    width: 100%;
}

.poster_container {
    display: flex;
    gap: 25px;
}

.poster {
    width: 200px;
    height: 300px;
}

.poster img {
    height: 100%;
    width: 100%;
    border-radius: 8px;
}

.film_info {
    display: flex;
    width: 500px;
    flex-direction: column;
    gap: 9px;
}

.film_title {
    font-size: 22px;
    line-height: 22px;
}

.screening_header_li_1,  .screening_header_li_2{
    padding-left: 25px; /* Add padding to align text after the icon */
    position: relative; /* Set position to relative for positioning the icon */
    margin-bottom: 10px; /* Add margin between list items */
}
.screening_header_li_1::before {
    content: '';
  background-image: url('/assets/img/events/icn_in_theatre.svg'); /* Set the first SVG icon as the content */
  background-size: 20px 20px; /* Set the size of the background image */
  width: 20px; /* Set the width of the icon container */
  height: 20px; /* Set the height of the icon container */
  display: inline-block; /* Make the element a block element */
  position: absolute; /* Position the icon absolutely */
  left: 0; /* Align the icon to the left side of the list item */
}

.screening_header_li_2::before {
    content: '';
    background-image:  url('/assets/img/events/icn_cinema_anywhere.svg'); /* Set the second SVG icon as the content */
    background-size: 20px 20px; /* Set the size of the background image */
    width: 20px; /* Set the width of the icon container */
    height: 20px; /* Set the height of the icon container */
    display: inline-block; /* Make the element a block element */
    position: absolute; /* Position the icon absolutely */
    left: 0; /* Align the icon to the left side of the list item */
}

.duration_rating {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    color: #6c5ce7;
}

.film_description {
}

.field_item_content input {
    border: none;
    padding: 5px 5px;
}

.field_item_content select {
    border : 1px solid rgba(89, 89, 89, 0.25);
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: calc(100% - 1.3em) center;
}

.field_item_content select:active {
    border : 1px solid rgba(89, 89, 89, 0.25);
}

.field_item_button {
    background: #FFFFFF;
    border: 1px solid #BDC3C7;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 10px;
    font-weight: bold;
    min-width: 100px;
}

.field_item_button:hover {
    cursor: pointer;
}

.field_item_title {
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
    width: 100%;
    padding: 16px;
}

.field_item_status {
    position: absolute;
    right: 10px;
    top: 10px;
}

.field_item_status img {
    height: 18px;
}

.status_invalid {
    border : 1px solid rgba(89, 89, 89, 0.25);
    border-style: dashed;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.status_invalid, .status_valid {
    display: none;
}

.field_item_status .active {
    display: block;
}

.content_half {
    width: 50%;
}

.event_ondemand_default_cover_photo {
    background: linear-gradient(131.41deg, rgba(243, 68, 225, 0.3) 19.76%, rgba(108, 92, 231, 0.62) 61.53%);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    height: 350px;
    width: 100%;
}

.m_field_button {
    display: none;
}

.event_ondemand_change_photo_btn {
    background-color: white;
    border: none;
    position: absolute;
    border-radius: 22px;
    right: 45px;
    bottom: 30px;
    cursor: pointer;
    padding: 10px;
    width: 130px;
    height: 40px;
    font-size: 12px;
}

.event_ondemand_change_photo_btn span {
    vertical-align: middle;
    display: inline-block;
}

.event_ondemand_add_photo_img {
    height: 16px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    padding-right: 3px;
}

.screening_title {
    font-size: 26px;
    font-weight: bolder;
}

.screening_title::placeholder {
    font-weight: bolder;
}

.event_ondemand_add_description {
    color: darkgray;
}

.field_talent_message .field_item_content_info {
    display: flex;
    justify-content: space-between;
}

.field_item_content_info .char_status {
    float: left;
    color: darkgray;
}

.switch-button {
    border : 1px solid rgba(89, 89, 89, 0.25);
    border-radius: 10px;
    padding: 5px;
    max-width: fit-content;
    display: flex;
    margin: 0 auto;
}

.switch-button-item {
    width: 140px;
    height: 35px;
    display: flex;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.switch-button-item.active {
    background-color: rgba(89, 89, 89, 0.25);
}

.switch-button-item:hover {
    cursor: pointer;
}

.switch-button-label-span {
    line-height: 35px;
    font-size: 12px;
}

.field_item_content .input-container {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    position: relative;
    flex-direction: column;
}

.field_item_content .icon {
    padding-top: 5px;
    padding-right: 10px;
    color: white;
    text-align: center;
    position: absolute;
}

.field_item_content .icon img {
    width: 18px;
    height: 18px;
}

.field_item_content .input-field {
    width: 100%;
    padding: 10px;
    outline: none;
}

.field_item_content .input-hint {
    font-style: italic;
    font-size: 12px;
    text-align: right;
}

.field_item_content .input-notification {
    font-size: 12px;
}

.field_item_content .input-container .border_bottom {
    border: white;
    border-bottom : 1px solid rgba(89, 89, 89, 0.25);
    border-radius: 0px;
    padding-left: 30px;
}

.field_item_content .input-container .border_bottom:active, .field_item_content .input-container .border_bottom:focus {
    border-bottom : 1px solid gray;
}

.field_item_content .pageContainer_text {
    font-size: 12px;
    font-weight: 500;
}

.tox-tinymce {
    border: 1px solid #BDC3C7 !important;
    border-radius: 0px !important;
}

.field_statistics_board_item {
    width: 300px;
    height: 40px;
    font-weight: 500;
    background-color: rgba(89, 89, 89, 0.25);
    margin: 5px 0;
    padding-left: 20px;
    align-items: center;
    display: flex;
}

.field_ticket_tiers input {
    padding: 5px 0px;
}

.field_statistics_board_item.success {
    background: rgba(92, 231, 178, 0.2);
    color: #10C27E;
}

.ticket_tier_add_form {
    border: 2px solid #EDEDED;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 20px 30px;
}

.ticket_tier_edit_form {
    display: none;
    border: 2px solid #EDEDED;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 20px 30px;
    margin: 5px 0;
}

.ticket_tier_items .ticket_tier_edit_form {
    display: block;
}

.ticket_tier_add_quantity_slider {
    margin: 0 0;
    height: 25px !important;
}

.flex_container {
    display: flex;
}

.flex_3_container {
    display: flex;
    width: 30%;
    margin-right: 20px;
    align-items: center;
}

.flex_7_container {
    display: flex;
    width: 70%;
    margin-left: 20px;
    flex-direction: column;
    text-align: left;
}

.ticket_tier_add_quantity_div {
    width: 60%;
    margin: 0;
}

.ticket_tier_item {
    border: 2px solid #EDEDED;
    padding: 20px 30px;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.ticket_tier_item_title {
    display: flex;
    width: 30%;
    justify-content: left;
}

.ticket_tier_item_price {
    display: flex;
    width: 60%;
    justify-content: center;
}

.ticket_tier_item_action {
    display: flex;
    width: 30%;
    justify-content: end;
    padding: 0 0px 0 20px;
}

.btn_hover_cursor:hover {
    cursor: pointer;
}

.vertical_divider {
    display: flex;
    border-right: 2px solid #EDEDED;
    height: 30px;
}

.outside_helper_text {
    display: none;
    margin-left: 20px;
    padding-left: 10px;
    border-left: 2px solid #000;
    align-items: center;
    position: absolute;
    right: -54px;
    transform: translateX(100%);
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 340px;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.outside_helper_arrow {
    margin-left: 20px;
    padding-left: 10px;
    align-items: center;
    position: absolute;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 340px;
    justify-content: center;
    align-items: center;
    height: 100px;
    box-sizing: border-box;
    /* position: relative; */
    display: none;
    /* transform: scale(var(--ggs,1)); */
    border-right: 2px solid transparent;
    border-left: 2px solid transparent;
    box-shadow: inset 0 0 0 2px;
    height: 150px;
    padding: 1px;
    right : -170px;
    color: #6c5ce7;
}
.outside_helper_arrow::after {
    content: "";
    display: none;
    box-sizing: border-box;
    position: absolute;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    bottom: 0;
    left: -2px;
    color: #6c5ce7;
}
.outside_helper_arrow.active, .outside_helper_arrow.active::after {
    display: flex;
}
.screening_theatre_arrow {
    top: 300px;
    display: none;
}
.screening_theatre_next_arrow {
    top: 810px;
}
.screening_talent_arrow {
    top: 180px;
}
.screening_date_arrow {
    top: 150px;
}
.content_padding .outside_helper_text, .content_padding .outside_helper_arrow {
    right: -490px;
}

.outside_helper_text.active {
    display: flex;
}

.input_error_text {
    text-align: right;
    color: #CC5050;
    display: none;
    padding-top: 8px;
}

.input_error_text.active {
    display: block;
}

.default_photo_helper {
    right: -54px;
    top: 35px;
    transform: translateX(100%);
    padding-top: 20px;
    padding-bottom: 20px;
}

.add_image_helper {
    right: -54px;
    transform: translateX(100%);
    bottom: 35px;
}

.talent_message_helper.first_helper{
    display: flex;
    top: 50px;
}

.field_talent_message {
    margin-bottom: 20px;
}

.screening_title_helper {
    bottom: 20px;
}

.event_third_helper {
    bottom: 170px;
}

.screening_theatre_helper {
    top: 35px;
}

.screening_theatre_list_helper {
    top: 700px;
}

.screening_talent_helper {
    top: 30px;
}

.screening_date_helper {
    top: 30px;
}

.screening_submit_helper {
    top: -15px;
}
.event_reserve_helper {
    top: 215px;
}

.event_reserve_both_helper {
    top: 345px;
}

.event_deadline_helper {
    bottom: 80px;
}

.date_panel, .threshold_panel, .ticket_tier_panel {
    min-height: 100px;
    position: relative;
}

.date_mask_container, .threshold_mask_container, .ticket_mask_container {
    display: none;
}

.disabled_div {
    pointer-events: none;
}

.disabled_div .date_mask_container, .disabled_div .threshold_mask_container, .disabled_div .ticket_mask_container {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(42, 44, 43, 0.9) !important;
    backdrop-filter: blur(7px);
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.disabled_div .date_mask_container>div, .disabled_div .threshold_mask_container>div, .disabled_div .ticket_mask_container>div {
    max-width: 140px;
    margin: 0 auto;
}

.board_item_span {
    display: flex;
    width: 50%;
}

.ticket_tier_panel .checkbox_label_checkmark {
    top: -10px;
}

.screening_request_submit_buttons {
    display: flex;
}

/* Event Ondemand Mobile */
.field_item.field_mobile {
    display: none;
}

.event_ondemand_picture_container {
    width: 100%;
    cursor: revert !important;
}

.circle_shadow_div {
    height: 370px;
    width: 370px;
    border-radius: 50%;
    background: #F7F7F7;
    position: absolute;
    right: -80px;
    top: -90px;
}

.field_item_title span br {
    display: none;
}

.event_location_content {
    display: none;
}

.event_stream_item {
    display: flex;
    flex-direction: column;
    border: 2px solid #EDEDED;
    border-radius: 10px;
    width: 33%;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    margin: 2px;
    cursor: pointer;
}

.event_stream_item.active {
    /* background-color: #6C5CE7; */
    cursor: pointer;
}

.event_stream_item.active .stream_check_box {
    border: 1px solid #BDC3C7;
    padding: 4px;
    /* width: 10px;
    height: 10px; */
}

.event_stream_item.active .stream_inner_check_box {
    background: #2A2C2B;
    border-radius: 50%;
    width: 9px;
    height: 8px;
}

.event_stream_item.active .stream_profile_box {
    /* background: rgba(0, 0, 0, 0.2); */
}

.event_stream_item.active .stream_information_title {
    /* color: #FFFFFF; */
}

.event_stream_item.active .stream_information_des {
    /* color: #FFFFFF; */
}

.flex_container {
    display: flex;
    margin: 15px 0;
}

.stream_check_box {
    width: 18px;
    height: 18px;
    border: 1px solid #BDC3C7;
    margin: 8px;
    border-radius: 50%;
}

.stream_profile_box {
    margin: 8px;
    border-radius: 4px;
}

.stream_information_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stream_information_title {
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #374140;
}

.stream_information_des {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #7A7A7A;
}

.zoom_connect_div {
    display: flex;
    width: 39%;
    border-right: 1px solid #DEDEE2;
    padding-right: 30px;
    flex-direction: column;
}

.zoom_manual_div {
    display: flex;
    width: 60%;
    padding-left: 30px;
    flex-direction: column;
}

.zoom_manual_div .zoom_input_container {
    align-items: flex-start;
    margin: 10px 0;
}

.zoom_manual_div .zoom_input_container input {
    border: 2px solid #EDEDED;
    border-radius: 4px;
    padding: 10px 10px;
}

.zoom_manual_div .zoom_input_container .pageContainer_text {
    font-size: 14px;
}

.zoom_link_btn {
    background: #FFFFFF;
    border: 2px solid #EDEDED;
    border-radius: 6px;
    padding: 10px 15px;
    color: #000;
    height: fit-content;
    font-size: 12px;
    cursor: pointer;
}

.zoom_link_btn:hover {
    cursor: pointer;
    color: #000;
}

.event_location_content .pageContainer_row {
    margin: 0 0;
}

.field_item_filters {
    display: flex;
    flex-direction: column;
}

#ticket_price_container {
    border: 1px solid #EBEBEB;
    border-radius: 8px;
}

.item_filter {
    padding: 7px 16px;
    background: #F7F7F7;
    border: 1px solid #EBEBEB;
    /* margin-right: 10px; */
    display: none;
}

.item_filter_title {
    padding-right: 10px;
}

.item_filter_title, .item_filter_value {
    font-size: 13px;
}

.rangeSlider.attendee_capacity_slider, .rangeSlider.ticket_tier_add_price_slider, .rangeSlider.ticket_tier_add_cap_slider, .rangeSlider.ticket_tier_edit_price_slider, .rangeSlider.ticket_tier_edit_cap_slider {
    margin: 0;
    width: 60%;
    height: 25px;
    display: none;
    position: absolute;
    right: 0;
    bottom: -10px;
}

.attendee_capacity_slider_hint {
    display: none;
}

.withSlider .rangeSlider.attendee_capacity_slider, .withSlider .rangeSlider.ticket_tier_add_price_slider, .withSlider .rangeSlider.ticket_tier_add_cap_slider, .withSlider .rangeSlider.ticket_tier_edit_price_slider, .withSlider .rangeSlider.ticket_tier_edit_cap_slider {
    display: flex;
}

.withSlider .attendee_capacity_slider_hint.active, .ticket_single_slider_hint.active {
    display: block;
    margin-top: 10px;
    font-style: normal;
}

.withSlider #event_ondemand_threshold_attendees, .withSlider #event_ondemand_threshold_both_attendance, .withSlider #ticket_tier_add_price, .withSlider #ticket_tier_add_cap, .withSlider #ticket_tier_edit_price, .withSlider #ticket_tier_edit_cap {
    margin: 0;
    width: 30%;
}

.flex_d_row.input-container {
    display: flex;
    flex-direction: row;
}

.rangeSlider.ticket_single_price_slider {
    margin: 0;
    width: 100% !important;
}

#ticket_single_price {
    width: 60%;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #6C5CE7;
    text-align: center !important;
}
.price_input_container {
    align-items: center;
}
.ticket_price_icon {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #6C5CE7;
}
/* .event_single_tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */

.ticket_price_panel {
    margin: 18px;
    border-top: 1px solid #EBEBEB;
    width: -moz-available;
    /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;
    /* Mozilla-based browsers will ignore this. */
    width: fill-available;
}
.price_item_container {
    padding-top: 14px;
    display: flex;
    flex-direction: row;
}

.price_item_title {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #000000;
    width: 30%;
}

.price_item_value {
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #000000;
    width: 30%;
}

.ticket_profit_container {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #2A2C2B;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    padding: 20px 0;
}
.price_item_comment {
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    text-align: right;
    letter-spacing: 0.01em;
    color: #858585;
    width: 40%;
}

.field_item_calculator {
    background: #FFFFFF;
    border: 2px solid #EDEDED;
    border-radius: 8px;
    width: 280px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(110%, -50%);
    padding: 25px 20px;
    display: none;
}

.venue_price_calculator {
   /*  position: sticky;
    z-index: 9999; */
    z-index: 998;
    position: relative;
    transform: unset;
}
.calculator_container {
    display: flex;
    flex-direction: column;
}

.calculator_title {
    display: flex;
    justify-content: center;
}

.calculator_title img {
    padding-right: 10px;
}

.calculator_item {
    display: flex;
    flex-direction: row;
    padding: 4px 0;
    justify-content: center;
    align-items: center;
}

.calculator_item.divider {
    border-bottom: 2px solid #EDEDED;
    margin-bottom: 12px;
    padding-bottom: 16px;
}

.calculator_item.divider.fee_item {
    padding-bottom: 12px;
}

.cal_item_title {
    width: 50%;
    font-size: 14px;
}

.cal_item_value {
    width: 50%;
    font-size: 14px;
    background: #F7F7F7;
    padding: 9px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cal_item_value.bg_success {
    background: rgba(59, 255, 42, 0.2);
    color: #009D5B;
}

.cal_item_value.bg_error {
    background: rgba(209, 45, 45, 0.2);
    color: #D12D2D;
}

.cal_item_value.fee_item {
    background: #FFFFFF;
    font-size: 12px;
    font-style: italic;
    padding: 0 0;
}

.ticket_single_slider_hint, .ticket_tier_add_price_slider_hint, .ticket_tier_add_cap_slider_hint,.ticket_tier_edit_price_slider_hint, .ticket_tier_edit_cap_slider_hint {
    font-style: normal !important;
    display: none;
}

.ticket_tier_add_price_slider_hint, .ticket_tier_edit_price_slider_hint {
    padding-top: 5px;
}

.ticket_single_slider_hint {
    /* position: absolute;
    right: 60px; */
}

.ticket_tier_add_price_slider_hint {
 /*    position: absolute;
    right: 30px; */
    margin-top: 0;
}

#screening_request_submit_btn {
    width: 273px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #BDC3C7;
    border-radius: 8px;
    color: #2A2C2B;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    border-radius: 8px;
    margin: 0 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

#screening_request_submit_btn {
    color: #FFFFFF;
    background: #6C5CE7;
    border: 1px solid #6C5CE7;
}

#screening_request_submit_btn.disabled {
    color: #BDC3C7;
    background: #EDEDED;
    border: 1px solid #EDEDED;
}

.text_white {
    margin-left: 0px;
}

#event_onboarding_ondemand_publish_modal .modal_overlay {
    width: 100%;
    height: 100%;
    background: #2A2C2B;
    backdrop-filter: blur(6px);
}

#event_onboarding_ondemand_publish_modal .modal_container {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2A2C2B;
}

#event_onboarding_ondemand_publish_modal .modal_close {
    width: 18px;
    height: 18px;
    top: 31px;
    right: 31px;
    position: absolute;
}

#ondemand_modal_publish_btn {
    width: 158px;
    height: 56px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #2A2C2B;
    display: inline;
    margin: 25px 10px;
}

#ondemand_modal_save_btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-decoration-line: underline;
    cursor: pointer;
}

#event_onboarding_ondemand_publish_modal .confirm_question {
    font-weight: 700;
    font-size: 42px;
    line-height: 51px;
    text-align: center;
}

#event_onboarding_ondemand_publish_modal .confirm_description {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}

#event_onboarding_ondemand_publish_modal .confirm_ul {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    list-style: disc;
    margin-bottom: 20px;
}

.pageContainer_flex_row {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 9px 9px;
}

.text_lh_12 {
    line-height: 12px;
    margin-bottom: 7px;
}

.booking_selection_tab {
    border: 1px solid #efebeb;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.booking_tab_left {
    display: flex;
    align-items: center;
    gap: 25px;
    width: auto;
}

.rotate-ticket-icon {
    transform: rotate(-90deg);
    width: 15px;
    height: 22px;
}
.talent-booking-member {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 256px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 14px 24px;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
}
.talent-booking-member .checkbox_label_checkmark {
    left: -6px;
    top: 0px;
    width: 12px;
    height: 12px;
    border: 1px solid #DEDEDE;
    border-radius: 2px;
    background-color: #fff;
}

.talent-booking-member .checkbox_label .checkbox_label_checkmark:after {
    left: 4px;
    top: 1px;
    width: 2px;
    height: 6px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.booking-checkbox-container {
    display: flex;
    width: inherit;
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid #DEDEDE;
    width: 100%;
    justify-content: center;
}

.member-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 9px;
}

.member-name {
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    color: #000000;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.member-role {
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #000000;
}

.talent_booking_container {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 20px;
}
.filtered_venue_select_btn.selected {
    color: #FFF;
    background: #38cb89;
    border: 1px solid;
}

.filtered_venue_select_btn.selected:hover {
    cursor: pointer;
    border: 1px solid #38cb89;
    background: #FFF;
    color: #38cb89;
}

.venue_instant_info_label {
    color: white;
    padding: 2px 13px;
    background-color: #6E6EEF;
    border-radius: 13px;
    width: fit-content;
    font-size: 10px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.venue_instant_info_label > img {
    height: 15px;
    width: 18px;
}
.venue_instant_info_label .info_label_icon {
    height: 10px;
    width: 10px;
    margin-left: 5px;
    background: #6E6EEF;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 9px;
    line-height: 10px;
    font-weight: bold;
}
.booking_selection_table_div {
    border-radius: 20px;
    z-index: 9;
}
.booking_venue_response_days {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: absolute;
    bottom: 0;
    overflow: hidden;
}
.venue_price_badge {
    position: absolute;
    top: 15px;
    left: 20px;
    padding-top: 7px;
    padding-bottom: 0px;
    padding-right: 0;
    padding-left: 3px;
}

#venue_price_cal_btn {
    display: none;
}

.screen-type-recommend {
    font-size: 9px;
    border-radius: 10px;
    background: linear-gradient(131.41deg,#6c5ce7 19.76%, #e75c91 61.53%);
    padding: 5px 9px;
    right: 15px;
    top: 15px;
    color: white;
}

@media only screen and (max-width: 768px) {
    .event_ondemand_page_container {
        padding: 0 !important;
    }



    input.input_field::placeholder {
        font-size: 10px; /* Adjusted font size for mobile devices */
    }

    .pageContainer_text {
        width: 100% !important;
    }

    .event_ondemand_page_inner {
        padding: 20px 20px;
        overflow: hidden;
    }

    .event_ondemand_page_inner .pageContainer_row_full {
        width: 100% !important;
    }

    .field_item {
    }

    .searchpopup .searchpopuptext {
        width: 350px;
        position: fixed;
        top: 20%;
        left: 7%;
    }

    .search_filters_container .button {
        padding: 5px;
        margin: 0;
    }

    .field_item.field_mobile {
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
    }

    .outside_helper_text, .outside_helper_arrow {
        display: none !important;
    }

    .field_top {
        padding-top: 350px;
    }

    .section_center_tab_title {
        max-width: 100%;
    }

    .field_item_content.content_padding {
        padding: 15px 0px 40px 0px;
    }

    .field_item_content .content_padding {
        padding: 15px 20px 40px 20px;
    }

    .event_ondemand_default_cover_photo {
        height: 250px;
    }

    .screening_title {
        font-size: 14px;
        font-weight: 300;
        padding-left: 0 !important;
    }

    .field_item_content .input-container .border_bottom {
        margin: 10px 0;
    }

    .field_item_content .icon {
        padding-top: 15px;
    }

    .field_item_content .icon img {
        width: 20px;
        height: 20px;
    }

    .field_item_content .input-hint {
        /* text-align: center; */
    }

    .field_item_content .pageContainer_text {
        text-align: center;
        width: 100% !important;
    }

    .flex_m_col_container {
        display: flex;
        flex-direction: column;
    }

    .event_stream_item {
        flex-direction: row;
        width: 100%;
    }

    .zoom_connect_div {
        display: flex;
        width: 100%;
        border-right: none;
        padding-right: 0;
        flex-direction: unset;
    }

    .zoom_connect_div .zoom_link_btn {
        width: 100%;
    }

    .zoom_manual_div {
        display: flex;
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
        flex-direction: column;
    }

    .switch-button-label-span {
        font-size: 10px;
    }

    .inline_icon_slider {
        padding-top: 3px !important;
    }

    .event_ondemand_change_photo_btn {
        bottom: 15px;
        transform: translate(-50%, 0%);
        right: 15px;
    }

    .date_real_container.content_padding {
        padding: 15px 20px 40px 20px;
    }

    .m_field_button {
        display: block;
    }

    #screening_title {
        font-size: 15px;
    }

    .withSlider #ticket_tier_add_price, .withSlider #ticket_tier_add_cap, .withSlider #ticket_tier_edit_price, .withSlider #ticket_tier_edit_cap {
        margin: 10px 0;
        width: 100%;
    }

    .checkbox_before_title {
        font-size: 14px;
        color: #2A2C2B;
        line-height: 30px;
        padding-right: 15px;
    }

    .input_add_cap, .input_edit_cap {
        display: none;
    }

    .flex_3_container {
        width: 100%;
        margin-right: 0;
    }

    .flex_7_container {
        width: 100%;
    }

    .ticket_slider_container {
        display: none;
    }

    .ticket_tier_panel .checkbox_label_checkmark {
        top: 3px;
    }

    .input-container.ticket_tier_add_quantity_div, .input-container.ticket_tier_edit_quantity_div {
        width: 100%;
        display: none;
    }

    .field_item_filters {
        flex-direction: column;
    }

    .item_filter {
        margin: 3px;
        width: 90%;
    }

    .field_item_mobile_calculator {
        display: flex;
        flex-direction: row;
    }

    .calculator_title {
        width: 20%;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5px;
    }

    .calculator_title img {
        width: 30px;
    }

    .cal_item_container {
        width: 80%;
        background: #F7F7F7;
        border-radius: 8px;
        position: relative;
    }

    /* .cal_item_container::after {
        content: "";
        position: absolute;
        height: 25px;
        width: 25px;
        left: -24px;
        top: 10px;
        background-color: #F7F7F7;
        clip-path: polygon(0 0, 100% 0, 100% 100%);
    } */

    #ticket_single_price {
        width: 100%;
    }

    .cal_item_container {
        font-size: 14px;
        padding: 7px 9px;
    }

    .cal_item_container.bg_error {
        background: rgba(209, 45, 45, 0.2);
        color: #D12D2D;
    }

    .cal_item_container.bg_error::after {
        background: rgba(209, 45, 45, 0.2);
    }

    #ticket_tier_add_price {
    }

    .ticket_tier_item {
        flex-direction: column;
    }

    .ticket_tier_item .vertical_divider {
        display: none;
    }

    .ticket_tier_item_info {
        display: flex;
        width: 60%;
        flex-direction: column;
    }

    .ticket_tier_item_action {
        /* width: 40%;
        justify-content: right; */
    }

    .ticket_tier_item_title, .ticket_tier_item_price {
        width: 100%;
        justify-content: left;
    }

    .field_statistics_board_item {
        width: auto;
    }

    #event_onboarding_ondemand_publish_modal .confirm_question {
        font-size: 28px;
        line-height: 34px;
        text-align: left;
    }

    #event_onboarding_ondemand_publish_modal .confirm_description {
        font-size: 18px;
        line-height: 25px;
        text-align: left;
    }

    #event_onboarding_ondemand_publish_modal .confirm_ul {
        display: none;
    }

    #event_ondemand_timezone {
        font-size: 9px;
    }

    .stream_profile_box {
        width: 70px;
        border-radius: 50%;
        height: 70px;
        background: #EDEDED;
    }

    .stream_profile_box img {
        display: none;
    }

    .stream_information_box {
        align-items: flex-start;
    }

    .poster_container {
        flex-direction: column;
    }

    .film_info {
        width: auto;
    }

    .event_single_tab .input-container {
        padding: 0 20px;
    }
    /* .talent-booking-member {
        margin-top: 32px;
        margin-bottom: 0px;
        max-width: 128px;
        padding: 14px 24px;
    }

    .member-avatar-img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin-bottom: 18px;
    }

    .member-name {
        font-size: 14px;
        line-height: 20px;
    }

    .member-role {
        font-weight: 300;
        font-size: 14px;
        line-height: 118%;
    } */

    #venue_price_cal_btn {
        display: flex;
        z-index: 999;
        width: 50px;
        height: 50px;
        position: fixed;
        bottom: 50px;
        left: 20px;
    }

    #venue_price_cal_btn > span {
        font-size: 25px;
    }

    .venue_price_calculator {
        display: none;
        left: 60px;
        bottom: 20px;
        width: 260px;
    }

    .venue_price_calculator .cal_item_container {
        width: 105%;
    }
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .switch-button-item {
        width: 90px;
        height: 60px;
        align-items: center;
    }

    .three-buttons .switch-button-item {
        width: 75px;
    }

    .field_item_title span br {
        display: block;
    }
    
  

    .booking_selection_tab {
        flex-direction: column;
    }

    .booking_tab_left {
        width: 90%;
    }

    .booking_selection_c3 {
        width: 90%;
        padding: 0;
    }

    

    .field_header .text_30 {
        width: auto;
    }

    .booking_selection_table .pageContainer_text {
        width: auto !important;
    }

    .venue_price_badge {
        top: 30px;
    }
}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 769px) {
    .pageContainer_row_full {
        width: 100% !important;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    /* .event_ondemand_page_container {
		width: 100%;
	} */.event_ondemand_page_inner {
        max-width: 720px;
        padding: 30px 220px 30px 0px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 991px) and (min-width: 770px) {
    .event_ondemand_page_container {
        margin: 0 20px;
    }

    .outside_helper_text, .outside_helper_arrow {
        display: none !important;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 993px) {
    .outside_helper_text, .outside_helper_arrow {
        max-width: 180px;
    }

    .venue_price_calculator {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 1500px) and (min-width: 1201px) {
    /* .event_ondemand_page_container {
		width: calc(100% - 50px);
	} */.outside_helper_text, .outside_helper_arrow {
        max-width: 230px;
    }

    .switch-button-item {
        width: 125px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1501px) {
    .event_ondemand_page_container {
        display: inline-block;
        vertical-align: top;
        width: calc(100% - 600px);
    }
}
