html, body {
    font-family: 'Roboto', sans-serif;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.container {
    height: 100%;
    width: 100%;
    background-color: #ffffff;
}

.outer-most {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.col {
    float: left;
    background-color: #f1f2f4;
    padding: 0px 8px;
    margin: 0.30%;
    height: 100%;
    min-height: 100vh;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
}

.outer-most .side-menu {
    width: 3%;
    margin-left: 0;
    margin-top: 0;
}

.outer-most .left-column {
    width: 15%;
}

.outer-most .main-column {
    width: 60%;
}

.outer-most .right-column {
    width: 15%;
}

.col > .headings {
    margin: 0;
    margin-top: 8px;
}

.col-heading {
    font-weight: 300;
}

.main-column .col-heading {
    margin-left: 16px;
}

.music-category {
    width: 100%;
    margin-left: 16px;
}

.music-category .card-heading {
    font-weight: 500;
    color: #c41517;
    margin-top: 20px;
    margin-bottom: 8px;
}

.music-category .video-cards {
    width: 92%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 8px;
}

.video-cards .card-4 {
    width: 24%;
    float: left;
    margin: 1% 1% 0 0;
}

.video-cards .card-4:last-child {
    margin-right: 0;
}

.video-cards .card-4 > img, .subs-cards .card-1 > img {
    width: 100%;
    height: 120px;
    border-radius: 2px;
}

.see-more {
    float: right;
    margin-top: 64px;
    color: #999;
    margin-right: 3%;
}

.see-more:hover {
    cursor: pointer;
    color: #000000;
}

.left-column > .col-heading, .right-column > .col-heading {
    padding-left: 12px;
}

.subs-cards {
    width: 100%;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.subs-cards .card-1 {
    padding: 12px;
}

.top-bottom-items {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    position: absolute;
}

.top-bottom-items .top-items, .bottom-items {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.top-bottom-items .top-items {
    margin-top: -8px;
}

.top-bottom-items .bottom-items {
    margin-bottom: 16px;
}

.top-bottom-items .top-items > a, .bottom-items > a {
    text-align: center;
    font-size: 1.5em;
    padding: 8px;
}

.search-icon {
    background: #cc181f;
    color: white;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 8px;
}

.active-item {
    border-left: 4px solid #cc181f;
    margin-left: -8px;
}

.side-item:hover {
    cursor: pointer;
    color: #666666;
}

.card-1 > p, .card-4 > p {
    margin: 0;
}

.vid-title {
    color: #323232;
    font-size: 0.9em;
    font-weight: 300;
    margin-top: 4px !important;
}

.vid-channel {
    color: #cc181f;
    padding-top: 2px;
    font-size: 0.8em;
}

.vid-time-views {
    color: #666666;
    font-size: 0.7em;
    font-weight: 500;
    padding-top: 1px;
}

/* Modal - Video Player */

.modal-container {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-container .modal-content {
    color: #999;
    margin: 0 auto;
    display: table;
    position: relative;
    padding: 8px;
    border-radius: 4px;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

#videoCard:hover {
    cursor: pointer;
}