/**
 * Bilet Takivimi - Elementor Widgets CSS
 */

/* Event Image Widget */
.bilet-takivimi-event-image {
    overflow: hidden;
    position: relative;
    display: block;
}

.bilet-takivimi-event-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.bilet-takivimi-event-image img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Aspect Ratio Classes */
.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.aspect-ratio-3-2 {
    aspect-ratio: 3 / 2;
}

.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.aspect-ratio-21-9 {
    aspect-ratio: 21 / 9;
}

.aspect-ratio-3-4 {
    aspect-ratio: 3 / 4;
}

.aspect-ratio-2-3 {
    aspect-ratio: 2 / 3;
}

.aspect-ratio-9-16 {
    aspect-ratio: 9 / 16;
}

/* Object Fit Classes */
.object-fit-cover img {
    object-fit: cover;
}

.object-fit-contain img {
    object-fit: contain;
}

.object-fit-fill img {
    object-fit: fill;
}

.object-fit-none img {
    object-fit: none;
}

/* Object Position Classes */
.object-position-center-center img {
    object-position: center center;
}

.object-position-center-left img {
    object-position: center left;
}

.object-position-center-right img {
    object-position: center right;
}

.object-position-top-center img {
    object-position: top center;
}

.object-position-top-left img {
    object-position: top left;
}

.object-position-top-right img {
    object-position: top right;
}

.object-position-bottom-center img {
    object-position: bottom center;
}

.object-position-bottom-left img {
    object-position: bottom left;
}

.object-position-bottom-right img {
    object-position: bottom right;
}

/* Responsive aspect ratios */
@media (max-width: 1024px) {
    .aspect-ratio-tablet-1-1 {
        aspect-ratio: 1 / 1;
    }
    
    .aspect-ratio-tablet-4-3 {
        aspect-ratio: 4 / 3;
    }
    
    .aspect-ratio-tablet-3-2 {
        aspect-ratio: 3 / 2;
    }
    
    .aspect-ratio-tablet-16-9 {
        aspect-ratio: 16 / 9;
    }
    
    .aspect-ratio-tablet-21-9 {
        aspect-ratio: 21 / 9;
    }
    
    .aspect-ratio-tablet-3-4 {
        aspect-ratio: 3 / 4;
    }
    
    .aspect-ratio-tablet-2-3 {
        aspect-ratio: 2 / 3;
    }
    
    .aspect-ratio-tablet-9-16 {
        aspect-ratio: 9 / 16;
    }
}

@media (max-width: 767px) {
    .aspect-ratio-mobile-1-1 {
        aspect-ratio: 1 / 1;
    }
    
    .aspect-ratio-mobile-4-3 {
        aspect-ratio: 4 / 3;
    }
    
    .aspect-ratio-mobile-3-2 {
        aspect-ratio: 3 / 2;
    }
    
    .aspect-ratio-mobile-16-9 {
        aspect-ratio: 16 / 9;
    }
    
    .aspect-ratio-mobile-21-9 {
        aspect-ratio: 21 / 9;
    }
    
    .aspect-ratio-mobile-3-4 {
        aspect-ratio: 3 / 4;
    }
    
    .aspect-ratio-mobile-2-3 {
        aspect-ratio: 2 / 3;
    }
    
    .aspect-ratio-mobile-9-16 {
        aspect-ratio: 9 / 16;
    }
}

.event-name .elementor-heading-title a,
.venue-name .elementor-heading-title a,
.elementor-element-7a484a4 .elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 1;
    max-width: 100%;
}

/* Dropdown Widget Styles */
.bt-dropdown-container {
    position: relative;
    width: 100%;
}

.bt-dropdown-container .bt-dropdown-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    border-radius: 10px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bt-dropdown-container .bt-dropdown-button:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

.bt-dropdown-container .bt-dropdown-button.active {
    background: rgba(255, 255, 255, 0.2) !important;
}

.bt-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bt-dropdown-icon svg {
    width: 14px;
    height: 14px;
}

.bt-dropdown-text {
    font-family: "Poppins", Sans-serif;
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.bt-dropdown-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bt-dropdown-button.active .bt-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown List */
.bt-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    overflow: hidden;
    max-height: 350px;
    display: none;
    flex-direction: column;
}

/* Active state - show as flex */
.bt-dropdown-button.active + .bt-dropdown-list {
    display: flex;
}

