* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Raleway', sans-serif;
    background: #f7f8fb;
}

a {
    text-decoration: none;
    color: #1E3058;
}

.text-bold {
    font-weight: bold;
}

.small-text {
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.page-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#loader {
    background: url('../img/df_background.jpg');
    background-size: cover;
    background-position: center center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

#mainView {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.main-header {
    background: #173042;
    min-height: 50px;
    z-index: 5;
    border-bottom: 4px solid #236477;
    position: fixed;
    width: 100%;
}

#userNavButtons {
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding: 10px;
}

#userNavButtons .btn {
    box-sizing: border-box;
    margin-left: 10px;
    font-size: 14px;
}

.fullscreen-video, .fullscreen-modal, .fullscreen-popup {
    position: fixed;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fullscreen-popup .fullscreen-popup-buttons .btn:not(:last-child) {
    margin-right: 5px;
}

.fullscreen-video-inner {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    z-index: 200;
}

.fullscreen-video-close {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
}

.fullscreen-video-buttons {
    text-align: center;
}

.fullscreen-video-buttons .btn {
    margin: 10px;
}

.fullscreen-call {
    position: fixed;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fullscreen-call-inner, .fullscreen-modal-inner, .fullscreen-popup-inner {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    text-align: center;
    padding: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;


    background-color: #b8c6db;
    background-image: linear-gradient(315deg, #b8c6db 0%, #f5f7fa 74%);
    color: #000;
}

.fullscreen-popup-inner ul {
    list-style-position: inside;
}

.fullscreen-popup-content {
    padding: 25px;
}

.fullscreen-call-inner h1 {
    margin-bottom: 25px;
}

.fullscreen-popup-dismiss {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.phone-buttons .btn {
    margin: 50px 25px 0 25px;
    color: #FFF;
    text-align: center;
    font-size: 30px;
    line-height: 80px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.2s;
}

@keyframes spin {
    50% {
        transform: rotateZ(20deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

.phone-buttons .btn:hover {
    animation: spin 2s linear infinite;
}

.phone-caller {
    margin-bottom: 50px;
}

.phone-caller img {
    border-radius: 150px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.btn-phone-reject {
    background: #eb4d3d;
    width: 90px;
    height: 90px;
    border-radius: 75px;
}

.btn-phone-reject:hover {
    border: 2.5px dashed #aa1111;
}

.btn-phone-accept, .btn-phone-acceptf {
    background: #76d672;
    width: 90px;
    height: 90px;
    border-radius: 75px;
}

.btn-phone-acceptf {
    width: auto;
    height: auto;
    padding: 0 40px;
}

.btn-phone-acceptf:hover {
    animation: none !important;
}

.btn-phone-accept:hover, .btn-phone-acceptf:hover {
    border: 2.5px dashed #4BB543;
}

.fullscreen-modal-inner .form-group {
    margin-bottom: 15px;
}

.fullscreen-modal-close {
    background: rgba(0, 0, 0, 0.8);
    width: 50px;
    height: 50px;
    font-size: 32px;
    text-align: center;
    position: absolute;
    top: -25px;
    right: -25px;
    cursor: pointer;
    border-radius: 5px;
    color: #aa0000;
}

.fullscreen-tutorial {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    z-index: 105;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tutorial-inner {
    position: absolute;
    z-index: 25;
    bottom: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100vh - 2rem);
    max-width: 400px;
    max-height: 665px;
    background: #fff;
    border-radius: 0 50px 0 0;
}

.tutorial-pages {
    width: 100%;
    border-radius: 0 50px 0 0;
    overflow: hidden;
}

.tutorial-page {
    width: 100%;
}

.tutorial-text {
    padding: 20px;
    margin-top: 35px;
    text-align: center;
    height: 365px;
    margin-bottom: 20px;
}

.tutorial-text h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tutorial-screenshot {
    height: 180px;
    background: #eee;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tutorial-pages .flickity-page-dots {
    position: absolute;
    top: 200px;
    z-index: -1;
}

.tutorial-close {
    position: absolute;
    z-index: 35;
    right: -10px;
    top: -10px;
    background: #E94C3E;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    text-align: center;
}

.tutorial-close a.close-button {
    color: #fff;
    margin-right: 0;
    float: none;

    font-size: 29px;
}

.tutorial-close a.close-button i {
    padding-top: 8px;
}

.tutorial-nav {
    text-align: center;
}

.tutorial-nav .prev-button {
    border-radius: 25px 0 0 25px;
    box-sizing: border-box;
    width: calc(50% - 20px);
    margin-left: 20px;
    float: left;
}

.tutorial-nav .next-button, .close-button {
    text-align: center;
    border-radius: 0 25px 25px 0;
    box-sizing: border-box;
    width: calc(50% - 20px);
    margin-right: 20px;
    display: inline;
    float: left;
}


.tutorial-nav .small-text {
    margin-top: 5px;
}

.tutorial-nav .btn-call-request-sm {
    margin: 10px;
    font-size: 14px;
    padding: 5px 15px;
}

.rooms-container {
    position: absolute;
    height: calc(100% - 80px);
    /*background-color: #356478;*/
    background-image: url(/assets/ovs/water-bg.png);
    width: 100%;
    top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rooms-content {
    position: absolute;
    padding: 0 50px 50px 50px;
    z-index: 50;
    width: 100%;
    height: calc(100% - 80px);
    top: 80px;
    pointer-events: none;
}

.rooms-logo.top-right {
    position: absolute;
    top: 0;
    right: 50px;
    margin-bottom: 0 !important;
}

.rooms-logo.bottom-left {
    position: absolute;
    bottom: 50px;
    left: 50px;
    margin-bottom: 0 !important;
}

.rooms-logo.bottom-right {
    position: absolute;
    bottom: 50px;
    right: 50px;
    margin-bottom: 0 !important;
}

.rooms-content .rooms-logo {
    margin-bottom: 40px;
}

.rooms-content .rooms-text {
    max-width: 375px;
}

.rooms-content .rooms-text h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.rooms-nav {
    text-align: right;
    padding: 0.5rem 1.5rem;
    width: 100%;
    z-index: 101;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 80px;
}

.rooms-nav .rooms-brand {
    margin-right: auto;
}

.rooms-brand-multiple {
    margin-right: 0 !important;

}

.rooms-nav .rooms-country {
    flex-grow: 1;
    margin-left: 7rem;
    overflow: hidden;
}

.rooms-brand img {
    height: 4rem;
}

.rooms-brand-country img{
    height: 6rem;
    position: absolute;
    top: 10px;
}

.rooms-nav .btn {
    margin-left: 15px;
}

.rooms-container .background {
    position: absolute;
    z-index: 10;
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rooms-container .background img {
    max-width: 100%;
    margin: 0px auto;
    max-height: 100%;
}

.rooms-container .room-selectables {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100%
}

.rooms-container .room-selectables .selectables-inner {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

#rooms-nav-menu {
    display: flex;
    align-items: center;
    position: relative;
}

#account-nav {
    display: flex;
    flex-wrap: nowrap;
}

#rooms-nav-items {
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    #rooms-nav-collapse:not(.show) {
        display: block;
    }
}

#rooms-nav-items a {
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    #menu-toggle .fa-solid:before {
        content: "\f00d";
    }

    #menu-toggle.collapsed .fa-solid:before {
        content: "\f0c9";
    }

    #rooms-nav-menu {
        display: block;
    }

    #rooms-nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        box-shadow: 0 0.25rem 0.25rem 0 rgba(0,0,0,0.2);
    }

    #rooms-nav-collapse {
        background: #fff;
    }

    #rooms-nav-items {
        display: grid;
        gap: 0.5rem;
        justify-items: initial;
    }

    #rooms-nav-items a {
        width: 100%;
        margin: 0;
    }

    #account-nav {
        display: grid;
        gap: 0.5rem;
    }

    .rooms-container .room-selectables {
        height: 100% !important;
        padding-top: 3rem;
        padding-bottom: 6rem;
    }

    .rooms-container .room-selectables .selectables-inner {
        width: 100% !important;
        overflow: auto;
        padding: 0.5rem;
    }

    .room-selectables .btn-select {
        left: initial !important;
        bottom: initial !important;
        display: block !important;
        transform: none !important;
        position: relative !important;
        margin-bottom: 0.75rem;
        border: 2px solid rgba(0, 0, 0, 0.0) !important;
        background: rgba(255, 255, 255, 0.7) !important;
        color: #333 !important;
        font-size: 1rem !important;
    }

    .room-selectables .btn-select:hover {
        background: #1E3058 !important;
        color: #fff !important;
        border: 2px solid rgba(255, 255, 255, 0.7) !important;
    }

    .room-selectables .btn-select:last-of-type {
        margin-bottom: 0;
    }

    .room-selectables .btn-select:before {
        display: none;
    }

    .room-selectables .btn-select:after {
        display: none;
    }

    .rooms-brand-country img {
        height: 4rem;
        position: initial;
    }

    .rooms-nav .rooms-country {
        margin-left: initial;
    }

    .country-title-flag img {
        max-height: 1.25rem !important;
    }

    .country-container {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "filler"
            "nav"
            "filters"
            "main" !important;
    }

    .country-container.documents, .country-container.videos {
        grid-template-areas:
            "filler"
            "nav"
            "buttons"
            "filters"
            "main" !important;
    }

    .country-nav ul {
        flex-wrap: wrap;
    }

    .country-filters-container {
        width: 100% !important;
    }

    .country-filters {
        margin: 0.5rem 1rem 0 1rem !important;
    }

    .chat-wrapper {
        max-width: 100%;
        margin: 1rem 0;
        padding: 1rem !important;
    }

    .room-wrapper {
        flex-direction: column;
    }

    .chat-wrapper {
        width: calc(100% - 2rem) !important;
        margin: 1rem;
    }
}

