.body-content {
  background-image: linear-gradient(
    to bottom,
    var(--color-background-secondary),
    var(--color-background-primary)
  );
  height: calc(100vh - 60px);
  max-height: calc(100vh - 60px);
  padding: 0;
  position: relative;
}

@media (min-width: 992px) {
  .body-content {
    height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
  }
}

.content {
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  max-width: 100%;
}
@media (min-width: 992px) {
  .content {
    flex-flow: row;
  }
}
@media (min-width: 1441px) {
  .content {
    max-width: 1248px;
  }
}

.step,
.hidden {
  display: none;
}

.slides {
  padding: 1rem;
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  .slides {
    padding: 3rem;
    padding-bottom: 1rem;
    height: 100%;
    max-width: 900px;
  }
}

.slides > .title {
  background: rgba(242, 242, 242, 1);
  min-height: 100px;
}

.slides .title-main {
  color: var(--color-black);
  font-weight: 900;
  font-size: 150%;
}

.slides .title-sub {
  color: var(--color-black);
  font-weight: bold;
  padding-top: 10px;
}

@media (min-width: 576px) {
  .slides .title-main {
    font-size: 250%;
  }

  .slides .title-sub {
    padding-top: 0px;
  }
}

.slides .table {
  background: white;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
  width: 100%;
  flex: 1 1 auto;
  padding: 1rem;
}

.block-title {
  width: 100%;
  padding-top: 1.5em;
}

.block-title-small {
  width: 100%;
  padding-top: 1.5em;
}

.bold_text {
  font-weight: bold;
  padding-bottom: 1em;
}

.orange_text {
  color: var(--color-warning);
}

/* steps */
.step.scroll-container {
  height: 85%;
  min-width: calc(100%);
  overflow: auto;
}

.step.step-2.events-div {
  height: calc(100% - 170px);
  min-width: 100%;
}

.step .scroll-container {
  padding: 10px;
  overflow: auto;
  max-height: 95%;
  min-width: calc(100%);
}

/* Step 1 */
.step-1.table {
  min-height: 500px;
}

label[for="personalNumberDzc"] {
  text-transform: none;
}

#personList {
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
}

#personList .user {
  display: flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid #b5b7b6;
  border-radius: 5px;
  padding: 10px;
  margin-right: 1em;
}

#personList .user .icon {
  margin-right: 10px;
}

#personList .user .icon svg {
  width: 16px;
  height: 16px;
}

#personList .user .icon svg:hover {
  cursor: pointer;
}

#personList .user .icon svg.green {
  fill: var(--color-primary);
}

#searchPeople {
  min-width: 100%;
  background-image: url(../lupa.png);
  background-position: left 10px bottom 7px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-left: 50px;
  height: 40px;
  border: 1px solid gray;
  border-radius: 20px;
}

#searchPeopleList {
  display: flex;
  flex-direction: column;
}

#searchPeopleList .user {
  display: flex;
  align-items: center;
  min-height: 40px;
}

#searchPeopleList .user > * {
  margin-right: 5px;
  width: auto;
  min-width: 30px;
}

#searchPeopleList .user svg {
  width: 24px;
  height: 24px;
}

#searchPeopleList .user svg:hover {
  cursor: pointer;
}

#searchPeopleList .user svg.green {
  fill: var(--color-primary);
}

.event-info.faq div {
  display: flex;
  align-items: center;
}

.event-info.faq svg {
  width: 64px;
  height: 64px;
}

.event-info.faq svg.red {
  stroke: #e62336;
}

/* Step 2 */
.search-summary .icon {
  cursor: pointer;
}

.search-summary .icon svg {
  width: 25px;
  height: 25px;
}

.search-summary .icon.green-stroke svg {
  fill: none;
  stroke: var(--color-primary);
  stroke-miterlimit: 10;
}

.search-summary .icon.red-stroke svg {
  fill: none;
  stroke: var(--color-alert);
  stroke-miterlimit: 10;
}

.search-summary .red {
  color: var(--color-alert);
}

@media (min-width: 576px) {
  #searchDetail {
    margin-left: auto;
  }
}

.tags {
  min-height: 40px;
  padding-top: 10px;
  padding-right: 12px;
  display: flex;
  flex-wrap: wrap;
}

