.pulseSpeed {
    display: block;
    margin: auto auto;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(245, 0, 245, 1);
    animation: pulseSpeed 2s infinite;
    border: 4px solid transparent;
    border-radius: 50%;
    padding: 5px;
    background: -webkit-linear-gradient(30deg, #F500F5, #845EC2);
    background: -o-linear-gradient(30deg, #F500F5, #845EC2);
    background: linear-gradient(60deg, #F500F5, #845EC2);
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    width: 150px;
    height: 150px;
}

.pulseSpeed span {
    color: white;
    display: block;
    font-weight: 700;
    background: #4B4453;
    border-radius: 50%;
    margin: 0 auto;
    padding: 55.5px 30px;
}

.pulseSpeed:hover {
    animation: none;
}

@-webkit-keyframes pulseSpeed {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(245, 0, 245, 1);
    }
    70% {
        -webkit-box-shadow: 0 0 0 5px rgba(245, 0, 245, 0.7);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(245, 0, 245, 0);
    }
}

@keyframes pulseSpeed {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(245, 0, 245, 1);
        box-shadow: 0 0 0 0 rgba(245, 0, 245, 1);
    }
    70% {
        -moz-box-shadow: 0 0 0 5px rgba(245, 0, 245, 0);
        box-shadow: 0 0 0 5px rgba(245, 0, 245, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(245, 0, 245, 0);
        box-shadow: 0 0 0 0 rgba(245, 0, 245, 0);
    }
}

.background-bottom-speed-info {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 50px;
}

.background-bottom-speed-info .bottom-speed-info {
    display: flex;
    justify-content: center;
    align-items: center;
    background: -webkit-linear-gradient(30deg, #4B4453, #563594);
    background: -o-linear-gradient(30deg, #4B4453, #563594);
    background: linear-gradient(60deg, #4B4453, #563594);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 5px;
    padding-bottom: 5px;
}

.background-top-speed-info {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.background-top-speed-info .top-speed-info {
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.background-top-speed-info .top-speed-info .ping, .background-top-speed-info .top-speed-info .ping i {
    background: -webkit-linear-gradient(30deg, gray, silver);
    background: -o-linear-gradient(30deg, gray, silver);
    background: linear-gradient(60deg, gray, silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 5px;
    padding-bottom: 5px;
}

.background-top-speed-info .top-speed-info .download, .background-top-speed-info .top-speed-info .download i {
    background: -webkit-linear-gradient(30deg, #845EC2, #00C9A7);
    background: -o-linear-gradient(30deg, #845EC2, #00C9A7);
    background: linear-gradient(60deg, #845EC2, #00C9A7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 5px;
    padding-bottom: 5px;
}

.background-top-speed-info .top-speed-info .upload, .background-top-speed-info .top-speed-info .upload i {
    background: -webkit-linear-gradient(30deg, #845EC2, #F500F5);
    background: -o-linear-gradient(30deg, #845EC2, #F500F5);
    background: linear-gradient(60deg, #845EC2, #F500F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 5px;
    padding-bottom: 5px;
}

.background-top-speed-info .top-speed-info .result {
    color: gray;
    font-weight: 500;
    height: 30px;
    padding-top: 10px;
}

.speed_erro {
    background: -webkit-linear-gradient(30deg, #50396e, #50396e);
    background: -o-linear-gradient(30deg, #50396e, #50396e);
    background: linear-gradient(60deg, #50396e, #50396e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.speed_topic{
    color:gray;
}

.topic-icon{
    color:gray;
}

.top-speed-info-dicas{
    display: block;
    justify-content: left;
    /*align-items: left;*/
    text-align: justify;
}

.speed-button-pull-center {
    left:50%;
    margin-left:-52px;
}