.routeContainer{
  animation: routeFadeIn 0.5s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.routeContainer__header{
  position: relative;
  padding: 20px;
  min-height: 45px;
  justify-content: center;
  box-shadow: 2px 2px 10px -1px #20232a;
  z-index: 1;
  margin-bottom: 3px;
}
.routeContainer__title{
  padding: 0;
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  position: relative;
  i{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 15px;
    svg{
      height: 2.1rem;
      fill: #fff;
    }
  }
}

.routeContainer__buttonClose{
  position: absolute;
  z-index: 99;
  left: 20px;
  top: 20px;
  border: none;
  background-color: var(--app-background-section);
  padding: 10px;
  border-radius: 50%;
  &:active, &:focus{
    outline: none;
  }
  i{
    display: flex;
    svg{
      height: 13px;
      fill: var(--app-color);
    }
  }
  &:hover{
    background-color: var(--color-transparent-hint);
  }
}

.routeContainer__content{
  position: relative;
  display: flex;
  flex: 1;
}

@keyframes routeFadeIn {
  0%{
    opacity: 0;
    transform: translateY(10px);
  }
  100%{
    opacity: unset;
    transform: unset;
  }
}

.app-cabinet-container{
  padding-top: 5rem;
  display: flex;
  flex: 1;
  justify-content: center;
}
