@charset "utf-8";
/* CSS Document */
/* Notes
  # Always set image display:block to avoid extra space in container below image
  view port height: 1024px;
  view port width 1600px;
*/

* {
  border: none;
}

/*------- HTML, Body Section ---------*/
html,
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  line-height: 1.6em;
  color: #d8d8d8;
  background-color: #2d2d2d;
  background: url("../images/bg-01.jpg") #2d2d2d;
  background-size: cover;
}

@font-face {
  font-family: "TitilliumWeb-Regular";
  src: url("TitilliumWeb-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/*------- General Settings ---------*/

a {
  text-decoration: none;
  color: dodgerblue; /*#0000FF*/
}

h1 {
  font-size: 32px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 19px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 13px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "TitilliumWeb-Regular", "Lucida Sans Unicode", "Lucida Grande",
    sans-serif;
  line-height: 1.6em;
}

input:not([type="submit"]):not([type="button"]):not([type="radio"]):not(
    [type="checkbox"]
  ),
select,
textarea {
  outline: none;
  padding: 7px;
  border: 1px solid #000;
  border-top-left-radius: 6px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 6px;
  background: #f1f1f1;
  transition: 0.3s ease;
}

textarea {
  display: block;
}

input:not([type="submit"]):not([type="button"]):not([type="radio"]):not(
    [type="checkbox"]
  ):valid,
select:valid,
textarea:valid {
  border-color: rgb(0, 179, 0);
}

input:not([type="submit"]):not([type="button"]):not([type="radio"]):not(
    [type="checkbox"]
  ):invalid,
select:invalid,
textarea:invalid {
  border-color: tomato;
}

input:not([type="submit"]):not([type="button"]):not([type="radio"]):not(
    [type="checkbox"]
  ):not([type="date"])
  :not([type="number"]) {
  width: 140px;
}

input:not([type="submit"]):not([type="button"]):not([type="radio"]):not(
    [type="checkbox"]
  ):disabled {
  background: #bbbbbb;
  cursor: not-allowed;
}

button,
input[type="submit"],
input[type="button"] {
  padding: 7px 15px;
  background: dodgerblue; /* rgb(0, 171, 250);*/
  color: #d8d8d8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  font-weight: bold;
  transition: 0.3s ease;
  border-top-left-radius: 6px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 6px;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: rgb(55, 155, 255);
  cursor: pointer;
}

button:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled {
  background: #bbbbbb;
  cursor: not-allowed;
}

input.small:not([type="submit"]):not([type="button"]):not([type="radio"]):not(
    [type="checkbox"]
  ) {
  width: 70px;
}

input.medium:not([type="submit"]):not([type="button"]):not([type="radio"]):not(
    [type="checkbox"]
  ) {
  width: 135px;
}

input.large:not([type="submit"]):not([type="button"]):not([type="radio"]):not(
    [type="checkbox"]
  ) {
  width: 270px;
}

input.datebox:not([type="submit"]):not([type="button"]):not([type="radio"]):not(
    [type="checkbox"]
  ) {
  width: 107px;
}

.toggle-card {
  display: inline;
  vertical-align: middle;
}

.switch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 17px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #a5a5a5;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #00972d;
}

input:focus + .slider {
  box-shadow: 0 0 1px #00972d;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 14px;
}

.slider.round:before {
  border-radius: 50%;
}
/*------- Containers ---------*/

#root {
  /*border: 1px solid red;*/
  display: flex;
  flex-flow: column nowrap;
  height: 100vh;
  max-height: 100vh;
  max-width: 1600px;
  background-color: rgba(0, 9, 19, 0.9);
  overflow: hidden;
}

.page-header {
  /*border: 1px solid greenyellow;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(rgba(30, 40, 63, 0.6), rgba(0, 18, 44, 0.6));
}

.page-content {
  /*border: 1px solid blue;*/
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-start;
  overflow-y: auto;
}

.sidebar {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  row-gap: 20px;
  /*border: 1px solid #c65e27;*/
}

