/*********************************/
/* BASE STRUCTURE, STICKY FOOTER */
/*  coarse layout, structure     */
/*********************************/

html {
    box-sizing: border-box;
}
body {
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
html, body {
    height: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
    background: inherit;
    z-index: inherit;
}

* {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;;
}

.wrapper {
    display: flex;
    z-index: 2;
    min-height: 100%;
    flex: 0 0 0;
    flex-direction: column;
}

.page {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 0 0;
    position: relative;
}

.site_header {
    flex: 0 0 auto;
    z-index: 2;
    position: relative;
}

.site_footer {
    z-index: 2;
    position: relative;
    overflow-wrap: break-word;
}

.content {
    flex: 1 0 auto;
    z-index: 2;
    position: relative;
}

.content ul>li {
    list-style-position: outside;
}

.page, .menu_background_helper, #main_menu_show_div {
    margin-left: 0em;
    margin-right: 0em;
}
.abstract-reader-footer,
.page_shadow {
    left: 0em;
    right: 0em;
    max-width: 100vw;
}

@media screen and (min-width: 481px) {
    .page, .menu_background_helper, #main_menu_show_div {
        margin-left: 2em;
        margin-right: 2em;
    }
    .abstract-reader-footer,
    .page_shadow {
        left: 2em;
        right: 2em;
    }
}
@media screen and (min-width: 601px) {
    .page, .menu_background_helper, #main_menu_show_div {
        margin-left: 3em;
        margin-right: 3em;
    }
    .abstract-reader-footer,
    .page_shadow {
        left: 3em;
        right: 3em;
    }
}
@media screen and (min-width: 961px) {
    .page, .menu_background_helper, #main_menu_show_div {
        margin-left: 10em;
        margin-right: 10em;
    }
    .abstract-reader-footer,
    .page_shadow {
        left: 10em;
        right: 10em;
    }
}
@media screen and (min-width: 1281px) {
    .page, .menu_background_helper, #main_menu_show_div {
        margin-left: 20em;
        margin-right: 20em;
    }
    .abstract-reader-footer,
    .page_shadow {
        left: 20em;
        right: 20em;
    }
}
@media screen and (min-width: 1501px) {
    .page, .menu_background_helper, #main_menu_show_div {
        margin-left: 15em;
        margin-right: 15em;
    }
    .abstract-reader-footer,
    .page_shadow {
        left: 15em;
        right: 15em;
    }
}


/*********************************/
/*        NAVIGATION MENU        */
/*********************************/
#navMenu > li {
    margin-top: 0;
}

#navMenu {
    min-height: 3em;
}

.nav_wrap, nav {
    z-index: 10;
    width: 100%;
    position: relative;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    background: #00be0f;
    opacity: 1.0;
    transition: background 0.0s ease;
    /*background: linear-gradient(, ); */
}

.nav_wrap {
    border-bottom: 0;
}
#main_menu_show_div {
    border-bottom: 2px solid #00960f;
    border-top: 0px solid #00182a;
    max-width: 100vw;
}
@media screen and (min-width: 992px) {
    .nav_wrap {
        border-bottom: 2px solid #00960f;
        border-top: 0px solid #00182a;
    }
}

nav > li {
    list-style: none;
}

ul#navMenu img {
    height: 1em;
}
ul#navMenu li.dropdown > a:hover {
    /*cursor: default;*/
    cursor: pointer;
}
ul#navMenu li.dropdown {
    display: block;
}
ul#navMenu li.dropdown > ul {
    margin: 0;
}
@media screen and (min-width: 992px) {
    ul#navMenu li.dropdown > ul {
        border-left: 2px solid #00960f;
        border-right: 2px solid #00960f;
        border-bottom: 2px solid #00960f;
    }
}
@media screen and (max-width: 991px) {
    ul#navMenu li.dropdown > ul > li > a {
        padding-left: 2em;
    }
}
ul#navMenu li.dropdown > ul > li > a {
    background: #2075b7;
    color: #ffffff;
}
ul#navMenu li.dropdown > ul > li > a:hover {
    background: #0d4b7b;
    color: #ffffff;
    transition: background 0.0s ease;
}
#main_menu_show, #main_menu_show_div {
    display: block;
}
#main_menu_show {
    position: absolute;
    left: -1000px;
}

#main_menu_show_div {
    z-index: 100;
    display: flex;
    flex: 0 0 auto;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    height: 4em;
    background: #00be0f;
    opacity: 1.0;
    color:#ffffff;
    justify-content: center;
    align-content: center;
    align-items: center;
}

#main_menu_show:checked ~ #main_menu_spacer {
    margin-top: 4em;
}
#main_menu_show_label {
    height: 4em;
    font-size: 3em;
    height: 100%;
    width: 100%;
    position: relative;
    display: inline-flex;
    text-align: center;
    align-content: center;
    justify-content: center;
    align-self: center;
    align-items: center;
}

.nav_wrap {
    display: none;
}
#main_menu_show_div {
    margin: 0;
    position: relative;
}

.nav_wrap[data-sticked="true"],
#main_menu_show_div[data-sticked="true"] {
    
    margin: inherit;
    position: fixed;
    
}

#main_menu_show:checked ~ #main_menu_show_div {
    
    margin: inherit;
    position: fixed;
    
}
#main_menu_show:not(checked) ~ #main_menu_show_div {
}
#main_menu_show:checked ~ .nav_wrap {
    display: block;
}



.nav_wrap {
    transition-property: none;
}

#main_menu_show_div,
.nav_wrap {
    opacity: 1.0;
}