span.tag {
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 10px;
  margin-left: 5px;
  margin-bottom: 1px;
  padding: 0.5em 0.8em;
  cursor: default;
}

span.tag:not(.not-active):hover {
  background-color: #419228;
}

span.tag i {
  padding-left: 10px;
}

span.tag.red {
  color: white;
  background-color: var(--color-alert);
}

span.tag.red:hover {
  color: white;
  background-color: var(--color-alert-light);
  cursor: default;
  text-decoration: none;
}

.calendar-content .event,
.scroll-container .event {
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: all 1s;
}

.event.active {
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
  margin-bottom: 40px;
}

.event a {
  color: var(--color-primary);
  border-bottom: 1px dotted var(--color-primary);
}

.event a:hover {
  color: #419228;
  border-bottom: 1px solid #419228;
  text-decoration: none;
}

.event .line {
  background: white;
  padding: 1rem;
}

.event .line.border-top {
  border-top: 1px solid #c7c7c7;
}

.event .line.border-bottom {
  border-bottom: 1px solid #c7c7c7;
}

.event .event-container {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 576px) {
  .event .event-container {
    flex-direction: row;
  }

  .event .right-column {
    margin-left: auto;
  }
}

.event .right-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 576px) {
  .event .right-column {
    align-items: end;
    min-width: 160px;
  }
}

.event .right-column .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-content: flex-start;
}

.event .right-column .icons .icon {
  margin-left: 5px;
}

.event .right-column .icon svg {
  height: 36px;
  width: 36px;
}

.event .right-column .icon.wide svg {
  width: 54px;
}

.event .image {
  object-fit: contain;
  object-position: top;
  max-width: 150px;
  max-height: 150px;
  width: auto;
  height: auto;
  margin-top: 1em;
}

.event .image img:hover {
  cursor: pointer;
}

#preview {
  position: absolute;
  display: none;
  left: 5vw;
  top: 12.5vh;
  width: 90vw;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.75);
  background-color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 576px) {
  #preview {
    left: 12.5vw;
    width: 75vw;
  }
}

#preview div {
  width: 100%;
  height: 100%;
}

#preview img {
  object-fit: contain;
  object-position: center;
  max-height: 90vh;
}

@media (min-width: 576px) {
  #preview img {
    max-height: 75vh;
  }
}

#preview .carousel-indicators  {
  background-color: rgba(0, 0, 0, 0.15);
  margin-bottom: 0;
}

#preview .carousel-control {
  background-color: rgba(0, 0, 0, 0.2);
}

#preview img:hover {
  cursor: pointer;
}

.event .event-title {
  font-weight: bold;
  font-size: 125%;
}

.event .sub-title {
  font-weight: normal;
}

.event .sa-double-switch .slider {
  background: black;
}

.event .sa-double-switch > label {
  text-transform: none;
}

.event .event-description {
  padding-top: 1em;
}

.event .event-pick {
  padding-top: 1em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  line-height: 36px;
}

.event .event-pick a {
  margin-right: 15px;
}

.event .event-pick .tags .icon {
  display: flex;
  align-items: center;
}

.event .event-pick .tags .icon svg {
  height: 36px;
  width: 36px;
}

.event .event-pick button.pick {
  margin: 6px;
}

.event .event-pick .picked {
  min-width: 200px;
  display: flex;
  justify-content: end;
}

.event .event-pick .picked svg {
  width: 36px;
  height: 36px;
  fill: var(--color-primary);
}

.event .event-pick .picked.prevention {
  margin-top: 15px;
}

@media (min-width: 576px) {
  .event .event-pick .picked.prevention {
    margin-top: 0;
  }
}

.event .event-pick .picked.prevention svg {
  width: 24px;
  height: 24px;
}

.event .event-pick .picked.hover:hover {
  cursor: pointer;
}

.event .event-pick .picked.prevention {
  display: flex;
  align-items: end;
}

.event .full.info {
  display: flex;
  align-items: center;
}

@media (min-width: 576px) {
  .event .event-count .count {
    width: 80px;
  }

  .event .event-count button {
    min-width: 70px;
  }
}

