
.display-cover {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
}

.display-cover .video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border: 1px #000 solid;
}

.display-cover video {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    object-fit: cover;
}

.display-cover .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/posture-grid.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    z-index: 2;
    opacity: .5;
}

.display-cover .screenshot-image {
    position: relative;
    bottom: 5px;
    width: 150px;
    height: auto;
    border-radius: 4px;
    border: 2px solid whitesmoke;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    left: 10px;
    background: white;
}

.display-cover .video-action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 10px 0;
}

.display-cover .controls {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.display-cover .controls button {
    padding: 1rem 1rem;
    font-size: 1rem;
    line-height: 1;
    border-radius: 50%;
}

.assessment-image {
    width: 70%;
    height: auto;
}

@media (max-width: 768px) {
    .display-cover .video-action {
        flex-flow: column;
    }

    .display-cover .controls {
        gap: 5px;
        padding: 10px 0;
    }

    .display-cover .controls button {
        padding: .75rem .75rem;
        font-size: .75rem;
    }

    .assessment-image {
        width: 100%;
        height: auto;
    }

    .fxt-template-layout3 .fxt-btn-fill {
        padding: 6px 12px;
    }
}