
.form-control:disabled, .form-control[readonly] {
    background-color: #2e3858;
    opacity: 1;
    height:40px;
}
  .ncard {
    box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
    margin: 0.5px;
    padding: 15px
  }
  input[type=number],input[type=text],input[type=email],input[type=file],textarea{
    border: 1px solid grey;
  }
  select{
    border: 2px solid grey;
  }
  a{
    text-decoration: none;
  }
  .tab {
      display: none;
  }
  .stepwizard-step.active p{
    color: #15d4be;
  }
  .disabled.active a{
    color: #15d4be;
  }

  .blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes  blinker {
  50% {
    opacity: 0;
  }
}
.stepwizard-step{
  display:flex;
  flex-direction: column;
  align-items: center;
}
.stepwizard-step a{
  display:flex;
  flex-direction: column;
  align-items: center;
}
.stepwizard-step span{

  width:40px;
  height:40px;
  border-radius:50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stepwizard-step a p{
  display:flex;
  flex-direction: column;
  align-items: center;
}
.stepwizard-row.setup-panel{
  position:relative;

}
.stepwizard-row.setup-panel::after{
  position:absolute;
  content:"";
  top:20px;
  left:0;
  right:0;
  height:2px;
  width:70%;
  margin: 0  auto;
  background: rgba(255,255,255,0.6);
}
.row.row_minified{
  display: flex;

}
.row.row_minified > *{
  flex:1;
}
.row.row_minified  .form-group{
  margin-bottom:10px;
}
.row.row_minified  .form-group label{
  margin-bottom: 5px;
}
@media screen and (max-width:698px){
  .row.row_minified > *:last-child{
    display:none;
  }
}
/* withdrawal screen */
.withdrawalConfirmationScr{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index: 10000000000;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
  display:none;
  justify-content: center;
  align-items: center;
}
.withdrawalConfirmationScr .scWrapper{
background: #fff;
display:flex;
flex-direction: column;
align-items: center;
max-width: 600px;
width:100%;
padding:80px;
position:relative;
}
.withdrawalConfirmationScr .scWrapper .close{
  position:absolute;
  top:30px;
  right:30px;
  color:#000;
  cursor: pointer;
}
.withdrawalConfirmationScr .scWrapper .sucess_wrapper{
  width:100px;
  height:100px;
  border:3px dotted green;
  border-radius: 50%;
  margin-bottom:10px;
}
.withdrawalConfirmationScr .scWrapper  h2{
  color:#000;
}
.withdrawalConfirmationScr .scWrapper  p{
  color:grey;
  max-width:70%;
  text-align: center;
  font-size: 12px;
}
.withdrawalConfirmationScr .scWrapper  a{
  text-decoration: none;
  background: orange;
  width:70%;
  text-align: center;
  padding:10px;
  font-size: 14px;
  margin-top:20px;

}
.withdrawalConfirmationScr .scWrapper .sucess_wrapper img{
  width:100%;
}
@media screen and (max-width:651px){
  .withdrawalConfirmationScr{
      padding:20px;
  }
}
@media screen and (max-width:491px){
  .withdrawalConfirmationScr .scWrapper  h2{
      text-align: center;
  }
  .withdrawalConfirmationScr .scWrapper  p{
      max-width:100%;
  }
  .withdrawalConfirmationScr .scWrapper  a{
      width:100%;  
  }
}