.register-label {
    /*register-label*/
}

.register-label__tab {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.register-label__tab-item {
    padding: 10px;
    text-transform: uppercase;
    border: 1px solid transparent;
    box-shadow: 0 1px 0 0 transparent;
    margin: 0 10px;
    transition: color .2s ease-out, border-bottom-color .2s ease-out, box-shadow .2s ease-out;
    cursor: pointer;
}

.register-label__tab-item:hover {
    border-bottom-color: #06abfc;
    box-shadow: 0 1px 0 0 #06abfc;
    color: #06abfc;
}

.register-label__tab-item_active {
    border-bottom-color: #039be5;
    box-shadow: 0 1px 0 0 #039be5;
    color: #039be5;
}

.custom-collection .collection .collection-item.avatar {
    min-height: auto;
}