/* =============================================================================
   IFTAR - GLOBAL UTILITIES
   ============================================================================= */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

table li {
  font-size: 18px;
}

.description ul li {
  list-style-type: disc;
  margin-left: 20px;
}

/* =============================================================================
   LOADING STATE
   ============================================================================= */

.modal-loading {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.8) url('../../img/ajax-loader.gif') 50% 50% no-repeat;
}

body.loading .modal-loading {
  display: block;
  overflow: hidden;
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hidden {
  display: none !important;
}
