

.player-avatar-wrapper{
    height:104px;
    width:104px;
    margin-right:12px;
  }

  .player-avatar{
    width:104px;
    height:104px;
    border-radius:50%;
    overflow: hidden;

  }


  .player-avatar img{
    width: 100%;
    height:auto;
  }

  .player-flag{
    position: absolute;
    bottom:0;
    right:-16px;
    height:32px;
    width: 32px !important;;
    border-radius: 50%;
  }



  @media (min-width: 1200px) {
            
        .large .player-avatar-wrapper{
            height:208px;
            width:208px;
            margin-right:12px;
        }

        .large .player-avatar{
            width:208px;
            height:208px;
            border-radius:50%;
            overflow: hidden;

        }

        .large .player-flag{
            position: absolute;
            bottom:0;
            right:-32px;
            height:64px;
            width: 64px !important;;
            border-radius: 50%;
        }

    }

#avatar-update{
    display: none;
}

.close-detail-view{
    height: 36px;
    width: 36px;
    line-height: 36px;
    font-size: 24px;
    position: absolute;
    top: 18px;
    right: 18px;
}

.detail-view{
    display: none;
}


.detail-table-wrapper{
    overflow-x:auto;
}


.detail-table tbody tr:nth-child(odd) {
    background-color: var(--sgt-md-gray);
}


.detail-table tbody tr:nth-child(odd) .left-column {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}


.detail-table tbody tr:nth-child(odd) .right-column {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.row-divider{
    border-top: 2px solid var(--sgt-red);
}
.expand-cell{
    width:99%;
}


@media (max-width:768px){


    .detail-table{
        font-size: 60%;
    }

    .detail-table .three-quarter-font{
        font-size: 75% !important;
    }

}




.detail-table.rounds-table tbody tr:nth-child(odd) .left-column {
    border-right:none;
}


.detail-table.rounds-table tbody tr:nth-child(odd) .right-column {
    border-left:none;
}


.detail-table.rounds-table tbody tr:nth-child(even) .left-column {
    border-right:none;
}


.detail-table.rounds-table tbody tr:nth-child(even) .right-column {
    border-left:none;
}


#wgr-details-container{
    display: none;
}


#trophy-details-container{
    display: none;
}


#crs-details-container{
    display: none;
}

.table-container{
    overflow-x:scroll;
}


.trophy-img{
    max-height:120px;
    max-width:120px;
}


.wgr-container{
    overflow-x:auto;
}

.copy-to-clip{
    font-size:16px;
}


.settings-form-input {
    background-color: var(--sgt-light-gray);
    border-color: var(--sgt-light);
    color: var(--sgt-light);
    font-size: 16px;
}


.settings-form-input:focus {
    color: var(--sgt-light);
    background-color: var(--sgt-light-gray);
    border-color: var(--sgt-light);
    outline: 0;
    box-shadow: 0 0 0 0px rgba(208, 63, 37, 1.0);
}


.discord-avatar{
    height:32px;
    width:32px;
    border-radius: 50%;
    border: solid 1px var(--sgt-md-gray);
    background-color: var(--sgt-md-gray);
}


.apexcharts-zoom-icon.apexcharts-selected svg {
    fill: var(--sgt-red) !important;
  }
  
  .apexcharts-pan-icon.apexcharts-selected svg {
    stroke:var(--sgt-red) !important;
  }


  .apexcharts-zoomin-icon svg,
  .apexcharts-zoomout-icon svg,
  .apexcharts-zoom-icon svg,
  .apexcharts-pan-icon svg,
  .apexcharts-reset-icon svg,
  .apexcharts-menu-icon svg {
    fill: var(--sgt-white) !important;
  }

@media (min-width: 768px) {
    .border-md-end{
        border-right: var(--bs-border-width) var(--bs-border-style) var(--sgt-light-gray) !important;
    }

}


