.abstract {
    margin-bottom: var(--pico-block-spacing-vertical);
    padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
    border-radius: var(--pico-border-radius);
    background: var(--pico-card-background-color);
    box-shadow: var(--pico-card-box-shadow);
}
.abstracttimeslots li, .abstracttimeslots ul, .timeslots li, .timeslots ul {
    list-style: none!important;
    padding-left: 0!important;
}
@media (min-width: 768px) {
    dialog article {
        max-width: 768px!important;
    }
}


/* MOADEEEL */


/**************************
  Basic Modal Styles
**************************/

.modal {
  font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index:10;
        max-height: 100vh;
}

.modal__container {
background: rgb(254,254,254);
background: -moz-linear-gradient(356deg, rgba(254,254,254,1) 0%, rgba(255,255,255,1) 100%);
background: -webkit-linear-gradient(356deg, rgba(254,254,254,1) 0%, rgba(255,255,255,1) 100%);
background: linear-gradient(356deg, rgba(254,254,254,1) 0%, rgba(255,255,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fefefe",endColorstr="#ffffff",GradientType=1);
  padding: 30px;
  max-width: 740px;
  height: 100%;
  width: 50%;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

@supports (display: flex) {

    .modal__container {
        height: initial;
        max-height: 100vh;
        margin-bottom: 30px;
    }

}

.modal__header {
  position: relative;
  display: block;
  height: 30px;
  margin-bottom: 20px;
}

@supports (display: flex) {

    .modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
      height:initial;
      margin-bottom: 0px;
    }

}

.modal__title {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin: 0px;
  padding: 0px;
}

@supports (display: flex) {

  .modal__title {
      position: static;
  }

  .modal__close {
      position: static;
  }

}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
  margin-top: 10px;
  margin-bottom: 10px;
  color: rgba(0,0,0,.8);
}

@supports (display: flex) {

    .modal__content {
      margin-top: 2rem;
      margin-bottom: 2rem;
      line-height: 1.5;
    }

}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0,0,0,.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************
  Demo Animation Style
**************************/

@keyframes mmfadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/**************************
  Custom styles for individual modals
**************************/

.modal__container button {
    outline: none;
    cursor: pointer !important;
}

.modal__container h2.modal__title {
    color: #595959;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  font-size: 24px;
    box-shadow: none;
    color:#ccc;
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0,0,0,.8);
}

.modal__btn {
  padding: 10px 15px;
  background-color: #e6e6e6;
  border-radius: 4px;
  -webkit-appearance: none;
}

/**************************
  Mobile custom styles for individual modals
**************************/

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {

    .modal__container {
      width: 90% !important;
      min-width: 90% !important;
    }

    .breakie{
        display: block;
        height: 20%;
    }



    @supports (display: flex) {

        .modal__container {
            width: 100% !important;
            min-width: 90% !important;
        }

    }


}



@media only screen and (min-device-width : 320px) and (max-device-width : 800px) {

    .container, .container-fluid{
        padding-left: 0px!important;
        padding-right: 0px!important;
    }


    }
/**************************
  Non modal styles
**************************/



/* MODALL */
body:has(dialog[open]) {
  overflow: hidden;
}

dialog:not([open]) {
  display: grid;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all var(--pico-transition) allow-discrete;
}

dialog[open] {
  display: grid;
  visibility: visible;
  opacity: 1;
  transition: opacity var(--pico-transition);
}

dialog article {
  max-height: unset;
  overflow: unset;
  transform: scale(0.5);
  transition: transform var(--pico-transition);
}

dialog[open] article {
  transform: scale(1);
}

.transition, ul li i:before, ul li i:after, .blockhut {
  transition: all 0.25s ease-in-out;
}

/* MODALL */

.flipIn, ul li, h1 {
  animation: flipdown 0.5s ease both;
}

.no-select, h2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  width: 100%;
  height: 100%;
  perspective: 900;
  overflow-y: scroll;

font-family: "Source Sans Pro", sans-serif;
  color: rgba(48, 69, 92, 0.8);
background: rgb(242,241,241);
background: -moz-linear-gradient(0deg, rgba(242,241,241,1) 0%, rgba(255,255,255,1) 53%);
background: -webkit-linear-gradient(0deg, rgba(242,241,241,1) 0%, rgba(255,255,255,1) 53%);
background: linear-gradient(0deg, rgba(242,241,241,1) 0%, rgba(255,255,255,1) 53%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f2f1f1",endColorstr="#ffffff",GradientType=1);
}

body {
  min-height: 100vh;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);

  background-color: #FFF;
