body {
    margin: 0;
    padding: 0;
    background-color: #f2f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.flex {
    flex: 1;
}

.container {
    width: 500px;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
}
.speed-gauge {
    width: 500px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    top: -80px;
}
.top {
    height: 400px;
}
.bottom {
    /*background-image: linear-gradient(to right, #19709F 0, #4DB6C3 100%);*/
    background-color: #474747;
    box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
}
.results {
    color: #fff;
}

.results,
.secondary-results {
    display: flex;
    padding: 15px;
    text-transform: capitalize;
    font-weight: 700;
    align-items: center;
}

.secondary-results{
    position: relative;
}

.logo {
    background-image: url("img/icons.png");
    background-position: 0px -897px;
    background-repeat: no-repeat;
    display: block;
    height: 36px;
    width: 115px;
    position: relative;
    top: 15px;
    left: 15px;
    margin: 0;
    padding: 0;
}
.action-start{
    background-color: #474747;
    color: #fff;
    padding: 5px;
    font-weight: 700;
    border: 1px solid #ccc;
    box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
    cursor: pointer;

}

.speed-test .action-start{
    margin-left: 200px;
}

.action-start:hover{
    background-color: #a3a3a3;
    color: #474747;
}

.ip-icon{
    width: 1.938rem;
    height: .813rem;
    background-color: #000;
    color: #fff;
    padding: 5px;
    margin: 1px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
}
.results .test-result, .ip-icon{
    display: inline-block;
}

.ip-icon{
    font-size: 10px;
    border-radius: 2px;
    border: 1px solid #ccc;
    text-align: center;
}

.wrapper{
    display: block;
}

.latency-result{
    text-transform: lowercase;
}

.hide{
    display: none;
}

[aria-disabled=true] {
    background-color: #d1d1d1;
    cursor: not-allowed;
}


