@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

html, body {
    width: 100%;
    min-height: 100vh;
    margin-top: 12%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    background: #000;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

.tabs {
    width: 100%;
}

.tab-list {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.tab-item, .tab-item-button {
    display: inline-block;
    margin: 2px;
    background-color: #111;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.tab-item {
    width: 33%;
    padding: 10px;
}

.tab-item-button {
    width: 20%;
    padding: 1px;
}

.tab-item.active {
    background-color: #222;
}

.tab-content {
    padding: 0;
    border-radius: 5px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.group { width: 100%; }

.group > section > h4 {margin: 3px;}

.glow-on-hover {
    width: 100%;
    height: 5%;
    border: none;
    color: #fff;
    background: #222;
    position: relative;
    z-index: 0;
    border-radius: 15px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px); height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0; transition: opacity .3s ease-in-out;
    border-radius: 5px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* links */
.nfl a, .mlb a, .nhl a, .pga a {text-decoration:none;transition: color 0.2s ease-out;}

.wrapper { width: 100%; margin: 5px 0; overflow-x: auto; }
.row ul { margin:0; padding:0; }
.row ul li { display: inline-block; width: 50%; padding: 2px 5px; box-sizing: border-box; font-size: 14px; }
.title { display: flex; font-weight: bold; }
.title ul li { width: 50%; }
.log { font-size: 10pt; border-bottom: white 1px solid;}
