.customCss {
    width: 90%;
    border: 1px solid red;
    margin: 0 auto;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}
.row {
  display: flex;
}
.customCss >h2{
    font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 28px;
line-height: 38px;
color: #000000;
padding-top: 40px;

}

/* for profile pics */
.upload-imag_serNo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid green; */
}
.upload-imag_serNo .serial_no {
    width: 160px;
}
.upload-imag_serNo .serial_no >p{
    font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 22px;
/* identical to box height */
color: #6C6C6C;
border: 1px solid #9A9A9A;
background-color: #F3F3F3;
padding: 8px 16px;
}
/* .custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
  } */
.upload_img {
    padding: 50px 20px;
    background: #FFFFFF;
border: 1px solid #9A9A9A;
display: flex;
flex-direction: column;
align-items: center;
color: red;
font-size: smaller;
}
#imageUpload
{
    display: none;
}

#profileImage
{
    cursor: pointer;
}

.form-select {
    border-radius: 0 !important;
    border: 1px solid #9F9F9F;
    background-color: #F3F3F3;
    font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 10px !important;
line-height: 14px;
padding: 0.6875rem 1rem !important;
color: #595959;
}
i{
    margin-top: -29px;
    margin-left: 8px;
    position: absolute;
    color: #595959 !important;
}
.form-control{
    padding: 0.6875rem 1.6rem !important;
    border-radius: 0;
    border: 1px solid #9F9F9F;
    background-color: #F3F3F3;
    font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 12px !important;
line-height: 16px;
letter-spacing: 0.01em;
color: #595959;
}
#input_11,
#input_text,
#input_13,
#input_12 {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
    padding: 2px 10px;
    width: 33%;
}

#input_text {
    width: 100% !important;
}
#input_13 {
    width: 40% !important;
}
#input_12 {
    width: 45%;
    border-bottom: 1px dotted #000000;
}
#input_11:focus,
#input_text:focus,
#input_13:focus,
#input_12:focus {
    outline: none;
}
.input-style  {
    width: 100%;
    /* border: 1px solid #9F9F9F; */
    border: none;
    background-color: #F3F3F3;
    color: #595959;
    padding: 0.6875rem 1rem !important;
    font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 16px;
letter-spacing: 0.01em;
color: #595959;
text-align: center;
margin-bottom: 0px;
}

table, td, th {
    border: 1px solid #9F9F9F;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }
#toggle-cards .card-A:not(:first-child) {
    display:none;
 }
 .btn-next,
 .btn-submit {
    border: 1px solid #7F1416;
    background-color: #7F1416;
    padding: 0.3125rem 1.6875rem;
    font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 152.68%;
/* or 24px */
letter-spacing: 0.015em;
color: #FFFFFF;
border-radius: 50px;
 }
 .btn-prev {
    border: 1px solid #7F1416;
    background-color: #FFFFFF;
    padding: 0.3125rem 1.6875rem;
    font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 152.68%;
/* or 24px */
letter-spacing: 0.015em;
color: #000000;
border-radius: 50px;
 }
.css {
    padding: 13px 10px;
    font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 16px;
letter-spacing: 0.01em;
text-align: center;
color: #595959;
background-color: #F3F3F3;

}

 /* for removing default arrows in number input  */
 /* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

/* (((((((((((((((for checkbox custimization )))))))))))))))*/


  /* Create a custom checkbox */
  .container {
    display: block;
    position: relative;
    padding-left: 0px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default radio button */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: -3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #D9D9D9;

  }

  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #D9D9D9;
  }

  /* When the radio button is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #2196F3;
  }

  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the indicator (dot/circle) when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the indicator (dot/circle) */
  .container .checkmark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
  }

  .checkcustom {
    position: absolute;
    top: -11px !important;
    left: 60px !important;
    height: 20px !important;
    width: 20px !important;
    background-color: #D9D9D9;
  }
  .check1 {
    top: 3px !important;
  }
  .h2,
  .h3,
  .h4 {
    font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 25px;
color: #000000;
margin: 40px 0px 10px 0px;
text-align: center;
  }
  .h4{
text-align: start !important;
  }
.first-form1-sec {
    /* text-align: justify; */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.first-form1-sec >P{
   width: 100%;
   font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 32px;
color: #000000;
}
.first-container1 >P{
   width: 100%;
   font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 25px;
color: #000000;
}

@media screen and (max-width:480px) {
    .first-form1-sec >P {
        font-size: 15px;
        line-height: 25px;
        text-align: start;
    }
    #input_11, #input_text, #input_13, #input_12 {
        background: transparent;
        border: none;
        border-bottom: 1px solid #000000;
        padding: 2px 10px;
        width: 99%;
    }
    #input_13 {
        width: 92% !important;
    }

    .h5, h5 {
        font-size: 1rem;
    }
    .first-container1 >P{
        font-size: 15px;
    }
    .btn-prev,
    .btn-next,
    .btn-submit {
        padding: -0.6875rem -0.3125rem;
        font-family: 'Open Sans';
        font-size: 11px;
        line-height: 146.68%;
        border-radius: 30px;
    }
}

