﻿/* LMBX form styles */

input {
    font-family: Open Sans,Helvetica,sans-serif,serif;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid #AAA;
    font-size: 14px;
    height: 30px;
    resize: none;
}

textarea {
    font-family: Open Sans,Helvetica,sans-serif,serif;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid #AAA;
    font-size: 14px;
    resize: none;
    vertical-align: top
}

select {
    font-family: Open Sans,Helvetica,sans-serif,serif;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid #AAA;
    font-size: 14px;
    height: 30px;
    resize: none;
}

input[type=checkbox] {
    vertical-align: middle;
}

input[type=text], input[type=password], input[type=date], input[type=datetime-local], textarea {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    padding: 3px 0px 3px 3px;
    margin: 5px 1px 3px 0px;
    border: 1px solid #AAA;
}

    input[type=text]:focus, input[type=password]:focus, input[type=date]:focus, input[type=datetime-local]:focus, textarea:focus {
        box-shadow: 0 0 5px rgba(81, 203, 238, 1);
        padding: 3px 0px 3px 3px;
        margin: 5px 1px 3px 0px;
        border: 1px solid rgba(81, 203, 238, 1);
    }

input[type=file] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.input75 {
    width: 75px;
}

.input100 {
    width: 100px;
}

.input100p {
    width: 100%;
}

.input150 {
    width: 150px;
}

.input175 {
    width: 175px;
}

.input200 {
    width: 200px;
}

.input250 {
    width: 250px;
}

.input275 {
    width: 275px;
}

.input300 {
    width: 300px;
}

.input350 {
    width: 350px;
}

.input400 {
    width: 400px;
}

.input450 {
    width: 450px;
}

.input100p-75 {
    width: 100%;
    height: 75px;
}

.input100p-100 {
    width: 100%;
    height: 100px;
}

.input100p-175 {
    width: 100%;
    height: 175px;
}

.input100p-250 {
    width: 100%;
    height: 250px;
}

.input175-175 {
    width: 175px;
    height: 175px;
}

.input000 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

label input[type="file"] {
    position: fixed;
    top: -1000px;
}

.button-link {
    background-color: transparent;
    border: none;
    font: inherit;
    color: inherit;
    text-decoration: underline;
}

    .button-link:hover {
        text-decoration: none;
    }
