.nav-wrapper {
  background-color:#182c48
  !important;
  
}
.nav-wrapper .brand-logo img {
  height: 64px;
}
@media (max-width: 600px) {
.nav-wrapper .brand-logo img {
    height: 56px;}
}

#sidenav1 {
  background:#182c48;
}

#sidelogo.container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height:64px;
  width: auto;
}

nav ul a {
  color:#009688;
}

.sidenav {
  background:#7C93B4;
}

.sidenav li a {
  color:#182c48;
}

body {
background-color: #182c48;
}

.card .card-action {
background-color:#7C93B4
  !important;
}


#photo.btn-small{
  background-color:#7C93B4
   !important;
}



h5 {
  color:#009688
  !important;
}


.collapsible-header {
  background-color:#2e5388
  !important;
}

.collapsible-body {
    background:white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    
}






.middle {
  width: 100%;
  text-align: center;

}


.middle input[type="radio"] {
  display: none;
}
.middle input[type="radio"]:checked + .box {
  background-color: #009688;
}
.middle input[type="radio"]:checked + .box span {
  color: white;
  transform: translateY(35px);
}
.middle input[type="radio"]:checked + .box span:before {
  transform: translateY(0px);
  opacity: 1;
}
.middle .box {
  width: 100px;
  height: 100px;
  background-color:#e0e0e0;
  transition: all 250ms ease;
  will-change: transition;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.middle .box:active {
  transform: translateY(10px);
}
.middle .box span {
  position: absolute;
  transform: translate(0, 30px);
  left: 0;
  right: 0;
  transition: all 300ms ease;
  font-size: 1.5em;
  user-select: none;
  color: #009688;
}
.middle .box span:before {
  font-size: 1.2em;
  font-family: FontAwesome;
  display: block;
  transform: translateY(-40px);
  opacity: 0;
  transition: all 300ms ease-in-out;
  font-weight: normal;
  color: white;
}
.middle .front-end span:before {
  content: "\f090";
}
.middle .back-end span:before {
  content: "\f08b";
}


.btn {
  border-radius:25px;
  background:#009688;
}




.alert{
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight:700;
  color:#882e53;
  padding:10px;
  margin-bottom:10px;
  display:none;
}


.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}













.middle {
  width: 100%;
  text-align: center;

  input[type="radio"] {
    display: none;
    &:checked {
      + .box {
        background-color: teal;
        span {
          color: white;
          transform: translateY(70px);
          &:before {
            transform: translateY(0px);
            opacity: 1;
          }
        }
      }
    }
  }
  .inbox {
    width: 200px;
    height: 200px;
    border:2px;
    border-color:black;
    border-radius:100px;
    background-color: grey;
    transition: all 250ms ease;
    will-change: transition;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    font-family: 'Roboto';
    font-weight: 700;
    &:active{
      transform: translateY(20px);
    }
    span {
      position: absolute;
      transform: translate(0, 60px);
      left: 0;
      right: 0;
      transition: all 300ms ease;
      font-size: 1.5em;
      user-select: none;
      color: teal;
      &:before {
        font-size: 1.2em;
        font-family: FontAwesome;
        display: block;
        transform: translateY(-80px);
        opacity: 0;
        transition: all 300ms ease-in-out;
        font-weight: normal;
        color: white;
      }
    }
  }
  .outbox {
    width: 200px;
    height: 200px;
    border:2px;
    border-color:black;
    border-radius:100px;
    background-color: grey;
    transition: all 250ms ease;
    will-change: transition;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    font-family: 'Roboto';
    font-weight: 700;
    &:active{
      transform: translateY(20px);
    }
    span {
      position: absolute;
      transform: translate(0, 60px);
      left: 0;
      right: 0;
      transition: all 300ms ease;
      font-size: 1.5em;
      user-select: none;
      color: teal;
      &:before {
        font-size: 1.2em;
        font-family: FontAwesome;
        display: block;
        transform: translateY(-80px);
        opacity: 0;
        transition: all 300ms ease-in-out;
        font-weight: normal;
        color: white;
      }
    }
  }
  .IN {
    span {
      &:before {
        content: '\f121';
      }
    }
  }
  .OUT {
    span {
      &:before {
        content: '\f0f4';
      }
    }
  }
}
  