.input-group {
    width: 100%;
    height: 50px;
    background-color: #00acee33;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
    outline: rgba(0, 0, 0, 0);
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 0px;
}

.resident-btn {
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 10px;
    border: 1px solid;
    border-radius: 5px;
    padding: 5px 15px 5px 15px;
}

input#sendForm {
    width: 100%;
    background-color: #045270e2;
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0);
    height: 50px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.14;
    letter-spacing: .06em;
    color: var(--color-white);
    margin-bottom: 20px;
    transition: background-color var(--anim-trans);

}

.iti.iti--allow-dropdown {
    width: 100%;
}

.formHorizontal .input-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}



div.formHorizontal>* {
    display: flex;
    /* margin: 10px; */

}

div.formHorizontal#sendForm {
    width: 10%;

}

.form-group {
    margin: 10px;
}



@media screen and (max-width: 425px) {
    div.formHorizontal {
        display: contents !important;
    }
}

@media screen and (max-width: 375px) {
    div.formHorizontal {
        display: contents !important;
    }
}

@media screen and (max-width: 320px) {
    div.formHorizontal {
        display: contents !important;
    }
}



.loadon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.loadon hr {
    border: 0;
    margin: 0;
    width: 40%;
    height: 40%;
    position: absolute;
    border-radius: 50%;
    animation: spin 2s ease infinite
}

.loadon :first-child {
    background: #F5F5DC;
    animation-delay: -1.5s
}

.loadon :nth-child(2) {
    background: #F5F5DC;
    animation-delay: -1s
}

.loadon :nth-child(3) {
    background: #F5F5DC;
    animation-delay: -0.5s
}

.loadon :last-child {
    background: #F5F5DC
}

@keyframes spin {

    0%,
    100% {
        transform: translate(0)
    }

    25% {
        transform: translate(160%)
    }

    50% {
        transform: translate(160%, 160%)
    }

    75% {
        transform: translate(0, 160%)
    }
}