:root {
    --owaga-light-color: #fff;
    --owaga-bg-color: #F4F4F4;
    --owaga-text-color: var(--color-text-default, #2a2a2a);
    --owaga-primary-color: var(--color-secondary, #ff7203);
    --owaga-border-radius: var(--button--border-radius, 7px);
}

.gform_filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.gform_filter {
    flex: 1;
}

.gform_filter select {
    padding: 4px 12px !important;
    width: 100%;
    background-color: var(--owaga-bg-color);
    border: none;
    border-radius: var(--owaga-border-radius);
}

.gform_no-results-label {
    text-align: center;
    color: var(--owaga-primary-color);
    margin-top: 20px;
    margin-bottom: 0;
}

.gform_choice_wrapper {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    border: 4px solid var(--owaga-bg-color);
    border-radius: var(--owaga-border-radius);
}

.gform_choice_caption {
    padding: 16px;
}

.gform_choice_label {
    font-weight: 600;
}

.gform_choice_date {
    height: 100%;
    background-color: var(--owaga-bg-color);
    border-radius: var(--owaga-border-radius);
    text-transform: uppercase;
}

.gform_choice_time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gform_choice_time svg {
    width: 12px;
    color: var(--owaga-primary-color);
}

.gform_day {
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.1em;
}

.gform_start_date {
    color: var(--owaga-primary-color);
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
}

.gform_location {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
}

.gchoice[data-event] {
    color: var(--owaga-text-color);
    margin: 10px 0;
}

.gchoice[data-event] label {
    width: 100%;
    max-width: none !important;
}

.sr-only,
.gchoice[data-event] .gfield-choice-input {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
			clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.gchoice[data-event] .gfield-choice-input:checked + label .gform_choice_date {
    background-color: var(--owaga-light-color);
}

.gchoice[data-event] .gfield-choice-input:checked + label .gform_choice_label {
    color: var(--owaga-primary-color);
}

.gform_choice_date {
    padding: 20px;
    text-align: center;
}

/* event select */
.gfield--type-event_select_type {
    display: flex;
    flex-direction: column;
}

.gfield--type-event_select_type .gform_filters {
    margin-bottom: 10px;
}

.gfield--type-event_select_type.gfield .gform_filters ~ .gfield_label {
    top: 52px;
}

.gfield--type-event_select_type .gform_no-results-label {
    order: 1000;
}

