.fake_checkbox {
    display: inline-block;
    width: 40px;
    height: 36px;
    /*background: url('/img/checkbox.png') center center no-repeat;*/
    cursor: pointer;
    float: left;
    margin: 0 10px 0 0;
    box-shadow: inset 0 0 7px #bbb;
    -moz-appearance: none;
    appearance: none;
    border-radius: 9px;
}
.fake_checkbox .checkbox_tick {
    background: url('../img/checkbox_tick.png') center center no-repeat;
    width: 23px;
    margin: 0 auto;
    opacity: 0;
    height: 100%;
    overflow: hidden;
    transition: all 300ms;
}
.fake_checkbox.checked .checkbox_tick {
    opacity: 1;
}

.fake_radio {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #515153;
    border-radius: 50%;
    cursor: pointer;
}

.fake_radio:hover {
    opacity: 0.7;
}
.fake_radio:active {
    opacity: 0.65;
    background: #ddd;
}

.fake_radio .check_circle {
    background: #00205b;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transition: opacity 200ms;
}

.fake_radio.checked .check_circle {
    opacity: 1;
}

.fake_radio.checked ~ label {
    font-weight: bold;
}

.fake_select,
.fake_input {
    display: inline-block;
    width: 100%;
    height: 40px;
    border: 1px solid #e6e6ec;
    border-radius: 5px;
    line-height: 38px;
    padding: 0 20px 0 8px;
    background: url('../img/select_arrow.png') center right 5px no-repeat;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*box-shadow: inset 0 0 7px #bbb;*/
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
}

.fake_input.arrow_right {
    background: url('../img/select_arrow_right.png') center right 5px no-repeat;
}
.fake_select.disabled {
    background-color: #eee;
    cursor: default;
}
.fake_select.empty {
    cursor: default;
    background: none;
    pointer-events: none;
}
.fake_select_expand {
    display: none;
    width: 100%;
    max-height: 131px;
    position: absolute;
    /*top: 31px;*/
    border: 1px solid #e6e6ec;
    background: #fff;
    z-index: 1;
    overflow-y: auto;
}

.fake_select_expand > div {
    padding: 7px 10px;
    word-wrap: break-word;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fake_select_expand > div:hover {
    background: #add8e6;
    color: #fff;
    cursor: pointer;
}

.fake_select_expand > div.disabled{
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #d9dbda;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
    display: none;
}

label {
    display: inline-block;
    font-weight: inherit;
    cursor: default;
    /*-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}

select {
    display: none;
}
