:root {
    --hamburger-padding: 1em;
    --hamburger-height: 5px;
    --hamburger-width: 48px;
    --hamburger-gap: 10px; 
    --hamburger-animation-time: 0.5s ease-in-out;
    --hamburger-menu-height: calc(var(--hamburger-height) * 3 + var(--hamburger-gap) * 2);
    --x-width: calc(var(--hamburger-menu-height) * 1.41421356237);
}

* {
 font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6, figcaption{
    font-family: 'Roboto', sans-serif;
}
/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 1rem 3rem;
  display: block;
  overflow: hidden;
  background-color: #f9f0f5;
  transition: max-height 0.2 ease-out;
}

.content--closed{
    display: none;
}

.collapsible {
    background-color:#600040;
    color: #ffffff;
    cursor: pointer;
    padding: 1rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: larger;
}

.discreet{
    background-color: #f9f0f5;
    color: #333;
    cursor:default;
    padding: 0.25em;
    font-size: medium;
    font-weight: normal;
}


.collapsible:after{
    content: '\25b2';
    color:#ffffff;
    font-weight: bold;
    float:left;
    margin-right: 1em;
}

.discreet:after{
    color:#333;
    font-weight: normal;
    margin-right: 0.5em;
    font-size: small;
    padding-top: 0.15em;
}

.collapsible:hover{
    background-color: #E5D4DC;
    color: #333
}

.discreet:hover{
    background-color: #f9f0f5;
}

.collapsible:hover::after{
    color:#333
}

.collapsible--active{
  background-color:#600040;
}

.collapsible--active:after{
    content: "\25bc"
}

.discreet--active:after{
    content: "\25bc"
}

.main-content ol li::before {
    content: none !important;
    padding-right: 0px !important; 
}

.main-content ul {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-inline-start: 30px;
}


.jumptarget::before {
    content: "";
    display: block;
    height: 110px;
    margin: -110px  0 0;
}

.hashtag-heading {
    color: #600040; 
    font-size: 30pt; 
    font-weight: bold; 
    text-align: center; 
    padding-top: 1rem; 
    padding-bottom: 1rem;
}

.sticky-sidebar {
    /* background-color: #E5D4DC; */
    background-color: #600040;
    /* padding: 1em; */
    width: 100%;
    flex-grow: 1;
    flex-basis: 80px;
    position: sticky;
    top: 0rem;
    /* center the text */
}

.sticky-sidebar-items{
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content:space-around;
    flex-direction: row;
    flex-wrap: wrap;
    max-height: 1000px;
    gap: 1.5em;
}

/* .sticky-sidebar--open {
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap:4.5em;
    max-height: 1000px;
        display: none;
} */



.sticky-sidebar-layout{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 100%;
    margin: auto;
}

.hamburger {
    padding: var(--hamburger-padding);
    display: none;
    cursor: pointer;
    background-color: #600040;
    width: fit-content;
    height: fit-content;
    position: sticky;
    top: 0em;
    cursor: pointer;
}

.hamburger--open .hamburger-bar:nth-child(1){
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--hamburger-height) / -2);

}

.hamburger--open .hamburger-bar:nth-child(2){
    opacity: 0;
    width: 0;
}

.hamburger--open .hamburger-bar:nth-child(3){
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--hamburger-height) / 2);

}
.hamburger-bar {

    width: var(--hamburger-width);
    height: var(--hamburger-height);
    background: white;
    margin-top: var(--hamburger-gap);
    margin-bottom: var(--hamburger-gap);
    transform-origin: left center;
    transition: opacity var(--hamburger-animation-time), width var(--hamburger-animation-time), rotate var(--hamburger-animation-time), translate var(--hamburger-animation-time);
}

.main-content {
    flex-grow: 999;
    flex-basis: 0;
    padding-top: 2em;
}

/* Container for 3 column 33%/33%/33% layout, collapsing to 100%/100%/100% for smaller screens */
.flex-col{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    padding-top: 2rem;
}

.flex-col > * {
    width: 100%;
}

.less-padding{
    padding: 10px;
}

.agenda{
    border-spacing: 0 1em;
    border-collapse: separate;

}

.presenter-table{
    width: 100%;
    border-collapse: separate;
    font-size: small;
}


.flex-agenda-img{
    width: 100px;
    height: 100px;
    margin: auto;
    display: block;
    border-radius: 50%;
    /* border-color: #600040; */
    /* border-width: 4px;
    border-style: solid; */
}

.agenda-time{
    width:7.5em; 
    border-radius: 1em; 
    padding: 0.25em 0.75em; 
    background-color: #696969; 
    color: #ffffff; 
    height: fit-content;
    text-wrap-mode:nowrap;
}

.agenda-heading{
    padding: 0 0.75em; 
    font-weight: 600; 
    font-size:larger; 
    align-content: center;
    color: #600040;
}

.talk{
    padding: 0.25em 1.5em;
}

.talk-heading{
    background-color:none;
    color: #333;
    cursor:default;
    padding: 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: medium;
    font-weight: 600;
}

.talk-heading:after{
    float:none;
}

.presenter{
    vertical-align: top;
}

.talk-abstract{
    padding-left: 2em;
    font-size: small;
    color: #333;
    font-weight: 500;
}

.presenter-name{
    font-weight: 500;
    font-size: medium;
    color: #333;
    padding-left: 0;
}

.presenter-name:after{
    float: none;
}

.presenter-affil{
    font-weight: 500;
    font-size: small;
    color: #333;
}

.presenter-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border-style:none;
    padding: 0.5em;
}

.presenter-info{
    padding: 0 0;
}

.presenter-bio{
    padding-top: 1em;
}

.presenter-social{
    font-size: small;
    padding-top: 1em;
}

.social{
    margin-bottom: 0;
}

.gallery-child{
    align-self: center;
    padding: 2rem;
}

/* @media (max-width: 959px) {
     .sticky-sidebar-items {
        gap: 2em;
    }
} */

@media (max-width: 750px) {
     /* .sticky-sidebar-items{
        gap: 1.5em;
    } */
    .temp-child {
        width: 1px;
        padding: 0;
    }
   

}

@media (min-width: 749px) {

    .flex-child:first-child:nth-last-child(2), .flex-child:first-child:nth-last-child(2) ~ .flex-child {
        width: calc(100% / 2)
    }
    .flex-child:first-child:nth-last-child(3), .flex-child:first-child:nth-last-child(3) ~ .flex-child {
        width: calc(100% / 3)
    }
    .flex-child:first-child:nth-last-child(4), .flex-child:first-child:nth-last-child(4) ~ .flex-child {
        width: calc(100% / 4)
    }
    .flex-col > * {
        padding: 2rem;
    }
    .less-padding {
        padding: 10px !important
    }
    }   
    .flex-col {
        padding-top: 0;
    }
    
    


/* @media (max-width: 650px) {
    .sticky-sidebar-items {
        display: flex;
        gap: 1em;
    }
} */

@media (max-width: 600px){

    .sticky-sidebar-items {

        flex-direction: column !important;
        row-gap: 2em !important;
        display: none;
    }

    .sticky-sidebar-item {
        padding: 1em 1em;
    }

    .hamburger {
        display: block;
    }

    .block-group-vertical {
        display: flex;
        flex-direction: row;
    }
   
    .gallery-child{
        padding: 2em;
    }
}
