﻿
/* Common ------------------------------------------------------------------------- */

@font-face {
    font-family: "Foundry Sterling W01";
    src: url(/fonts/835a52cb-78e2-498c-bcc1-78b89c38fe9a.eot?#iefix);
    src: url(/fonts/835a52cb-78e2-498c-bcc1-78b89c38fe9a.eot?#iefix) format("eot"),url(/fonts/63f537a7-b187-45bf-a51d-d8b5404db4f5.woff2) format("woff2"),url(/fonts/a48c29e8-8de1-4e90-82a1-5e025a284ae5.woff) format("woff"),url(/fonts/cde1f0bd-b628-489b-a95d-2048acf1460a.ttf) format("truetype"),url(/fonts/c5b9070a-700b-425a-84a5-9fd846ba5455.svg#c5b9070a-700b-425a-84a5-9fd846ba5455) format("svg");
    font-weight: 300;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    /*font-family: "Foundry Sterling W01",arial,sans-serif;*/
    color: black;
    height: 100%;
}

#title-bar {
    text-align: center;
    font-size: 64px;
    padding: 0;
}

#text-bar {
    font-size: 32px;
    width: 80%;
    margin: 0 auto;
}

/* index.html ------------------------------------------------------------------------- */

#logo {
    height: 64px;
    margin: 24px;
}

#svk-logo {
    width: 200px;
    margin: 24px;
}

#footer-bar {
    height: 64px;
    background-color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    overflow: hidden;
}

#header-logo {
    text-align: center;
}

#interaction-div {
    width: 100vw;
    height: calc(100vh - 64px - 64px);
    overflow: hidden;
}

#interaction-iframe {
    width: 100vw;
    height: calc(100vh - 64px - 64px);
    overflow: hidden;
}

#live-meeting-iframe {
    width: 100vw;
    height: 100%;
    overflow: hidden;
}

.current-user {
    font-size: 20px;
    color: black;
    margin-left: 12px;
}


/* menu.html ------------------------------------------------------------------------- */

#menu-body {
    /*background-image: url(../image/ukk-fasad.jpg);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 120%;*/
    height: 100%;
    overflow: hidden;
}

#bg-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: none;
}

.bg-image {
    background-image: url(../image/background.png);
    background-repeat: no-repeat;
    background-position: 50% 0;
    /*background-size: 120%;*/
    /*-webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);*/
}

#bg-image-panel {
    background-image: url(../image/background.png);
    background-repeat: no-repeat;
    background-position: 50% 0;
    /*background-size: 120%;*/
    /*-webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

#bg-color-panel {
    /*background-color: rgba(255, 255, 255, 0.5);*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#menu-div {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    width: 100vw;
    max-width: 800px;
    height: calc(100vh - 64px - 64px);
    margin: 0 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.menu-item {
    width: 230px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.menu-text {
    font-size: 18px;
    /*font-weight: bold;*/
    text-align: center;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    /*border-radius: 10px;*/
    /*padding: 10px;*/
}

.menu-description {
    font-size: 12px;
    /*font-weight: bold;*/
    text-align: center;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    /*border-radius: 10px;*/
    /*padding: 10px;*/
}

.menu-icon {
    text-align: center;
}

.line-break {
    width: 100%;
}

.notification {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #bf0000;
    color: white;
    display: flex;
    align-items: center;
    -ms-align-content: center;
    -webkit-align-content: center;
    align-content: center;
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 24px;
    font-weight: bold;
    justify-content: center;
}

/* live-meeting.html ------------------------------------------------------------------------- */

#live-control-container {
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-around;
}

.live-control-item {
    padding: 5px 40px;
}

#current-topic, #current-speaker {
    font-size: 24px;
    font-weight: bold;
}

/* calendar.html, info.html ------------------------------------------------------------------------- */

#wrapper {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

    #wrapper > img {
        width: 100%;
    }
