.phs_field{
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    position: relative;
    clear: both;
    float: none;
    padding-right: 36px;
}
.phs_field:first-child{
    margin-top:0;
}
.phs_field .phs_elem{
    float:left;
    display:inline-block;
    vertical-align: top;
    margin-right:2px;
}
.phs_field .phs_elem_ph{
    margin-right:10px;
}
.phs_field .phs_input{
    width:200px;
    margin-bottom:2px;
}

@media screen and (max-width: 520px) {
    .phs_field{
        width:100%;
    }
    .phs_field .phs_input{
        width:calc(50% - 6px);
    }
}

@media screen and (max-width: 430px) {
    .phs_field .phs_input {
        width: 100%;
    }
}
.phs_field .phs_elem input{
    width:100%;
    height: 36px;
    line-height: 36px;
    border-radius: 3px;
    border: 1px solid #ccc;
    padding: 0 10px;
    transition: all ease .2s;
    outline: none!important;
}
.phs_field .phs_elem input:focus{
    border:1px solid #ff0000;
    box-shadow:0 0 0 2px rgba(255,0,0,.3);
}
.phs_field .phs_btns{
    margin-right:0;
    position:absolute;
    top:0;
    right:0;
}
.phs_field .phs_btn{
    width: 36px;
    float: left;
    height: 36px;
    position:relative;
    cursor:pointer;
    transition:all ease .15s;
}
.phs_field .phs_btn:before,
.phs_field .phs_btn:after{
    display:block;
    position:absolute;
    transition:all ease .15s;
}

.phs_field .phs_btn:before{
    content: '';
    width: 12px;
    height: 2px;
    left: 12px;
    top: 17px;
}

.phs_field .phs_del:before{
    background: #ff0000;
}

.phs_field .phs_del:hover:before{
    background: #de3333;
}
.phs_field .phs_add:before{
    background: #777;
}

.phs_field .phs_add:after{
    content: '';
    width: 2px;
    height: 12px;
    left: 17px;
    top: 12px;
    background: #777;
}

.phs_field .phs_add:hover:before,
.phs_field .phs_add:hover:after{
    background: #999;
}

.phs_phones_list{
    display: inline-block;
    vertical-align: top;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 2px;
    background: #fdfdfd;
}
.phs_phone{
    margin-top: 10px;
    line-height: 120%;
}

@media screen and (max-width: 520px) {
    .phs_phones_list{
        width:100%;
    }
    .phs_phone{
        display:inline-block;
        vertical-align:top;
        width:100%;
    }
}
.phs_phone:first-child{
    margin-top:0;
}
.phs_phone .phs_number{
    color:#333;
    font-size:16px;
    text-decoration:none!important;
    cursor:default;
}

.phs_phone .phs_person{
    font-size:13px;
    color:#999;
    padding-left:5px;
}