#hiddenFormFields {
    display: none;
}

/***********************************
Text Input
***********************************/

.formElement {
    margin-bottom: 45px;
    position: relative;
}

.formElement input[type='text'] {
    border: none;
    border-bottom: 1px solid #757575;
    display: block;
    font-size: 18px;
    max-width: 90%;
    padding: 10px 10px 5px 0;
    width: 300px;
}

.formElement input[type='text']:focus {
    outline: none;
}

.formElement label {
    color: #999999;
    font-size: 18px;
    font-weight: normal;
    pointer-events: none;
    position: absolute;
    top: 10px;
    transition: 0.2s ease all;
}

.formElement input[type='text']:focus ~label, .formElement input[type='text'].used ~ label {
    color: #fcb514;
    font-size: 14px;
    top: -20px;
}

.inputBar {
    display: block;
    max-width: 90%;
    position: relative;
    width: 310px;
}

.inputBar:before, .inputBar:after {
    background: #fcb514;
    bottom: 1px;
    content: '';
    height: 2px;
    position: absolute;
    transition: 0.2s ease all;
    width: 0;
}

.inputBar:before {
    left: 50%;
}

.inputBar:after {
    right: 50%;
}

.formElement input:focus ~.inputBar:before, .formElement input:focus ~.inputBar:after {
    width: 50%  ;
}

.formElement textarea:focus ~.inputBar:before, .formElement textarea:focus ~.inputBar:after {
    width: 50%  ;
}

.inputHighlight {
    height: 60%;
    left: 0;
    opacity: 0.5;
    pointer-events: none;
    position: absolute;
    top: 25%;
    width: 100px;
}

.formElement input:focus ~ .inputHighlight, .formElement textarea:focus ~ .inputHighlight {
    animation: inputHighlighter 0.3s ease;
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    -o-animation: inputHighlighter 0.3s ease;
}

@keyframes inputHighlighter {
    from  { background:#fcb514; }
    to    { width:0; background:transparent; }
}
@-webkit-keyframes inputHighlighter {
    from  { background:#fcb514; }
    to    { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
    from  { background:#fcb514; }
    to    { width:0; background:transparent; }
}
@-o-keyframes inputHighlighter{
    from  { background:#fcb514; }
    to    { width:0; background:transparent; }
}

.errorText {
    color: red;
    display: inline;
    float: left;
    font-size: 10px;
}

.errorBox {
    background-color: rgba(255,0,0,0.5);
}

/**********************************
Textarea
**********************************/

.formElement textarea {
    border: none;
    border-bottom: 1px solid #757575;
    display: block;
    font-size: 18px;
    max-width: 90%;
    padding: 10px 10px 5px 0;
    resize: none;
    width: 300px;
}

.formElement textarea:focus {
    outline: none;
}

input[type=checkbox] + label {
    margin-left: 10px;
    top: 0;
}

.formElement textarea:focus ~label, .formElement textarea.used ~ label {
    color: #fcb514;
    font-size: 14px;
    top: -20px;
}

.counterContainer {
    display: inline;
    float: left;
    max-width: 90%;
    width: 265px;
}

.counter {
    float: right;
    font-size: 12px;
}

.hideCounter {
    display: none;
}

/***********************************
Checkbox
***********************************/

input[type=checkbox] {
    width: 1em;
    height: 1em;
    font: inherit;
    font-size: 1.5em;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: #fff;
    border-radius: .125em;
    box-sizing: border-box;
    border: 0.125em solid #9E9E9E;
    box-shadow: inset 0 0 0 0 #fcb514;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.2, 0.3, 0, 1), box-shadow 0.3s cubic-bezier(0.2, 0.3, 0, 1), border-color 0s linear 0.17s;
}
input[type=checkbox]:focus {
    outline: none;
}
input[type=checkbox]:active {
    transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
}
input[type=checkbox]:checked,
input[type=checkbox]:indeterminate {
    border-color: #fcb514;
    box-shadow: inset 0 0 0 0.5em #fcb514;
    transition: transform 0.3s cubic-bezier(0.2, 0.3, 0, 1), box-shadow 0.3s cubic-bezier(0.2, 0.3, 0, 1), border-color 0s;
}
input[type=checkbox]:before,
input[type=checkbox]:after {
    content: '';
    background: #fff;
    height: 1em;
    width: 1em;
    position: absolute;
    transform: translate(0.2728em, 0.4279em) rotate(44.91deg) scale(0.3411, 0.1);
    -ms-transform: translate(0.2728em, 0.4279em) rotate(44.91deg) scale(0.3411, 0.1);
    -webkit-transform: translate(0.2728em, 0.4279em) rotate(44.91deg) scale(0.3411, 0.1);
    transform-origin: 0 0;
    transition: transform 0.3s cubic-bezier(0.2, 0.3, 0, 1), opacity 0.3s cubic-bezier(0.2, 0.3, 0, 1);
    top: -0.125em;
    left: -0.125em;
}
input[type=checkbox]:after {
    transform: translate(0.8494em, 0.35em) rotate(135.22deg) scale(0.5612, 0.1);
    -ms-transform: translate(0.8494em, 0.35em) rotate(135.22deg) scale(0.5612, 0.1);
    -webkit-transform: translate(0.8494em, 0.35em) rotate(135.22deg) scale(0.5612, 0.1);
}
input[type=checkbox]:not(:checked):before {
    transform: translate(0.505em, 0.455em) rotate(44.91deg) scale(0.1, 0.1);
    -ms-transform: translate(0.505em, 0.455em) rotate(44.91deg) scale(0.1, 0.1);
    -webkit-transform: translate(0.505em, 0.455em) rotate(44.91deg) scale(0.1, 0.1);
}
input[type=checkbox]:not(:checked):after {
    transform: translate(0.575em, 0.525em) rotate(135.22deg) scale(0.1, 0.1);
    -ms-transform: translate(0.575em, 0.525em) rotate(135.22deg) scale(0.1, 0.1);
    -webkit-transform: translate(0.575em, 0.525em) rotate(135.22deg) scale(0.1, 0.1);
}
input[type=checkbox]:indeterminate:before {
    transform: translate(0.25em, 0.45em) rotate(0deg) scale(0.5, 0.1);
    -ms-transform: translate(0.25em, 0.45em) rotate(0deg) scale(0.5, 0.1);
    -webkit-transform: translate(0.25em, 0.45em) rotate(0deg) scale(0.5, 0.1);
}
input[type=checkbox]:indeterminate:after {
    transform: translate(0.75em, 0.55em) rotate(180deg) scale(0.5, 0.1);
    -ms-transform: translate(0.75em, 0.55em) rotate(180deg) scale(0.5, 0.1);
    -webkit-transform: translate(0.75em, 0.55em) rotate(180deg) scale(0.5, 0.1);
}

/***********************************
Autocomplete select
***********************************/

.selectDropdownOuterDiv {
    position: absolute;
    z-index: 5;
}

.ui-autocomplete {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    height: auto;
    max-height: 150px;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 310px;
}

.selectAutocomplete {
    background-color: #ffffff;

    height: auto;

    overflow-y: scroll;
    position: relative;
    width: 310px;
}

.autocomplete_item {
    padding: 3px 0 3px 3px;
}
.autocomplete_item:hover {
    background-color: #fbcf6c;
}

/***********************************
Photo Upload
***********************************/

#AEDImageFile {
    display: none;
}

#uploadImage {
    background-color: #e8e8e8;
    display: table;
    height: 200px;
    margin: auto;
    max-width: 95%;
    outline: 2px dashed #000000;
    outline-offset: -5px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
    width: 350px;
}

#uploadImage:hover {
    cursor: pointer;
}

#uploadImage img {
    display: block;
    margin: 40px auto 10px;
}

#uploadImage p {
    font-size: 18px;
    text-align: center;
}