.event .event-date {
  padding-bottom: 0px;
}

.event .event-date .subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding-bottom: 5px;
}

.event .event-date .subtitle .type_filter {
  max-width: 160px;
}

.event .event-date .dates {
  display: flex;
}

.event .event-date .arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 40px;
  height: 60px;
}

.event .event-date .arrow.disabled {
  cursor: not-allowed;
}

.event .event-date .arrow.right {
  transform: rotate(180deg);
}

.event .event-date .arrow svg {
  width: 40px;
  height: 60px;
}

.event .event-date .arrow.disabled svg {
  fill: rgb(217, 217, 217);
}

.event .event-date .date {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  border: 2px solid #b7b7b7;
  cursor: pointer;
}

.event .event-date .date.selected {
  border: 0;
  color: white;
  background-color: var(--color-primary);
  cursor: default;
  padding-bottom: 10px;
  height: 70px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.event .event-date .date.virtual {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.event .event-date .date .number {
  font-weight: bold;
}

.event .event-time {
  padding-top: 0px;
}

.event .event-time .event-time-inner {
  background-color: white;
  border: 2px solid var(--color-primary);
  border-radius: 5px;
}

.event .event-time .times {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.event .event-time .times .date-div {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 110%;
  text-align: center;
}

.event .event-time .times .date-div:not(:first-child) {
  margin-top: 20px;
}

.event .event-time .times .time-div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 5px;
  border-bottom: 1px solid #d5d5d5;
  min-height: 50px;
}

.event .event-time .times .time-div.virtual {
  border-bottom: 2px solid var(--color-primary);
  padding: 15px 5px;
}

.event .event-time .times .time-div .sa-checkbox {
  margin-bottom: 0px;
}

.event
  .event-time
  .times
  .time-div
  .sa-checkbox
  input:not(:disabled)
  ~ .checkmark {
  background: white;
}

.event .event-time .times .time-div select.reaction {
  max-width: 75px;
  margin-right: 10px;
  border-bottom: 0;
}

.event .event-time .times .time-div .time {
  display: flex;
  font-weight: bold;
  width: 80%;
}

.event .event-time .times .time-div .name {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.event .event-time .times .time-div .name .value {
  display: flex;
  align-items: center;
}

.event .event-time .times .time-div .name .location {
  color: var(--color-disabled-text);
}

.event .event-time .times .time-div .icons {
  display: flex;
  flex: 1 0 auto;
  justify-content: start;
  width: 100%;
}

.event .event-time .times .time-div .icons .icon {
  margin-left: 5px;
}

.event .event-time .times .time-div .icon svg {
  height: 24px;
  width: 24px;
}

.event .event-time .times .time-div .icon.wide svg {
  width: 36px;
}

.event .event-time .times .time-div .icon.green svg {
  fill: var(--color-primary);
}

.event .event-time .times .time-div .icon.orange svg {
  fill: var(--color-warning);
}

.event .event-time .times .time-div .capacity {
  color: black;
  display: flex;
  justify-content: end;
  align-items: center;
}

.event .event-time .times .time-div .capacity div {
  line-height: 24px;
}

.event .event-time .times .time-div .capacity .bold {
  font-weight: bold;
}

.event .event-time .times .time-div .capacity .icon:hover {
  cursor: pointer;
}

.event .event-time .times .time-div.selected {
  color: var(--color-primary);
}

.event .full,
.tooltip > .tooltip-inner .full {
  color: var(--color-warning);
}

.event .full .full-info svg {
  cursor: help;
}

.event .event-reservations svg {
  height: 24px;
  width: 24px;
  fill: var(--color-primary);
  cursor: pointer;
}

.event .gray {
  background: #f2f2f2;
}

@media (min-width: 576px) {
  .event .event-time .times .time-div .time {
    width: 60px;
  }

  .event .event-time .times .time-div .name {
    margin-left: 10px;
    width: 30%;
  }

  .event .event-time .times .time-div .name.wide {
    width: calc(30% + 60px);
  }

  .event .event-time .times .time-div .icons {
    width: auto;
  }

  .event .event-time .times .time-div .capacity {
    width: auto;
    margin-right: 1rem;
  }
}

#dialog-add-tag {
  overflow: visible !important;
}

/* Step Summary */
.step-3 #divNote {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.step-3 textarea {
  width: 100%;
  height: 100%;
  min-height: 100px;
  flex: 1 1 auto;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  padding-left: 16px;
  padding-right: 8px;
}

/* Step Questionnaire */
#questions .question {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 576px) {
  #questions .question {
    margin: 5px;
    padding: 5px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed var(--color-onsurface-200);
  }
}

