@keyframes loadIn {
    0%{
        opacity: 0;
        transform: translateX(-10deg);
    }
    100%{
        opacity: 1;
        transform: translateX(0deg);
    }
    
}
html, body{ 
    
    /* animation: 0.35s ease-in 0.35s 1 opacityLoad; */
    /* background-image: linear-gradient(to right,#3c6e71, #284b63 ); */
    font-family: -apple-system,BlinkMacSystemFont,'Roboto','Segoe UI','Oxygen-Sans','Ubuntu','Cantarell','Helvetica Neue',sans-serif;
}
.mainContainer{
    animation-name: loadIn;
    animation-duration: 0.75s;

}
#secondContactContainer{
    animation-name: loadIn;
    animation-duration: 0.75s;
}
h4,h5,h6{
    font-family: sans-serif;
    color: black;
}

#submitForm{
    
    margin: 0;
    color: rgb(48, 48, 48);
    color: white;
    font-size: 11pt;
  
}
.container-fluid{
    padding-left: 0;
    padding-right: 0;
}

#instructionsAndDataContainer{

    height: 100%;

    color: black;
}
#instructionsContainer{
    color: rgb(49, 49, 49);

}
#accountInfoContainer{
    color: rgb(49, 49, 49);
    border-radius: 5px;
    max-width: 1000px;
    background-color: transparent;
}
.instructionTip{
    color: #fca311;
}
#accountInfoContainer h4, #accountInfoContainer h5{
    color:white
}
.InfoHeader{
    width: 100%;
    min-width: 300px;
    background-color: #14213d;
    color: white;
    border-radius: 3px;
    box-shadow: 2px 2px 2px #353535;
    padding: 6px 12px;
    color: black;
}

#contactInfoHeader{
    width: 40%;
    min-width: 300px;
    /* border: 0.3px solid rgb(179, 179, 179); */
    background-color: #284b63;
    color:white;
    border-radius: 3px;
    box-shadow: 2px 2px 2px #353535;
    padding: 6px 12px;
    color: black;
}

.ownerHeader{
    width: 40%;
    padding: 4px;
    color:white;
}

#secondaryContactHeaderContainer, #primaryContactHeaderContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
#removeSecondaryContact, #removePrimaryContact{
    padding: 6px 12px;
    align-self: flex-end;
    border-radius: 3px;
    background-color: white;
    border: 1px solid #00a5ff ;
    border-radius: 4px;
}
#removeSecondaryContact:hover, #removePrimaryContact:hover{
    cursor: pointer;
    border: 1px solid white;
    background-color: #00a5ff ;
    color: white;
    transition: 0.15s all;
}
.accountInfoLabel{
    color: rgb(49, 49, 49);
    font-weight: 600;
    font-size: 16px;
}

input{
    color: #3f3f3f;
}

#lenderSectionContainer{
    width: 100%;
    max-width: 1000px;
    /* border: 1px solid #d9d9d9; */
}


.lenderLabel{
    color: black;
    font-family: 'Open Sans', sans-serif;
    width: 100px;
    padding: 5px 3px;
    text-align: center;
    background-color:#ffffff ;
    border: 1px solid rgb(107, 107, 107);
    font-size: 14px;
    border-radius: 3px;
}

.lenderCheckboxes:checked ~ label{
    transition: 0.12s all;
    background-color: #f06000;
    color: white;
}
 
.lenderLabel:hover{
    cursor: pointer;
    box-shadow: 0.5px 0.5px 4px 1px #00a5ff ;
    transition: .08s all;
}

label.error.fail-alert {
    line-height: 1;
    padding: 2px 0 6px 6px;
    color: rgb(235, 0, 0);
}
input.valid.success-alert {
    border: 1px solid #4CAF50;
    color: green;
}

.filesContainer{
    max-width: 1000px ;

}

#fakeAppUpload, #fakeBanksUpload, #button1{
    padding: 6px 10px ;
    font-size: 10pt;
    background-color: #14213d;
}
#fakeAppUpload:hover, #fakeBanksUpload:hover, #button1:hover{
    box-shadow: 0.5px 0.5px 4px 1px #00a5ff ;
}