@media screen and (min-width: 991px) {
.nav_wrap {
    margin: 0;
}
.nav_wrap[data-sticked="true"] {
    margin: 0 5em;
}
}

@media screen and (max-width: 990px) {
#main_menu_show:checked ~ .content,
#main_menu_show:checked ~ .site_header,
#main_menu_show:checked ~ .pre_content,
#main_menu_show:checked ~ .userinfo,
#main_menu_show:checked ~ .site_footer
{
    display: none;
}
}
.nav_wrap {
    transition-property: all;
}

.nav_wrap[data-sticked="true"] {
    margin-left: 0em;
    margin-right: 0em;
    width: calc(100% - 0em - 0em);
    left: 0px;
}
@media screen and (min-width: 481px) {
    .nav_wrap[data-sticked="true"] {
        margin-left: 2em;
        margin-right: 2em;
        width: calc(100% - 2em - 2em);
        left: 0px;
    }
}
@media screen and (min-width: 601px) {
    .nav_wrap[data-sticked="true"] {
        margin-left: 3em;
        margin-right: 3em;
        width: calc(100% - 3em - 3em);
        left: 0px;
    }
}
@media screen and (min-width: 961px) {
    .nav_wrap[data-sticked="true"] {
        margin-left: 10em;
        margin-right: 10em;
        width: calc(100% - 10em - 10em);
        left: 0px;
    }
}
@media screen and (min-width: 1281px) {
    .nav_wrap[data-sticked="true"] {
        margin-left: 20em;
        margin-right: 20em;
        width: calc(100% - 20em - 20em);
        left: 0px;
    }
}
@media screen and (min-width: 1501px) {
    .nav_wrap[data-sticked="true"] {
        margin-left: 15em;
        margin-right: 15em;
        width: calc(100% - 15em - 15em);
        left: 0px;
    }
}



.nav_wrap {
    height: unset;
}
.nav_wrap {
    height: auto;
}

@media screen and (max-width: 991px) {
    #main_menu_show:checked ~ .nav_wrap {
        height: calc(100% - 4em);
    }
}

ul#navMenu {
    width: 100%;
}

ul#navMenu a {
    text-decoration:none;
    font-size: 1.4em;
    background:#00be0f;
    color:#ffffff;
}
ul#navMenu {
    margin: 1em 1em 1em 1em;
}

#nav_wrap {
    margin-top: 4em;
}


ul#navMenu a {
    padding: 0.5em;
    display: block;
    width: 100%;
    height: 100%;
}

ul#navMenu ul li a {
    padding: 0.1em;
}

ul#navMenu li:hover a {
    background:#00960f;
    color:#ffffff;
    transition: background 0.0s ease,
    box-shadow 0.1s ease;
}
ul#navMenu li ul {
    display: none;
}

ul#navMenu li.force-hover ul,
ul#navMenu li:not(.no-hover):hover ul {
    display:block;
}

ul#navMenu ul a {
    width: 100%;
}

ul#navMenu ul li {
    display:block;
    margin:0px;
    width: 100%;
}

ul#navMenu ul ul {
    left:100%;
}

ul#navMenu li:hover ul ul {
    display:none;
}

ul#navMenu ul li.force-hover ul,
ul#navMenu ul li:not(.no-hover):hover ul {
    display:block;
}


ul#navMenu li:hover ul li a {
    text-align:left;
}

/* ***** */
@media screen and (min-width: 992px) {
    #main_menu_show, #main_menu_show_div {
        display: none;
    }
    #main_menu_spacer {
        margin-top: 0;
    }

    ul#navMenu {
        width: 100%;
        padding:0px;
        margin:0px;
        list-style:none;
        position:relative;
        z-index: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    ul#navMenu ul {
        position:absolute;
        z-index: auto;
        left:0;
        top:100%;
        display:none;
        padding:0px;
        margin:0px;
    }

    ul#navMenu li.dropdown {
        z-index: auto;
    }

    ul#navMenu > li.dropdown > ul {
        z-index: 12;
    }

    ul#navMenu li {
        display:inline-flex;
        flex-wrap: wrap;
        flex-grow: 1;
        float:left;
        position:relative;
    }

    ul#navMenu a {
        margin: 0;
        text-decoration:none;
        padding:10px;
        width: 100%;
        flex-grow: 1;
        background:#00be0f;
        color:#ffffff;
        float:left;
        text-align:center;
        border: 0;
        font-size: larger;
    }
    ul#navMenu ul li a {
        padding: 5px;
    }

    ul#navMenu li:hover ul {
        display:block;
    }

    ul#navMenu ul a {
        width: 100%;
    }

    ul#navMenu ul li {
        display:block;
        margin:0px;
        width: 100%;
    }

    ul#navMenu ul ul {
        left:100%;
    }

    ul#navMenu li:hover ul ul {
        display:none;
    }

    ul#navMenu ul li:hover ul {
        display:block;
    }


    ul#navMenu li:hover ul li a {
        text-align:left;
    }

    #main_menu_show, .menu_background_helper {
        display: none;
    }
    .site_header,
    .userinfo,
    .content,
    .nav_wrap{
        display: block; /*;*/
    }
}




ul#navMenu {
    list-style:none;
}
ul#navMenu a {
    transition: box-shadow 0.1s ease;
    box-shadow: 0 0px 0 0 rgba(0, 24, 42, 0) inset;
}
ul#navMenu a:hover {
    background:#00960f;
    color:#ffffff;

    box-shadow: 0 0px 0 0 rgba(0, 24, 42, 1) inset;

    transition: background 0.0s ease,
    box-shadow 0.1s ease;
}


