.webcams-vs{
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: #68B206;
    color: #fff;
    z-index: 2;
    padding: 8px 15px;
    border-radius: 22px;
    align-items: center;
    cursor: pointer;
}
.webcams-vs:hover{
    box-shadow: 0 0 13px #ccc;
}
.webcams-title{
    margin: 0 10px;
}
.webcams-vs a{
    text-decoration: none;
    color: #FE9A2F;
    margin: 0 10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    transition: background .3s linear;
}
.webcams-vs a.active-vs, .webcams-vs a:hover{
    color: #fff;
    background: #FE9A2F;
}
.webcams-vs a.active-vs{
    transform: scale(1.2);
}