:root {
    --heading-text-color: #1F375B;
    --body-text-color: #445058;
    --sub-text-color: #818E95;
    --green: #72923B;
}

.heading-text {
    color: var(--heading-text-color);
}

.body-text {
    color: var(--body-text-color);
}

.sub-text {
    color: var(--sub-text-color);
}

body{
    background-color: var(--green);
    font-family: Proxima Nova, Helvetica, sans-serif;
}

header#faceoff-leaderboard-header {
    background-image: url('https://s3.amazonaws.com/cdn.fanduel.com/Faceoff/Leaderboard/fairway.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header#faceoff-leaderboard-header img.fairway-frenzy-logo {
    flex: 1;
}

header#faceoff-leaderboard-header .bottom-gradient {
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent 65%, var(--green) 100%);
}

#scoreToBeat h6 {
    font-weight: bold;
    font-size: 18px;
}

#scoreToBeat h1 {
    font-size: 36px;
    margin-bottom: 1rem;
    font-weight: bold;
}

#scoreToBeat #enterNowButton {
    background-color:#FFDC2E;
    color: #000000;
    width: 75%;
}

#yourHighScore h5,
#yourHighScore h4 {
    font-weight: bold;
}

#contestEnds,
#prizePool {
    height: 100%;
}

#contestEnds h6,
#prizePool h6 {
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

#contestEnds h5,
#prizePool h5 {
    font-size: 1.5rem;
    font-weight: 700;
}

#contestEnds p,
#prizePool p {
    font-size: 0.625rem;
    font-weight: 400;
}

#leaderboard {
    color: var(--body-text-color);
}


#leaderboard thead th {
    border-top: none;
}

#leaderboard thead .update-info {
    color: var(--body-text-color);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
}

#leaderboard td {
    vertical-align: middle;
    padding: 0.5rem 0.25rem;
    border-bottom: solid 1px #CFD6DB;
}

#leaderboard td.place-cell {
    width: 30px;
    padding: 0.25rem 1rem;
}

#leaderboard td.avatar-cell {
    width: 50px;
    padding: 0 inherit;
}

#leaderboard td.avatar-cell .avatar,
#leaderboard td.avatar-cell .default-avatar {
    border-radius: 50%;
    border: solid 2px #61019B;
    object-fit: cover;
}

#leaderboard td.avatar-cell .avatar.placeholder {
    border: none;
}

#leaderboard td.avatar-cell .avatar-container {
    position: relative;
    width: 50px;
    height: 100%;
    transition: transform 150ms ease-in-out;
}

#leaderboard td.avatar-cell .avatar-container .default-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(125deg, #61019B -12.59%, #005FC8 112.59%)
}

#leaderboard td.avatar-cell .avatar-container .default-avatar > i {
    font-size: 2rem;
    line-height: 2rem;
    color: white;
    opacity: 0.85;
}

#leaderboard td.avatar-cell .avatar-container.first-place::before {
    position: absolute;
    top: -3px;
    left: -14px;
    transform: rotate( 357deg );
    width: 24px;
    height: 24px;
    content: url('https://s3.amazonaws.com/cdn.fanduel.com/Faceoff/Leaderboard/crown.svg');
}

#leaderboard td.userName-cell {
    max-width: 1vw;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0;
    text-align: left;
}

#leaderboard td.score-cell {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    text-align: right;
    padding-right: 0.5rem;
}

#leaderboard td.score-cell b {
    display: inline-block;
    max-width: 80%;
    text-align: center;
    border-radius: 100px;
    padding: 3px 10px;
    gap: 4px;
}

#leaderboard td.score-cell b.podium {
    background: linear-gradient(125deg, #61019B -12.59%, #005FC8 112.59%);
    color: white;
}