#viscon-tutorial {
  width: min(100%, 400px);
  min-height: 43px;
  height: 43px;
  max-height: 100vh;
  background: white;
  position: absolute;
  z-index: 11119;
  bottom: 0;
  left: 0;
  box-shadow: 0px 0px 5px 5px rgba(125, 125, 125, 0.5);
  display: flex;
  flex-direction: column;
  transition: height 0.3s ease;
}
#viscon-tutorial.open {
  height: fit-content;
}
@media (max-width: 822px) {
  #viscon-tutorial {
    width: 100vw;
  }
  #viscon-tutorial.open {
    height: 100vh;
  }
}
#viscon-tutorial .tut-header-container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px;
  background: white;
  z-index: 3;
}
#viscon-tutorial .tut-header-container h2 {
  display: inline;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}
#viscon-tutorial .tut-header-container h2:before {
  content: '\f0d8';
  font-family: FontAwesome;
  font-size: 17px;
  padding-right: 9px;
}
#viscon-tutorial .tut-header-container h2.open:before {
  content: '\f0d7';
}
#viscon-tutorial .tut-header-container .close {
  cursor: pointer;
}
#viscon-tutorial .tut-step-headline-container {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background: #5b86a3;
  z-index: 2;
}
#viscon-tutorial .tut-step-headline-container .tut-step-headline {
  font-size: 15px;
  align-self: center;
  text-transform: uppercase;
  color: white;
}
#viscon-tutorial .tut-body {
  flex: 1 1 0px;
  min-height: 0;
  overflow-y: auto;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}
#viscon-tutorial .tut-step-body {
  font-size: 15px;
  margin: 10px 10px 20px;
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 50px;
}
#viscon-tutorial .tut-step-body i.fas {
  font-size: 13px;
}
#viscon-tutorial .tut-step-body ol.numeric {
  counter-reset: my-counter;
  list-style-type: none;
  padding: 0;
  margin-top: 5px;
}
#viscon-tutorial .tut-step-body ol.numeric li {
  counter-increment: my-counter;
  margin-bottom: 5px;
  display: table;
}
#viscon-tutorial .tut-step-body ol.numeric li::before {
  content: counter(my-counter) '.';
  display: table-cell;
  text-align: right;
  padding-right: 5px;
}
#viscon-tutorial .tut-step-body ol.numeric li span {
  display: table-cell;
}
#viscon-tutorial .tut-step-body ol.latin {
  list-style-type: lower-latin;
  padding-left: 20px;
  margin-top: 5px;
}
#viscon-tutorial .tut-step-body img {
  margin: 10px auto;
  max-width: 70%;
  display: block;
  pointer-events: none;
  touch-action: none;
}
#viscon-tutorial .tut-step-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  position: sticky;
  bottom: 0;
  right: 0;
  width: 100%;
  background: white;
  z-index: 2;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
#viscon-tutorial .tut-step-pagination .prev {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  color: white;
  cursor: pointer;
  background: #5b86a3;
  padding: 10px;
  font-size: 16px;
  text-transform: uppercase;
}
#viscon-tutorial .tut-step-pagination .next {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  color: white;
  cursor: pointer;
  background: #5b86a3;
  padding: 10px;
  font-size: 16px;
  text-transform: uppercase;
}
#viscon-tutorial .tut-step-pagination .disabled {
  opacity: 0;
  pointer-events: none;
}
#viscon-tutorial.dragging {
  opacity: 0.85;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}