@media (max-width: 575.98px) {
    .country-user-cards {
        grid-template-columns: 1fr !important;
    }
}

.rooms-container .room-selectables .btn {
    position: absolute;
}

.rooms-container .room-selectables .btn::before {
    content: ' ';
    width: 2px;
    height: 100px;
    position: absolute;
    background: #1E3058;
    top: calc(100% + 4px);
    left: 50%;
    z-index: 4;
}

.rooms-container .room-selectables .btn::after {
    content: ' ';
    width: 10px;
    height: 10px;
    border-radius: 10px;
    position: absolute;
    background: #1E3058;
    bottom: -111px;
    left: calc(50% - 4px);
    z-index: 6;
}

.room-selectables .btn-select {
    z-index: 5;
    background: #1E3058;
    background-clip: padding-box;
    color: #FFF;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    white-space: nowrap;
    transition: border 0.5s, background-color 0.5s;
    padding: 6px 20px;
    font-weight: bold;
    font-size: 0.8rem;

    transform: translate(-50%, calc(-100% - 58px)); /** To ensure our positions are centered vertical/horizontal) **/
}

.room-selectables .btn-select:hover {
    border: 2px solid #1E3058;
    background: rgba(255, 255, 255, 0.6);
    color: #1E3058;
    z-index: 6;
}