#questions .question div {
  min-width: 50px;
  padding: 5px 10px;
}

#questions .question div.text.required:after {
  color: #e32;
  content: " *";
  display: inline;
}

#questions .question.nda div.text {
  text-align: justify;
}


#questions .question div.value {
  flex-grow: 1;
  min-width: 220px;
}

#questions .question.nda div.value {
  min-width: 50px;
}

@media (min-width: 576px) {
  #questions .question div.value input,
  #questions .question div.value select,
  #questions .question div.value label {
    width: auto;
    min-width: 220px;
    max-width: 100%;
    float: right;
  }

  #questions .question div.value input[type='checkbox'] {
    min-width: 25px;
  }

  #questions .question div.value label {
    margin-top: 10px;
  }
}

#questions .question.dependence:not(.dependency-picked) {
  display: none !important;
}

/* Menu */
.menu {
  background-size: cover;
}

.menu .states {
  flex: 1 1 auto;
}

/* Right menu */
.menu-lg {
  padding: 3rem 0 3rem 2rem;
  height: 100%;
}

.menu-lg .menu-item {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 20px;
  align-items: flex-start;
  width: 100%;
}

.menu-lg .menu-item > div {
  height: 60px;
  line-height: 1;
}

.menu-lg .menu-item .text {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.menu-lg .menu-item svg {
  height: 60px;
  width: 60px;
}

.menu-lg .menu-item svg.icon.done {
  height: 54px;
  width: 54px;
}

.menu-lg.menu .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-lg.menu .buttons button {
  max-width: 200px;
}

/* Bottom menu */
.menu-sm {
  background-color: #535353;
  background-size: cover;
}

.menu-sm .states {
  align-items: center;
  display: flex;
  flex-direction: row;
}

.menu-sm .menu-item {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  height: 100%;
}

.menu-sm .menu-item svg {
  height: 36px;
  width: 36px;
}

.menu-sm .menu-item svg.icon.done {
  height: 30px;
  width: 30px;
}

/* Common menu item parameters */
.menu-item.done,
.menu-item.current,
.menu-item.active {
  cursor: pointer;
}

.menu-item .text {
  color: #323232;
}

.menu-item.current .text {
  color: #eeeeee;
}

.menu-item.done .text,
.menu-item.active .text {
  color: white;
}

.menu-item.active .text {
  font-weight: bold;
}

.menu-item svg {
  fill: #323232;
}

.menu-item.stroke svg:not(.done) {
  stroke: #323232;
  stroke-miterlimit: 10;
}

.menu-item.current svg {
  fill: #eeeeee;
}

.menu-item.done svg,
.menu-item.active svg {
  fill: white;
}

.menu-item.stroke.current svg:not(.done) {
  stroke: #eeeeee;
}

.menu-item.stroke.done svg:not(.done),
.menu-item.stroke.active svg:not(.done) {
  stroke: white;
}

.menu-item svg.icon.done {
  fill: #535353;
}

.menu-item.done svg.icon.done {
  fill: var(--color-primary);
}

/* Custom radio */
.radio_sa {
  display: block;
  position: relative;
  left: 0;
  border: 1px solid gray;
  border-radius: 20px;
  padding: 10px;
  padding-left: 50px;
  margin-top: 20px;
  cursor: pointer;
  background-color: white;
  font-weight: normal;
  color: var(--color-black);
}

@media (min-width: 576px) {
  .radio_sa {
    left: 0;
    height: 40px;
    border: 1px solid gray;
    border-radius: 20px;
    padding: 7px;
    padding-left: 50px;
    margin-top: 20px;
  }
}

.radio_sa input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio_sa .checkmark {
  position: absolute;
  top: 8px;
  left: 12px;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 1px solid lightgray;
  border-radius: 50%;
}

.radio_sa:hover input ~ .checkmark {
  background-color: #ccc;
}

.radio_sa input:checked ~ .checkmark {
  background-color: var(--color-primary);
}

/* Custom checkmark */
.check_sa {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.check_sa input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid black;
}

.check_sa:hover input ~ .checkmark {
  background-color: #eee;
}

.check_sa input:checked ~ .checkmark {
  background-color: var(--color-primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check_sa input:checked ~ .checkmark:after {
  display: block;
}

.check_sa .checkmark:after {
  left: 9px;
  top: 4px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Tooltip */
.tooltip > .tooltip-inner {
  background-color: white;
  color: black;
  border-radius: 0;
  min-width: 100px;
  max-width: 500px;
  padding: 20px;
  text-align: start;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.75);
}

.tooltip.nda > .tooltip-inner {
  max-width: 90%;
}

@media (min-width: 768px) {
  .tooltip.nda > .tooltip-inner {
    max-width: 75%;
  }
}

.tooltip > .arrow::before {
  border-color: transparent !important;
}

/* Second dose confirm */
.jconfirm .jconfirm-box.jconfirm-type-covid .jconfirm-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jconfirm .jconfirm-box.jconfirm-type-covid .jconfirm-content div {
  margin-bottom: 20px;
  text-align: center;
}

.jconfirm .jconfirm-box.jconfirm-type-covid .jconfirm-content .title {
  font-weight: bold;
  font-size: x-large;
  margin-top: 20px;
}

.jconfirm .jconfirm-box.jconfirm-type-covid .jconfirm-content .vaccine-date {
  color: var(--color-warning);
  font-weight: bold;
  font-size: large;
}

.jconfirm .jconfirm-box.jconfirm-type-covid .jconfirm-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.jconfirm
  .jconfirm-box.jconfirm-type-covid
  .jconfirm-buttons
  button.btn.btn-underline {
  margin-top: 20px;
  font-weight: normal;
  font-size: smaller;
  text-decoration: underline;
  text-transform: none;
}

/* General */
input,
select {
  background: transparent;
  border: none;
  border-bottom: 1px solid gray;
  height: 40px;
  width: 100%;
  max-width: 400px;
}

input.input_with_search {
  background-image: url(../lupa.png);
  background-position: right 5px bottom 8px;
  background-repeat: no-repeat;
}

/* Validation */
input.validated.invalid,
input.validated.required {
  border-bottom: 1px solid var(--color-warning);
}

textarea.validated.invalid {
  border: 1px solid var(--color-warning);
}

div.validation-message,
div.required-message {
  color: var(--color-warning);
  display: none;
}

/* COVID FAQ */
.covid.faq svg {
  width: 48px;
  height: 48px;
  stroke: #e62336;
}

.covid.faq a {
  color: #e62336;
  font-weight: bold;
}

.covid svg.small-icon {
  width: 36px;
  height: 36px;
}

/* Prevention */
#prevention-prefilter {
  display: flex;
  flex-wrap: wrap;
}

#prevention-prefilter .tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 225px;
  max-width: 225px;
  min-height: 300px;
  background-color: white;
  margin-right: 50px;
  margin-bottom: 50px;
  padding: 20px;
  border-radius: 5px;
}

#prevention-prefilter .tile .title {
  font-weight: bold;
  color: var(--color-black);
  margin: 5px;
}

