.top10-list {
    margin-bottom: -10px;
}

.top10-list li {
    margin-left: 0px !important;
    padding: 10px 0px 10px
}


.top10-list li:before {
    display: none !important;
}

.top10-img {
    display: inline-block;
    width: 55px;
}

.top-10-txt{
    display: inline-block;
}

.tab-title {
    font-size: 12px !important;
}

.top10-name {
    display: inline-block;
    margin-top: 10px;
    padding-left: 10px;
    position: absolute;
    font-weight: 100;
    font-family: 'Oswald', sans-serif;
    max-width: 230px;
    font-size: 1.1em;
}

.top10-score {
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    font-size: 1em;
    display: inline-block;
    background-color: #fab900;
    color: #fff;
    padding: 10px;
    float: right;
    width: 40px;
    height: 40px;
    text-align: center;
}

/* style sidebar in mobile screens */
@media screen and (max-width: 1023px) {

    .top10-name {
        max-width: 660px !important;
    }
}

/** PANELS TOP TEN / FASCE PREZZO **/

.tabPanel-widget {
    position: relative;
    background: #999;
    margin-top: -20px;
}

/**
* because labels come first in source order - we use z-index to move them in front of the headings
*/
.tabPanel-widget > label {
    position: absolute;
    z-index: 1;
}

/**
* labels and headings must share same values so grouping declarations in this rule prevents async edits (risk of breakage)
* line-height == height -> vertical centering
* the width dictates the offset for all headings but the first one: left offset = width * number of previous heading(s)
* note that width and offset of label/heading pair can be customized if necessary
*/

.tabPanel-widget > label,
.tabPanel-widget > h2 {

    width: 25%;
    height: 2em;
    line-height: 2em;
    text-transform: uppercase;

    font-weight: 200;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    font-size: 1.0em;
}

/**
* position:relative is for the markers (the down arrow in tabs)
*/
.tabPanel-widget > h2 {
    position: relative;
    margin: 0;
    text-align: center;
    background: #999;
    color: #fff;
}

.tabPanel-widget label {
    height: 27px;
}

/*
.tabPanel-widget > label {
border-right: 1px solid #fff;
}
*/

/**
* all first level labels and headings after the very first ones
*/
.tabPanel-widget input,
.tabPanel-widget > label ~ label,
.tabPanel-widget > h2 ~ h2 {
    position: absolute;
    top: 0;
}


/**
* We target all the label/heading pairs
* we increment the :nth-child() params by 4 as well as the left value (according to "tab" width)
*/

.tabPanel-widget label:nth-child(1),
.tabPanel-widget h2:nth-child(3) {
    left: 0em;
}

.tabPanel-widget label:nth-child(5),
.tabPanel-widget h2:nth-child(7) {
    left: 25%;
}

.tabPanel-widget label:nth-child(9),
.tabPanel-widget h2:nth-child(11) {
    left: 50%;
}

.tabPanel-widget label:nth-child(13),
.tabPanel-widget h2:nth-child(15) {
    left: 75%;
}

/**
* we visually hide all the panels
*/
.tabPanel-widget input + h2 + div {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding:0 !important;
    border:0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}
/**
* we reveal a panel depending on which control is selected
*/
.tabPanel-widget input:checked + h2 + div {
    position: static !important;
    padding: 1em !important;
    height: auto !important;
    width: auto !important;
}

/**
* shows a hand cursor only to pointing device users
*/
.tabPanel-widget label:hover {
    cursor: pointer;
}

.tabPanel-widget > div {
    background: #fcfcfc;
    padding: 0.5em;
}

/**
* we hide radio buttons and also remove them from the flow
*/
.tabPanel-widget input[type="radio"] {
    opacity: 0;
    position: absolute;
}


/**
* this is to style the tabs when they get focus (visual cue)
*/

.tabPanel-widget input[type="radio"]:focus + h2 {
    outline: 1px dotted #404040;
    outline-offset: 10px;
}


/**
* reset of the above within the tab panel (for pointing-device users)
*/
.tabPanel-widget:hover h2 {
    outline: none !important;
}

/**
* visual cue of the selection
*/
.tabPanel-widget input[type="radio"]:checked + h2 {
    background: #404040;
}

/**
* the marker for tabs (down arrow)
*/
.tabPanel-widget input[type="radio"]:checked + h2:after {
    content: '';
    margin: auto;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #404040;
}

/**
* Make it plain/simple below 45em (stack everything)

@media screen and (max-width: 45em) {


.tabPanel-widget label,
.tabPanel-widget input[name="tabs"] {
display: none;
}


.tabPanel-widget > input + h2 + div {
display: block !important;
position: static !important;
padding: 1em !important;
height: auto !important;
width: auto !important;
}


.tabPanel-widget h2 {
width: auto;
position: static !important;
background: #999 !important;
}


.tabPanel-widget h2:after {
display: none !important;
}

}
*/