.room-selectables .btn-select.visited {
    background: #E94C3E;
}

.room-selectables .btn-select.visited:hover {
    border: 4px solid #E94C3E;
    background: rgba(255, 255, 255, 0.6);
    color: #E94C3E;
}

.rooms-container .room-selectables .btn.visited::after {
    background: #4a6c2f;
}

.rooms-container .room-selectables .btn.visited::before {
    background: #4a6c2f;
}

.selectables-inner.selectables-7 .btn-select-1 {
    left: 58.5%;
    bottom: 55%;
    z-index: 100;
    transform: translate(-50%, calc(-100% - 10px));
}

.selectables-inner.selectables-7.ov-graafschap .btn-select-1 {
    left: 38%;
    bottom: 54%;
}

.selectables-inner.selectables-7 .btn-select-1::before {
    height: 50px;
}

.selectables-inner.selectables-7 .btn-select-1::after {
    bottom: -61px;
}

.selectables-inner.selectables-7 .btn-select-2 {
    left: 51%;
    bottom: 49%;
    z-index: 95;
    transform: translate(-50%, calc(-100% - 0px));
}

.selectables-inner.selectables-7.ov-graafschap .btn-select-2 {
    left: 46%;
    bottom: 74%;
}

.selectables-inner.selectables-7 .btn-select-2::before {
    height: 40px;
}

