body {
  background: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}

.wrapper {
  width: calc(100% - 85px);
  height: auto;
  margin: 0 0 0 85px;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
  .wrapper {
    width: 100%;
    margin: 0 0 75px 0;
    padding: 0 10px;
  }
}
h1 {
  font-size: 30px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 23px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 21px;
}

h6 {
  font-size: 20px;
}

p {
  font-size: 18px;
  margin: 0;
}

strong {
  font-weight: 500;
}

header {
  height: 100vh;
  width: 85px;
  background: -moz-linear-gradient(45deg, #7034FE 0%, #CA409F 100%);
  background: -webkit-linear-gradient(45deg, #7034FE 0%, #CA409F 100%);
  background: linear-gradient(45deg, #7034FE 0%, #CA409F 100%);
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
header .logo {
  height: 85px;
  width: 85px;
  padding: 20px;
  box-sizing: border-box;
}
header .logo img {
  width: 100%;
}
header .header_button {
  height: 85px;
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  color: #fff;
  font-size: 22px;
  background: rgba(255, 255, 255, 0);
  transition: all 0.25s ease;
}
header .header_button:hover {
  font-size: 25px;
}
header .header_button.active, header .header_button:hover {
  background: rgba(255, 255, 255, 0.25);
}

.title_bar {
  width: calc(100% - 85px);
  margin: 0 0 0 85px;
  display: block;
  padding: 25px 35px;
  box-sizing: border-box;
}
.title_bar h1 {
  margin: 0;
  padding: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: #000;
}

@media screen and (max-width: 600px) {
  header {
    height: 75px;
    width: 100%;
    top: unset;
    bottom: 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
  }
  header .header_button {
    height: 75px;
    width: 75px;
    font-size: 20px;
  }
  header .logo {
    display: none;
  }
  .title_bar {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}
.card {
  height: auto;
  width: calc(50% - 30px);
  background: #fff;
  border-radius: 20px;
  border: 2px solid #f2f2f2;
  padding: 25px;
  box-sizing: border-box;
  margin: 15px;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
}
.card.fullwidth {
  width: 100%;
  margin: 15px auto;
}
.card .title {
  width: 100%;
  flex-shrink: 0;
  display: block;
  text-align: left;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #000;
  margin: 0 auto 20px auto;
}
.card p {
  width: 100%;
  flex-shrink: 0;
}

@media screen and (max-width: 1300px) {
  .card {
    width: 100%;
    margin: 15px auto;
  }
}
.button {
  border-radius: 150px;
  background: #000;
  color: #fff;
  padding: 10px 25px;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0 5px 5px 0;
  appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.button .icon {
  margin-right: 10px;
}
.button:hover {
  transform: scale(1.05);
}
.button.disabled {
  opacity: 0.2;
  pointer-events: none;
  cursor: not-allowed;
}

[class*=label-] {
  color: #fff;
  background: #333333;
}

.label-yellow {
  background: #eb9532;
}

.label-yellow_light {
  background: #eb9532;
}

.label-yellow_dark {
  background: #eb9532;
}

.label-purple {
  background: #9b59b6;
}

.label-purple_light {
  background: #9b59b6;
}

.label-purple_dark {
  background: #9b59b6;
}

.label-black {
  background: black;
}

.label-black_light {
  background: black;
}

.label-black_dark {
  background: black;
}

.label-pink {
  background: #e33d94;
}

.label-pink_light {
  background: #e33d94;
}

.label-pink_dark {
  background: #e33d94;
}

.label-sky {
  background: #4871f7;
}

.label-sky_light {
  background: #4871f7;
}

.label-sky_dark {
  background: #4871f7;
}

.label-green {
  background: #1ba39c;
}

.label-green_light {
  background: #1ba39c;
}

.label-green_dark {
  background: #1ba39c;
}

.label-lime {
  background: #12b6b1;
}

.label-lime_light {
  background: #12b6b1;
}

.label-lime_dark {
  background: #12b6b1;
}

.label-blue {
  background: #284387;
}

.label-blue_light {
  background: #284387;
}

.label-blue_dark {
  background: #284387;
}

.label-red {
  background: #d24d57;
}

.label-red_light {
  background: #d24d57;
}

.label-red_dark {
  background: #d24d57;
}

form {
  width: 100%;
}
form .form-field-wrapper {
  display: block;
  width: 100%;
  margin: 0 0 25px 0;
}
form .form-field-wrapper label {
  display: block;
  width: 100%;
  margin: 0 0 5px 0;
  font-weight: 700;
  font-size: 18px;
  color: #CA409F;
}
form .form-field-wrapper input {
  display: block;
  width: 100%;
  border-radius: 15px;
  border: none;
  box-sizing: border-box;
  padding: 15px 10px;
  background: #f5f5f5;
  font-weight: 500;
  font-size: 18px;
  color: #000;
}

#notification {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 888;
  height: 70px;
  width: 100%;
  background: #CA409F;
  color: #fff;
  padding: 0 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.25s ease;
}
#notification .icon {
  margin-right: 15px;
  animation-name: sync-icon-rotate;
  animation-duration: 0.75s;
  animation-delay: 0.15s;
}
#notification.remove {
  bottom: -70px;
}
#notification:not(.remove) {
  animation-name: notification-entry;
  animation-duration: 0.25s;
}

@keyframes notification-entry {
  from {
    bottom: -70px;
  }
  to {
    bottom: 0;
  }
}
@keyframes notification-entry-mobile {
  from {
    top: -70px;
  }
  to {
    top: 0;
  }
}
@keyframes sync-icon-rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
#sync_started {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
#sync_started.start {
  display: flex;
}
#sync_started .content-box {
  text-align: center;
}
#sync_started .icon {
  animation: sync-icon-rotate 0.75s infinite;
  display: inline-block;
  font-size: 38px;
  margin: 0 auto 15px auto;
  color: #CA409F;
}
#sync_started .text {
  display: block;
  color: #CA409F;
  padding: 10px;
  text-align: center;
}
#sync_started .text h4 {
  font-weight: 700;
  margin: 0 auto 5px auto;
}
#sync_started .text p {
  font-weight: 400;
}
#sync_started .text p .smiley {
  transform: rotate(180deg);
  display: inline-block;
  margin-left: 3px;
}

