@keyframes myAnimation{
    from{
        transform: rotate(0deg)
    }to{
        transform: rotate(180deg)
    }
}

.talent-person-constract{
    display: inline-block;
    height: 50px;
    z-index: 6;
    .no-persons{
        line-height: 50px;
        display: inline-block;
        margin-left: 20px;
    }
    .persons-list{
        margin-left: 13.5px;
        margin-top: 3px;
        display: inline-block;
        vertical-align: top;
        height: 47px;
        .person-item{
            display: inline-block;
            position: relative;
            width: 53px;
            .item-avatar{
                width: 30px;
                height: 30px;
                border-radius: 100%;
                margin: 0 auto;
                .delete-cover-avatar{
                    display: none;
                    position: absolute;
                    top: 0;
                    left: 11.5px;
                    color: #ffffff;
                    background: rgba(0, 0, 0, 0.3);
                    text-align: center;
                    line-height: 30px;
                }
                &:hover{
                    .delete-cover-avatar{
                        display: block;
                        width: 30px;
                        height: 30px;
                        border-radius: 100%;
                    } 
                }
            }
            .person-name{
                font-size: 12px;
                line-height: 12px;
                height: 12px;
                display: inline-block;
                width: 100%;
                text-align: center;
                margin-top: 2px;
            }
            .delete-text{
                display: none;
                font-size: 12px;
                line-height: 12px;
                height: 12px;
                color: #058edf;
            }
            .delete-text-show{
                display: inline-block;
                position: absolute;
                bottom: 0;
                width: 100%;
                left: 0px;
                top: 32px;
                background: #ffffff;
                text-align: center;                
            }
        }
    }
    .vs-button{
        display: inline-block;
        width: 95px;
        height: 35px;
        background: #55c6c6;
        border-radius: 100px;
        margin-left: 40.5px;
        margin-right: 10px;
        line-height: 35px;
        color: #ffffff;
        vertical-align: top;
        margin-top: 7.5px;
        cursor: pointer;
        text-align: center;
        font-size: 16px;
        label{
            font-weight: bold;
            cursor: pointer;        
        }
    }
    .no-click{
        opacity: 0.6;
        cursor: not-allowed;
    }
    .close-pop{
        width: 34px;
        height: 34px;
        border-radius: 100px;
        background: #C3CBD1;
        color: #ffffff;
        font-size: 12px;
        line-height: 34px;
        text-align: center;
        margin-right: 8px;
        margin-top: 8px;
        display: inline-block;
        font-weight: bold;
        vertical-align: top;
        animation: myAnimation .5s ease;
        cursor: pointer;
    }
}