/** Shopify CDN: Minification failed

Line 242:14 Expected ":"

**/

.events-section-parent {
    padding: 11.25vw 1.875vw 11.25vw 1.875vw;
    margin-top: -2.5vw;
    margin-bottom: -2.5vw;
    background-color: var(--icy-lilac-100);
    color: var(--downriver-100);
    display: flex;
    flex-direction: column;
}

.events-section-topper {
    display: flex;
    justify-content: space-between;
}

.events-dropdown-parent {
    margin-block-start: 5.875vw;
    display: flex;
    justify-content: center;
    gap: 0.938vw;
}

.events-dropdown-list-description {
    margin-top: 0.375vw;
}

.events-finder.results-active .events-dropdown-parent{
    display: none;
}

.events-dropdown-list {
    display: flex;
    gap: 0.625vw;
}

.events-dropdown-item {
    height: fit-content;
    padding: 0.375vw 0.625vw;
    background-color: var(--midnight-jam-30);
    color: var(--white-color-100);
    border: none;
    border-radius: 6.25vw;
    cursor: pointer;
    position: relative;
}

.events-dropdown-item.active {
    padding: 0.938vw 1.25vw 1.25vw 1.25vw;
    cursor: default;
}

.events-dropdown-item.active#topic {
    border-radius: 0.938vw;
}

.events-dropdown-item.active#speaker {
    border-radius: 0.938vw;
}

.events-dropdown-item.active#date {
    width: 23.313vw;
    height: 21.063vw;
    border-radius: 1.563vw;
}

.events-dropdown-item-topper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625vw;
    position: relative;
}

.events-dropdown-item.active .events-dropdown-item-topper {
    padding-bottom: 0.625vw;
    margin-bottom: 1.25vw;
    border-bottom: 0.063vw solid var(--white-color-10);
}

.events-dropdown-close {
    display: none;
    width: 1.25vw;
    height: 1.25vw;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    cursor: pointer;
}

.events-dropdown-item.active .events-dropdown-close {
    display: block;
}

.events-dropdown-item-icon {
    height: 0.313vw;
}

.events-dropdown-item.active .events-dropdown-item-icon {
    display: none;
}

.events-dropdown-item-content {
    display: none;
    flex-direction: column;
    gap: 1.25vw;
    cursor: pointer;
}

.events-dropdown-item.active .events-dropdown-item-content {
    display: flex;
}

.topic-input-parent {
    display: flex;
    align-items: center;
    gap: 0.938vw;
    cursor: pointer;
}

.topic-input-photo {
    width: 1.875vw;
    height: 1.875vw;
    object-fit: cover;
    background-color: #CAC5BF;
    border-radius: 1.563vw;
}

.topic-input-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.875vw;
}

.topic-input {
    box-sizing: border-box;
    width: 1.125vw;
    height: 1.125vw;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0.063vw solid #FFFFFF59;
    color: var(--white-color-100);
    border-radius: 0.25vw;
    display: flex;
}

.topic-input:checked {
    border-color: var(--white-color-100);
}

.topic-input:checked::before {
    content: url(check-icon.svg);
    width: 1vw;
    height: 1vw;
}

.events-section-title {
    width: 48.125vw;
}

.events-section-descriptor-mobile {
    display: none;
}

