.thumb-image{
  width:210px;
 height:256px;
 position:relative;
 padding:5px;
 margin:0 auto;
 border:1px solid #ccc;
 box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;
}
#captchaimg
{
    border: 1px solid #ccc;
    padding: 2px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
@media only screen and (max-width: 700px) {
  #reloadCaptcha {
    float:right;
  }
}

.laser {
    width: 70%;
    background-color: lightgreen;
    height: 8px;
	opacity:0.7;
    position: absolute;
    z-index: 2;
    box-shadow: 0px 0px 83px green;
    animation: scanning 3s infinite;
	left:0;
	right:0;
	margin-left:auto;
	margin-right:auto;
	top:15%;
}

  .diode {
    animation: beam .01s infinite;
  }

}


@keyframes beam {
  50% {
    opacity: 0;
  }
}

@keyframes scanning {
  50% {
    transform: translateY(250px);
  }
}