#prevention-prefilter .tile hr {
  border-top: 1px solid var(--color-black);
  width: 90%;
}

#prevention-prefilter .tile .descr {
  text-align: center;
}

#prevention-prefilter .tile button {
  margin-top: auto;
  margin-bottom: 10px;
  min-width: 150px;
  max-width: 150px;
}

#prevention-calendar {
  position: absolute;
  top: 0px;
  left: 0px;
  min-width: 100%;
  height: 100%;
  background: white;
}

#prevention-calendar .calendar {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

#prevention-calendar .filter {
  margin: 0.5em 1em 0.5em 1em;
  max-width: 100vw;
  display: flex;
  flex-flow: column;
  align-items: center;
  min-height: 50px;
}

@media (min-width: 576px) {
  #prevention-calendar .filter {
    flex-flow: row;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 2em;
  }

  #prevention-calendar .filter .summary {
    margin-right: 2em;
  }
}

@media (min-width: 992px) {
  #prevention-calendar .filter {
    margin: 1em 2em 1em 2em;
  }
}

#prevention-calendar .filter .back {
  min-width: 115px;
  max-width: 115px;
}

#prevention-calendar .filter .back button {
  min-width: 100px;
}

#prevention-calendar .filter > div {
  min-height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#prevention-calendar .filter .icon {
  cursor: pointer;
}