.selectables-inner.selectables-7 .btn-select-2::after {
    bottom: -51px;
}

.selectables-inner.selectables-7 .btn-select-3 {
    left: 45%;
    bottom: 62%;
    z-index: 90;
    transform: translate(-50%, calc(-100% - 30px));
}

.selectables-inner.selectables-7.ov-graafschap .btn-select-3 {
    left: 56.5%;
    bottom: 85.5%;
}

.selectables-inner.selectables-7 .btn-select-3::before {
    height: 70px;
}

.selectables-inner.selectables-7 .btn-select-3::after {
    bottom: -81px;
}

.selectables-inner.selectables-7 .btn-select-4 {
    left: 52%;
    bottom: 68.5%;
    z-index: 85;
    transform: translate(-50%, calc(-100% - 50px));
}

.selectables-inner.selectables-7.ov-graafschap .btn-select-4 {
    left: 61%;
    bottom: 69.5%;

}

.selectables-inner.selectables-7 .btn-select-4::before {
    height: 90px;
}

.selectables-inner.selectables-7 .btn-select-4::after {
    bottom: -101px;
}

.selectables-inner.selectables-7 .btn-select-5 {
    left: 58%;
    bottom: 75.5%;
    z-index: 80;
}

.selectables-inner.selectables-7.ov-graafschap .btn-select-5 {
    left: 77%;
    bottom: 62%;
}

.selectables-inner.selectables-7 .btn-select-6 {
    left: 66%;
    bottom: 83%;
    z-index: 70;
}

.selectables-inner.selectables-7.ov-graafschap .btn-select-6 {
    left: 63%;
    bottom: 74%;
}

.selectables-inner.selectables-7 .btn-select-7 {
    left: 73%;
    bottom: 74%;
    z-index: 75;
}

.selectables-inner.selectables-7.ov-graafschap .btn-select-7 {
    left: 90%;
    bottom: 52%
}

.selectables-inner.selectables-7 .btn-select-8 {
    left: 80%;
    bottom: 64%;
    z-index: 80;
    transform: translate(-50%, calc(-100% - 10px));
}

.selectables-inner.selectables-7.ov-graafschap .btn-select-8 {
    left: 64%;
    bottom: 53%;
}

.selectables-inner.selectables-7 .btn-select-8::before {
    height: 50px;
}

.selectables-inner.selectables-7 .btn-select-8::after {
    bottom: -61px;
}

.selectables-inner.selectables-7 .btn-select-9 {
    left: 73%;
    bottom: 54%;
    z-index: 60;
    transform: translate(-50%, calc(-100% - 0px));
}

.selectables-inner.selectables-7.ov-graafschap .btn-select-9 {
    left: 56%;
    bottom: 41%
}

.selectables-inner.selectables-7 .btn-select-9::before {
    height: 40px;
}

.selectables-inner.selectables-7 .btn-select-9::after {
    bottom: -51px;
}

.selectables-inner.selectables-7 .btn-select-10 {
    left: 66%;
    bottom: 66%;
    z-index: 90;
    transform: translate(-50%, calc(-100% - 40px));
}

.selectables-inner.selectables-7.ov-graafschap .btn-select-10 {
    left: 45.5%;
    bottom: 20%;
}

