.hide {
    display: none;
}

.cabinet-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
}

.cabinet-wrapper a {
    text-decoration: none;
    transition: all .2s linear;
}

.cab-aside {
    width: 25%;
    padding: 15px 10px 15px 0;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.cab-aside ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tab_nav {
    cursor: pointer;
}

.tab_nav.active>span {
    color: yellow;
}

.cab-main {
    width: 75%;
    box-sizing: border-box;
    padding: 15px 15px 15px 25px;
}

.cabinet-tab {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cabinet-heading {
    font-size: 1.6rem;
    margin: 0 0 1.5rem;
}

.group-heading {
    margin: 0;
    margin-bottom: 1rem;
}

.cabinet-tab-row {
    margin: 20px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.tab-row-group {
    margin-bottom: 1.6rem;
}

.tab-row-item {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 15px 0 5px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tab-row-item .name {
    width: 50%;
}

.tab-row-item .value {
    width: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.hidden-radio {
    position: relative;
}

.hidden-radio input {
    position: absolute;
    width: 0;
    height: 0;
}

.hidden-radio input:checked+.radio-label::after {
    width: 8px;
    height: 8px;
}

.hidden-radio .radio-label {
    position: relative;
    display: inline-block;
    padding: 0 0 0 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hidden-radio .radio-label:before {
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid;
    border-radius: 50%;
    position: absolute;
    left: 0;
}

.hidden-radio .radio-label:after {
    content: '';
    width: 0px;
    height: 0px;
    border: 0;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 3px;
    transition: all .15s linear;
    background: red;
}

.phone-inputs-holder {
    width: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cabinet-wrapper span.editable {
    color: green;
}

.cabinet-wrapper .heading {
    color: rgba(111, 194, 162, 0.549);
}
