:root {

    /*colors:*/
    --bg-background-box: #d3ebee;
    --bg-button: #42feff;

    --bg-color: #000; /*#00516b;*/

    --main-color-dark: #d3ebee;
    --main-color-mild-1: #0F9FDF;
    --main-color-mild-2: #17A4E3;
    --main-color-light: #26AFEB;
    --welcome-title-color: #3B3A3A;
    --welcome-text-color: #7B7B7B;
    --notification-btn-text-color: #065679;
    --shadow-color-1: #00000026;
    --shadow-color-2: #0D5E83C9;
    --shadow-color-3: #689EB514;
    --chat-text-color: #4D4D4D;


    /*fonts:*/
    /*fallback included*/
    --welcome-text-font-family: Helvetica, Arial, sans-serif;
    --notification-box-text-font-family: Helvetica, Arial, sans-serif;
    /*images*/
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
}

.content {
    max-width: 1536px;
    margin: auto;
    position: relative;
}

*::-webkit-scrollbar {
    width: 2px;
    height: 0px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 1px var(--welcome-text-color);
}

*::-webkit-scrollbar-track {
    border-radius: 10px;

}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    width: 5px;
    background-color: var(--main-color-light);
}

h2 {
    color: var(--bg-color);
    font-size: 2em;
}

/* Begin Header*/
.header {
    display: flex;
    z-index: 10;
    position: relative;
    
    /* flex-direction: column;
     margin-left:100px;*/

}

.header img {
    margin: auto 0 auto 10rem;
    width: 150px;
}

.navigation {
    display: flex;
    list-style: none;
    /*justify-content: space-evenly;*/
    align-items: center;
    width: 48%;
}

.nav-item {
    margin: 20px;
    color: var(--bg-color);
    font-family: var(--welcome-text-font-family);
    letter-spacing: 0.45px;
    font-weight: bold;
    cursor: pointer;
}

.nav-item a {
    text-decoration: none;
    color: inherit;
}

/* End Header*/

.big-bg-box { /* Background Box*/
    position: absolute;
    top: 0;
    right: 0;
    height: 750px;
    width: 45%;
    background-color: var(--main-color-dark);
    /*opacity:0.11;*/
    border-radius: 0 0 0 40px;
}

/* Begin Streams + Chat + Questions*/
.stream-container {
    margin: 40px 150px 0 185px;
    position: relative;
}

.streams-menu {
    position: absolute;
    left: 8rem;
    top: 3rem;
}

.stream-one, .stream-two { /* Stream Switchers*/
    cursor: pointer;
    position: absolute;
    color: var(--bg-color);
    left: -55px;
    width: 160px;
    top: 25px;
    /*background: transparent linear-gradient(-45deg, var(--main-color-dark) 0%, var(--main-color-light) 100%) 0% 0% no-repeat padding-box;*/
    background: var(--bg-button);
    border-radius: 0px 0px 0px 20px;
    padding: 10px;
}

.streams-container { /*container for streams menu+stream*/
    position: relative;
}

.stream-container {
    display: flex;
    flex-direction: column;
}

.stream-video-chat-container {
    display: flex;
    justify-content: flex-start;
    /*flex-direction: column;*/
}

.stream-two {
    top: 70px;
    background: transparent linear-gradient(-45deg, var(--main-color-dark) 0%, var(--main-color-light) 100%) 0% 0% no-repeat padding-box;
    opacity: 0.5;
}

.stream-video {
    width: 80%;
    height: 530px;
    border-radius: 0 0 0 40px;
    z-index: 2;

}

.stream { /*iframe for stream*/
    width: 90%;
    min-height: 42rem;
    margin-left: 3rem;
    border: none;
    border-radius: 0px 20px;
    z-index: 2;

    /*background-color: var(--bg-color);*/
    position: relative;
}

/*Begin Chat*/
.stream-chat {
    display: flex;
    flex-direction: column;
    z-index: 2;
    margin-top: .5rem;
    /*right: -4rem;*/
    width: 20rem;
    /*position: absolute;*/
    transform: translateX(-20px);
    border-radius: 0 20px;
    background-color: #fff;
    color: var(--bg-color);
    height: 550px;
}

.chat-name {
    font-family: var(--welcome-text-font-family);
    letter-spacing: 0.88px;
    padding: 30px 30px 0 30px;
    color: var(--welcome-title-color);
}

