*{
    font-family: 'sans-serif';
}
.claim-form-body{
    padding-bottom: 5vh;
}
.page-header-form {
    position: relative;
    margin-bottom: auto;
    margin-top: 2vw;
    text-align: center;
}
.logo-form {
    margin: auto;
    display: flex;
    bottom: 1vw;
    position: relative;
}
.close-icon-form {
    float: right;
    bottom: 4.7vw;
    right: 2.7vw;
    cursor: pointer;
}
.bigbazoo-form {
    background-color: #ffc50a;
    display: flex;
    flex-direction: column;
    row-gap: 4vw;
    width: 75%;
    border-radius: 20px;
    position: relative;
    left: 3vw;
    margin: auto;
    padding: 3vw;
    text-align: center;
    align-items: center;
}
.form-title{
    font-size: 46px;
    color: black;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 70px;
    display: flex;
}
.form-groups{
    z-index: 1;
    margin: auto;
    max-width: 100%;
}
.form-image-container{
    position: absolute;
    right: 13vw;
    bottom: 15vw;
}
.form-image{
    transform: rotate(25deg);
    height: auto;
    max-width: 100%;
}
.form-input-group{
    padding-bottom: 50px;
}
section[for="dob"]{
    position: relative;
}
section[for="amount"]{
    padding-bottom: 0;
}
section[for="readtac"]{
    padding-bottom: 100px;
    text-align: left;
}
.input-container-left{
    float: left;
    margin-right: 2vw;
}
.input-container-right{
    float: right;
}
.input-container-wide{
    clear: both;
    width: 100%;
}
.form-clear{
    clear: both;
}
.form-label {
    font-weight: bold;
    color: black;
    font-size: 30px;
    padding-bottom: 15px;
    display: flex;
}
.invisible{
    opacity: 0.0;
}
.form-label-error{
    display: none;
    color: darkred;
    font-weight: bold;
    padding-top: 0.5vw;
    text-align: left;
}
.form-input {
    display: block;
    border-radius: 10px;
    border-color: #ffe8a0;
    border-width: 1px;
    border-style: solid;
    background-color: #fff4d2;
    padding: 20px;
    font-size: 16px;
    scroll-margin-top: 12vw;
}.form-input::placeholder{
    opacity: 0.75;
}
.form-input-error{
    border-color: darkred;
    border-width: 2px;
}
.wide-input{
    width: inherit;
}
.calendar-icon{
    position: absolute;
    top: 10px;
    right: 50px;
    z-index: 1;
}
#dob{
    background-image: url("../images/calendar.png");
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: 6%;
}
.form-checkbox-label{
    font-weight: bold;
    color: black;
    font-size: 16px;
}
#example{
    font-weight: bold;
    display: flex;
    padding-top: 0.5vw;
    color: black;
}
#streettwo,#city,#state,#zipcode{
    margin-top: 10px;
}
#state{
    width: 214px;
    height: 60px;
}
.form-submit{
    display: block;
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
    border-color: #fcd9c3;
    background-color: #0282cb;
    color: #fcd9c3;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin: auto;
    width: 50%;
    cursor: pointer;
}
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.no-overlay{
    z-index: 9999;
    position: fixed;
    top: 40%;
    display: none;
}
.loader{
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #ffc50a;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 0.75s linear infinite;
    -moz-animation: spin 0.75s linear infinite;
    animation: spin 0.75s linear infinite;
}
.alert{
    background-color: #ffc50a;
    border-radius: 20px;
    max-width: 50%;
    animation: slideDown 0.3s linear 1;
    box-shadow: 10px 10px 15px black;
}
@keyframes slideDown {
    0%{
        opacity: 0;
        translate: 0 -400%;
    }
    100%{
        opacity: 1;
        translate: 0 0;
    }
}
.fade-out-overlay{
    animation: fadeOutOverlay 0.2s linear 1;
}
@keyframes fadeOutOverlay{
	0%{
		background-color: rgba(0, 0, 0, 0.65);
	}
	100%{
	    background-color: rgba(0, 0, 0, 0);
	}
}
.alert-content{
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-left: 50px;
}
.alert-text{
    margin: 20px 0px 60px 0px;
    font-size: 24px;
	line-height: 1.15;
	text-align: center;
	color: black;
}
.hide-alert-img{
    float: right;
    background: radial-gradient(circle at center, #141329 19px, transparent 19px);
    border-radius: 40px;
    margin: 5px 5px 0 0;
    width: 40px;
}
.form-confirmation{
    display: none;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    color: black;
    font-size: 40px;
    line-height: 50px;
}
.circle {
    width: 100px;
    height: 100px;
    background-color: green;
    border-radius: 50%;
    text-align: center;
    padding: 25px;
    color: white;
    margin: auto;
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 1);
    -webkit-animation: circlePulse 2s 1;
    -moz-animation: circlePulse 2s 1;
    animation: circlePulse 2s 1;
}
.circle-error{
    width: 65px;
    height: 65px;
    font-size: 40px;
    background-color: darkred;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 25px;
    position: relative;
    -webkit-animation: circleErrPulse 2s 1;
    -moz-animation: circleErrPulse 2s 1;
    animation: circleErrPulse 2s 1;
}
#submission-text{
    margin-top: 40px;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    0% { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@-webkit-keyframes circlePulse {
    0% {
        -webkit-transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(0, 128, 0, 0.7);
    }

    70% {
        -webkit-transform: scale(1);
        box-shadow: 0 0 0 1rem rgba(0, 0, 0, 0);
    }

    100% {
        -webkit-transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
@-moz-keyframes circlePulse {
    0% {
        -moz-transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(0, 128, 0, 0.7);
    }

    70% {
        -moz-transform: scale(1);
        box-shadow: 0 0 0 1rem rgba(0, 0, 0, 0);
    }

    100% {
        -moz-transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
@keyframes circlePulse {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(0, 128, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 1rem rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
@-moz-keyframes circleErrPulse {
    0%{
        -moz-transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.7);
    }
    
    70% {
        -moz-transform: scale(1);
        box-shadow: 0 0 0 1rem rgba(0, 0, 0, 0);
    }

    100% {
        -moz-transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
@-webkit-keyframes circleErrPulse {
    0%{
        -webkit-transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.7);
    }
    
    70% {
        -webkit-transform: scale(1);
        box-shadow: 0 0 0 1rem rgba(0, 0, 0, 0);
    }

    100% {
        -webkit-transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
@keyframes circleErrPulse {
    0%{
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 1rem rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@media screen and (max-width: 991px) {
    .close-icon-form {
        bottom: 12.5vw;
    }
    .bigbazoo-form{
        width: auto;
    }
    .form-image-container{
        bottom: 35vw;
    }
    .form-image{
        max-width: 75%;
    }
    .form-input{
        scroll-margin-top: 35vw;
    }
    #state{
    }
    .alert{
        max-width: 75%;
    }
    .no-overlay{
        top: 40%;
    }
    .alert-text{
        font-size: 20px;
        margin: 20px 0px 50px 0px;
        width: 60vw;
    }
}

@media screen and (max-width: 650px) {
    .form-image-container{
        right: 20vw;
        bottom: 55vw;
    }
}

@media screen and (max-width: 500px){
    .bigbazoo-form{
        left: 7vw;
    }
    .form-title{
        padding-top: 50px;
        font-size: 32px;
    }
    .close-icon-form {
        bottom: 21vw;
        right: 3vw;
    }
    .form-image{
        max-width: 65%;
    }
    .form-groups{
        margin: 0 7%;
    }
    .form-input-group{
        display: flex;
        flex-direction: column;
        margin-bottom: 5vh;
        padding-bottom: 0;
    }
    .input-container-left{
        margin-bottom: 3vh;
        margin-right: 0;
    }
    section[for="address"] .input-container-left{
        margin-bottom: 0;
    }
    .form-label{
        font-size: 20px;
    }
    .form-input{
        width: 100%;
    }
    .form-input-error{
        border-width: 1px;
    }
    #state{
        width: 100%;
    }
    #dob{
        background-size: 8%;
    }
    #submission-text{
        margin-bottom: 40px;
    }
    section[for="readtac"]{
        padding-bottom: 0;
        margin-bottom: 5vh;
    }
}