.page-container-handraiser {
    margin-top: 72px;
}

.page-container-handraiser h1 {
    margin-bottom: 2rem;
    text-align: center;
}

/* Header Image */
.headerImage {
    margin: 0 auto;
    position: relative;
    text-align: center;
}
.headerImage img {
    width: 100%;
    max-height: none;
}

@media only screen and (max-width: 768px) {
    .headerImage a {
        margin-top: 10px;
    }
}
@media only screen and (min-width: 769px) {
    .headerImage a {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translate(-50%);
    }
}

/* Text Component */
.textComponent {
    text-align: center;
    padding-bottom: 1rem;
    margin-top: 3rem; /* moved margin-top from the .page-container-handriaser h2 */ 
                      /* to textComponent to account for other text tags */
}
/* .page-container-handraiser h2 {
    margin-top: 3rem;
} */

/* Features */
.featureType2Left,
.featureType3Right {
    margin-top: 2.8125em;
    margin-bottom: 2.8125em;
}
@media screen and (max-width: 768px) {
    .featureType2Left,
    .featureType3Right {
        margin-top: 1.875em;
        margin-bottom: 1.875em;
    }
}
.featuresHeading {
    text-align: center;
}
.featureText {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
    .featureText p {
        margin-bottom: 0;
    }
}

/* Sign Up form */
.page-container-handraiser h4 {
    text-align: center;
}
.page-container-handraiser .form-control {
    margin-bottom: 5px;
}
div.required > .form-control-label::after {
    color: var(--error);
    content: "*";
    display: inline;
}
#emailNewModelForm .legal a {
    text-decoration: underline;
}

/* Confirmation Page */
body strong {
    color: #3155A6;
}


/* DROPDOWN */

.contact-location-dropdown {
    display: inline-block;
}

.new-model-dropdown {
    display: none;
    position: relative;
    width: 100%;
    margin-top: 8px;
}

@media only screen and (max-width: 768px) {
.new-model-dropdown {
    margin-left: auto;
    margin-right: auto;
}
}

.new-model-dropdown .label-text {
    margin-bottom: 0;
}

.dropdown-btn {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
    width: 100%;
    background: #FFF;
    color: var(--black);
}

.new-model-dropdown-btn {
    border: none;
    padding-left: 16px;
    padding-right: 8px;
}

.dropdown-btn .chev-down {
    display: flex;
}

.dropdown-btn.active .chev-down {
    display: none;
}

.dropdown-btn .chev-up {
    display: none;
}

.dropdown-btn.active .chev-up {
    display: flex;
}

.dropdown-content {
    display: none;
    width: 100%;
    z-index: 3;
}

.new-model-dropdown .dropdown-content {
    position: absolute;
    background-color: var(--white);
}

.new-model-dropdown-content-header {
    background-color: rgba(0, 0, 0, .05);
}

.new-model-dropdown-content-header, .new-model-dropdown-item {
    border-bottom: 1px solid var(--pahoehoe);
    border-left: 1px solid var(--pahoehoe);
    border-right: 1px solid var(--pahoehoe);
}

.new-model-dropdown-item {
    color: inherit;
    text-decoration: none;
}

.new-model-dropdown-item:hover {
color: inherit;
background: #C4C4C4;
opacity: inherit;
}

.new-model-dropdown-item h4 {
    text-align: left;
}

.new-model-dropdown-btn{
background-color: transparent;
}

/*
#new-model-form small{
color: var(--pahoehoe);
display: block;
}

#new-model-form span{
font-size: 100px;
line-height: 150%;
}
*/

#new-model-stores{
    position: relative;
}

#new-model-stores-input{
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
}

@media only screen and (min-width: 769px) {
    #new-model-stores-input, .dropdown-content {
        width: calc(100% - 30px);
    }
}

#new-model-stores-input input{
    background-color:transparent;
    color: transparent;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#new-model-stores-input input.form-control:invalid, #new-model-stores-input input.form-control:valid{
    background-position: calc(100% - 30px) 50%;
}

@media only screen and (max-width: 768px) {
    #new-model-stores {
        padding: 0;
    }
}

.new-model-store-dropdown .form-check {
    padding-left: 1.5em;
}

.form-check-input {
    accent-color: var(--black);
    transform: scale(1.5);
    top: 2px;
}

.new-model-store-dropdown .checkbox-text {
    padding-left: 4px;
}

.new-model-store-dropdown {
    margin-bottom: 24px;
}

.invalid-location-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 12px;
    color: var(--error);
}