@font-face {
  font-family: 'Quilin';
  src: url('../fonts/quilin.otf') format('opentype');
  font-weight: normal;
  font-style: normal; }

* {
  font-family: 'Open Sans', sans-serif; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; }
  body > * {
    width: 100%; }
  body #page-content {
    flex: 1; }

.btn, input[type="submit"] {
  background-color: #009fe3;
  border-radius: 20px;
  color: white;
  font-size: 13px;
  padding: 7px 15px;
  cursor: pointer;
  user-select: none; }
  .btn:hover, input[type="submit"]:hover {
    filter: brightness(0.9); }
  .btn:active, input[type="submit"]:active {
    filter: brightness(0.8); }

.bgimage {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: gray; }

.loader {
  /* Light grey */
  border: 3px solid #f3f3f3;
  /* Blue */
  border-top: 3px solid #3498db;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  margin: 20px auto; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }

  100% {
    transform: rotate(360deg); } }

.whitebox {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, .08); }

.wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  padding: 5px; }
  .wpcf7 .wpcf7-response-output {
    font-size: 12px; }
