@font-face {
  font-family: "Neue";
  src: url("/fonts/PPNeueMontreal-Regular-1.otf") format("opentype");
}
@font-face {
  font-family: "Neue Medium";
  src: url("/fonts/neue-medium.ttf") format("opentype");
  font-weight: 500;
}
* {
  font-family: "Neue", sans-serif;
  -moz-osx-font-smoothing: grayscale; /* Firefox */
  -webkit-font-smoothing: antialiased; /* WebKit  */
}

.small {
  font-size: 10px;
}

.blue {
  color: #000000;
}

.error {
  color: #D10000;
  margin-top: 20px;
}

h1 {
  font-family: "Neue Medium", "Neue", sans-serif;
  font-size: 15px;
  font-weight: normal;
}
@media all and (max-width: 830px) {
  h1 {
    font-size: 15px;
  }
}

h2 {
  font-family: "Neue", sans-serif;
  font-size: 15px;
  font-weight: normal;
}
@media all and (max-width: 830px) {
  h2 {
    font-size: 15px;
  }
}

h3 {
  font-family: "Neue", sans-serif;
  font-size: 12px;
  font-weight: normal;
}

h4 {
  font-family: "Neue", sans-serif;
  font-size: 15px;
  font-weight: normal;
  -webkit-text-fill-color: black;
  -webkit-text-stroke-color: black;
  -webkit-text-stroke-width: 0.5px;
  letter-spacing: 0.5px;
}

h5 {
  font-family: "Neue", sans-serif;
  font-size: 11px;
  font-weight: normal;
}

p {
  font-size: 11px;
  color: #7B7B7B;
  line-height: 14px;
}

a {
  color: white;
  font-size: 11px;
  text-decoration: none;
  transition: 147ms ease-in-out;
}
a:hover {
  opacity: 0.8;
}

