/* Captcha Css */
#refreshButton{
    border:none;
    background:none;
    z-index: 9;
}

.refresh{
    position: relative;
}

.refresh #refreshButton{
    position: absolute;
    right:-5px;
}

.captcha-box {
    position: relative;
    left: 0px;
    top: 2px;
    height: 32px;
    width: 100px;
    position:relative;
    width: 137px;
}

#captcha{
    position: absolute;
    left: -50px;
}

.incorrectCaptcha, .error-msg{
    color: red;
    font-size: 13px;
}

#textBox{
    border: solid 1px #dfdede;
    border-radius: 4px;
    height: 32px;
}

.submit:focus{
    box-shadow: none !important;
}

#captchaBackground{
    background: #f7ae46;
    width: 150px;
    border-radius: 4px;
}

.captcha-none{
    display:none;
}

/* Loader Css */

@-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
  
@keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}

#loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 10000;
  }

  #loading:before{
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 10px -6px 0;
    border: 3px solid #302a7e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

/* Loader Css End*/

@media only screen and (max-width: 767px) {
    #textBox{
        width:100%;
    }
}