/**/
/* PREVIEW CONTROLS */
/**/

.maintenance_msg,
.preview_controls {
    display: block;
    position: relative;
    text-align: center;
    vertical-align: middle;
    background: #FFD91F;
    color: #000;
    font-size: 0.8em;
    top: 0;
    height: 0;
    padding-bottom: 1.5em;
    width: 100%;
    left: 0;
}

.preview_spacer, .unpublished_spacer {
    /*
    height: 2.0em;
    height: 1.5em;
    font-size: 1.5em;
    width: 100%;
    */
}
.unpublished_page {
    display: block;
    position: relative;
    text-align: center;
    vertical-align: middle;
    background: #FFD91F;
    color: #000;
    font-size: 0.8em;
    top: 0;
    height: 0;
    width: 100%;
    left: 0;
    padding-bottom: 3em;
}


.unpublished_spacer,
.preview_spacer {
}

@media screen and (min-width: 600px) {
    .preview_spacer, .unpublished_spacer {
        height: 0;
        padding-bottom: 0;
    }
    .maintenance_msg,
    .preview_controls,
    .unpublished_page {
        font-size: 1.0em;
        height: 0;
        padding-bottom: 1.5em;
    }
}
@media screen and (min-width: 992px) {
    .maintenance_msg,
    .preview_controls,
    .unpublished_page {
        font-size: 1.2em;
        height: 0;
        padding-bottom: 1.5em;
    }
}


/*********************************/
/*        BASE STYLING           */
/*   colors, fine margins, etc   */
/*********************************/
body {
    background: #eeeeee;
    color: #111111;
    
}

.page, .content {
    background: #ffffff;
    z-index: 1;
}
.site_header {
    width: 100%;
    background: #ffffff;
}



.page_shadow {
    position: fixed;
    z-index: 0;
    top: 0;
    height: 100%;
    box-shadow: 1px 1px 5px 5px #cccccc;
}
.content {
    padding-left: 1em;
    padding-top: 1em;
    padding-right: 1em;
    padding-bottom: 1em;
}
.content.abstract_reader {
    padding-left: 0;
    padding-right: 0;
}
.content.abstract_reader #abstract_reader_top {
    padding-left: 1em;
    padding-right: 1em;
}
@media screen and (min-width: 481px) {
    .content {
        padding-left: 1em;
        padding-top: 1em;
        padding-right: 1em;
        padding-bottom: 1em;
    }
    .content.abstract_reader {
        padding-left: 0;
        padding-right: 0;
    }
    .content.abstract_reader #abstract_reader_top {
        padding-left: 1em;
        padding-right: 1em;
    }
}
@media screen and (min-width: 601px) {
    .content {
        padding-left: 1em;
        padding-top: 1em;
        padding-right: 1em;
        padding-bottom: 1em;
    }
    .content.abstract_reader {
        padding-left: 0;
        padding-right: 0;
    }
    .content.abstract_reader #abstract_reader_top {
        padding-left: 1em;
        padding-right: 1em;
    }
}
@media screen and (min-width: 961px) {
    .content {
        padding-left: 1em;
        padding-top: 1em;
        padding-right: 1em;
        padding-bottom: 1em;
    }
    .content.abstract_reader {
        padding-left: 0;
        padding-right: 0;
    }
    .content.abstract_reader #abstract_reader_top {
        padding-left: 1em;
        padding-right: 1em;
    }
}
@media screen and (min-width: 1281px) {
    .content {
        padding-left: 1em;
        padding-top: 1em;
        padding-right: 1em;
        padding-bottom: 1em;
    }
    .content.abstract_reader {
        padding-left: 0;
        padding-right: 0;
    }
    .content.abstract_reader  #abstract_reader_top {
        padding-left: 1em;
        padding-right: 1em;
    }
}
@media screen and (min-width: 1501px) {
    .content {
        padding-left: 1em;
        padding-top: 1em;
        padding-right: 1em;
        padding-bottom: 1em;
    }
    .content.abstract_reader {
        padding-left: 0;
        padding-right: 0;
    }
    .content.abstract_reader #abstract_reader_top {
        padding-left: 1em;
        padding-right: 1em;
    }
}
.content.abstract_reader {
    padding-bottom: 0;
}

.site_footer {
    z-index: 1;
}

.likelink {
    display: inline;
    border: 0;
    vertical-align: unset;
    border-radius: 0;
    transition: unset;
    padding: 0;
    outline: 0;
    height: 1em;
}
.likelink:active,
.likelink.active,
.likelink:focus,
.likelink:hover {
    background: inherit;
    text-decoration: underline;
}

/*****/
.likelink {
    display: inline !important;
    height: inherit !important;
    line-height: inherit !important;
}

.likelink[type="submit"], .likelink[type="input"] {
    display: inline !important;
    border: 0 !important;
    width: auto !important;
    height: inherit !important;
    line-height: inherit !important;
    transition: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #000099 !important;
    font-size: 16px !important;
    cursor:pointer;
    vertical-align: baseline;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    /*background: #ffffff !important;*/
    box-shadow: 0;
}
label.likelink {
    cursor: pointer;
    background: #ffffff !important;
    color: #000099 !important;
}

.likelink:hover[type="input"], 
.likelink:focus[type="input"], 
.likelink:hover[type="submit"],
.likelink:focus[type="submit"],
.likelink:active[type="submit"],
.likelink:active[type="submit"]
{
    /*background: #ffffff !important;*/
    box-shadow: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    color: #000099 !important;
    text-decoration: underline !important;
}

a {
    /*box-shadow: none !important;*/
}

