.watermark {
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  z-index: 1;
  position: absolute;
  margin-top: 45px;
  margin-left: -2px;
  background-color: #ffffff;
  border: 1px solid black;
  opacity: 0.6;
  filter: alpha(opacity=60);
  width: 98%;
}

.pulse-primary {
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 20px 5px rgba(0, 170, 255, 0.8);
  animation: pulse-primary 1s infinite;
}

.pulse-primary:hover {
  color: rgba(255, 255, 255, 1) !important;
}

@-webkit-keyframes pulse-primary {
  0% {
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 170, 255, 0.8);
    color: rgba(255, 255, 255, 1);
  }

  70% {
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 170, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 170, 255, 0.8);
    color: rgba(255, 255, 255, 1);
  }
}

@keyframes pulse-primary {
  0% {
    -moz-box-shadow: 0px 0px 20px 5px rgba(0, 170, 255, 0.8);
    box-shadow: 0px 0px 20px 5px rgba(0, 170, 255, 0.8);
    color: rgba(255, 255, 255, 1);
  }

  70% {
    -moz-box-shadow: 0px 0px 20px 5px rgba(0, 170, 255, 0);
    box-shadow: 0px 0px 20px 5px rgba(0, 170, 255, 0);
  }

  100% {
    -moz-box-shadow: 0px 0px 20px 5px rgba(0, 170, 255, 0.8);
    box-shadow: 0px 0px 20px 5px rgba(0, 170, 255, 0.8);
    color: rgba(255, 255, 255, 1);
  }
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  white-space: pre-line;
  position: relative;
  top: -7px;
}

::-moz-placeholder {
  /* Firefox 19+ */
  white-space: pre-line;
  position: relative;
  top: -7px;
}

:-ms-input-placeholder {
  /* IE 10+ */
  white-space: pre-line;
  position: relative;
  top: -7px;
}

:-moz-placeholder {
  /* Firefox 18- */
  white-space: pre-line;
  position: relative;
  top: -7px;
}

/*checkboox style*/
input[type="radio"] {
  appearance: none;
  border: 1px solid #d3d3d3;
  width: 20px;
  height: 20px;
  content: none;
  outline: none;
  margin: 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

input[type="radio"]:checked {
  appearance: none;
  outline: none;
  padding: 0;
  content: none;
  border: none;
}

input[type="radio"]:checked::before {
  position: absolute;
  color: green !important;
  content: "\00A0\2713\00A0" !important;
  border: 1px solid #d3d3d3;
  font-weight: bolder;
  font-size: px;
}

/*end of checkboox style*/
