@import 'fontface.css';

h1, .h1, h2, .h2, h3, .h3 {
  margin-bottom: 10px;
  margin-top: 10px;
  font-family: "thaisans_neuebold", Arial;
}
.compfont {
  font-family: "thaisans_neuebold", Arial;
  font-size:24px;
}
.detailfont {
  /* font-family: "thaisans_neuebold", Arial; */
  font-size:16px;
}
.mybgcolor { background-color : rgb(1, 179, 110) ;}

.pointer { cursor:pointer; }
.watermark {
    position:fixed;
    bottom:50%;
    left:25%;
    opacity:0.15;
    z-index:99;
    color:#888888;
}
.loader {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #008CFF; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin .8s linear infinite;
  margin: 0 auto;
  text-align: center;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
  70% { transform: rotate(320deg); }
  100% { transform: rotate(360deg); }
}