.content a, .site_footer a, .site_header a, .userinfo a {
    color: #000099;
}

.page_divider, .site_header .header_divider {
    width: 100%;
    height: 1px;
}
.page_divider {
    background: ;
    margin-bottom: 1em;
}
.site_header .header_divider {
    background: #00be0f;
}
.userinfo {
    width: 100%;
    text-align: center;
    margin-left: ;
    margin-right: ;
}
.site_footer {
    width: 100%;
    min-height: 10em;
    border: 0;
    margin: 0;
    margin-top: 0px;
    padding: 0;
    padding-top: 0px;

    background: #333333;
    opacity: 1.0;
    color: #ffffff;
}

.site_footer a {
    color: #ffffff;
}
.site_footer a:hover {
    color: #ffffff !important;
}
.site_footer img {
    object-fit: contain;
}


div.error {
    padding: 0.5em;
    background: #ffd1c2;
}

/* FORMS */
ul.errors, ul.errorlist {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
ul.errors > li {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.errors, .errors {
    list-style: none;
    background: #ff4444;
    padding: 0.5em;
    margin-bottom: 1em;
}
.success {
    list-style: none;
    background: #cfefab;
    padding: 0.5em;
    margin-bottom: 1em;
}
div.error_wrap {
    padding: 0;
    margin: 0;
}

input,
textarea
{
    color: #000000;
}

.inputrequired {
    color: red;
    font-weight: bold;
}

/* BUTTONS */

.o_input {
    width: 100%;
    max-width: 100%;
    outline: 0;
    border: 0;
    border:.05rem solid #a2a2a2;
}

.o_input:focus {
    border:.05rem solid #4d96ce;
}

.o_input{
    padding-left: 0.5em;
}
input[type="checkbox"] {
    margin-right: 0.5em;
}

.o_input::placeholder{
}

.form-group > div {
    display: flex;
}
.form-group > div > input {
    align-self: center;
}



.btn {
    background: #00be0f;
    color: #ffffff !important;
    border-color: #00960f;
    border: 1px solid ;
    transition: background 0.0s ease;
}
.btn:focus,
.btn:active,
.btn.active,
.btn:hover {
    background: #00960f;
    color: #ffffff !important;
    border-color: #001702;
    transition: background 0.0s ease;
    box-shadow: none;
}

.blog_authored {
    font-size: smaller;
    color: #555;
}
.description {
    color: #777;
}
.hotelroom_description {
    margin-left: 1.8em;
}

.filter > form > input {
    width: 5em;
    display: inline;
}

img, .header_a {
    max-width: 100%;
    height: auto;
    min-height: 1px; /*ie11 specific*/
}


/* uncategorized */


.confirm_modal {
    position: fixed;
    z-index: 5;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128,128,128,0.5);
}
.confirm_modal > div {
    background: #fff;
    background: #ffffff;
    opacity: 1.0;
    text-align: center;
    padding: 2em;
}
.confirm_modal > div > div {
    text-align: center;
}

.confirm_modal > div > button,
.confirm_modal > div > input {
    margin: 0.5em;
}

.tab {
    display: none;
    margin-bottom: 0;
}
.tab_selector_reviews,
.tab_selector_orders,
.tab_selector {
    display: none;
}
.tab_selector_reviews + label,
.tab_selector_orders + label,
.tab_selector + label {
    display: block;
    width: 100% !important;
    background: linear-gradient(#4b4b4b, #c0c0c0) !important;
    transition: background 0.0s ease;
    color: #ffffff;
    padding: 0.5em;
    cursor: pointer;
    margin-bottom: 0;
    border: 1px solid #000000;
}
.tab_selector_reviews + label:before,
.tab_selector_orders + label:before,
.tab_selector + label:before {
    content: "+ ";
    width: 1em;
    font-weight: bold;
    background: none;
    font-family: monospace;
}
.tab_selector_reviews:checked + label:before,
.tab_selector_orders:checked + label:before,
.tab_selector:checked + label:before {
    content: "- ";
    background: none;
    width: 1em;
    font-weight: bold;
    font-family: monospace;
}
.tab_selector_reviews:checked + label,
.tab_selector_orders:checked + label,
.tab_selector:checked + label {
    font-weight: bold;
    margin-bottom: 1em;
    background: linear-gradient(#1d641d, #75af33) !important;
    transition: background 0.0s ease;
}
.tab_selector_reviews:checked + label + div,
.tab_selector_orders:checked + label + div,
.tab_selector:checked + label + div {
    display: block;
    margin-bottom: 1em;
}
.tab_selector_reviews + label:hover,
.tab_selector_orders + label:hover,
.tab_selector + label:hover {
    background: linear-gradient(#0d4b7b, #0d4b7b) !important;
    transition: background 0.0s ease;
}
.not_reviewed {
   color: #dd0011;
   background: none;
}

textarea {
    width: 100%;
    height: 5em;
}

tr, td, th, table {
    margin: 0;
    border: 0;
    border-spacing: 0;
}

tr:nth-child(odd) {
    background: #ffffff;
    color: #000000;
}
tr:nth-child(even) {
    background: #ffffff;
    color: #000000;
}
table {
    width: 100%;
}
.browserwarning {
    font-weight: bold;
    width: 100%;
    text-align: center;
    background: #ffff00;
}
#dirty {
    font-weight: bold;
    width: 100%;
    text-align: center;
    background: #ffff00;
}
ul {
    margin-top: 0;
}
.formfield {
    margin-bottom:0.5em;
}

.inputrequired {
    color: red;
    font-weight: bold;
}


/* */

.confreg_progress {
    height:40px;

}
.confreg_progress > ul {
    height:40px;

}
.confreg_progress > ul > li {
    display: inline-block;
	height: 40px;
    vertical-align: middle;
    margin: 0 auto;
	background: #88b7d5;
}
.confreg_progress > ul > li:after {
    margin-left: 40px;
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-left-color: #88b7d5;
	border-width: 10px;
	margin-top: -50%; 
}
.confreg_progress > ul > li.active {

}

#div_new-topic > label:after, #div_new-presentation_style > label:after {
  content:"\a";
  white-space: pre;
}


.sponsor-row {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
}
.sponsor-row a {
    width: 100%;
    text-align: center;
}
.sponsor-row img {
    max-width: 100%;
}

input[type="text"], input[type="password"], input[type="email"], button[type="submit"], input[type="submit"] {
    width: 100%;
}


.blogpost {
    padding-top: 0.5em;
    padding-bottom: 1.5em;
}



.regtype_wrapper {
}

.regtype_fee {
    text-align: center;
}

.regtype_earlybird_fee {

}

.regtype_header {
    font-weight: bold;
    background: #ffffff;
    color: #000000;
}
.regtype_fee_header, .regtype_earlybird_fee_header {
    text-align: center;
}
.regtype_table {
    /*max-width: 800px;*/
    margin: 0 auto;
    margin-left: 0;
}
.regtype_entry, .regtype_header {
    padding-top: 0.3em;
    padding-bottom: 0.3em;
}

.regtype_entry:nth-child(odd) {
    background: #ffffff;
    color: #000000;
}
.regtype_entry:nth-child(even) {
    background: #ffffff;
    color: #000000;
}

.verify_document_image_wrap {
    width: 100%;
    height: 200px;
}
.verify_document_image {
    max-width: 100%;
    max-height: 100%;
}

.room_name {
    font-size: larger;
}

.hotel_properties a[href] {
    text-decoration: underline gray;
}

.event_availability,
.product_availability,
.transport_availability,
.room_availability {
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.avail_many {
    background: green;
}
.avail_few {
    background: #FFD91F;
}
.avail_none {
    background: red;
}

select.form-select {
    background: #fff url("/static/css/spectre_select_bg.svg") no-repeat right .35rem center/.4rem .5rem !important;
}

.accom_hotel_header {
    align-self: center;
}
.accom_hotel_photo {
    padding: 0.5em;
    align-self: center;
    justify-content: center;
}

.breadcrumb-item > a {
    color: #667189 !important;
    font-weight: bold;
}

.breadcrumb-item.active > a {
    color: black !important;
    cursor: default;
}

.cb_order {
    position: absolute;
    left: -9999px;
}

.shop_event,
.shop_product,
.shop_shuttle_transport,
.shop_private_transport,
.shop_accommodation_room {
    background: #ffffff;
    color: #000000;
    transition: background 0.0s ease;
}

.shop_event,
.shop_product,
.shop_shuttle_transport,
.shop_private_transport,
.shop_accommodation_room,
.shop_accommodation_room .hotel_properties,
.shop_event .event_properties,
.shop_accommodation_room .feature{
    color:#000000;
}
.shop_accommodation_room:hover .hotel_properties,
.shop_event:hover .event_properties,
.shop_accommodation_room:hover .feature{
    color:#ffffff;
}
.shop_event:hover,
.shop_product:hover,
.shop_shuttle_transport:hover,
.shop_private_transport:hover,
.shop_accommodation_room:hover {
    background: #9b2d35;
    transition: background 0.0s ease;
    color:#ffffff;
    cursor: pointer;
}
.shop_accommodation_hotel {
    background: white;
}
.vcenter {
    display: inline-flex;
    align-items: center;
}

.edit_hotel {
    display: none;
}


#shop_registration_code_popup_form,
#programme_popup,
#shop_transport_info_popup,
#shop_event_form,
#shop_product_form,
#shop_shuttle_transport_form,
#shop_private_transport_form,
#shop_accompanying_persons_form,
#shop_accommodation_form {
    background: white;
    background: rgba(255,255,255,0);
}

.popup_outer_wrap {
    z-index: 0;
    opacity: 0;
    top: -100%;
    position: absolute;
    /*display: none;*/
}

.popup_outer_wrap[visible="true"] {
    display: block;
    position: fixed;
    top:0;
    transition: opacity 0.0s ease;
    opacity: 1;
    left:0;
    bottom:0;
    right:0;
    overflow: auto;
    z-index: 1001;
}
.popup_wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(128,128,128,0.5);
    display: table;
    /*table-layout: fixed;*/
    overflow: auto;
    z-index: 1002;
}
.popup_outer_wrap[visible="true"] > .popup_wrap > .popup_wrap {
    display: table-cell;
    vertical-align: middle;
    overflow: auto;
    z-index: 1003;

    display: flex;
    margin: auto;
}
.popup_outer_wrap[visible="true"] > .popup_wrap > .popup_wrap > .popup_inner_wrap {
    margin-left: auto;
    margin-right: auto;
    /*max-width: 500px;*/
    width: 500px;
    margin: 0 auto;
    overflow: auto;
    background: white;
    padding: 2em;
    z-index: 1004;

    display: inline-flex;
    align-self: center;
    margin: auto;
    flex-direction: column;
}

.popup_outer_wrap[visible="true"] > .popup_wrap > .popup_wrap > .popup_inner_wrap .formfield {
    margin: auto;
}

.fullwidth {
    width: 100%;
}

#accompanying_persons_done,
#event_done,
#product_done,
#booking_done {
    display: none;
}

