﻿/****************************************************\
    Variables
\****************************************************/

:root {
    --color-black: #000000;
    --color-blue: #284763;
    --color-dark-grey: #aaaaaa;
    --color-grey: #e6e6e6;
    --color-red: #ce171f;
    --color-white: #ffffff;
}

/****************************************************\
    Fonts
\****************************************************/

@font-face {
    font-family: 'Montserrat';
    src: url('../Fonts/Montserrat/Montserrat-Regular.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

/****************************************************\
    General
\****************************************************/

html, body {    
    background: var(--color-dark-grey);
    color: var(--color-black);
    font-family: 'Segoe UI';
    font-size: 14px;
    margin: 0;
    padding: 0;
    position: relative;
    vertical-align: top;
}

.mobile {
    border: solid 1px #ddd;
    margin: 0 auto;
    padding: 5px;
    padding-bottom: 5px;
    position: relative;
    width: 582px;
}

strong {
    margin: 0;
    padding: 0;
}

/****************************************************\
    Abstract
\****************************************************/

.abstract {
    background: #FFF;
    display: block;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    padding-bottom: 10px;
}

.abstract-abstract {
    color: #000;
    display: block;
    margin: 0;
    padding: 10px;
    padding-bottom: 0;
}

.abstract-coauthors {
    color: #000;
    display: block;
    margin: 0;
    margin-top: 10px;
    padding: 10px;
    padding-bottom: 0;
    padding-top: 0;
}

.abstract-keywords {
    display: block;
    margin: 0;
    padding: 0;
}

.abstract-presenter {
    color: #000;
    display: block;
    margin: 0;
    padding: 10px;
    padding-bottom: 0;
}

.abstract-search {
    background: #e1e9f3 url(../Images/Icons/Search.png) no-repeat 2.5% 50%;
    background-size: 25px;
    border: solid 1px #666;
    border-radius: 5px;
    cursor: text;
    display: inline-block;
    margin: 0;
    padding: 10.7px;
    padding-left: 40px;
    width: 200px;
}

.abstract-title {
    background: #283748;
    color: #FFF;
    display: block;
    margin: 0;
    padding: 10px;
}

/****************************************************\
    Buttons
\****************************************************/

.buttons {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
}

.button-add {
    background: var(--color-blue);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-family: Montserrat;
    font-size: 16px;
    margin: 0;
    padding: 5px;
    padding-left: 25px;
    padding-right: 25px;
    position: absolute;
    right: 6px;
    top: 6px;
    transition: background .2s;
}

    .button-add:hover {
        background: var(--color-red);
    }

.button-more {
    color: #CE171F;
    cursor: pointer;
    font-family: 'Segoe UI';
}

.button-remove {
    background: var(--color-red);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-family: Montserrat;
    font-size: 16px;
    margin: 0;
    padding: 139px;
    padding-left: 25px;
    padding-right: 25px;
    position: absolute;
    right: 0;
    top: 0;
    transition: background .2s;
}

    .button-remove:hover {
        background: var(--color-red);
    }

.button-save {
    background: #00a813;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-family: Montserrat;
    font-size: 16px;
    margin: 0;
    margin-top: 15px;
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    transition: background .2s;
}

    .button-save:hover {
        background: #ce171f;
    }

.button-reset {
    background: none;
    border: none;
    color: #283748;
    cursor: pointer;
    display: inline-block;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    padding: 5px;
}

.button-search {
    background: #283748;
    border: none;
    border-radius: 5px;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-family: Montserrat;
    font-size: 14px;
    margin: 0;
    margin-left: 3px;
    padding: 10.5px;
    padding-left: 20px;
    padding-right: 20px;
    transition: background .2s;
    vertical-align: top;
}

    .button-search:hover {
        background: #CE171F;
    }

/****************************************************\
    Checkbox
\****************************************************/

input[type=checkbox], input[type=radio] {
    cursor: pointer;
    display: inline-block;
    margin: 0;
    margin-bottom: .4em;
    margin-right: 1.6em;
    margin-top: .4em;
    position: relative;
    top: 0;
    z-index: 0;
}

    input[type=checkbox]:before, input[type=radio]:before {
        background: #FFF;
        border: solid 1px #666;
        border-radius: 5px;
        content: "";
        float: left;
        height: 45px;
        left: 0;
        margin: 0;
        margin-left: 0;
        margin-top: -6px;
        padding: 0;
        top: 0;
        width: 45px;
        z-index: 0;
    }

    input[type=checkbox]:checked:before, input[type=radio]:checked:before {
        background: #00a813;
        border: solid 1px #00a813;
        z-index: 0;
    }

    input[type=checkbox]:checked:after, input[type=radio]:checked:after {
        border: solid #ffffff;
        border-bottom-right-radius: .2em;
        border-width: 0 3px 3px 0;
        content: "";
        display: block;
        height: 25px;
        left: 17px;
        position: absolute;
        top: 1px;
        transform: rotate(45deg);
        width: 10px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        z-index: 0;
    }

/****************************************************\
    Content
\****************************************************/

.content {
    background: var(--color-grey);
    display: block;
    margin: 5.2px;
    margin-left: 231px;
    padding: 20px;
    position: relative;
    vertical-align: top;
}

/****************************************************\
    Data
\****************************************************/

.data {
    color: #000000;
    display: block;
    font-family: 'Segoe UI';
    font-size: 14px;
    margin: 0;
    margin-top: 10px;
    padding: 0;
}

/****************************************************\
    Deadline
\****************************************************/

.deadline {
    background: #ce171f;
    color: #fff;
    cursor: default;
    display: none;
    font-family: Montserrat;
    font-size: 14px;
    margin: 0;
    margin-bottom: 10px;
    padding: 10px;
    vertical-align: top;
}

/****************************************************\
    Download
\****************************************************/

.download {
    background: #283748;
    border: none;
    border-radius: 10px;
    color: #FFF;
    cursor: pointer;
    display: block;
    font-family: Montserrat;
    font-size: 16px;
    margin: 0;
    margin-top: 10px;
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    text-decoration: none;
}

/****************************************************\
    File Input
\****************************************************/

.custom-file-input {
    color: inherit;
    width: 100%;
}

    .custom-file-input::-webkit-file-upload-button {
        visibility: hidden;
    }

    .custom-file-input::before {
        background: #283748;
        border: none;
        border-radius: 10px;
        color: #FFF;
        content: 'Choose Your File';
        cursor: pointer;
        display: block;
        font-family: Montserrat;
        font-size: 16px;
        margin: 0;
        outline: none;
        padding: 10px;
        text-align: center;
        -webkit-user-select: none;
    }

    .custom-file-input:hover::before {
        border-color: black;
    }

    .custom-file-input:active {
        outline: 0;
    }

        .custom-file-input:active::before {
            background: -webkit-linear-gradient(top, #ce171f, #ce171f);
        }

    .custom-file-input::after {
        content: 'Hi';
        display: none;
    }

/****************************************************\
    Flex
\****************************************************/

.flex {
    display: flex;
    flex-basis: 33%;
    vertical-align: top;
}

.flex-column, .flex-column-start {
    flex: 1;
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    vertical-align: top;
}

.flex-column {
    border-left: solid 2px #ccc;
}

/****************************************************\
    Footer
\****************************************************/

.footer {
    background: var(--color-blue);
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    vertical-align: top;
}

/****************************************************\
    Gap
\****************************************************/

.gap {
    height: 15px;
}

/****************************************************\
    Header
\****************************************************/

.header {
    background: var(--color-white);
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    vertical-align: top;
}

.header-logo {
    display: inline-block;
    height: 75px;
    margin: 17px;
    padding: 0;
    position: relative;
    vertical-align: top;
}

/****************************************************\
    Headings
\****************************************************/

h1 {
    color: var(--color-blue);
    cursor: default;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    left: 400px;
    top: 30px;
}

h2 {
    background: #283748;
    color: #FFF;
    cursor: default;
    font-family: Montserrat;
    font-size: 20px;
    margin: 0;
    margin-bottom: 10px;
    padding: 10px;
}

h3 {
    color: #283748;
    cursor: default;
    display: block;
    font-family: Montserrat;
    font-size: 16px;
    margin: 0;
    margin-top: 20px;
    padding: 0;
}

h4 {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
}

h5 {
    color: #000;
    font-family: 'Segoe UI';
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
}

/****************************************************\
    Horizontal Lines
\****************************************************/

hr {
    border: none;
    margin: 0;
    padding: 0;
}

.hrSplit {
    border-bottom: solid 2px #cccccc;
    margin-bottom: 15px;
    margin-top: 20px;
}

/****************************************************\
    Images
\****************************************************/

.image-globe {
    display: block;
    margin: 1em auto 2em;
    width: 90%;
}

.image-share {
    border: solid 1px #cccccc;
    width: 40%;
}

/****************************************************\
    Information
\****************************************************/

.information {
    background: #f5d79a;
    color: #283748;
    cursor: inherit;
    display: block;
    font-family: Montserrat;
    font-size: 14px;
    margin: 0;
    margin-bottom: 10px;
    padding: 10px;
}

.information-warning {
    color: #999;
    cursor: default;
    display: inline-block;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 177px;
    margin-left: -20px;
    padding: 0;
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    vertical-align: bottom;
}

/****************************************************\
    Input
\****************************************************/

.input {
    display: block;
    margin: 0;
    margin-bottom: -4px;
    padding: 0;
    vertical-align: top;
}

.input-dropdownlist {
    background: #f6f6f6;
    border: solid 1px #c6c6c6;
    border-radius: 5px;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-family: 'Segoe UI';
    font-size: 14px;
    margin: 0;
    padding: 9px;
    width: calc(100% - 172px);
}

.input-error {
    background: var(--color-red);
    border-radius: 5px;
    color: var(--color-white);
    display: none;
    font-family: var(--font-arial);
    font-size: var(--size-body);
    margin: 0;
    margin-left: 172px;
    margin-top: 10px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    width: calc(100% - 192px);
}

.input-label {
    background: #eee;
    color: #000000;
    display: inline-block;
    font-family: 'Segoe UI';
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    margin-right: -4px;
    padding: 11px;
    vertical-align: top;
    width: 150px;
}

.input-textbox {
    background: #fff;
    border: solid 1px #c6c6c6;
    border-radius: 5px;
    color: #000000;
    cursor: text;
    display: inline-block;
    font-family: 'Segoe UI';
    font-size: 14px;
    margin: 0;
    padding: 10px;
    width: calc(100% - 194px);
}

    .input-textbox:read-only {
        background: none;
        border: none;
        font-family: Montserrat;
        font-weight: 600;
    }

.input-tooltip {
    background: var(--color-navy);
    border-radius: 5em;
    color: var(--color-white);
    display: none;
    font-family: var(--font-montserrat);
    font-size: var(--size-sub-heading);
    margin: 0;
    margin-left: .1em;
    padding: .4em;
    padding-left: .7em;
    padding-right: .7em;
    vertical-align: middle;
}

/****************************************************\
    Menu
\****************************************************/

.menu {
    display: block;
    left: 0;
    margin: 0;
    margin-left: 5px;
    padding: 0;
    position: absolute;
    top: 114px;
    vertical-align: top;
}

.menu-button {
    background: var(--color-blue);
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: block;
    font-family: Montserrat;
    font-size: 16px;
    margin: 0;
    margin-bottom: 4.8px;
    padding: 10px;
    text-align: left;
    transition: background .2s;
    vertical-align: top;
    width: 220px;
}

    .menu-button:hover {
        background: var(--color-red);
    }

.menu-deadline {
    background: #283748;
    color: #fff;
    cursor: default;
    font-family: Montserrat;
    font-size: 14px;
    margin: 5px;
    margin-top: -5px;
    padding: 5px;
    text-align: center;
}

/****************************************************\
    Notice
\****************************************************/

.notice {
    background: #00a813;
    color: #fff;
    cursor: default;
    display: none;
    font-family: Montserrat;
    font-size: 14px;
    margin: 0;
    margin-bottom: 10px;
    padding: 10px;
    vertical-align: top;
}

/****************************************************\
    Space
\****************************************************/

.space {
    clear: both;
    height: 15px;
    margin: 0;
    padding: 0;
}

/****************************************************\
    Tag
\****************************************************/

.tag {
    background: #666666;
    border-radius: 10px;
    color: #ffffff;
    cursor: default;
    display: inline-block;
    font-family: Montserrat;
    font-size: 14px;
    margin: 0;
    margin-right: 10px;
    margin-top: 10px;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

/****************************************************\
    Upload
\****************************************************/

.upload {
    background: #00a813;
    border: none;
    border-radius: 10px;
    color: #FFF;
    cursor: pointer;
    display: block;
    font-family: Montserrat;
    font-size: 16px;
    margin: 0;
    margin-top: 10px;
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

/****************************************************\
    Height
\****************************************************/

.height-multiline {
    height: 200px;
}

/****************************************************\
    Relative
\****************************************************/

[needed] {
    background: #fff url(../Images/Icons/Needed.png) no-repeat 0% 0%;
}

/****************************************************\
    Relative
\****************************************************/

.relative {
    position: relative;
}

/****************************************************\
    Selected
\****************************************************/

.selected, .selected:hover {
    background: var(--color-red);
}

.selected-tick {
    background: var(--color-red) url(../Images/Icons/Tick.png) no-repeat 95% 50%;
    background-size: 25px;
}

    .selected-tick:hover {
        background: var(--color-red) url(../Images/Icons/Tick.png) no-repeat 95% 50%;
        background-size: 25px;
    }

/****************************************************\
    Tick
\****************************************************/

.tick {
    background: var(--color-blue) url(../Images/Icons/Tick.png) no-repeat 95% 50%;
    background-size: 25px;
}

    .tick:hover {
        background: var(--color-red) url(../Images/Icons/Tick.png) no-repeat 95% 50%;
        background-size: 25px;
    }

/****************************************************\
    Width
\****************************************************/

.width-long {
    width: calc(100% - 20px);
}

.width-normal {
    width: 300px;
}

.width-short {
    width: 150px;
}

/****************************************************\
    Override
\****************************************************/

.abstract-sortby {
    background: #e1e9f3;
    border: solid 1px #666;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    display: block;
    float: right;
    font-family: 'Segoe UI';
    font-size: 14px;
    margin: 0;
    margin-left: 10px;
    padding: 8px;
    vertical-align: top;
    width: 165px;
}

.full-abstract {
    display: none;
}

.highlight {
    background: #FC0;
    border-radius: 5px;
    color: #000;
    padding-left: 5px;
    padding-right: 5px;
}

.gridview {
    margin: 0;
    margin-top: 80px;
    padding: 0;
}

    .gridview td {
        margin: 0;
        padding: 0;
    }

    .gridview tr {
        margin: 0;
        padding: 0;
    }

.gridview-pager {
    border-top: solid 10px #E6E6E6;
    margin: 0;
    padding: 0;
}

    .gridview-pager td {
        background: #284763;
        margin: 0;
        padding: 0;
    }

    .gridview-pager a {
        color: #FFF;
        cursor: pointer;
        display: inline-block;
        font-family: Montserrat;
        font-size: 16px;
        margin: 0;
        padding: 5px;
        padding-left: 10px;
        padding-right: 10px;
        text-decoration: none;
    }

        .gridview-pager a:hover {
            color: #FC0;
        }

    .gridview-pager span {
        color: #FC0;
        cursor: default;
        display: inline-block;
        font-family: Montserrat;
        font-size: 16px;
        margin: 0;
        padding: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }

.keyword {
    background: #284763;
    border: none;
    border-radius: 20px;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-family: 'Segoe UI';
    font-size: 12px;
    margin: 0;
    margin-left: 5px;
    margin-top: 5px;
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
}

.pin {
    background: #E6E6E6;
    border: solid 5px #AAA;
    border-bottom: none;
    left: 0;
    margin-top: -25px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    position: fixed;
    right: 0;
    top: 25px;
}

/****************************************************\
    DELEGATE
\****************************************************/

.delegate {
    background: #283748;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    position: relative;
    width: fit-content;
}

    .delegate-name, .delegate-company, .delegate-jobtitle, .delegate-email, .delegate-phone {
        color: #FFF;
        font-family: Arial;
        font-size: 16px;
        margin: 0;
        padding: 10px;
        width: 500px;
    }

    .delegate-name {
        font-size: 20px;
        padding-bottom: 0;
    }

    .delegate-email, .delegate-phone {
        padding-top: 0;
    }

    .delegate-member {
        padding: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 75px;
    }

    .delegate-staff, .delegate-council, .delegate-presenter, .delegate-reviewer, .delegate-sessionchair, .delegate-exhibitor, .delegate-workinggroup, .delegate-committee {
        color: #FFF;
        font-family: Arial;
        font-size: 20px;
        margin: 10px;
        padding: 10px;
        width: 540px;
    }

    .delegate-staff {
        background: rgb(0, 0, 0);
    }

    .delegate-council {
        background: rgb(206, 23, 31);
    }

    .delegate-presenter {
        background: rgb(33, 177, 10);
    }

    .delegate-reviewer {
        background: rgb(40, 55, 72);
    }

    .delegate-sessionchair {
        background: rgb(95, 117, 142);
    }

    .delegate-exhibitor {
        background: rgb(255, 156, 0);
    }

    .delegate-workinggroup {
        background: rgb(0, 52, 130);
    }

    .delegate-committee {
        background: rgb(0, 52, 130);
    }


@media screen and (max-width: 600px) {
    .delegate {
        width: calc(100% - 60px);
    }

    .delegate-name, .delegate-company, .delegate-jobtitle, .delegate-email, .delegate-phone, .delegate-staff, .delegate-council, .delegate-presenter, .delegate-reviewer, .delegate-sessionchair, .delegate-exhibitor, .delegate-workinggroup, .delegate-committee {
        width: auto;
    }

    .mobile {
        border: unset;
        margin: unset;
        padding: unset;
        padding-bottom: unset;
        position: unset;
        width: unset;
    }
}

.agenda-item {
    background: #fff;
    border-radius: 10px;
    margin: 0;
    margin-top: 10px;
    padding: 10px;
    vertical-align: top;
}

.session {
    background: #666;
    border-radius: 20px;
    margin: 20px;
    padding: 20px;
}

.agenda-session {
    display: block;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.agenda-datetime {
    color: #666;
    display: block;
    font-family: Arial;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
}

.agenda-title {
    color: #000;
    display: block;
    font-family: Arial;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
}

.agenda-label {
    background: #283748;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-family: Arial;
    font-size: 12px;
    margin: 0;
    margin-right: 5px;
    padding: 3px;
    padding-left: 5px;
    padding-right: 5px;
}

.agenda-abstract {
    color: #555;
    display: block;
    margin: 0;
}

.agenda-presenter {
    color: #000;
    display: block;
    font-size: 14px;
    margin: 0;
    margin-top: 10px;
}

.agenda-jobtitle {
    color: #555;
    display: block;
    font-family: Arial;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    margin-top: 5px;
    padding: 0;
}

.agenda-company {
    color: #666;
    display: block;
    font-family: Arial;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.toggle {
    color: #ce171f;
    display: block;
    font-family: Arial;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    text-decoration: none;
}

.hidden {
    display: none;
}

.search {
    background: #fff;
    border-radius: 10px;
    margin: 20px;
    padding: 20px;
}

.track-a {
    background: #fff02b;
    color: #000;
}

.track-a-item {
    background: #fff9c3;
}

.track-b {
    background: #92546e;
    color: #fff;
}

.track-b-item {
    background: #d2bbc4;
}

.track-c {
    background: #fdb82c;
    color: #000;
}

.track-c-item {
    background: #ffe7ba;
}

.track-d {
    background: #867fe0;
    color: #fff;
}

.track-d-item {
    background: #c5c3df;
}

.track-e {
    background: #85de88;
    color: #000;
}

.track-e-item {
    background: #c9e1ca;
}

.track-f {
    background: #febe81;
    color: #000;
}

.track-f-item {
    background: #fdebda;
}

.track-g {
    background: #7882cc;
    color: #fff;
}

.track-g-item {
    background: #b1b4ca;
}

.track-h {
    background: #89baf5;
    color: #000;
}

.track-h-item {
    background: #d0e0f3;
}

.track-i {
    background: #a4efbb;
    color: #000;
}

.track-i-item {
    background: #e4eee7;
}

.track-j {
    background: #ef404c;
    color: #fff;
}

.track-j-item {
    background: #f9b8a6;
}

.track-k {
    background: #f89775;
    color: #000;
}

.track-k-item {
    background: #f8c0ac;
}

.track-l {
    background: #f88ebc;
    color: #000;
}

.track-l-item {
    background: #fcdae9;
}

.track-p, .track-plenary {
    background: #106b36;
    color: #FFF;
}

.track-p-item, .track-plenary-item {
    background: #bbdcc8;
}

.track-blank {
    background: #fff;
}

.small {
    display: inline-block;
    font-family: Arial;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.search-dropdown {
    background: #e1e9f3;
    border: solid 1px #666;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-family: 'Segoe UI';
    font-size: 14px;
    margin: 0;
    margin-left: 10px;
    padding: 8px;
    vertical-align: top;
    width: 165px;
}

.search-textbox {
    background: #e1e9f3 url(../Images/Icons/Search.png) no-repeat 2.5% 50%;
    background-size: 25px;
    border: solid 1px #666;
    border-radius: 5px;
    cursor: text;
    display: inline-block;
    margin: 0;
    padding: 10.7px;
    padding-left: 40px;
    width: 200px;
}

.fullagenda {
    background: #FFF;
    cursor: e-resize;
    font-size: 16px;
    margin: 20px;
    overflow-x: scroll;
    padding: 0;
    padding-top: 0;
    white-space: nowrap;
}

.fullagenda-date {
    color: #fff;
    border-bottom: solid 1px #AAA;
    margin: -20px;
    margin-top: 5px;
    padding: 30px;
    padding-bottom: 30px;
    vertical-align: top;
}

.fullagenda-date-title {
    background: #CE171F;
    border-radius: 10px;
    color: #FFF;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    width: 200px;
}

.fullagenda-time {
    background: #f6f6f6;
    display: block;
    padding: 10px;
    width: fit-content;
}

.fullagenda-time-title {
    background: #283748;
    border-radius: 10px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    height: 150px;
    padding: 10px;
    text-align: right;
    width: 200px;
}

.fullagenda-room {
    display: inline-block;
    margin: 0;
    margin-right: 10px;
    padding: 0;
}

.fullagenda-room-title {
    border-radius: 10px;
    display: block;
    font-size: 16px;
    margin: 0;
    padding: 10px;
    width: 350px;
}

.fullagenda-session {
    border-radius: 10px;
    display: inline-block;
    height: 150px;
    margin: 0;
    margin-left: 10px;
    padding: 10px;
    vertical-align: top;
    width: 350px;
}

.fullagenda-session-title {
    font-size: 13px;
    white-space: normal;
}

.fullagenda-presentation {
    display: block;
    margin-top: 10px;
    position: relative;
}

.fullagenda-presentation-fill {
    border-radius: 10px;
    bottom: 0;
    padding: 10px;
    position: absolute;
    height: 100px;
    top: 0;
    width: 330px;
    white-space: normal;
}

.fullagenda-presentation-title {
    color: #000 !important;
    font-size: 14px;
    font-weight: 600;
    word-wrap: break-word;
}

.fullagenda-presentation-presenter {
    border-top: solid 1px #fff;
    color: #283748 !important;
    display: block;
    font-size: 12px;
    margin-top: 5px;
    padding-top: 5px;
}

.inline {
    display: inline-block;
    vertical-align: top;
}

.track-break, .track-reception {
    background: #4c698a;
    color: #fff;
    height: 25px !important;
}

.presentation-open {
    background: url(../Images/Icons/Open.png) no-repeat 100% 100%;
    background-size: 20px;
    bottom: 5px;
    display: block;
    height: 20px;
    position: absolute;
    right: 5px;
    width: 20px;
}

.presentation-open-parent {
    display: block;
    text-decoration: none;
}

.popup {
    background: rgba(40,55,72,0.75);
    cursor: default;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
}

.popup-content {
    background: #eeeeee;
    border-radius: .5em;
    max-height: calc(100% - 4.6em);
    margin: 1em auto;
    min-width: 300px;
    overflow: auto;
    padding: 1em;
    padding-bottom: 0;
    position: relative;
    text-align: left;
    width: 50%;
    white-space: normal;
}

.presentation-close {
    background: #ce171f;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    color: #fff;
    cursor: pointer;
    font-family: Montserrat;
    font-size: 16px;
    margin: 0;
    padding: 8.5px;
    padding-left: 30px;
    padding-right: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    text-decoration: none;
}

.popup-content > p {
    color: #000;
}