.text {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;

    background-color: #ffffff;
    border: solid 1px rgba(0,0,0,0.1);

    font-size: 15px;
    color: #9b9797;

    padding: 12px 15px;
    width: 100%;
}

.text:focus {
    box-shadow: 0 0 10px 0 rgba(33, 25, 21, 0.2);
    -moz-box-shadow: 0 0 10px 0 rgba(33, 25, 21, 0.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(33, 25, 21, 0.2);
    border: solid 1px #e5e5e5;
}

.text.transparent {
    border:1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background-color: transparent;
}
.text.transparent:focus {
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2);
}

.formGroup {
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

.radioScope,
.checkboxScope {
    cursor: pointer;
    width: 100%;
    display: block;
    float: left;
}

.content {
    display: inline;
    margin-left: 6px;
    color: #9b9797;
    float: left;
    position: relative;
    top: 1px;
    font-size: 14px;
}

.checkbox {
    position: absolute;
    z-index: -1;
    visibility: hidden;
}
.checkbox + div {
    float: left;
    content: ' ';
    display: block;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background-color: #ffffff;
    border: solid 1px #9b9797;
    width: 20px;
    height: 20px;
    color: #EE4459;
    padding: 2px;
    position: relative;
    top: 1px;
}

.checkbox:checked + div:after {
    /*Add another block-level blank space*/
    content: '';
    display: block;

    /*Make it a small rectangle so the border will create an L-shape*/
    width: 6px;
    height: 10px;

    /*Add a white border on the bottom and left, creating that 'L' */
    border: solid #EE4459;
    border-width: 0 2px 2px 0;

    /*Rotate the L 45 degrees to turn it into a checkmark*/
    transform: rotate(45deg);

    position: relative;
    left: 4px;
    top: 1px;
}




.radio {
    position: absolute;
    z-index: -1;
    visibility: hidden;
}
.radio + div {
    float: left;
    content: ' ';
    display: block;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    background-color: #ffffff;
    border: solid 1px #9b9797;
    width: 20px;
    height: 20px;
    color: #EE4459;
    padding: 2px;
    position: relative;
    top: 1px;
}

.radio:checked + div:after {
    content: '\2022';
    color: #EE4459;
    display: block;
    position: relative;
    font-size: 24px;
    line-height: 0;
    top: 7px;
    left: 3px;
    
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: lighter;
}

select::-ms-expand {
    display:none;
}

.select + .arrow:after {
    content: '\2303';
    transform: rotate(180deg);
    color: #EE4459;
    float: right;
    position: relative;
    margin-bottom: -25px;
    pointer-events: none;
    top: -38px;
    left: -7px;
    font-size: 18px;
}

.boxField {
    position: relative;
    float: left;
    width: 100%;
}

.error-icon {
    position: absolute;
    color: #EE4459;
    top: 13px;
    right: 10px;
    font-size: 14px;
}
.error {
    position: absolute;
    background-color: #333;
    color: #ffffff;
    padding: 4px 10px;
    display: inline;
    right: 0;
    top: -16px;
    font-size: 12px;

    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
.error:after {
    content: ' ';
    background: transparent;
    border: 6px solid transparent;
    position: absolute;
    bottom: -3px;
    right: 11px;
    margin: 0 0 -8px 0;
    border-top-color: #333;
}

.themegrey {
    border: 1px solid #9b9797 !important;
    color: #666666 !important;
}

.textarea {
    width:100%;
    min-height: 80px;
    resize: none;
    font-family: inherit;
}