﻿/* ACCORDIONS FOR VIDEO GUIDES */

.vg-accordion {
    margin: auto;
    padding: 9rem 0rem 9rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60vw;
    align-items: stretch;
}

.vg-container {
    padding: 10px;
    margin: auto;
    text-align: center;
    height: 50rem;
}

.vg-video {
    width: 100% !important;
    height: 100% !important;
}

/* TABLET */
@media only screen and (max-width: 960px) {
    .vg-accordion {
        width: 95vw;
    }

    .vg-container {
        height: 40rem;
    }

    .vg-video {
        width: 100% !important;
        height: 90% !important;
    }
}



/* MOBILE */
@media only screen and (max-width: 550px) {
    .vg-accordion {
        width: 95vw;
    }

    .vg-container {
        height: 25rem;
    }

    .vg-video {
        width: 100% !important;
        height: 90% !important;
    }
}