.events-section-title strong {
    font-weight: normal;
    background: linear-gradient(127deg, #081B48 0%, #8AD1DA 50%, #081B48 100%);
    background-size: 300% 100%;
    background-position: 120% 0%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.events-section-content {
    margin-block-start: 3.75vw;
    display: flex;
    flex-direction: column;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.875vw;
}

.event-card {
    display: flex;
    flex-direction: column;
    gap: 0.938vw;
}

.event-card.hidden {
    display: none;
}

.event-card-line {
    width: 100%;
    height: 0.063vw;
    background-color: var(--downriver-20);
}

.event-card-info {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    align-items: center;
}

.event-card-place {
    justify-self: end;
}

.event-card-link {
    width: fit-content;
    height: fit-content;
    padding: 0.375vw 0.625vw;
    background-color: var(--midnight-jam-30);
    color: var(--white-color-100);
    justify-self: end;
    border: none;
    border-radius: 6.25vw;
    cursor: pointer;
}

.events-button-placer {
    margin-top: 5vw;
    align-self: center;
}

@media (min-width: 768px) and (max-width: 1278px) {
    .events-section-parent {
        padding: 18.229vw 3.255vw 18.229vw 3.255vw;
        margin 0;
    }

    .events-section-topper {
        align-items: end;
    }

    .events-dropdown-parent {
        margin-top: 0;
        gap: 1.953vw;
    }

    .events-dropdown-list-description {
        margin-top: 0.781vw;
    }

    .events-dropdown-list {
        gap: 1.302vw;
    }

    .events-dropdown-item {
        padding: 0.781vw 1.302vw;
        border-radius: 4.297vw;
    }

    .events-section-title {
        width: 46.094vw;
    }

    .events-section-content {
        margin-block-start: 7.813vw;
    }

    .events-list {
        gap: 5.208vw;
    }

    .event-card {
        gap: 1.953vw;
    }

    .event-card-line {
        height: 1px;
    }

    .event-card-info {
        width: 93.49vw;
        display: grid;
        grid-template-columns: 26.042vw 1fr 12.109vw;
        grid-template-rows: repeat(2, auto);
        grid-template-areas: 
            "date place ."
            "title title link";
        align-items: end;
        justify-content: start;
    }

    .event-card-dates {
        grid-area: date;
        align-self: center;
    }

    .event-card-place {
        grid-area: place;
        justify-self: start;
        align-self: center;
    }

    .event-card-name {
        grid-area: title;
        margin-top: 1.953vw;
        width: 100%;
    }

    .event-card-link {
        grid-area: link;
        margin-top: unset;
        white-space: nowrap;
        padding: 0.781vw 1.302vw;
        border-radius: 4.297vw;
    }

    .events-button-placer {
        margin-top: 7.813vw;
    }
}

@media (max-width: 767px) {
    .events-section-parent {
        padding: 27.778vw 4.167vw 33.333vw 4.167vw;
        margin-bottom: -5.556vw;
    }

    .events-section-topper {
        flex-direction: column-reverse;
    }

    .events-dropdown-parent {
        align-self: flex-start;
        margin-block-start: 5.556vw;
        justify-content: start;
        gap: 4.167vw;
    }

    .events-dropdown-list-description {
        margin-top: 1.667vw;
    }

    .events-dropdown-list {
        gap: 2.778vw;
    }

    .events-dropdown-item {
        padding: 1.667vw 2.778vw;
        border-radius: 27.778vw;
    }

    .events-section-title {
        margin-top: 5.556vw;
        width: 91.667vw;
    }

    .events-section-descriptor-mobile {
        display: inline-block;
    }


    .events-section-content {
        margin-block-start: 11.111vw;
    }

    .events-list {
        gap: 5.556vw;
    }

    .event-card {
        gap: 2.778vw;
    }

    .event-card-line {
        height: 0.278vw;
    }

    .event-card-info {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(3, auto);
        grid-template-areas: 
            "date place"
            "title title"
            "link .";
        align-items: center;
        justify-content: start;
    }

    .event-card-dates {
        grid-area: date;
    }

    .event-card-place {
        grid-area: place;
        justify-self: start;
    }

    .event-card-name {
        grid-area: title;
        margin-top: 2.778vw;
        width: 83.333vw;
    }

    .event-card-link {
        grid-area: link;
        margin-top: 6.944vw;
        padding: 1.667vw 2.778vw;
        border-radius: 27.778vw;
        justify-self: start;
    }

    .events-button-placer {
        margin-top: 16.667vw;
        align-self: center;
    }


}