@font-face {
  font-family: 'GlacialIndifference Regular';
  src: url("/static/setup/fonts/GlacialIndifference-Regular.otf?56811ae71491") format("opentype"); }

@font-face {
  font-family: 'HelveticaLTStd Roman';
  src: url("/static/setup/fonts/Helvetica LT Std Roman.otf?56811ae71491") format("opentype"); }

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* line 4, setup/static/setup/scss/_general.scss */
:root {
  scroll-behavior: smooth; }

/* line 8, setup/static/setup/scss/_general.scss */
body {
  font-family: "GlacialIndifference Regular", sans-serif;
  background: #343a40;
  color: #8391a2; }

/* line 14, setup/static/setup/scss/_general.scss */
a {
  color: #3FC1AA;
  text-decoration: none; }

/* line 19, setup/static/setup/scss/_general.scss */
a:hover {
  color: #66cdbb;
  text-decoration: none; }

/* line 24, setup/static/setup/scss/_general.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Ubuntu Bold", sans-serif;
  color: #8391a2; }

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
/* line 32, setup/static/setup/scss/_general.scss */
#main {
  height: 100%;
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
  min-height: calc(100vh - 125px);
  /*  125px = 60px header + 65px footer */ }
  @media (max-width: 1199px) {
    /* line 32, setup/static/setup/scss/_general.scss */
    #main {
      padding: 20px; } }
/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
/* line 46, setup/static/setup/scss/_general.scss */
.pagetitle {
  margin-bottom: 10px; }
  /* line 48, setup/static/setup/scss/_general.scss */
  .pagetitle h1 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: #8391a2; }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/* line 59, setup/static/setup/scss/_general.scss */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #3FC1AA;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s; }
  /* line 72, setup/static/setup/scss/_general.scss */
  .back-to-top i {
    font-size: 24px;
    color: #DBFFF8;
    line-height: 0; }
  /* line 78, setup/static/setup/scss/_general.scss */
  .back-to-top:hover {
    background: #5ecbb8;
    color: #DBFFF8; }
  /* line 83, setup/static/setup/scss/_general.scss */
  .back-to-top.active {
    visibility: visible;
    opacity: 1; }

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Buttons */
/* line 6, setup/static/setup/scss/_override.scss */
.btn {
  font-size: 14px; }
  /* line 9, setup/static/setup/scss/_override.scss */
  .btn.btn-primary {
    background-color: #3FC1AA;
    border-color: #3FC1AA; }
    /* line 13, setup/static/setup/scss/_override.scss */
    .btn.btn-primary:hover, .btn.btn-primary:active {
      background-color: #52c7b3;
      border-color: #52c7b3; }
    /* line 18, setup/static/setup/scss/_override.scss */
    .btn.btn-primary:disabled {
      opacity: 0.5; }

/* Inputs */
/* line 26, setup/static/setup/scss/_override.scss */
input.form-control, textarea.form-control, input.form-select {
  background-color: #404954;
  border-color: #404954;
  color: #DBFFF8;
  font-style: italic;
  font-size: 13px; }
  /* line 33, setup/static/setup/scss/_override.scss */
  input.form-control:focus, textarea.form-control:focus, input.form-select:focus {
    background-color: #404954;
    color: #DBFFF8;
    border-color: #404954;
    box-shadow: 0 0 0 0.25rem rgba(63, 193, 170, 0.25); }

/* Dropdown menus */
/* line 43, setup/static/setup/scss/_override.scss */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
  background-color: #3a444e; }
  /* line 53, setup/static/setup/scss/_override.scss */
  .dropdown-menu .dropdown-header, .dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px; }
  /* line 60, setup/static/setup/scss/_override.scss */
  .dropdown-menu .dropdown-footer a {
    color: #DBFFF8;
    text-decoration: underline; }
    /* line 63, setup/static/setup/scss/_override.scss */
    .dropdown-menu .dropdown-footer a:hover {
      text-decoration: none; }
  /* line 69, setup/static/setup/scss/_override.scss */
  .dropdown-menu .dropdown-divider {
    color: white;
    margin: 0; }
  /* line 74, setup/static/setup/scss/_override.scss */
  .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
    color: #3FC1AA; }
    /* line 79, setup/static/setup/scss/_override.scss */
    .dropdown-menu .dropdown-item i {
      margin-right: 10px;
      font-size: 18px;
      line-height: 0; }
    /* line 84, setup/static/setup/scss/_override.scss */
    .dropdown-menu .dropdown-item:hover {
      background-color: #929ead; }

@media (min-width: 768px) {
  /* line 92, setup/static/setup/scss/_override.scss */
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #3a444e;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #37404a;
    border-left: 1px solid #37404a; } }

@keyframes dropdown-animate {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; }
  0% {
    opacity: 0; } }

/* Cards */
/* line 119, setup/static/setup/scss/_override.scss */
.card {
  background-color: #3a444e; }

/* Datatables */
/* line 127, setup/static/setup/scss/_override.scss */
table.datatable thead th {
  color: #8391a2; }

/* line 133, setup/static/setup/scss/_override.scss */
table.datatable tbody td {
  color: #8391a2;
  font-size: 14px;
  padding: 15px 20px; }
  /* line 138, setup/static/setup/scss/_override.scss */
  table.datatable tbody td.datatable-empty {
    color: #8391a2; }

/* line 145, setup/static/setup/scss/_override.scss */
input.datatable-input {
  background-color: #404954;
  border-color: #404954;
  color: #DBFFF8;
  font-style: italic;
  font-size: 13px; }
  /* line 152, setup/static/setup/scss/_override.scss */
  input.datatable-input:focus {
    background-color: #404954;
    color: #DBFFF8;
    border-color: #404954;
    box-shadow: 0 0 0 0.25rem rgba(63, 193, 170, 0.25); }

/* Light Backgrounds */
/* line 162, setup/static/setup/scss/_override.scss */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff; }

/* line 167, setup/static/setup/scss/_override.scss */
.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5; }

/* line 172, setup/static/setup/scss/_override.scss */
.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd; }

/* line 177, setup/static/setup/scss/_override.scss */
.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da; }

/* line 182, setup/static/setup/scss/_override.scss */
.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd; }

/* line 187, setup/static/setup/scss/_override.scss */
.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc; }

