:root {
  --mobile-font-size: 13px;
  --mobile-heading-size: 16px;
  --primary-color: #50b4c8;
  --contrast-color: #ff8c00;
  --white: #fff;
  --dark: #28242c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #fafbfe;
  font-family: "Roboto";
}

/* SCROLLBAR */

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #999;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* SCROLLBAR END */

.main {
  padding: 3rem;
  height: calc(100vh - 74px);
  overflow-y: auto;
  background: var(--primary-color);
}

.modern-container {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  padding: 3rem;
  z-index: 100000;
  color: #000;
  font-family: "Roboto";
  background: #fff;
}

.modern-container h1,
.modern-container h5 {
  text-transform: uppercase;
  font-family: "Oswald";
  margin: 0 0 0.5rem 0;
}

.modern-container h1 {
  padding: 0.8rem 1.2rem;
  margin: 0 0 3rem 0;
  background: var(--primary-color);
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  display: inline-block;
  color: var(--white);
}

.modern-container p {
  border-left: 5px solid var(--contrast-color);
  padding: 0 1rem;
  margin: 0;
}

.section {
  margin: 0 0 1rem 0;
}

.bg-color {
  background: var(--primary-color);
}

.button-primary-color {
  background: var(--primary-color);
  color: var(--white);
}

.button-primary-color:hover {
  background: var(--primary-color);
  color: var(--white);
}

.standard {
  height: 100%;
}

.single {
  margin: auto;
}

.body-container {
  overflow-y: scroll;
  height: 100%;
}

.menu {
  position: absolute;
  bottom: 3rem;
}

@media (max-width: 576px) {
  .navbar-dark .navbar-nav .nav-link {
    float: right;
  }
}

.center-text {
  text-align: center;
}

.nav-left {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-center {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.nav-center h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

.nav-right {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-right p {
  margin: 0;
  float: right;
}

.menu-item {
  color: #fff;
}

.menu-item:hover {
  background-color: #fff;
  color: #000;
}

.full-height {
  height: calc(100vh - 74px);
}

.form-item {
  margin-bottom: 1rem;
}

@media (max-width: 576px) {
  body {
    font-size: var(--mobile-font-size);
  }
}

@media (max-width: 576px) {
  .card,
  input,
  button,
  th,
  p {
    font-size: var(--mobile-font-size);
  }

  input[type="datetime-local"],
  input[type="text"],
  input[type="email"],
  input[type="file"] {
    font-size: var(--mobile-font-size);
  }

  button[type="submit"] {
    font-size: var(--mobile-font-size);
  }

  .btn {
    font-size: var(--mobile-font-size);
  }

  h5 {
    font-size: var(--mobile-heading-size);
  }

  .col-xl-10 .col-12 .col-sm-12 {
    padding: 0;
  }

  .header-header {
    font-size: 16px;
  }

  .main {
    padding: 1rem;
  }

  .modern-container {
    padding: 1rem;
  }

  .modern-container h1 {
    display: flex;
    justify-content: center;
    margin: 0 0 1rem 0;
  }

  .modern-container div div {
    margin: 0 0 1rem 0;
  }
}

@media (max-width: 1200px) {
  .main {
    height: calc(100vh - 74px - 64px);
  }

  .modern-container {
    padding: 1rem;
  }

  .modern-container h1 {
    display: flex;
    justify-content: center;
    margin: 0 0 1rem 0;
  }

  .modern-container div div {
    margin: 0 0 1rem 0;
  }
}
