﻿/*$color-sidebar-background-highlight: #6d7fcc;*/
:root {
  --colour-1: #fef9ef;
  --colour-2: #f7e37c;
  --colour-3: #fe6d73;
  --colour-4: #03657c;
  --colour-5: #2e2d2c;
  --colour-contrast-1: #319b96;
  --colour-contrast-2: #00afb9;
  --colour-contrast-3: #3cd6d2;
  --colour-contrast-4: #83f2ef;
  --colour-shade-light: #d9e0e3;
  --colour-shade-dark: #cecece;
  --colour-dark-blue: #002f43;
  --colour-putty: #a39383;
  --colour-red: #ea251b;
  --colour-black: #000000;
  --colour-yellow: #ffec36;
  --colour-green: #00b451;
  --colour-mid-blue: #00a0df;
  --colour-mid-blue-light: #90c7dd;
  --colour-orange: #f05c22;
  --colour-orange-light: #ffd8c9;
  --colour-grey: #cccccc;
  --colour-light-grey: #eeeeee;
  --colour-dark-grey: #999999;
  --colour-red-light: #f0928d;
  --colour-red-dark: #97251b;
  --colour-yellow-light: #fff69b;
  --colour-yellow-dark: #91861f;
  --colour-mid-blue-light: #80d0ef;
  --colour-mid-blue-dark: #00597a;
  --colour-green-light: #80daa8;
  --colour-green-dark: #005627;
  --colour-dark-blue-15: rgba(0,47,67,0.15);
  --colour-dark-blue-25: rgba(0,47,67,0.25);
  --colour-dark-blue-50: rgba(0,47,67,0.50);
  --colour-dark-blue-75: rgba(0,47,67,0.75);
  --colour-putty-15: rgba(163,147,131,0.15);
  --colour-putty-25: rgba(163,147,131,0.25);
  --colour-putty-50: rgba(163,147,131,0.50);
  --colour-putty-75: rgba(163,147,131,0.75);
  --colour-red-15: rgba(225,37,27,0.15);
  --colour-red-25: rgba(225,37,27,0.25);
  --colour-red-50: rgba(225,37,27,0.50);
  --colour-red-75: rgba(225,37,27,0.75);
  --colour-black-15: rgba(0,0,0,0.15);
  --colour-black--25: rgba(0,0,0,0.25);
  --colour-black--50: rgba(0,0,0,0.50);
  --colour-black--75: rgba(0,0,0,0.75);
  --colour-yellow-15: rgba(255,236,54,0.15);
  --colour-yellow-25: rgba(255,236,54,0.25);
  --colour-yellow-50: rgba(255,236,54,0.50);
  --colour-yellow-75: rgba(255,236,54,0.75);
  --colour-green-15: rgba(0,180,81,0.15);
  --colour-green-25: rgba(0,180,81,0.25);
  --colour-green-50: rgba(0,180,81,0.50);
  --colour-green-75: rgba(0,180,81,0.75);
  --colour-mid-blue-15: rgba(0,160,223,0.15);
  --colour-mid-blue-25: rgba(0,160,223,0.25);
  --colour-mid-blue-50: rgba(0,160,223,0.50);
  --colour-mid-blue-75: rgba(0,160,223,0.75);
  --colour-orange-15: rgba(163,147,131,0.15);
  --colour-orange-25: rgba(163,147,131,0.25);
  --colour-orange-50: rgba(163,147,131,0.50);
  --colour-orange-75: rgba(163,147,131,0.75);
}

.green {
  color: #016b01;
}

.red {
  color: #ff0000;
}

.shade-light {
  background-color: #eaeaea;
}

.shade-medium {
  background-color: #ccc;
}

.shade-dark {
  background-color: #908d8d;
}

.border-light {
  border: 1px solid #eaeaea;
}

.border-medium {
  border: 1px solid #ccc;
}

.border-dark {
  border: 1px solid #908d8d;
}

.navbar p {
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #999;
}

.navbar a,
.navbar a:hover,
.navbar a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

.navbar {
  padding: 15px 10px;
  background: #fff;
  border: none;
  border-radius: 0;
  margin-bottom: 0px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

.bg-light {
  background-color: #fff !important;
}

.bg-light .navbar-toggler {
  color: #333 !important;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
  z-index: 999;
  background: #424242;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s;
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
  left: 0;
}

#sidebar .sidebarAccount {
  text-align: center;
  font-size: 16px;
  background: #4b4949;
  padding: 10px;
}

#dismiss {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #424242;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#dismiss:hover {
  background: #fff;
  color: #424242;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.overlay.active {
  display: block;
  opacity: 1;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: #333333;
}

#sidebar ul.components {
  padding: 0px 0px 20px 0px;
  border-bottom: 1px solid #47748b;
  margin: 5px;
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

#sidebar ul li {
  border-radius: 5px;
  margin-bottom: 2px;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
}

#sidebar ul li a i {
  width: 30px;
  transition: all 0.3s;
}

#sidebar ul li a:hover {
  color: #fff;
  background: #045ca8;
  border-radius: 5px;
}

#sidebar ul li.active > a {
  color: #fff;
  background: #333333;
}

a[data-toggle=collapse] {
  position: relative;
}

/*
.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}*/
ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: #333333;
}

ul.CTAs {
  padding: 20px;
}

ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}

a.download {
  background: #fff;
  color: #424242;
}

a.article,
a.article:hover {
  background: #333333 !important;
  color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
  width: 100%;
  padding: 20px;
  min-height: 100vh;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}

.main-menu .nav-link {
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  margin-left: 30px;
}

a.nav-link i {
  margin-right: 10px;
  font-size: 20px;
  transition: all 0.3s;
}

a.admin-link {
  color: #ffb839 !important;
  margin-right: 30px;
}

.main-menu a.admin-link:hover {
  color: #c1800c !important;
}

ul.navbar-nav li.dropdown:hover > div.dropdown-menu {
  display: block;
}

.dropdown-menu a.dropdown-item i {
  width: 25px;
  color: #424242;
}

.dropdown-menu a.dropdown-item:hover, .dropdown-menu a.dropdown-item:hover i {
  background-color: var(--colour-dark-blue);
  color: #fff !important;
  transition: all 0.3s;
}

.nav-link {
  cursor: pointer;
}

.dropdown-toggle::after {
  color: #fff;
}

.dropdown-toggle:hover::after {
  color: var(--colour-dark-blue);
}
