:root {
  --primary: #2c2e33;
  --primary-hover: #25272b;
  --primary-active: #1e2024;
  --primary-light: #2c2e330a;
  --white: #fff;

  --secondary: #f68104;
  --secondary-transparent: #f68104b3;
  --secondary-hover: #e57303;
  --secondary-active: #cc6503;
}

body {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
.navbar-nav,
.btn,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1,
h2,
h3,
h4,
p {
  color: var(--primary);
}

/* ============================================= */
/* COLORS */
/* ============================================= */

.text-white {
  color: var(--white) !important;
}

/* Primary */
.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

/* Secondary */
.bg-secondary {
  background-color: var(--secondary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.badge-secondary {
  background-color: var(--secondary) !important;
}

/* Light */
.bg-light {
  background: var(--primary-light) !important;
}

.border-width-1 {
  border-width: 1px !important;
}

.border-width-2 {
  border-width: 2px !important;
}

.border-width-3 {
  border-width: 3px !important;
}

.border-width-4 {
  border-width: 4px !important;
}

.border-width-5 {
  border-width: 5px !important;
}

/* ============================================= */
/* COMPONENTS : buttons */
/* ============================================= */
.btn-primary {
  background-color: var(--primary) !important;
}

.btn-primary:hover {
  background-color: var(--primary-hover) !important;
}

.btn-primary:active {
  background-color: var(--primary-active) !important;
}

.btn-primary:disabled {
  background-color: var(--primary-hover) !important;
}

.btn-primary-soft {
  background-color: var(--primary-light) !important;
  color: var(--primary) !important;
}

.btn-secondary {
  background-color: var(--secondary) !important;
}

.btn-secondary:hover {
  background-color: var(--secondary-hover) !important;
}

.btn-secondary:active {
  background-color: var(--secondary-active) !important;
}
/* ============================================= */

/* ============================================= */
/* COMPONENTS : navbar */
/* ============================================= */
.nav-link {
  color: var(--white) !important;
}

.nav-link:hover {
  color: var(--secondary) !important;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================= */

/* ============================================= */
/* COMPONENTS: card */
/* ============================================= */
.card-title {
  color: var(--primary);
}

/* ============================================= */

/* ============================================= */
/* UTILITIES */
/* ============================================= */
.text-xs {
  font-size: 0.875rem !important;
}

/* ============================================= */
/* FOOTER */
/* ============================================= */
#container-mycoupon {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

footer {
  width: 100%;
}

footer h6 {
  margin-top: 1rem;
}
/* ============================================= */

/* =============================================
     COMPONENTS : dropdown
 ============================================= */

.dropdown-menu .dropdown-item {
  color: var(--primary);
}

.dropdown-menu .dropdown-item.active {
  color: var(--secondary);
  font-weight: bold;
}
.dropdown-menu .dropdown-item:hover {
  background-color: var(--secondary);
  color: white;
  cursor: pointer;
}

/* ============================================= */

/* =============================================
     COMPONENTS : dropdown
 ============================================= */

.form-control:focus {
  border-color: var(--primary-active) !important;
}

/* ============================================= */

/* =============================================
     COMPONENTS : pagination
 ============================================= */
.page-item > a {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-right: -1px;
  line-height: 1.25;
  color: var(--secondary);
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-item > a:hover {
  z-index: 2;
  color: var(--secondary-hover);
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-item > a:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem var(--secondary-transparent);
}

.page-item:first-child > a {
  margin-right: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child > a {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active > a {
  z-index: 3;
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.page-item.disabled > a {
  color: gray;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-item > a {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child > a {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.pagination-lg .page-item:last-child > a {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.pagination-sm .page-item > a {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child > a {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child > a {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/* ============================================= */

/* =============================================
     COMPONENTS : spinner
 ============================================= */
.spinner-back {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  background-color: #000;
  opacity: 0.5;
}

.spinner {
  margin: auto;
  margin-top: 25%;
  font-size: 35px;
  color: #fff;
  width: 300px;
  height: 36px;
  vertical-align: middle;
  text-align: center;
}

.spinner i {
  font-size: 35px;
  color: #fff;
}
/* ============================================= */

/* =============================================
     COMPONENTS : event-row
 ============================================= */

.event-row .event-container {
  display: flex;
  justify-content: center;
}

.event-row .event-circle {
  position: absolute;
  border-radius: 50%;
  width: 275px;
  height: 275px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secondary-transparent);
}

.event-row .event-circle > div {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
}

.event-row .event-circle > div > h3,
.event-row .event-circle > div > p {
  color: var(--white);
}

.event-row .next-events-list {
  position: relative;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .event-row:nth-child(even) .event-container {
    justify-content: start;
  }

  .event-row:nth-child(odd) .event-container {
    justify-content: end;
  }

  .event-row:nth-child(even) .event-circle {
    left: 21%;
  }

  .event-row:nth-child(odd) .event-circle {
    left: 79%;
  }

  .event-row:nth-child(even) .next-events-list {
    position: absolute;
    left: 53.8%;
  }

  .event-row:nth-child(odd) .next-events-list {
    position: absolute;
    left: -3.8%;
  }

  .event-row .event-circle {
    width: 320px;
    height: 320px;
  }

  .event-row .event-circle > div {
    width: 300px;
  }
}

@media (max-width: 767px) {
  .event-row .next-events-item {
    flex-direction: column;
  }
}

/* ============================================= */

/* ============================================= */
/* CGV & GDPR */
/* ============================================= */
/* GDPR */
.gdpr .table td.first-column {
  width: 40%;
  font-weight: bold;
}
/* ============================================= */