.cancelled {
    text-decoration:line-through;
}

.cartposition_timeout {
    background: #FFD91F;
    padding: 0.5em;
}
.cartposition_timeout_collection {
    display: flex;
    flex-direction: column;
    padding: 0.5em;
}
.verification_rejected {
    display: block;
    background: #ff4444;
    padding: 0.2em;
}
.verification_accepted {
    display: block;
    background: #cfefab;
    padding: 0.2em;
}
.verification_pending {
    display: block;
    background: #ffff00;
    padding: 0.2em;
}
.verification_pending_notice {
    display: inline-block;
    font-weight: bold;
    background: #ff4444;
    padding: 0.5em;
    margin: 0.5em;
}

.history_show {
    display: none;
}
.cb_history_show:checked ~ .history_show {
    display: block;
}
.leftalign {
    margin-left: 0;
}
.rightalign {
    text-align: right;
}
.flex-rightalign {
    justify-content: flex-end;
}
.font-fixed {
    font-family: monospace;
}

.transport_select_type,
#div_billing_existing > .radiogroup > input[type="radio"] {
    position: absolute;
    left: -9999px;
}

.div_transport_select_type {
    display: flex;
}
.div_transport_select_type > .radiogroup {
    width: 50%;
    display: inline-block;
}

.div_transport_select_type label,
#div_billing_existing > .radiogroup > label {
    display: block;
    padding: 0.5em;
    margin-bottom: 1em;
    background: linear-gradient(#4b4b4b, #c0c0c0) !important;
    transition: background 0.0s ease;
    color: #ffffff;
    border: 1px solid #000000;
    cursor: pointer;
}
.div_transport_select_type > .radiogroup:first-child > label {
    border-right: 0;
}

