.financeForm{
    width: 100%;
    background-color: #000;
    border: 2px solid #04b4ec;
    border-radius: 10px;
    padding: 2%;
    margin: 10% 0;
    margin-right: 3%;
    font-family: verdana;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    
}

.financePage01, .financePage02, .financePage03, .financePage04, .financePage05, .financePage06,.financePage07,.financePage08{
    display: none;
}

.activePage{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}


.financeForm span{
    color: #ff0000;
}

.error{
    display: none;
    color: #ff0000 !important;
    width: 100%;
    text-align: start;
    font-size: 16px !important;
}

.financeForm input{
    width: 100%;
    height: 20px;
    font-size: 17px;
    outline: none;
    border-radius: 10px;
    border: 2px solid #04b4ec;
    margin-top: 0.5%;
    margin-bottom: 2.5%;
}

.financeForm label {
    width: 100%;
    text-align: start;
    align-items: center;
}

.saIdDriversLabel{
 width: 100%;
 text-align: start;
}

.firstNameCont, .lastNameCont{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.financeForm input::placeholder{
    font-size: 16px;
    font-family: verdana;
    color: #474747;
}

.financeForm .spinner {
    border: 4px dashed #7CFC00;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  .financeForm .submitting{
      display:none;
      flex-direction: column;
      color:#7CFC00;
      align-items:center;
  }
  
  .financeForm .submitting p{
      color:#7CFC00 !important;
      margin-left:2%;
  }

  .financeForm .submitCont{
    width: 100%;
    justify-content: start;
    margin-bottom: 2%;
  }

  .financeForm button{
    background-color: #04b4ec;
    font-family: verdana;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    border: none;
    padding: 1%;
    cursor: pointer;
}

.financeForm .consentCont{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 98%;
}

.financeForm .consentCont input{
    width: 4%;
    margin: 0;
    padding: 0;
}

.financeForm .consentText{
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-left: 0.5%;
}

/* Hide the default checkbox */
.financeForm input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #7a7a7a;
    border-radius: 0;
    background-color: #fff;
    padding: 0;
  }
  
  /* Change the background color of the checkbox when checked */
  .financeForm input[type="checkbox"]:checked {
    border-color: #04b4ec;
    
  }
  
  /* Change the color of the checkmark */
  .financeForm input[type="checkbox"]:checked::before {
    content: "\2714";
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #04b4ec;
    text-align: center;
  }

  .financeForm input[type="checkbox"]:checked::after{
    color: #04b4ec;
  }

  .financeForm .customSelect {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 2.5%;
    margin-top: 0.5%;
  }
  
  .financeForm .selectTrigger {
    display: block;
    padding: 0.1% 20px;
    background-color: #eee;
    border: 2px solid #04b4ec;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-family: verdana;
    color: #000;
    text-align: start;
  }
  
  .financeForm .selectMenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: 3px solid #04b4ec;
    list-style: none;
    width: 98%;
    max-height: 200px;
    overflow-y: scroll;
  }
  
  .financeForm .selectMenu li {
    padding: 0 0;
  }

  .financeForm .selectMenu li:hover{
    background-color: #ccc ;
  }
  
  .financeForm .selectMenu a {
    display: block;
    padding: 5px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
  }
  
  .financeForm .selectMenu a:hover {
    background-color: #ccc;
  }
  
  .financeForm .hiddenSelect {
    display: none;
  }

  .financeForm .showMenu{
    display: block;
  }

  li:has(.selectedValue){
    background-color: #04b4ec;
  }

  li:has(.selectedValue) a{
    color: #fff !important;
  }

  .name, .idDrivers{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 2%;
    margin-bottom: 2.5%;
}

.saDriversCont, .saIDCont{
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.percentageCont {
    width: 100%;
    height: 10px;
    background-color: transparent;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  
  progress {
    width: 90%;
    height: 100%;
    margin-left: 1.5%;
    appearance: none;
    border: none;
    background-color: #e0e0e0;
  }
  
  progress::-webkit-progress-value {
    background-color: #04b4ec;
  }
  
  progress::-moz-progress-bar {
    background-color: #04b4ec;
  }
  
  progress::-ms-fill {
    background-color: #04b4ec;
  }

  .progressValue{
    font-size: 15px;
    color: #fff !important;
  }

  .page01ButtonCont{
    width: 100%;
    display: flex;
    justify-content: end;
    padding-right: 5%;
  }
  .page02ButtonCont, .page03ButtonCont,.page04ButtonCont,.page05ButtonCont,.page06ButtonCont,.page07ButtonCont,.page08ButtonCont{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 4% 0;
    align-items: center;
  }

  .cityDetailsCont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 2%;
    margin-bottom: 2.5%;
  }

  .cityZip, .stateCountry{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }

  .weddingDateCont,.contractDateCont{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
  }
  
  .weddingDayCont, .contractDayCont{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .weddingMonthCont, .contractMonthCont{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }

  .weddingYearCont, .contractYearCont{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
  }

  .weddingDateLabel,.contractDateLabel{
    width: 100%;
    text-align: start;
  }

  #formMessage{
    display: flex;
    width: 100%;
    text-align: center;
  }

  .financeModal{
    width: 96%;
    background-color: #000;
    border: none;
    border-radius: 10px;
    padding: 2%;
    font-family: verdana;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
  }
  .financeFormDialog{
    height: 100%;
    width: 75%;
    background-color: #000;
    border: 2px solid #04b4ec;
    border-radius: 10px;

  }

  .financeModal input{
    width: 100%;
    height: 30px;
    font-size: 16px;
    outline: none;
    border-radius: 10px;
    border: 2px solid #04b4ec;
    background-color: #fff;
    margin-top: 0.5%;
    margin-bottom: 2.5%;
    text-align: start;
}
.financeClose{
  height: 50px;
  width: 50px;
  position: absolute;
  top: 1%;
  right: 1%;
}

.financeModal input{
  color: #000 !important;
  caret-color: #000 !important;
}

.financeModal .line{
  margin: 5% 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .financeForm{
    margin: 0;
    
}
}

@media (max-width: 767px) {
  .financeForm{
    margin: 0;
    font-size: 16px;
}
}