/* Title Section */
.titleSection {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.titleSection h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

.titleSection h2 i {
    border-radius: 8px;
    text-align: center;
    padding: 8px;
    font-size: 18px;
}

.anchors>a.comments {
    color: #1c274d;
    background: #00000008;
}

.anchors>a.comments:hover {
    background: #e4e6eb;
}

/* Comments Area */
.comments__area {
    background: #FFF;
    padding: 25px 25px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #DDD;
}

/* No Comments Found */
.no__comments__found h3 {
    display: block;
    background: #00000008;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 400;
    padding: 15px 20px;
    color: #656262;
}

/* Comment Box */
.comment__box {
    display: flex;
    align-items: start;
    gap: 10px;
}

.comment__box .avatar,
form.add__comment .avatar {
    width: 33px;
    height: 33px;
    overflow: hidden;
    border-radius: 50px;
}

.comment__box .avatar img,
form.add__comment .avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment__box .comment__content {
    flex: 1;
}

.comment__box .comment__content .content {
    border-radius: 15px;
    background: #00000008;
    padding: 6px 20px;
    width: fit-content;
}

.comment__box .comment__content .content .author {
    font-size: 14px;
    margin-bottom: 4px;
}

.comment__box .comment__content p {
    font-size: 17px;
    line-height: 22px;
    font-weight: 400 !important;
}

/* Comment Bar */
.comment__box .comment__content .comment__bar {
    display: flex;
    margin-top: 5px;
    gap: 15px;
}

.comment__box .comment__content .comment__bar>div {
    font-size: 14px;
    cursor: pointer;
}

.comment__box .comment__content .comment__bar>div:hover {
    text-decoration: underline;
}

.comment__box .comment__content .comment__bar>div.comment__like {
    position: relative;
}

.comment__box .comment__content .comment__bar>div.comment__like:hover .comment__react {
    opacity: 1;
    visibility: visible;
}

.comment__report.is-reported {
    color: #9ca3af;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

/* Comment Form */
form.add__comment {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.add__comment__box {
    border-radius: 18px;
    background: #00000008;
    padding: 6px 15px;
    flex: 1;
    position: relative;
}

.add__comment__box textarea {
    border: 0;
    background: transparent;
    outline: 0;
    width: 100%;
    display: block;
    min-height: 30px;
    box-shadow: none;
}

.add__comment__box textarea:focus {
    outline: none;
    box-shadow: none;
}

.add__comment__box>button {
    background: transparent;
    border: 0;
    outline: 0;
    position: absolute;
    right: 0;
    top: 0;
    padding: 14px;
    cursor: pointer;
    color: #AAA;
    opacity: .4;
}

.add__comment__box>button i {
    transform: rotate(180deg);
    font-size: 16px;
}

ul.comments__list__ul li:last-child>div {
    margin-bottom: 0;
}

.comments__replies form.add__reply {
    margin-top: 15px;
    margin-bottom: 0;
}

/* Reset list spacing for all comment lists */
.comments__list__ul,
.comments__replies .comments__list__ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments__list__ul {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
}

.comments__list .comments__list__ul>li {
    padding: 30px;
}

/* Add a subtle indent to replies under a parent comment */
.comments__replies {}

/* Prevent accumulating indent on deeper levels */
.comments__replies .comments__replies {
    padding-left: 0;
}

/* Keep reply comment boxes aligned without extra inset */
.comments__replies .comment__box {
    margin-left: 0;
}

/* Pending approval notice */
.comment-pending-alert {
    background: #08d66d1f;
    border: 1px solid #f0d58a;
    color: #007a3c;
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: 13px;
}

/* Comment React (Emoji Picker) */
.comment__react {
    position: absolute;
    z-index: 2;
    right: -200px;
    border-bottom: 1px solid #ffffff14;
    white-space: nowrap;
    background: #ffffff;
    border-radius: 130px;
    padding: 13px 11px;
    margin-bottom: 3px;
    transform-origin: bottom right;
    transform: scale(.3) translate(0, 50px);
    transition: .35s all ease;
    visibility: hidden;
    opacity: 0;
    bottom: 230%;
}

/* Emoji Styles */
.emoji {
    width: 120px;
    height: 120px;
    margin: 0;
    background: linear-gradient(to bottom, #FFE276, #F89E38);
    display: inline-block;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    vertical-align: top;
    margin: 0px 10px;
    transform-origin: bottom center;
    transition: .2s all ease;
}

.emoji:hover {
    transform: scale(1.06);
    z-index: 10;
}

.emoji:after {
    position: absolute;
    bottom: 100%;
    left: 50%;
    font-weight: normal;
    color: #8A8A8A;
    content: attr(data-tooltip);
    background: #0b0c0cc2;
    margin-bottom: 13px;
    font-size: 25px;
    transform: translate(-50%, 0);
    height: 50px;
    padding: 1px 19px;
    line-height: 46px;
    border-radius: 50px;
    opacity: 0;
    transition: .2s all ease;
    color: #ffffff;
}

.emoji:hover:after {
    opacity: 1;
}

.emoji__face,
.emoji__eyebrows,
.emoji__eyes,
.emoji__mouth,
.emoji__tongue,
.emoji__heart,
.emoji__hand,
.emoji__thumb {
    position: absolute;
}

.emoji__face:before,
.emoji__face:after,
.emoji__eyebrows:before,
.emoji__eyebrows:after,
.emoji__eyes:before,
.emoji__eyes:after,
.emoji__mouth:before,
.emoji__mouth:after,
.emoji__tongue:before,
.emoji__tongue:after,
.emoji__heart:before,
.emoji__heart:after,
.emoji__hand:before,
.emoji__hand:after,
.emoji__thumb:before,
.emoji__thumb:after {
    position: absolute;
    content: '';
}

.emoji__face {
    width: inherit;
    height: inherit;
}

/* Like Emoji */
.emoji__like {
    background: linear-gradient(to bottom, #32A0FB, #2155CD);
}

.emoji__like .emoji__hand {
    left: 25px;
    bottom: 30px;
    width: 20px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 5px;
    z-index: 0;
    -webkit-animation: hands-up 2s linear infinite;
    animation: hands-up 2s linear infinite;
}

.emoji__like .emoji__hand:before {
    left: 25px;
    bottom: 5px;
    width: 40px;
    background: inherit;
    height: 10px;
    border-radius: 2px 10px 10px 2px;
    box-shadow: 1px -9px 0 1px #FFFFFF, 2px -19px 0 2px #FFFFFF, 3px -29px 0 3px #FFFFFF;
}

.emoji__like .emoji__thumb {
    border-bottom: 20px solid #FFFFFF;
    border-left: 20px solid transparent;
    top: -25px;
    right: -25px;
    z-index: 2;
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-animation: thumbs-up 2s linear infinite;
    animation: thumbs-up 2s linear infinite;
}

.emoji__like .emoji__thumb:before {
    border-radius: 50% 50% 0 0;
    background: #FFFFFF;
    width: 10px;
    height: 12px;
    left: -10px;
    top: -8px;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    box-shadow: -1px 4px 0 -1px #FFFFFF;
}

/* Love Emoji */
.emoji__love {
    background: linear-gradient(to bottom, #F85C7D, #E01333);
}

.emoji__love .emoji__heart {
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    -webkit-animation: heart-beat 1s linear infinite alternate;
    animation: heart-beat 1s linear infinite alternate;
}

.emoji__love .emoji__heart:before,
.emoji__love .emoji__heart:after {
    left: calc(50% - 20px);
    top: calc(50% - 32px);
    width: 40px;
    height: 64px;
    background: #FFFFFF;
    border-radius: 20px 20px 0 0;
}

.emoji__love .emoji__heart:before {
    -webkit-transform: translate(20px) rotate(-45deg);
    transform: translate(20px) rotate(-45deg);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.emoji__love .emoji__heart:after {
    -webkit-transform: translate(-20px) rotate(45deg);
    transform: translate(-20px) rotate(45deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

/* Haha Emoji */
.emoji__haha .emoji__face {
    -webkit-animation: haha-face 2s linear infinite;
    animation: haha-face 2s linear infinite;
}

.comments__replies li:nth-child(1) {
    margin-top: 10px;
}

.emoji__haha .emoji__eyes {
    width: 26px;
    height: 6px;
    border-radius: 2px;
    left: calc(50% - 13px);
    top: 35px;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
    background: transparent;
    box-shadow: -25px 5px 0 0 #333C5E, 25px -5px 0 0 #333C5E;
}

.emoji__haha .emoji__eyes:after {
    left: 0;
    top: 0;
    width: 26px;
    height: 6px;
    border-radius: 2px;
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
    background: transparent;
    box-shadow: -25px -5px 0 0 #333C5E, 25px 5px 0 0 #333C5E;
}

.emoji__haha .emoji__mouth {
    width: 80px;
    height: 40px;
    left: calc(50% - 40px);
    top: 50%;
    background: #000000;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    z-index: 1;
    -webkit-animation: haha-mouth 2s linear infinite;
    animation: haha-mouth 2s linear infinite;
}

.emoji__haha .emoji__tongue {
    width: 70px;
    height: 30px;
    background: #D3264A;
    left: calc(50% - 35px);
    bottom: -10px;
    border-radius: 50%;
}

/* Wow Emoji */
.emoji__wow .emoji__face {
    -webkit-animation: wow-face 3s linear infinite;
    animation: wow-face 3s linear infinite;
}

.emoji__wow .emoji__eyebrows {
    left: calc(50% - 3px);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: transparent;
    box-shadow: -18px 0 0 0 #CC7700, -33px 0 0 0 #CC7700, 18px 0 0 0 #CC7700, 33px 0 0 0 #cc7700;
    -webkit-animation: wow-brow 3s linear infinite;
    animation: wow-brow 3s linear infinite;
}

.emoji__wow .emoji__eyebrows:before,
.emoji__wow .emoji__eyebrows:after {
    width: 24px;
    height: 20px;
    border: 6px solid #CC7700;
    box-sizing: border-box;
    border-radius: 50%;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    top: -3px;
    left: calc(50% - 12px);
}

.emoji__wow .emoji__eyebrows:before {
    margin-left: -25px;
}

.emoji__wow .emoji__eyebrows:after {
    margin-left: 25px;
}

.emoji__wow .emoji__eyes {
    width: 16px;
    height: 24px;
    left: calc(50% - 8px);
    top: 35px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 25px 0 0 0 #333C5E, -25px 0 0 0 #333C5E;
}

.emoji__wow .emoji__mouth {
    width: 30px;
    height: 45px;
    left: calc(50% - 15px);
    top: 50%;
    border-radius: 50%;
    background: linear-gradient(to bottom, #4D2210, #742F08);
    -webkit-animation: wow-mouth 3s linear infinite;
    animation: wow-mouth 3s linear infinite;
}

/* Sad Emoji */
.emoji__sad .emoji__face {
    -webkit-animation: sad-face 2s ease-in infinite;
    animation: sad-face 2s ease-in infinite;
}

.emoji__sad .emoji__eyebrows {
    left: calc(50% - 3px);
    top: 35px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: transparent;
    box-shadow: -40px 9px 0 0 #cc7700, -25px 0 0 0 #cc7700, 25px 0 0 0 #cc7700, 40px 9px 0 0 #cc7700;
}

.emoji__sad .emoji__eyebrows:before,
.emoji__sad .emoji__eyebrows:after {
    width: 30px;
    height: 20px;
    border: 6px solid #cc7700;
    box-sizing: border-box;
    border-radius: 50%;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    top: 2px;
    left: calc(50% - 15px);
}

.emoji__sad .emoji__eyebrows:before {
    margin-left: -30px;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

.emoji__sad .emoji__eyebrows:after {
    margin-left: 30px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}

.emoji__sad .emoji__eyes {
    width: 14px;
    height: 16px;
    left: calc(50% - 7px);
    top: 50px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 25px 0 0 0 #333C5E, -25px 0 0 0 #333C5E;
}

.emoji__sad .emoji__eyes:after {
    background: #548DFF;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    border-radius: 0 100% 40% 50% / 0 50% 40% 100%;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-animation: tear-drop 2s ease-in infinite;
    animation: tear-drop 2s ease-in infinite;
}

.emoji__sad .emoji__mouth {
    width: 60px;
    height: 80px;
    left: calc(50% - 30px);
    top: 80px;
    box-sizing: border-box;
    border: 6px solid #4D2210;
    border-radius: 50%;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    background: transparent;
    -webkit-animation: sad-mouth 2s ease-in infinite;
    animation: sad-mouth 2s ease-in infinite;
}

.emoji__sad .emoji__mouth:after {
    width: 6px;
    height: 6px;
    background: transparent;
    border-radius: 50%;
    top: 4px;
    left: calc(50% - 3px);
    box-shadow: -18px 0 0 0 #000000, 18px 0 0 0 #000000;
}

/* Angry Emoji */
.emoji__angry {
    background: linear-gradient(#d93902 -2%, #ea802d);
    background-size: 100%;
    -webkit-animation: angry-color 2s ease-in infinite;
    animation: angry-color 2s ease-in infinite;
    background-position: top;
}

.emoji__angry .emoji__face {
    -webkit-animation: angry-face 2s ease-in infinite;
    animation: angry-face 2s ease-in infinite;
}

.emoji__angry .emoji__eyebrows {
    left: calc(50% - 3px);
    top: 49px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: transparent;
    box-shadow: -44px 5px 0 0 #BC3B01, -7px 16px 0 0 #BC3B01, 7px 16px 0 0 #BC3B01, 44px 5px 0 0 #BC3B01;
    transform: scale(1, 1.2) translate(0px, -21px);
    opacity: .2;
}

.emoji__angry .emoji__eyebrows:before,
.emoji__angry .emoji__eyebrows:after {
    width: 50px;
    height: 20px;
    border: 6px solid #000000;
    box-sizing: border-box;
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    top: 0;
    left: calc(50% - 25px);
}

.emoji__angry .emoji__eyebrows:before {
    margin-left: -25px;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}

.emoji__angry .emoji__eyebrows:after {
    margin-left: 25px;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}

.emoji__angry .emoji__eyes {
    width: 12px;
    height: 12px;
    left: calc(50% - 6px);
    top: 70px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 15px 0 0 0 #343C61, -15px 0 0 0 #343C61;
    transform: scale(1.7) translate(0px, -9px);
}

.emoji__angry .emoji__mouth {
    width: 26px;
    height: 25px;
    left: 50%;
    border-radius: 70px;
    transform: translate(-50%, 0%);
    bottom: 25px;
    background: linear-gradient(to bottom, #4D2210, #742F08);
    -webkit-animation: angry-mouth 2s ease-in infinite;
    animation: angry-mouth 2s ease-in infinite;
}

/* Footer Messages (Notifications) */
.footer__messags {
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translate(50%, 300px);
    padding: 15px 30px 15px 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.footer__messags.error {
    color: red;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.footer__messags.success {
    color: #2ba146;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.footer__messags.show {
    transform: translate(50%, 0);
    opacity: 1;
    visibility: visible;
}

.footer__messags>i {
    font-size: 18px;
}

.footer__messags .close__alert {
    font-size: 20px;
    position: absolute;
    left: 20px;
    cursor: pointer;
}

/* Animations */
@-webkit-keyframes heart-beat {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    75% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
}

@keyframes heart-beat {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    75% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
}

@-webkit-keyframes haha-face {

    10%,
    30%,
    50% {
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
    }

    20%,
    40% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }

    60%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    70%,
    90% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes haha-face {

    10%,
    30%,
    50% {
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
    }

    20%,
    40% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }

    60%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    70%,
    90% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@-webkit-keyframes haha-mouth {

    10%,
    30%,
    50% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        top: 45%;
    }

    20%,
    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        top: 45%;
    }

    60%,
    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        top: 50%;
    }

    70% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        top: 50%;
    }

    90% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        top: 50%;
    }
}

@keyframes haha-mouth {

    10%,
    30%,
    50% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        top: 45%;
    }

    20%,
    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        top: 45%;
    }

    60%,
    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        top: 50%;
    }

    70% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        top: 50%;
    }

    90% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        top: 50%;
    }
}

@-webkit-keyframes wow-face {

    15%,
    25% {
        -webkit-transform: rotate(20deg) translateX(-25px);
        transform: rotate(20deg) translateX(-25px);
    }

    45%,
    65% {
        -webkit-transform: rotate(-20deg) translateX(25px);
        transform: rotate(-20deg) translateX(25px);
    }

    75%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
}

@keyframes wow-face {

    15%,
    25% {
        -webkit-transform: rotate(20deg) translateX(-25px);
        transform: rotate(20deg) translateX(-25px);
    }

    45%,
    65% {
        -webkit-transform: rotate(-20deg) translateX(25px);
        transform: rotate(-20deg) translateX(25px);
    }

    75%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
}

@-webkit-keyframes wow-brow {

    15%,
    65% {
        top: 25px;
    }

    75%,
    100%,
    0% {
        top: 15px;
    }
}

@keyframes wow-brow {

    15%,
    65% {
        top: 25px;
    }

    75%,
    100%,
    0% {
        top: 15px;
    }
}

@-webkit-keyframes wow-mouth {

    10%,
    30% {
        width: 20px;
        height: 20px;
        left: calc(50% - 10px);
    }

    50%,
    70% {
        width: 30px;
        height: 40px;
        left: calc(50% - 15px);
    }

    75%,
    100% {
        height: 50px;
    }
}

@keyframes wow-mouth {

    10%,
    30% {
        width: 20px;
        height: 20px;
        left: calc(50% - 10px);
    }

    50%,
    70% {
        width: 30px;
        height: 40px;
        left: calc(50% - 15px);
    }

    75%,
    100% {
        height: 50px;
    }
}

@-webkit-keyframes sad-face {

    25%,
    35% {
        top: -15px;
    }

    55%,
    95% {
        top: 10px;
    }

    100%,
    0% {
        top: 0;
    }
}

@keyframes sad-face {

    25%,
    35% {
        top: -15px;
    }

    55%,
    95% {
        top: 10px;
    }

    100%,
    0% {
        top: 0;
    }
}

@-webkit-keyframes sad-mouth {

    25%,
    35% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        top: 70px;
    }

    55%,
    100%,
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        top: 80px;
    }
}

@keyframes sad-mouth {

    25%,
    35% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        top: 70px;
    }

    55%,
    100%,
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        top: 80px;
    }
}

@-webkit-keyframes tear-drop {

    0%,
    100% {
        display: block;
        left: 35px;
        top: 15px;
        -webkit-transform: rotate(45deg) scale(0);
        transform: rotate(45deg) scale(0);
    }

    25% {
        display: block;
        left: 35px;
        -webkit-transform: rotate(45deg) scale(2);
        transform: rotate(45deg) scale(2);
    }

    49.9% {
        display: block;
        left: 35px;
        top: 65px;
        -webkit-transform: rotate(45deg) scale(0);
        transform: rotate(45deg) scale(0);
    }

    50% {
        display: block;
        left: -35px;
        top: 15px;
        -webkit-transform: rotate(45deg) scale(0);
        transform: rotate(45deg) scale(0);
    }

    75% {
        display: block;
        left: -35px;
        -webkit-transform: rotate(45deg) scale(2);
        transform: rotate(45deg) scale(2);
    }

    99.9% {
        display: block;
        left: -35px;
        top: 65px;
        -webkit-transform: rotate(45deg) scale(0);
        transform: rotate(45deg) scale(0);
    }
}

@keyframes tear-drop {

    0%,
    100% {
        display: block;
        left: 35px;
        top: 15px;
        -webkit-transform: rotate(45deg) scale(0);
        transform: rotate(45deg) scale(0);
    }

    25% {
        display: block;
        left: 35px;
        -webkit-transform: rotate(45deg) scale(2);
        transform: rotate(45deg) scale(2);
    }

    49.9% {
        display: block;
        left: 35px;
        top: 65px;
        -webkit-transform: rotate(45deg) scale(0);
        transform: rotate(45deg) scale(0);
    }

    50% {
        display: block;
        left: -35px;
        top: 15px;
        -webkit-transform: rotate(45deg) scale(0);
        transform: rotate(45deg) scale(0);
    }

    75% {
        display: block;
        left: -35px;
        -webkit-transform: rotate(45deg) scale(2);
        transform: rotate(45deg) scale(2);
    }

    99.9% {
        display: block;
        left: -35px;
        top: 65px;
        -webkit-transform: rotate(45deg) scale(0);
        transform: rotate(45deg) scale(0);
    }
}

@-webkit-keyframes hands-up {
    25% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    50% {
        -webkit-transform: rotate(-15deg) translateY(-10px);
        transform: rotate(-15deg) translateY(-10px);
    }

    75%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes hands-up {
    25% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    50% {
        -webkit-transform: rotate(-15deg) translateY(-10px);
        transform: rotate(-15deg) translateY(-10px);
    }

    75%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes thumbs-up {
    25% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    50%,
    100% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
}

@keyframes thumbs-up {
    25% {
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    50%,
    100% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
}

@-webkit-keyframes angry-color {

    45%,
    60% {
        background-size: 250%;
    }

    85%,
    100%,
    0% {
        background-size: 100%;
    }
}

@keyframes angry-color {

    45%,
    60% {
        background-size: 280%;
    }

    85%,
    100%,
    0% {
        background-size: 400%;
    }
}

@-webkit-keyframes angry-face {

    35%,
    60% {
        -webkit-transform: translateX(0) translateY(10px) scale(0.9);
        transform: translateX(0) translateY(10px) scale(0.9);
    }

    40%,
    50% {
        -webkit-transform: translateX(-5px) translateY(10px) scale(0.9);
        transform: translateX(-5px) translateY(10px) scale(0.9);
    }

    45%,
    55% {
        -webkit-transform: translateX(5px) translateY(10px) scale(0.9);
        transform: translateX(5px) translateY(10px) scale(0.9);
    }
}

@keyframes angry-face {

    35%,
    60% {
        -webkit-transform: translateX(0) translateY(10px) scale(0.9);
        transform: translateX(0) translateY(20px) scale(0.9);
    }

    40%,
    50% {
        -webkit-transform: translateX(-5px) translateY(10px) scale(0.9);
        transform: translateX(-5px) translateY(20px) scale(0.9);
    }

    45%,
    55% {
        -webkit-transform: translateX(5px) translateY(10px) scale(0.9);
        transform: translateX(5px) translateY(20px) scale(0.9);
    }
}

@-webkit-keyframes angry-mouth {

    25%,
    50% {
        height: 6px;
        bottom: 25px;
    }
}

@keyframes angry-mouth {

    25%,
    50%,
    75% {
        height: 6px;
        bottom: 33px;
        width: 36px;
    }
}

.comments__replies .comments__list__ul li {
    border: 0;
    padding: 15px 0 0;
}

.comments__list .comments__list__ul>li:nth-child(even) {
    background: #f9f9f9;
}

ul.comments__list__ul.list-replies {
    border: 0;
}