.selectables-inner.selectables-7 .btn-select-10::before {
    height: 80px;
}

.selectables-inner.selectables-7 .btn-select-10::after {
    bottom: -91px;
}

.room-wrapper, .lobby-wrapper, .aula-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
}

.lobby-wrapper .lobby-row {
    width: 100%;
}

#mainView, .content-wrapper {
    background: url('../img/df_background.jpg');
    background-size: cover;
    background-position: center center;
    flex-grow: 1;
}

.aula-wrapper .content-wrapper {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.aula-wrapper .content-wrapper .pane-left {
    flex-grow: 1;
}

.room-wrapper .content-wrapper {
    position: relative;
}

.room-title {
    padding: 20px;
    display: flex;
}

.room-title .room-nav {
    text-align: right;
    flex-grow: 1;
}

.room-title h1 {
    font-weight: bold;
    font-size: 2rem;
}

.room-title h2 {
    font-weight: bold;
    font-size: 1.5rem;
}

.room-logo {
    padding: 0 20px;
    text-align: left;
}

.finish-logo {
    text-align: center;
}

.finish-logo img {
    margin-bottom: 20px;
}

.button-spacing-v .btn {
    margin-bottom: 10px;
}

.room-content, .room-content-blank {
    background: #FFF;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.room-content-blank {
    background: none;
    box-shadow: none;
}

.game-scores {
    display: flex;
}

#gameHighScore {
    text-align: center;
}

#gameHighScore h2 {
    font-weight: bold;
    color: #173042;
    font-size: 1.7rem;
}

.lobby-panel #game {
    margin-left: auto;
    margin-right: auto;
}

.game-scores .next-block-text {
    flex-grow: 1;
}

.game-scores .next-block {
    width: 100px;
}

.game-scores p {
    margin-right: 20px;
    margin-bottom: 0;
    line-height: 60px;
}

.chat-wrapper {
    background: #f7f8fb;
    width: 450px;
    flex-shrink: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 5;
    min-height: 70vh;
}

.infoTicker {
    text-align: center;
    overflow: hidden;
}

.infoTicker div {
    width: 100%;
    font-size: 26px;
}

.tab-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tab-pane {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tab-content > .active {
    display: flex;
}

.event-logo-large {
    max-width: 300px;
    max-height: 300px;
}

.event-logo-medium {
    max-width: 200px;
    max-height: 200px;
}

/**
Video Player
 */
.video-controls {
    width: 100%;
    height: 40px;
    background: #f3f3f3;
    padding: 5px 20px;
}

.video-controls .playControl span {
    cursor: pointer;
}

.video-controls .audio-control, .video-controls .positionControlItem {
    display: flex;
}

.video-controls .audio-control i, .video-controls .positionControlItem i {
    padding: 5px 10px;
}

.video-controls .audio-control div, .video-controls .positionControlItem div {
    flex-grow: 1;
}

.video-controls .positionControlItem div input:not(disabled) {
    cursor: pointer;
}

.video-finish-inner {
    text-align: center;
    padding: 100px 50px;
    font-size: 1.2rem;
}

#videoStartOverlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    text-align: center;
    height: 100%;
}

#videoStartOverlay .start-overlay-inner {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

#videoStartOverlay .btn {
    padding: 20px 50px;
}

#videoStartOverlay i {
    padding-right: 10px;
}

/**
Lobby
 */
#lobbyNav.nav-tabs .nav-link {
    border-radius: 25px;
    margin-right: 10px;
    border: 2px solid #173042;
    background: none;
    color: #173042;
}

#lobbyNav.nav-tabs .nav-link.active {
    border: none;
    background: #173042;
    color: #FFF;
}

#lobbyNav.nav-tabs .nav-item {
    margin: auto;
}

#lobbyNav.nav-tabs {
    border: none;
    align-content: center;
}

#lobbyNav {
    margin-top: 50px;
}

#aula-online-users {
    padding: 0 20px;
    max-height: calc(100vh - 188px);
    overflow: auto;
}

