/* Base Styling  */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
body {
  background: #f8fbff;
  font-family: "Raleway", sans-serif;
}
body.gradient {
  background-image: url(../img/gradient-bg.png);
  background-position: bottom center;
  background-size: cover;
}
body.gradient .footer {
  background-color: transparent !important;
}
body.landing .footer {
  background-color: transparent !important;
}

.footer {
  font-family: "Open Sans", sans-serif;
  color: #000;
  font-weight: 300;
}

.brand-subheading {
  color: rgb(5, 66, 219);
  font-weight: 500;
}

.text-brand {
  color: rgb(5, 66, 219);
}

.action-buttons .btn {
  margin-left: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.btn-full {
  width: 100% !important;
}

.btn-secondary {
  background: #b1b1b1;
  border-color: #b1b1b1;
}

.expand__line__container {
  width: 100%;
  height: 15px;
  position: relative;
}

.animate__line {
  position: absolute;
  width: 0px;
  height: 10px;
  background-color: transparent;
  border-top: 3px solid rgb(5, 66, 219);
  z-index: 999;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  animation: expandline 3s;
  animation-fill-mode: forwards;
}
.animate__line.thin {
  height: 5px;
}
.animate__line.gray {
  border-top: 2px solid #dcdcdc;
}
.animate__line.no-animation {
  animation: expandlineFull 0.1s;
  animation-fill-mode: forwards;
}
.animate__line.wide {
  animation: expandlineFullWide 0.1s;
  animation-fill-mode: forwards;
}

@keyframes expandline {
  0% {
    width: 0%;
  }
  100% {
    width: 20%;
  }
}
@keyframes expandlineFull {
  0% {
    width: 20%;
  }
  100% {
    width: 20%;
  }
}
@keyframes expandlineFullWide {
  0% {
    width: 70%;
  }
  100% {
    width: 70%;
  }
}
ul.checklist {
  list-style: none;
  padding-left: 0;
}

ul.checklist li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

ul.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-image: url(../img/check.svg);
  background-size: contain;
}

.form-control.code-box {
  height: 50px;
  width: 50px;
  font-size: 1.2em;
  text-align: center !important;
  font-weight: 600;
  border-color: rgba(5, 66, 219, 0.5) !important;
}

form[autocomplete=off] input[type=text] {
  background-position: 150% 50% !important;
}

.no-border {
  border: 0 !important;
}

/* Subcomponents */
.dropdown-menu {
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.15) !important;
  border: none !important;
}

.dropdown .dropdown-light {
  background-color: #DCEBFF;
  color: #000;
  border: none;
}
.dropdown .dropdown-light.btn-campus {
  padding-left: 25px;
  padding-right: 45px;
}
.dropdown .dropdown-light::before {
  color: #7A7A7A;
  z-index: 1;
  position: absolute;
  top: 13px;
  right: 54px;
  margin-left: 2.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  font-size: 28px;
}
.dropdown .dropdown-light.show::before {
  transform: rotate(180deg);
}
.dropdown .dropdown-light::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 0px;
  height: 100%;
  width: 40px;
  background: #DFDFDF;
  z-index: 0;
  border: none !important;
  border-radius: 0rem 0.375rem 0.375rem 0rem;
}

.dataTable {
  border-collapse: separate;
  border-spacing: 0px 5px !important;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}
