.model-round-avatar {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 30px;
}


.model-round-avatar-username-link {
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

.model-round-avatar-username-link:hover {
    text-decoration: underline;
}

.round-avatar-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.round-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.model-round-avatar-link {
    display: block;
    background-position: 50% 0;
    background-size: cover;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: all .5s;
}

.model-round-avatar-link:hover {
    transform: scale(1.3);
}


.model-round-avatar-dot {
    background-color: #42b72a;
    border-radius: 200px 200px 200px 200px;
    -moz-border-radius: 200px 200px 200px 200px;
    -webkit-border-radius: 200px 200px 200px 200px;
    border: 2px solid #ffffff;
    height: 1em;
    width: 1em;
    left: 76%;
    top: 80%;
    position: absolute;
    z-index: 1;
}


@keyframes round-avatar-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(143, 255, 85, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(143, 255, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(143, 255, 85, 0);
    }
}

.model-round-avatar .icon-platform {
    position: unset;
    background-position: center;
}


.model-lastshow {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
}

.profile-bio .description {
    margin-bottom: 30px;
}

.bio {
    margin-bottom: 15px;
}

.bio p {
    font-size: 14px;
    word-wrap: break-word;
}

.profile-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.profile-instagram-link {
    transition: all 0.3s ease;
}

.profile-instagram-link:hover .instagram-icon {
    background: url(/static/icons/icon-instagram-hover.png) top left no-repeat;
    background-size: 100% 100%;
    width: 25px;
    height: 25px;
}

.instagram-icon {
    background: url(/static/icons/icon-instagram.png) top left no-repeat;
    background-size: 100% 100%;
    width: 25px;
    height: 25px;
    display: inline-block;
}