.storytile-sites-public-chat-messages {
    flex-direction: column;
    height: 330px;
    padding: 0 20px 0 30px;
    display: flex;
    margin: 0 20px 10px 0;
    overflow: auto;
}

.storytile-sites-public-chat-message {
    margin-bottom: 15px;

}

.storytile-sites-public-chat-message-time {
    display: none;
}

.storytile-sites-public-chat-message-user {
    display: inline;
    font-size: 14px;
    font-weight: bold;
    font-family: var(--welcome-text-font-family);
    letter-spacing: 0.35px;
    color: var(--chat-text-color);
}

.storytile-sites-public-chat-message-text::before {
    content: "\007c";
    padding: 0 0.2rem;
}

.storytile-sites-public-chat-message-text {
    display: inline;
    font-size: 14px;
    font-family: var(--notification-box-text-font-family);
    letter-spacing: 0.35px;
    color: var(--chat-text-color);
    overflow-wrap: break-word;

}

.storytile-sites-public-chat-inputs {
    /*position: absolute;
    width: 100%;*/
    bottom: 10px;
    position: relative;
}

.storytile-sites-public-chat-inputs form {
    display: flex;
    align-items: flex-end;
}

.storytile-sites-public-chat-input-text {
    border: 1px solid transparent;
    resize: none;
    padding: 0 28px 5px 20px;
    width: 75%;
    letter-spacing: 0.35px;
    font-family: var(--welcome-text-font-family);
    color: var(--chat-text-color);
    border-bottom: 1px solid var(--main-color-light);
}

.storytile-sites-public-chat-input-button {
    border: none;
    /*background: transparent linear-gradient(-45deg, var(--main-color-dark) 0%, var(--main-color-light) 100%) 0% 0% no-repeat padding-box;;*/
    background-color: var(--bg-button);
    border-radius: 0px 0px 0px 20px;
    padding: 11.9px;
    cursor: pointer;
    height: 40px;
}

.storytile-sites-public-chat-input-text:focus {
    outline: 1px solid transparent;
}

.storytile-sites-emoji-menu {
    position: absolute;
    height: 26px;
    width: 28px;
    top: 12px;
    right: 80px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    line-height: 1.6rem;
}

.storytile-sites-emoji-menu[data-open] {
    overflow: visible;
}

.storytile-sites-emoji-menu-list {
    position: absolute;
    width: 15rem;
    max-height: 11em;
    bottom: 2.4rem;
    right: 0.3rem;
    padding: .3rem;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--bg-color);
    border: 1px solid var(--shadow-color-1);
}

.storytile-sites-emoji-menu-list span {
    padding: .2rem;
}

.storytile-sites-public-chat-input-text::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--main-color-dark);
    position: absolute;
    left: 20px;
    letter-spacing: 0.35px;

}

.storytile-sites-public-chat-input-text::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    outline: transparent;
}

.storytile-sites-public-chat-input-text::-moz-placeholder { /* Firefox 19+ */
    color: var(--main-color-dark);
}

.storytile-sites-public-chat-input-text:-ms-input-placeholder { /* IE 10+ */
    color: var(--main-color-dark);
}

.storytile-sites-public-chat-input-text:-moz-placeholder { /* Firefox 18- */
    color: var(--main-color-dark);
}

/*End chat*/

/*
#questions-container{ 
    
    width: 800px;
    height: 56px;
    border: none;
    box-shadow: 0px 22px 22px var(--shadow-color-3);
    padding-left: 50px;
    background-color: var(--bg-color);
    position: relative;
    display: flex;

    justify-content: space-between;
    align-items: center;
    
}*/
.form {
    margin: unset;
}

.stream-questions-container {
    display: flex;
    margin-top: .5rem;
}

.stream-questions-text {
    letter-spacing: 0.55px;
    color: var(--main-color-dark);
    font-weight: bold;
    margin: 15px;
    font-family: var(--welcome-text-font-family);
}

#questions {
    width: 50%;
    display: inline-block;
    background-color: var(--bg-color);
}

#questions form {
    width: 100%;
    display: flex;
    align-items: center;
}

.storytile-sites-user-questions-input-text {
    border: 1px solid transparent;
    resize: none;
    padding-left: 0;
    width: 100%;
    border-bottom: 1px solid var(--main-color-dark);
}

