body {

}

code {

}

.App-header {
    display: flex;
    justify-content: space-between;
    height: 70px;
    padding: 10px 0 20px;
    width: 100%;
}

.loader {
    width: 100%;
}

.spinner {
    margin: 0 auto;
    width: 56px;
    height: 56px;
    display: grid;
    border: 3px solid #F08C29;
    border-radius: 50%;
    animation: spinner-gf 1s infinite linear;
}

.spinner::before,
.spinner::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}

.spinner::before {
    border-color: #F08C29 #0000;
    animation: inherit;
    animation-duration: 0.5s;
    animation-direction: reverse;
}

.spinner::after {
    margin: 8px;
}

@keyframes spinner-gf {
    100% {
        transform: rotate(1turn);
    }
}

.App-sidebar {
    margin-right: 30px;
    width: 100%;
}

.App-main {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 60px;
    width: 100%;
}

.gfcom-three-card-grid__col {
    padding-left: 0;
    padding-right: 0;
}

.App-filter-btn {
    border: none;
    border-radius: 8px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    width: 100%;
    padding: 12px 10px;
    text-align: center;
}

.App-filters {
    display: none;
}

.App-sidebar--open {
    display: block;
}

.App-main .gfcom-post-grid__card {
    text-align: left;
}

.App-sidebar ul {
    text-align: left;
}

.App-sidebar ul:first-of-type {
    padding-top: 20px;
}

.App-sidebar ul:last-of-type {
    padding-bottom: 20px;
}

.App-sidebar ul li {
    display: block;
    text-align: left;
}

.App-sidebar ul li label {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: -2px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.checkbox-label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}

.video-library__search {
    width: 100%;
    margin-right: 10px;
}

.video-library__pagination {
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
    padding-top: 40px;
    width: 100%;
}

.video-library__pagination li {
    color: #aeb3bc;
    font-family: 'Gilroy', sans-serif;
    padding: 0;
    text-decoration: none;
    border-bottom: 1px solid #E9F6FE;
    transition: all 0.15s ease;
    margin: 0 .8em;
    font-size: 18px;
}

.video-library__pagination li a {
    padding-left: 10px;
    padding-right: 10px;
}

.video-library__pagination li.previous,
.video-library__pagination li.next {
    border-bottom: none;
}

.previous a,
.next a {
    background: url(0402a4848265e0d8feec.svg) center center no-repeat;
    border-bottom: none;
    color: transparent;
    display: inline-block;
    opacity: .3;
    transition: all 0.15s ease;
    width: 2em;
}

.previous a {
    margin-right: 10px;
}

.next a {
    margin-left: 10px;
    transform: rotate(180deg);
}

.video-library__pagination li {
    cursor: pointer;
    list-style: none;
    padding: 10px;
}

.video-library__pagination li.selected {
    border-bottom: 2px solid #42E9F4;
}

.vid-card {
    width: calc(33.33% - 40px);
    padding: 20px;
}

img {
    max-width: 100%;
}

.video-library__no-results {
    height: 100%;
}

.App-filters ul li > input:focus {
    border-color: #F08C29;
}

.video-directory__select:focus {
    border-color: #000;
}

@media only screen and (min-width: 600px)  {
    .gfcom-three-card-grid__col {
        padding-left: 10px;
        padding-right: 10px;
        width: 50%;
    }
}

@media only screen and (min-width: 781px)  {
    .App-filter-btn {
        display: none;
    }

    .App-header {
        height: 140px;
        padding: 40px 0;
    }

    .App-main {
        padding-bottom: 100px;
        width: 80%;
    }

    .gfcom-three-card-grid__col {
        padding-left: 10px;
        padding-right: 10px;
    }

    .App-sidebar {
        padding-top: 30px;
        width: 20%;
    }

    .App-sidebar ul {
        padding-top: 0;
    }

    .App-filters {
        display: block;
    }

    .App-header {
        padding-left: 10px;
        padding-right: 10px;
    }

    .video-library__search {
        width: auto;
        margin-right: 0;
    }
}

@media only screen and (min-width: 900px)  {
    .gfcom-three-card-grid__col {
        width: 33.33%;
    }
}

.App-reset-filters {
    border: 0;
    background: transparent;
    color: #0F3D6C;
    font-weight: bold;
    padding: 0;
}

.App-reset-filters:hover,
.App-reset-filters:focus {
    text-decoration: underline;
}