.uploadPhotoDrag {
    background-color: #f8f8f8 !important;
    outline-offset: -15px !important;
    outline-color: #fbcf6c !important;
}

.uploadPhotoHover {
    color: #fbcf6c;
}

#photoPreview {
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    display: table;
    margin: auto;
    min-width: 200px;
    padding: 15px;
}
#photoPreview img {
    display: block;
    margin: 0 auto;
    max-height: 400px;
    max-width: 400px;
}

#photoPreview button {
    display: block;
    float: left;
    margin: 20px 0 10px;
}

#deleteImage img {
    display: block;
    float: right;
    height: 30px;
    margin-top: 25px;
    width: 30px;
}

#deleteImage:hover {
    cursor: pointer;
}

.AEDButton {
    background-color: #fcb514;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    padding: 11px;
    position: relative;
    width: 150px;
}

.AEDButton:focus {
    outline: none;
}

.AEDButtonGray {
    background-color: lightgray !important;
}

#moveMarkerPrompt {
    color: #ff3333;
    display: inline;
    margin: 20px;
}

.taint {
    display: block;
    position: absolute;
    background: rgba(193, 193, 193, 0.5);
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.taint.drop {
    -webkit-animation: ripple 0.65s linear;
    animation: ripple 0.65s linear;
}
@-webkit-keyframes ripple {
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}
@keyframes ripple {
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}

/*****************
* Submission
*****************/

#submitForm {
    margin-top: 20px;
}

.htmlMessageBlock {
    display: block;
}

.htmlMessage {
    display: block;
    float: left;
    margin-top: 10px;
    width: 37% !important;
}

#swalLN, #swalLD, #swalAdd, #swalCity {
    width: 60%;
    text-align: left;
    margin-top: 10px;
}

#htmlImage {
    margin-bottom: 10px;
}

.sweet-alert p label {
    font-weight: 400;
    text-align: left;
    width: 175px;
}

.sweet-alert p span {
    float: left;
}

.sweetCustom {
    overflow-y: auto;
    max-height: 100%;
}
/***
* Responsive
*/

@media (max-width: 480px) {
    .counterContainer {
        width: 240px;
    }

    #uploadImage {
        width: 95%;
    }

    .inputBar {
        max-width: 93%;
    }
}