.container {
  /*border: 1px solid #fefefe;*/
  flex: 1 1 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  background-color: rgba(41, 30, 30, 0.8);
  overflow: auto;
  padding: 30px;
}

.input-wrapper {
  display: flex;
  flex-flow: column nowrap;
  align-self: center;
  margin-top: 10%;
  border: 1px solid #161616;
  background: rgba(29, 48, 61, 0.6);
  border-top-left-radius: 8px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 8px;
}
/*------- Navigations ---------*/

.page-header .logo {
  flex: 0 1 200px;
  border-right: 1px solid rgb(31, 31, 31);
  padding: 15px;
  text-align: center;
  color: rgb(255, 64, 30);
  font-size: 20px;
}

.page-header .location {
  flex: 1 1 auto;
  align-self: flex-start;
  border-left: 1px solid #000;
  padding: 15px;
  font-size: 12px;
}

.page-header .location i {
  color: rgb(0, 179, 0);
  margin-right: 5px;
}

.page-header .top-nav ul {
  display: flex;
  padding: 15px;
  column-gap: 20px;
  font-size: 18px;
}

.page-header .top-nav ul li {
  cursor: pointer;
}

.top-nav .message {
  color: #c65e27;
}
.top-nav .bell {
  color: #cab600;
}
.top-nav .login {
  color: dodgerblue;
}

.side-nav {
  min-width: 250px;
}

.side-nav li a {
  color: #d8d8d8;
  display: block;
  padding: 5px 20px 5px 10px;
  border: 1px solid #111;
  border-left: 3px solid #d8d8d8;
  border-top-left-radius: 4px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 4px;
  transition: 0.3s ease;
}

.side-nav li:not(:last-of-type) {
  margin-bottom: 5px;
}

.side-nav li a.active {
  background-color: rgba(24, 32, 54, 0.7);
  border-left-color: dodgerblue;
  color: dodgerblue;
}
.side-nav li a:hover {
  background-color: rgba(24, 32, 54, 0.7);
  border-left-color: dodgerblue;
  cursor: pointer;
}
.side-nav li i {
  /*border: 1px solid #fefefe;*/
  border: 1px solid #111;
  padding: 12px;
  border-radius: 4px;
  margin-right: 5px;
  background: linear-gradient(rgba(30, 40, 63, 0.6), rgba(0, 18, 44, 0.6));
}

/*------- Input Containers ---------*/

.input-inline {
  padding: 20px 40px;
  display: flex;
  flex-flow: column nowrap;
  row-gap: 20px;
}

.input-inline .box-title {
  color: #a0b87b;
}

.input-inline
  input:not([type="submit"]):not([type="button"]):not([type="radio"]):not(
    [type="checkbox"]
  ),
.input-inline select,
.input-inline textarea {
  width: 180px;
}

.input-inline > div {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  /*border: 1px solid #cab600;*/
}

.input-inline > div > label > span {
  /*border: 1px solid blue;*/
  display: inline-block;
  width: 140px;
}
.input-inline div aside {
  margin-left: 10px;
}

div.right {
  align-self: flex-end;
}

div.center {
  align-self: center;
}

div.center input[type="button"],
div.center input[type="submit"],
div.center button {
  margin-left: 5px;
  margin-right: 5px;
}

/* --------------- Grid Options -----------*/
#gridOptions {
  display: flex;
  flex-flow: column nowrap;
  border: 1px solid #04112c;
  border-top-left-radius: 6px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 6px;
}

#gridOptions ul:not(:last-of-type) {
  border-bottom: 1px solid #04112c;
}

#gridOptions ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px;
  background: linear-gradient(rgba(30, 40, 63, 0.5), rgba(0, 18, 44, 0.5));
}

#gridOptions ul label {
  margin-right: 10px;
}
#gridOptions ul label span {
  margin-right: 5px;
}

/* --------------- Data Grid -----------*/
.data-grid {
  border: 1px solid #04112c;
  border-top-left-radius: 6px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 6px;
}
.data-grid .data-list:not(:last-of-type) {
  border-bottom: 1px solid #04112c;
}