.div_transport_select_type label:hover,
#div_billing_existing > .radiogroup > label:hover {
    background: linear-gradient(#0d4b7b, #0d4b7b) !important;
    transition: background 0.0s ease;
}

#transport_select_type_shuttle:checked ~ .div_transport_select_type label[for="transport_select_type_shuttle"],
#transport_select_type_private:checked ~ .div_transport_select_type label[for="transport_select_type_private"],
#div_billing_existing > .radiogroup > input:checked ~ label {
    background: linear-gradient(#1d641d, #75af33) !important;
    transition: background 0.0s ease;
}

.div_transport_shuttle,
.div_transport_private {
    display: none;
}

#transport_select_type_private:checked ~ .div_transport_private {
    display: block;
}
#transport_select_type_shuttle:checked ~ .div_transport_shuttle {
    display: block;
}

.early_fee_info {
    font-size: x-small;
}
.block {
    display: block;
}
button[type="submit"],
input[type="submit"] {
    white-space: normal;
    height: unset;
}

.event_in_order,
.room_in_order {
    background: #ffd1c2;
    color: #000000;
}
.event_in_order:hover,
.room_in_order:hover {
    background: #ffd1c2;
    color: #000000;
}
.event_in_cart,
.room_in_cart {
    background: #f2cc44;
    color: #000000;
}
.event_in_cart:hover,
.room_in_cart:hover {
    background: #f2cc44;
    color: #000000;
}

.event_in_order_text,
.event_in_cart_text,
.room_in_order_text,
.room_in_cart_text {
    font-weight: bold;
}
.room_in_order .feature,
.event_in_order .event_properties {
    color: #000000;
    background: #ffd1c2;
}
.room_in_cart .feature,
.event_in_cart .event_properties {
    color: #000000;
    background: #f2cc44;
}
.event_in_order:hover .event_properties,
.room_in_order:hover .feature {
    color: #000000;
    background: #ffd1c2;
}

.event_in_cart:hover .event_properties,
.room_in_cart:hover .feature {
    color: #000000;
    background: #f2cc44;
}

.event_in_order:hover .event_properties,
.room_in_order:hover .feature {
    color:#000000;
}
.event_in_cart:hover .event_properties,
.room_in_cart:hover .feature {
    color:#000000;
}

.pika-prev,
.is-rtl .pika-next {
    background-image: url('/static/img/pikaday_left.png');
    border: 1px solid black;
}

.pika-next,
.is-rtl .pika-prev {
    background-image: url('/static/img/pikaday_right.png');
    border: 1px solid black;
}

.pika-label:hover {
    background: lightgray;
    transition: background 0.0s ease;
}

.author_matrix select {
    width: 4em;
    height: 1.5em;
    padding: 0;
    display: inline;
}
.inline {
    display: inline;
}
.authorOrdering {
    display: inline;
    width: 4em;
}
#private_transport_arrival_or_departure_datetimepicker_container,
#private_transport_pickup_date_datetimepicker_container,
#shuttle_transport_datetimepicker_container {
    width: 260px;
}

.registered_pending {
    background: #ffff00;;
}
.not_registered {
    background: #ffd1c2;
}
.registered {
    background: #cfefab;
}

.contribution_authors_page {
    padding: 2em 0;
}

.file_upload_button {
    display: block;
    width: 100% !important;
}
@media screen and (min-width: 990px) {
.file_upload_button {
    display: inline;
    width: auto !important;
}
}

/*
div.divider {
    height: 1px;
    width: 100%;
    background: gray;
}
*/

.error {
    background: #ffd1c2;
}
.no_upload {
    background: #ffd1c2;
    display: flex;
    align-items: center;
    border: 1px solid black;
    width: 100%;
    height: 100%;
    padding: 1em;
}
.uploaded_file {
    background: #cfefab;
    border: 1px solid black;
    width: 100%;
    height: 100%;
    padding: 1em;
    display: flex;
    flex-direction: column; 
    justify-content: center;
}