.storytile-sites-user-questions-input-button {
    border: none;
    background: transparent linear-gradient(-45deg, var(--main-color-dark) 0%, var(--main-color-light) 100%) 0% 0% no-repeat padding-box;
    border-radius: 0px 0px 0px 20px;
    padding: 15px;
    cursor: pointer;
}

.storytile-sites-user-questions-input-text:focus {
    outline: 1px solid transparent;
}

/*End questions*/

/*Begin EPG*/
#epg-wrapper {
    text-align: center;
}

.epg-title {
    margin: 5rem auto 1rem;
    font-family: var(--welcome-text-font-family);
    font-weight: bold;
    letter-spacing: 1.38px;
    color: var(--welcome-title-color);
}

.session {
    line-height: 3em;
}

#epg {
    display: flex;
    justify-content: center;
    color: var(--main-color-dark);
    overflow: hidden;
}

#epg #timeline {
    position: absolute;
    top: 0px;

}

#epg #timeline span {
    display: block;
    position: absolute;
    width: 70px;

    color: var(--welcome-text-color);
    font-weight: 400;
    z-index: 3;
    line-height: 1;
}

#studio-prog {
    position: absolute;

    height: calc(100% - 55px);
    width: 2px;
    top: 27px;

}

#next {
    content: "";
    height: 50px;
    width: 50px;
    background-color: var(--main-color-dark);
}

#stage-prog {
    position: absolute;
    height: calc(100% - 55px);
    width: 2px;
    top: 87px;

}

.session {
    position: absolute;
    width: 250px;
    top: 2px;
    background: var(--main-color-dark);
    color: var(--bg-color);
    padding: 15px 20px;
    height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;

}

.session:nth-child(odd) {
    border-radius: 40px 40px 0px 40px;
}

.session:nth-child(even) {
    border-radius: 0px 40px 40px 40px;
}

#rooms {

    color: var(--main-color-dark);
    font-family: var(--notification-box-text-font-family);

}

.studio-room, .stage-room {
    position: relative;
    height: 75px;
    padding: 35px 15px 0px 100px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 14px;
}

#program {
    position: relative;
    top: 0px;
    left: 0px;
    overflow-y: hidden;
    overflow-x: auto;
    width: calc(87.9% - 250px);
    float: right;

}

#arrows {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-left: 20px;
}

.storytile-sites-agenda-small {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    font-family: var(--notification-box-text-font-family);
    font-size: 14px;
}

.storytile-sites-agenda-small * {
    box-sizing: border-box;
    user-select: none;
}

.storytile-sites-agenda-small .storytile-sites-agenda-day {
    position: relative;
    display: inline-flex;
    flex-flow: column nowrap;
    color: var(--main-color-dark);
    width: 100%;
    text-align: left;
    --storytile-sites-agenda-time-progress: 0;
}

.storytile-sites-agenda-small .storytile-sites-agenda-day:not([data-visible]) {
    display: none;
}

.storytile-sites-agenda-small .storytile-sites-agenda-stage,
.storytile-sites-agenda-small .storytile-sites-agenda-day-select {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: 12rem 1fr 2rem;
    grid-template-rows: minmax(2rem, auto);
    grid-template-areas: "stage slots arrow";
    column-gap: 1rem;
    align-items: center;
    justify-items: stretch;
    --storytile-sites-agenda-stage-height: 3rem;
}

.storytile-sites-agenda-small .storytile-sites-agenda-day-selector-box {
    position: relative;
    display: flex;
    grid-area: slots;
    flex-float: row wrap;
    margin-bottom: 0.5rem;
}

.storytile-sites-agenda-small .storytile-sites-agenda-day-selector {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
    line-height: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--shadow-color-1);
    margin-right: 1rem;
    cursor: pointer;
}

.storytile-sites-agenda-small .storytile-sites-agenda-day-selector:hover {
    background-color: var(--main-color-light);
    color: var(--bg-color);
}

.storytile-sites-agenda-small .storytile-sites-agenda-day-selector:first-child {
    border-bottom-left-radius: 0;
}

.storytile-sites-agenda-small .storytile-sites-agenda-day-selector:last-child {
    border-top-right-radius: 0;
}

.storytile-sites-agenda-small .storytile-sites-agenda-day-selector-selected {
    background-color: var(--main-color-dark);
    color: var(--bg-color);
}

