.midias-sociais {
    height: auto;
    position: fixed;
    top: calc(50% - 20px);
    right: 10px;
    transform: translate(0, -50%) !important;
    animation-duration: 1.5s;
    z-index: 1;
}

.midias-item {
    width: 40px;
    height: 40px;
    display: block;
    margin: 5px;
    font-size: 1.3em;
    border: 1px solid;
    border-radius: 50%;
    color: #ffffff;
    position: relative;
    transition: all .2s ease-in-out;
}

.midias-item.instagram {
    border-color: #c13584;
    background-color: #c13584;
}

.midias-item.facebook {
    border-color: #3b5998;
    background-color: #3b5998;
}

.midias-item.whatsapp {
    border-color: #25d366;
    background-color: #25d366;
}

.midias-item.instagram:hover {
    color: #c13584;
    background-color: #fff;
}

.midias-item.facebook:hover {
    color: #3b5998;
    background-color: #fff;
}

.midias-item.whatsapp:hover {
    color: #25d366;
    background-color: #fff;
}

.midias-item .midia-instagram, .midias-item .midia-facebook, .midias-item .midia-whatsapp {
    position: absolute;
    top: calc(50% + 1px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.up {
    width: 40px;
    height: 60px;
    position: fixed;
    bottom: 15%;
    right: 14px;
    background: rgb(77, 189, 185);
    border: 2px solid rgb(77, 189, 185);
    border-radius: 40px;
    font-size: 1.6em;
    color: #fff;
    cursor: pointer;
    animation-duration: 1.5s;
    z-index: 1;
}

.up.hidden {
    visibility: hidden;
}

.up i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.up:hover {
    background: #fff;
    color: rgb(77, 189, 185);
    border-color: rgb(77, 189, 185);
}

/*PROGRESS BAR*/

.flexer, .progress-indicator {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.progress-indicator {
    margin: 0 0 1em;
    padding: 0;
    font-size: 80%;
    text-transform: uppercase;
}

.progress-indicator>li {
    list-style: none;
    text-align: center;
    width: auto;
    padding: 0;
    margin: 0;
    position: relative;
    text-overflow: ellipsis;
    color: #bbb;
    display: block;
}

.flexer-element, .progress-indicator li {
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    flex: 1;
}

.progress-indicator li .bubble {
    border-radius: 1000px;
    width: 40px;
    height: 40px;
    background-color: #bbb;
    display: block;
    margin: 0 auto .5em;
    /*border-bottom: 1px solid #888; */
    border: 3px solid #bbb;
    background-color: #bbb;
    color: #fff;
}

.progress-indicator li:last-child .bubble:after, .progress-indicator li:last-child .bubble:before {
    width: 50%;
    margin-right: 50%;
}

.progress-indicator li .bubble:before {
    left: 0;
}

.progress-indicator li .bubble:after, .progress-indicator li .bubble:before {
    display: block;
    position: absolute;
    top: 20px;
    width: 100%;
    height: 3px;
    content: '';
    background-color: #bbb;
    z-index: 1;
}

.progress-indicator li.completed .bubble, .progress-indicator li.completed .bubble:after, .progress-indicator li.completed .bubble:before {
    background-color: #58ac26;
    border-color: #58ac26;
    animation: animate-positive 0.5s;
}

.rotate i {
    animation: spin 4s linear infinite;
}

.bubble i {
    position: relative;
    margin-top: 8px;
    z-index: 9;
}

@-webkit-keyframes animate-positive {
    0% {
        width: 37px;
    }
}

@keyframes animate-positive {
    0% {
        width: 37px;
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}