/* line 192, setup/static/setup/scss/_override.scss */
.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4; }

/* Card */
/* line 198, setup/static/setup/scss/_override.scss */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(131, 145, 162, 0.1); }

/* line 205, setup/static/setup/scss/_override.scss */
.card-header, .card-footer {
  border-color: white;
  background-color: #fff;
  color: white;
  padding: 15px; }

/* line 212, setup/static/setup/scss/_override.scss */
.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #8391a2;
  font-family: "HelveticaLTStd Roman", sans-serif; }
  /* line 218, setup/static/setup/scss/_override.scss */
  .card-title span {
    color: white;
    font-size: 14px;
    font-weight: 400; }

/* line 228, setup/static/setup/scss/_override.scss */
.card-body {
  padding: 0 20px 20px 20px;
  background-color: #3a444e; }

/* line 233, setup/static/setup/scss/_override.scss */
.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6); }

/* Alerts */
/* line 238, setup/static/setup/scss/_override.scss */
.alert-heading {
  font-weight: 500;
  font-family: "HelveticaLTStd Roman", sans-serif;
  font-size: 20px; }

/* Close Button */
/* line 245, setup/static/setup/scss/_override.scss */
.btn-close {
  background-size: 25%; }
  /* line 247, setup/static/setup/scss/_override.scss */
  .btn-close:focus {
    outline: 0;
    box-shadow: none; }

/* Accordion */
/* line 254, setup/static/setup/scss/_override.scss */
.accordion-item {
  border: 1px solid white; }

/* line 258, setup/static/setup/scss/_override.scss */
.accordion-button:focus {
  outline: 0;
  box-shadow: none; }

/* line 262, setup/static/setup/scss/_override.scss */
.accordion-button:not(.collapsed) {
  color: #8391a2;
  background-color: white; }

/* line 269, setup/static/setup/scss/_override.scss */
.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0; }
  /* line 273, setup/static/setup/scss/_override.scss */
  .accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #3FC1AA; }

/* line 279, setup/static/setup/scss/_override.scss */
.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: white;
  font-size: 15px; }

