.models_webcam .item .img img:first-child {
    object-fit: cover;
}

.models_webcam .item .title .status {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #04F000;
    position: relative;
    top: 3px;
    margin: 0 0 0 5px;
}

.group-links {
    background: #161616;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 767px) {
    .group-links {
        display: none;
    }
}

.group-links .btn {
    padding: 12px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.143;
    transition: color .3s;
    flex-shrink: 1;
    flex-grow: 1;
    text-align: center;
    background: transparent;
    border: none;
    cursor: pointer;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    color: #fff;
    border-color: #282828;
    position: relative;
}

.group-links .btn span {
    position: relative;
}

.group-links .btn [data-attr-status]::before {
    content: '';
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    overflow: hidden;
    background: #04F000;
    box-shadow: 0 0 9px 0 rgba(4, 240, 0, 0.5);
}

.group-links .btn:last-child {
    border-right: none;
}