@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

:root {
  --color: #cd8618;
}

* {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

body {
  background-color: #f9f9f9;
}

label {
  font-size: 12px;
}

.pageContent {
  margin-top: 125px;
  padding-bottom: 50px;
}

.container {
  margin-top: 10px;
  padding-bottom: 50px;
}

.card {
  box-shadow: 3px 0 5px 0 rgb(0 0 0 / 5%), -3px 0 5px 0 rgb(0 0 0 / 5%),
    0 3px 5px 0 rgb(0 0 0 / 5%);
}

.card-header {
  background-color: var(--color);
  color: #fff;
  border-bottom: 0;
}

.btn-primary {
  background-color: var(--color) !important;
  border-color: var(--color) !important;
  color: #fff;
  border-radius: 10px;
  padding: 0.2rem 0.5rem !important;
}

.btn-primary.head {
  background-color: var(--color);
  border-color: #fff;
  color: #fff;
  border-radius: 10px;
}

.btn-danger {
  background-color: var(--color);
  border-color: var(--color);
  color: #fff;
  border-radius: 10px;
}

/* ------------------------------------------------------ HEADER ------------------------------------*/
.header-basic-light {
  padding: 20px 40px;
  box-sizing: border-box;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
  height: 80px;
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0px;
}

.header-basic-light .header-limiter {
  /* max-width: 1200px; */
  text-align: center;
  margin: 0 auto;
}

/* Logo */
.header-basic-light .header-limiter .logo {
  float: left;
  height: 70px;
  float: left;
  font: normal 28px Cookie, Arial, Helvetica, sans-serif;
  line-height: 40px;
  margin: 0;
  position: absolute;
  top: 0px;
  height: 70px;
}

.header-basic-light .header-limiter h1 {
  float: left;
  font: normal 28px Cookie, Arial, Helvetica, sans-serif;
  line-height: 40px;
  margin: 0;
}

.header-basic-light .header-limiter h1 span {
  color: #5383d3;
}

/* The header links */

.header-basic-light .header-limiter a {
  color: #5c616a;
  text-decoration: none;
}

.header-basic-light .header-limiter nav {
  font: 15px Arial, Helvetica, sans-serif;
  line-height: 40px;
  float: right;
}

.header-basic-light .header-limiter nav a {
  display: inline-block;
  padding: 0 10px;
  opacity: 0.9;
  text-decoration: none;
  color: #5c616a;
  line-height: 1;
}

.header-basic-light .header-limiter nav a.selected {
  background-color: var(--color);
  color: #ffffff;
  border-radius: 3px;
  padding: 6px 10px;
}

/* Making the header responsive. */

@media all and (max-width: 600px) {
  .header-basic-light {
    padding: 20px 0;
    height: 85px;
  }

  .header-basic-light .header-limiter h1 {
    float: none;
    margin: -8px 0 10px;
    text-align: center;
    font-size: 24px;
    line-height: 1;
  }

  .header-basic-light .header-limiter nav {
    line-height: 1;
    float: none;
  }

  .header-basic-light .header-limiter nav a {
    font-size: 13px;
  }
}

/* For the headers to look good, be sure to reset the margin and padding of the body */
