/* COMMOM CSS FOR DASHBOARD */
.otp-box{ display: none;}
.tenderBox{
  background-color: white;  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.tenderBox p{ line-height: 27px;}
.tenderBox button{    background: #35bc45; border-radius: 5px; border: 1px solid #259232;}
.milestoneCover li{ position: relative; list-style: none; margin-bottom: 12px;     margin-left: 31px;}
.milestoneCover li div{ 
  width: 14px;
  height: 14px;
  position: absolute;
  left: -30px;
  border-radius: 100px;
  top: 4px;
 }


.sidebar {
  background-color: #4365cf;
  border-radius: 20px;
  padding: 20px;
  min-height: 100vh;
}




.sidebar a.active {
  background-color: #738de9;
  border-radius: 50px;
  font-weight: bold;
}

.sidebar a:hover {
  background-color: #738de9;
  border-radius: 50px;
}

.content-box {
  background-color: #f9f9f9 !important;
  padding: 25px;
  border-radius: 20px;
}

.content-box h4 {
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #295072;
}

.h5 {
  font-weight: 600;
  font-size: 2rem;
}

.card-success {
  background-color: #8bc24a;
  color: white;
  font-size: 30px;
}

.card-pending {
  background-color: #ffb64d;
  color: white;
  font-size: 30px;
}

.card-failed {
  background-color: #e24c57;
  color: white;
  font-size: 30px;
}
.payBoxIcon{ display: flex; align-items: center;}
/* FOR DASHBOARD */
.sidebar {
  background-color: #4365cf;
  border-radius: 20px;
  padding: 20px;
  min-height: 100vh;
}

.sidebar a {
  display: block;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-decoration: none;
  border: 2px solid #738de9;
  border-radius: 50px;
}

.sidebar a.active {
  background-color: #738de9;
  border-radius: 50px;
  font-weight: bold;
}

.sidebar a:hover {
  background-color: #738de9;
  border-radius: 50px;
}

.content-box {
  padding: 25px;
  border-radius: 20px;
}

.content-box h4 {
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #295072;
  font-size: 21px;
}

.download-text {
  color: #295072;
  font-weight: 700 !important;
  /* margin-top: 4rem; */
  font-size: 14px !important;
}


.sidebar {
  background-color: #4365cf;
  border-radius: 20px;
  padding: 16px;
  /* min-height: 170vh; */
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
}

.sidebar a {
  display: block;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-decoration: none;
  border: 2px solid #738de9;
  border-radius: 50px;
}

.sidebar a.active {
  background-color: #738de9;
  border-radius: 50px;
  font-weight: bold;
}

.sidebar a:hover {
  background-color: #738de9;
  border-radius: 50px;
}

.content-box {
  background: white;
  padding: 25px;
  border-radius: 20px;
}

.content-box h4 {
  font-weight: bold;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #295072;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input {
  font-weight: 500;
  padding: 0;
}

.form-group label {
  margin-bottom: 5px;
  color: #295072;

  font-size: 14px;
  font-weight: 500;
}

.form-group select{    padding: 0; font-weight: 500;}

input {
  background-color: unset;
}
input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

input::placeholder {
  color: #466785;
}

.download {
  color: #466785;
}

.edit-btn {
  float: right;
  color: #295072;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.edit-btn i {
  font-size: 15px;
  padding: 5px;
  color: #295072;
  border-bottom: 2px solid #295072;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: unset;
}

@media (max-width: 768px) {
  .sidebar {
    min-height: auto;
  }

  .content-box {
    margin-top: 20px;
  }
}

.card-pending {
  background-color: #ffc107;
  color: white;
  font-size: 14px;
}

.card-pending i {
  font-size: 30px;
}

.h5 {
  font-weight: 600;
  font-size: 2rem;
}

.vertical-line {
  position: absolute;
  height: 130px;
  width: 4px;
  background-color: #bfbfbf;
  left: 1%;
  top: -10%;
  border-radius: 2px;
  /* z-index: -999; */
}

/* Close Button */
.close-btn {
  font-size: 25px;
  color: white;
  cursor: pointer;
  text-align: right;
  padding-bottom: 10px;
  display: none;
}

/* Hide Sidebar in Mobile */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    position: fixed;
  }
  .close-btn {
    display: block;
  }
}

/* Menu Toggle Button */
.menu-toggle {
  font-size: 31px;
  position: absolute;
  top: 111px;
  left: 20px;
  cursor: pointer;
  display: none;
  color: black;
  /* background: #333; */
  padding: 10px;
  border-radius: 5px;
}