.uploaded_file > span {
}
.uploaded_file > span > a {
    word-wrap: break-word;
}
.breakword {
    word-wrap: break-word;
}

.hidden2,
.hidden3,
.hidden {
    /*
    position: absolute;
    left: -9999px;
    */
    display: none !important;
}

.loading::after {
    border: .1rem solid #000099;
    border-radius: 50%;
    border-right-color: transparent;
}
label.file_select_label  {
    width: 100%;
}
.padbottom-05 {
    padding-bottom: 0.5em;
}
.padbottom-1 {
    padding-bottom: 1em;
}
.padleft-2 {
    padding-left: 2em;
}
.padtop-1 {
    padding-top: 1em;
}
.underline {
    text-decoration: underline;
}
.bordertop-1 {
    border-top: 1px solid #dddddd;
}

.padleft-2-md {
    padding-left: 2em;
}
@media screen and (min-width: 840px) {
    .padleft-2-md {
        padding-left: .4rem;
    }
}
.programme-pad {
    padding-left: 1em;
}
@media screen and (min-width: 840px) {
    .programme-pad {
        padding-left: 2em;
    }
}
iframe, object, embed {
    max-width: 100%;
}

.contribution_table_header {
    font-weight: bold;
    text-align: center;
}
.center {
    text-align: center;
}
.cart_billingaddress {
    border: 1px solid gray;
}

span.external_link {
    position: relative;
    display: inline-block;
    margin: 0;
}
span.external_link > a {
}
span.external_link > a > img {
    display: inline-block;
    position: relative;
    right: 0;
    padding-left: 0.1em;
    bottom: 0;
    width: auto;
    height: 1em;
    filter: invert(0);
}

.site_footer span.external_link > a > img {
    filter: invert(1);
}

.likelink.loading,
a.loading {
    color: #000099 !important;
}
.likelink.loading::after,
a.loading::after {
    display: none;
}

.event_category_header {
    display: block;
    width: 100%;
    border-bottom: 1px solid gray;
}

.event_description {
    margin-bottom: 1em;
}
.margin-0 {
    margin: 0;
}

.contribution_container span.contrib_rejected {
    color: #ff0000;
    background: none;
}
.contribution_container span.contrib_unsubmitted {
    color: #ff0000;
    background: none;
}
.contribution_container span.contrib_accepted {
    color: #00ff00;
    background: none;
}
span.contrib_submitted {
    color: black;
}
.contribution_container span.contrib_submitted {
    color: #ffffff;
    background: none;
}

.review_pending {
    background: #ffd1c2;
    padding: 0.5em;
}
.review_done {
    background: #cfefab;
    padding: 0.5em;
}
.review {
    margin-bottom: 1em;
}

.review_error_label_link > label,
.review_error_label_link {
    cursor: pointer;
    text-decoration: underline;
}
.review_grade {
    max-width: 10em;
}
.city_tax {
    color: black;
    text-decoration: underline;
    font-size: x-small;
}

.session_content {
    display: none;
}
.radio_session_content:checked ~ .session_content {
    display: block;
}
.session_content {
    padding-left: 2em;

}
.label_session_content {
    display: block;
    width: 100%;
    padding: 0.5em;
    background: unset;
    transition: background 0.0s ease;
    cursor: default;
}
.radio_session_content:checked ~ .label_session_content,
.label_session_content:hover {
    background: #ccc;
    cursor: pointer;
    transition: background 0.0s ease;
}
.session_content_contribution {
    padding-left: 0.5em;
    padding-bottom: 0.5em;
}
.session_content_chair {
    padding-left: 0.5em;
    padding-bottom: 0.5em;
}
.programme_filter {
    width: 20em !important;
}
.slot_text {
    padding-bottom: 0.5em;
    padding-top: 0.5em;
}

.mermaid_scroll {
    min-width: 50em;
}
.mermaid_wrap {
    width: 100%;
    height: 90vh;
    overflow-x: auto;
    background: #eee;
    border: 1px solid #aaa;
}

.programme-cg {
    position: relative;
}
.programme-row {
    display: inline-block;
    position: relative;
}
.programme-cell {
    display: inline-block;
    position: absolute;
    padding: 2px 2px 2px 2px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #cc3333;
    transition: background 0.0s ease;
}
.programme-cell > div{
    overflow: hidden;
    position: relative;
    height: 100%;
}
.programme-cell > div > a{
    width: 100%;
    height: 100%;
    display: block;
    color: black;
}
.programme-cell > div > a:hover{
    text-decoration: none;

}
.programme-cell:hover{
    background: #ff3333;
    transition: background 0.0s ease;
}

.programme-roomname {
    position: absolute;
    padding-left: 0.5em;
    padding-top: 0.25em;
    width: 100%;
}
.programme-roomspacer {
    width: 100%;
    height: 1px;
    background: #aaa;
    display: block;
    position: relative;
    margin-top: 1em;
}
/*
.programme-outerwrap {
    position: relative;
}
*/
.programme-time {
    font-size: small;
}
.programme-name {
    font-size: small;
}
.cb-programme-day {
    display: none;
}
.cb-programme-day + label {
    width: 15em;
}
.cb-programme-day:checked + label {
    background: #00960f;
    color: #ffffff !important;
    border-color: #001702;
    transition: background 0.0s ease;
    transition: none;
    box-shadow: none;
}
.programme_day_header {
    font-weight: bold;
    font-size: larger;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
}
.programme_text_slotheader {
    font-weight: bold;
    font-size: large;
}