.dataTable th {
  background: #DCEBFF;
}
.dataTable th:first-child {
  border-radius: 15px 0px 0px 15px;
  padding-left: 40px;
}
.dataTable th:last-child {
  border-radius: 0px 15px 15px 0px;
}
.dataTable th:only-child {
  border-radius: 15px;
  padding-left: 40px;
}
.dataTable tr > td:first-child {
  border-radius: 15px 0px 0px 15px;
  padding-left: 40px;
  border-left: 2px solid transparent;
}
.dataTable tr > td:last-child {
  border-radius: 0px 15px 15px 0px;
  border-right: 2px solid transparent;
}
.dataTable tr > td:only-child {
  border-radius: 15px;
  padding-left: 40px;
}
.dataTable tr > td:nth-child(odd) {
  background: #ECECEC;
}
.dataTable tr > td:nth-child(even) {
  background: #DFDFDF;
}
.dataTable tr td {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.dataTable tr:hover td, .dataTable tr.selected td {
  cursor: pointer;
  border-top: 2px solid #87BAFF;
  border-bottom: 2px solid #87BAFF;
}
.dataTable tr:hover td:first-child, .dataTable tr.selected td:first-child {
  border-left: 2px solid #87BAFF;
}
.dataTable tr:hover td:last-child, .dataTable tr.selected td:last-child {
  border-right: 2px solid #87BAFF;
}
.dataTable.table-select tr > td:first-child [type=checkbox] {
  pointer-events: none;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0px;
}

input, textarea {
  border-color: #dfdfdf !important;
  font-family: "Open Sans", sans-serif;
}

.form-control {
  border-color: #dfdfdf !important;
}

.modal-header {
  border-bottom: none;
}
.modal-header h3 {
  color: rgb(5, 66, 219);
  padding-top: 25px;
  padding-bottom: 15px;
  width: 100%;
  text-align: center;
}

.modal-footer {
  border-top: none;
  justify-content: center;
  padding-bottom: 45px;
}
.modal-footer .btn {
  width: 150px;
}

.modal .action-buttons {
  position: absolute;
  top: 19px;
  right: 40px;
}

.card {
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.15) !important;
  border: none;
  padding: 30px 50px;
  border-radius: 15px;
}

.card-header {
  padding-top: 25px;
  background: none;
  border-bottom: none;
}

.card-body {
  padding-bottom: 25px;
}

.landing {
  background-color: #F5F9FE;
}

.landing-title {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
.landing-title h1 {
  font-weight: 400;
  color: #0136B9;
}

.landing-flowchart {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.chart-card, .pricing-card, .brand-card {
  background-color: #FFF;
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.15) !important;
  border-radius: 15px;
  padding: 15px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 15px;
}
.pricing-card .price-tag h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  color: #0945D3 !important;
  font-size: 2.7rem;
}
.pricing-card .price-tag p {
  font-size: 16px;
  text-align: center;
  color: #aeaeae !important;
}

@media (max-width: 768px) {
  .payment-container {
    display: block !important;
  }
}

.payment-choice {
  position: relative;
}

.payment-tabs {
  position: relative;
}
.payment-tabs::before {
  content: "";
  background: #497ffe;
  width: 20px;
  height: 100%;
  position: absolute;
  left: -20px;
  pointer-events: none;
  z-index: 10;
  border-bottom-left-radius: 10px;
}

.payment-card {
  border-radius: 0px 10px 10px 0px !important;
  padding: 20px;
}
@media (min-width: 768px) {
  .payment-card {
    min-width: 500px;
    padding: 10px;
  }
}

.nav-pills .nav-link {
  margin-bottom: 15px;
  border-radius: 0px;
  background-color: #FFF;
  padding: 10px 30px 10px 10px;
  color: #aeaeae;
  font-size: 14px;
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.15) !important;
  transition: 0s;
}
.nav-pills .nav-link:first-child {
  border-radius: 5px 0px 0px 0px;
}
.nav-pills .nav-link:last-child {
  border-radius: 0px 0px 0px 5px;
}

.nav-pills .nav-link:disabled {
  color: #aeaeae;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  z-index: 1000;
  background-color: #497ffe !important;
}

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

.text-tight {
  line-height: 1 !important;
}

.table-breakdown {
  border-bottom: 0px !important;
}

.quote-header .accept-btn {
  font-weight: 600;
  margin-top: 10px;
}
@media (min-width: 900px) {
  .quote-header .accept-btn {
    position: absolute;
    right: 20px;
    top: -50%;
    transform: translateY(100%);
  }
}

.quote-header .action-group {
  margin-top: 10px;
}
.quote-header .action-group .btn {
  color: rgb(5, 66, 219);
  background-color: #FFF;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.15) !important;
}
.quote-header .action-group .btn:first-child {
  margin-right: 15px;
}
@media (min-width: 900px) {
  .quote-header .action-group {
    position: absolute;
    right: 20px;
    top: -50%;
    transform: translateY(100%);
  }
}