.storytile-sites-agenda-small .storytile-sites-agenda-stagename {
    position: relative;
    grid-area: stage;
    overflow: hidden;
    /*min-height: 3rem;*/
    min-height: var(--storytile-sites-agenda-stage-height);
    /*line-height: 3rem;*/
    line-height: var(--storytile-sites-agenda-stage-height);
    align-self: end;
    text-align: right;
    color: var(--main-color-dark);
}

.storytile-sites-agenda-small .storytile-sites-agenda-slotbox {
    position: relative;
    grid-area: slots;
    overflow: hidden;
    /*height: 3rem;*/
    height: var(--storytile-sites-agenda-stage-height);
}

.storytile-sites-agenda-small .storytile-sites-agenda-slotbox-with-hr .storytile-sites-agenda-slots::before {
    position: absolute;
    display: block;
    content: "";
    top: calc(50% - 1px);
    left: 0;
    right: 0;
    height: 2px;
    background-color: currentColor;
    opacity: 0.1;
}

.storytile-sites-agenda-small .storytile-sites-agenda-slots::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    border-right: 1px solid #f00;
    width: var(--storytile-sites-agenda-time-progress);
    background-color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.storytile-sites-agenda-small .storytile-sites-agenda-slots {
    position: absolute;
    height: 100%;
    min-width: 100%;
    width: auto;
    top: 0;
    left: 0;
    white-space: nowrap;
    padding: 0.5rem 0;
}

.storytile-sites-agenda-small .storytile-sites-agenda-stage:first-child,
.storytile-sites-agenda-small .storytile-sites-agenda-stage:first-child .storytile-sites-agenda-slots {
    --storytile-sites-agenda-stage-height: 2rem;
    padding: 0;
    overflow: hidden;
}

.storytile-sites-agenda-small .storytile-sites-agenda-timeslot {
    position: relative;
    display: inline-block;
    padding: 0 0.5rem;
    text-align: left;
    line-height: 2rem;
    color: var(--welcome-text-color);
    font-weight: 400;
}

.storytile-sites-agenda-small .storytile-sites-agenda-sessionslot {
    position: absolute;
    display: block;
    padding: 0 1.25rem;
    text-align: left;
    line-height: 2rem;
    color: var(--bg-color);
    background-color: var(--main-color-dark);
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 1rem;
    font-size: 90%;
}

.storytile-sites-agenda-small .storytile-sites-agenda-sessionslot[onclick] {
    cursor: pointer;
}

.storytile-sites-agenda-small .storytile-sites-agenda-sessionslot:nth-child(even) {
    border-top-left-radius: 0;
}

.storytile-sites-agenda-small .storytile-sites-agenda-sessionslot:nth-child(odd) {
    border-bottom-right-radius: 0;
}

.storytile-sites-agenda-small .storytile-sites-agenda-arrow {
    position: relative;
    justify-self: center;
    align-self: center;
    line-height: 0;
    color: var(--main-color-dark);
}

/*End EPG*/

/* Begin In case of need for program tooltips */
#prog-details {
    position: absolute;
    background: var(--bg-color);
    width: 300px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 1px 1px 20px var(--shadow-color-1);
    color: var(--chat-text-color);
    padding: 15px 20px;
    box-sizing: border-box;
    text-align: left;
    z-index: 5;
}

#prog-details:after {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border-bottom-color: var(--bg-color);
    border-width: 10px;

}

/* End In case of need of program tooltips*/

.arrow-down, .live-blog {
    margin-top: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    position: absolute;
}

.arrow {
    position: absolute;
}

.live-blog {
    margin-top: 100px;
    letter-spacing: 1.38px;
    font-family: var(--welcome-text-font-family);
    color: var(--welcome-title-color);
}

.live {
    letter-spacing: 1.25px;
    color: var(--main-color-dark);
}
/*
.partners {
    padding-top: 200px;
    display: flex;
    justify-content: start;
    margin: auto;
    flex-wrap: wrap;
}

.partners div {
    display: flex;
    object-fit: none;
    flex-basis: 25%;
    justify-content: center;
    align-items: center;
}

.partners img {
    max-width: 100%;
}
*/