.lobby-plate, .aula-plate {
    background-image: url('/assets/img/bgs.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: rgba(99, 99, 99, 1) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    padding: 50px;
}

.lobby-plate {

}

.lobby-plate::before, .aula-plate::before {
    content: ' ';
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    top: 0;
    left: 0;
    z-index: 0;
}

.aula-plate-middle {
    z-index: 5;
    padding: 50px;
}

.lobby-counter {
    font-weight: bold;
    font-size: 1.5rem;
}

.lobby-panel {
    padding: 40px;
}

.lobby-right, .lobby-middle {
    z-index: 5;
}

.lobby-right .start-time {
    margin: 15px auto;
    display: block;
}

.lobby-left-top {
    flex-grow: 1;
    z-index: 5;
}

.lobby-left-bottom {
    z-index: 5;
}

.lobby-left-bottom .event-logo-large {

}

.btn-sep .btn {
    margin: 5px 5px;
}

.finish-ratings {
    display: flex;
    justify-content: center;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.finish-ratings select {
    display: none;
}

.finish-ratings ul {
    margin: auto;
}

.finish-feedback .btn-primary {

}

.finish-feedback {
    margin-bottom: 50px;
}

.content-wrapper .embedVideo, .aftrap-video-popup .embedVideo {
    pointer-events: none;
}

.content-wrapper .embedVideo.clickable {
    pointer-events: auto;
}

#systemMessage {
    width: 100%;
    background: #173042;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#systemMessage .inner {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-adviser {
    color: #b00;
}

.tussenruimte-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tussenruimte-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: #fff;
    padding: .5rem 0;
}

#systemMessage:not(:empty) + #mainView .tussenruimte-header {
    top: 50px;
}

#systemMessageCountdown {
    display: inline;
    margin: 0 0.25rem;
}

