.textInput {
    display: block;
    font-family: inherit;
    font-size: 18px;
    padding: 5px;
    padding-left: 10px;
    box-sizing: border-box;
    width: 100%;
    border-radius: 5px;
    border: 1px solid lightgray;
    background: white;
    transition: border-color 0.15s;
    text-overflow: ellipsis;
}

.textInput:focus {
    outline: none;
    border-color: rgb(64, 64, 64);
}

.textarea {
    display: block;
    font-family: inherit;
    font-size: 18px;
    padding: 5px;
    padding-left: 10px;
    box-sizing: border-box;
    width: 100%;
    border-radius: 5px;
    border: 1px solid lightgray;
    background: white;
    transition: border-color 0.15s;
    resize: none;
    font-size: 14px;
    height: 150px;
}

.textarea:focus {
    outline: none;
    border-color: rgb(64, 64, 64);
}

button {
    background: white;
    font-family: inherit;
    font-size: 18px;
    border-radius: 50px;
    border: 1px solid lightgray;
    padding: 5px 15px;
    transition: background 0.15s, transform 0.15s;
    cursor: pointer;
    margin-bottom: 5px;
}

button:hover {
    background: rgb(240, 240, 240);
}

button:active {
    transform: scale(1.05);
}

.clickableImage {
    transition: opacity 0.15s, transform 0.15s;
    cursor: pointer;
    opacity: 0.5;
}

.clickableImage:hover {
    opacity: 0.75;
    transform: scale(1.15);
}

.buttonPositive {
    background: #ccffcc;
}

.checkbox {
    margin: 0;
    height: 30px;
    width: 30px;
    /* background: rgba(0,0,0,0.15); */
    vertical-align: top;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid lightgray;
    /* background-color: white; */
    box-sizing: border-box;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    position: relative;
    background-color: white;
}

.checkbox[type="radio"] {
    border-radius: 1000px;
}

.checkbox:hover {
    background: rgb(240, 240, 240);
}

.checkbox:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    height: 14px;
    width: 14px;
    display: block;
    /*border: 9px solid rgb(64,64,64);*/
    overflow: hidden;
    background: rgb(64, 64, 64);
    box-sizing: border-box;
    border-radius: 0px;
    opacity: 0;
    transform: scale(1.25);
    transition: all 0.15s;
}

.checkbox:checked:after {
    transform: scale(1);
    opacity: 1;
    border-radius: 1000px;
}

.checkbox:focus {
    outline: none;
}

.checkbox:active {
    transform: scale(1.1);
}

.checkboxLabel {
    height: 30px;
    display: inline-block;
    line-height: 30px;
    padding-left: 10px;
    cursor: pointer;
    vertical-align: top;
}

.textInputLabel {
    width: 75%;
}