.page-content {
  max-width: 1160px;
  margin: 0 auto;
}

.card,
.card-dark {
  padding: 80px 0;
}

.card-dark {
  background: #ffffff;
}

.card .card-title,
.card-dark .card-title {
  font-size: 32px;
  //font-weight: 600;
  color: rgba(51, 51, 51, 1);
  line-height: 60px;
  text-align: center;
}

.card-dark-new .card-title {
  font-size: 32px;
  //font-weight: 600;
  color: rgba(51, 51, 51, 1);
  line-height: 60px;
  text-align: center;
}

.button {
  display: inline-block;
  width: 180px;
  height: 46px;
  line-height: 46px;
  border-radius: 1px;
  font-size: 16px;
  text-align: center;
  transition: all 0.1s linear 0s;
}

.button-solid {
  background-color: #fff;
  color: #0e57a2;
  border: 1px solid rgba(255, 255, 255, 1);
}

.button-solid:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.button-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.35);
}

.button-default {
  background: transparent;
  color: #0e57a2;
  border: 1px solid rgba(14, 87, 162, 0.2);
}

.button-default:hover {
  background: rgba(14, 87, 162, 0.1);
}

.clear-fix-top {
  position: absolute !important;
  top: 0;
  box-shadow: none !important;
}

.fixed-top {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.hide {
  display: none;
}

::-webkit-input-placeholder {
  color: rgba(153, 153, 153, 1);
}
/* Firefox 18- */
:-moz-placeholder {
  color: rgba(153, 153, 153, 1);
}
/* Firefox 19+ */
::-moz-placeholder {
  color: rgba(153, 153, 153, 1);
}
:-ms-input-placeholder {
  color: rgba(153, 153, 153, 1);
}
#kf5-support-btn {
  display: none !important;
}

.slide-in-up {
  opacity: 0;
}
.slideInUp {
  animation-name: slideInUp;
}
.done {
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes slideInUp {
  from {
      opacity: 0;
      transform: translateY(20%);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}