.hero-area {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-form-container {
    position: fixed;
    z-index: 103;
    inset: 0;
    background: rgba(0, 0, 0, 0.33);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.popup-form-container.show {
    display: flex;
}

.popup-form {
    position: relative;
}

.popup-form.wide {
    width: 36rem;
}

.popup-form > a.close-form, .popup-form > a.remove-form {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    padding: 0.5rem;
    aspect-ratio: 1;
    border-radius: 3rem;
    background: #EC653F;
    color: white;
    transform: translate(35%, -35%);
    transition: background 300ms;
}

.popup-form > a.close-form:hover, .popup-form > a.remove-form:hover {
    cursor: pointer;
    background: #EC653F;
}

#register-form {
    width: 40rem;
    max-width: 100%;
}

.register-form-step {
    max-height: 70vh;
    overflow: auto;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.badge-search .badge {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.multi-step-progressbar {
    overflow: hidden;
    padding: 0;
    display: grid;
    counter-reset: step;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    text-align: center;
}

.multi-step-progressbar li {
    position: relative;
    list-style-type: none;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.multi-step-progressbar li:before {
    content: counter(step);
    counter-increment: step;
    position: relative;
    z-index: 1;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.8);
    background: #f7f7f7;
    border-radius: 3px;
    margin: 0 auto 5px auto;
    box-shadow: inset 0 0 0.25rem 0 rgba(0, 0, 0, 0.1);
}

.multi-step-progressbar li:after {
    content: '';
    width: 100%;
    height: 0.25rem;
    background: #e1e1e1;
    position: absolute;
    left: -50%;
    top: 0.625rem;
    z-index: 0;
}

.multi-step-progressbar li:first-child:after {
    content: none;
}

.multi-step-progressbar li.active:before, .multi-step-progressbar li.active:after {
    background: #EC653F;
    color: #fff;
}

.error-message:empty {
    display: none;
}

.country-title-flag img {
    max-height: 2rem;
    margin-left: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 15px;
}

.country-container {
    display: grid;
    grid-template-areas:
			"filler nav"
			"filters main";
    grid-template-columns: 24rem 1fr;
}

.country-container.documents, .country-container.videos {
    grid-template-rows: auto auto 1fr;
    grid-template-areas:
			"filler nav"
			"filters buttons"
			"filters main";
}

.country-nav {
    grid-area: nav;
    background: #fff;
}

.country-nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0 0 0 0.5rem;
}

.country-nav a {
    margin: 0 0.5rem;
    padding: 0.5rem 0.5rem 0.25rem 0.5rem;
    display: block;
    color: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid transparent;
    transition: border-color 300ms;
}

.country-nav a.active, .country-nav a:hover {
    border-bottom: 2px solid #EC653F;
}

.country-filler {
    background: #fff;
}

.country-filters-container {
    grid-area: filters;
    width: 24rem;
}

.country-filters-data {
    grid-area: filters;
}

.country-filters {
    background: #fff;
    margin: 0.5rem 0 0 1rem;
}

.country-filters .filter-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.country-filters .filter-section:last-child {
    border-bottom: none;
}

.country-buttons {
    grid-area: buttons;
}

.country-content {
    grid-area: main;
    padding: 1rem;
}

.country-user-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-gap: 0.75rem;
}

.country-content-pagination {
    grid-column: 1 / -1;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr min-content 1fr;
}

@media (max-width: 575.98px) {
    .country-content-pagination {
        grid-column: 1 / -1;
        display: grid;
        align-items: center;
        grid-template-columns: 1fr !important;
    }
}

.pagination .page-item .page-link {
    color: #1e3058;
}

.pagination .page-item.active .page-link {
    background-color: #ec653f;
    border-color: #ec653f;
    color: #fff;
}

.pagination .page-link:focus {
    box-shadow: none !important;
}

.pagination .page-item.disabled .text-muted {
    color: #959da4 !important;
}

@media (max-width: 1199.98px) {
    .country-user-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .country-user-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .contact-description-info {
        max-width: 13rem;
    }
}

.country-user-description-cards {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 0.75rem;
}

.user-card {
    background: #fff;
    padding: 1rem;
}

.user-card .user-avatar {
    margin-right: 1rem;
}

.user-card .user-avatar img {
    width: 4rem;
}

.user-card .user-video-thumb {
    margin-right: 1rem;
}

.user-card .user-video-thumb {
    width: 6rem;
}

.user-card .user-details {
    display: flex;
    flex-direction: column;
}

.user-card .user-details a {
    color: #1E3058;
    border-bottom: 1px solid transparent;
    transition: border-color 300ms;
}

.user-card .user-details a:hover {
    color: #EC653F;
}

.btn-rounded-normal {
    border-radius: .25rem;
}

.user-country-flag {
    max-width: 4rem;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
}

.profile-avatar {
    width: 10rem;
    height: 10rem;
}

.image-upload-field {

}

label.image-upload {
    border: 2px solid #666;
    position: relative;
    width: 164px;
    height: 164px;
    display: flex;
    justify-content: center;
    align-items: center;
}

label.image-upload::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\f030";
    background-color: #666;
    color: #fff;
    padding: 0.25rem 0.3rem;
    border-radius: 0.25rem 0 0 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

label.image-upload:hover {
    cursor: pointer;
}

label.rounded-circle::before {
    border-radius: 50%;
    padding: 0.4375rem;
    bottom: 5%;
    right: 5%;
}

label.image-upload::after {
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\f574";
    color: #fff;
    position: absolute;
    inset: 0;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 300ms;
}

label.image-upload:hover::after {
    opacity: 1;
}

label.image-upload.rounded-circle::after {
    border-radius: 50%;
}

#status-messages {
    position: fixed;
    top: 8rem;
    z-index: 1000;
    left: 50%;
    transform: translate(-50%);
}

.bootbox-close-button {
    display: none;
}

.inbox-select.active {
    box-shadow: inset 0 11px 8px -10px #CCC, inset 0 -11px 8px -10px #CCC;
    background-color: rgb(0, 0, 0, 0.03);
}

.inbox-select, .inbox-select:hover {
    color: #000;
}

