.question {
    font-size: 25px;
    font-weight: 500;
    margin-bottom:5px;
}


/* The btn-container */
 .btn-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  /* Hide the browser's default radio button */
  .btn-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eeeeee;
    border-radius: 50%;
  }
  /* On mouse-over, add a gray background color */
  .btn-container:hover input ~ .checkmark {
    background-color: #999999;
  }
  /* When the radio button is selected, add a blue background */
  .btn-container input:checked ~ .checkmark {
    background-color: #1c87c9;
  }
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  /* Show the indicator (dot/circle) when checked */
  .btn-container input:checked ~ .checkmark:after {
    display: block;
  }
  /* Style the indicator (dot/circle) */
  .btn-container .checkmark:after {
    top: 8px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eeeeee;
  }


  body {
    font-size: 13px;
  }

  td {
    padding: 0px !important;
  }

  .heading-font {
    font-size: 14px;
    font-weight: bold;
  }

  .small-font {
    font-size: 11px;
  }

  #loading {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 100;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 99999999;
    text-align: center;
  }

  #loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #image-container {
    border: 5px #999 solid;
    margin-bottom: 15px;
    text-align: center;
  }

  #table-container {
    height: 700px;
    max-height: 700px;
    border: 1px solid #ccc;
    /* Set your desired max-height */
    overflow-y: auto;
    margin-bottom: 15px;
  }

  th,
  td {
    white-space: nowrap;
  }

  .modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 1rem);
  }

  .dropzone {
    border: 2px dashed #007bff;
    border-radius: 5px;
    background: white;
  }

  .wrap-text {
    white-space: normal;
    word-wrap: break-word;
  }

  #header_div {
    background: linear-gradient(to top left, #ED1C24 5%, #001ED4 100%);
  }

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

  .sub-heading-1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    /* Adjust the color as needed */
    text-transform: uppercase;
    /* Optional: For making the text uppercase */
  }

  .sub-heading-2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    /* Adjust the color as needed */
    text-transform: uppercase;
    /* Optional: For making the text uppercase */
  }

  .sub-heading-3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #fff;
    /* Adjust the color as needed */
    text-transform: uppercase;
    /* Optional: For making the text uppercase */
  }

  #sub_header_div {
    background-color: rgba(23, 22, 118, 0.3); /* 30% transparency */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: If you want horizontal centering as well */
  }