.btn_box_shadow_remover {
    box-shadow: none;
    cursor: pointer;
}

.btnCustome{
        background-color: #fff;
        border: 1px solid #5C0F8B;
        color: #5C0F8B;
        transition-duration:.30s;
        border-radius: 4px;
}

.btn{
    cursor: pointer;
}

.btnCustome:hover{
    background-color: #5C0F8B;
    border: 1px solid #5C0F8B;
    color: #fff;
    transition-duration:.30s;
    border-radius: 4px;
}

.ambitious-crimson {
    color: red;
}

.select2-selection__rendered {
    line-height: 33px !important;
}

.select2-container .select2-selection--single {
    height: 37px !important;
}

.select2-selection__arrow {
    height: 34px !important;
}

.select2-container--default {
    color: gray !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {

    left: 30% !important;
}

.ml-1 {
    margin-left: .50rem !important;
}

.custom-border {
    border: 1px dashed #ccc;
    border-radius: 10px;
}

.custom_heading {
    font-size: 1rem;
}

.content-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    height: 100%;
}

.form-floating>label{
    padding: .5rem .9rem;
}

.leftForm{
    overflow: auto;
    max-height:calc(100vh - 175px);
    margin-bottom: 20px;
}

/* width */
.leftForm::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.leftForm::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.leftForm::-webkit-scrollbar-thumb {
  background:#333; 
  border-radius: 10px;
}

/* Handle on hover */
.leftForm::-webkit-scrollbar-thumb:hover {
  background:#5C0F8B; 
}

.social-links a {
    background:#5C0F8B; 
    position: relative;
    display: inline-block;
    margin: 0px 2px 3px 0px;
    width: 32px;
    height: 32px;
    line-height: 30px;
    color: #fff;
    border: 1px solid #FF5100;
    border-radius: 50%;
    font-size: 13px;
    text-align: center;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
}

.social-links i{
    color: #fff!important;
    margin-right:0!important;
}

.card-details{
    padding-left:20px;
}

.card-details p{
    align-items: center;
    margin-bottom: 10px;
}
.card-details i{
    color: #FF5100;
    margin-right: 8px;
}

/* Login Page */


.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
  }
  .loginForm{
      width: 400px;
      border: 1px solid #fff; 
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
      position: relative;
  }

  .loginForm .btn-primary{
      width: 100%;
      background-color:#5C0F8B;
      border-color: #5C0F8B;      
  }

  .loginForm .btn-primary:hover{
    width: 100%;
    background-color:#39005c;
    border-color: #39005c;      
}

  .form-control.is-invalid, .was-validated .form-control:invalid{
    border-color: #ccc;
  }
  .form-control.is-invalid, .was-validated .form-control:invalid:focus{
    border-color: #333;
  }

  .logoRaisoni{
      position: absolute;
      text-align: center;
      width: 90%;
      margin-top: -90px;
  }

  .logoRaisoni img{
      width: 150px;
  }
  .form-control[readonly] {
    background-color:#fff;
    opacity: 1;
}