/* Breadcrumbs */
/* line 287, setup/static/setup/scss/_override.scss */
.breadcrumb {
  font-size: 14px;
  font-family: "Ubuntu Bold", sans-serif;
  color: white;
  font-weight: 600; }
  /* line 293, setup/static/setup/scss/_override.scss */
  .breadcrumb a {
    color: white;
    transition: 0.3s; }
    /* line 297, setup/static/setup/scss/_override.scss */
    .breadcrumb a:hover {
      color: white; }
  /* line 302, setup/static/setup/scss/_override.scss */
  .breadcrumb .breadcrumb-item::before {
    color: white; }
  /* line 306, setup/static/setup/scss/_override.scss */
  .breadcrumb .active {
    color: #8cdacc;
    font-weight: 600; }

/* Bordered Tabs */
/* line 314, setup/static/setup/scss/_override.scss */
.nav-tabs-bordered {
  border-bottom: 2px solid #343a40; }
  /* line 317, setup/static/setup/scss/_override.scss */
  .nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    color: #FFFFFF; }
    /* line 322, setup/static/setup/scss/_override.scss */
    .nav-tabs-bordered .nav-link:hover, .nav-tabs-bordered .nav-link:focus {
      color: #3FC1AA; }
    /* line 326, setup/static/setup/scss/_override.scss */
    .nav-tabs-bordered .nav-link.active {
      background-color: #343a40;
      color: #3FC1AA;
      border-bottom: 2px solid #343a40; }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* line 4, setup/static/setup/scss/_header.scss */
.logo {
  line-height: 1; }
  @media (min-width: 1200px) {
    /* line 4, setup/static/setup/scss/_header.scss */
    .logo {
      width: 280px; } }
  /* line 10, setup/static/setup/scss/_header.scss */
  .logo img {
    max-height: 50px;
    margin-right: 6px; }
  /* line 15, setup/static/setup/scss/_header.scss */
  .logo span {
    font-size: 26px;
    font-weight: 700;
    color: #8391a2;
    font-family: "Ubuntu Bold", sans-serif; }

/* line 24, setup/static/setup/scss/_header.scss */
.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(131, 145, 162, 0.1);
  background-color: #3a444e;
  padding-left: 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */ }
  /* line 33, setup/static/setup/scss/_header.scss */
  .header .toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 10px;
    cursor: pointer;
    color: #8391a2; }
  /* line 42, setup/static/setup/scss/_header.scss */
  .header .search-bar {
    min-width: 360px;
    padding: 0 20px; }
  @media (max-width: 1199px) {
    /* line 48, setup/static/setup/scss/_header.scss */
    .header .search-bar {
      position: fixed;
      top: 50px;
      left: 0;
      right: 0;
      padding: 20px;
      box-shadow: 0px 0px 15px 0px rgba(131, 145, 162, 0.1);
      background: white;
      z-index: 9999;
      transition: 0.3s;
      visibility: hidden;
      opacity: 0; }
    /* line 62, setup/static/setup/scss/_header.scss */
    .header .search-bar-show {
      top: 60px;
      visibility: visible;
      opacity: 1; } }
  /* line 69, setup/static/setup/scss/_header.scss */
  .header .search-form {
    width: 100%; }
    /* line 71, setup/static/setup/scss/_header.scss */
    .header .search-form input {
      border: 0;
      font-size: 14px;
      color: #8391a2;
      border: 1px solid rgba(131, 145, 162, 0.2);
      padding: 7px 38px 7px 8px;
      border-radius: 3px;
      transition: 0.3s;
      width: 100%; }
      /* line 80, setup/static/setup/scss/_header.scss */
      .header .search-form input:focus, .header .search-form input:hover {
        outline: none;
        box-shadow: 0 0 10px 0 rgba(131, 145, 162, 0.15);
        border: 1px solid rgba(131, 145, 162, 0.3); }
    /* line 87, setup/static/setup/scss/_header.scss */
    .header .search-form button {
      border: 0;
      padding: 0;
      margin-left: -30px;
      background: none; }
      /* line 92, setup/static/setup/scss/_header.scss */
      .header .search-form button i {
        color: #8391a2; }

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
/* line 104, setup/static/setup/scss/_header.scss */
.header-nav ul {
  list-style: none; }

/* line 108, setup/static/setup/scss/_header.scss */
.header-nav > ul {
  margin: 0;
  padding: 0; }

/* line 113, setup/static/setup/scss/_header.scss */
.header-nav .nav-icon {
  font-size: 22px;
  color: #8391a2;
  margin-right: 25px;
  position: relative; }

/* line 120, setup/static/setup/scss/_header.scss */
.header-nav .nav-profile {
  color: #8391a2; }
  /* line 122, setup/static/setup/scss/_header.scss */
  .header-nav .nav-profile img {
    max-height: 36px; }
  /* line 125, setup/static/setup/scss/_header.scss */
  .header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600; }

/* line 131, setup/static/setup/scss/_header.scss */
.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px; }

/* line 139, setup/static/setup/scss/_header.scss */
.header-nav .notifications {
  inset: 8px -15px auto auto !important; }
  /* line 141, setup/static/setup/scss/_header.scss */
  .header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s; }
    /* line 147, setup/static/setup/scss/_header.scss */
    .header-nav .notifications .notification-item i {
      margin: 0 20px 0 10px;
      font-size: 24px; }
    /* line 152, setup/static/setup/scss/_header.scss */
    .header-nav .notifications .notification-item h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 5px; }
    /* line 158, setup/static/setup/scss/_header.scss */
    .header-nav .notifications .notification-item p {
      font-size: 13px;
      margin-bottom: 3px;
      color: white; }
    /* line 164, setup/static/setup/scss/_header.scss */
    .header-nav .notifications .notification-item:hover {
      background-color: #45515d; }

/* line 171, setup/static/setup/scss/_header.scss */
.header-nav .messages {
  inset: 8px -15px auto auto !important; }
  /* line 173, setup/static/setup/scss/_header.scss */
  .header-nav .messages .message-item {
    padding: 15px 10px;
    transition: 0.3s; }
    /* line 177, setup/static/setup/scss/_header.scss */
    .header-nav .messages .message-item a {
      display: flex; }
    /* line 181, setup/static/setup/scss/_header.scss */
    .header-nav .messages .message-item img {
      margin: 0 20px 0 10px;
      max-height: 40px; }
    /* line 186, setup/static/setup/scss/_header.scss */
    .header-nav .messages .message-item h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 5px;
      color: #DBFFF8; }
    /* line 193, setup/static/setup/scss/_header.scss */
    .header-nav .messages .message-item p {
      font-size: 13px;
      margin-bottom: 3px;
      color: white; }
    /* line 199, setup/static/setup/scss/_header.scss */
    .header-nav .messages .message-item:hover {
      background-color: #45515d; }

/* line 205, setup/static/setup/scss/_header.scss */
.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important; }
  /* line 211, setup/static/setup/scss/_header.scss */
  .header-nav .profile .dropdown-header h6 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: #8391a2; }
  /* line 217, setup/static/setup/scss/_header.scss */
  .header-nav .profile .dropdown-header span {
    font-size: 14px; }
  /* line 222, setup/static/setup/scss/_header.scss */
  .header-nav .profile .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s; }
    /* line 226, setup/static/setup/scss/_header.scss */
    .header-nav .profile .dropdown-item i {
      margin-right: 10px;
      font-size: 18px;
      line-height: 0; }
    /* line 231, setup/static/setup/scss/_header.scss */
    .header-nav .profile .dropdown-item:hover {
      background-color: #45515d; }

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
/* line 4, setup/static/setup/scss/_sidebar.scss */
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: white transparent;
  box-shadow: 0px 0px 20px rgba(131, 145, 162, 0.1);
  background-color: #3a444e; }
  @media (max-width: 1199px) {
    /* line 4, setup/static/setup/scss/_sidebar.scss */
    .sidebar {
      left: -300px; } }
  /* line 22, setup/static/setup/scss/_sidebar.scss */
  .sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff; }
  /* line 27, setup/static/setup/scss/_sidebar.scss */
  .sidebar::-webkit-scrollbar-thumb {
    background-color: white; }