.data-list {
  /*border: 1px solid #00b31e;*/
  padding: 10px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  column-gap: 10px;
  background: rgba(24, 32, 54, 0.7);
}
/*
.data-list ul {
  border: 1px solid #a0b87b;
}
*/

.data-list ul li {
  vertical-align: middle;
}
.data-list label {
  margin-right: 5px;
  color: #a0b87b;
}

.data-list ul.one {
  flex: 0 1 100px;
}

.data-list ul.one40 {
  flex: 0 1 140px;
}

.data-list ul.two {
  flex: 0 1 200px;
}

.data-list ul.two40 {
  flex: 0 1 240px;
}
.data-list ul.three {
  flex: 0 1 300px;
}

/* --------------- Dashboard -----------*/
.container.dashboard {
  justify-content: space-between;
}

.chart-container {
  min-height: 500px;
}

.charity-home-chartnav {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  /*align-items: strech;*/
  align-content: stretch;
  column-gap: 10px;
}
.navitem {
  position: relative;
  flex: 1 1 auto;
  border-radius: 2px;
  border: 1px outset rgba(200, 200, 200, 0.3);
  /*box-shadow:0 0 2px rgba(100,100,100,.2); */
  padding: 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 1);
}

.navitem.item-1 h4,
.navitem.item-1 h3 {
  color: #ff4637;
}

.navitem.item-2 h4,
.navitem.item-2 h3 {
  color: #00aeff;
}

.navitem.item-3 h4,
.navitem.item-3 h3 {
  color: #00bf4f;
}

.navitem.item-4 h4,
.navitem.item-4 h3 {
  color: #7302dc;
}

.navitem div {
  display: flex;
  flex-flow: column wrap;
  justify-content: stretch;
  align-items: stretch;
  height: 100%;
}

.navitem div span:nth-child(1) {
  flex: 1 1 auto;
  margin-bottom: 30px;
  /*border:1px solid blue;*/
}

.navitem div span:nth-child(2) {
  flex: 1 1 auto;
  /*border:1px solid red;*/
}

.navitem div span:nth-child(2) figure {
  display: flex;
  flex-flow: row wrap;
  justify-content: stretch;
  align-items: stretch;
}

.navitem div span:nth-child(2) figure img {
  flex: 0 1 auto;
  margin-right: 50px;
}

.navitem div span:nth-child(2) figure figcaption {
  flex: 1 1 auto;
  align-self: flex-end;
  text-align: right;
}

.navitem section {
  display: flex;
  flex-flow: row wrap;
  justify-content: stretch;
  align-items: stretch;
}
.navitem section span {
  flex: 1 1 auto;
}
.navitem section span:nth-child(2) {
  text-align: right;
}

.navitem.item-5 {
  cursor: default;
  background: #00bf4f;
  color: #f2f2f2;
}

.navitem.item-6 {
  cursor: default;
  background: #00aeff;
  color: #f2f2f2;
}
.navitem.item-7 {
  cursor: default;
  background: #ea4335;
  color: #f2f2f2;
}
.navitem.item-8 {
  cursor: default;
  background: #ff8f00;
  color: #f2f2f2;
}

/* --------------- Add User -----------*/
.input-inline.add-user textarea {
  width: 550px;
  height: 150px;
  resize: vertical;
}

/*------- Common classes ---------*/
.gradient-background {
  background: linear-gradient(rgba(30, 40, 63, 0.5), rgba(0, 18, 44, 0.5));
}
.spinner {
  /*border: 1px solid yellow;*/
  flex: 1 1 auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.spinner span {
  font-size: 18px;
}
.action i {
  color: dodgerblue;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

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

.margin {
  margin: 20px;
}

.margin-top-btm {
  margin-top: 20px;
  margin-bottom: 20px;
}
.margin-top {
  margin-top: 20px;
}

.margin-left-10 {
  margin-left: 10px;
}

.margin-lt-rt-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.btn-alt:hover,
.btn-alt {
  background-color: #ebebeb;
  border: 1px solid dodgerblue;
  color: dodgerblue;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
