@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600;1,700&display=swap');

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #fff;
  background-image: url(/assets/group-82.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.form-img {
  margin-top: calc(0.25*100vh);
  padding-bottom: 1em;
}

.form-img img {
  width: 100px;
  transition: all ease 300ms;
}

.form-img img:hover {
  width: 200px;
  transition: all ease 300ms;
}

#form-wrapper {
  height: auto;
  width: 100%;
}

form {
  max-width: 720px;
  padding-bottom: 3em;
}

.header {
  padding-bottom: 1.2em;
}

.title {
  font-weight: 700;
  color: #8B0E1A;
  letter-spacing: -0.5%;
  text-align: center;
  padding-bottom: 0.025em;
  margin-bottom: 0.025em;
}

.dropdown .btn, .btn.btn-outline-secondary {
  margin-top: 0.25em;
  background-color: transparent;
  border-radius: 999px;
  border: solid 2px #8B0E1A;
  color: #8B0E1A;
  font-size: 14px;
  padding: 0.1em 0.6em;
}

.dropdown .btn:hover, .btn.btn-outline-secondary:hover {
  background-color: #989898;
  border-color: #989898;
  color: #ffffff;
}

.first:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4,end) 900ms infinite;      
  animation: ellipsis steps(4,end) 2s infinite;
  content: "\2026"; /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
	width: 1.25em;    
  }
}

@-webkit-keyframes ellipsis {
  to {
	width: 1.25em;    
  }
}

.trans {
  animation: fade-in-down 300ms ease-in;
}
@keyframes fade-in-down {
  0% {
	opacity: 0;
	transform: translateY(-20px);
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

.form-label {
  margin-bottom: 0rem;
}

label {
  font-size: 16px;
  letter-spacing: 0.1px;
  font-weight: 600;
  padding-bottom: 0px;
  padding-top: 4px;
}

.form-control, .form-select {
  border: 0px solid transparent;
  border-radius: 0px;
  background-color: #d7d7d7ba;
  padding: 0.8em 0.6em;
  width: 100% !important;
}

/* Buttons */

.btn {
  margin-top: 2em;
  border-radius: 0px;
  text-transform: uppercase;
  font-size: 1.1em;
}

.btn-primary {
  background: rgb(79,7,14);
  background: linear-gradient(180deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
  border-color: rgb(79,7,14) !important;
  color: #ffffff;
  transition: all ease-in-out 800ms;
}

.btn-primary:hover {
  border-color: rgb(79,7,14) !important;
  background: rgb(79,7,14);
  background: linear-gradient(45deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
}

/*Tooltip*/
.fa-solid .bottom {
  font-family: 'Source Sans Pro', sans-serif;
}

select option {
  padding: 16px !important;
}
.tooltipx .bottom {
	width:340px; 
	max-width:60%;
	top:60%;
	left:50%;
	text-transform: none;
	transform:translate(-50%, 0);
	padding:16px;
	color:#000000;
	background-color:#fff;
	font-weight:normal;
	font-size:16px;
  line-height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.175);
	border-radius:8px;
	position:absolute;
	z-index:99999999;
	box-sizing:border-box;
	box-shadow:0 1px 8px rgba(0,0,0,0.5);
	visibility:hidden; opacity:0; transition:opacity 0.3s;
}

.tooltipx:hover .bottom {
	visibility:visible; opacity:1;
}

/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  padding-left: 0px;
  counter-reset: step;
  display: flex;
  justify-content: space-between;
}

#progressbar li {
  list-style-type: none;
  color: #8B0E1A;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  width: 100%;
  text-align: center;
  position: relative;
}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 24px;
  line-height: 24px;
  display: block;
  font-size: 12px;
  color: #333;
  background: white;
  margin: 0 auto 5px auto;
}

/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: rgb(255, 255, 255);
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none; 
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
  background: rgb(79,7,14);
  background: linear-gradient(180deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
  color: #ffffff;
}

span.add-to-array {
  padding: 15px 15px;
}

.add-remove .fas.fa-minus-circle, .add-remove .fas.fa-plus-circle{
  font-size: 20px;
}

.add-remove span {
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
}

span.add-to-array i:hover{
  color: #575757;
  cursor: pointer;
}

.downloadBTN{
  padding-bottom: 30px;
  margin-bottom: 50px;
}
.lableAccept button{
  margin-bottom: 50px;
}
form.bankDetails{
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.container-fluid-nav{
background-color: #fff;
}
/* div */
.downloadPdfBtn{
  left: 0px;
  z-index:5;
  width:84%;
  position:relative;
  bottom:18.5%;
  }
  /* a tag */
  .downloadPdfBtn .lableAccept {
    float: right;
    position:relative;
  }
  @media (max-width:1399px){
    .downloadPdfBtn{
      
      width:97.7%;
    
      }
  }
 