.places {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
}

.places li {
    padding: 5px 0;
    position: relative;
    border-bottom: 1px solid #B1B1B1;
    counter-increment: step-counter;
    padding-left: 40px;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}

.places li > .wrap {
    width: 100%;
    padding-left: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.places li:before {
    content: counter(step-counter);
    width: 40px;
    display: inline-block;
    font-size: 20px;
    border-radius: 20px;
    text-align: center;
    height: 40px;
    line-height: 39px;
    font-weight: bold;
    color: #000000;
    vertical-align: middle;
    margin-right: 5px;
    margin-left: -40px;
}

.places li:first-child:before {
    background-color: gold;
    color: white;
    font-size: 22px;
}

.places li:nth-child(2):before {
    background-color: silver;
    color: white;
    font-size: 22px;
}

.places li:nth-child(3):before {
    background-color: #E8B17A;
    color: white;
    font-size: 22px;
}

.places li a {
    margin-right: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.places li a img {
    opacity: 0.7;
    /*width: .7em;*/
    min-width: 15px;
}

.places li a:hover img {
    opacity: 1;
}

.places .left {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: row;
    width: 50%;
    justify-content: flex-start;
    overflow: hidden;
}

.places .left .clanNameStat {
    margin-left: 5px;
    white-space: nowrap;
}

.places .left .clanNameStat a {
    margin-right: 0px;
    display: inline-block;
}

.places a.clanTanksList {
    border-radius: .25em;
    color: #fff;
    background-color: #428bca;
    padding: 2px 4px;
    font-size: .7rem;
    margin-left: 10px;
    display: flex;
}

.places .right {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: row;
    width: 50%;
    justify-content: flex-end;
}

.places .right span {
    display: inline-block;
    margin-left: 5px;
}

.places .detail {
    border-bottom: 0;
    padding: 15px 0 0 0;
}

.places .detail:before {
    display: none;
}

.places .detail a {
    padding-right: 0;
    margin-right: 0;
}

