:root {
    --regular-color: #71767b;
    --hover-color: #F91880;
}

* {
    box-sizing: border-box;
    
}

body {
    background-color: #000000;
    padding: 100px 200px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    
}

.active {
    color: var(--hover-color);
}

.likes-container {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 2px;
    /* width: 500px;
    height: 30px; */
    font-size: 15px;
    overflow: hidden;
    transition: color 350ms ease-in;
    cursor: pointer;
    color: var(--regular-color);
    user-select: none;
}

.likes-container:hover {
    color: var(--hover-color);
}

.likes-container:hover span::after {
    opacity: .1;
}

.likes-container span {
    padding: 15px;
    font-size: 18px;
    position: relative;
    z-index: 2;
    overflow: visible;

    transition: transform 150ms ease-in-out;
}

.likes-container span::after {
    transition: opacity 350ms;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    content: "";
    width: 36px;
    height: 36px;
    border-radius: 100px;
    background-color: var(--hover-color);
    opacity: 0;
    z-index: -1;
}

.likes-slide {
    transition: transform 200ms ease-out;
    /* min-height: 50px; */
    min-width: 50px;
    display: inline-block;
}

.no-transition {
    transition: 0s;
}

.sliding {
    transform: translateY(-150%);
}
.new-likes {
    position: absolute;
    top: 50%;
    transform: translateY(100%);
}

.grow {
    transform: scale(1.2) rotate(12deg);
}