/* Components */
.navbar {
  padding: 30px 0px;
}
.navbar .no-caret::after {
  visibility: hidden !important;
  width: 0px !important;
}
.navbar .brand-logo {
  height: 30px;
}
.navbar.navbar-dashboard {
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.15) !important;
}
.navbar .nav-link {
  font-weight: 600;
  color: #000;
}
.navbar .nav-link:after {
  border: none;
  background-image: url(../img/caret.svg);
  height: 25px;
  width: 25px;
  top: 10px;
  position: relative;
  transition: 0.3s ease-in-out;
}
.navbar .nav-link.show:after {
  transform: rotate(180deg);
}
.navbar .dropdown-menu[data-bs-popper] {
  top: 125%;
}
.navbar .navbar-right {
  top: 5px;
  position: relative;
}
.navbar-links > ul {
  padding-left: 30px;
}
.navbar-links > ul > li {
  margin-right: 5px;
}
.navbar-links > ul .dropdown-item {
  text-align: center;
}
@media (max-width: 575.98px) {
  .navbar-links > ul {
    padding-left: auto;
  }
}
.navbar .btn {
  border: none;
  padding: 5px 20px;
  border-radius: 25px;
}
.navbar .btn.no-caret::after {
  display: none;
}
.navbar .btn.btn-outline-secondary {
  color: rgb(5, 66, 219);
  font-weight: 600;
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.15) !important;
  transition: 0.5s ease-in-out !important;
}
.navbar .btn.btn-outline-secondary:hover {
  color: #FFF;
  background-color: rgb(5, 66, 219);
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.35) !important;
  transform: translateY(-2px);
}
.navbar .btn.btn-outline-primary {
  color: #FFF;
  margin-right: 15px;
  font-weight: 600;
  padding: 5px 35px;
  background-color: rgb(5, 66, 219);
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.15) !important;
  transition: 0.5s ease-in-out !important;
}
.navbar .btn.btn-outline-primary:hover, .navbar .btn.btn-outline-primary:focus, .navbar .btn.btn-outline-primary:active, .navbar .btn.btn-outline-primary:focus-within, .navbar .btn.btn-outline-primary:visited {
  color: #FFF;
  background-color: rgb(5, 66, 219);
  transform: translateY(-2px);
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.35) !important;
}

.navbar-landing {
  background: #F5F9FE;
}
.navbar-landing .brand-logo {
  height: 70px;
}
.navbar-landing .nav-item {
  padding-left: 10px;
}
.navbar-landing .navbar-nav {
  padding-left: 20px;
  padding-right: 20px;
}
.navbar-landing .navbar-nav .dropdown-item {
  text-align: center;
}
@media (max-width: 575.98px) {
  .navbar-landing .navbar-nav {
    padding-left: auto;
  }
}

body {
  background-color: #ffffff;
  color: #0b0b0c;
  font-family: "Raleway", sans-serif;
}

.navbar {
  background-color: #ffffff;
  color: #ffffff;
}

.btn-primary {
  background-color: #0542db;
  color: #ffffff;
}

.btn:before {
  display: none;
}

.btn-primary-2 {
  background-color: #4C7FFF;
  color: #ffffff;
  transition: 0.5s ease-in-out !important;
  font-weight: 400;
}
.btn-primary-2:hover {
  color: #FFF;
  background-color: rgb(5, 66, 219);
  box-shadow: 0 2px 18px 5px rgba(9, 64, 216, 0.15) !important;
}
.btn-primary-2:hover:not(.no-anim) {
  transform: translateY(-2px);
}

.text-primary {
  color: rgb(5, 66, 219);
}

.text-primary-2 {
  color: #5387EA;
}

.text-gray {
  color: #dcdcdc;
}

.header {
  display: flex;
  justify-content: space-between;
}

.admin-title {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.campus-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.datatable-container {
  margin-top: 30px;
}

.action-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

@media (min-width: 1400px) {
  body.landing .container,
  body.landing .container-lg,
  body.landing .container-md,
  body.landing .container-sm,
  body.landing .container-xl,
  body.landing .container-xxl {
    max-width: 1100px;
  }
}/*# sourceMappingURL=main.css.map */