
.sl-wrapper {
    display: inline-block;
    font-size: larger;
    margin-top: 3px;
}

.sl-wrapper a {
    border-bottom: 0 !important;
    text-decoration: none !important;
}

.sl-button {
    background: transparent;
    border: none;
    font-size: 1em;
    line-height: 1;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.2em;
    color: #666;
    font-family: inherit;
}

.sl-button:hover {
    color: #da1b1b;
    transform: scale(1.05);
}

/* Colors */
.sl-button.liked {
    color: #da1b1b;
}

/* .sl-button.liked:hover {
    color: #b31515;
} */

.sl-button.liked span.sl-count,
.sl-count {
    color: #333;
    font-size: large;
}

/* Icon */
.sl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sl-icon svg {
    fill: currentColor;
    width: 1em;
    height: 0.9em;
    transition: transform 0.3s ease;
}

.sl-button:hover .sl-icon svg {
    transform: scale(1.1);
}

/* Count */
.sl-count {
    font-size: 0.9em;
    font-weight: 500;
    vertical-align: middle;
}

/* Loader */
.loader,
.loader:before,
.loader:after {
    background: rgba(218, 27, 27, 0.2);
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: .2em;
    height: .6em;
}

.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    content: '';
}

.loader:before {
    left: -.375em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader {
    text-indent: -9999em;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    font-size: 1em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader:after {
    left: .375em;
}

@-webkit-keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0 rgba(218, 27, 27, 0.2);
        height: .6em;
    }
    40% {
        box-shadow: 0 -.3em rgba(218, 27, 27, 0.2);
        height: 1em;
    }
}

@keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0 rgba(218, 27, 27, 0.2);
        height: .6em;
    }
    40% {
        box-shadow: 0 -.3em rgba(218, 27, 27, 0.2);
        height: 1em;
    }
}

.likes button{
    font-size: x-large;
}

