@font-face {
  font-family: 'Century Gothic';
  src: url('font/century-gothic.ttf');
}

* {
  font-family: 'Century Gothic';
  color: #595959;
  font-size: 18px;
}

body {
  margin: 0;
  padding: 0;
  background: #FFF;
  overflow-x: hidden;
  position: relative;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  width: 100%;
  position: absolute;
}

.loading:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  border-top: 4px solid #FFF;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  display: block;
}

.loading:before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}