/*------------------------------------------------------------------
    File Name: custom.css
-------------------------------------------------------------------*/

/** ADD YOUR AWESOME CODES HERE **/

.logoblack{height: 42px;}

.hideMe{display:none !important;}

.form-input {
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    padding: 17px 20px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.profile-btn-box{
    text-align: right;
}

.alert {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 10px;
}

.profilePhotoCamera{
    background-color: #4e4c4cc7;
    color: #fff;
    border-radius: 100% 100%;
    position: fixed;
    margin-top: 0px;
    text-align: center;
    width: 75px;
    height: 75px;
    opacity: 0;
}

.profilePhotoCamera:hover{
    opacity: 1;
    color: #fff;
}

.lobster-regular {
    font-family: "Lobster", serif;
    font-weight: 400;
    font-style: normal;
}

.company-name {
    font-size: 35px;
    font-weight: bold;
    display: none;
    color: #fff;
}
  
/*.sendotpBtn, .verifyEmailBtn{
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}*/

.sendotpBtn, .verifyEmailBtn, .submitApplBtn {
    min-width: 125px;
    height: auto;
    /*float: left;*/
    float: none;
    margin: 0;
    text-align: center;
    color: #fff;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    transition: ease all 0.5s;
    cursor: pointer;
    font-weight: 300;
}

.required{
    color:#dc3545;
}

.documentBlock{
    border: 1px dashed #007bff;
    width: 100px;
    height: 112px;
    margin: auto;
    border-radius: 0px;
    /* text-align: center; */
    padding: 5px 5px 5px 5px;
}

.documentBlock .fa.fa-file-image-o{
    font-size: 64px;
    margin-bottom: 3px;
    color: #007bff;
}

.pagination .btn.paginate_button{
    font-size: 1.3rem !important;
}

.pagination .btn.active.paginate_button,
.pagination .btn.paginate_button:hover,
.pagination .btn.paginate_button:focus {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.pagination .btn.paginate_button {
    background: #fff;
    color: #007bff;
    border-color: #007bff;
    width: 45px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
}

.navSeprator {
    border: none;
    border-left: 1px solid;
    height: 12px;
}


.uploadDeleteBtn{
    margin-right: 10px;
}

.uploadViewBtn{
    margin-left: 10px;
}

/*Loading spinners*/
@keyframes spinner-border {
    to { transform: rotate(360deg); }
  }
  
  .spinner-border {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: text-bottom;
    border: 0.20em solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
  }
  
  .spinner-border-sm {
      width: 1.5rem;
      height: 1.5rem;
      border-width: 0.20em;
  }
  
  
  @keyframes spinner-grow {
    0% {
      transform: scale(0);
    }
    50% {
      opacity: 1;
    }
  }
  
  .spinner-grow {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: spinner-grow .75s linear infinite;
  }
  
  .spinner-grow-sm {
      width: 1.5rem;
      height: 1.5rem;
  }
  