.user-wrapper h1 {
    margin: 0;
}

.user-header{
    /*margin-top: 1px;*/
    background: rgba(54, 54, 54, 0.576470588235294);
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.user-menu{
    padding: 5px;
    margin: 0;
    display: flex;
    list-style: none;
    font-size: 18px;
}

.user-menu li{
    height: 50px;
    width: 140px;
    margin: 7px 40px 7px 0;
    padding: 0;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}

.user-menu li:last-child{
    margin-right: 0;
}

.user-menu li:hover{
    box-shadow: 2px 5px 7px #c4c5e4;
}

.user-menu li.active{
    background: #33343c;
    color: #ffffff;
}

.user-menu li a{
    color: inherit;
    display: block;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
}

.user-menu li a:hover{
    color: inherit;
}

@media screen and (min-width: 767px) {
    .user-menu{
        padding: 30px 30px 30px 0;
    }
}

.user-panel{
    padding: 15px;
    background: #ffffff;
    margin-bottom: 20px;
    border: 1px solid #dadada;
    border-radius: 5px;
}

.user-panel_title{
    text-decoration: underline;
    font-size: 18px;
}

.user-panel_title:before{
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("../images/icons/edit.png") no-repeat;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

.user-panel_title:hover:before{
    background-image: url("../images/icons/edit_red.png");
}

.user-data{
    padding-bottom: 10px;
}

.user-data_item{
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
}

.user-data_label{
    font-size: 10px;
    color: #b1b1b1;
    text-transform: uppercase;
}

.user-data_val{
    font-size: 14px;
    color: #333333;
    text-align: right;
    font-weight: 700;
}

#user-profile .form-group {
    width: 100%;
}

#user-profile .selectize-input,
#user-profile .form-control:not(.selectize-control) {
    border-radius: 0 !important;
    border: none;
    box-shadow: none;
    width: 100%;
    height: auto;
    padding: 15px;
    background: #f3f3f3;
    font-size: 18px;
    font-weight: 700;
}

#user-profile .form-control:not(.selectize-control):disabled {
    color: #b3b3b3;
}

#user-profile label {
    font-weight: normal;
    font-size: 10px;
    color: #b1b1b1;
    text-transform: uppercase;
}

#user-profile input[type=radio] {
    opacity: 0;
}

#user-profile input[type=radio] + label {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    color: #aba5a5;
    padding-left: 10px;
}

#user-profile input[type=radio]:checked + label {
    color: #555;
}

#user-profile input[type=radio] + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -16px;
    display: block;
    width: 18px;
    height: 18px;
    border: 2px solid #b21919;
    border-radius: 50%;
}

#user-profile input[type=radio]:checked + label:after {
    content: '';
    position: absolute;
    top: 6px;
    left: -12px;
    display: block;
    width: 10px;
    height: 10px;
    background: #b21919;
    border-radius: 50%;
}

#user-profile .user-data_passenger .input-subinfo {
    float: right;
    display: block;
    color: rgb(204, 204, 204);
    margin-left: 5px;
}

#user-profile .user-data_passenger .helper {
    float: right;
    width: 16px;
    height: 16px;
    background: rgb(215, 215, 215);
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
}

#user-profile .btn{
    height: 60px;
    line-height: 60px;
    border-radius: 3px;
    border: none;
    color: white;
    padding: 0;
    text-align: center;
    width: 160px;
    text-transform: uppercase;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 3cdpx 7px;
}

.user-data_passenger-notice{
    background: rgba(204, 204, 204, 1);
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-data_passenger-notice i {
    font-size: 36px;
    margin-right: 10px;
}

.user-data_passenger-notice i:before {
    content: '';
    display: block;
    width: 34px;
    height: 34px;
    background: url("../images/icons/attention.png") no-repeat;
}

@media screen and (min-width: 767px) {
    .user-panel {
        padding: 20px 30px;
    }

    .user-data_item{
        flex-direction: column;
    }

    .user-data_val{
        text-align: left;
    }

    .user-data_passenger-notice{
        flex-direction: row;
    }
}