/* Show the button only on Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .menu-toggle img{ height: 33px;}
  .close-btn img{ height: 33px;}

  .sidebar {
    background-color: #4365cf;
    border-radius: 20px;
    /* padding: 20px; */
    min-height: 100%;
    width: 95%;
    margin-top: -8%;
    border-radius: unset;
    transition: transform 0.3s ease-in-out;
  }
}

/* Show Sidebar When Active */
.sidebar.active {
  transform: translateX(0);
}

.step-indicator {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

h2 {
  color: #295473;
}

label {
  display: none;
}

.step-name {
  position: absolute !important;
    top: -25px !important;
    left: -50%;
    right: -50%;
    margin: 0 -200%;
    color: #295072;
    font-weight: 500 !important;
    width: 100px;
    text-align: center;
}

.step-indicator.active {
  background-color: #28a745;
}

.step-indicator.completed {
  background-color: #28a745;
}

.form-section {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
}

.form-section h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.form-section .form-group {
  position: relative;
}

.form-section .form-group i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #6c757d;
}

.input-group-text {
  background-color: white !important;
}

.form-section .form-control {
  padding-left: 0px;
  border-left: unset;
}

.btn-next,
.btn-back {
  /* background: linear-gradient(to right, #28a745, #007bff); */
  background: linear-gradient(172deg, rgba(41, 80, 114, 1) 0%, rgba(41, 81, 114, 1) 48%, rgba(54, 198, 64, 1) 90%, rgba(52, 181, 71, 1) 96%, rgba(46, 121, 96, 1) 100%);
  color: white;
}

.footer-logo {
  height: 50px;
}

.social-icons a {
  color: #28a745;
  margin: 0 10px;
}

/* step form */
.form-step {
  width: 70%;
  z-index: 999;
  justify-content: center;
}

.line {
  width: 590px;
  height: 2px;
  background-color: #6c757d;
  left: 1.3%;
  z-index: -999;
}

.card-custom {
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.btn-upload {
  background: linear-gradient(to right, #38a169, #4299e1);
  color: white;
  font-weight: bold;
}

.btn-pay {
  background: linear-gradient(to right, #ed8936, #e53e3e);
  color: white;
  font-weight: bold;
}

.ruppe {
  font-size: 23px !important;
  font-weight: 600 !important;
  margin-left: 1rem;
}

.grey {
  background-color: #295072;
}

.instructions {
  padding: 1rem 4rem;
  /* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); */
    border: .5px solid #d5d5d5;
    border-radius: 5px;

}

.instructions h3 {
  font-size: 22px;
  font-weight: 700;
}
.stepCover{ margin:0 0 20px 0!important;}
.formAply h2{ margin: 25px 0 20px 0!important;}

.commanBtn{
  background: linear-gradient(172deg, rgba(41, 80, 114, 1) 0%, rgba(41, 81, 114, 1) 48%, rgba(54, 198, 64, 1) 90%, rgba(52, 181, 71, 1) 96%, rgba(46, 121, 96, 1) 100%);
  color: white;
  min-width: 180px;
  height: 49px;
  font-size: 18px;
  font-weight: 600;
  border: 0;
  border-radius: 5px;
  margin-top: 20px;
}
.commanBtn:hover{ color:#fff;}

.twoBtnCover{ display: flex; gap: 20px; justify-content: center;} 
.twoBtnCover .btn{ width: 100px; height: 49px;}
.twoBtnCover .btn:hover{ color:#fff;}

@media screen and (max-width:  525px) {
  .line{ width: 94% !important;}

  .card-custom{height: 180px;}

  .milestoneCover li div{ 

    left: -33px;

   }
  
}
@media screen and (max-width:  375px) {
  .form-section{padding: 30px 14px 30px 14px;}
  .uploadBtn{ font-size: 14px;}

  .form-section .form-control{padding-left: 16px;}
}
@media screen and (max-width:  359px) {
  .steps .step-name { font-size: 10px !important;}
}


 


     @media (max-width: 450px) {
  #menuToggle img {
   
 margin-left: 340px !important;

  }
}

  @media (max-width: 375px) {
  #menuToggle img {
   
     margin-left: 293px !important;

  }
}
  @media (max-width: 320px) {
  #menuToggle img {
   
     margin-left: 240px !important;
     margin-top:5px;

  }
}



  .btn-custom-blue {
    color: #4365CF;
    border-color: #4365CF;
  }

  .btn-custom-blue:hover {
    background-color: #4365CF;
    color: white;
  }

   @media (max-width: 576px) {
    .btn-custom-blue {
      justify-content: flex-start !important;
      text-align: left !important;
      padding-left: 1rem;
      width: 100% !important;
    }
  }



  @media (max-width: 1030px) {
  .sidebar a {
    font-size: 14px !important;
  }
}



@media (max-width: 768px) {
    .sidebar {
       
        position: absolute;
        right: 100%;
    }
  
  
  }