label {
    font-weight:400;
}
.textbox {
    padding:0px 10px 0 10px;
    border:1px solid #e5e5e5;
    color:#828282;
    font-size:16px;
    line-height:28px;
    outline:0;
    position: relative;
    background: #fff;
}
.textbox:after {
    color:#828282 !important;
    position: absolute;
    font-size:12px;
    right:5px;
    top:0;
    font-family: FontAwesome;
    -webkit-font-smoothing: antialiased;
    pointer-events: none;
    content: "\f078"
}
.textbox:focus {
    border-color: #d6d6d6;
}
.textbox.error {
    outline:1px solid #d64f45;
    background: rgba(255, 0, 0, 0.05);
}
.textbox.error2 {
    border-color:#d64f45;
    background: rgba(255, 0, 0, 0.05);
}
.textbox-label {
    line-height:30px;
}

.textarea{
    padding:15px;
    border:1px solid #e5e5e5;
    color:#828282;
    font-size:16px;
    outline:0;
    position: relative;
}


.selectbox {
    padding:0px;
    border:1px solid #e5e5e5;
    color:#828282;
    font-size:14px;
    line-height:28px;
    outline:0;
    display:inline-block;
    position: relative;
    overflow: hidden;
}
.selectbox select {
    border:none;
    background:transparent;
    width:100%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    padding:0 30px 0 10px;
}
.selectbox:after {
    color:#828282 !important;
    position: absolute;
    font-size:12px;
    right:5px;
    top:0;
    font-family: FontAwesome;
    -webkit-font-smoothing: antialiased;
    pointer-events: none;
    content: "\f078"
}
input.button {
    display:inline-block;
    padding:1px 10px;
    line-height:40px;
    height:40px;
    background:#e0189c;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    border-radius:2px;
    border:0;
    font-size:16px;
}

input.button.button-small {
    padding: 7px 6px !important;
    border-radius:4px;
    font-size: 14px;
    height: auto;
    line-height: normal;
}
a.button.button-small {
    padding: 3px 6px !important;
    border-radius:4px;
    font-size: 14px;
    height: auto;
    line-height: normal;
}


.checkbox, .radio {
    display:none;

}
.checkbox + label, .radio + label {
    cursor: pointer;
}
.checkbox + label .dummy, .radio + label .dummy {
    content: " ";
    height:20px;
    width:20px;
    background:#fff;
    border:1px solid #e5e5e5;
    display:inline-block;
    cursor: pointer;
    margin-right:5px;
    color:#000;
    text-align: center;
    font-size:16px;
    position: relative;
}
.checkbox + label:hover .dummy, .radio + label:hover .dummy {
    background:rgba(0,0,0,0.015);
}
.checkbox:disabled + label .dummy, .radio:disabled + label .dummy {
    background: #d9d9d9;
}
.checkbox + label .dummy .check, .radio + label .dummy .check {
    opacity:0;
    left:1px;
    width:100%;
    top:2px;
    position: absolute;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    -ms-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}
.checkbox:checked + label .dummy .check, .radio:checked + label .dummy .check {
    opacity:1;
}
.checkbox:disabled:checked + label .dummy .check, .radio:disabled:checked + label .dummy .check {
    color: #7d7d7d !important;
}
.checkbox + label span, .radio + label span {
    display:inline-block;
    position: relative;
    top:-3px;
    content: "\f00c";
}
.checkbox + label, .radio + label {
    font-size:16px;
    position: relative;
    top:3px;
    font-weight: lighter;
}

.radio + label .dummy {
    font-size:12px;
    border-radius:50%;
}
.radio + label .dummy .check {
    left:0.7px;
    top:3.4px;
}
.radio + label span {
    display:inline-block;
    position: relative;
    top:-4px;
}
