.tx_imbcalendar__categories {
    font-size: smaller;
    color: #444444;
}

.tx_imbcalendar__subtitle,
.tx_imbcalendar__speaker {
    font-size: smaller;
    color: #000000;
}

.tx_imbcalendar__speaker {
    font-style: italic;
}

.tx_imbcalendar__filter {
    padding: 0.5rem 1rem;
    background: #66a9d65e;
}

.tx_imbcalendar__filter__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tx_imbcalendar__filter__col {
    flex-grow: 1;
    padding: 0.5rem;
}

.tx_imbcalendar__filter__col label {
    font-weight: bold;
    font-size: 0.85rem;
}

.tx_imbcalendar__filter__col select {
    width: 100%;
    margin: 0;
    padding: 0.5rem;
    font-weight: normal;
    font-size: 1rem;
}

.tx_imbcalendar__reset {
    text-align: right;
    margin-bottom: 2rem;
}

.tx_imbcalendar__reset a {
    color: #222222;
    text-decoration: underline;
    font-size: 0.85rem;
}


/** _show **/

.tx_imbcalendar__list .tx_imbcalendar__title {
    font-weight: bold;
    font-size: 1.1rem;
}

.tx_imbcalendar__show h1 {
    margin-top: 0.5rem;
    margin-bottom: 0;
    text-transform: none;
}

.tx_imbcalendar__show .tx_imbcalendar__subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tx_imbcalendar__show .tx_imbcalendar__image {
    margin-bottom: 1rem;
}

.tx_imbcalendar__show .tx_imbcalendar__imagecaption {
    margin-top: -0.5rem;
    font-size: 14px;
    font-style: italic;
    text-align: right;
}

.tx_imbcalendar__show {
    display: flex;
    flex-direction: column;
}

.tx_imbcalendar__show__col1 {
    width: 100%;
    order: 2;
}

.tx_imbcalendar__show__col2 {
    width: 100%;
    order: 1;
    margin-bottom: 2rem;
}

.tx_imbcalendar__show__header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #0070ba;
}

.tx_imbcalendar__infobox {
    background: #eaeef0;
    padding: 1rem;
}

.tx_imbcalendar__infobox__label {
    font-weight: bold;
}

.tx_imbcalendar__infobox__item {
    margin-bottom: 1rem;
}

@media (min-width: 800px) {
    .tx_imbcalendar__show {
        display: flex;
        flex-direction: row;
    }

    .tx_imbcalendar__show__col1 {
        width: 66%;
        padding-right: 2rem;
        order: 1;
    }

    .tx_imbcalendar__show__col2 {
        width: 33%;
        order: 2;
        margin-bottom: 0;
    }
}


/** _person **/

.tx_imbcalendar__persons {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.tx_imbcalendar__person {
    text-align: center;
}

.tx_imbcalendar__person__name {
    font-weight: bold;
}

.tx_imbcalendar__person__from {
    font-size: smaller;
}

.tx_imbcalendar__person__image img {
    border-radius: 50%;
}

@media (min-width: 600px) {
    .tx_imbcalendar__persons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .tx_imbcalendar__persons {
        grid-template-columns: repeat(3, 1fr);
    }
}

/** _sponsor **/

.tx_imbcalendar__sponsors {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
}

.tx_imbcalendar__sponsor {
    text-align: center;
}

.tx_imbcalendar__sponsor a {
    color: inherit;
}

.tx_imbcalendar__sponsor__name {
    font-weight: bold;
}

.tx_imbcalendar__sponsor__logo img {

}

@media (min-width: 600px) {
    .tx_imbcalendar__sponsors {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .tx_imbcalendar__sponsors {
        grid-template-columns: repeat(3, 1fr);
    }
}

/** tabs **/


.ootb-tabcordion {
}

.ootb-tabcordion.has-tabs .ootb-tabcordion--tabs {
    opacity: 1;
    height: auto;
    visibility: visible;
}

.ootb-tabcordion.has-tabs .ootb-tabcordion--entry {
    min-height: 0;
}

.ootb-tabcordion.has-tabs .ootb-tabcordion--entry::before {
    display: none;
}

.ootb-tabcordion.has-tabs .ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
    opacity: 1;
    transition: opacity 400ms ease-in-out;
}

.ootb-tabcordion.has-tabs .ootb-tabcordion--entry .ootb-tabcordion--entry-content {
    opacity: 0;
    transition: opacity 400ms ease-in-out;
}

.ootb-tabcordion--tabs {
    opacity: 0;
    height: 0;
    visibility: hidden;
    display: flex;
    flex-flow: wrap;
    margin: 0;
    list-style: none;
    padding: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #0070ba;
}

.ootb-tabcordion--tabs .tab {
    display: block;
    background: #444;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 16px;
    font-weight: normal;
    font-family: "Roboto", sans-serif;
    margin: 0 0 1px 0;
    border: none;
    border-right: 1px solid #fff;
    cursor: pointer;
}

.ootb-tabcordion--tabs .tab:hover, .ootb-tabcordion--tabs .tab:focus {
    background: #535353;
    outline: none;
}

.ootb-tabcordion--tabs .tab.is-active {
    background: #0070ba;
}

.ootb-tabcordion--tabs .tab.is-active:hover, .ootb-tabcordion--tabs .tab.is-active:focus {
    background: #1c9fff;
}

.ootb-tabcordion--entry {
    overflow: hidden;
}

.ootb-tabcordion--entry::before {
    position: relative;
    content: attr(data-title);
    cursor: pointer;
    z-index: 1;
    background: #444;
    color: #fff;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 3px;
}

.ootb-tabcordion--entry:hover, .ootb-tabcordion--entry:focus {
    outline: none;
}

.ootb-tabcordion--entry:hover::before, .ootb-tabcordion--entry:focus::before {
    background: #535353;
}

.ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
    margin-top: 0;
    height: auto;
    opacity: 1;
    transition: margin 400ms ease-out -100ms;
}

.ootb-tabcordion--entry.is-active::before {
    background: #0070ba;
}

.ootb-tabcordion--entry.is-active:hover::before, .ootb-tabcordion--entry.is-active:focus::before {
    background: #1c9fff;
}

.ootb-tabcordion--entry-container {
    overflow: hidden;
    margin-bottom: 1px;
}

.ootb-tabcordion--entry-content {
    position: relative;
    margin-top: -100%;
    height: 0;
    opacity: 0;
    transition: margin 500ms ease-in;
    padding-top: 1rem;
}

.ootb-tabcordion--entry-content a.more {
    color: #444;
}

.ootb-tabcordion--entry-content a.more:hover {
    color: #0070ba;
}