label.collapse {
    cursor: pointer;
}

label.collapse:before {
    content: "+";
    font-family: monospace;
}
.cb_collapse:checked ~ label.collapse:before {
    content: "-";
    font-family: monospace;
}
ul.small,
ul.small > li {
    padding: 0;
    margin: 0;
    padding-left: 1em;
}
ul.small > li {
    list-style: none;
}
.search-active {
    background: #ffabab;
}
.height-05 {
    height: 0.5em;
}
.impnotice {
    background: #FF5D32;
    text-align: center;
    font-weight: bold;
    padding: 1em;
}
.impnotice button {
    width: auto;
}

.red > li,
.red > li > a,
.red {
    background: red !important;
}

#main_menu_show_div,
.nav_wrap {
    order: 1;
}
header {
    order: 2;
}
.pre_content {
    order: 3;
}
.userinfo {
    order: 4;
}
.content {
    order: 5;
}
footer {
    order: 6;
}




body {
    background-size: 100%;
}
body.concrats {
    background-size: 300%;
    transition: background-size 25s ease-out;
}
#confirm_modal_msgdiv {
    font-size: 100%;
}
#confirm_modal_msgdiv.concrats {
    font-size: 150%;
    transition: font-size 0.25s ease-out;
}

.content h1 {
    color: #000000;
}
.content h2 {
    color: #000000;
}
.content h3 {
    color: #000000;
}
.programme_favorite_span:hover {
}
.programme_favorite_span {
}

#cal_cb, #cal_div {
    display: none;
}
#cal_cb:checked ~ #cal_div {
    display: block;
}


.cookiecontrol {
    overflow-y: hidden;
    display: flex;
    width: 100%;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffff00;
    color: #000000;
    height: auto;
    z-index: 1000;
    padding: 0em;
    margin: 0;
    font-size: 1.5em;
    max-height: 100vh;
    max-width: 100vw;

    
}
.cookiecontrol button {
    width: auto;
    height: 2em;
    padding: 0 1.5em;
}

.cookiecontrol_innerdiv {
    overflow-y: auto;
    position: relative;
    background: #ffff00;
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    width: auto;
    max-height: 100vh;
    display: flex;
    align-self: center;
    margin: 0;
    padding: 0;
}



.cookiecontrol {
    padding: 0;
}
.cookiecontrol_innerdiv {
    width: 100%;
    height: 100%;
    padding: 3em;
    flex-direction: row;

}
.cookiecontrol li.cookie {
    display: inline;
    margin-right: 1em;
}




.cookiecontrol ul.cookie,
.cookiecontrol li.cookie {
    list-style: none;
}


.overflow-hidden {
    overflow: hidden;
}
.flex-direction-column {
    flex-direction: column;
}
.plain_table td {
    padding-right: 0.5em;
}
.plain_table td,
.plain_table tr {
    background: unset;
}
.plain_table {
    width: auto;
}

.nowrap {
    white-space: nowrap;
}
#shop_events > .columns > .column {
    margin: 0.5em 0;
}
.nopad {
    padding: 0;
}

/***********/

#div_paytype > input {
    position: absolute;
    left: -99999px;
}

#div_paytype > label {
    display: block;
    padding: 1em;
    margin-bottom: 5px;
    cursor: pointer;

    background: #2075b7;
    color: #ffffff !important;
    border-color: #4d96ce;
    border: 1px solid #4d96ce;
    transition: background 0.0s ease;
    font-weight: normal;
}


#div_paytype > label:focus,
#div_paytype > label:active,
#div_paytype > label:hover {
    background: #0d4b7b;
    color: #ffffff !important;
    border-color: #2075b7;
    transition: background 0.0s ease;
    box-shadow: none;
    font-weight: bold;
}

#div_paytype > input:checked + label {
    background: #0d4b7b;
    color: #ffffff;
    border-color: #2075b7;
    font-weight: bold;
}

#div_paytype > label:first-child {
    background: white;
    color: black !important;
    display: block;
    padding: 0;
    border: none;
    cursor: unset;
    font-weight: normal;
}
ul.event_list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
ul.event_list > li {
    margin-left: 0;
    padding-left: 0;
}
.abstract-reader-page {
    /*border: 1px solid #f0f0f0;*/
}
.abstract-reader-page-wrap {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: 1px 1px 1px 1px #555;
    margin: 2em auto;
}
.abstract-reader-page-wrap > canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.abstract-reader-page-wrap > .textLayer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 0);
}
.abstract-reader-footer {
    position: sticky;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    bottom: 0;
    height: 2.3rem;
    background: #ffffff;
    opacity: 1.0;
    border-top: 0px solid #f0f0f0;
}
.abstract-reader-footer > button {
    margin-left: 0.5em;
    margin-right: 0.5em;
}
.abstract-reader-error {
    margin-bottom: 2em;
}
.searchresult {
    background: yellow;
    color: red;
}
.abstract-reader-search-result-link:visited, 
.abstract-reader-search-result-link:active, 
.abstract-reader-search-result-link:hover,
.abstract-reader-search-result-link {
    margin: 0.5em;
    text-decoration: none;
    background: white;
}
.abstract-reader-search-result-link:hover {
    background: #DAEAFF;
}
.abstract-reader-search-result-link > * {
    color: black;
}
.abstract-reader-search-result-link > div {
    padding: 0.5em;
}

#main_menu_spacer {
    margin-top: 0;
}

#main_menu_show_div[data-sticked="true"] ~ #main_menu_spacer {
    margin-top: 4em;
}