.avatar-content .avatar-img {
    max-width: 80%;
    height: auto;
    width: auto\9;
}

.avatar-content .avatar-bubble {
    transform: translatey(0px);
    animation: float 5s ease-in-out infinite;
    mix-blend-mode: multiply;
    text-align: center;
    letter-spacing: 2px;
    font-size: 12px;
    color: #fff;
    background-color: #303e45;
    padding: 20px;
    border-radius: 11px;
    position: relative;
    box-shadow: 20px 20px #83af9b;
}

.avatar-content .avatar-bubble:after {
    transform: translatey(0px);
    animation: float2 5s ease-in-out infinite;
    content: ".";
    font-weight: bold;
    -webkit-text-fill-color: #303e45;
    text-shadow: 22px 22px #83af9b;
    text-align: left;
    font-size: 55px;
    width: 55px;
    height: 11px;
    line-height: 30px;
    border-radius: 11px;
    background-color: #303e45;
    position: absolute;
    display: block;
    bottom: -30px;
    left: 0;
    box-shadow: 22px 22px #83af9b;
    z-index: -2;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes float2 {
    0% {
        line-height: 30px;
        transform: translatey(0px);
    }
    55% {
        transform: translatey(-20px);
    }
    60% {
        line-height: 10px;
    }
    100% {
        line-height: 30px;
        transform: translatey(0px);
    }
}

.avatar-content .avatar-img-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 16px;
}

.avatar-content .avatar-playpause {
    align-self: flex-end;
}

.avatar-content .avatar-checkbox-label {
    display: block;
    box-sizing: border-box;
    width: 0;
    height: 60px;

    border-color: transparent transparent transparent #202020;
    transition: 100ms all ease;
    cursor: pointer;
    border-style: solid;
    border-width: 30px 0 30px 50px;
}

.avatar-content .avatar-checkbox {
    position: absolute;
    left: -9999px;
}

.avatar-content .avatar-checkbox:checked + label {
    border-style: double;
    border-width: 0px 0 0px 50px;
 }

.avatar-content .avatar-checkbox:focus + label {
     box-shadow: 0 0 5px lightblue;
 }
