.file-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  padding: 30px;
  border: 1px dashed silver;
  border-radius: 8px;
}

.loader-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    z-index:99999;

    justify-content:center;
    align-items:center;
}

.file-upload input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.preview_img {
  height: 80px;
  width: 80px;
  border: 4px solid silver;
  border-radius: 100%;
  object-fit: cover;
}


.pdf {
            width: 100%;
            aspect-ratio: 16 / 9;
             height: 80%;
            margin: 0;
            padding: 0;
             
        }

.form-check-input:checked {
  background-color: #000000;
  border-color: #0910e2;
}

/* Overrides the focus shadow globally */
.form-check-input:focus {
  border-color: #e3ea1e;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}



/* Extra Small */
@media (max-width: 575.98px) {
 .show_img {
  height: 25px;
        width: 30px;
    }
 }

/* Small */
@media (min-width: 576px) and (max-width: 767.98px) {
 .show_img {
  height: 30px;
        width: 35px;
    }
 }

/* Medium */
@media (min-width: 768px) and (max-width: 991.98px) {
 .show_img {
  height:30px;
        width:35px;
    }
 }

/* Large */
@media (min-width: 992px) and (max-width: 1199.98px) {
 .show_img {
  height: 35px;
        width:40px;
    }
 }

/* Extra Large */
@media (min-width: 1200px) and (max-width: 1399.98px) {
 .show_img {
  height: 50px;
        width:55px;
    }
 }

/* Extra Extra Large */
@media (min-width: 1400px) {
 .show_img {
  height:55px;
        width:60px;
    }
 }