form {
  position: relative;
  background: white;
}
form .user-input {
  padding: 16px 20px;
  font-size: 14px;
  width: 100%;
  display: block;
  border: 1px solid #BFBFBF;
  border-radius: 0;
  outline: none;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
form .user-input + input {
  margin-top: 10px;
}
form .user-input + .user-input {
  margin-top: 10px;
}
form .user-input::-moz-placeholder {
  color: black;
}
form .user-input::placeholder {
  color: black;
}
form .user-input:focus {
  background-color: #F5F5F5;
}
form .button {
  width: -moz-fit-content;
  width: fit-content;
  outline: none;
}

.form {
  position: absolute;
  top: 100%;
  width: 100%;
  transition: 147ms ease-in-out;
  z-index: 9;
}
.form form input, .form form textarea {
  visibility: hidden;
}
@media all and (max-width: 700px) {
  .form {
    height: calc(100vh - 118px);
  }
  .form form {
    height: 100%;
  }
}
.form.newform {
  top: calc(100% - 39px);
}
@media all and (max-width: 700px) {
  .form.newform {
    top: calc(100% - 40px);
    position: fixed;
  }
}
.form.removeform {
  background-color: white;
}
@media all and (max-width: 700px) {
  .form.removeform {
    height: auto;
  }
}
.form.removeform .warning-text {
  margin: 20px auto;
  text-align: center;
  max-width: 194px;
}
.form.removeform .submit-box {
  padding: 0 30px 20px;
}
@media all and (max-width: 700px) {
  .form.removeform .submit-box {
    padding: 0 20px 20px;
  }
}
.form.active {
  transform: translateY(calc(-100% + 1px));
  top: 100%;
}
.form.active form input, .form.active form textarea {
  visibility: visible;
}
.form .title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  transition: 147ms ease-in-out;
  background-color: #000000;
  cursor: pointer;
  color: white;
  text-align: center;
}
@media (prefers-color-scheme: dark) {
  .form .title {
    background-color: #FB511E;
  }
}
.form .title:hover {
  background-color: #222;
}
@media (prefers-color-scheme: dark) {
  .form .title:hover {
    background-color: #E64A1A;
  }
}
.form .title.red {
  background-color: #FF0000;
}
.form .title.red:hover {
  background-color: #E60000;
}
@media all and (max-width: 700px) {
  .form .title {
    height: 40px;
  }
}
.form form {
  padding: 20px 30px;
  background-color: white;
  position: relative;
}
@media all and (max-width: 700px) {
  .form form {
    padding: 20px;
  }
}
.form form .loading {
  background-color: #EAEAEA;
}
.form form .loading div {
  background-color: white;
}
.form form textarea {
  height: 100px;
}
@media all and (max-width: 700px) {
  .form form textarea {
    height: calc(100% - 299px);
  }
}
.form form .user-input {
  background-color: transparent;
}
.form form .selectbox {
  width: 100%;
  height: 50px;
  position: relative;
  margin-bottom: 10px;
}
.form form .selectbox.active {
  z-index: 9;
}
.form form .selectbox.active .filter {
  background-color: #F5F5F5;
}
.form form .selectbox.active .check-filter {
  max-height: 235px;
}
.form form .selectbox .filter {
  background-image: url("/images/arrow-down-black.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 15px auto;
  padding-right: 50px;
}
.form form .selectbox .check-filter {
  background-color: #EAEAEA;
  position: absolute;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 0;
  overflow: scroll;
}
.form form .selectbox .check-filter li {
  list-style: none;
}
.form form .selectbox .check-filter li.hide {
  display: none;
}
.form form .selectbox .check-filter li input {
  opacity: 0;
  position: absolute;
}
.form form .selectbox .check-filter li input:checked + label {
  display: none;
}
.form form .selectbox .check-filter li label {
  border-top: 0;
  cursor: pointer;
  transition: 147ms ease-in-out;
  background-color: #F5F5F5;
}
.form form .selectbox .check-filter li label:hover {
  background-color: white;
}
.form form .selectbox .check-filter li:last-child label {
  border-bottom: 0px;
}
.form .submit-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.form .submit-box .right {
  display: flex;
}
.form .submit-box input[type=submit] {
  padding-top: 12px;
  padding-bottom: 14px;
}
.form .submit-box .roundButton {
  padding: 9px 20px 10px;
  border: 1px solid black;
  border-radius: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 147ms ease-in-out;
  font-size: 15px;
}
.form .submit-box .roundButton + .roundButton {
  margin-left: 10px;
}
@media all and (max-width: 700px) {
  .form .submit-box .roundButton {
    padding: 0 10px;
    min-width: 42px;
    height: 42px;
    background-color: white;
  }
}
.form .submit-box .roundButton:hover {
  background-color: black;
  color: white;
}
.form .submit-box .roundButton:hover .cross span {
  background-color: white;
}
.form .submit-box .roundButton .cross {
  width: 12px;
  height: 12px;
  position: relative;
  margin-right: 10px;
}
.form .submit-box .roundButton .cross span {
  display: inline-block;
  background-color: black;
  width: 12px;
  height: 1px;
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.form .submit-box .roundButton .cross span:first-child {
  transform: rotate(-45deg);
}
.form .submit-box .roundButton.removeButton {
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
  border: none;
  background-color: rgba(255, 0, 0, 0.2);
}
.form .submit-box .roundButton.removeButton:hover svg {
  fill: #FF0000;
}
.form .submit-box .roundButton.removeButton svg {
  width: 20px;
  height: 17px;
  transition: 147ms ease-in-out;
  margin: auto;
  fill: #FF0000;
}
.form .submit-box .roundButton.removeButton.red {
  background-color: #FF0000;
  color: white;
  border-color: #FF0000;
}
.form .submit-box .roundButton.removeButton.red svg {
  fill: white;
}
.form .submit-box .roundButton.removeButton.red:hover {
  background-color: #E60000;
}
.form .submit-box .roundButton .text {
  margin-left: 10px;
}
@media all and (max-width: 700px) {
  .form .submit-box .roundButton .text {
    display: none;
  }
}
.form .inputError {
  border-color: #FF0000;
}
.form .inputError .vs__dropdown-toggle {
  border-color: #FF0000 !important;
}

.v-select {
  height: 48px;
  margin-bottom: 10px;
}
.v-select .vs__dropdown-toggle {
  border: 1px solid #BFBFBF !important;
  padding: 9px 20px;
  border-radius: 0;
  height: 48px;
}
.v-select .vs__dropdown-toggle input[type=search]::-webkit-search-decoration {
  width: 0 !important;
  position: absolute;
}
.v-select .vs__dropdown-toggle span, .v-select .vs__dropdown-toggle div, .v-select .vs__dropdown-toggle div span, .v-select .vs__dropdown-toggle input {
  padding: 0 !important;
  margin: 0 !important;
}
.v-select .vs__dropdown-toggle .vs__selected-options {
  padding: 0;
  display: flex;
  align-items: center;
  max-width: calc(100% - 15px);
  overflow: hidden;
  margin-right: 15px !important;
}
.v-select .vs__dropdown-toggle .vs__selected-options .vs__selected {
  padding-left: 0;
  font-size: 14px;
  color: black;
  white-space: nowrap;
  height: 100%;
}
.v-select .vs__dropdown-toggle .vs__actions {
  padding-right: 0;
  background-image: url(/images/arrow-down-black.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
}
.v-select .vs__dropdown-toggle .vs__actions svg {
  display: none;
}
.v-select .vs__dropdown-toggle .vs__actions .vs__clear {
  pointer-events: none;
  display: none;
}
.v-select .vs__search {
  color: black;
  font-size: 15px !important;
  padding-left: 0 !important;
  margin: 0;
}
.v-select .vs__dropdown-menu {
  padding: 0;
  box-shadow: none;
  max-height: 192px;
  border-radius: 0;
}
.v-select .vs__dropdown-menu li {
  padding: 16px 20px;
  font-size: 14px;
  border-top: 1px solid #BFBFBF;
  background-color: white;
  color: black;
  white-space: normal;
}
.v-select .vs__dropdown-menu li a {
  white-space: normal;
}
.v-select .vs__dropdown-menu li:hover, .v-select .vs__dropdown-menu li:focus, .v-select .vs__dropdown-menu li:active, .v-select .vs__dropdown-menu li:focus-within, .v-select .vs__dropdown-menu li.vs__dropdown-option--highlight {
  background-color: #F5F5F5 !important;
  color: black !important;
}

.button {
  display: inline-block;
  transition: 147ms ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  border: 0;
  padding: 14px 25px 16px;
  cursor: pointer;
  background-color: black;
  font-size: 16px;
  color: white;
}
@media all and (max-width: 830px) {
  .button {
    padding: 15px 20px;
  }
}
.button:hover, .button:focus {
  background-color: #222;
}
.button.add {
  padding-left: 50px;
  background-image: url("/images/plus.svg");
  background-position: left 25px center;
  background-repeat: no-repeat;
  background-size: 12px;
}
@media all and (max-width: 830px) {
  .button.add {
    padding-left: 50px;
    background-position: left 20px center;
  }
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9;
  transition: 147ms ease-in-out;
  left: 0;
  top: 0;
}
.loading div {
  width: 15px;
  height: 15px;
  margin: 5px;
  background-color: #EAEAEA;
  animation-name: loader;
  animation: scale 999ms linear infinite;
  border-radius: 100%;
  transition: 147ms ease-in-out;
}
.loading div:nth-child(2) {
  animation-delay: 333ms;
}
.loading div:nth-child(3) {
  animation-delay: 666ms;
}
@keyframes scale {
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

::-moz-selection {
  background-color: #000000;
  color: white;
}

::selection {
  background-color: #000000;
  color: white;
}

body {
  background-color: #F3F4F8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 700px) {
  body {
    display: block;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #000000;
  }
}

#app {
  background-color: white;
  max-width: 700px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 0;
  border: 1px solid #EAEAEA;
}
@media (prefers-color-scheme: dark) {
  #app {
    border: none;
  }
}
@media all and (max-width: 700px) {
  #app {
    border: none;
    width: 100%;
    border-radius: 0;
    height: 100vh;
  }
}
#app .container {
  width: 700px;
  height: 100%;
  position: relative;
  display: table;
}
@media all and (max-width: 700px) {
  #app .container {
    width: 100%;
  }
}
#app .container .topbar {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media all and (max-width: 700px) {
  #app .container .topbar {
    position: fixed;
    top: 0;
  }
}
#app .container .topbar .information-bar {
  background-color: #000000;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 30px;
  color: white;
  position: relative;
}
@media (prefers-color-scheme: dark) {
  #app .container .topbar .information-bar {
    background-color: #FB511E;
  }
}
@media all and (max-width: 700px) {
  #app .container .topbar .information-bar {
    height: 30px;
    border-bottom: 0;
  }
}
#app .container .topbar .dotmenu {
  height: 100%;
  position: absolute;
  right: 30px;
}
@media all and (max-width: 700px) {
  #app .container .topbar .dotmenu {
    right: 20px;
  }
}
#app .container .topbar .dotmenu .dots {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  padding-left: 10px;
}
#app .container .topbar .dotmenu .dots span {
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 100%;
  display: inline-block;
  margin: 2px;
}
@media all and (max-width: 700px) {
  #app .container .topbar .dotmenu .dots span {
    width: 3px;
    height: 3px;
    margin: 1px;
  }
}
#app .container .topbar .dotmenu .menu {
  position: absolute;
  top: 100%;
  right: -30px;
  background-color: #222;
  padding: 10px 20px;
  border-bottom-left-radius: 10px;
  color: white;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: 147ms ease-in-out;
  min-width: 150px;
}
@media all and (max-width: 700px) {
  #app .container .topbar .dotmenu .menu {
    right: -20px;
  }
}
#app .container .topbar .dotmenu .menu.active {
  visibility: visible;
  opacity: 1;
}
#app .container .topbar .dotmenu .menu a {
  display: block;
  margin: 15px 0;
}
#app .container .topbar .dotmenu .menu a.name {
  border-bottom: 1px solid white;
  padding-bottom: 15px;
}
#app .container .overview {
  min-height: 50vh;
  max-height: 65vh;
  position: relative;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media all and (max-width: 700px) {
  #app .container .overview {
    margin-top: 118px;
    padding-bottom: 40px;
    max-height: calc(100vh - 118px);
  }
}
#app .container .overview:after {
  content: "";
  display: block;
  height: 50px;
  width: 1px;
}
@media all and (max-width: 700px) {
  #app .container .overview:after {
    height: 40px;
  }
}
#app .container .overview > .loading {
  height: calc(100% - 50px);
}
@media all and (max-width: 700px) {
  #app .container .overview > .loading {
    height: calc(100vh - 158px);
  }
}
#app .container .overview .item {
  transition: 147ms ease-in-out;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #EAEAEA;
}
#app .container .overview .item .info {
  cursor: pointer;
  width: -moz-available;
  width: -webkit-fill-available;
  padding: 15px 30px;
}
@media all and (max-width: 700px) {
  #app .container .overview .item .info {
    padding: 20px;
  }
}
#app .container .overview .item .info .category {
  margin-top: 5px;
}
#app .container .overview .item .info .content {
  margin-top: 5px;
  padding-right: 50px;
  white-space: pre-line;
}
#app .container .overview .item .controls {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
@media all and (max-width: 700px) {
  #app .container .overview .item .controls {
    flex-direction: column-reverse;
    justify-content: center;
    padding-right: 20px;
  }
}
#app .container .overview .item .controls .visual {
  width: 26px;
  height: 26px;
  background-color: #454545;
  border-radius: 100%;
  margin-left: 20px;
  transition: 147ms background-color ease-in-out;
  position: relative;
  cursor: pointer;
  background-image: url("/images/play.svg");
  background-size: auto 10px;
  background-position: center;
  background-repeat: no-repeat;
}
#app .container .overview .item .controls .visual:hover {
  background-color: black;
}
#app .container .overview .item .controls .visual .loading {
  background-color: black;
  border-radius: 100%;
  height: 100% !important;
}
#app .container .overview .item .controls .visual .loading div {
  width: 4px;
  height: 4px;
  margin: 1px;
}
#app .container .overview .item .controls .visual.play {
  background-image: url("/images/pause.svg");
  background-color: #00B414;
}
#app .container .overview .item .controls .visual.play:hover {
  background-color: #009511;
}
#app .container .overview .item .controls .visual.play .loading {
  background-color: #00B414;
}
@media all and (max-width: 700px) {
  #app .container .overview .item .controls .visual {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
#app .container .overview .item:hover, #app .container .overview .item.active {
  background-color: #EAEAEA;
}
#app .container .overview .empty {
  text-align: center;
  margin-top: 50px;
  transition: 250ms ease-in-out;
}
#app .container .overview .empty img {
  max-width: 270px;
  max-height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
}