.inbox-select:hover {
    background-color: rgb(0, 0, 0, 0.1);
}

.inbox-select .user-avatar img {
    max-width: 5rem;
}

.inbox-chat .chat-wrapper {
    width: 100%;
    min-height: 70vh;
    max-height: calc(100vh - 170px);
}

.inbox-chat .chat-container {
    max-height: calc( 90vh - 160px); /* Viewport height - space above chat window */
}

.badge.anonymize {
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
}

h4.anonymize, h5.anonymize {
    white-space: nowrap;
    overflow: hidden;
    background: #1E30586E;
    display: inline;
}

p.anonymize span {
    background-color: #1E305842;
    word-break: break-all;
}

.profile-quick-list {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 1rem;
}

#nav-unread-count {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1;
    background: #1e3058;
    color: #fff !important;
    border-radius: 50%;
    font-size: 0.75rem;
    transform: translate(40%, -40%);
}

#nav-unread-count:empty {
    display: none;
}

.inbox-unread-count {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1;
    background: #EC653F;
    color: #fff !important;
    border-radius: 50%;
    font-size: 0.75rem;
    transform: translate(50%, 50%);
}

.alert-offline {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-df1 {
    color: #fff;
    background-color: #EC653F;
    border-color: #E94C3E;
}

.wrap {
    white-space: normal;
}

.no-content {
    color: #383d41;
    background-color: #FFF;
    border-color: #d6d8db;
    padding: 10px;
}

.user-report {
    text-align: center;
}

.user-report a {
    color: #bbbbbb;
}

.call-badge {
    border: 1px solid #eee;
}

.call-platform-select, .modal-type-option {
    cursor: pointer;
}

.bg-tag{
    background:#1E3058;
}

.upload-icon {
    width: 4rem;
    height: 4rem;
    padding: 0.25rem;
    font-size: 3rem;
    margin-right: 1rem;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload-icon .fa-file-pdf {
    color: #ff5722;
}

.upload-icon .fa-file-powerpoint {
    color: #ff6d00;
}

.upload-icon .fa-file-word {
    color: #1976d2;
}

.upload-icon .fa-file-excel {
    color: #388e3c;
}

.upload-icon .fa-file-image {
    color: #3f51b5;
}

.upload-icon .fa-file-csv {
    color: #27b0c1;
}

.upload-icon .fa-file {
    color: #90caf9;
}

.mini-avatar {
    display: inline;
    height: 1em;
    width: 1em;
    border-radius: 50%;
}

.submit-button .spinner-border {
    display: none;
}

.submit-button.loading .spinner-border {
    display: inline-block;
}

.video-container {
    aspect-ratio: 16/9;
}

.form-required {
    font-size: 1.3rem;
}

.request-country-btn {
    z-index: 100;
    margin-top: 0.25rem;
    margin-left: 0.25rem;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #FFF;
}

.footer-links {
    position: absolute;
    z-index: 100;
    bottom: 1rem;
    left: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.saxion-logo {
	margin-right: auto;
}

.saxion-logo img {
    max-height: 3rem;
    margin-left:25px;
}

.delft-logo {
	/*margin-right: auto;*/
}

.delft-logo img {
	max-height: 3rem;
	margin-left:25px;
}

.social-links {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.social-links a {
    color: #fff;
    transition: color 300ms;
}

.social-links a:hover {
    color: #e6e6e6;
}

.status-icon {
    position: absolute;
    bottom: 7%;
    right: 10%;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: block;
    box-shadow: inset 0 0 0.5rem 0 rgba(0,0,0,0.4);
}

.status-icon.status-online {
    background-color: #2bf42b;
}

.status-icon.status-offline {
    background-color: lightgrey;
}

.status-icon.status-sm {
    bottom: 7%;
    right: 18%;
    width: 1rem;
    height: 1rem;
}

.phone-buttons .btn.btn-primary.close-call-window {
    font-size: 1rem;
    margin: 1rem;
    line-height: 1.5;
    animation: none;
}