.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content:not(:has(.login-container)) {
  position: relative;
  background-color: #2a3135;
  color: #eeeeee;
  min-height: 100vh;
  top: 0;
  left: 80px;
  transition: all 0.5s ease;
  width: calc(100% - 80px);
  padding: 1rem;
}
.content:has(.login-container) {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: #3180ff;
}
#login-box {
  background-color: #dcdcdc;
  border-radius: 15px;
  max-width: 75vw;
}
.wrapper:has(
  .checkin-curve,
  .checkin-msg
) {
  position: relative;
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.checkin-curve {
  position: absolute;
  height: 100%;
  width: 80%;
  background: #3180ff;
  border-top-right-radius: 50% 75%;
  border-bottom-right-radius: 50% 75%;
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
}
.checkin-msg {
  position: absolute;
  height: 100%;
  width: 150%;
  background: #3180ff;
  border-top-right-radius: 50% 75%;
  border-bottom-right-radius: 50% 75%;
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
}
.checkin-msg > #checkin-box {
  position: absolute;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-device-width: 780px) {
  .checkin-msg > #checkin-box {
    top: 50%;
    bottom: 50%;
  }
}
.wrapper:has(.login-container) {
  background: #3180ff;
}
.transitioned {
  width: 150%;
}
.detransitioned {
  width: 80%;
}
.msg-fade-out {
  animation: fadeOut ease 1s;
  animation-fill-mode: forwards;
}
.msg-fade-in {
  animation: fadeIn ease 0.5s;
  animation-fill-mode: forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#register-box {
  position: relative;
  display: flex;
  left: -100%;
  background-color: #dcdcdc;
  border-radius: 15px;
  max-width: 75vw;
  max-height: 95vh;
  transition: all 1s ease;
  flex-direction: column;
}
@media screen and (max-device-width: 780px) {
  #register-box {
    overflow: scroll;
  }
}
.slid-in {
  animation: slideIn 1s forwards;
}
.slid-out {
  animation: slideOut 1s forwards;
}
.curve {
  animation: curve 1s forwards;
}
@keyframes curve {
  100% {
    border-top-right-radius: 50% 75%;
    border-bottom-right-radius: 50% 75%;
    margin-right: 20%;
  }
}
@keyframes slideIn {
  100% {
    left: 0;
  }
}
@keyframes slideOut {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}
.wrapper:has(#register-box) {
  position: relative;
  display: flex;
  height: 100vh;
  background: #3180ff;
}
.page-headline {
  display: flex;
  justify-content: space-between;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: #1b1b1b;
  padding: 0.4rem 0.8rem;
  transition: all 0.5s ease;
}
.sidebar.active ~ .content {
  left: 250px;
  width: calc(100% - 250px);
}
.sidebar.active {
  width: 250px;
}
.sidebar #sidebar-toggle {
  position: absolute;
  color: #79aec8;
  top: 0.4rem;
  left: 25%;
  font-size: 1.2rem;
  line-height: 50px;
  transform: translate(-50%);
  cursor: pointer;
}
.sidebar.active #sidebar-toggle {
  left: 90%;
}
.sidebar .top .logo {
  color: #ffffff;
  display: flex;
  height: 50px;
  width: 100%;
  align-items: center;
  pointer-events: none;
  opacity: 0;
}
.sidebar.active .top .logo {
  opacity: 1;
}
.top .logo i {
  font-size: 2rem;
  margin-right: 5px;
}
.sidebar ul {
  padding-left: 0 !important;
}
.sidebar ul li {
  position: relative;
  list-style-type: none;
  height: 50px;
  width: 90%;
  margin: 0.8rem auto;
  line-height: 50px;
}
.sidebar ul li a {
  color: #ffffff;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 0.8rem;
}
.sidebar ul li a:hover,
.sidebar ul li button:hover {
  background-color: #ffffff;
  color: #1b1b1b !important;
}
.sidebar ul li a i,
.sidebar ul li button i {
  min-width: 50px;
  text-align: center;
  height: 50px;
  border-radius: 12px;
  line-height: 50px;
}
.sidebar .nav-item {
  opacity: 0;
}
.sidebar.active .nav-item {
  opacity: 1;
}
.color-box {
  width: 35px;
  height: 35px;
  display: inline-block;
}
.select2-results,
.select2-search,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  background-color: #212529;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ffffff !important;
}
.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #283b71;
}
/*# sourceMappingURL=base.css.map */