/* Colors */
/* Font size */
/* Fonts */
:root {
  --color-first: #f58220;
  --color-first-dark: #ff7500;
  --color-first-light: #fab377;
  --color-second: #668ca5;
  --color-second-light: rgb(232, 243, 250);
  --color-text-light: #fff;
  --color-text-dark: #a6a6a6;
  --color-text-primary: #7495ae;
  --color-light-grey: #f2f2ef;
  --shadow-dark: 0 2rem 6rem rgba(0,0,0, .3);
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

@media only screen and (max-width: 1000px) {
  html {
    font-size: 55%;
  }
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

@media only screen and (max-width: 414px) {
  html {
    font-size: 40%;
  }
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
  line-height: 1.6;
  color: var(--color-text-dark);
  min-height: 100vh;
}

.container {
  background-color: var(--color-light-grey);
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .container {
    position: relative;
  }
}

.content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1;
      flex: 1;
}

.sidebar {
  -ms-flex: 0 0 15%;
      flex: 0 0 15%;
  background-color: #191919;
}

@media only screen and (max-width: 768px) {
  .sidebar {
    position: absolute;
    display: none;
    top: 45px;
    min-height: 100vh;
  }
}

.header {
  height: 5rem;
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 320px) {
  .dashboard {
    max-width: 320px;
  }
}

.box {
  background-color: #fff;
  margin: 2.75rem;
  display: none;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media only screen and (max-width: 768px) {
  .box {
    margin: .5rem;
  }
}

@media only screen and (max-width: 500px) {
  .box {
    margin: 0rem;
  }
}

.box.active {
  display: -ms-flexbox;
  display: flex;
}

.box__item {
  -ms-flex: 1;
      flex: 1;
  margin: .5rem;
  font-weight: 400;
  font-size: 1.75rem;
  padding: 1rem 2rem;
  text-align: center;
}

.box__item:not(:last-child) {
  border-bottom: 2px solid var(--color-light-grey);
}

.box h1 {
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: 300;
  text-align: left;
}

.hamburger {
  min-width: 50px;
  min-height: 50px;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 10px;
  margin-right: auto;
  display: none;
}

@media only screen and (max-width: 768px) {
  .hamburger {
    display: -ms-flexbox;
    display: flex;
  }
}

.not-active {
  display: block;
}

.col-2 {
  list-style: none;
  margin: 0 5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

.col-2__item {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  padding: .5rem 2.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 2px solid var(--color-light-grey);
}

@media only screen and (max-width: 768px) {
  .col-2__item {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
}

/* Components */
.side-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.side-logo img {
  margin: 1.25rem;
}

.side-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  list-style: none;
}

.side-nav__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}

.side-nav__item:not(:last-child) {
  margin-bottom: .5rem;
}

.side-nav__item:hover .side-nav__link {
  border-left: 5px solid var(--color-first);
  color: white;
}

.side-nav__item:hover::before, .side-nav__item-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 20%;
}

.side-nav__link, .side-nav__link:link, .side-nav__link:visited {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  position: relative;
  color: var(--color-text-dark);
}

.side-nav__icon {
  font-size: 1.75rem;
  margin: 1.25rem 2rem;
}

.side-nav__text {
  font-size: 1.25rem;
}

.side-nav__item-active .side-nav__link {
  border-left: 5px solid var(--color-first);
  color: white;
}

.side-footer__title {
  text-transform: uppercase;
  font-size: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--color-text-dark);
  padding-top: 2rem;
}

.side-footer__user {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.side-footer__user span {
  font-size: 1.25rem;
}

.side-footer__user-photo {
  position: relative;
}

.side-footer__user-photo img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 1rem;
}

.side-footer__user-photo::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 65%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: green;
}

.user-nav {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #e2e1e1d8;
}

.user-nav:hover {
  cursor: pointer;
}

.user-nav__icon {
  font-size: 1.75rem;
  padding: 1.5rem 1.9rem;
}

.user-nav__icon:not(:nth-child(3)) {
  border-left: 1px solid #e2e1e1d8;
}

.user-nav__wallet {
  margin-right: 1.2rem;
}

.user-nav__wallet span {
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .user-nav__wallet span {
    display: none;
  }
}

.user-nav__account {
  font-size: 1.3rem;
  margin-right: 1.5rem;
}

.user-nav__account span {
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .user-nav__account span {
    display: none;
  }
}

.btn {
  background-color: var(--color-first);
  padding: 1.25rem;
  margin: 2rem 1.25rem;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0.2rem 0.2rem 0.75rem rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translate(2px, 2px);
}

@media only screen and (max-width: 1000px) {
  .btn {
    padding: .75rem 1.25rem;
    margin: 1.5rem;
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 768px) {
  .btn {
    padding: .75rem 1.25rem;
    margin: 1.5rem;
    font-size: 1.2rem;
  }
}

.btn-nav {
  border: none;
  border-radius: 0;
  background-color: #e2e1e1d8;
  height: 2px;
  width: 3.5rem;
}

.btn-nav::before, .btn-nav::after {
  content: "";
  background-color: #e2e1e1d8;
  height: 2px;
  width: 3.5rem;
  display: block;
}

.btn-nav::before {
  transform: translateY(-0.9rem);
}

.btn-nav::after {
  transform: translateY(0.7rem);
}

.date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.date input {
  padding: 0 .5rem;
  margin: 2rem 0;
  font-size: 1.75rem;
  font-family: inherit;
  color: inherit;
}

.chart {
  margin: 30px;
  padding: 10px;
  width: 80%;
  height: 80%;
}

.chart p {
  text-align: left;
  margin-bottom: 30px;
}

.list {
  list-style: none;
  margin: 0 5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}

@media only screen and (max-width: 1000px) {
  .list {
    margin: 0;
  }
}

.list__item {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  padding: .5rem 2.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 2px solid var(--color-light-grey);
  text-align: left;
}

.list__item:hover {
  background-color: var(--color-second-light);
}

.list__item:hover .active {
  visibility: visible;
}

.list .primary {
  color: var(--color-first);
}

.list div {
  width: 45%;
}

@media only screen and (max-width: 960px) {
  .list div {
    width: 30%;
  }
}

.list a,
.list a:link,
.list a:visited {
  width: 45%;
  color: var(--color-second);
  text-decoration: none;
  font-size: 1.5rem;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sections 
@import "section/registration_form";

/* Pages / Views 
@import "pages/registration";

*/
/*# sourceMappingURL=style.css.map */