/* Search Input Container */
.bt-dropdown-search {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(40, 40, 40, 0.8);
    flex-shrink: 0;
}

.bt-search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
    background: rgba(50, 50, 50, 0.6);
    color: #fff;
}

.bt-search-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(60, 60, 60, 0.8);
}

.bt-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Dropdown Items Container */
.bt-dropdown-items {
    overflow-y: auto;
    max-height: 280px;
    background: rgba(30, 30, 30, 0.95);
}

.bt-dropdown-items::-webkit-scrollbar {
    width: 6px;
}

.bt-dropdown-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.bt-dropdown-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.bt-dropdown-items::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Dropdown Items */
.bt-dropdown-item {
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    border-left: 3px solid transparent;
}

.bt-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-left-color: rgba(255, 255, 255, 0.4);
}

.bt-dropdown-item.selected {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 500;
    border-left-color: rgba(255, 255, 255, 0.6);
}

.bt-dropdown-item.hidden {
    display: none;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .bt-dropdown-button {
        padding: 12px 16px;
        font-size: 14px;
        gap: 10px;
    }
    
    .bt-dropdown-list {
        max-height: 300px;
    }
    
    .bt-dropdown-items {
        max-height: 240px;
    }
    
    .bt-dropdown-item {
        padding: 10px 14px;
        font-size: 14px;
    }
    .elementor-6973 .elementor-element.elementor-element-c2badd7 .elementor-heading-title,
    .elementor-6973 .elementor-element.elementor-element-f613c6f .elementor-icon-list-text{
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-clamp: 1;
        max-width: 100%;
    }
}

/* Clear Filter Button */
.bt-clear-filter,
.bt-clear-tax-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-left: auto;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.bt-clear-filter:hover,
.bt-clear-tax-filter:hover {
    /* background: rgba(255, 255, 255, 0.3); */
    transform: scale(1.1);
}

/* ============================================
   Date Filter Modal Styles
   ============================================ */

/* Modal Overlay and Container */
.bt-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bt-modal.open {
    display: flex;
}

.bt-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bt-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: url("https://bilettakvimi.com/wp-content/uploads/bilet-takvimi-bg-2.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    border: 1px dashed #C4EF17;
    
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Header */
.bt-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    /* background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bt-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.bt-modal-close {
    background: transparent;
    border: none;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    padding: 0;
}

.bt-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Modal Body */
.bt-modal-body {
    padding: 24px;
    /* background: #1a1a1a; */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Calendar Container */
.bt-calendar-container {
    width: 100%;
}

.bt-loading,
.bt-error {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.bt-error {
    color: #ff6b6b;
}

/* Calendar */
.bt-calendar {
    width: 100%;
    color: #ffffff;
}

/* Calendar Header */
.bt-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 8px;
}

.bt-cal-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    flex: 1;
}

.bt-cal-prev-month,
.bt-cal-next-month {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #ffffff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-cal-prev-month:hover,
.bt-cal-next-month:hover {
    background: rgba(255, 255, 255, 0.15);
}

.bt-cal-prev-month:disabled,
.bt-cal-next-month:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.bt-cal-prev-month:disabled:hover,
.bt-cal-next-month:disabled:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Weekdays */
.bt-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.bt-cal-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

/* Days Grid */
.bt-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.bt-cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 15px;
    position: relative;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.bt-cal-day.empty {
    background: transparent;
}

.bt-cal-day.today {
    background: rgba(196, 239, 23, 0.15);
    border: 1px dashed rgba(196, 239, 23, 0.5);
}

.bt-cal-day.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    font-weight: 500;
}

.bt-cal-day.active:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.bt-cal-day.selected {
    background: rgba(196, 239, 23, 0.3) !important;
    color: #ffffff !important;
    font-weight: 600;
}

.bt-cal-day.selected.range-start,
.bt-cal-day.selected.range-end {
    background: rgba(196, 239, 23, 0.5) !important;
}

/* Event Indicator (küçük nokta) */
.bt-event-indicator {
    position: absolute;
    bottom: 4px;
    font-size: 8px;
    color: rgba(196, 239, 23, 0.8);
}

/* Scrollable Months Container */
.bt-cal-months-scroll {
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(196, 239, 23, 0.5) rgba(255, 255, 255, 0.1);
    scroll-behavior: smooth;
    padding: 0 4px;
}

/* Webkit scrollbar styling */
.bt-cal-months-scroll::-webkit-scrollbar {
    width: 8px;
}

.bt-cal-months-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.bt-cal-months-scroll::-webkit-scrollbar-thumb {
    background: rgba(196, 239, 23, 0.5);
    border-radius: 4px;
}

.bt-cal-months-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(196, 239, 23, 0.7);
}