#prevention-calendar .filter .icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-primary);
}

#prevention-calendar .filter .arrow.right {
  transform: rotate(180deg);
}

#prevention-calendar .filter .arrow.disabled {
  cursor: not-allowed;
}

#prevention-calendar .filter .arrow.disabled svg {
  fill: rgb(217, 217, 217);
}

#prevention-calendar .filter .title {
  margin-right: 0.5em;
}

#prevention-calendar .filter .date-div {
  align-self: center;
  padding-right: 1.5rem;
}

@media (min-width: 576px) {
  #prevention-calendar .filter .date-div {
    border-right: 2px solid #ececec;
  }
}

#prevention-calendar .filter .date {
  min-width: 175px;
  text-align: center;
}

#prevention-calendar .filter .time-div {
  align-self: center;
  padding-right: 1.5rem;
}

@media (min-width: 576px) {
  #prevention-calendar .filter .time-div {
    border-right: 2px solid #ececec;
    margin-right: 1.5rem;
  }
}

#prevention-calendar .filter .time-div select {
  color: var(--color-yellow);
  font-weight: bold;
  border-bottom: 0;
  min-width: 75px;
}

#prevention-calendar .filter .filter-edit {
  align-self: center;
  margin-right: 1.5rem;
}

#prevention-calendar .filter .filter-edit:hover {
  cursor: pointer;
}

#prevention-calendar .calendar-content {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

#prevention-calendar .calendar-content .day {
  display: flex;
  flex-flow: column;
  padding: 0.25em 1em 0.25em 1em;
  border-bottom: 10px solid white;
}

@media (min-width: 576px) {
  #prevention-calendar .calendar-content .day {
    flex-flow: row;
    align-items: stretch;
    min-height: 18vh;
  }
}

@media (min-width: 992px) {
  #prevention-calendar .calendar-content .day {
    padding: 0.5em 3em 0.5em 3em;
  }
}

#prevention-calendar .calendar-content .day .date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 100px;
}

#prevention-calendar .calendar-content .day .time-tile {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  padding: 10px;
  margin-right: 10px;
  width: 60px;
}

#prevention-calendar .calendar-content .day .time-tile .hours {
  font-size: 36px;
  font-weight: bold;
}

#prevention-calendar .calendar-content .day .time-tile .minutes {
  font-size: 24px;
}

#prevention-calendar .calendar-content .day .date .name {
  font-weight: bold;
}

#prevention-calendar .calendar-content .day .event-date {
  background-color: white;
  color: var(--color-black);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  #prevention-calendar .calendar-content .day .event-date {
    margin-bottom: 0px;
    min-width: 300px;
    max-width: 300px;
    margin-right: 20px;
  }
}

#prevention-calendar .calendar-content .day .event-date:hover {
  cursor: pointer;
  box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.5);
}

#prevention-calendar .calendar-content .day .event-date svg {
  width: 20px;
  height: 20px;
}

#prevention-calendar .calendar-content .day .event-date.picked {
  opacity: 0.5;
}

#prevention-calendar .calendar-content .day .event-date .top-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-grow: 1;
  padding-bottom: 10px;
}

#prevention-calendar .calendar-content .day .event-date .description {
  display: flex;
  flex-direction: column;
}

#prevention-calendar
  .calendar-content
  .day
  .event-date
  .description
  div:not(:last-child):not(:first-child) {
  padding-bottom: 5px;
}

#prevention-calendar .calendar-content .day .event-date .description .time {
  color: var(--color-yellow);
}

#prevention-calendar
  .calendar-content
  .day
  .event-date
  .description
  .time
  .hours {
  font-size: 24px;
  font-weight: bold;
}

