.checkBox {
    background-color: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    height: 16px;
    position: relative;
    width: 16px;
    cursor: pointer;
}
.checkBox.active:after {
    background-color: #4066b8;
    border-radius: 4px;
    content: "";
    height: 12px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 12px;
}
.v-radio{
    align-items: center;
    display: flex;
}
.v-radio_checked {
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 18px;
    justify-content: center;
    padding: 2px;
    transition: all .2s;
    width: 18px;
}
.v-radio_checked.active {
    border-color: #4066b8;
}
.v-radio_checked:after{
    content: '';
    background-color: #fff;
    border-radius: 50%;
    height: 100%;
    transition: all .2s;
    width: 100%;
}
.v-radio_checked.active:after {
    background-color: #4066b8;
}
.wid50 {
    width: 48% !important;
    
}
.row_between{
    display: flex;
    justify-content: space-between;
}
.form-item  {
    width: 100%;
}
.checkBox_right {
    flex: 1;
    font-size: 12px;
    margin-left: 5px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
    -webkit-line-clamp: 1;
    line-height: 14px;
}
.flex{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.MessageBox >.message-box.error {
    background-color: #ff6221;

}
.MessageBox>.message-box{
    background-color: #33c676;
    color: #fff;
    display: flex;
    position:fixed;
    top: 40%;
    z-index: 30000;
    left: 50%;
    transform: translate(-50%);
    padding: 10px 20px;
}