/*.Registration-wrapper-block input,.Registration-wrapper-block label,.Registration-wrapper-block textarea, .Registration-wrapper-block select{
    color: white!important;
}*/

.Registration-wrapper-block label {
    color: white!important;
}
.Registration-wrapper-block input[type="file"]{
    color: white!important;
}
form{max-width:100%;margin:auto;padding-bottom: 20px;}
input,textarea,select{width:100%;margin:6px 0}
.shareholder-block {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
}

button.removeShareholder {
    padding: 4px 10px;
    height: 37px;
}
.shareholder-add{
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: end;
}
.Register-form-wrapper h3.form-main-heading {
    color: white !important;
    font-family: 'Adamina';
    text-align: center;
}
 
.Registration-wrapper-block .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    /*background-color: #e6e1dc;*/
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.Registration-wrapper-block .input-wrapper {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 20px !important;
}
.Registration-wrapper-block .stack-holder-inner > label , .accept-terms > label{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
input[type="radio"],input[type="checkbox"] {
    width: 20px;
}
.stack-holder-wrapper{
	display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 16px;
}
.stack-holder-wrapper {
    display: flex;
    justify-content: unset!important;
    gap: 20px !important;
}
.accept-terms {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    margin-top:10px;    
}
.form-register-btn {
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #B4936F;
    color: white;
    border: unset;  
}

input::placeholder,
textarea::placeholder {
  color: #898989;
  opacity: 1;
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: #B4936F; /* dark orange */
}
.input-inner label {
    color: white;
    font-weight: 500;
    text-transform: capitalize;
}

/*custom file uploader*/

.ignore-container {
	margin: 15px 0;	
    width: 100%;
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.file-upload {
    max-width: 100%;
    padding:15px;
    width: 100%;
    position: relative;
    border-radius: 12px;
    background-color: #7e7b7b00;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.file-wrap {
    border: 2px dashed #ffffff;
    border-radius: 12px;
    position: relative;
    transition: all 0.5s ease;
    transform: scale(1);
    padding: 20px;
}
.file-wrap.dragging {
    transform: scale(1.1);
}
.file-wrap input[type="file"] {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
#id_uploads .custom-upload-design {
    padding: 50px 30px;
    /*min-height: 250px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #a3a3a3 !important;
}
.upload-text {
    font-size: 24px;
    text-align: center;
}
.upload-text span {
    color: #d9872e !important;
}
.upload-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d9872e;
    margin-bottom: 15px;
    transform: scale(1);
    transition: transform 0.5s ease-in-out;
}
.upload-icon img {
  max-width:20px;
}
.dropped .upload-text {
    display: none;
}
.dropped .upload-icon {
    transform: scale(2.8);
    opacity: 1;
    transition: all 0.5s ease-in-out;
    animation: bounce 1s .5s;
    
}
.animate .upload-icon {
    opacity: 0;
}
.dropped .upload-icon img {
    opacity: 0;
}
.file-wrap.dropped {
    border-color: transparent;
}
.after-file-upload {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-line {
    stroke: #07da38;
    stroke-width: 20;
    fill: transparent;
     animation: progressAnimation 2s linear; 
    position: relative;
    top: -6px;
    z-index: 1;
}
.animated-line-2 {
    stroke: #ffebe8;
    stroke-width: 20;
    fill: transparent;
    position: absolute;
    margin: auto;
    top: 19px;
}

@keyframes progressAnimation {
    0% {
        stroke-dasharray: 0, 565; 
        stroke:#d9872e;
    }
    
    100% {
        stroke-dasharray: 565; 
        stroke:#07da38;
    }
}
.after-file-upload > div {
    position: absolute;
    left: 0px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100px;
    margin: 0 auto;
}
.uploaded .after-file-upload  {
    transform: scale(0.5);
    top: -10px;
    transition: all 0.5s ease;
}
.tick-line {
    width: 100px;
    height: 100px;
}
.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}
.path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
    animation: dash-check 0.9s 0.35s ease-in-out forwards;
}
@-webkit-keyframes dash-check {
    0% {
      stroke-dashoffset: -100;
    }
    100% {
      stroke-dashoffset: 900;
    }
}
@keyframes dash-check {
    0% {
      stroke-dashoffset: -100;
    }
    100% {
      stroke-dashoffset: 900;
    }
}

.text-uploaded {
    position: absolute;
    bottom: -30px;
    font-size: 32px;
    left: 0;
    right: 0;
    text-align: center;

}



section.bde-section-532-102.bde-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #b988203d;
}

.section.bde-section-532-102.bde-section {
  position: relative;
  z-index: 1;
}

.stack-holder-inner, .accept-terms > span {
    color: #898989 !important;
    font-weight: 600;
}
.text-white{
	  color: #898989 !important;
}

@media (max-width: 768px) {
  .Registration-wrapper-block .input-wrapper {
    grid-template-columns: 1fr;
  }
}


.Registration-wrapper-block h3.form-main-heading {
    color: #d9872e;
}







/*wizard css*/

.step{display:none}
.step.active{display:block}
.wizard-buttons{display:flex;justify-content:space-between;margin-top:20px}
.wizard-buttons button{padding:10px 25px;background:#000;color:#fff;border:none;cursor:pointer}


/* PROGRESS BAR */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.wizard-progress::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ddd;
    transform: translateY(-50%);
    z-index: 0;
}

.progress-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.progress-step span {
    width: 37px;
    height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ddd;
    color: #000;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 20px;
}
.progress-step p {
    font-size: 13px;
    margin: 0;
    color: #D0BFAD;
}


.progress-step.active span,
.progress-step.completed span {
    background: #B4936F;
    color: #fff;
}

.progress-step.completed span {
    background: #D0BFAD;
}

/* STEPS */
.step { display: none; }
.step.active { display: block; }

/* BUTTONS */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.wizard-buttons button {
    padding: 10px 25px;
    background: #B4936F;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;      
}



/*new file uploaded*/

.upload-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 15px 0px;       
}

.upload-box input[type="file"] {
    display: none;
}

.upload-ui {
    border: 2px dashed #fff;
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
    cursor: pointer;
    background: #d0bfad5e;
    color: #fff;
}

.upload-ui span {
    color: #B4936F;
    font-weight: 600;
}

.preview-box {
    display: none;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px dashed #fff;
    padding: 2px 2px;
}

.preview-box img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 12px;
}

.preview-box button {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

/*other css start*/



.compulsory-field{
    color: red;
}
.previewImg {
    min-height: 180px;
    max-height: 180px;
    object-fit: contain;
}

.breakdance .bde-column-532-105 {
    background: linear-gradient(0deg, #261f19e3 100%, rgba(255, 0, 0, 1) 100%);
}
/*beautification css as per referenece website*/


.Registration-wrapper-block h3.form-main-heading {
    color: #D0BFAD;
    font-family: GT Sectra Display Light!important;
    font-size: 40px;
    font-weight: 600;
}
.fourth-wizard-box{
    position: relative;
}
.fourth-wizard-box .form-register-btn{
    position: absolute;
    right: 0;
    text-transform: uppercase;
}
.breakdance .bde-column-532-105 {
    background-color: unset!important;
}
.upload-ui p {
    color: #D0BFAD;
}
.Registration-wrapper-block .progress-step.active span {
    background-color: #B4936F;
}
.page-main-heading{
    color:#B4936F;
}
.page-main-heading.text-white{
    color: white!important;
}