#prevention-calendar .calendar-content .day .event-date .description .title {
  color: #595959;
  font-weight: bold;
}

#prevention-calendar
  .calendar-content
  .day
  .event-date
  .description
  .title
  .info {
  cursor: pointer;
  position: relative;
  top: -2px;
}

#prevention-calendar
  .calendar-content
  .day
  .event-date
  .description
  .title
  svg {
  stroke: var(--color-primary);
  margin-left: 10px;
}

#prevention-calendar .calendar-content .day .event-date .icon {
  min-width: 75px;
  max-width: 75px;
  max-height: 75px;
  display: flex;
  align-items: start;
}

#prevention-calendar .calendar-content .day .event-date .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#prevention-calendar .calendar-content .day .event-date .description .location {
  margin-top: auto;
}

#prevention-calendar .calendar-content .day .event-date .duration-capacity {
  display: flex;
  justify-content: space-between;
  color: #595959;
  width: 100%;
}

#prevention-calendar
  .calendar-content
  .day
  .event-date
  .duration-capacity
  .duration {
  font-weight: bold;
}

#prevention-calendar
  .calendar-content
  .day
  .event-date.picked
  .duration-capacity
  svg {
  fill: var(--color-primary);
}

#dialog-prevention-filter input,
#dialog-prevention-filter select {
  max-width: none;
}

#buttonFilterPrevention {
  max-width: 150px;
  align-self: center;
}

#filterPreventionEvent:required:invalid {
  color: #666;
}

#filterPreventionEvent option[value=""][disabled] {
  display: none;
}

.event-dates-div .event.active {
  margin: 10px;
}

.event-dates-div .event .event-date {
  padding: 10px 0;
  border-bottom: 1px solid black;
}

.event-dates-div .event .event-date .info {
  width: 100%;
}

.event-dates-div .event .event-date .first-line {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.event-dates-div .event .event-date .first-line > div {
  flex-grow: 1;
}

.event-dates-div .event .event-date .first-line .date-time {
  display: flex;
  align-items: center;
}

.event-dates-div .event .event-date .first-line .buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.event-dates-div .event .event-date .first-line .clickable {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.event-dates-div .event .event-date .attendees {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.event-dates-div .event .event-date .attendees .attendee {
  background-color: var(--color-primary);
  color: white;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  padding: 2px 10px;
  margin-right: 10px;
  margin-bottom: 5px;
  height: 30px;
  display: flex;
  align-items: center;
}

.event-dates-div .event .event-date .attendees .attendee svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.event-dates-div .event .full.info svg {
  width: 32px;
  height: 32px;
  fill: var(--color-warning);
}

#dialog-prevention-add-person {
  background: #f3f3f3;
}

#dialog-prevention-add-person .column {
  flex-grow: 1;
  margin-top: 16px;
  max-width: 50%;
}

#dialog-prevention-add-person .column .subtitle {
  color: #949597;
}

#dialog-prevention-add-person .column .title {
}

#preventionAttendeesSearch {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #949597;
  margin-top: 5px;
  margin-bottom: 15px;
  padding-left: 5px;
}

#dialog-prevention-add-person .data {
  max-height: 90%;
}

#preventionAttendeesList {
  max-height: 95%;
  overflow: auto;
}

#preventionCandidatesList .person {
  padding: 5px;
  display: flex;
  justify-content: space-between;
}

#dialog-prevention-add-person .person .name {
  font-weight: bold;
}

#dialog-prevention-add-person .person svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

#dialog-prevention-add-person .person .icon:hover {
  cursor: pointer;
}

#preventionAttendeesList .person {
  margin-top: 5px;
  padding: 5px;
  border: 1px solid #949597;
  border-radius: 5px;
  background-color: white;
  display: flex;
  flex-direction: column;
}

#preventionAttendeesList .name-trash {
  display: flex;
  justify-content: space-between;
}

#preventionAttendeesList label {
  margin-top: 10px;
}

#preventionAttendeesList input {
  margin-bottom: 5px;
}

/* Utilities */
.padding-r-20px {
  padding-right: 20px;
}

.padding-r-13px {
  padding-right: 13px;
}