.notification-box {
    width: 1115px;
    height: 295px;
    margin: 125px auto 175px;
    padding: 20px;
    background: transparent linear-gradient(244deg, var(--main-color-dark) 0%, var(--main-color-mild-1) 40%, var(--main-color-mild-2) 60%, var(--main-color-light) 100%) 0% 0% no-repeat padding-box;
    background: var(--main-color-dark);
    box-shadow: 0px 44px 55px var(--shadow-color-1);
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.notification-text {
    width: 60%;
    color: var(--bg-color);
    font-family: var(--notification-box-text-font-family);
    line-height: 1.5;
}

.notification-box h1 {
    letter-spacing: 1.13px;
    font-weight: 10;
    margin: 0;

}

.notification-text p {
    line-height: 2;
}

.notification-button {
    /*background: var(--bg-color) 0% 0% no-repeat padding-box;*/
    background: #fff 0 0 no-repeat padding-box;
    box-shadow: 0 3px 33px var(--bg-button);
    border-radius: 20px;
    height: fit-content;
    padding: 20px 50px;
    border: 1px solid transparent;
    font-size: 17px;
    color: #000;
    font-family: var(--notification-box-text-font-family);
    cursor: pointer;
}

.footer {
    padding: 15px;
    text-align: center;
    color: var(--welcome-text-color);
    letter-spacing: 0.42px;
    font-family: var(--welcome-text-font-family);
}

.footer hr {
    max-width: 1115px;
    margin: 0 auto 40px;
    border-bottom: none;
}

.onetime-login {
    display: flex;
    height: 40px;
    align-items: end;
}

.onetime-login form {
    display: flex;
}

.onetime-login input {
    line-height: 32px;
    border: none;
    color: var(--bg-color);
    border-bottom: 1px solid var(--bg-color);
    outline: none;
}

.onetime-login button {
    background-color: var(--bg-button);
    border: none;
    border-radius: 0 0 0 20px;
    padding: 10px;
    color: var(--bg-color);
    cursor: pointer;
}

#zoom {
    background-color: #eee;
}

.stream-video-chat-container {
    /*height: 700px;*/

}

.stream-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    flex: 1;
    background-color: #eee;
    min-height: 650px;
}

.stream-video-wrapper iframe {
    position: absolute;
}

/* ***** scrollbar adjustments START ***** */
/* firefox */
.stream-chat * {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.2);
}

/* width */
.stream-chat *::-webkit-scrollbar {
    width: 5px;
}

/* button */
.stream-chat *::-webkit-scrollbar-button {
    display: none;
}

/* handle */
.stream-chat *::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
}

/* handle on hover */
.stream-chat *::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* track */
.stream-chat *::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

/* ***** scrollbar adjustments END ***** */

/* --------------------------------------------------------------------------------
 max width 769
 -------------------------------------------------------------------------------- */

