.play-btn-video::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    inset-inline-end: 0;
    /*left: 0;*/
    z-index: -1;
    background-color: #121212;
    border-radius: .375rem;
    -webkit-animation: ripple-wave 1s linear infinite;
    animation: ripple-wave 1s linear infinite;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@-webkit-keyframes ripple-wave {
    0% {
        opacity: 0.8;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

@keyframes ripple-wave {
    0% {
        opacity: 0.8;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

.list.active {
    background-color: var(--color-light-blue);
    color: #121212;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-group label{
    padding:.25rem .5rem;
    background: #f9f9f9;
    border-radius: .25rem;
    color: #686868;
    transition: all .15s ease;
    font-size: 0.75rem;
    line-height: 1rem;
    cursor: pointer;
    border: 1px solid #d3d3d3;
}

.btn-group input{
    display: none;
}

.btn-group label:has(*:checked) {
    background-color: var(--theme-primary);
    transform: scale(1.1,1.1);
    color: #ffffff;
     border: 1px solid #121212;
}