.pusher {
    min-height: 100vh;
}

[ng-view],
.ui.wrapper.grid,
.ui.wrapper.segment {
    min-height: 100vh;
}

#SupportView {
    background: #eaeaea;
    margin: 0 !important;
}

#LoginView,
#DashboardView>.blur.image {
    background-image: url(layout/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
    background-attachment: fixed;
    margin: 0 !important;
}

#LoginView .column:not(.wide) {
    max-width: 450px !important;
}

.ui.shadow.segment {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

#LoginView .ui.circular.image {
    max-height: 200px;
    max-width: 200px;
}


#DashboardView>.blur.image {
    display: block;
    position: absolute;
    min-width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;

    filter: blur(4px);
    -webkit-filter: blur(4px);
}


#ContentPlayer {
    margin: 0;
    padding: 40px 0 0 0;
    background: #000;
}

#ContentPlayer video {
    max-width: 100%;
    width: 100%;
}

@media only screen and (min-width: 1024px) {
    #ContentPlayer {
        display: flex;
        flex-direction: row;
        height: 100vh;
        margin: 0;
        background: #000;
    }

    #ContentPlayer>div {
        height: 100%;
        overflow: auto;
    }

    #ContentPlayer>div:first-child {
        width: 70vw;
    }

    #ContentPlayer>div:last-child {
        width: 30vw;
        padding: 10px 10px 30px 10px;
    }
}


@media only screen and (min-width: 1024px) and (max-width:1439px) {
    #ContentPlayer {
        display: flex;
        flex-direction: row;
        height: 100vh;
        margin: 0;
        background: #000;
    }

    #ContentPlayer>div {
        height: 100%;
        overflow: auto;
    }

    #ContentPlayer>div:first-child {
        width: 60vw;
    }

    #ContentPlayer>div:last-child {
        width: 40vw;
        padding: 10px 10px 30px 10px;
    }
}

@media only screen and (max-width: 1023px) {
    #ContentPlayer {
        display: block;
        min-height: 100vh;
    }

    #ContentPlayer>div:first-child {
        position: fixed;
        top: 41px;
        left: 0;
        width: 100vw;
    }

    #ContentPlayer>div:first-child>.ui.segment {
        display: none !important;
    }

    #ContentPlayer>div:last-child {
        height: auto;
        width: 100vw;
        padding: 40vh 10px 30px 10px;
    }
}