:root {
    --grey-lightest: #f7f9fa;
    --white: #ffffff;
    --grey: #c8d1dc;
    --dark-grey: #6b7785;
    --dark-blue: #1f2d3d;
    --dark-blue-border: #2b3f56;
    --green: #72cc18;
    --font-family: 'Poppins', sans-serif;
}

body {
    margin: 0px;
    background-color: var(--grey-lightest);
    height: 100%;
    font-family: var(--font-family);
}

.header {
    min-width: 100%;
    height: 52px;
    background-color: var(--white);
    position: fixed;
    z-index: 1000;
    top: 0;
    box-shadow: inset 0px -1px 0p var(--grey);
    border-bottom: 1px solid var(--grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-header {
    display: flex;
    align-items: center;
    width: 325px;
    margin-left: 16px;
}

.logo {
    width: 130px;
    margin-right: 24px;
}

.header-title {
    font-size: 1rem;
    line-height: 16px;
}

.right-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 24px;
    font-size: .9rem;
}

.center-header {
    font-size: .8rem;
    color: white;
    margin-top: -18px;
}

.page-title {
    margin: 0;
    text-align: center;
}

.link {
    text-decoration: none;
}

.container {
    width: 100%;
    height: calc(100% - 52px);
    top: 56px;
    background-color: var(--grey-lightest);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    line-height: 16px;
    z-index: 0;
}

.page-title {
    margin: 0;
}

.page-text {
    font-size: 1rem;
    line-height: 24px;
    padding: 20px;
    text-align: center;
}

.meeting-info {
    position: absolute;
    bottom: 6px;
    right: 64px;
    padding: 0px 3px 2px;
    font-size: .65rem;
    z-index: 90;
    color: white;
}

.meeting-info button {
    background: transparent;
    border: none;
    border-radius: 4px;
    color: inherit;
    margin: -4px 0px;
    padding: 4px 8px;
    cursor: pointer;
}

.meeting-info button:hover {
    background: rgb(31, 45, 61);
}

.meeting-info svg {
    display: block;
    padding-left: 6px;
    padding-bottom: 2px;
}

@media screen and (max-width: 700px) {
    .header-title {
        display: none;
    }

    .left-header {
        width: 65px;
    }
}
