/*input[type="file"] {
    display: none;
}*/

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}
#loaderDiv {
    position: fixed;
    top: 0px;
    z-index: 1100;
    background-color: #222732;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ajax-loader {
    position: relative;
    top: 45%;
    width: 100px;
    height: 100px;
    border: 5px solid;
    border-color: #fc3e5d transparent;
    border-radius: 50%;
    display: flex;
    box-sizing: border-box;
    animation: rotation .5s linear infinite;
    margin: 0 auto;

  }

.loader-text{
  color: white;
  position: relative;
  top: 47%;
  display: flex;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  width:200px;



}
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 

.hidden {
    display: none !important
}