@media screen and (max-width: 769px) {
    header {
        margin-left: 10px;
    }

    .header img {
        margin: auto;
        margin-left: 0;
    }

    .menu-btn {
        position: absolute;
        z-index: 4;
        right: 5%;
        height: 60px;
        width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .5s ease-in-out;
    }

    .menu-btn-burger {

        width: 40px;
        height: 4px;
        /*background: var(--main-color-dark);*/
        background-color: #000;
        border-radius: 5px;
        transition: all .5s ease-in-out;

    }

    .menu-btn-burger::before, .menu-btn-burger::after {
        content: '';
        position: absolute;
        width: 40px;
        height: 4px;
        /*background: var(--main-color-dark);*/
        background-color: #000;
        border-radius: 5px;

        transition: all .5s ease-in-out;

    }

    .menu-btn-burger::before {
        transform: translateY(-14px);
    }

    .menu-btn-burger::after {
        transform: translateY(14px);
    }

    /* Burger Menu Animation*/
    .menu-btn.open .menu-btn-burger {
        transform: translateX(-50px);
        background: transparent;
    }

    .menu-btn.open .menu-btn-burger::before {
        transform: rotate(45deg) translate(35px, -35px);
        background-color: var(--bg-color);
    }

    .menu-btn.open .menu-btn-burger::after {
        transform: rotate(-45deg) translate(35px, 35px);
        background-color: var(--bg-color);
    }

    .navigation {
        position: absolute;
        background: var(--main-color-dark);
        padding-left: 0;
        z-index: 3;
        height: 100vh;
        width: 40%;
        margin: auto;
        padding-top: 7rem;
        flex-direction: column;
        right: 0;
        display: none;
    }

    .navigation li {
        color: var(--bg-color);
    }

    .navigation.on {
        display: flex;
    }

    .streams-container {

        margin-top: 5rem;
    }

    .stream-container {
        margin: auto;
    }

    .stream {
        flex-direction: column;
        margin: auto;
        width: 100vw;
        min-height: 62rem;

    }

    .stream-video-chat-container {
        flex-direction: column;
    }

    .stream-video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
    }

    .stream-video-wrapper object,
    .stream-video-wrapper embed,
    .stream-video-wrapper .stream-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .stream-chat {
        position: unset;
        margin: auto;
        margin-top: 2rem;

        width: 90%;
        /*position: absolute;*/
        transform: translateX(0);
    }

    .streams-menu {
        display: flex;
        position: unset;
        width: 35%;
    }

    .stream-one, .stream-two {
        position: inherit;
        width: 15rem;

    }

    .big-bg-box {
        width: 100%;
        min-height: 57rem;
        top: 8rem;
    }

    .stream-one {
        border-radius: 20px 0px 0px 0px;
    }

    .stream-two {
        border-radius: 0px 20px 0px 0px;
    }

    .stream-questions-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: auto;
        margin-top: .5rem;
        max-width: 21em;
        background-color: var(--bg-color);
    }

    .stream-questions-text {
        font-size: 1rem;
        margin: revert;
        padding: 0 1rem;
    }

    .storytile-sites-agenda-small .storytile-sites-agenda-day-selector {
        line-height: normal;
    }

    .storytile-sites-agenda-small .storytile-sites-agenda-stage {
        grid-template-columns: 5rem 1fr 4rem;
    }

    .storytile-sites-agenda-small .storytile-sites-agenda-day-select {
        grid-template-columns: 1rem 1fr 4rem;
    }

    .storytile-sites-user-questions-question {
        padding: 1.2rem 0 1.2rem;
        margin: auto;
    }

    .storytile-sites-user-questions-input-text {
        width: auto;
    }

    .storytile-sites-user-questions-input-button {
        padding: 0.5rem;
    }

    #questions-container {
        padding-left: 1rem;
        width: auto;
        height: auto;
    }

    #questions {
        display: flex;
        justify-content: center;
        height: fit-content;
    }

    #questions form {
        width: 90%;
    }

    .notification-box {
        margin: 5rem auto;
        width: 75%;
        height: fit-content;
        flex-direction: column;

    }

    .notification-box h1 {
        font-size: 1.3rem;
        margin: 1rem auto 2rem;
    }

    .notification-text p {
        font-size: .8rem;
        margin: 0 auto 1rem;
    }

    .notification-text {
        width: 75%;
    }

    .notification-button {
        padding: 15px 40px;
    }
/*
    .partners {
        justify-content: center;
        padding-top: 100px;
    }

    .partners div {
        flex-basis: 100%;
        justify-content: center;
        margin: 20px 0;
    }
*/
    .onetime-login {
        width: 90%;
        margin: 0 auto;
    }

    .onetime-login form {
        width: 100%;
    }

    .onetime-login input[name="name"] {
        flex: 1;
    }
}

/* --------------------------------------------------------------------------------
 max width 1200
 -------------------------------------------------------------------------------- */

