/*body, div, ul, ol, li, h1, h2, h3, h4, h5, h6,
input, textarea, p, blockquote{ 
  padding:0;
  margin:0;
}*/
html, body{
  height: 100%;
  background: 
    linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6));
}

ol, ul, li {list-style:none}

body,
input,
textarea,
select {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #4c4c4c;
}

.content {
  /*margin: 20px auto;*/
  padding-bottom: 20px;
  /*width: 403px;*/
  -webkit-border-radius: 8px/7px; 
  -moz-border-radius: 8px/7px; 
  border-radius: 8px/7px; 
  background-color: #ebebeb; 
  -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.31); 
  -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.31); 
  box-shadow: 1px 2px 5px rgba(0,0,0,.31); 
  border: solid 1px #cbc9c9;
}
.content h1 {
  font-size: 32px;
  font-weight: 300;
  color: #4c4c4c;
  text-align: center;
  padding-top: 10px;
  margin-bottom: 10px;
}
.content table{
  margin: 0 auto;
}


.content input[type=radio] {
  visibility: hidden;
}

.content label.radio {
  cursor: pointer;
  text-indent: 35px;
  overflow: visible;
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
}

.content label.radio:before {
  /*background: #3a57af;*/
  background: #FFBC00;
  content:'';
  position: absolute;
  top:2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
}

.content label.radio:after {
  opacity: 0;
  content: '';
  position: absolute;
  width: 0.6em;
  height: 0.40em;
  background: transparent;
  top: 7.5px;
  left: 6px;
  border: 3px solid #ffffff;
  border-top: none;
  border-right: none;

  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.content input[type=radio]:checked + label:after {
  opacity: 1;
}

.login input[type=text],input[type=password], input[type="email"],
.register input[type=text],input[type=password], input[type="email"],
.forgot input[type=text],input[type=password], input[type="email"], input[type="number"]{
  width: 200px; 
  height: 42px;
  background-color: #fff; 

  -webkit-border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; 
  -moz-border-radius: 0px 4px 4px 0px/0px 0px 4px 4px; 
  border-radius: 0px 4px 4px 0px/5px 5px 4px 4px; 
  
  -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09); 
  -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); 
  box-shadow: 1px 2px 5px rgba(0,0,0,.09);

  border: solid 1px #cbc9c9;
  margin-left: -5px;
  margin-top: 10px; 
  padding-left: 10px;
}

.content #icon {
  display: inline-block;
  background-color: #FFBC00;
  color: white;
  width: 42px;
  padding: 8px 15px;

  -webkit-border-radius: 4px 0px 0px 4px; 
  -moz-border-radius: 4px 0px 0px 4px; 
  border-radius: 4px 0px 0px 4px;
  
  -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.09);
  -moz-box-shadow: 1px 2px 5px rgba(0,0,0,.09); 
  box-shadow: 1px 2px 5px rgba(0,0,0,.09); 

  border: solid 0px #cbc9c9;
}

/*.gender {
  margin-left: 30px;
  margin-bottom: 30px;
}
*/
/*.accounttype{
  margin-left: 8px;
  margin-top: 20px;
}*/

.modal .button, .content .button {
  font-size: 14px;
  font-weight: 600;
  /*background-color: #3a57af; */
  background-color: #72BE20;
  color: white;
  padding: 6px 20px;
  display: inline-block;
  text-decoration: none;

  -webkit-border-radius: 5px; 
  -moz-border-radius: 5px; 
  border-radius: 5px; 
  
  -webkit-box-shadow: 0 3px rgba(0, 135, 56, .75); 
  -moz-box-shadow: 0 3px rgba(58,87,175,.75); 
  /*box-shadow: 0 3px rgba(58,87,175,.75);*/

  border: none;
  transition: all 0.1s linear 0s; 
  top: 0px;
  position: relative;
}

.modal .button:hover, .content .button:hover {
  top: 3px;
  /*background-color:#2e458b;*/
  background-color: #008738;

  -webkit-box-shadow: none; 
  -moz-box-shadow: none; 
  box-shadow: none;
  
}

.modal .fa{
  color: rgb(239, 165, 38);
}


/* Emergency Alert */
.emg-alert{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 9999;
    padding-top: 10px;
    padding-bottom: 10px;
    display: none;
}
.alert-box{
    /*margin: 0 auto;*/
    position: relative;
    top: 100px;
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    -webkit-box-shadow: 10px 12px 5px 0px rgba(0,0,0,0.40);
    -moz-box-shadow: 10px 12px 5px 0px rgba(0,0,0,0.40);
    box-shadow: 10px 12px 5px 0px rgba(0,0,0,0.40);
}
.alert-ok, .refresh{
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    margin-top: 10px;
    margin-bottom: 30px;
}

.loading{
  width: 96%;
  height: 100px;
  position: absolute;
  bottom: 3px;
}
.loading .fa-spinner{
  z-index: 999;
}



/* feedback page styles */
/*.content .table-responsive table td{
  border: none;
}*/

@media screen and (min-width: 1200px){
  .g-recaptcha{
    margin-left: 110px;
  }
}

@media screen and (max-width: 1199px){
  .g-recaptcha{
    margin-left: 60px;
  }
}

@media screen and (max-width: 991px){
  .g-recaptcha{
    margin-left: 100px;
  }
}

@media screen and (max-width: 767px){
  .g-recaptcha{
    margin-left: 200px;
  }
}

@media screen and (max-width: 734px){
  .g-recaptcha{
    margin-left: 180px;
  }
}

@media screen and (max-width: 693px){
  .g-recaptcha{
    margin-left: 150px;
  }
}

@media screen and (max-width: 628px){
  .g-recaptcha{
    margin-left: 120px;
  }
}

@media screen and (max-width: 586px){
  .g-recaptcha{
    margin-left: 110px;
  }
}

@media screen and (max-width: 566px){
  .g-recaptcha{
    margin-left: 90px;
  }
}

@media screen and (max-width: 528px){
  .g-recaptcha{
    margin-left: 80px;
  }
}

@media screen and (max-width: 500px){
  .g-recaptcha{
    margin-left: 60px;
  }
}

@media screen and (max-width: 456px){
  .g-recaptcha{
    margin-left: 40px;
  }
}

@media screen and (max-width: 420px){
  .g-recaptcha{
    margin-left: 20px;
  }
}

@media screen and (max-width: 382px){
  .g-recaptcha{
    margin-left: 0px;
  }
}