.calendar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  height: 127px;
  padding: 20px 30px;
  border-bottom: 1px solid #EAEAEA;
}
@media all and (max-width: 700px) {
  .calendar {
    height: 88px;
    padding: 10px 20px;
  }
}
.calendar .arrow {
  display: flex;
  align-items: center;
  margin-top: 5px;
  background-color: white;
  transition: 147ms ease-in-out;
  padding: 10px 0 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  cursor: pointer;
}
.calendar .arrow.left {
  transform: rotate(180deg);
  padding-left: 0;
}
@media all and (max-width: 700px) {
  .calendar .arrow {
    background-size: 7px;
  }
}
.calendar .days {
  display: flex;
}
.calendar .days .item {
  text-align: center;
  margin: 0 20px;
}
.calendar .days .item .date {
  text-transform: lowercase;
  font-size: 11px;
}
@media all and (max-width: 700px) {
  .calendar .days .item .date {
    font-size: 10px;
  }
}
.calendar .days .item .day {
  text-transform: lowercase;
  width: 36px;
  height: 36px;
  border: 1px solid #EAEAEA;
  border-radius: 100%;
  cursor: pointer;
  transition: 147ms ease-in-out;
  margin: 5px 0;
  padding-bottom: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.calendar .days .item .day:hover {
  background-color: white;
}
@media all and (max-width: 700px) {
  .calendar .days .item .day {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin: 5px 0;
  }
}
.calendar .days .item.today:not(.selected) .day {
  border: 1px solid black;
}
.calendar .days .item.selected .day {
  background-color: #EAEAEA;
}
.calendar .days .item .time {
  font-size: 11px;
  min-height: 12px;
  display: block;
  transition: 250ms ease-in-out;
}
.calendar .days .item .time.more {
  color: #00B414;
}
@media all and (max-width: 700px) {
  .calendar .days .item .time {
    font-size: 10px;
    min-height: 10px;
  }
}

.login {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  height: 100vh;
}
.login__image {
  width: 75%;
}
@media (max-width: 768px) {
  .login__image {
    display: none;
  }
}
.login__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.login__auth {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25%;
  min-width: 300px;
  padding: 60px;
  background-color: white;
}
@media (prefers-color-scheme: dark) {
  .login__auth {
    background-color: black;
  }
}
@media (max-width: 768px) {
  .login__auth {
    width: 100%;
  }
}
.login__auth form {
  background-color: transparent !important;
}
.login__auth .user-input {
  border: none;
  border-bottom: 1px solid black;
  padding: 0 0 10px;
  background-color: transparent !important;
  font-size: 30px;
}
@media (prefers-color-scheme: dark) {
  .login__auth .user-input {
    color: white;
    border-bottom: 1px solid white;
  }
}
.login__auth .user-input + .user-input {
  margin-top: 20px;
}
.login__auth .user-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.login__auth .user-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
@media (prefers-color-scheme: dark) {
  .login__auth .user-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .login__auth .user-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
}
@media (prefers-color-scheme: dark) {
  .login__auth .loading {
    background-color: black;
  }
}
.login__auth .button {
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin-top: 40px;
  min-width: 150px;
}
@media (prefers-color-scheme: dark) {
  .login__auth .button {
    background-color: white;
    color: black;
  }
}
.login__title {
  position: absolute;
  left: 60px;
  bottom: 40px;
  color: white;
  font-size: 80px;
  line-height: 1.23;
  font-family: "Neue", sans-serif;
}
.login__subtitle {
  font-size: 18px;
}
@media (prefers-color-scheme: dark) {
  .login__subtitle {
    color: white;
  }
}
.login__logo {
  position: absolute;
  left: 60px;
  top: 60px;
  width: 148px !important;
  height: auto !important;
}