@media (min-width: 1200px) {
  /* line 33, setup/static/setup/scss/_sidebar.scss */
  #main, #footer {
    margin-left: 300px; } }

@media (max-width: 1199px) {
  /* line 41, setup/static/setup/scss/_sidebar.scss */
  .toggle-sidebar .sidebar {
    left: 0; } }

@media (min-width: 1200px) {
  /* line 48, setup/static/setup/scss/_sidebar.scss */
  .toggle-sidebar #main, .toggle-sidebar #footer {
    margin-left: 0; }
  /* line 51, setup/static/setup/scss/_sidebar.scss */
  .toggle-sidebar .sidebar {
    left: -300px; } }

/* line 57, setup/static/setup/scss/_sidebar.scss */
.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none; }
  /* line 62, setup/static/setup/scss/_sidebar.scss */
  .sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none; }
  /* line 68, setup/static/setup/scss/_sidebar.scss */
  .sidebar-nav .nav-item {
    margin-bottom: 5px; }
  /* line 72, setup/static/setup/scss/_sidebar.scss */
  .sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    margin: 10px 0 5px 15px; }
  /* line 80, setup/static/setup/scss/_sidebar.scss */
  .sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #3FC1AA;
    transition: 0.3;
    background: #45515d;
    padding: 10px 15px;
    border-radius: 4px; }
    /* line 91, setup/static/setup/scss/_sidebar.scss */
    .sidebar-nav .nav-link i {
      font-size: 16px;
      margin-right: 10px;
      color: #3FC1AA; }
    /* line 97, setup/static/setup/scss/_sidebar.scss */
    .sidebar-nav .nav-link.collapsed {
      color: #8391a2;
      background: #3a444e; }
      /* line 100, setup/static/setup/scss/_sidebar.scss */
      .sidebar-nav .nav-link.collapsed i {
        color: #929ead; }
    /* line 105, setup/static/setup/scss/_sidebar.scss */
    .sidebar-nav .nav-link:hover {
      color: #3FC1AA;
      background: #45515d; }
      /* line 108, setup/static/setup/scss/_sidebar.scss */
      .sidebar-nav .nav-link:hover i {
        color: #3FC1AA; }
    /* line 113, setup/static/setup/scss/_sidebar.scss */
    .sidebar-nav .nav-link .bi-chevron-down {
      margin-right: 0;
      transition: transform .2s ease-in-out; }
    /* line 118, setup/static/setup/scss/_sidebar.scss */
    .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
      transform: rotate(180deg); }
  /* line 124, setup/static/setup/scss/_sidebar.scss */
  .sidebar-nav .nav-content {
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none; }
    /* line 129, setup/static/setup/scss/_sidebar.scss */
    .sidebar-nav .nav-content a {
      display: flex;
      align-items: center;
      font-size: 14px;
      font-weight: 600;
      color: #8391a2;
      transition: 0.3;
      padding: 10px 0 10px 40px;
      transition: 0.3s; }
      /* line 138, setup/static/setup/scss/_sidebar.scss */
      .sidebar-nav .nav-content a i {
        font-size: 6px;
        margin-right: 8px;
        line-height: 0;
        border-radius: 50%; }
      /* line 145, setup/static/setup/scss/_sidebar.scss */
      .sidebar-nav .nav-content a:hover, .sidebar-nav .nav-content a.active {
        color: #3FC1AA; }
      /* line 149, setup/static/setup/scss/_sidebar.scss */
      .sidebar-nav .nav-content a.active i {
        background-color: #3FC1AA; }

/*--------------------------------------------------------------
# Login Page
--------------------------------------------------------------*/
/* line 7, setup/static/setup/scss/_pages.scss */
.login .logo-login img {
  max-height: 200px; }

/* line 14, setup/static/setup/scss/_pages.scss */
.login .form-check-input:checked {
  background-color: #3FC1AA;
  border-color: #3FC1AA; }

/* line 19, setup/static/setup/scss/_pages.scss */
.login .form-check-input:focus {
  border-color: #3FC1AA;
  box-shadow: 0 0 0 0.25rem rgba(63, 193, 170, 0.25); }

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
/* line 31, setup/static/setup/scss/_pages.scss */
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px; }
  /* line 38, setup/static/setup/scss/_pages.scss */
  .iconslist .icon {
    background-color: #fff;
    border-radius: .25rem;
    text-align: center;
    color: #012970;
    padding: 15px 0; }
  /* line 46, setup/static/setup/scss/_pages.scss */
  .iconslist i {
    margin: .25rem;
    font-size: 2.5rem; }
  /* line 51, setup/static/setup/scss/_pages.scss */
  .iconslist .label {
    font-family: var(--bs-font-monospace);
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding: .25rem;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666; }

/*--------------------------------------------------------------
# Profile Page
--------------------------------------------------------------*/
/* line 71, setup/static/setup/scss/_pages.scss */
.profile .profile-card img {
  max-width: 120px; }

/* line 75, setup/static/setup/scss/_pages.scss */
.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 10px 0 0 0; }

/* line 82, setup/static/setup/scss/_pages.scss */
.profile .profile-card h3 {
  font-size: 18px; }

/* line 87, setup/static/setup/scss/_pages.scss */
.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(131, 145, 162, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s; }
  /* line 94, setup/static/setup/scss/_pages.scss */
  .profile .profile-card .social-links a:hover {
    color: #8391a2; }

/* line 102, setup/static/setup/scss/_pages.scss */
.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px; }

/* line 107, setup/static/setup/scss/_pages.scss */
.profile .profile-overview .card-title {
  color: #8391a2; }

/* line 111, setup/static/setup/scss/_pages.scss */
.profile .profile-overview .label {
  font-weight: 600;
  color: #DBFFF8; }

/* line 119, setup/static/setup/scss/_pages.scss */
.profile .profile-edit label {
  font-weight: 600;
  color: #DBFFF8; }

/* line 124, setup/static/setup/scss/_pages.scss */
.profile .profile-edit img {
  max-width: 120px; }

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
/* line 137, setup/static/setup/scss/_pages.scss */
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #3FC1AA; }

/* line 143, setup/static/setup/scss/_pages.scss */
.faq .basic p {
  color: white; }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
/* line 156, setup/static/setup/scss/_pages.scss */
.contact .info-box {
  padding: 28px 30px; }
  /* line 158, setup/static/setup/scss/_pages.scss */
  .contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: #3FC1AA; }
  /* line 164, setup/static/setup/scss/_pages.scss */
  .contact .info-box h3 {
    font-size: 20px;
    color: #8391a2;
    font-weight: 700;
    margin: 20px 0 10px 0; }
  /* line 171, setup/static/setup/scss/_pages.scss */
  .contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0; }

/* line 182, setup/static/setup/scss/_pages.scss */
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600; }

/* line 192, setup/static/setup/scss/_pages.scss */
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600; }

/* line 202, setup/static/setup/scss/_pages.scss */
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px; }
  /* line 209, setup/static/setup/scss/_pages.scss */
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite; }

/* line 223, setup/static/setup/scss/_pages.scss */
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0; }
  /* line 228, setup/static/setup/scss/_pages.scss */
  .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #3FC1AA; }

/* line 233, setup/static/setup/scss/_pages.scss */
.contact .php-email-form input {
  padding: 10px 15px; }

/* line 237, setup/static/setup/scss/_pages.scss */
.contact .php-email-form textarea {
  padding: 12px 15px; }

/* line 241, setup/static/setup/scss/_pages.scss */
.contact .php-email-form button[type="submit"] {
  background: #3FC1AA;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px; }
  /* line 248, setup/static/setup/scss/_pages.scss */
  .contact .php-email-form button[type="submit"]:hover {
    background: #52c7b3; }

@keyframes animate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
/* line 264, setup/static/setup/scss/_pages.scss */
.error-404 {
  padding: 30px; }
  /* line 267, setup/static/setup/scss/_pages.scss */
  .error-404 h1 {
    font-size: 180px;
    font-weight: 700;
    color: #3FC1AA;
    margin-bottom: 0;
    line-height: 150px; }
  /* line 275, setup/static/setup/scss/_pages.scss */
  .error-404 h2 {
    font-size: 24px;
    font-weight: 700;
    color: #8391a2;
    margin-bottom: 30px; }
  /* line 282, setup/static/setup/scss/_pages.scss */
  .error-404 .btn {
    background: white;
    color: #fff;
    padding: 8px 30px; }
    /* line 286, setup/static/setup/scss/_pages.scss */
    .error-404 .btn:hover {
      background: white; }
  @media (min-width: 992px) {
    /* line 292, setup/static/setup/scss/_pages.scss */
    .error-404 img {
      max-width: 50%; } }
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* line 4, setup/static/setup/scss/_footer.scss */
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #ccd2d9; }
  /* line 10, setup/static/setup/scss/_footer.scss */
  .footer .copyright {
    text-align: center;
    color: #8391a2; }
  /* line 15, setup/static/setup/scss/_footer.scss */
  .footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #8391a2; }
