/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.32);
    background: rgba(0, 0, 0, 0.32);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: "";
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
        rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
        rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
        rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
        rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

.relative-section {
    position: relative;
}

.signup-block {
    position: absolute;
    bottom: 0;
    width: calc(100% - 40px);
    padding-bottom: 25px;
    height: 170px;
}

@media screen and (min-width: 600px) {
    .signup-block {
        height: 155px;
    }
}

@media screen and (min-width: 750px) {
    .signup-block {
        height: 145px;
    }
}

@media screen and (min-width: 1024px) {
    .signup-block {
        height: 125px;
    }
}

@media screen and (max-height: 600px) {
    .signup-block {
        position: unset;
        padding-top: 20px;    
    }
}


@media screen and (max-height: 700px) and (min-width: 500px) {
    .signup-block {
        position: unset;
        padding-top: 20px;   
        width:100%; 
    }
}


.signup-block hr {
    margin-bottom: 24px;
    height: 1px;
    background: #EEEEEE;
    border: 0;
}

.signup-block .powered-by-tagline {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0px;
    color: #4E5866;
}

.signup-block .powered-by-tagline .mobilo-link {
    color: #D33F49;
    text-decoration: none;
}

.signup-block .signup-container {
    display: flex;
    align-items: flex-start;
    padding: 10px 0px;
}

.signup-block .signup-post-container {
    display: none;
    margin-top: 14px;
    justify-content: center;
}

.signup-block .signup-post-container .signup-post-div {
    background-color: #F1F3F6;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    color: #0f1e35;
    font-weight: 200;
}

.signup-block .signup-post-container .signup-post-div .email-highlighter {
    color: #D33F49;
}

.signup-block .signup-post-container .signup-post-div .signup-post-span {
    display: flex;
    align-items: center;
}

.signup-block .signup-post-container .signup-post-div .check-mark {
    height: 11.1px;
    width: 15.38px;
    margin-right: 3px;
}

.signup-block .signup-container .signup-div {
    margin-right: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.signup-block .signup-container .signup-input {
    padding: 10px;
    border: 1px solid;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 14px;
    border-color: #d4d4d4;
    color: #333333;
    font-weight: 100;
}

.signup-block .signup-container .signup-btn {
    padding: 10px 20px;
    color: #E5505A;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #E5C4C6;
    background-color: #F9EBEC;
}

.signup-block .signup-container .signup-btn:hover {
    background-color: #ff5656;
    color: white;
}

.signup-block .signup-container .error-message {
    color: #E5505A;
    visibility: hidden;
    font-size: 11px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;
    padding-left: 10px;
}