.appContainer, .banksContainer{
    font-weight: 600;
    font-size: 16px;
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 180px;
    width: 300px;
    border: 1px dashed #14213d;
    padding: 15px;
    text-align: center;
    color: rgb(56, 56, 56);
}


#submitSection{

}
#submitButton{
    border: 1px solid #00a5ff ;
    background-color: #14213d;
    color: white;
    padding: 8px 15px;
}
#submitButton:hover{
    transition: 0.2s all;
    background-color: #192a4e;
    border: 1px solid #00a5ff ;
    box-shadow: 0.5px 0.5px 4px 1px #00a5ff ;
}
#mobileSubmit{
    display: none;
    background-color: #003879;
    color: white;
    padding: 8px 15px;
}

.dragAndDropContainer{
    width: 480px;
    min-height: 400px;
    padding: 3rem 0.5rem;
}

.positionsContainers{
    animation-name: loadIn;
    animation-duration: 0.75s;
}
  

@media screen and (max-width: 768px) {
    #instructionsAndDataContainer{
        height: auto;
    }
    #accountInfoContainer{

    }

}


.alert{font-family: -apple-system,BlinkMacSystemFont,'Roboto','Segoe UI','Oxygen-Sans','Ubuntu','Cantarell','Helvetica Neue',sans-serif;
    position: fixed;
    min-height: 38px;
    padding: 12px 15px 15px;
    left: 0;
    right: 0;
    top: 40%;
    margin: auto;
    border-radius: 4px;
    border-left: 4px solid;
	opacity:1;
	transition: 0.3s all;
	width: 30%;
    min-width: 480px;
    height: 180px;
}
.warning {
    background: rgb(255, 204, 204);
    color: #d93025;
    border-color: #d93025;
}
.alert-close{
	padding-left: 15px;
    font-weight: bold;
    float: right;
    font-size: 20px;
    line-height: 18px;
    cursor: pointer;
	transition:.30s all;
}
.alert-close:hover{
	color:#000;
}
.alert code, .alert .mark{
    background: #fff;
    opacity: 0.9;
    padding: 3px 5px;
    border-radius: 4px;
    font-family: Consolas,Monaco,'Andale Mono',monospace;
    font-size: 89%;
    font-weight: normal;
}

.spinner {

    position: absolute;
    top: 47%;  /* position the top  edge of the element at the middle of the parent */
    left: 48%; /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%);
    height: 21px;
    width: 21px;
    margin: 20px auto;
    border-radius: 50%;
    border: dashed 1px #00a5ff ;
    animation-name: loader-spin;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
    
.large {
      width: 60px;
      height: 60px;
      border-width: 5px;
}