background: rgb(242,241,241);
background: -moz-linear-gradient(0deg, rgba(242,241,241,1) 0%, rgba(255,255,255,1) 53%);
background: -webkit-linear-gradient(0deg, rgba(242,241,241,1) 0%, rgba(255,255,255,1) 53%);
background: linear-gradient(0deg, rgba(242,241,241,1) 0%, rgba(255,255,255,1) 53%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f2f1f1",endColorstr="#ffffff",GradientType=1);
}

@media (max-width: 550px) {
  body {
    box-sizing: border-box;
    transform: translate(0, 0);
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    left: 0;
  max-width: 450px;
  }
}

h1, h2 {
  color: #646464;
}

h1 {
  text-transform: ;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: 100;
}

h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
}

p {
  color: rgba(48, 69, 92, 0.8);
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 1px;
}

.blockhut {
  position: relative;
  overflow: hidden;
  /* max-height: 800px; */
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}

ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
 /*  border-top: 1px dotted #dce7eb; */
  list-style: none;
}
/*
ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
ul li:nth-of-type(3) {
  animation-delay: 1s;
}
ul li:nth-of-type(4) {
  animation-delay: 1.25s;
}
ul li:nth-of-type(5) {
  animation-delay: 1.50s;
}
ul li:nth-of-type(6) {
  animation-delay: 1.75s;
}
ul li:nth-of-type(7) {
  animation-delay: 2s;
}
ul li:nth-of-type(8) {
  animation-delay: 2.25s;
}
ul li:nth-of-type(9) {
  animation-delay: 2.5s;
}
ul li:nth-of-type(10) {
  animation-delay: 2.75s;
}
ul li:nth-of-type(11) {
  animation-delay: 3s;
}
ul li:nth-of-type(12) {
  animation-delay: 3.25s;
}

/*
ul li:last-of-type {
  padding-bottom: 0;
}


ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}
ul li i:before, ul li i:after {
  content: "";
  position: absolute;
  background-color: #738a9a;
  width: 3px;
  height: 9px;
}
ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}*/
ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
ul li input[type=checkbox]:checked ~ .blockhut {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}

.schedule li {
    margin-bottom: 20px;
}

.abstract {
        background: #FFF!important;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1)!important;
    margin-bottom: 10px!important;
}

.abstract li {
    padding: 5px 11px;
    background: #CCC;
    margin: 3px;
    border-radius: 3px;
    font-size: 13px;
    color: #fff !important;
}

.abstract li a{

    color: #6a6969 !important;
}

.authorlist {
        background: #FFF!important;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1)!important;
}

.authorlist details, .authorlist summary {
    padding: 10px;
    margin: 10px;
}

ul li.authortitle:last-of-type {
    padding-bottom: 19px;
}
li.authortitle {
    padding: 20px;
}
.icon-bar {
  width: 100%;
  background-color: #f0f0f0;
  overflow: auto;
}


.icon-bar a {
  float: left;
    width: 33.33%;
  text-align: center;
  padding: 8px 8px;
  transition: all 0.3s ease;
  color: white;
  font-size: 36px;

}

.icon-bar a:hover {
  background-color: #FFF;
}

.active {
  background-color: #7b919f;
}

.sticky {
  background: #b9cedc;
  color: #fff;
  position: sticky;
  bottom: 0px;
}

i.fa-solid {
      transition: all 0.3s ease;
    color: #000;
}

.icon-bar i {
    font-size: 18px;
    margin-bottom: 20px;
}

.icon-bar a:hover i.fa-solid {
    color: #CCC;
}

.logo {

    background-color: #666;
    background-image: url(../images/bottom_wave_white.svg);
    color: #fff;
    padding: 20px;
    text-align: center;
    background-position: bottom center !important;
    background-repeat: no-repeat;
    background-size: auto;
}

.logo img{
        max-width: 80%;
    padding-bottom: 20px;
}

.container-fluid {
      padding: 30px;
}

@media (min-width: 1050px) {
.logo{
    padding-bottom: 130px;
}
}

.modal__title {
    text-align: left!important;
}

.chairs {
        background: #f5f5f5;
    padding: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline;
    margin-left: 17px;
}

.pausepage td a {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: #000 !important;
    letter-spacing: 2px;
}
.pausepage th, .pausepage td {

    border: 0px;
    /* font-weight: bold;
        background: #b9cedc !important
    text-transform: uppercase; */
}

.online{
    background: #5cc3dd;
    display: inline;
    padding: 5px 15px;
    color:#FFF;
}