/* Individual Month Block */
.bt-cal-month-block {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bt-cal-month-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Month Title */
.bt-cal-month-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--e-global-color-primary) !important;
    text-align: center;
    margin-bottom: 16px;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Footer */
.bt-modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    /* background: #1f1f1f; */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bt-btn-cancel,
.bt-btn-apply {
    flex: 1;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px 10px 10px 10px;
}

.bt-btn-cancel {
    fill: var(--e-global-color-primary) !important;
    color: var(--e-global-color-primary) !important;
    background-color: var(--e-global-color-2e9079d) !important;
}

.bt-btn-cancel:hover {
    background: rgb(147, 183, 0) !important;
    color: rgb(20, 20, 20) !important;
}

.bt-btn-apply {
    background: rgb(147, 183, 0) !important;
    color: rgb(20, 20, 20) !important;
}

.bt-btn-apply:hover {
    color: var(--e-global-color-primary) !important;
    background-color: var(--e-global-color-2e9079d) !important;
}

/* Body class when modal is open */
body.bt-modal-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 767px) {
    .bt-modal-content {
        max-width: 95%;
        border-radius: 12px;
    }
    
    .bt-modal-header {
        padding: 20px;
    }
    
    .bt-modal-header h3 {
        font-size: 18px;
    }
    
    .bt-modal-body {
        padding: 16px;
        min-height: 360px;
    }
    
    .bt-cal-months-scroll {
        max-height: 380px;
    }
    
    .bt-cal-month-block {
        margin-bottom: 20px;
    }
    
    .bt-cal-month-title {
        font-size: 14px;
    }
    
    .bt-cal-title {
        font-size: 18px;
    }
    
    .bt-cal-weekday {
        font-size: 11px;
    }
    
    .bt-cal-day {
        font-size: 14px;
    }
    
    .bt-cal-prev-month,
    .bt-cal-next-month {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .bt-modal-footer {
        padding: 16px;
    }
    
    .bt-btn-cancel,
    .bt-btn-apply {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* ============================================
   Loading Events Spinner
   ============================================ */

.bt-loading-events {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.bt-loading-events p {
    margin-top: 20px;
    font-size: 16px;
}

.bt-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(196, 239, 23, 0.2);
    border-top-color: rgba(196, 239, 23, 0.8);
    border-radius: 50%;
    animation: bt-spin 0.8s linear infinite;
}

@keyframes bt-spin {
    to {
        transform: rotate(360deg);
    }
}

.no-events {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

.bt-error {
    text-align: center;
    padding: 40px 20px;
    color: #ff6b6b;
    font-size: 16px;
}

/* ============================================
   Like Button + Tooltip
   ============================================ */
.bt-like-button {
    display: inline-block;
    position: relative;
}
.bt-like-button .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bt-like-button .elementor-button-content-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.bt-like-button .elementor-button.is-loading {
    opacity: 0.75;
    pointer-events: none;
}

/* ============================================
   Follow Button (Taxonomy) + Tooltip
   ============================================ */
.bt-follow-button {
    display: inline-block;
    position: relative;
}
.bt-follow-button .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bt-follow-button .elementor-button-content-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.bt-follow-button .elementor-button.is-loading {
    opacity: 0.75;
    pointer-events: none;
}
.bt-follow-tooltip {
    position: absolute;
    z-index: 99999;
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
    padding: 8px 10px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    opacity: 0;
    transform: translateY(-5px);
    transition: all .15s ease;
}
.bt-follow-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.bt-like-tooltip {
    position: absolute;
    z-index: 99999;
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
    padding: 8px 10px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    opacity: 0;
    transform: translateY(-5px);
    transition: all .15s ease;
}
.bt-like-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Date Filter Trigger + Clear Button
   ============================================ */
.bt-date-filter-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bt-date-filter-trigger.has-date .bt-date-label {
    padding: 6px 10px;
}

/* Clear button base - match other clear controls */
.bt-date-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px !important;
    height: 14px !important;
    margin-left: 8px;
    border-radius: 50%;
    color: #fff !important;
    font-size: 15px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: transparent !important;
    border: none;
    line-height: 1;
    padding: 0;
}

.bt-date-clear:hover {
    transform: scale(1.1);
}

.bt-date-clear:active {
    transform: scale(0.95);
}
.bt-date-filter-trigger span.elementor-button-icon > i {
    width: 14px !important;
    height: 14px !important;
}
.bt-taxonomy-pagination.elementor-pagination {
    text-align: center;
    font-family: var( --e-global-typography-8243d54-font-family ), Sans-serif;
    font-size: var( --e-global-typography-8243d54-font-size );
    font-weight: var( --e-global-typography-8243d54-font-weight );
    line-height: var( --e-global-typography-8243d54-line-height );
    margin-top: 30px;
}
.bt-taxonomy-pagination.elementor-pagination .page-numbers:not(.dots) {
color: var( --e-global-color-ea14379 );
}
.bt-taxonomy-pagination.elementor-pagination .page-numbers:not(:last-child) {
margin-right: calc( 10px/2 );
}

.bt-taxonomy-pagination.elementor-pagination a.page-numbers:hover {
    color: var(--e-global-color-primary);
}

.bt-taxonomy-pagination.elementor-pagination .page-numbers.current {
    color: var(--e-global-color-primary);
}

.bt-taxonomy-pagination.elementor-pagination .page-numbers:not(:first-child) {
    margin-left: calc(10px/2);
}

.bt-taxonomy-pagination.elementor-pagination .page-numbers:not(:last-child) {
    margin-right: calc(10px/2);
}

.bt-taxonomy-pagination.elementor-pagination .page-numbers:not(:first-child) {
    margin-right: calc(10px/2);
}
.etkinlik-template-default .elementor-element-7961331 .attachment-full.size-full{
    border-radius: 7px;
}
.elementor-icon-list-items:has(.elementor-icon-list-text:empty) {
    display: none !important;
}
.elementor-icon-list-item:has(.elementor-icon-list-text:empty) {
    display: none !important;
}

/* ============================================
   Event Multi Provider Widget
   ============================================ */
.provider-box {
    background-color: var(--e-global-color-a7b5d3a);
    width: 100%;
    display: flex;
    flex-direction: row;
    --container-widget-width: calc((1 - var(--container-widget-flex-grow)) * 100%);
    --container-widget-height: 100%;
    --container-widget-flex-grow: 1;
    --container-widget-align-self: stretch;
    --flex-wrap-mobile: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px 20px;
    row-gap: 20px;
    column-gap: 20px;
    border-radius: 10px 10px 10px 10px;
    margin-top: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    flex: var(--flex-grow) var(--flex-shrink) var(--flex-basis);
}
.provider-box .provider-logo {
    width: 19%;
    background-color: var(--e-global-color-2de087e);
    padding: 5px 10px 5px 10px;
    border-radius: 10px 10px 10px 10px;
}
.provider-box .provider-price-range {
    width: 60%;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--e-global-color-d35bcc9);
    text-align: left;
}
.provider-box .provider-marker{
    width: 30%;
    text-align: end;
}
.provider-box .provider-marker span.cta_link{
    background-color: var(--e-global-color-primary);
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    fill: var(--e-global-color-bb2bb47);
    color: var(--e-global-color-bb2bb47);
    border-radius: 10px 10px 10px 10px;
    padding: 12px 24px;
}
.provider-box .provider-marker span.cta_link i {
    display: none;
}
@media (max-width: 768px){
    .provider-box {
        padding: 10px;
    }
    .provider-box .provider-marker span.cta_link{
        font-size: 14px;
        border-radius: 5px 5px 5px 5px;
        padding: .5em;
        width: 28px;
        height: 28px;
    }
    .provider-box .provider-marker span.cta_link i {
        display: inline-block;
    }
    .provider-box .provider-marker span.cta_text{
        display: none;
    }
    .provider-box .provider-logo{
        width: 25%;
    }
    .provider-box .provider-marker{
        width: auto;
    }
    .provider-box .provider-price-range {
        width: auto;
        text-align: center;
        font-size: 14px;
    }
}

/* Multi Provider Images Widget */
.bt-multi-provider-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.bt-multi-provider-logos .provider-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px 4px 4px;
    border-radius: 5px 5px 5px 5px;
}

.bt-multi-provider-logos .provider-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}