.neon-block .block {
    position: fixed;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    width: 202px;
    /* height: 150px; */
    /* background: linear-gradient(45deg, #272325 40%, #020104); */
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: monospace;
    text-align: center;
    top: 139px;
    right: 40px;
    z-index: 99999;
}
.neon-block .block:after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: -1;
  background: linear-gradient(45deg, #ff005e, #fbff00);
  animation: neon-block 1.5s linear infinite;
}
.neon-block .block .rainbow {
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  filter: blur(15px);
  z-index: -2;
}
.neon-block .block .rainbow:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(315deg, #ff005e, #fbff00);
}
.neon-block .block .rainbow:after {
  animation: neon-block 1.5s linear infinite;
}

@keyframes neon-block {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}



/*************************/
.que_label{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    border-right: 1px solid #ccc;
}

.ans_list{
    padding-left: 30px;
}


.exam_checker_img{
    width:200px;
}