@charset "utf-8";
/* CSS Document */

#top-shooter {
    display: flex;
    flex-direction: column;
    height: 300px;
    width: 100%;
}

#top-shooter * { padding: 0px; margin: 0px; }

#top-shooter .mark {
	background-color: transparent!important
}
.topshooter-tittle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 60px;
    width: 100%;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: -.2px;
    line-height: 40px;
    text-transform: uppercase;
    color: white;
    background: var(--primary-blue);
}

.topshooter-tittle div {
    width: 100%;
}

.topshooter-tittle p {
    text-align: center;
}

#topshooter-main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    background: linear-gradient(0deg, rgba(203,232,255,1) 0%, rgba(110,187,255,1) 100%);
    overflow: hidden;
}

#topshooter-content {
    display: flex;
    flex-direction: row;
    height: 100%;
    z-index: 10;
}

#topshooter-content .chart {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    width: 66%;
}

.chart {
    padding: 16px 0px;
    color: white;
}

.chart .line {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
}

.chart .rank {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50px;
    background: var(--blue-palette-2);
}

.chart .rank p {
    height: 30px;
    width: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    font-variant-numeric: tabular-nums;
    border: 1px solid white;
    border-radius: 50%;
}

.double-line {
    font-family: 'Rift Demi', sans-serif;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
}

.double-line .mark {
    width: 56px;
    text-align: center;
    font-size: 17px;
    color: white;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(76deg, var(--secondary-blue) 5px, var(--blue-palette-2) 5px);
    transition: all .3s ease-out;
	background-color: none!important
}

.double-line .bullets {
    display: none;
}

.double-line .mark span {
    font-size: 10px;
    font-weight: 300;
}

.double-line .name {
    padding-left: 6px;
    width: 50px;
    text-align: center;
    color: var(--blue-palette-2);
    white-space: nowrap;
}

.double-line .name span {
    font-size: 14px;
    font-weight: 300;
}

#topshooter-content .athlete {
    position: relative;
    height: 100%;
    width: 34%;
}

#topshooter-content #bubble-stat {
    position: absolute;    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    bottom: -10px;
    left: -10px;
    padding-top: 10px;
    height: 120px;
    width: 120px;
    font-family: 'Rift Demi', sans-serif;
    color: white;
    background: var(--blue-palette-2);
    border: 4px solid white;
    border-radius: 50%;
    z-index: 10;
}

#bubble-stat .rank {
    padding: 3px 4px;
    color: white;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    background: var(--secondary-blue);
}

#bubble-stat .mark {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

#bubble-stat .mark span {
    font-size: 14px;
    font-weight: 300;
}

#bullets-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#bullets-stat .bullet {
    display: flex;
    margin-right: 1px;
    height: 14px;
    width: 3px;
    box-shadow: inset 1px 0px 0px rgba(255, 255, 255, .5);
    background: linear-gradient(180deg, rgba(230,191,93,1) 12%, rgba(191,149,90,1) 12%, rgba(191,149,90,1) 28%, rgba(230,191,93,1) 28%);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

#bubble-stat .bullets {
    margin-left: 5px;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 12px;
}

#topshooter-photo {
    position: relative;
    display: flex;
    height: 80%;
    overflow: hidden
}

#topshooter-photo img {
    position: absolute;
    top: -6px;
    left: -10px;
    height: 220px;
}

#top-shooter .topshooter-circle {
    position: absolute;
    top: -160px;
    left: -160px;
    height: 340px;
    width: 340px;
    border: 94px solid white;
    border-radius: 50%;
    opacity: .6;
    filter: blur(4px);
    z-index: 1;
}

#top-shooter .topshooter-circle:nth-child(2) {
    position: absolute;
    top: 10px;
    left: -4px;
    height: 20px;
    width: 20px;
    border: 6px solid var(--primary-red);
    border-radius: 50%;
    opacity: .9;
    filter: blur(0px);
    z-index: 2;
}

#top-shooter .topshooter-circle:nth-child(3) {
    position: absolute;
    top: 10px;
    left: 100px;
    height: 20px;
    width: 20px;
    border: 6px solid white;
    border-radius: 50%;
    opacity: .9;
    filter: blur(0px);
    z-index: 2;
}

#top-shooter .topshooter-circle:nth-child(4) {
    position: absolute;
    top: 70px;
    left: 176px;
    height: 40px;
    width: 40px;
    border: 13px solid var(--secondary-blue);
    border-radius: 50%;
    opacity: .9;
    filter: blur(0px);
    z-index: 2;
}

#top-shooter .topshooter-circle:nth-child(5) {
    position: absolute;
    top: 5px;
    left: 100px;
    height: 10px;
    width: 10px;
    border: 3px solid var(--secondary-blue);
    border-radius: 50%;
    opacity: .9;
    filter: blur(0px);
    z-index: 2;
}

#topshooter-logo {
    padding: 10px 0px;
    height: 50px;
    text-align: center;
    background: white;
    border-bottom: 5px solid rgba(203,232,255,1);
}

#topshooter-logo img {
    height: 100%;
}