.stats-blue-top {
    padding-bottom: 240px;
}

.status-page {
    margin-top: -250px;
    position: relative;
    z-index: 99;
}

#loc-stats-table {
    background-color: white;
    max-width: 880px;
    margin: 0px auto;
    border-radius: 8px;
    box-shadow: 0 -20px 20px 0 rgba(0, 0, 0, 0.2);
    padding: 0px 0px;
    overflow: hidden;
}

#loc-stats-table > svg{
    stroke: #52a5d8;
    margin: 80px auto;
    display: block;
}

#stats-totals {
    display: flex;
    z-index: 9;
    position: relative;
    justify-content: center;
    margin-top: 40px;
    align-items: center;
}

#stats-totals .st-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin: 10px 10px;
    min-width: 240px;
    border-radius: 8px;
}

#stats-totals .st-container h1 {
    font-size: 14px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin: 0px 0px 20px 0px;
}

#stats-totals .st-container span {
    font-size: 48px;
    color: white;
}

#stats-totals .st-container.green span {
    color: #85c72b;
}

.status-page > h1 {
    color: white;
    text-align: center;
    font-size: 48px;
}

.stats-loc-item {
    /*! padding: 0px 20px; */
}

.stats-main-loc {
    display: flex;
    padding: 16px 20px 16px 20px;
    align-items: center;
    border-bottom: 1px solid #d8d8d8;
}

.stats-main-loc:hover {
    background-color: #efefef;
    cursor: pointer;
}

.stats-main-loc img {
}

.stats-main-loc span {
    color: #8a909f;
    font-size: 18px;
    margin: auto auto auto 20px;
}

.main-loc-info {
    /*! margin-left: auto; */
    border-radius: 10px;
    display: flex;
    padding: 4px 4px 4px 14px;
}

.main-loc-info span {
    font-size: 12px;
    margin: 0;
}

.main-loc-info i {
    width: 16px;
    height: 16px;
    margin-left: 10px;
    background-size: 16px;
}

.main-loc-info.red {
    background-color: rgba(211, 85, 85, 0.15);
}

.main-loc-info.red span {
    color: #d35555;
}

.main-loc-info.red i {
    background-image: url(/v2/img/small-red-cross@2x.png);
}

.main-loc-info.orange {
    background-color: rgba(237, 165, 79, 0.15);
}

.main-loc-info.orange span {
    color: #eda54f;
}

.main-loc-info.orange i {
    background-image: url(/v2/img/small-warning-icon@2x.png);
}

.main-loc-info.green {
    background-color: rgba(133, 199, 43, .15);
}

.main-loc-info.green span {
    color: #85c72b;
}

.main-loc-info.green i {
    background-image: url(/v2/img/small-checkmark-icon@2x.png);
}

.open-loc-btn {
    width: 24px;
    height: 24px;
    background: url(/v2/img/open-icon@2x.png) 0 0 no-repeat;
    background-size: 24px;
    margin: auto 10px auto 30px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.open-loc-btn.open {
    transform: rotate(45deg);
}

.stats-pop-items-cont {
    display: none;
}

.stats-pop-item {
    display: flex;
    position: relative;
    padding: 26px 20px;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
}

.stats-main-loc > i {
    width: 16px;
    height: 16px;
    margin: auto 10px;
    background: url(/v2/img/pro-location-icon@2x.png) 0 0 no-repeat;
    background-size: 16px;
}

.stats-pop-item span.stats-pop-name {
    font-size: 18px;
    color: #8a909f;
}

.stats-pop-item span.stats-pop-usage {
    margin-left: auto;
    font-size: 18px;
    color: gray;
}

.stats-pop-item span.pop-usage-bar {
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0px;
}

.stats-pop-item.red {
    border-bottom: 1px solid rgba(211, 85, 85, 0.15);
}

.stats-pop-item.red i {
}

.stats-pop-item.red span.stats-pop-name {
}

.stats-pop-item.red span.stats-pop-usage {
    color: #d35555;
}

.stats-pop-item.red span.pop-usage-bar {
    background-color: #d35555;
}

.stats-pop-item.orange {
    border-bottom: 1px solid rgba(237, 165, 79, 0.15);
}

.stats-pop-item.orange i {
}

.stats-pop-item.orange span.stats-pop-name {
}

.stats-pop-item.orange span.stats-pop-usage {
    color: #eda54f;
}

.stats-pop-item.orange span.pop-usage-bar {
    background-color: #eda54f;
}

.stats-pop-item.green {
    border-bottom: 1px solid rgba(133, 199, 43, 0.15);
}

.stats-pop-item.green i {
}

.stats-pop-item.green span.stats-pop-name {
}

.stats-pop-item.green span.stats-pop-usage {
    color: #85c72b;
}

.stats-pop-item.green span.pop-usage-bar {
    background-color: #85c72b;
}

.p2p-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

@media all and (max-width: 910px) {

    #stats-totals {
        flex-direction: column;
    }

}

@media all and (max-width: 420px) {

    .status-page > h1{
        font-size: 32px;
    }

    .stats-main-loc{
        padding: 14px 10px 14px 10px;
    }

    .stats-main-loc img:first-of-type{
        width:24px;
    }
    .p2p-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    .open-loc-btn{
        width:18px;
        height: 18px;
        background-size: 18px;
        margin-left: 12px;
        margin-right: 6px;
    }
    .stats-main-loc span{
        font-size:14px;
        margin: auto auto auto 10px;
    }
    .main-loc-info{
        padding: 4px 4px 4px 10px;
    }
    .main-loc-info span{
        font-size: 10px;
        line-height: 16px;
    }
    .stats-pop-item{
        padding: 16px 16px;
    }

    .stats-pop-item span.stats-pop-name{
        font-size: 12px;
    }
    .stats-pop-item span.stats-pop-usage{
        font-size: 12px;
    }

}