@media screen and (max-width: 1200px) {
    header {
        margin-left: 10px;
    }

    .streams-container {

        /*margin-top: 5rem;*/
        margin: 0 2rem;
    }

    .stream-container {
        /* margin: auto; */
        /*margin: 2rem;*/
        margin: 0 auto;
    }

    .stream {
        flex-direction: column;
        margin: auto;
        width: 100vw;
        min-height: 62rem;

    }

    .stream-video-chat-container {
        /* flex-direction: column: */
        margin-bottom: 1rem;
    }

    .stream-video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        min-height: 650px;
    }

    .stream-video-wrapper object,
    .stream-video-wrapper embed,
    .stream-video-wrapper .stream-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .stream-chat {
        position: unset;
        margin: auto;
        margin-top: 2rem;
    }

    /*.emoji-list-open{
      display: block;
      background-color: #0095D6;
      position: absolute;
      max-width: 20rem;
      max-height: 11rem;
      top: -9rem;
      right: 0;
    }*/
    .streams-menu {
        display: flex;
        position: unset;
        width: 35%;
    }

    .stream-one, .stream-two {
        position: inherit;
        width: 15rem;

    }

    .big-bg-box {
        width: 100%;
        /* min-height: 59rem; */
        top: 8rem;
    }

    .stream-one {
        border-radius: 20px 0px 0px 0px;
    }

    .stream-two {
        border-radius: 0px 20px 0px 0px;
    }

    .stream-questions-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: auto;
        margin-top: .5rem;
        max-width: 21em;
        background-color: var(--bg-color);
    }

    .stream-questions-text {
        font-size: 1rem;
        margin: revert;
        padding: 0 1rem;
    }

    .storytile-sites-agenda-small .storytile-sites-agenda-day-selector {
        line-height: normal;
    }

    .storytile-sites-user-questions-question {
        padding: 1.2rem 0 1.2rem;
        margin: auto;
    }

    .storytile-sites-user-questions-input-text {
        width: auto;
    }

    .storytile-sites-user-questions-input-button {
        padding: 0.5rem;
    }

    #questions-container {
        padding-left: 1rem;
        width: auto;
        height: auto;
    }

    #questions {
        display: flex;
        justify-content: center;
        height: fit-content;
    }

    .notification-box {
        margin: 5rem auto;
        width: 75%;
        height: fit-content;
        flex-direction: column;

    }

    .notification-box h1 {
        font-size: 1.3rem;
        margin: 1rem auto 2rem;
    }

    .notification-text p {
        font-size: .8rem;
        margin: 0 auto 1rem;
    }

    .notification-text {
        width: 75%;
    }

    .notification-button {
        padding: 15px 40px;
    }
/*
    .partners {
        justify-content: center;
    }

 */
}

footer ul {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
}

footer ul li.separator {
    margin: 0 15px;
}

footer ul a {
    color: var(--bg-color);
    text-decoration: none;
}

footer .footer-link {
    font-size: 0.85rem;
}

footer .footer-link a {
    text-decoration: none;
    color: var(--welcome-text-color);
}


.storytile-sites-agenda-small .storytile-sites-agenda-day {
    color: var(--bg-color);
}

.storytile-sites-agenda-small .storytile-sites-agenda-stagename {
    color: var(--bg-color);
}

.storytile-sites-public-chat-login-required-text {
    margin: 15px;
}

.storytile-sites-agenda-tooltip {
    position: fixed;
    display: none;
    left: 799px;
    top: 142px;
    box-sizing: border-box;
    transform: translate(calc(-25% - 0.5rem)) translateY(1.5rem);
    padding: 1rem;
    font-size: .85rem;
    background-color: #fff;
}

.storytile-sites-agenda-tooltip::before {
    position: absolute;
    display: block;
    content: "";
    background-color: inherit;
    width: 1.4rem;
    height: 1.4rem;
    transform: rotate(45deg);
    left: 25%;
    top: -0.7rem;
}

.storytile-sites-agenda-tooltip-title {
    position: relative;
    font-weight: bold;
}

.storytile-sites-agenda-tooltip-time {
    position: relative;
    font-weight: lighter;
    font-style: italic;
    margin: 0.5rem 0;
}

.storytile-sites-agenda-tooltip-body {
    position: relative;
}


.partners {
    /*padding-top: 200px;
    display: flex;
    justify-content: start;
    margin: auto;
    flex-wrap: wrap;*/

    display: flex;
    margin: 150px 5rem 5rem 5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    min-width: 200px;
}

.partners div {
    /*display: flex;
    object-fit: none;
    flex-basis: 25%;
    justify-content: center;
    align-items: center;*/
}

.partners img {
    /*max-width: 100%;*/
    cursor: pointer;
    /*object-fit: none;*/
    max-height: 124px;
    width: auto;
    max-width: 100%;
}

@media screen and (max-width: 769px) {
    /*.partners {
        justify-content: center;
        padding-top: 100px;
    }

    .partners div {
        flex-basis: 100%;
        justify-content: center;
        margin: 20px 0;
    }*/

    .partners {
        margin-top: 100px;
    }

    .partners img {

        gap: 2rem;
    }
}

@media screen and (max-width: 1200px) {
    /*.partners {
        justify-content: center;
    }*/
}



  
