input, .input, select, textarea, option{
    /* display */
    display: block;
    width: 100%; height: 32px;
    padding: 6px 12px;
    background-color: #f3f3f3;
    background-image: none;
    /* font */

    line-height: 1.42857143;
    font-size: 13px;
    color: #555;
    /* border */
    border: 1px solid #ccc;
    box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none;
    border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px;
    outline: none !important;
    /* transition */
    -webkit-transition: width 0.4s, border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: width 0.4s, border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: width 0.4s, border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
textarea{
    height: 100px;
}

input[type=checkbox] {
    line-height: 3;
    margin: 13px 0 0;
    float: left;
    width: 50px;
    transform: scale(0.8);
}
label[for=remember] { line-height: 3.4; margin: 0; }

button, .button {
    cursor: pointer;
    background: #FF8c00;
    box-shadow: none;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4857;
    padding: 6px 12px;
    margin: 4px;
    border: 1px #ff6600 solid;
    border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px;
    transition: all 500ms ease; -webkit-transition: all 500ms ease; -o-transition: all 500ms ease;

    text-shadow: 1px 1px 0 #111;
}
input:focus{ border-color: #ffffff; }
button:hover, .button:hover{ background-color: #b04000; border-color: #ffffff; }

button:disabled,
button[disabled]{
    border: 1px #666666 solid !important;
    background-color: #AAA !important;
    color: #EEE !important;
}

button.large{
    padding: 10px 16px;
    font-size: 16px;
    line-height: 1.3333333;
    border-radius: 6px; -webkit-border-radius: 6px; -moz-border-radius: 6px;
}

label.button.img-icon{
    cursor: pointer;
    padding: 1px 4px 0;
    /* font-size: 14px; */
    line-height: 1;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

button.stretch{ width: 100%; }

button.red, .button.red{
    color: #FFF;
    background: #ef4040;
    border-color: #ed2828;
}
button.red:hover{
    background-color: #9d0d0d;
    border-color: #FFF; }

button.purple, label.purple{
    color: #FFF;
    background: #a98d95;
    border-color: #735860;
}
button.purple:hover, label.purple:hover{
    background-color: #5b4148;
    border-color: #FFF; }


/* SEARCH BAR */
.searchbutton {
    display: block;
    font-size: 14px;
    width: 32px; height: 30px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    user-select: none;-moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; -khtml-user-select: none;
}


.search {
    position: absolute;
    right: 80px; /* left: auto; */
    color: #FFF;
    outline: none;
    border: none;
    padding: 0;
    width: 0;
    height: 32px;
    z-index: 10;
}
.searchbar {
    position: absolute;
    top: 0; /* left: auto; */
    right: 4px; /* left: auto; */
    color: #FFF;
    background-color: darkorange;
    outline: none;
    border: none;
    padding: 0;
    width: 0;
    height: 32px;
    z-index: 10;
}

.searchbar:focus {
    width: 363px; /* Bar width+1px */
    padding: 0 16px 0 0;
}