#updateZohoText {
    color: #01177c;
    animation-name: color;
    animation-duration: 3s;
    animation-iteration-count: infinite;
  }

  .salesforceFilesDisplay, .manualFilesDisplay{
    display: none;
    animation-name: loadIn;
    animation-duration: 0.75s;
  }

  #chooseManualButton, #chooseSalesforceButton {
    background-color: #001b3a ;
    border-radius: 3%;
    color: white;
  }
  #chooseManualButton:hover, #chooseSalesforceButton:hover {
    background-color: #001229 ;
    border: 1px solid #0B6EFD;
    box-shadow: 0.5px 0.5px 4px 1px #0B6EFD;
    color: white;
    transition: 0.3s all;
  }
  .filesContainer{
    max-width: 1000px ;

}
.appContainer, .creditsContainer, .quotesContainer, .banksContainer{
    font-weight: 600;
    font-size: 16px;
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 180px;
    width: 300px;
    border: 1px dashed #14213d;
    padding: 15px;
    text-align: center;
    color: rgb(56, 56, 56);
}
.fileFlesContainer{
    max-width: 45%;
}
  
  @keyframes color {
    0% {
      color: #005086;
    }
    50% {
      color: #ff00bb;
    }
    100% {
      color: #005086;
    }
  }
  
  @keyframes loader-spin {
    from   {  transform: rotate(0deg); }
    to     {  transform: rotate(360deg); }
  }


  #loadHolder{
    display: none;
    height: 100px;
    width: 100px;
    position: fixed;
    left: 50%;
    margin-left: -50px;
    top: 50%;
    margin-top: -50px;
   
  }
  #link {color: #E45635;display:block;font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;text-align:center; text-decoration: none;}
  #link:hover {color: #CCCCCC}
  
  #link, #link:hover {-webkit-transition: color 0.35s ease-out;-moz-transition: color 0.35s ease-out;-ms-transition: color 0.35s ease-out;-o-transition: color 0.35s ease-out;transition: color 0.35s ease-out;}
  
  /** BEGIN CSS **/
          @keyframes rotate-loading {
              0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
              100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
          }
  
          @-moz-keyframes rotate-loading {
              0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
              100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
          }
  
          @-webkit-keyframes rotate-loading {
              0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
              100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
          }
  
          @-o-keyframes rotate-loading {
              0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
              100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
          }
  
          @keyframes rotate-loading {
              0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
              100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
          }
  
          @-moz-keyframes rotate-loading {
              0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
              100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
          }
  
          @-webkit-keyframes rotate-loading {
              0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
              100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
          }
  
          @-o-keyframes rotate-loading {
              0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
              100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
          }
  
          @keyframes loading-text-opacity {
              0%  {opacity: 0}
              20% {opacity: 0}
              50% {opacity: 1}
              100%{opacity: 0}
          }
  
          @-moz-keyframes loading-text-opacity {
              0%  {opacity: 0}
              20% {opacity: 0}
              50% {opacity: 1}
              100%{opacity: 0}
          }
  
          @-webkit-keyframes loading-text-opacity {
              0%  {opacity: 0}
              20% {opacity: 0}
              50% {opacity: 1}
              100%{opacity: 0}
          }
  
          @-o-keyframes loading-text-opacity {
              0%  {opacity: 0}
              20% {opacity: 0}
              50% {opacity: 1}
              100%{opacity: 0}
          }
          .loading-container,
          .loading {
              height: 100px;
              position: relative;
              width: 100px;
              border-radius: 100%;
          }
  
  
  
          .loading {
              border: 4px solid transparent;
              border-color: transparent #14213d transparent #14213d;
              -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
              -moz-transform-origin: 50% 50%;
              -o-animation: rotate-loading 1.5s linear 0s infinite normal;
              -o-transform-origin: 50% 50%;
              -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
              -webkit-transform-origin: 50% 50%;
              animation: rotate-loading 1.5s linear 0s infinite normal;
              transform-origin: 50% 50%;
          }
  
          .loading-container:hover .loading {
          }
          .loading-container:hover .loading,
          .loading-container .loading {
              -webkit-transition: all 0.35s ease-in-out;
              -moz-transition: all 0.35s ease-in-out;
              -ms-transition: all 0.35s ease-in-out;
              -o-transition: all 0.35s ease-in-out;
              transition: all 0.35s ease-in-out;
          }
  
          #loading-text {
              -moz-animation: loading-text-opacity 1s linear 0s infinite normal;
              -o-animation: loading-text-opacity 1s linear 0s infinite normal;
              -webkit-animation: loading-text-opacity 1s linear 0s infinite normal;
              animation: loading-text-opacity 1s linear 0s infinite normal;
              color: #14213d;
              font-family: "Helvetica Neue, "Helvetica", ""arial";
              font-size: 10px;
              font-weight: bold;
              margin-top: 45px;
              opacity: 0.3;
              position: absolute;
              text-align: center;
              text-transform: uppercase;
              top: 0;
              width: 100px;
          }

          .masterContainerToBlur{
            /* Any browser which supports CSS3 */
            filter: blur(1px) brightness(0.7);
         
            /* Firefox version 34 and earlier */
            filter: url("blur.svg#gaussian_blur") brightness(0.7); 
         
            /* Webkit in Chrome 52, Safari 9, Opera 39, and earlier */
            -webkit-filter: blur(1px) brightness(0.7)
         }