.whattime {

    display: inline-block;
    /*
    padding: 8px 20px 4px 20px;
    background: #f5f5f5;
    */
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer {
    background: #f0f0f0;
}

.authorli li {
    margin: 0px;
    padding: 0px;
    display: inline;
    margin-right: 7px;
    font-size: 17px;
    animation: none !important;
    border: 0px!important;
}

.modal__content {
    margin-top: 10px;
}

.modal__content ul li {
    position: relative;
    padding: 0;
    margin: 0;
   /* padding-bottom: 27px;
    padding-top: 18px;
    border-bottom: 1px dotted #dce7eb;
    */
    list-style: none;
}
.modal__border {
    background: #b9cedc;
    height: 4px;
    width: 300px;
    margin-top: 10px;
}

details summary::after {

    margin-top: -30px;
}

.onlinesup {
    display: inline;
    font-size: 11px;
    background: #97c6e6;
    color: #fff;
    letter-spacing: 2px;
    padding: 2px 5px 5px 5px;
    top: -1em !important;
    position: relative;
}

.timegrit {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 50px;
grid-row-gap: 36px;
}

       .authorli {

           background: #b9cedc;
           padding: 10px 10px;
           border-radius: 3px;
           margin-bottom: 20px;
       }

       .authorli li {
           margin-right: 6px !important;
       }

       .authorli a,
       .authorli ul {
           color: #fff;
           text-decoration: none;
       }

       .authorli ul li:not(:last-child):after {
           content: " /";
       }



       h1 {
    letter-spacing: 0px;
    font-weight: bold;
}

       .affi ul {
    margin-bottom: 16px;
}
.affi li {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 2px;
    padding-top: 2px;
    border-top: none;
    list-style: none;
    font-size: 14px;
    color: #848181;
}

.striped tr{}
    /* margin-bottom: var(--pico-block-spacing-vertical); */
    /* padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal); */
    /* border-radius: var(--pico-border-radius); */
    background: var(--pico-card-background-color);
    box-shadow: 0rem 1rem 0rem rgba(129, 145, 181, 0.01698), 0.0335rem 0.067rem 0rem rgba(129, 145, 181, 0.024), 0.0625rem 0.125rem 0rem rgba(129, 145, 181, 0.03), 0rem -1rem 0rem rgba(129, 145, 181, 0.0056);
}

.schedule li.prog h2 {
    margin-bottom: 10px!important;
    margin-left: 20px!important;
}

.schedule li.prog {
    margin-bottom: 20px;
    background: var(--pico-card-background-color);
    box-shadow: 0rem 1rem 0rem rgba(129, 145, 181, 0.01698), 0.0335rem 0.067rem 0rem rgba(129, 145, 181, 0.024), 0.0625rem 0.125rem 0rem rgba(129, 145, 181, 0.03), 0rem -1rem 0rem rgba(129, 145, 181, 0.0056);
    width: 100% !important;
    border-radius: 10px;
}
.schedule li.prog h2 {
    margin-bottom: 10px!important;
    margin-left: 20px!important;
}
.affi li:first-child {
    border: 0px !important;
}
.affi li {
    border-top: 1px dashed #CCC!important;
    padding-top: 4px!important;
    padding-bottom: 4px!important;
}

.speaktime[role=group] {
    margin-bottom: 0;
}

.no-scroll{
       position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


        nav, nav ul {
        display: block!important;
}
.affoi {
    font-size: 15px;
    letter-spacing: 2px;
    padding: 10px;
    margin-top: -19px;
    color: #797979;
}

li.affilil:before{
padding-bottom: 5px;
  padding-right: 2px;
}

li.affilil:after{
  padding: 4px;

}

li.affilil:not(:last-child):after {
    content: " /";
}


li.affilil2:before{
padding-bottom: 2px;
  padding-right: 2px;
}

li.affilil2:after{
  padding: 2px;

}

li.affilil2:not(:last-child):after {
    content: " ";
}

li.affilil2 {
    font-size: 12px;
}


      li.affilil{
 counter-increment: step-counter;}

  li.affilil::before{
 content: counter(step-counter);
float: left;
    display: block;
    font-size: 10px
}
/*
.authorli ul{
  padding-left: 20px;
}*/


.authorli ul li{
 counter-increment: step-counter;}

.authorli ul li a::before{
 content: counter(step-counter);
float: right;
padding: 0px 3px;
    font-size: 12px
}

.aufies li {
    font-size: 12px;
    /* padding: 25px; */
    padding-top: 2px;
}


ul.aufies {
    margin-left: 16px !important;
}


.affi ul li{
 counter-increment: step-counter;}

.affi ul li::before{
 content: counter(step-counter);
float: left;
padding: 0px 3px;
    font-size: 9px
}

h5.nhow {
    margin-top: 10px;
    margin-bottom: 0px !important;
}

.onlinesmall sup {
    background: #5cc3dd;
    color:#FFF;
  padding: 4px;

}

.onlinesmall {
  margin: 5px 0px
}