.sub-option-select{
    background-color: var(--sgt-md-gray);
    border: 1px solid var(--sgt-dark-gray);
}


.sub-option-select.selected{
    background-color: var(--sgt-light-gray);
    border: 1px solid var(--sgt-red);
}


    

.detail-table.crs-table tbody tr:nth-child(odd) .right-column {
    border-left: solid 1px var(--sgt-dark-gray);
}



.detail-table.crs-table tbody tr:nth-child(even) .right-column {
    border-left: solid 1px var(--sgt-md-gray);
}



.achievement-card{
    width:250px;
    min-width: 250px;
}

.achievement-progress-text{
    width: 150px;
    height: 150px;
    line-height: 150px;
    font-size:35px;
}


.level-text{
    min-width: 60px;
}

.level-icon{
    min-width:27px;
    width:27px;
    text-align: center;
}

.circular-progress {
    --size: 150px;
    --half-size: calc(var(--size) / 2);
    --stroke-width: 5px;
    --radius: calc((var(--size) - var(--stroke-width)) / 2);
    --circumference: calc(var(--radius) * pi * 2);
    --dash: calc((var(--progress) * var(--circumference)) / 100);
  }
  
  .circular-progress circle {
    cx: var(--half-size);
    cy: var(--half-size);
    r: var(--radius);
    stroke-width: var(--stroke-width);
    fill: none;
    stroke-linecap: square;
  }
  
  .circular-progress circle.bg {
    stroke: var(--sgt-dark-gray);
  }
  
  .circular-progress circle.fg {
    transform: rotate(-90deg);
    transform-origin: var(--half-size) var(--half-size);
    stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
    transition: stroke-dasharray 0.3s linear 0s;
    stroke: var(--sgt-red);
  }


  
.filter-select .dropdown-toggle::after {
    display: none;
}


.filter-select button {
    color: var(--sgt-dark-gray) !important;
    background-color: var(--sgt-white) !important;
    border-color: var(--sgt-light-gray) !important;
}


.filter-select.dropdown-menu {
    min-width: 200px;
    box-sizing: border-box;
}



.filter-select-item{

    padding-left:12px;
    padding-right:12px;
    cursor:pointer;
    color:var(--sgt-dark-gray) !important;

}

.filter-select-item.active, .filter-select-item:active{

    background-color:var(--sgt-light) !important;

}

.filter-select-item.selected .fa-square{
    display: none;
}

.filter-select-item:not(.selected) .fa-square-check{
    display: none;
}





.stat-view-select .dropdown-toggle {
    min-width: 175px !important;
    box-sizing: border-box !important;
  }
  
  
  .stat-view-select .dropdown-toggle::after {
    display: none !important;
  }
  
  
  .stat-view-select button {
    color: var(--sgt-dark-gray) !important;
    background-color: var(--sgt-white) !important;
    border-color: var(--sgt-light-gray) !important;
  }
  
  .stat-view-select-arrow{
    position:relative !important;
    left: -25px !important;
  }
  
  
  .stat-view-select .dropdown-menu {
    min-width: 175px !important;
    box-sizing: border-box !important;
  }
  
  
  
  
  .stat-view-select-item{
  
    padding-left:12px !important;
    padding-right:12px !important;
    cursor:pointer !important;
    color:var(--sgt-dark-gray) !important;
  
  }
  
  .stat-view-select-item.active, .stat-view-select-item:active{
  
    background-color:var(--sgt-light) !important;
  
  }

  .stat-view-select-arrow {
    position: relative !important;
    left: -25px !important;
}



.round-stat-table  tbody tr .odd{
    background-color: var(--sgt-md-gray);
}

.round-stat-table  tbody tr .odd.left-column {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.round-stat-table  tbody tr .odd.right-column-first {
    border-top-right-radius: 1rem;
}

.round-stat-table  tbody tr .odd.right-column-last {
    border-bottom-right-radius: 1rem;
}