.menu-hidden {
  height: 0 !important;
  overflow: hidden; }

ul.admin-main-menu {
  background-color: green;
  -webkit-transition: height 300ms;
  transition: height 300ms ease;
  will-change: height;
  top: 50px;
  position: fixed;
  width: 100%; }

ul.admin-main-menu li {
  display: block;
  border-bottom: 1px solid whitesmoke;
  margin-bottom: 0;
  position: relative; }

ul.admin-main-menu li a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem; }

ul.admin-main-menu li a:hover,
ul.admin-main-menu li.item--active a {
  background-color: white;
  color: #333333; }

ul.admin-main-menu li a:hover:after,
ul.admin-main-menu li.item--active a:after {
  content: " ";
  display: block;
  position: absolute;
  height: 5px;
  background: green;
  left: 0;
  right: 0;
  bottom: 1px;
  margin-left: 50%;
  transform: translateX(-50%); }

@media screen and (min-width: 768px) {
  .menu-hidden {
    height: 45px !important;
    overflow: hidden; }
  ul.admin-main-menu {
    background-color: darkseagreen;
    width: 1024px;
    position: initial; }
  ul.admin-main-menu li {
    display: inline-block;
    border-bottom: 0; }
  ul.admin-main-menu li a {
    height: 100%;
    line-height: 30px;
    box-sizing: border-box; } }

button.icon-close {
  cursor: pointer;
  background-color: #c3bb3d; }

.admin-search-menu {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  background-color: #F2E961;
  padding: 0.5rem;
  box-sizing: border-box;
  -webkit-transition: right 300ms;
  transition: right 300ms ease;
  will-change: right; }
  .admin-search-menu.search-menu-hidden {
    right: -300px; }
  .admin-search-menu input {
    border: none;
    border-radius: 15px;
    outline: none; }
  .admin-search-menu select {
    padding: 0.5rem;
    background: transparent;
    border-radius: 20px;
    outline: none; }

button.icon-search {
  cursor: pointer;
  background-color: #006b00; }

header {
  display: flex;
  justify-content: space-between;
  background-color: darkseagreen;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  right: 0;
  height: 50px; }

.menu-container {
  overflow-x: auto;
  width: 100%;
  position: absolute; }

.burger {
  flex: 1; }

.icon-container {
  flex: 1; }
  .icon-container button {
    width: 50px;
    height: 50px;
    border: none; }

@media screen and (min-width: 768px) {
  .menu-container {
    position: initial; } }

.placeHolder {
  display: block;
  height: 60px;
  background-color: lightgray;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  box-sizing: border-box;
  position: relative;
  right: 0;
  left: 0;
  margin: 8px auto;
  width: 98%; }

@media screen and (min-width: 481px) {
  .placeHolder {
    margin-top: 0;
    right: 0;
    left: 0; } }

* {
  box-sizing: border-box; }

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background-color: whitesmoke; }

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px; }

/* Container around content */
.timeline .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%; }

/* The circles on the timeline */
.timeline .container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1; }

/* Place the container to the left */
.timeline .container.left {
  left: 0; }

/* Place the container to the right */
.timeline .container.right {
  left: 50%; }

/* Add arrows to the left container (pointing right) */
.timeline .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white; }

/* Add arrows to the right container (pointing left) */
.timeline .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent; }

/* Fix the circle for containers on the right side */
.timeline .right::after {
  left: -16px; }

/* The actual content */
.timeline .content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px; }
  .timeline .content h3 {
    display: inline;
    font-size: 1rem; }
    .timeline .content h3.light {
      font-weight: normal; }
      .timeline .content h3.light strong {
        font-weight: bold; }

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
    left: 31px; }
  /* Full-width containers */
  .timeline .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px; }
  /* Make sure that all arrows are pointing leftwards */
  .timeline .container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent; }
  /* Make sure all circles are at the same spot */
  .timeline .left::after,
  .timeline .right::after {
    left: 15px; }
  /* Make all right containers behave like the left ones */
  .timeline .container.right {
    left: 0%; } }

.remainBudget {
  background-color: #3A5F3A;
  padding: 1rem;
  text-align: center;
  color: #ffffff;
  font-weight: bold; }

