.dropdown * {
    box-sizing: border-box;
}

.legend {
    border-bottom: thin solid #E5E5E5;
    padding-bottom: .25rem;
    margin-bottom: 1rem;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav .nav__link {
    display: inline-flex;
    border: thin solid #DEE2E6;
    padding: .25rem .5rem;
    margin-right: .5rem;
    margin-bottom: .5rem;
    border-radius: .25rem;
    color: #0a58ca;
    text-decoration: none;
}

.nav .nav__link:hover {
    color: #005580;
}

.dropdownToggle, .page-template-archive-live_stream .btn-secondary, .single-live_stream .btn-secondary,
.page-template-archive-betting_odds_pages .btn-secondary, .single-betting_odds_pages .btn-secondary {
    color: #FFF;
    background-color: #0D6EFD;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: thin solid #0D6EFD;
    padding: .375rem .75rem;
    box-shadow: none;
    background-image: none;
    font-size: .875rem;
    border-radius: 8px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.dropdownToggle:hover, .page-template-archive-live_stream .btn-secondary:hover, .single-live_stream .btn-secondary:hover,
.page-template-archive-betting_odds_pages .btn-secondary:hover, .single-betting_odds_pages .btn-secondary:hover {
    color: #FFF;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.dropdownToggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown {
    position: relative;
}

.nav.--dropdown {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: .875rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    max-height: 250px;
    overflow-y: auto;
}

.nav.--dropdown.--opened {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    left: 0;
    top: 100%;
    min-width: 15rem;
    transform: translateY(5px);
}

.nav.--dropdown .nav__link {
    margin: 0;
    width: 100%;
    border: 0;
    color: #000;
    border-radius: 0;
    outline: 0;
}

.nav.--dropdown .nav__link:hover {
    background-color: #E9ECEF;
}
.nav.--dropdown .nav__link:focus {
    background-color: #0D6EFD;
    color: #FFF;
}