@media screen and (max-width: 600px) {
  #notification {
    top: 0;
    bottom: unset !important;
    animation-name: notification-entry-mobile;
  }
  #notification.remove {
    top: -70px;
    bottom: unset !important;
  }
}
.capacity {
  align-content: center;
  align-items: center;
  justify-content: center;
}
.capacity .capacity_visualiser {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.capacity .capacity_visualiser .per_week {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.capacity .capacity_visualiser .capacity_bubble {
  position: relative;
  border-radius: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: #ede6ff;
  margin: 10px;
}
.capacity .capacity_visualiser .capacity_bubble.main {
  height: 150px;
  width: 150px;
}
.capacity .capacity_visualiser .capacity_bubble.main .icon {
  font-size: 30px;
}
.capacity .capacity_visualiser .capacity_bubble.sub {
  height: 75px;
  width: 75px;
}
.capacity .capacity_visualiser .capacity_bubble.sub .icon {
  font-size: 20px;
}
.capacity .capacity_visualiser .capacity_bubble .icon {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
}
.capacity .capacity_visualiser .capacity_bubble .capacity_status {
  width: 0;
  height: 0;
  transition: all 0.25s ease-out;
  border-radius: 100%;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: #7034FE;
}
.capacity .capacity_visualiser .capacity_bubble.target_capacity {
  background: #7cedd7;
}
.capacity .capacity_visualiser .capacity_bubble.target_capacity .capacity_status {
  background: #16a085;
}
.capacity .capacity_visualiser .capacity_bubble.over_capacity {
  background: #f6b0ae;
}
.capacity .capacity_visualiser .capacity_bubble.over_capacity .capacity_status {
  background: #d91e18;
}
.capacity .capacity_data {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto 0 auto;
  padding: 20px 0 0 0;
  box-sizing: border-box;
  border-top: 1px solid #f2f2f2;
}
.capacity .capacity_data .data_point {
  width: 20%;
  padding: 0 10px 0 0;
  box-sizing: border-box;
  text-align: left;
}
.capacity .capacity_data .data_point .value {
  font-size: 20px;
  font-weight: 700;
  color: #7034FE;
}
.capacity .capacity_data .data_point .value .capacity_max {
  font-size: 16px;
  color: #a680fe;
}
.capacity .capacity_data .data_point .label {
  font-size: 16px;
  font-weight: 400;
  color: #0d0d0d;
}

.target .target_visualiser {
  width: 100%;
  display: block;
}
.target .target_visualiser .target_bar {
  margin-bottom: 10px;
}
.target .target_visualiser .target_bar.first {
  margin-bottom: 25px;
}
.target .target_visualiser .target_bar .label {
  font-family: "Barlow", sans-serif;
  color: #000;
  text-align: left;
  margin: 0 auto 7.5px auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.target .target_visualiser .target_bar .label span {
  font-size: 18px;
  font-weight: 500;
}
.target .target_visualiser .target_bar .label .value {
  font-size: 16px;
  font-weight: 400;
}
.target .target_visualiser .target_bar .bar {
  position: relative;
  display: block;
  width: 100%;
  height: 15px;
  transition: all 0.25s ease-out;
  border-radius: 150px;
  overflow: hidden;
  background: #f2f2f2;
}
.target .target_visualiser .target_bar .bar .status {
  height: 100%;
  width: 0;
  transition: all 0.25s ease-out;
  position: relative;
  z-index: 1;
}
.target .target_visualiser .target_bar .bar .status.target_reached {
  background: #16a085;
}
.target .target_visualiser .target_bar .bar .status.target_in_range {
  background: #f9bf3b;
}
.target .target_visualiser .target_bar .bar .status.target_not_reached {
  background: #d91e18;
}
.target .target_visualiser .target_bar .bar .indicator {
  height: 100%;
  width: 3px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #333333;
  transition: all 0.25s ease-out;
}
.target .target_data {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto 0 auto;
  padding: 20px 0 0 0;
  box-sizing: border-box;
  border-top: 1px solid #f2f2f2;
}
.target .target_data .data_point {
  width: 20%;
  padding: 0 10px 0 0;
  box-sizing: border-box;
  text-align: left;
}
.target .target_data .data_point .value {
  font-size: 22px;
  font-weight: 700;
  color: #7034FE;
}
.target .target_data .data_point .label {
  font-size: 16px;
  font-weight: 400;
  color: #0d0d0d;
}

.timeline .timeline_visualiser {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.timeline .timeline_visualiser .timeline_employee {
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
  width: calc(20% - 5px);
  margin: 2.5px;
  opacity: 1;
}
.timeline .timeline_visualiser .timeline_employee .name {
  display: block;
  width: 100%;
  color: #000;
  margin: 0 auto 10px auto;
  padding: 0;
  text-align: center;
}
.timeline .timeline_visualiser .timeline_employee .agenda {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: all 0.25s ease;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item {
  display: block;
  position: relative;
  height: auto;
  width: 100%;
  padding: 15px 50px 15px 20px;
  box-sizing: border-box;
  border-radius: 7.5px;
  overflow: hidden;
  margin: 0 0 5px 0;
  transition: all 0.25s ease;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item.card-done {
  opacity: 0.35;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item.card-done .data {
  display: none !important;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item.card-done .visual_spacer {
  display: none !important;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item.card-done:hover {
  opacity: 1;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item.card-done:hover .data {
  display: inline-block !important;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item.card-done .status_indicator {
  opacity: 1;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item .status_indicator {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 15px;
  font-size: 20px;
  color: #fff;
  opacity: 0.75;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item .text {
  display: block;
  font-weight: 700;
  margin: 0 0 5px 0;
  position: relative;
  z-index: 1;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item .data {
  font-weight: 400;
  display: inline-block;
  margin: 0 0 4px 0;
  padding: 4px 6px 6px 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  opacity: 1;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item .data .icon {
  margin-right: 5px;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item .data.link {
  cursor: pointer;
  opacity: 0;
  background: #fff;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item .data.link a {
  height: 100%;
  width: 100%;
  display: block;
  color: #000;
  text-decoration: none;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item .data.link:hover a {
  color: #0079BF;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item:hover .data.link {
  opacity: 1;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item .visual_spacer {
  width: 100%;
  display: block;
  flex-shrink: 0;
  transition: all 0.25s ease-out;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item.overdue::after {
  display: block;
  content: "";
  height: 100%;
  width: 100%;
  background: -moz-linear-gradient(270deg, rgba(217, 30, 24, 0.85) 0%, rgba(217, 30, 24, 0) 55%);
  background: -webkit-linear-gradient(270deg, rgba(217, 30, 24, 0.85) 0%, rgba(217, 30, 24, 0) 55%);
  background: linear-gradient(270deg, rgba(217, 30, 24, 0.85) 0%, rgba(217, 30, 24, 0) 55%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 1;
  transition: all 0.35s ease-in;
}
.timeline .timeline_visualiser .timeline_employee .agenda .agenda_item.overdue .status_indicator {
  opacity: 1;
}
.timeline .timeline_visualiser .timeline_employee .agenda:not(.agenda-open) .agenda_item .visual_spacer {
  height: 0 !important;
}
.timeline .timeline_visualiser .timeline_employee .agenda:not(.agenda-open) .agenda_item .data {
  opacity: 0;
  transform: scale(0);
}
.timeline .timeline_visualiser .timeline_employee .agenda:not(.agenda-open) .agenda_item.overdue::after {
  opacity: 0;
}

@media screen and (max-width: 1200px) {
  .timeline .timeline_visualiser .timeline_employee {
    width: 100%;
    margin: 5px auto;
  }
}
.label .label_visualiser {
  width: 100%;
  display: block;
}
.label .label_visualiser .label_item {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto 10px auto;
}
.label .label_visualiser .label_item .name {
  font-weight: 400;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 5px;
  overflow: hidden;
  color: #fff;
  background: #CA409F;
}
.label .label_visualiser .label_item .value {
  font-weight: 500;
  font-size: 18px;
  color: #7034FE;
}

.weekplan .timeline_visualiser .timeline_employee {
  width: calc(50% - 10px);
}

@media screen and (max-width: 1050px) {
  .weekplan .timeline_visualiser .timeline_employee {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

/*# sourceMappingURL=main.css.map */
