@charset "UTF-8";
.tabs .indicator {
  max-width: 100%;
}

.user_popup_list li > span {
  display: inline-block;
  color: #000;
}

.user_popup_list li span.highlight {
  color: #26a69a;
}

/* copy from materialize css, exclude first rule, as this breaks firefox style */
.input-field > input[type=date]:not(.browser-default) + label,
.input-field > input[type=time]:not(.browser-default) + label {
  transform: translateY(-14px) scale(0.8);
  transform-origin: 0 0;
}

input:not([type]):not(.browser-default).validate + label, input[type=text]:not(.browser-default).validate + label, input[type=password]:not(.browser-default).validate + label, input[type=email]:not(.browser-default).validate + label, input[type=url]:not(.browser-default).validate + label, input[type=time]:not(.browser-default).validate + label, input[type=date]:not(.browser-default).validate + label, input[type=datetime]:not(.browser-default).validate + label, input[type=datetime-local]:not(.browser-default).validate + label, input[type=tel]:not(.browser-default).validate + label, input[type=number]:not(.browser-default).validate + label, input[type=search]:not(.browser-default).validate + label, textarea.materialize-textarea.validate + label {
  width: calc(100% - 18px);
}

.input-field .select-wrapper:not(.browser-default).invalid ~ .helper-text {
  color: #F44336;
}

table.striped > tbody > tr:nth-child(odd) {
  background-color: rgba(242, 242, 242, 0.5);
}

.hiddendiv {
  visibility: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* future version of deprecated 'word-wrap' */
  padding-top: 1.2rem;
  /* prevents text jump on Enter keypress */
  position: absolute;
  top: 0;
  z-index: -1;
}

.style-material input[type=color] + label {
  position: relative;
  display: inline-block;
  left: 0 !important;
  top: 0;
  transform: none !important;
  margin: 0 0 0 8px;
}

.sorted-table th.sortable-head {
  position: relative;
}
.sorted-table th.sortable-head:after, .sorted-table th[data-direction]:after {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  color: #9d9d9d;
  justify-content: center;
  align-items: center;
  font-family: "Material Icons", serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.4em;
  z-index: 1;
  content: "text_rotate_vertical";
}
.sorted-table th[data-direction] {
  position: relative;
  background-color: #eee;
}
.sorted-table th[data-direction]:after {
  background: #373737;
  color: #fff;
}
.sorted-table th[data-direction=asc]:after {
  content: "keyboard_arrow_up";
}
.sorted-table th[data-direction=desc]:after {
  content: "keyboard_arrow_down";
}

.button-helper-before {
  position: absolute;
  right: 8px;
  margin-top: 8px;
}
.button-helper-before button {
  border: 0;
  outline: 0;
  height: 26px;
  width: 26px;
  line-height: 26px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.0705882353);
  margin-right: 2px;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
}
.button-helper-before button:hover {
  background-color: rgba(0, 0, 0, 0.5803921569);
  color: #fff;
}

/* ------- SPINNER ---------------------- */
/*-- https://github.com/tobiasahlin/SpinKit ---*/
/*-- Spinner: MIT LICENSE https://github.com/tobiasahlin/SpinKit/blob/master/LICENSE ---*/
/*-- Modified --*/
.planespinner {
  width: 50px;
  height: 50px;
  background-color: #333;
  margin: 20px auto 10px;
  animation: sk-rotateplane-linear 1.4s infinite linear;
  background-image: url(../../img/logos/default/favicon_light.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-origin: content-box;
  padding: 3px;
}
@keyframes sk-rotateplane-linear {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(0) rotateY(179.9deg);
    -webkit-transform: perspective(120px) rotateX(0) rotateY(179.9deg);
  }
  100% {
    transform: perspective(120px) rotateX(0) rotateY(359.9deg);
    -webkit-transform: perspective(120px) rotateX(0) rotateY(359.9deg);
  }
}
@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
/*-- loader: MIT LICENSE https://github.com/vineethtrv/css-loader/blob/master/LICENSE ---*/
/*-- Modified --*/
.spinner-roller {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  margin: 15px auto;
  position: relative;
  color: #ff5555;
  left: -100px;
  box-sizing: border-box;
  animation: shadowRolling 2s linear infinite;
}

@keyframes shadowRolling {
  0% {
    box-shadow: 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  12% {
    box-shadow: 100px 0 #ff5555, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  25% {
    box-shadow: 110px 0 #ff5555, 100px 0 #ff5555, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  36% {
    box-shadow: 120px 0 #ff5555, 110px 0 #ff5555, 100px 0 #ff5555, 0px 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 130px 0 #ff5555, 120px 0 #ff5555, 110px 0 #ff5555, 100px 0 #ff5555;
  }
  62% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 130px 0 #ff5555, 120px 0 #ff5555, 110px 0 #ff5555;
  }
  75% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 #ff5555, 120px 0 #ff5555;
  }
  87% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 #ff5555;
  }
  100% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0);
  }
}
/* --------------------------- */
.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
  margin: 20px auto 10px;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.dark > .sk-chase-dot:before {
  background-color: #000;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  80%, 100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%, 0% {
    transform: scale(1);
  }
}
/*-- loader: MIT LICENSE https://github.com/vineethtrv/css-loader/blob/master/LICENSE ---*/
/*-- Modified --*/
.spinner-circle-rotate {
  border: 2px solid;
  border-color: transparent #FFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}
.spinner-circle-rotate::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 24px solid;
  border-color: transparent rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --------------------- */
/* Supports tabbing up to 12 nav buttons, default 3, */
/* set additional 'size4' for 4 tabs (and so on) to container 'radiotabbing' class */
/* hide tabs with additional class 'hidetabs' or 'notabs' */
/* --------------------- */
.radiotabbing {
  /* hide radio inputs */
  /* navigation bar not required ------------------- */
  /* navigation width */
  /* container ------------------- */
}
.radiotabbing div {
  box-sizing: border-box;
}
.radiotabbing .navradio {
  display: none;
}
.radiotabbing .nav {
  display: block;
}
.radiotabbing .nav > label {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  width: 33%;
  margin: 5px 0;
  padding: 17px 0 18px;
  border: 1px solid #ddd;
  border-right: none;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  font-family: "Noto Sans", "Noto Sans UI", sans-serif;
}
.radiotabbing.size2 .nav > label {
  width: 49.5%;
  width: calc(50% - 2px);
}
.radiotabbing.size3 .nav > label {
  width: 33.1%;
  width: calc(33.3333333333% - 2px);
}
.radiotabbing.size4 .nav > label {
  width: 24.5%;
  width: calc(25% - 2px);
}
.radiotabbing.size5 .nav > label {
  width: 19.5%;
  width: calc(20% - 2px);
}
.radiotabbing.size6 .nav > label {
  width: 16.1%;
  width: calc(16.6666666667% - 2px);
}
.radiotabbing.size7 .nav > label {
  width: 14.1%;
  width: calc(14.2857142857% - 2px);
}
.radiotabbing.size8 .nav > label {
  width: 12.4%;
  width: calc(12.5% - 2px);
}
.radiotabbing.size9 .nav > label {
  width: 11%;
  width: calc(11.1111111111% - 2px);
}
.radiotabbing.size10 .nav > label {
  width: 9.9%;
  width: calc(10% - 2px);
}
.radiotabbing.size11 .nav > label {
  width: 9%;
  width: calc(9.0909090909% - 2px);
}
.radiotabbing.size12 .nav > label {
  width: 8.1%;
  width: calc(8.3333333333% - 2px);
}
.radiotabbing .nav > label:last-child {
  border: 1px solid #ddd;
}
.radiotabbing .nav > label:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background-color: #009200;
  opacity: 0.4;
  transition: all 0.3s ease;
  left: 100%;
}
.radiotabbing.hidetabs .nav, .radiotabbing.notabs .nav {
  display: none;
}
.radiotabbing .radnav1:checked ~ .nav > label[for=radnav1]:before,
.radiotabbing .radnav2:checked ~ .nav > label[for=radnav2]:before,
.radiotabbing .radnav3:checked ~ .nav > label[for=radnav3]:before,
.radiotabbing .radnav4:checked ~ .nav > label[for=radnav4]:before,
.radiotabbing .radnav5:checked ~ .nav > label[for=radnav5]:before,
.radiotabbing .radnav6:checked ~ .nav > label[for=radnav6]:before,
.radiotabbing .radnav7:checked ~ .nav > label[for=radnav7]:before,
.radiotabbing .radnav8:checked ~ .nav > label[for=radnav8]:before,
.radiotabbing .radnav9:checked ~ .nav > label[for=radnav9]:before,
.radiotabbing .radnav10:checked ~ .nav > label[for=radnav10]:before,
.radiotabbing .radnav11:checked ~ .nav > label[for=radnav11]:before,
.radiotabbing .radnav12:checked ~ .nav > label[for=radnav12]:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background-color: #1e9fd2;
  opacity: 0.4;
  left: 0;
}
.radiotabbing .nav > label:hover:after,
.radiotabbing .nav > label:focus:after {
  left: 0;
  background-color: #009200 !important;
}
.radiotabbing .nav_container {
  display: none;
  box-sizing: border-box;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 5px 10px 10px;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
.radiotabbing .radnav1:checked ~ .nav_container.navcon1,
.radiotabbing .radnav2:checked ~ .nav_container.navcon2,
.radiotabbing .radnav3:checked ~ .nav_container.navcon3,
.radiotabbing .radnav4:checked ~ .nav_container.navcon4,
.radiotabbing .radnav5:checked ~ .nav_container.navcon5,
.radiotabbing .radnav6:checked ~ .nav_container.navcon6,
.radiotabbing .radnav7:checked ~ .nav_container.navcon7,
.radiotabbing .radnav8:checked ~ .nav_container.navcon8,
.radiotabbing .radnav9:checked ~ .nav_container.navcon9,
.radiotabbing .radnav10:checked ~ .nav_container.navcon10,
.radiotabbing .radnav11:checked ~ .nav_container.navcon11,
.radiotabbing .radnav12:checked ~ .nav_container.navcon12,
.radiotabbing .radnav1:checked ~ .radtabs_wrap > .nav_container.navcon1,
.radiotabbing .radnav2:checked ~ .radtabs_wrap > .nav_container.navcon2,
.radiotabbing .radnav3:checked ~ .radtabs_wrap > .nav_container.navcon3,
.radiotabbing .radnav4:checked ~ .radtabs_wrap > .nav_container.navcon4,
.radiotabbing .radnav5:checked ~ .radtabs_wrap > .nav_container.navcon5,
.radiotabbing .radnav6:checked ~ .radtabs_wrap > .nav_container.navcon6,
.radiotabbing .radnav7:checked ~ .radtabs_wrap > .nav_container.navcon7,
.radiotabbing .radnav8:checked ~ .radtabs_wrap > .nav_container.navcon8,
.radiotabbing .radnav9:checked ~ .radtabs_wrap > .nav_container.navcon9,
.radiotabbing .radnav10:checked ~ .radtabs_wrap > .nav_container.navcon10,
.radiotabbing .radnav11:checked ~ .radtabs_wrap > .nav_container.navcon11,
.radiotabbing .radnav12:checked ~ .radtabs_wrap > .nav_container.navcon12 {
  display: block;
  animation-name: anim_nav_container_radiotabbing;
}

@keyframes anim_nav_container_radiotabbing {
  0% {
    margin-left: -150px;
    opacity: 0.1;
  }
  33% {
    margin-left: -30px;
    opacity: 0.5;
  }
  100% {
    margin-left: 0;
    opacity: 1;
  }
}
.grid-button {
  /*margin-right: 20px;*/
  /*margin-bottom: 20px;*/
  width: 100%;
  /*max-width: 200px;*/
  height: 200px;
  position: relative;
  background-color: #232323;
  overflow: hidden;
  /* flex-basis: 200px; */
  /* flex-grow: 1; */
}
.grid-button a {
  padding: 1rem;
  display: block;
  height: 100%;
  width: 100%;
}
.grid-button .name {
  width: 100%;
  display: block;
  text-align: center;
  font-weight: bold;
  margin-top: 13px;
  white-space: break-spaces;
}
.grid-button .desc {
  position: absolute;
  top: 100%;
  left: 0;
  height: 50%;
  width: 100%;
  padding: 5px;
  background-color: rgba(139, 0, 0, 0.9);
  color: #fff;
  text-align: center;
  font-size: 14px;
  transition: top 0.4s ease-in-out;
}
.grid-button .desc > span {
  position: absolute;
  bottom: 5px;
  display: block;
}
.grid-button .icon {
  height: 50%;
  display: block;
  color: #fff;
  text-align: center;
  line-height: 100px;
  font-size: 3rem;
}
.grid-button:hover {
  background-color: #313131;
}
.grid-button:hover a,
.grid-button:hover .name {
  text-decoration: none;
  color: #fff;
}
.grid-button:hover .desc {
  top: 0;
  transition: top 0.4s ease-in-out 1.4s;
}
@media screen and (max-width: 575px) {
  .grid-button {
    max-width: 100%;
    margin: 5px 0;
    height: 58px;
  }
  .grid-button a {
    padding-left: 46px;
    padding-top: 0.5rem;
  }
  .grid-button .icon {
    position: absolute;
    line-height: 30px;
    font-size: 30px;
    left: 8px;
    top: 14px;
    height: auto;
  }
  .grid-button .name {
    text-align: left;
    margin-top: 0;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .grid-button .desc {
    top: unset !important;
    bottom: 2px;
    background-color: transparent;
    padding-left: 46px;
    color: #adadad;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8rem;
    text-align: left;
  }
  .grid-button .desc > span {
    display: unset;
    position: relative;
    bottom: 0;
  }
}

.grid-button-wrap {
  display: block;
  /*flex-wrap: wrap;*/
  /*justify-content: flex-end;*/
}
@media screen and (min-width: 576px) {
  .grid-button-wrap {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* firefox scroll bars */
* {
  scrollbar-width: thin;
  scrollbar-color: #000 #c2c2c2;
  scrollbar-color: #000 rgba(0, 0, 0, 0.2);
}

/* webkit scrollbars */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #575757;
}

::-webkit-scrollbar-track {
  background: #c2c2c2;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.style-tabbing {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.style-tabbing .tabbing-heads {
  flex-shrink: 0;
  flex-grow: 0;
}
.style-tabbing .tabbing-body {
  flex-shrink: 0;
  flex-grow: 1;
}
.style-tabbing > input[type=radio].tabbing-radio {
  display: none;
}
.style-tabbing .tabbing-heads .tabbing-label {
  padding: 5px 10px;
}
.style-tabbing .tabbing-heads.tabbing-fixed-width {
  display: flex;
}
.style-tabbing .tabbing-heads.tabbing-fixed-width label {
  width: inherit;
  flex-grow: 1;
  flex-shrink: 1;
}
.style-tabbing .tabbing-heads label {
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  height: 38px;
  line-height: 38px;
  background-color: #f2f7f7;
  border-bottom: 2px solid #e6e3f7;
  margin: 0;
}
.style-tabbing .tabbing-heads label:hover {
  background-color: #a8c6d9;
}
.style-tabbing .tabbing-radio:nth-child(1):checked ~ .tabbing-heads > label:nth-child(1),
.style-tabbing .tabbing-radio:nth-child(2):checked ~ .tabbing-heads > label:nth-child(2),
.style-tabbing .tabbing-radio:nth-child(3):checked ~ .tabbing-heads > label:nth-child(3),
.style-tabbing .tabbing-radio:nth-child(4):checked ~ .tabbing-heads > label:nth-child(4),
.style-tabbing .tabbing-radio:nth-child(5):checked ~ .tabbing-heads > label:nth-child(5),
.style-tabbing .tabbing-radio:nth-child(6):checked ~ .tabbing-heads > label:nth-child(6),
.style-tabbing .tabbing-radio:nth-child(7):checked ~ .tabbing-heads > label:nth-child(7),
.style-tabbing .tabbing-radio:nth-child(8):checked ~ .tabbing-heads > label:nth-child(8),
.style-tabbing .tabbing-radio:nth-child(9):checked ~ .tabbing-heads > label:nth-child(9),
.style-tabbing .tabbing-radio:nth-child(10):checked ~ .tabbing-heads > label:nth-child(10),
.style-tabbing .tabbing-radio:nth-child(11):checked ~ .tabbing-heads > label:nth-child(11),
.style-tabbing .tabbing-radio:nth-child(12):checked ~ .tabbing-heads > label:nth-child(12),
.style-tabbing .tabbing-radio:nth-child(13):checked ~ .tabbing-heads > label:nth-child(13),
.style-tabbing .tabbing-radio:nth-child(14):checked ~ .tabbing-heads > label:nth-child(14),
.style-tabbing .tabbing-radio:nth-child(15):checked ~ .tabbing-heads > label:nth-child(15),
.style-tabbing .tabbing-radio:nth-child(16):checked ~ .tabbing-heads > label:nth-child(16),
.style-tabbing .tabbing-radio:nth-child(17):checked ~ .tabbing-heads > label:nth-child(17),
.style-tabbing .tabbing-radio:nth-child(18):checked ~ .tabbing-heads > label:nth-child(18),
.style-tabbing .tabbing-radio:nth-child(19):checked ~ .tabbing-heads > label:nth-child(19),
.style-tabbing .tabbing-radio:nth-child(20):checked ~ .tabbing-heads > label:nth-child(20) {
  background-color: #cff9f4;
  border-bottom-color: #5f9ad9;
}
.style-tabbing .tabbing-body {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.style-tabbing .tabbing-body > div.tabbing-data {
  flex-shrink: 0;
  flex-grow: 0;
  max-height: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin-left: -100%;
  padding: 16px;
  transition: margin 0.2s linear, max-height 0s linear 0.2s;
}
.style-tabbing .tabbing-body > div.mode-current {
  background-color: aliceblue;
}
.style-tabbing .tabbing-radio:nth-child(1):checked ~ .tabbing-body > div.tabbing-data:nth-child(1),
.style-tabbing .tabbing-radio:nth-child(2):checked ~ .tabbing-body > div.tabbing-data:nth-child(2),
.style-tabbing .tabbing-radio:nth-child(3):checked ~ .tabbing-body > div.tabbing-data:nth-child(3),
.style-tabbing .tabbing-radio:nth-child(4):checked ~ .tabbing-body > div.tabbing-data:nth-child(4),
.style-tabbing .tabbing-radio:nth-child(5):checked ~ .tabbing-body > div.tabbing-data:nth-child(5),
.style-tabbing .tabbing-radio:nth-child(6):checked ~ .tabbing-body > div.tabbing-data:nth-child(6),
.style-tabbing .tabbing-radio:nth-child(7):checked ~ .tabbing-body > div.tabbing-data:nth-child(7),
.style-tabbing .tabbing-radio:nth-child(8):checked ~ .tabbing-body > div.tabbing-data:nth-child(8),
.style-tabbing .tabbing-radio:nth-child(9):checked ~ .tabbing-body > div.tabbing-data:nth-child(8),
.style-tabbing .tabbing-radio:nth-child(10):checked ~ .tabbing-body > div.tabbing-data:nth-child(10),
.style-tabbing .tabbing-radio:nth-child(11):checked ~ .tabbing-body > div.tabbing-data:nth-child(11),
.style-tabbing .tabbing-radio:nth-child(12):checked ~ .tabbing-body > div.tabbing-data:nth-child(12),
.style-tabbing .tabbing-radio:nth-child(13):checked ~ .tabbing-body > div.tabbing-data:nth-child(13),
.style-tabbing .tabbing-radio:nth-child(14):checked ~ .tabbing-body > div.tabbing-data:nth-child(14),
.style-tabbing .tabbing-radio:nth-child(15):checked ~ .tabbing-body > div.tabbing-data:nth-child(15),
.style-tabbing .tabbing-radio:nth-child(16):checked ~ .tabbing-body > div.tabbing-data:nth-child(16),
.style-tabbing .tabbing-radio:nth-child(17):checked ~ .tabbing-body > div.tabbing-data:nth-child(17),
.style-tabbing .tabbing-radio:nth-child(18):checked ~ .tabbing-body > div.tabbing-data:nth-child(18),
.style-tabbing .tabbing-radio:nth-child(19):checked ~ .tabbing-body > div.tabbing-data:nth-child(19),
.style-tabbing .tabbing-radio:nth-child(20):checked ~ .tabbing-body > div.tabbing-data:nth-child(20) {
  margin-left: 0;
  max-height: 5000px;
  overflow-y: auto;
  transition: margin 0.2s linear, width 0.2s linear;
}
.style-tabbing .tabbing-radio:nth-child(1):checked ~ .tabbing-body > div.tabbing-data:nth-child(1) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(2):checked ~ .tabbing-body > div.tabbing-data:nth-child(2) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(3):checked ~ .tabbing-body > div.tabbing-data:nth-child(3) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(4):checked ~ .tabbing-body > div.tabbing-data:nth-child(4) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(5):checked ~ .tabbing-body > div.tabbing-data:nth-child(5) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(6):checked ~ .tabbing-body > div.tabbing-data:nth-child(6) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(7):checked ~ .tabbing-body > div.tabbing-data:nth-child(7) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(8):checked ~ .tabbing-body > div.tabbing-data:nth-child(8) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(9):checked ~ .tabbing-body > div.tabbing-data:nth-child(8) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(10):checked ~ .tabbing-body > div.tabbing-data:nth-child(10) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(11):checked ~ .tabbing-body > div.tabbing-data:nth-child(11) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(12):checked ~ .tabbing-body > div.tabbing-data:nth-child(12) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(13):checked ~ .tabbing-body > div.tabbing-data:nth-child(13) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(14):checked ~ .tabbing-body > div.tabbing-data:nth-child(14) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(15):checked ~ .tabbing-body > div.tabbing-data:nth-child(15) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(16):checked ~ .tabbing-body > div.tabbing-data:nth-child(16) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(17):checked ~ .tabbing-body > div.tabbing-data:nth-child(17) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(18):checked ~ .tabbing-body > div.tabbing-data:nth-child(18) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(19):checked ~ .tabbing-body > div.tabbing-data:nth-child(19) ~ div.tabbing-data,
.style-tabbing .tabbing-radio:nth-child(20):checked ~ .tabbing-body > div.tabbing-data:nth-child(20) ~ div.tabbing-data {
  margin-left: 0;
}

.style-tabbing-deep {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.style-tabbing-deep input[type=radio].tabbing-radio {
  display: none;
}
.style-tabbing-deep .tabbing-body {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.style-tabbing-deep .tabbing-body > div.tabbing-data {
  flex-shrink: 0;
  flex-grow: 0;
  max-height: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  margin-left: -100%;
  transition: margin 0.2s linear, max-height 0s linear 0.2s, opacity 0.2s linear 0.2s;
}
.style-tabbing-deep .tabbing-body > div.mode-current {
  background-color: aliceblue;
}
.style-tabbing-deep .tabbing-radio:nth-child(1):checked ~ .tabbing-body div.tabbing-data:nth-child(1),
.style-tabbing-deep .tabbing-radio:nth-child(1):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(1),
.style-tabbing-deep .tabbing-radio:nth-child(2):checked ~ .tabbing-body div.tabbing-data:nth-child(2),
.style-tabbing-deep .tabbing-radio:nth-child(2):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(2),
.style-tabbing-deep .tabbing-radio:nth-child(3):checked ~ .tabbing-body div.tabbing-data:nth-child(3),
.style-tabbing-deep .tabbing-radio:nth-child(3):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(3),
.style-tabbing-deep .tabbing-radio:nth-child(4):checked ~ .tabbing-body div.tabbing-data:nth-child(4),
.style-tabbing-deep .tabbing-radio:nth-child(4):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(4),
.style-tabbing-deep .tabbing-radio:nth-child(5):checked ~ .tabbing-body div.tabbing-data:nth-child(5),
.style-tabbing-deep .tabbing-radio:nth-child(5):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(5),
.style-tabbing-deep .tabbing-radio:nth-child(6):checked ~ .tabbing-body div.tabbing-data:nth-child(6),
.style-tabbing-deep .tabbing-radio:nth-child(6):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(6),
.style-tabbing-deep .tabbing-radio:nth-child(7):checked ~ .tabbing-body div.tabbing-data:nth-child(7),
.style-tabbing-deep .tabbing-radio:nth-child(7):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(7),
.style-tabbing-deep .tabbing-radio:nth-child(8):checked ~ .tabbing-body div.tabbing-data:nth-child(8),
.style-tabbing-deep .tabbing-radio:nth-child(8):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(8),
.style-tabbing-deep .tabbing-radio:nth-child(9):checked ~ .tabbing-body div.tabbing-data:nth-child(8),
.style-tabbing-deep .tabbing-radio:nth-child(9):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(8),
.style-tabbing-deep .tabbing-radio:nth-child(10):checked ~ .tabbing-body div.tabbing-data:nth-child(10),
.style-tabbing-deep .tabbing-radio:nth-child(10):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(10),
.style-tabbing-deep .tabbing-radio:nth-child(11):checked ~ .tabbing-body div.tabbing-data:nth-child(11),
.style-tabbing-deep .tabbing-radio:nth-child(11):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(11),
.style-tabbing-deep .tabbing-radio:nth-child(12):checked ~ .tabbing-body div.tabbing-data:nth-child(12),
.style-tabbing-deep .tabbing-radio:nth-child(12):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(12),
.style-tabbing-deep .tabbing-radio:nth-child(13):checked ~ .tabbing-body div.tabbing-data:nth-child(13),
.style-tabbing-deep .tabbing-radio:nth-child(13):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(13),
.style-tabbing-deep .tabbing-radio:nth-child(14):checked ~ .tabbing-body div.tabbing-data:nth-child(14),
.style-tabbing-deep .tabbing-radio:nth-child(14):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(14),
.style-tabbing-deep .tabbing-radio:nth-child(15):checked ~ .tabbing-body div.tabbing-data:nth-child(15),
.style-tabbing-deep .tabbing-radio:nth-child(15):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(15),
.style-tabbing-deep .tabbing-radio:nth-child(16):checked ~ .tabbing-body div.tabbing-data:nth-child(16),
.style-tabbing-deep .tabbing-radio:nth-child(16):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(16),
.style-tabbing-deep .tabbing-radio:nth-child(17):checked ~ .tabbing-body div.tabbing-data:nth-child(17),
.style-tabbing-deep .tabbing-radio:nth-child(17):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(17),
.style-tabbing-deep .tabbing-radio:nth-child(18):checked ~ .tabbing-body div.tabbing-data:nth-child(18),
.style-tabbing-deep .tabbing-radio:nth-child(18):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(18),
.style-tabbing-deep .tabbing-radio:nth-child(19):checked ~ .tabbing-body div.tabbing-data:nth-child(19),
.style-tabbing-deep .tabbing-radio:nth-child(19):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(19),
.style-tabbing-deep .tabbing-radio:nth-child(20):checked ~ .tabbing-body div.tabbing-data:nth-child(20),
.style-tabbing-deep .tabbing-radio:nth-child(20):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(20) {
  margin-left: 0;
  opacity: 1;
  max-height: 5000px;
  overflow-y: auto;
  visibility: visible;
  transition: margin 0.2s linear, width 0.2s linear;
}
.style-tabbing-deep .tabbing-radio:nth-child(1):checked ~ .tabbing-body div.tabbing-data:nth-child(1) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(1):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(1) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(2):checked ~ .tabbing-body div.tabbing-data:nth-child(2) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(2):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(2) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(3):checked ~ .tabbing-body div.tabbing-data:nth-child(3) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(3):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(3) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(4):checked ~ .tabbing-body div.tabbing-data:nth-child(4) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(4):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(4) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(5):checked ~ .tabbing-body div.tabbing-data:nth-child(5) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(5):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(5) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(6):checked ~ .tabbing-body div.tabbing-data:nth-child(6) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(6):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(6) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(7):checked ~ .tabbing-body div.tabbing-data:nth-child(7) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(7):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(7) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(8):checked ~ .tabbing-body div.tabbing-data:nth-child(8) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(8):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(8) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(9):checked ~ .tabbing-body div.tabbing-data:nth-child(8) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(9):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(8) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(10):checked ~ .tabbing-body div.tabbing-data:nth-child(10) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(10):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(10) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(11):checked ~ .tabbing-body div.tabbing-data:nth-child(11) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(11):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(11) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(12):checked ~ .tabbing-body div.tabbing-data:nth-child(12) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(12):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(12) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(13):checked ~ .tabbing-body div.tabbing-data:nth-child(13) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(13):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(13) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(14):checked ~ .tabbing-body div.tabbing-data:nth-child(14) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(14):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(14) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(15):checked ~ .tabbing-body div.tabbing-data:nth-child(15) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(15):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(15) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(16):checked ~ .tabbing-body div.tabbing-data:nth-child(16) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(16):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(16) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(17):checked ~ .tabbing-body div.tabbing-data:nth-child(17) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(17):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(17) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(18):checked ~ .tabbing-body div.tabbing-data:nth-child(18) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(18):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(18) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(19):checked ~ .tabbing-body div.tabbing-data:nth-child(19) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(19):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(19) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(20):checked ~ .tabbing-body div.tabbing-data:nth-child(20) ~ div.tabbing-data,
.style-tabbing-deep .tabbing-radio:nth-child(20):checked ~ .tabbing-anchor .tabbing-body div.tabbing-data:nth-child(20) ~ div.tabbing-data {
  margin-left: 0;
}

.form-steps {
  display: flex;
  flex-direction: column;
  position: relative;
}
.form-steps .progress-line {
  display: flex;
  z-index: 1;
  flex-grow: 0;
  flex-shrink: 0;
}
.form-steps .progress-line > div {
  position: relative;
  min-height: 60px;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0 0 10px 0;
}
.form-steps .progress-line > div .background {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  transition: background 0.4s linear;
}
.form-steps .progress-line > div .bar .stroke {
  z-index: 2;
  background: #ddd;
  display: block;
  width: 100%;
  height: 20px;
  border-radius: 20px;
  left: 50%;
  top: 20px;
  position: absolute;
  overflow: hidden;
  padding: 6px;
}
.form-steps .progress-line > div .bar .stroke::before {
  z-index: 3;
  content: "";
  height: 100%;
  width: 0;
  background: #444;
  display: block;
  transition: width 0.4s linear;
}
.form-steps .progress-line > div .bar .center {
  z-index: 4;
  position: absolute;
  height: 40px;
  width: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 10px;
  border-radius: 100%;
  border: 3px solid #ddd;
  background: #ddd;
  transition: background 0.4s linear;
}
.form-steps .progress-line > div .short {
  position: absolute;
  z-index: 5;
  font-weight: bold;
  top: 10px;
  line-height: 41px;
  font-size: 1.4rem;
  width: 100%;
  left: 0;
  text-align: center;
  transition: color 0.4s linear;
}
.form-steps .progress-line > div .title {
  z-index: 5;
  position: relative;
  display: block;
  padding: 60px 10px 0;
  text-align: center;
  color: #ddd;
  transition: color 0.4s linear;
}
.form-steps .progress-line > div .desc {
  z-index: 6;
  position: absolute;
  left: 0;
  display: block;
  color: #444;
  overflow: hidden;
  top: 80px;
  font-size: 0.8rem;
  font-weight: bold;
  background: #ddd;
  transition: height 0.4s ease-in-out 1.4s, opacity 0.4s ease-in-out 1.4s, border 0.4s ease-in-out 1.4s, padding 0.4s ease-in-out 1.4s;
  height: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  border: 0 solid transparent;
}
.form-steps .progress-line > div label {
  z-index: 7;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  cursor: pointer;
  display: none;
}
.form-steps .progress-line > div:hover .desc {
  padding: 10px 5px;
  opacity: 1;
  border: 1px solid #444;
  visibility: visible;
  height: inherit;
}
.form-steps .progress-line > div:hover .background {
  background-color: #ccc !important;
}
.form-steps .progress-line > div:hover .title {
  color: #444;
}
.form-steps .progress-line > div:last-child .bar .stroke {
  display: none;
}
.form-steps .progress-line > div:nth-child(1) .desc {
  left: 50%;
}
.form-steps .progress-line > div:nth-child(2) .desc {
  left: -50%;
}
.form-steps .progress-line > div:nth-child(3) .desc {
  left: -150%;
}
.form-steps .progress-line > div:nth-child(4) .desc {
  left: -250%;
}
.form-steps .progress-line > div:nth-child(5) .desc {
  left: -350%;
}
.form-steps .progress-line > div:nth-child(6) .desc {
  left: -450%;
}
.form-steps .progress-line > div:nth-child(7) .desc {
  left: -550%;
}
.form-steps .progress-line > div:nth-child(8) .desc {
  left: -650%;
}
.form-steps .progress-line > div:nth-child(9) .desc {
  left: -750%;
}
.form-steps .progress-line > div:nth-child(10) .desc {
  left: -850%;
}
.form-steps .progress-line > div:nth-child(11) .desc {
  left: -950%;
}
.form-steps .progress-line > div:nth-child(12) .desc {
  left: -1050%;
}
.form-steps .progress-line > div:nth-child(13) .desc {
  left: -1150%;
}
.form-steps .progress-line > div:nth-child(14) .desc {
  left: -1250%;
}
.form-steps .progress-line > div:nth-child(15) .desc {
  left: -1350%;
}
.form-steps .progress-line > div:nth-child(16) .desc {
  left: -1450%;
}
.form-steps .progress-line > div:nth-child(17) .desc {
  left: -1550%;
}
.form-steps .progress-line > div:nth-child(18) .desc {
  left: -1650%;
}
.form-steps .progress-line > div:nth-child(19) .desc {
  left: -1750%;
}
.form-steps .progress-line > div:nth-child(20) .desc {
  left: -1850%;
}
.form-steps .steps-radio:nth-child(1) ~ .progress-line > div .desc {
  width: 90%;
}
.form-steps .steps-radio:nth-child(2) ~ .progress-line > div .desc {
  width: 100%;
}
.form-steps .steps-radio:nth-child(3) ~ .progress-line > div .desc {
  width: 200%;
}
.form-steps .steps-radio:nth-child(4) ~ .progress-line > div .desc {
  width: 300%;
}
.form-steps .steps-radio:nth-child(5) ~ .progress-line > div .desc {
  width: 400%;
}
.form-steps .steps-radio:nth-child(6) ~ .progress-line > div .desc {
  width: 500%;
}
.form-steps .steps-radio:nth-child(7) ~ .progress-line > div .desc {
  width: 600%;
}
.form-steps .steps-radio:nth-child(8) ~ .progress-line > div .desc {
  width: 700%;
}
.form-steps .steps-radio:nth-child(9) ~ .progress-line > div .desc {
  width: 800%;
}
.form-steps .steps-radio:nth-child(10) ~ .progress-line > div .desc {
  width: 900%;
}
.form-steps .steps-radio:nth-child(11) ~ .progress-line > div .desc {
  width: 1000%;
}
.form-steps .steps-radio:nth-child(12) ~ .progress-line > div .desc {
  width: 1100%;
}
.form-steps .steps-radio:nth-child(13) ~ .progress-line > div .desc {
  width: 1200%;
}
.form-steps .steps-radio:nth-child(14) ~ .progress-line > div .desc {
  width: 1300%;
}
.form-steps .steps-radio:nth-child(15) ~ .progress-line > div .desc {
  width: 1400%;
}
.form-steps .steps-radio:nth-child(16) ~ .progress-line > div .desc {
  width: 1500%;
}
.form-steps .steps-radio:nth-child(17) ~ .progress-line > div .desc {
  width: 1600%;
}
.form-steps .steps-radio:nth-child(18) ~ .progress-line > div .desc {
  width: 1700%;
}
.form-steps .steps-radio:nth-child(19) ~ .progress-line > div .desc {
  width: 1800%;
}
.form-steps .steps-radio:nth-child(20) ~ .progress-line > div .desc {
  width: 1900%;
}
.form-steps .steps-radio:nth-child(1) ~ .steps-radio:checked ~ .progress-line > div:nth-child(1) .background,
.form-steps .steps-radio:nth-child(2) ~ .steps-radio:checked ~ .progress-line > div:nth-child(2) .background,
.form-steps .steps-radio:nth-child(3) ~ .steps-radio:checked ~ .progress-line > div:nth-child(3) .background,
.form-steps .steps-radio:nth-child(4) ~ .steps-radio:checked ~ .progress-line > div:nth-child(4) .background,
.form-steps .steps-radio:nth-child(5) ~ .steps-radio:checked ~ .progress-line > div:nth-child(5) .background,
.form-steps .steps-radio:nth-child(6) ~ .steps-radio:checked ~ .progress-line > div:nth-child(6) .background,
.form-steps .steps-radio:nth-child(7) ~ .steps-radio:checked ~ .progress-line > div:nth-child(7) .background,
.form-steps .steps-radio:nth-child(8) ~ .steps-radio:checked ~ .progress-line > div:nth-child(8) .background,
.form-steps .steps-radio:nth-child(9) ~ .steps-radio:checked ~ .progress-line > div:nth-child(9) .background,
.form-steps .steps-radio:nth-child(10) ~ .steps-radio:checked ~ .progress-line > div:nth-child(10) .background,
.form-steps .steps-radio:nth-child(11) ~ .steps-radio:checked ~ .progress-line > div:nth-child(11) .background,
.form-steps .steps-radio:nth-child(12) ~ .steps-radio:checked ~ .progress-line > div:nth-child(12) .background,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(13) .background,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(14) .background,
.form-steps .steps-radio:nth-child(15) ~ .steps-radio:checked ~ .progress-line > div:nth-child(15) .background,
.form-steps .steps-radio:nth-child(16) ~ .steps-radio:checked ~ .progress-line > div:nth-child(16) .background,
.form-steps .steps-radio:nth-child(17) ~ .steps-radio:checked ~ .progress-line > div:nth-child(17) .background,
.form-steps .steps-radio:nth-child(18) ~ .steps-radio:checked ~ .progress-line > div:nth-child(18) .background,
.form-steps .steps-radio:nth-child(19) ~ .steps-radio:checked ~ .progress-line > div:nth-child(19) .background,
.form-steps .steps-radio:nth-child(20) ~ .steps-radio:checked ~ .progress-line > div:nth-child(20) .background {
  background-color: #eee;
}
.form-steps .steps-radio:nth-child(1) ~ .steps-radio:checked ~ .progress-line > div:nth-child(1) .bar .stroke:before,
.form-steps .steps-radio:nth-child(2) ~ .steps-radio:checked ~ .progress-line > div:nth-child(2) .bar .stroke:before,
.form-steps .steps-radio:nth-child(3) ~ .steps-radio:checked ~ .progress-line > div:nth-child(3) .bar .stroke:before,
.form-steps .steps-radio:nth-child(4) ~ .steps-radio:checked ~ .progress-line > div:nth-child(4) .bar .stroke:before,
.form-steps .steps-radio:nth-child(5) ~ .steps-radio:checked ~ .progress-line > div:nth-child(5) .bar .stroke:before,
.form-steps .steps-radio:nth-child(6) ~ .steps-radio:checked ~ .progress-line > div:nth-child(6) .bar .stroke:before,
.form-steps .steps-radio:nth-child(7) ~ .steps-radio:checked ~ .progress-line > div:nth-child(7) .bar .stroke:before,
.form-steps .steps-radio:nth-child(8) ~ .steps-radio:checked ~ .progress-line > div:nth-child(8) .bar .stroke:before,
.form-steps .steps-radio:nth-child(9) ~ .steps-radio:checked ~ .progress-line > div:nth-child(9) .bar .stroke:before,
.form-steps .steps-radio:nth-child(10) ~ .steps-radio:checked ~ .progress-line > div:nth-child(10) .bar .stroke:before,
.form-steps .steps-radio:nth-child(11) ~ .steps-radio:checked ~ .progress-line > div:nth-child(11) .bar .stroke:before,
.form-steps .steps-radio:nth-child(12) ~ .steps-radio:checked ~ .progress-line > div:nth-child(12) .bar .stroke:before,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(13) .bar .stroke:before,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(14) .bar .stroke:before,
.form-steps .steps-radio:nth-child(15) ~ .steps-radio:checked ~ .progress-line > div:nth-child(15) .bar .stroke:before,
.form-steps .steps-radio:nth-child(16) ~ .steps-radio:checked ~ .progress-line > div:nth-child(16) .bar .stroke:before,
.form-steps .steps-radio:nth-child(17) ~ .steps-radio:checked ~ .progress-line > div:nth-child(17) .bar .stroke:before,
.form-steps .steps-radio:nth-child(18) ~ .steps-radio:checked ~ .progress-line > div:nth-child(18) .bar .stroke:before,
.form-steps .steps-radio:nth-child(19) ~ .steps-radio:checked ~ .progress-line > div:nth-child(19) .bar .stroke:before,
.form-steps .steps-radio:nth-child(20) ~ .steps-radio:checked ~ .progress-line > div:nth-child(20) .bar .stroke:before {
  width: 100%;
}
.form-steps .steps-radio:nth-child(1) ~ .steps-radio:checked ~ .progress-line > div:nth-child(1) .bar .center,
.form-steps .steps-radio:nth-child(2) ~ .steps-radio:checked ~ .progress-line > div:nth-child(2) .bar .center,
.form-steps .steps-radio:nth-child(3) ~ .steps-radio:checked ~ .progress-line > div:nth-child(3) .bar .center,
.form-steps .steps-radio:nth-child(4) ~ .steps-radio:checked ~ .progress-line > div:nth-child(4) .bar .center,
.form-steps .steps-radio:nth-child(5) ~ .steps-radio:checked ~ .progress-line > div:nth-child(5) .bar .center,
.form-steps .steps-radio:nth-child(6) ~ .steps-radio:checked ~ .progress-line > div:nth-child(6) .bar .center,
.form-steps .steps-radio:nth-child(7) ~ .steps-radio:checked ~ .progress-line > div:nth-child(7) .bar .center,
.form-steps .steps-radio:nth-child(8) ~ .steps-radio:checked ~ .progress-line > div:nth-child(8) .bar .center,
.form-steps .steps-radio:nth-child(9) ~ .steps-radio:checked ~ .progress-line > div:nth-child(9) .bar .center,
.form-steps .steps-radio:nth-child(10) ~ .steps-radio:checked ~ .progress-line > div:nth-child(10) .bar .center,
.form-steps .steps-radio:nth-child(11) ~ .steps-radio:checked ~ .progress-line > div:nth-child(11) .bar .center,
.form-steps .steps-radio:nth-child(12) ~ .steps-radio:checked ~ .progress-line > div:nth-child(12) .bar .center,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(13) .bar .center,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(14) .bar .center,
.form-steps .steps-radio:nth-child(15) ~ .steps-radio:checked ~ .progress-line > div:nth-child(15) .bar .center,
.form-steps .steps-radio:nth-child(16) ~ .steps-radio:checked ~ .progress-line > div:nth-child(16) .bar .center,
.form-steps .steps-radio:nth-child(17) ~ .steps-radio:checked ~ .progress-line > div:nth-child(17) .bar .center,
.form-steps .steps-radio:nth-child(18) ~ .steps-radio:checked ~ .progress-line > div:nth-child(18) .bar .center,
.form-steps .steps-radio:nth-child(19) ~ .steps-radio:checked ~ .progress-line > div:nth-child(19) .bar .center,
.form-steps .steps-radio:nth-child(20) ~ .steps-radio:checked ~ .progress-line > div:nth-child(20) .bar .center {
  background: #444;
  border: 3px solid #444;
}
.form-steps .steps-radio:nth-child(1) ~ .steps-radio:checked ~ .progress-line > div:nth-child(1) .short,
.form-steps .steps-radio:nth-child(2) ~ .steps-radio:checked ~ .progress-line > div:nth-child(2) .short,
.form-steps .steps-radio:nth-child(3) ~ .steps-radio:checked ~ .progress-line > div:nth-child(3) .short,
.form-steps .steps-radio:nth-child(4) ~ .steps-radio:checked ~ .progress-line > div:nth-child(4) .short,
.form-steps .steps-radio:nth-child(5) ~ .steps-radio:checked ~ .progress-line > div:nth-child(5) .short,
.form-steps .steps-radio:nth-child(6) ~ .steps-radio:checked ~ .progress-line > div:nth-child(6) .short,
.form-steps .steps-radio:nth-child(7) ~ .steps-radio:checked ~ .progress-line > div:nth-child(7) .short,
.form-steps .steps-radio:nth-child(8) ~ .steps-radio:checked ~ .progress-line > div:nth-child(8) .short,
.form-steps .steps-radio:nth-child(9) ~ .steps-radio:checked ~ .progress-line > div:nth-child(9) .short,
.form-steps .steps-radio:nth-child(10) ~ .steps-radio:checked ~ .progress-line > div:nth-child(10) .short,
.form-steps .steps-radio:nth-child(11) ~ .steps-radio:checked ~ .progress-line > div:nth-child(11) .short,
.form-steps .steps-radio:nth-child(12) ~ .steps-radio:checked ~ .progress-line > div:nth-child(12) .short,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(13) .short,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(14) .short,
.form-steps .steps-radio:nth-child(15) ~ .steps-radio:checked ~ .progress-line > div:nth-child(15) .short,
.form-steps .steps-radio:nth-child(16) ~ .steps-radio:checked ~ .progress-line > div:nth-child(16) .short,
.form-steps .steps-radio:nth-child(17) ~ .steps-radio:checked ~ .progress-line > div:nth-child(17) .short,
.form-steps .steps-radio:nth-child(18) ~ .steps-radio:checked ~ .progress-line > div:nth-child(18) .short,
.form-steps .steps-radio:nth-child(19) ~ .steps-radio:checked ~ .progress-line > div:nth-child(19) .short,
.form-steps .steps-radio:nth-child(20) ~ .steps-radio:checked ~ .progress-line > div:nth-child(20) .short {
  color: #fff;
}
.form-steps .steps-radio:nth-child(1) ~ .steps-radio:checked ~ .progress-line > div:nth-child(1) .title,
.form-steps .steps-radio:nth-child(2) ~ .steps-radio:checked ~ .progress-line > div:nth-child(2) .title,
.form-steps .steps-radio:nth-child(3) ~ .steps-radio:checked ~ .progress-line > div:nth-child(3) .title,
.form-steps .steps-radio:nth-child(4) ~ .steps-radio:checked ~ .progress-line > div:nth-child(4) .title,
.form-steps .steps-radio:nth-child(5) ~ .steps-radio:checked ~ .progress-line > div:nth-child(5) .title,
.form-steps .steps-radio:nth-child(6) ~ .steps-radio:checked ~ .progress-line > div:nth-child(6) .title,
.form-steps .steps-radio:nth-child(7) ~ .steps-radio:checked ~ .progress-line > div:nth-child(7) .title,
.form-steps .steps-radio:nth-child(8) ~ .steps-radio:checked ~ .progress-line > div:nth-child(8) .title,
.form-steps .steps-radio:nth-child(9) ~ .steps-radio:checked ~ .progress-line > div:nth-child(9) .title,
.form-steps .steps-radio:nth-child(10) ~ .steps-radio:checked ~ .progress-line > div:nth-child(10) .title,
.form-steps .steps-radio:nth-child(11) ~ .steps-radio:checked ~ .progress-line > div:nth-child(11) .title,
.form-steps .steps-radio:nth-child(12) ~ .steps-radio:checked ~ .progress-line > div:nth-child(12) .title,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(13) .title,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(14) .title,
.form-steps .steps-radio:nth-child(15) ~ .steps-radio:checked ~ .progress-line > div:nth-child(15) .title,
.form-steps .steps-radio:nth-child(16) ~ .steps-radio:checked ~ .progress-line > div:nth-child(16) .title,
.form-steps .steps-radio:nth-child(17) ~ .steps-radio:checked ~ .progress-line > div:nth-child(17) .title,
.form-steps .steps-radio:nth-child(18) ~ .steps-radio:checked ~ .progress-line > div:nth-child(18) .title,
.form-steps .steps-radio:nth-child(19) ~ .steps-radio:checked ~ .progress-line > div:nth-child(19) .title,
.form-steps .steps-radio:nth-child(20) ~ .steps-radio:checked ~ .progress-line > div:nth-child(20) .title {
  color: #444;
}
.form-steps .steps-radio:nth-child(1) ~ .steps-radio:checked ~ .progress-line > div:nth-child(1) label,
.form-steps .steps-radio:nth-child(2) ~ .steps-radio:checked ~ .progress-line > div:nth-child(2) label,
.form-steps .steps-radio:nth-child(3) ~ .steps-radio:checked ~ .progress-line > div:nth-child(3) label,
.form-steps .steps-radio:nth-child(4) ~ .steps-radio:checked ~ .progress-line > div:nth-child(4) label,
.form-steps .steps-radio:nth-child(5) ~ .steps-radio:checked ~ .progress-line > div:nth-child(5) label,
.form-steps .steps-radio:nth-child(6) ~ .steps-radio:checked ~ .progress-line > div:nth-child(6) label,
.form-steps .steps-radio:nth-child(7) ~ .steps-radio:checked ~ .progress-line > div:nth-child(7) label,
.form-steps .steps-radio:nth-child(8) ~ .steps-radio:checked ~ .progress-line > div:nth-child(8) label,
.form-steps .steps-radio:nth-child(9) ~ .steps-radio:checked ~ .progress-line > div:nth-child(9) label,
.form-steps .steps-radio:nth-child(10) ~ .steps-radio:checked ~ .progress-line > div:nth-child(10) label,
.form-steps .steps-radio:nth-child(11) ~ .steps-radio:checked ~ .progress-line > div:nth-child(11) label,
.form-steps .steps-radio:nth-child(12) ~ .steps-radio:checked ~ .progress-line > div:nth-child(12) label,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(13) label,
.form-steps .steps-radio:nth-child(13) ~ .steps-radio:checked ~ .progress-line > div:nth-child(14) label,
.form-steps .steps-radio:nth-child(15) ~ .steps-radio:checked ~ .progress-line > div:nth-child(15) label,
.form-steps .steps-radio:nth-child(16) ~ .steps-radio:checked ~ .progress-line > div:nth-child(16) label,
.form-steps .steps-radio:nth-child(17) ~ .steps-radio:checked ~ .progress-line > div:nth-child(17) label,
.form-steps .steps-radio:nth-child(18) ~ .steps-radio:checked ~ .progress-line > div:nth-child(18) label,
.form-steps .steps-radio:nth-child(19) ~ .steps-radio:checked ~ .progress-line > div:nth-child(19) label,
.form-steps .steps-radio:nth-child(20) ~ .steps-radio:checked ~ .progress-line > div:nth-child(20) label {
  display: block;
}
.form-steps .steps-radio:nth-child(1):checked ~ .progress-line > div:nth-child(1) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(2):checked ~ .progress-line > div:nth-child(2) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(3):checked ~ .progress-line > div:nth-child(3) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(4):checked ~ .progress-line > div:nth-child(4) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(5):checked ~ .progress-line > div:nth-child(5) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(6):checked ~ .progress-line > div:nth-child(6) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(7):checked ~ .progress-line > div:nth-child(7) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(8):checked ~ .progress-line > div:nth-child(8) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(9):checked ~ .progress-line > div:nth-child(9) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(10):checked ~ .progress-line > div:nth-child(10) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(11):checked ~ .progress-line > div:nth-child(11) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(12):checked ~ .progress-line > div:nth-child(12) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(13):checked ~ .progress-line > div:nth-child(13) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(14):checked ~ .progress-line > div:nth-child(14) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(15):checked ~ .progress-line > div:nth-child(15) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(16):checked ~ .progress-line > div:nth-child(16) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(17):checked ~ .progress-line > div:nth-child(17) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(18):checked ~ .progress-line > div:nth-child(18) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(19):checked ~ .progress-line > div:nth-child(19) .bar .stroke ~ .center,
.form-steps .steps-radio:nth-child(20):checked ~ .progress-line > div:nth-child(20) .bar .stroke ~ .center {
  border: 3px solid #444;
  transition: background 0.4s linear, border 0.4s linear 0.4s;
}
.form-steps .steps-radio:nth-child(1):checked ~ .progress-line > div:nth-child(1) .title,
.form-steps .steps-radio:nth-child(2):checked ~ .progress-line > div:nth-child(2) .title,
.form-steps .steps-radio:nth-child(3):checked ~ .progress-line > div:nth-child(3) .title,
.form-steps .steps-radio:nth-child(4):checked ~ .progress-line > div:nth-child(4) .title,
.form-steps .steps-radio:nth-child(5):checked ~ .progress-line > div:nth-child(5) .title,
.form-steps .steps-radio:nth-child(6):checked ~ .progress-line > div:nth-child(6) .title,
.form-steps .steps-radio:nth-child(7):checked ~ .progress-line > div:nth-child(7) .title,
.form-steps .steps-radio:nth-child(8):checked ~ .progress-line > div:nth-child(8) .title,
.form-steps .steps-radio:nth-child(9):checked ~ .progress-line > div:nth-child(9) .title,
.form-steps .steps-radio:nth-child(10):checked ~ .progress-line > div:nth-child(10) .title,
.form-steps .steps-radio:nth-child(11):checked ~ .progress-line > div:nth-child(11) .title,
.form-steps .steps-radio:nth-child(12):checked ~ .progress-line > div:nth-child(12) .title,
.form-steps .steps-radio:nth-child(13):checked ~ .progress-line > div:nth-child(13) .title,
.form-steps .steps-radio:nth-child(14):checked ~ .progress-line > div:nth-child(14) .title,
.form-steps .steps-radio:nth-child(15):checked ~ .progress-line > div:nth-child(15) .title,
.form-steps .steps-radio:nth-child(16):checked ~ .progress-line > div:nth-child(16) .title,
.form-steps .steps-radio:nth-child(17):checked ~ .progress-line > div:nth-child(17) .title,
.form-steps .steps-radio:nth-child(18):checked ~ .progress-line > div:nth-child(18) .title,
.form-steps .steps-radio:nth-child(19):checked ~ .progress-line > div:nth-child(19) .title,
.form-steps .steps-radio:nth-child(20):checked ~ .progress-line > div:nth-child(20) .title {
  color: #444;
  transition: color 0.4s linear 0.4s;
}
.form-steps .steps-radio:nth-child(1):checked ~ .progress-line > div:nth-child(1) .background,
.form-steps .steps-radio:nth-child(2):checked ~ .progress-line > div:nth-child(2) .background,
.form-steps .steps-radio:nth-child(3):checked ~ .progress-line > div:nth-child(3) .background,
.form-steps .steps-radio:nth-child(4):checked ~ .progress-line > div:nth-child(4) .background,
.form-steps .steps-radio:nth-child(5):checked ~ .progress-line > div:nth-child(5) .background,
.form-steps .steps-radio:nth-child(6):checked ~ .progress-line > div:nth-child(6) .background,
.form-steps .steps-radio:nth-child(7):checked ~ .progress-line > div:nth-child(7) .background,
.form-steps .steps-radio:nth-child(8):checked ~ .progress-line > div:nth-child(8) .background,
.form-steps .steps-radio:nth-child(9):checked ~ .progress-line > div:nth-child(9) .background,
.form-steps .steps-radio:nth-child(10):checked ~ .progress-line > div:nth-child(10) .background,
.form-steps .steps-radio:nth-child(11):checked ~ .progress-line > div:nth-child(11) .background,
.form-steps .steps-radio:nth-child(12):checked ~ .progress-line > div:nth-child(12) .background,
.form-steps .steps-radio:nth-child(13):checked ~ .progress-line > div:nth-child(13) .background,
.form-steps .steps-radio:nth-child(14):checked ~ .progress-line > div:nth-child(14) .background,
.form-steps .steps-radio:nth-child(15):checked ~ .progress-line > div:nth-child(15) .background,
.form-steps .steps-radio:nth-child(16):checked ~ .progress-line > div:nth-child(16) .background,
.form-steps .steps-radio:nth-child(17):checked ~ .progress-line > div:nth-child(17) .background,
.form-steps .steps-radio:nth-child(18):checked ~ .progress-line > div:nth-child(18) .background,
.form-steps .steps-radio:nth-child(19):checked ~ .progress-line > div:nth-child(19) .background,
.form-steps .steps-radio:nth-child(20):checked ~ .progress-line > div:nth-child(20) .background {
  background-color: #ccc;
}
.form-steps .steps-body {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 100px;
}
.form-steps .steps-body .steps-data {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  position: absolute;
  top: 0;
  right: 100%;
  padding: 16px;
  transition: right 0.4s ease-in-out;
  background-color: aliceblue;
}
.form-steps .steps-radio:nth-child(1):checked ~ .steps-body > div.steps-data:nth-child(1),
.form-steps .steps-radio:nth-child(2):checked ~ .steps-body > div.steps-data:nth-child(2),
.form-steps .steps-radio:nth-child(3):checked ~ .steps-body > div.steps-data:nth-child(3),
.form-steps .steps-radio:nth-child(4):checked ~ .steps-body > div.steps-data:nth-child(4),
.form-steps .steps-radio:nth-child(5):checked ~ .steps-body > div.steps-data:nth-child(5),
.form-steps .steps-radio:nth-child(6):checked ~ .steps-body > div.steps-data:nth-child(6),
.form-steps .steps-radio:nth-child(7):checked ~ .steps-body > div.steps-data:nth-child(7),
.form-steps .steps-radio:nth-child(8):checked ~ .steps-body > div.steps-data:nth-child(8),
.form-steps .steps-radio:nth-child(9):checked ~ .steps-body > div.steps-data:nth-child(9),
.form-steps .steps-radio:nth-child(10):checked ~ .steps-body > div.steps-data:nth-child(10),
.form-steps .steps-radio:nth-child(11):checked ~ .steps-body > div.steps-data:nth-child(11),
.form-steps .steps-radio:nth-child(12):checked ~ .steps-body > div.steps-data:nth-child(12),
.form-steps .steps-radio:nth-child(13):checked ~ .steps-body > div.steps-data:nth-child(13),
.form-steps .steps-radio:nth-child(14):checked ~ .steps-body > div.steps-data:nth-child(14),
.form-steps .steps-radio:nth-child(15):checked ~ .steps-body > div.steps-data:nth-child(15),
.form-steps .steps-radio:nth-child(16):checked ~ .steps-body > div.steps-data:nth-child(16),
.form-steps .steps-radio:nth-child(17):checked ~ .steps-body > div.steps-data:nth-child(17),
.form-steps .steps-radio:nth-child(18):checked ~ .steps-body > div.steps-data:nth-child(18),
.form-steps .steps-radio:nth-child(19):checked ~ .steps-body > div.steps-data:nth-child(19),
.form-steps .steps-radio:nth-child(20):checked ~ .steps-body > div.steps-data:nth-child(20) {
  right: 0;
}
.form-steps .steps-radio:nth-child(1):checked ~ .steps-body > div.steps-data:nth-child(1) ~ div.steps-data,
.form-steps .steps-radio:nth-child(2):checked ~ .steps-body > div.steps-data:nth-child(2) ~ div.steps-data,
.form-steps .steps-radio:nth-child(3):checked ~ .steps-body > div.steps-data:nth-child(3) ~ div.steps-data,
.form-steps .steps-radio:nth-child(4):checked ~ .steps-body > div.steps-data:nth-child(4) ~ div.steps-data,
.form-steps .steps-radio:nth-child(5):checked ~ .steps-body > div.steps-data:nth-child(5) ~ div.steps-data,
.form-steps .steps-radio:nth-child(6):checked ~ .steps-body > div.steps-data:nth-child(6) ~ div.steps-data,
.form-steps .steps-radio:nth-child(7):checked ~ .steps-body > div.steps-data:nth-child(7) ~ div.steps-data,
.form-steps .steps-radio:nth-child(8):checked ~ .steps-body > div.steps-data:nth-child(8) ~ div.steps-data,
.form-steps .steps-radio:nth-child(9):checked ~ .steps-body > div.steps-data:nth-child(9) ~ div.steps-data,
.form-steps .steps-radio:nth-child(10):checked ~ .steps-body > div.steps-data:nth-child(10) ~ div.steps-data,
.form-steps .steps-radio:nth-child(11):checked ~ .steps-body > div.steps-data:nth-child(11) ~ div.steps-data,
.form-steps .steps-radio:nth-child(12):checked ~ .steps-body > div.steps-data:nth-child(12) ~ div.steps-data,
.form-steps .steps-radio:nth-child(13):checked ~ .steps-body > div.steps-data:nth-child(13) ~ div.steps-data,
.form-steps .steps-radio:nth-child(14):checked ~ .steps-body > div.steps-data:nth-child(14) ~ div.steps-data,
.form-steps .steps-radio:nth-child(15):checked ~ .steps-body > div.steps-data:nth-child(15) ~ div.steps-data,
.form-steps .steps-radio:nth-child(16):checked ~ .steps-body > div.steps-data:nth-child(16) ~ div.steps-data,
.form-steps .steps-radio:nth-child(17):checked ~ .steps-body > div.steps-data:nth-child(17) ~ div.steps-data,
.form-steps .steps-radio:nth-child(18):checked ~ .steps-body > div.steps-data:nth-child(18) ~ div.steps-data,
.form-steps .steps-radio:nth-child(19):checked ~ .steps-body > div.steps-data:nth-child(19) ~ div.steps-data,
.form-steps .steps-radio:nth-child(20):checked ~ .steps-body > div.steps-data:nth-child(20) ~ div.steps-data {
  right: -100%;
}

.wizard-steps {
  height: 10%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* step 1 ------------- */
  /* wizard - stick element -------------- */
}
.wizard-steps .progress-line {
  flex-grow: 0;
  flex-shrink: 0;
  height: auto;
}
.wizard-steps .steps-body {
  flex-grow: 1;
  flex-shrink: 0;
  height: 200px;
}
.wizard-steps .steps-data {
  background-color: transparent !important;
  display: flex;
  position: relative;
  flex-direction: column;
}
.wizard-steps .steps-radio:nth-child(1) ~ .progress-line > div:nth-child(1) .background,
.wizard-steps .steps-radio:nth-child(2) ~ .progress-line > div:nth-child(2) .background,
.wizard-steps .steps-radio:nth-child(3) ~ .progress-line > div:nth-child(3) .background,
.wizard-steps .steps-radio:nth-child(4) ~ .progress-line > div:nth-child(4) .background,
.wizard-steps .steps-radio:nth-child(5) ~ .progress-line > div:nth-child(5) .background,
.wizard-steps .steps-radio:nth-child(6) ~ .progress-line > div:nth-child(6) .background,
.wizard-steps .steps-radio:nth-child(7) ~ .progress-line > div:nth-child(7) .background,
.wizard-steps .steps-radio:nth-child(8) ~ .progress-line > div:nth-child(8) .background,
.wizard-steps .steps-radio:nth-child(9) ~ .progress-line > div:nth-child(9) .background {
  background-color: #fff !important;
}
.wizard-steps .steps-radio:nth-child(1) ~ .progress-line > div:nth-child(1) .title,
.wizard-steps .steps-radio:nth-child(2) ~ .progress-line > div:nth-child(2) .title,
.wizard-steps .steps-radio:nth-child(3) ~ .progress-line > div:nth-child(3) .title,
.wizard-steps .steps-radio:nth-child(4) ~ .progress-line > div:nth-child(4) .title,
.wizard-steps .steps-radio:nth-child(5) ~ .progress-line > div:nth-child(5) .title,
.wizard-steps .steps-radio:nth-child(6) ~ .progress-line > div:nth-child(6) .title,
.wizard-steps .steps-radio:nth-child(7) ~ .progress-line > div:nth-child(7) .title,
.wizard-steps .steps-radio:nth-child(8) ~ .progress-line > div:nth-child(8) .title,
.wizard-steps .steps-radio:nth-child(9) ~ .progress-line > div:nth-child(9) .title,
.wizard-steps .steps-radio:nth-child(1) ~ .progress-line > div:nth-child(1) .short,
.wizard-steps .steps-radio:nth-child(2) ~ .progress-line > div:nth-child(2) .short,
.wizard-steps .steps-radio:nth-child(3) ~ .progress-line > div:nth-child(3) .short,
.wizard-steps .steps-radio:nth-child(4) ~ .progress-line > div:nth-child(4) .short,
.wizard-steps .steps-radio:nth-child(5) ~ .progress-line > div:nth-child(5) .short,
.wizard-steps .steps-radio:nth-child(6) ~ .progress-line > div:nth-child(6) .short,
.wizard-steps .steps-radio:nth-child(7) ~ .progress-line > div:nth-child(7) .short,
.wizard-steps .steps-radio:nth-child(8) ~ .progress-line > div:nth-child(8) .short,
.wizard-steps .steps-radio:nth-child(9) ~ .progress-line > div:nth-child(9) .short {
  transition: all 0.4s ease-out;
}
.wizard-steps .steps-radio:nth-child(1):checked ~ .progress-line > div:nth-child(1) .short,
.wizard-steps .steps-radio:nth-child(2):checked ~ .progress-line > div:nth-child(2) .short,
.wizard-steps .steps-radio:nth-child(3):checked ~ .progress-line > div:nth-child(3) .short,
.wizard-steps .steps-radio:nth-child(4):checked ~ .progress-line > div:nth-child(4) .short,
.wizard-steps .steps-radio:nth-child(5):checked ~ .progress-line > div:nth-child(5) .short,
.wizard-steps .steps-radio:nth-child(6):checked ~ .progress-line > div:nth-child(6) .short,
.wizard-steps .steps-radio:nth-child(7):checked ~ .progress-line > div:nth-child(7) .short,
.wizard-steps .steps-radio:nth-child(8):checked ~ .progress-line > div:nth-child(8) .short,
.wizard-steps .steps-radio:nth-child(9):checked ~ .progress-line > div:nth-child(9) .short {
  display: flex;
  width: 92px;
  height: 92px;
  padding: 5px 0 0;
  border-radius: 50%;
  background-color: #ccc;
  justify-content: center;
  align-items: center;
  font-size: 66px;
  font-weight: bold;
  color: #fff;
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  top: 9px;
}
.wizard-steps .steps-radio:nth-child(1):checked ~ .progress-line > div:nth-child(1) .title,
.wizard-steps .steps-radio:nth-child(2):checked ~ .progress-line > div:nth-child(2) .title,
.wizard-steps .steps-radio:nth-child(3):checked ~ .progress-line > div:nth-child(3) .title,
.wizard-steps .steps-radio:nth-child(4):checked ~ .progress-line > div:nth-child(4) .title,
.wizard-steps .steps-radio:nth-child(5):checked ~ .progress-line > div:nth-child(5) .title,
.wizard-steps .steps-radio:nth-child(6):checked ~ .progress-line > div:nth-child(6) .title,
.wizard-steps .steps-radio:nth-child(7):checked ~ .progress-line > div:nth-child(7) .title,
.wizard-steps .steps-radio:nth-child(8):checked ~ .progress-line > div:nth-child(8) .title,
.wizard-steps .steps-radio:nth-child(9):checked ~ .progress-line > div:nth-child(9) .title {
  font-size: 1.15rem;
  line-height: 110%;
  margin: 8px 0 0 0;
  font-weight: bold;
  text-align: center;
  padding-top: 100px;
}
.wizard-steps .progress-line {
  min-height: 150px;
}
.wizard-steps .steps-body .body-step-marker {
  display: flex;
  width: 100px;
  height: 100px;
  padding: 5px 0 0;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  background-color: #ccc;
  justify-content: center;
  align-items: center;
  font-size: 66px;
  font-weight: bold;
  color: #fff;
}
.wizard-steps .steps-body .body-step-marker {
  display: flex;
  width: 100px;
  height: 100px;
  padding: 5px 0 0;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  background-color: #ccc;
  justify-content: center;
  align-items: center;
  font-size: 66px;
  font-weight: bold;
  color: #fff;
}
.wizard-steps .steps-body .body-step-headline {
  font-size: 1.15rem;
  line-height: 110%;
  margin: 1rem 0 0.7rem 0;
  font-weight: bold;
  text-align: center;
}
.wizard-steps .steps-body .body-step-message {
  text-align: center;
}
.wizard-steps .steps-body .steps-button-bar {
  order: 9999;
}
.wizard-steps .steps-body > div.steps-data:nth-child(1) {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(auto, 250px) minmax(auto, 250px);
  grid-template-rows: min-content auto min-content;
  gap: calc(var(--outer-padding, 10px) / 2);
}
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap,
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .body-step-message,
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .steps-button-bar {
  width: 100%;
  grid-column: 1/span 3;
}
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap:not(:last-child) {
  overflow: auto;
}
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap:last-child {
  order: 9998;
  width: 100%;
}
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .steps-button-bar {
  width: 0;
  margin-left: auto;
  overflow: hidden;
}
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .steps-button-bar:not(.hide) {
  display: block;
  width: 100%;
  justify-self: end;
}
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .steps-button-bar.hide ~ .body-content-wrap:last-child {
  /*max-width: calc(200% + var(--outer-padding) / 2);*/
  /*width: 500px;*/
  /*justify-self: end;*/
  /*margin-right: 0px;*/
  /*grid-column: 2 /span 2;*/
  width: 100%;
}
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap:last-child,
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .steps-button-bar {
  /*grid-column: 1 /span 1;*/
  /*grid-column: unset;*/
  margin: 0;
  transition: width 0.2s ease-out, max-width 0.2s ease-out, margin-right 0.2s ease-out;
  grid-row: 3;
  /*width: 245px;*/
  /*justify-self: end;*/
  /*width: calc((100% - 10px) / 2 );*/
  grid-column: 3/span 1;
}
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap:last-child {
  /*margin-right: 255px;*/
  width: 49%;
  grid-column: 2/span 2;
}
.wizard-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap:last-child > .btn {
  /*margin-left: calc((-100%) - 10px);*/
}
.simple-steps {
  height: 10%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* step 1 ------------- */
  /* wizard - stick element -------------- */
}
.simple-steps .progress-line {
  flex-grow: 0;
  flex-shrink: 0;
  height: auto;
}
.simple-steps .steps-body {
  flex-grow: 1;
  flex-shrink: 0;
  height: 200px;
}
.simple-steps .steps-data {
  background-color: transparent !important;
  display: flex;
  position: relative;
  flex-direction: column;
}
.simple-steps .steps-radio:nth-child(1) ~ .progress-line > div:nth-child(1) .background,
.simple-steps .steps-radio:nth-child(2) ~ .progress-line > div:nth-child(2) .background,
.simple-steps .steps-radio:nth-child(3) ~ .progress-line > div:nth-child(3) .background,
.simple-steps .steps-radio:nth-child(4) ~ .progress-line > div:nth-child(4) .background,
.simple-steps .steps-radio:nth-child(5) ~ .progress-line > div:nth-child(5) .background,
.simple-steps .steps-radio:nth-child(6) ~ .progress-line > div:nth-child(6) .background,
.simple-steps .steps-radio:nth-child(7) ~ .progress-line > div:nth-child(7) .background,
.simple-steps .steps-radio:nth-child(8) ~ .progress-line > div:nth-child(8) .background,
.simple-steps .steps-radio:nth-child(9) ~ .progress-line > div:nth-child(9) .background {
  background-color: #fff !important;
}
.simple-steps .steps-radio:nth-child(1) ~ .progress-line > div:nth-child(1) .title,
.simple-steps .steps-radio:nth-child(2) ~ .progress-line > div:nth-child(2) .title,
.simple-steps .steps-radio:nth-child(3) ~ .progress-line > div:nth-child(3) .title,
.simple-steps .steps-radio:nth-child(4) ~ .progress-line > div:nth-child(4) .title,
.simple-steps .steps-radio:nth-child(5) ~ .progress-line > div:nth-child(5) .title,
.simple-steps .steps-radio:nth-child(6) ~ .progress-line > div:nth-child(6) .title,
.simple-steps .steps-radio:nth-child(7) ~ .progress-line > div:nth-child(7) .title,
.simple-steps .steps-radio:nth-child(8) ~ .progress-line > div:nth-child(8) .title,
.simple-steps .steps-radio:nth-child(9) ~ .progress-line > div:nth-child(9) .title,
.simple-steps .steps-radio:nth-child(1) ~ .progress-line > div:nth-child(1) .short,
.simple-steps .steps-radio:nth-child(2) ~ .progress-line > div:nth-child(2) .short,
.simple-steps .steps-radio:nth-child(3) ~ .progress-line > div:nth-child(3) .short,
.simple-steps .steps-radio:nth-child(4) ~ .progress-line > div:nth-child(4) .short,
.simple-steps .steps-radio:nth-child(5) ~ .progress-line > div:nth-child(5) .short,
.simple-steps .steps-radio:nth-child(6) ~ .progress-line > div:nth-child(6) .short,
.simple-steps .steps-radio:nth-child(7) ~ .progress-line > div:nth-child(7) .short,
.simple-steps .steps-radio:nth-child(8) ~ .progress-line > div:nth-child(8) .short,
.simple-steps .steps-radio:nth-child(9) ~ .progress-line > div:nth-child(9) .short {
  transition: all 0.4s ease-out;
}
.simple-steps .steps-radio:nth-child(1):checked ~ .progress-line > div:nth-child(1) .short,
.simple-steps .steps-radio:nth-child(2):checked ~ .progress-line > div:nth-child(2) .short,
.simple-steps .steps-radio:nth-child(3):checked ~ .progress-line > div:nth-child(3) .short,
.simple-steps .steps-radio:nth-child(4):checked ~ .progress-line > div:nth-child(4) .short,
.simple-steps .steps-radio:nth-child(5):checked ~ .progress-line > div:nth-child(5) .short,
.simple-steps .steps-radio:nth-child(6):checked ~ .progress-line > div:nth-child(6) .short,
.simple-steps .steps-radio:nth-child(7):checked ~ .progress-line > div:nth-child(7) .short,
.simple-steps .steps-radio:nth-child(8):checked ~ .progress-line > div:nth-child(8) .short,
.simple-steps .steps-radio:nth-child(9):checked ~ .progress-line > div:nth-child(9) .short {
  display: flex;
  padding: 0 0 0;
  justify-content: center;
  align-items: center;
}
.simple-steps .steps-radio:nth-child(1):checked ~ .progress-line > div:nth-child(1) .title,
.simple-steps .steps-radio:nth-child(2):checked ~ .progress-line > div:nth-child(2) .title,
.simple-steps .steps-radio:nth-child(3):checked ~ .progress-line > div:nth-child(3) .title,
.simple-steps .steps-radio:nth-child(4):checked ~ .progress-line > div:nth-child(4) .title,
.simple-steps .steps-radio:nth-child(5):checked ~ .progress-line > div:nth-child(5) .title,
.simple-steps .steps-radio:nth-child(6):checked ~ .progress-line > div:nth-child(6) .title,
.simple-steps .steps-radio:nth-child(7):checked ~ .progress-line > div:nth-child(7) .title,
.simple-steps .steps-radio:nth-child(8):checked ~ .progress-line > div:nth-child(8) .title,
.simple-steps .steps-radio:nth-child(9):checked ~ .progress-line > div:nth-child(9) .title {
  font-size: 1.15rem;
  line-height: 110%;
  margin: 0;
  font-weight: bold;
  text-align: center;
}
.simple-steps .progress-line {
  min-height: 100px;
}
.simple-steps .progress-line > div .bar .stroke {
  padding: 0;
  height: 10px;
  top: 25px;
}
.simple-steps .steps-body .body-step-marker {
  display: flex;
  width: 100px;
  height: 100px;
  padding: 5px 0 0;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  background-color: #ccc;
  justify-content: center;
  align-items: center;
  font-size: 66px;
  font-weight: bold;
  color: #fff;
}
.simple-steps .steps-body .body-step-marker {
  display: flex;
  width: 100px;
  height: 100px;
  padding: 5px 0 0;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  background-color: #ccc;
  justify-content: center;
  align-items: center;
  font-size: 66px;
  font-weight: bold;
  color: #fff;
}
.simple-steps .steps-body .body-step-headline {
  font-size: 1.15rem;
  line-height: 110%;
  margin: 1rem 0 0.7rem 0;
  font-weight: bold;
  text-align: center;
}
.simple-steps .steps-body .body-step-message {
  text-align: center;
}
.simple-steps .steps-body .steps-button-bar {
  order: 9999;
}
.simple-steps .steps-body > div.steps-data:nth-child(1) {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(auto, 250px) minmax(auto, 250px);
  grid-template-rows: min-content auto min-content;
  gap: calc(var(--outer-padding, 10px) / 2);
}
.simple-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap,
.simple-steps .steps-body > div.steps-data:nth-child(1) > .body-step-message,
.simple-steps .steps-body > div.steps-data:nth-child(1) > .steps-button-bar {
  width: 100%;
  grid-column: 1/span 3;
}
.simple-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap:not(:last-child) {
  overflow: auto;
}
.simple-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap:last-child {
  order: 9998;
  width: 100%;
}
.simple-steps .steps-body > div.steps-data:nth-child(1) > .steps-button-bar {
  width: 0;
  margin-left: auto;
  overflow: hidden;
}
.simple-steps .steps-body > div.steps-data:nth-child(1) > .steps-button-bar:not(.hide) {
  display: block;
  width: 100%;
  justify-self: end;
}
.simple-steps .steps-body > div.steps-data:nth-child(1) > .steps-button-bar.hide ~ .body-content-wrap:last-child {
  /*max-width: calc(200% + var(--outer-padding) / 2);*/
  /*width: 500px;*/
  /*justify-self: end;*/
  /*margin-right: 0px;*/
  /*grid-column: 2 /span 2;*/
  width: 100%;
}
.simple-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap:last-child,
.simple-steps .steps-body > div.steps-data:nth-child(1) > .steps-button-bar {
  /*grid-column: 1 /span 1;*/
  /*grid-column: unset;*/
  margin: 0;
  transition: width 0.2s ease-out, max-width 0.2s ease-out, margin-right 0.2s ease-out;
  grid-row: 3;
  /*width: 245px;*/
  /*justify-self: end;*/
  /*width: calc((100% - 10px) / 2 );*/
  grid-column: 3/span 1;
}
.simple-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap:last-child {
  /*margin-right: 255px;*/
  width: 49%;
  grid-column: 2/span 2;
}
.simple-steps .steps-body > div.steps-data:nth-child(1) > .body-content-wrap:last-child > .btn {
  /*margin-left: calc((-100%) - 10px);*/
}
.input-field > label:not(.label-icon).always-active {
  transform: translateY(-14px) scale(0.8);
  transform-origin: 0 0;
}
.input-field > label.checkbox-label,
.input-field > label.radio-label {
  position: relative;
  margin-bottom: 10px;
  vertical-align: top;
  display: inline-block;
}
.input-field > label.checkbox-label.label-text-left,
.input-field > label.radio-label.label-text-left {
  display: flex;
}
.input-field > label.checkbox-label.label-text-left input[type=checkbox] + span,
.input-field > label.checkbox-label.label-text-left input[type=radio] + span,
.input-field > label.radio-label.label-text-left input[type=checkbox] + span,
.input-field > label.radio-label.label-text-left input[type=radio] + span {
  padding-left: 0;
  padding-right: 35px;
  display: block;
  flex-grow: 1;
}
.input-field > label.checkbox-label.label-text-left input[type=checkbox] + span:before,
.input-field > label.checkbox-label.label-text-left input[type=radio] + span:before,
.input-field > label.radio-label.label-text-left input[type=checkbox] + span:before,
.input-field > label.radio-label.label-text-left input[type=radio] + span:before {
  left: inherit;
  right: 11px;
}
.input-field > label.checkbox-label.label-text-left input:not(.filled-in)[type=checkbox]:checked + span:before,
.input-field > label.checkbox-label.label-text-left input[type=radio]:checked + span:before,
.input-field > label.radio-label.label-text-left input:not(.filled-in)[type=checkbox]:checked + span:before,
.input-field > label.radio-label.label-text-left input[type=radio]:checked + span:before {
  left: inherit;
  right: 21px;
}
.input-field > label.checkbox-label.label-text-left input.filled-in[type=checkbox] + span:before,
.input-field > label.radio-label.label-text-left input.filled-in[type=checkbox] + span:before {
  right: 21px;
  top: 2px;
}
.input-field > label.checkbox-label.label-text-left input.filled-in[type=checkbox] + span:after,
.input-field > label.radio-label.label-text-left input.filled-in[type=checkbox] + span:after {
  top: 2px;
}
.input-field > label.checkbox-label.label-text-left input[type=checkbox] + span:after,
.input-field > label.checkbox-label.label-text-left input[type=radio] + span:after,
.input-field > label.radio-label.label-text-left input[type=checkbox] + span:after,
.input-field > label.radio-label.label-text-left input[type=radio] + span:after {
  left: inherit;
  right: 10px;
}
.input-field .switch > span.switch-text {
  display: inline-block;
  padding-left: 10px;
}
.input-field > input:focus + label:not(.label-icon), .input-field > input + .tagged-frame + label:not(.label-icon) {
  transform: translateY(-14px) scale(0.8);
  transform-origin: 0 0;
}
.input-field > input:not([type]):not(.browser-default):disabled + label,
.input-field > input:not([type]):not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=text]:not(.browser-default):disabled + label,
.input-field > input[type=text]:not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=password]:not(.browser-default):disabled + label,
.input-field > input[type=password]:not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=email]:not(.browser-default):disabled + label,
.input-field > input[type=email]:not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=url]:not(.browser-default):disabled + label,
.input-field > input[type=url]:not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=time]:not(.browser-default):disabled + label,
.input-field > input[type=time]:not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=date]:not(.browser-default):disabled + label,
.input-field > input[type=date]:not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=datetime]:not(.browser-default):disabled + label,
.input-field > input[type=datetime]:not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=datetime-local]:not(.browser-default):disabled + label,
.input-field > input[type=datetime-local]:not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=tel]:not(.browser-default):disabled + label,
.input-field > input[type=tel]:not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=number]:not(.browser-default):disabled + label,
.input-field > input[type=number]:not(.browser-default)[readonly=readonly] + label,
.input-field > input[type=search]:not(.browser-default):disabled + label,
.input-field > input[type=search]:not(.browser-default)[readonly=readonly] + label,
.input-field > textarea.materialize-textarea:disabled + label,
.input-field > textarea.materialize-textarea[readonly=readonly] + label {
  display: block;
  width: calc(100% - 0.75rem);
}
.input-field .js-error {
  display: block;
}
.input-field input:not([type]):not(.browser-default).invalid ~ .helper-text,
.input-field input:not([type]):not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=text]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=text]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=password]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=password]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=email]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=email]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=url]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=url]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=time]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=time]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=date]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=date]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=datetime]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=datetime]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=datetime-local]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=datetime-local]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=tel]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=tel]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=number]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=number]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field input[type=search]:not(.browser-default).invalid ~ .helper-text,
.input-field input[type=search]:not(.browser-default):focus.invalid ~ .helper-text,
.input-field textarea.materialize-textarea.invalid ~ .helper-text,
.input-field textarea.materialize-textarea:focus.invalid ~ .helper-text,
.input-field .select-wrapper.invalid ~ .helper-text:after {
  color: #F44336;
}
.input-field .helper-text ~ .helper-text {
  min-height: unset;
}
.input-field .character-counter {
  margin-top: -24px;
}
.input-field textarea ~ .character-counter {
  margin-top: -29px;
}

.switch.label-text-left,
.input-field > .switch.label-text-left,
.switch.material-switch.label-text-left {
  display: flex;
  align-items: baseline;
}
.switch.label-text-left > label,
.input-field > .switch.label-text-left > label,
.switch.material-switch.label-text-left > label {
  order: 1;
  flex-shrink: 0;
}
.switch.label-text-left span.switch-text,
.input-field > .switch.label-text-left span.switch-text,
.switch.material-switch.label-text-left span.switch-text {
  padding-left: inherit;
  padding-right: 10px;
  flex-grow: 1;
  order: 0;
}

.switch.no-style-material, .switch.no-style-material *,
.switch,
.switch * {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.switch.no-style-material, .switch.no-style-material *, .switch.no-style-material *:before, .switch.no-style-material *:after,
.switch,
.switch *,
.switch *:before,
.switch *:after {
  box-sizing: inherit;
}
.switch.no-style-material label,
.switch label {
  cursor: pointer;
  font-size: 0.8rem;
  color: #9e9e9e;
}
.switch.no-style-material label input[type=checkbox],
.switch label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
  padding: 0;
}
.switch.no-style-material label input[type=checkbox]:checked:not([disabled]),
.switch label input[type=checkbox]:checked:not([disabled]) {
  background-color: #84c7c1;
}
.switch.no-style-material label input[type=checkbox]:checked + .lever:before, .switch.no-style-material label input[type=checkbox]:checked + .lever:after,
.switch label input[type=checkbox]:checked + .lever:before,
.switch label input[type=checkbox]:checked + .lever:after {
  left: 21px;
}
.switch.no-style-material label input[type=checkbox]:checked + .lever:after,
.switch label input[type=checkbox]:checked + .lever:after {
  background-color: #26a69a;
  border-width: 0;
}
.switch.no-style-material label .lever,
.switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 42px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.38);
  /* border-radius: 15px; */
  margin-right: 10px;
  transition: background 0.3s ease;
  vertical-align: middle;
  margin: 0 16px;
  border-radius: 0;
}
.switch.no-style-material label .lever:before, .switch.no-style-material label .lever:after,
.switch label .lever:before,
.switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  left: 1px;
  top: -3px;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease;
  border-radius: 0;
}
.switch.no-style-material label .lever:before,
.switch label .lever:before {
  background-color: rgba(38, 166, 154, 0.15);
  border-radius: 50%;
}
.switch.no-style-material label .lever:after,
.switch label .lever:after {
  background-color: #f1f1f1;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  border-color: #191818;
  border-style: solid;
}
.switch.no-style-material label .lever ~ .switch-text,
.switch label .lever ~ .switch-text {
  color: black;
}
.switch.no-style-material label input[type=checkbox]:checked:not(:disabled) ~ .lever:active::before, .switch.no-style-material label input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::before,
.switch label input[type=checkbox]:checked:not(:disabled) ~ .lever:active::before,
.switch label input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::before {
  transform: scale(2.4);
  background-color: rgba(38, 166, 154, 0.15);
}
.switch.no-style-material label input[type=checkbox]:not(:disabled) ~ .lever:active:before, .switch.no-style-material label input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before,
.switch label input[type=checkbox]:not(:disabled) ~ .lever:active:before,
.switch label input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before {
  transform: scale(2.4);
  background-color: rgba(0, 0, 0, 0.08);
}
.switch.no-style-material label input[type=checkbox][disabled] + .lever,
.switch label input[type=checkbox][disabled] + .lever {
  cursor: default;
  background-color: rgba(0, 0, 0, 0.12);
}
.switch.no-style-material label input[type=checkbox][disabled]:not(:checked) + .lever:after,
.switch label input[type=checkbox][disabled]:not(:checked) + .lever:after {
  background-color: #949494;
}
.switch.no-style-material label input[type=checkbox][disabled]:checked + .lever:after,
.switch label input[type=checkbox][disabled]:checked + .lever:after {
  filter: brightness(1.2) saturate(0.3);
}
.switch.no-style-material label input[type=checkbox][disabled] + .lever:after, .switch.no-style-material label input[type=checkbox][disabled]:checked + .lever:after,
.switch label input[type=checkbox][disabled] + .lever:after,
.switch label input[type=checkbox][disabled]:checked + .lever:after {
  /*background-color: #949494;*/
}
.switch.no-style-material .switch-text,
.switch .switch-text {
  padding-left: 10px;
}

.form-group-element,
.radio-group-element {
  padding: 10px;
}
.form-group-element > .group-headline,
.radio-group-element > .group-headline {
  padding: 0 0 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

.radio-group-element {
  padding: 0;
}

.select-dropdown.dropdown-content li.hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.user_popup_list.dropdown-content li.hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.form-element {
  /* default form styles and overwrites */
}

.ui-form .row {
  margin-bottom: 0;
}
.ui-form .row > .input-field {
  margin: 0;
}

.user_popup_list li {
  padding-right: 56px;
  position: relative;
  /* sex */
}
.user_popup_list li > span:last-child {
  position: absolute;
  right: 0;
  display: block;
  top: 0;
}
.user_popup_list li > span:nth-child(2) {
  padding: 0;
  position: absolute;
  left: 16px;
  bottom: 1px;
  font-size: 0.8em;
  color: #666;
}
.user_popup_list li > span:nth-child(3) {
  padding: 0;
  position: absolute;
  color: #ccc;
  right: 3px;
  bottom: 13px;
  font-weight: bold;
  font-size: 34px;
}

.required:after {
  content: "*";
}

.input-field.required:after {
  content: "*";
  position: absolute;
  top: -11px;
  color: red;
  font-weight: bold;
  right: 11px;
}

.checkbox-label-wrap.icon-toggle > input[type=checkbox] {
  opacity: 0;
}
.checkbox-label-wrap.icon-toggle > input[type=checkbox] + span {
  padding-left: 2px;
}
.checkbox-label-wrap.icon-toggle > input[type=checkbox]:checked + span {
  color: #000;
}
.checkbox-label-wrap.icon-toggle > input[type=checkbox] + span:before {
  border: 0 !important;
  height: 0;
  width: 0;
}

.icon-toggle-before {
  opacity: 0;
}
.icon-toggle-before:checked + label {
  color: #000;
}
.icon-toggle-before + label > span:not(.lever) {
  position: relative;
  padding-left: 2px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.icon-toggle-before + label > span:not(.lever):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border-radius: 1px;
  margin-top: 3px;
  transition: 0.2s;
}
.icon-toggle-before:hover + label > span:not(.lever):after, .icon-toggle-before:focus + label > span:not(.lever):after, .icon-toggle-before:active + label > span:not(.lever):after {
  transform: scale(1);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}

.view-modify-toggle .icon-toggle-before + label.checkbox-label-before, .view-modify-toggle .icon-toggle-before:focus + label.checkbox-label-before, .view-modify-toggle .icon-toggle-before:active + label.checkbox-label-before, .view-modify-toggle .icon-toggle-before:hover + label.checkbox-label-before {
  position: absolute;
  right: 24px;
}
.view-modify-toggle .icon-toggle-before + label.checkbox-label-before > span, .view-modify-toggle .icon-toggle-before:focus + label.checkbox-label-before > span, .view-modify-toggle .icon-toggle-before:active + label.checkbox-label-before > span, .view-modify-toggle .icon-toggle-before:hover + label.checkbox-label-before > span {
  padding-left: 6px;
}
.view-modify-toggle .icon-toggle-before + label.checkbox-label-before > span:after, .view-modify-toggle .icon-toggle-before:focus + label.checkbox-label-before > span:after, .view-modify-toggle .icon-toggle-before:active + label.checkbox-label-before > span:after, .view-modify-toggle .icon-toggle-before:hover + label.checkbox-label-before > span:after {
  border-radius: 0;
  width: 26px;
}
.view-modify-toggle .icon-toggle-before:checked + label + .view_card {
  display: none;
}
.view-modify-toggle .icon-toggle-before:not(:checked) + label + .view_card + .modify_card {
  display: none;
}

.form-hidden-errors.has-error {
  padding: 8px;
  border: 1px solid #F44336;
  margin-bottom: 10px;
}
.form-hidden-errors .error-line {
  color: #F44336;
}

.basic-form-col {
  position: relative;
}

.basic-form-col-flex {
  display: flex;
  flex-direction: column;
}

.style-form-none-before {
  font-size: 11px;
}
.style-form-none-before form h1, .style-form-none-before form h2, .style-form-none-before form h3, .style-form-none-before form h4, .style-form-none-before form h5, .style-form-none-before form h6, .style-form-none-before .form h1, .style-form-none-before .form h2, .style-form-none-before .form h3, .style-form-none-before .form h4, .style-form-none-before .form h5, .style-form-none-before .form h6, .style-form-none-beforeform h1, .style-form-none-beforeform h2, .style-form-none-beforeform h3, .style-form-none-beforeform h4, .style-form-none-beforeform h5, .style-form-none-beforeform h6, .style-form-none-before.form h1, .style-form-none-before.form h2, .style-form-none-before.form h3, .style-form-none-before.form h4, .style-form-none-before.form h5, .style-form-none-before.form h6, .style-form-none-before h1, .style-form-none-before h2, .style-form-none-before h3, .style-form-none-before h4, .style-form-none-before h5, .style-form-none-before h6 {
  color: #262626;
}
.style-form-none-before form hr, .style-form-none-before .form hr, .style-form-none-beforeform hr, .style-form-none-before.form hr, .style-form-none-before hr {
  border-top: 1px solid #2f2f2f;
}
.style-form-none-before form input, .style-form-none-before form select, .style-form-none-before .form input, .style-form-none-before .form select, .style-form-none-beforeform input, .style-form-none-beforeform select, .style-form-none-before.form input, .style-form-none-before.form select, .style-form-none-before input, .style-form-none-before select {
  color: #000000;
  border: 1px solid #000000;
  background-color: #fefefe;
}
.style-form-none-before form input:disabled, .style-form-none-before form select:disabled, .style-form-none-before .form input:disabled, .style-form-none-before .form select:disabled, .style-form-none-beforeform input:disabled, .style-form-none-beforeform select:disabled, .style-form-none-before.form input:disabled, .style-form-none-before.form select:disabled, .style-form-none-before input:disabled, .style-form-none-before select:disabled {
  background-color: rgba(0, 0, 0, 0.13);
}
.style-form-none-before form input + label, .style-form-none-before form select + label, .style-form-none-before .form input + label, .style-form-none-before .form select + label, .style-form-none-beforeform input + label, .style-form-none-beforeform select + label, .style-form-none-before.form input + label, .style-form-none-before.form select + label, .style-form-none-before input + label, .style-form-none-before select + label {
  color: #383838;
}
.style-form-none-before form input.has_error, .style-form-none-before form input.invalid, .style-form-none-before form select.has_error, .style-form-none-before form select.invalid, .style-form-none-before .form input.has_error, .style-form-none-before .form input.invalid, .style-form-none-before .form select.has_error, .style-form-none-before .form select.invalid, .style-form-none-beforeform input.has_error, .style-form-none-beforeform input.invalid, .style-form-none-beforeform select.has_error, .style-form-none-beforeform select.invalid, .style-form-none-before.form input.has_error, .style-form-none-before.form input.invalid, .style-form-none-before.form select.has_error, .style-form-none-before.form select.invalid, .style-form-none-before input.has_error, .style-form-none-before input.invalid, .style-form-none-before select.has_error, .style-form-none-before select.invalid {
  border-bottom: 2px solid orangered;
}
.style-form-none-before form input:focus, .style-form-none-before form inputfocus-within, .style-form-none-before form select:focus, .style-form-none-before form selectfocus-within, .style-form-none-before .form input:focus, .style-form-none-before .form inputfocus-within, .style-form-none-before .form select:focus, .style-form-none-before .form selectfocus-within, .style-form-none-beforeform input:focus, .style-form-none-beforeform inputfocus-within, .style-form-none-beforeform select:focus, .style-form-none-beforeform selectfocus-within, .style-form-none-before.form input:focus, .style-form-none-before.form inputfocus-within, .style-form-none-before.form select:focus, .style-form-none-before.form selectfocus-within, .style-form-none-before input:focus, .style-form-none-before inputfocus-within, .style-form-none-before select:focus, .style-form-none-before selectfocus-within {
  border-radius: 0;
  outline: 2px solid #49a9d7;
}
.style-form-none-before form .has-error.basic-form-col > input, .style-form-none-before form .has-error.basic-form-col > select, .style-form-none-before form .has-error.basic-form-col > textarea, .style-form-none-before form .has-error > input, .style-form-none-before form .has-error > select, .style-form-none-before form .has-error > textarea, .style-form-none-before .form .has-error.basic-form-col > input, .style-form-none-before .form .has-error.basic-form-col > select, .style-form-none-before .form .has-error.basic-form-col > textarea, .style-form-none-before .form .has-error > input, .style-form-none-before .form .has-error > select, .style-form-none-before .form .has-error > textarea, .style-form-none-beforeform .has-error.basic-form-col > input, .style-form-none-beforeform .has-error.basic-form-col > select, .style-form-none-beforeform .has-error.basic-form-col > textarea, .style-form-none-beforeform .has-error > input, .style-form-none-beforeform .has-error > select, .style-form-none-beforeform .has-error > textarea, .style-form-none-before.form .has-error.basic-form-col > input, .style-form-none-before.form .has-error.basic-form-col > select, .style-form-none-before.form .has-error.basic-form-col > textarea, .style-form-none-before.form .has-error > input, .style-form-none-before.form .has-error > select, .style-form-none-before.form .has-error > textarea, .style-form-none-before .has-error.basic-form-col > input, .style-form-none-before .has-error.basic-form-col > select, .style-form-none-before .has-error.basic-form-col > textarea, .style-form-none-before .has-error > input, .style-form-none-before .has-error > select, .style-form-none-before .has-error > textarea {
  outline: 2px solid orangered;
}
.style-form-none-before form .has-error.basic-form-col > input ~ .error-msg, .style-form-none-before form .has-error.basic-form-col > select ~ .error-msg, .style-form-none-before form .has-error.basic-form-col > textarea ~ .error-msg, .style-form-none-before form .has-error > input ~ .error-msg, .style-form-none-before form .has-error > select ~ .error-msg, .style-form-none-before form .has-error > textarea ~ .error-msg, .style-form-none-before .form .has-error.basic-form-col > input ~ .error-msg, .style-form-none-before .form .has-error.basic-form-col > select ~ .error-msg, .style-form-none-before .form .has-error.basic-form-col > textarea ~ .error-msg, .style-form-none-before .form .has-error > input ~ .error-msg, .style-form-none-before .form .has-error > select ~ .error-msg, .style-form-none-before .form .has-error > textarea ~ .error-msg, .style-form-none-beforeform .has-error.basic-form-col > input ~ .error-msg, .style-form-none-beforeform .has-error.basic-form-col > select ~ .error-msg, .style-form-none-beforeform .has-error.basic-form-col > textarea ~ .error-msg, .style-form-none-beforeform .has-error > input ~ .error-msg, .style-form-none-beforeform .has-error > select ~ .error-msg, .style-form-none-beforeform .has-error > textarea ~ .error-msg, .style-form-none-before.form .has-error.basic-form-col > input ~ .error-msg, .style-form-none-before.form .has-error.basic-form-col > select ~ .error-msg, .style-form-none-before.form .has-error.basic-form-col > textarea ~ .error-msg, .style-form-none-before.form .has-error > input ~ .error-msg, .style-form-none-before.form .has-error > select ~ .error-msg, .style-form-none-before.form .has-error > textarea ~ .error-msg, .style-form-none-before .has-error.basic-form-col > input ~ .error-msg, .style-form-none-before .has-error.basic-form-col > select ~ .error-msg, .style-form-none-before .has-error.basic-form-col > textarea ~ .error-msg, .style-form-none-before .has-error > input ~ .error-msg, .style-form-none-before .has-error > select ~ .error-msg, .style-form-none-before .has-error > textarea ~ .error-msg {
  color: orangered;
}
.style-form-none-before form select:focus, .style-form-none-before .form select:focus, .style-form-none-beforeform select:focus, .style-form-none-before.form select:focus, .style-form-none-before select:focus {
  background-color: #c4c4c4;
}
.form-button:not(.no-default-form),
button, .form-button, .style-form-none-before form.form-button, .style-form-none-before .form.form-button, .style-form-none-beforeform.form-button, .style-form-none-before.form.form-button, .style-form-none-before.form-button {
  border: 0 solid #000000;
  background-color: #dbdbdb;
  color: #000000;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  padding: 2px 16px;
}
.form-button:not(.no-default-form) i.material-icons, .form-button:not(.no-default-form) i.fa, .form-button:not(.no-default-form) i.fa5, .form-button:not(.no-default-form) i.fa6,
button i.material-icons,
button i.fa,
button i.fa5,
button i.fa6, .form-button i.material-icons, .form-button i.fa, .form-button i.fa5, .form-button i.fa6, .style-form-none-before form.form-button i.material-icons, .style-form-none-before form.form-button i.fa, .style-form-none-before form.form-button i.fa5, .style-form-none-before form.form-button i.fa6, .style-form-none-before .form.form-button i.material-icons, .style-form-none-before .form.form-button i.fa, .style-form-none-before .form.form-button i.fa5, .style-form-none-before .form.form-button i.fa6, .style-form-none-beforeform.form-button i.material-icons, .style-form-none-beforeform.form-button i.fa, .style-form-none-beforeform.form-button i.fa5, .style-form-none-beforeform.form-button i.fa6, .style-form-none-before.form.form-button i.material-icons, .style-form-none-before.form.form-button i.fa, .style-form-none-before.form.form-button i.fa5, .style-form-none-before.form.form-button i.fa6, .style-form-none-before.form-button i.material-icons, .style-form-none-before.form-button i.fa, .style-form-none-before.form-button i.fa5, .style-form-none-before.form-button i.fa6 {
  width: 30px;
  flex-shrink: 0;
}
.form-button:not(.no-default-form):hover, .form-button:not(.no-default-form):active, .form-button:not(.no-default-form):focus, .form-button:not(.no-default-form):focus-within,
button:hover,
button:active,
button:focus,
button:focus-within, .form-button:hover, .form-button:active, .form-button:focus, .form-button:focus-within, .style-form-none-before form.form-button:hover, .style-form-none-before form.form-button:active, .style-form-none-before form.form-button:focus, .style-form-none-before form.form-button:focus-within, .style-form-none-before .form.form-button:hover, .style-form-none-before .form.form-button:active, .style-form-none-before .form.form-button:focus, .style-form-none-before .form.form-button:focus-within, .style-form-none-beforeform.form-button:hover, .style-form-none-beforeform.form-button:active, .style-form-none-beforeform.form-button:focus, .style-form-none-beforeform.form-button:focus-within, .style-form-none-before.form.form-button:hover, .style-form-none-before.form.form-button:active, .style-form-none-before.form.form-button:focus, .style-form-none-before.form.form-button:focus-within, .style-form-none-before.form-button:hover, .style-form-none-before.form-button:active, .style-form-none-before.form-button:focus, .style-form-none-before.form-button:focus-within {
  background-color: #9a9a9a;
}
.form-button:not(.no-default-form) .btn-text,
button .btn-text, .form-button .btn-text, .style-form-none-before form.form-button .btn-text, .style-form-none-before .form.form-button .btn-text, .style-form-none-beforeform.form-button .btn-text, .style-form-none-before.form.form-button .btn-text, .style-form-none-before.form-button .btn-text {
  font-size: 0.8em;
  font-weight: bold;
}
.form-button:not(.no-default-form) i.material-icons + .btn-text, .form-button:not(.no-default-form) i.fa + .btn-text, .form-button:not(.no-default-form) i.fa5 + .btn-text, .form-button:not(.no-default-form) i.fa6 + .btn-text,
button i.material-icons + .btn-text,
button i.fa + .btn-text,
button i.fa5 + .btn-text,
button i.fa6 + .btn-text, .form-button i.material-icons + .btn-text, .form-button i.fa + .btn-text, .form-button i.fa5 + .btn-text, .form-button i.fa6 + .btn-text, .style-form-none-before form.form-button i.material-icons + .btn-text, .style-form-none-before form.form-button i.fa + .btn-text, .style-form-none-before form.form-button i.fa5 + .btn-text, .style-form-none-before form.form-button i.fa6 + .btn-text, .style-form-none-before .form.form-button i.material-icons + .btn-text, .style-form-none-before .form.form-button i.fa + .btn-text, .style-form-none-before .form.form-button i.fa5 + .btn-text, .style-form-none-before .form.form-button i.fa6 + .btn-text, .style-form-none-beforeform.form-button i.material-icons + .btn-text, .style-form-none-beforeform.form-button i.fa + .btn-text, .style-form-none-beforeform.form-button i.fa5 + .btn-text, .style-form-none-beforeform.form-button i.fa6 + .btn-text, .style-form-none-before.form.form-button i.material-icons + .btn-text, .style-form-none-before.form.form-button i.fa + .btn-text, .style-form-none-before.form.form-button i.fa5 + .btn-text, .style-form-none-before.form.form-button i.fa6 + .btn-text, .style-form-none-before.form-button i.material-icons + .btn-text, .style-form-none-before.form-button i.fa + .btn-text, .style-form-none-before.form-button i.fa5 + .btn-text, .style-form-none-before.form-button i.fa6 + .btn-text {
  padding-left: 10px;
}

.style-form-none-before form > a, .style-form-none-before .form > a, .style-form-none-beforeform > a, .style-form-none-before.form > a, .style-form-none-before > a {
  color: #b68a2e;
}
.style-form-none-before form .basic-form-col .pw-show, .style-form-none-before form .position-relative .pw-show, .style-form-none-before .form .basic-form-col .pw-show, .style-form-none-before .form .position-relative .pw-show, .style-form-none-beforeform .basic-form-col .pw-show, .style-form-none-beforeform .position-relative .pw-show, .style-form-none-before.form .basic-form-col .pw-show, .style-form-none-before.form .position-relative .pw-show, .style-form-none-before .basic-form-col .pw-show, .style-form-none-before .position-relative .pw-show {
  background-color: #e2e2e2;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  color: #555555;
}
.style-form-none-before form .basic-form-col .pw-show[data-type=text], .style-form-none-before form .position-relative .pw-show[data-type=text], .style-form-none-before .form .basic-form-col .pw-show[data-type=text], .style-form-none-before .form .position-relative .pw-show[data-type=text], .style-form-none-beforeform .basic-form-col .pw-show[data-type=text], .style-form-none-beforeform .position-relative .pw-show[data-type=text], .style-form-none-before.form .basic-form-col .pw-show[data-type=text], .style-form-none-before.form .position-relative .pw-show[data-type=text], .style-form-none-before .basic-form-col .pw-show[data-type=text], .style-form-none-before .position-relative .pw-show[data-type=text] {
  color: #e84747;
}
.style-form-none-before form .basic-form-col .pw-show:hover, .style-form-none-before form .basic-form-col .pw-show:active, .style-form-none-before form .basic-form-col .pw-show:focus, .style-form-none-before form .basic-form-col .pw-show:focus-within, .style-form-none-before form .position-relative .pw-show:hover, .style-form-none-before form .position-relative .pw-show:active, .style-form-none-before form .position-relative .pw-show:focus, .style-form-none-before form .position-relative .pw-show:focus-within, .style-form-none-before .form .basic-form-col .pw-show:hover, .style-form-none-before .form .basic-form-col .pw-show:active, .style-form-none-before .form .basic-form-col .pw-show:focus, .style-form-none-before .form .basic-form-col .pw-show:focus-within, .style-form-none-before .form .position-relative .pw-show:hover, .style-form-none-before .form .position-relative .pw-show:active, .style-form-none-before .form .position-relative .pw-show:focus, .style-form-none-before .form .position-relative .pw-show:focus-within, .style-form-none-beforeform .basic-form-col .pw-show:hover, .style-form-none-beforeform .basic-form-col .pw-show:active, .style-form-none-beforeform .basic-form-col .pw-show:focus, .style-form-none-beforeform .basic-form-col .pw-show:focus-within, .style-form-none-beforeform .position-relative .pw-show:hover, .style-form-none-beforeform .position-relative .pw-show:active, .style-form-none-beforeform .position-relative .pw-show:focus, .style-form-none-beforeform .position-relative .pw-show:focus-within, .style-form-none-before.form .basic-form-col .pw-show:hover, .style-form-none-before.form .basic-form-col .pw-show:active, .style-form-none-before.form .basic-form-col .pw-show:focus, .style-form-none-before.form .basic-form-col .pw-show:focus-within, .style-form-none-before.form .position-relative .pw-show:hover, .style-form-none-before.form .position-relative .pw-show:active, .style-form-none-before.form .position-relative .pw-show:focus, .style-form-none-before.form .position-relative .pw-show:focus-within, .style-form-none-before .basic-form-col .pw-show:hover, .style-form-none-before .basic-form-col .pw-show:active, .style-form-none-before .basic-form-col .pw-show:focus, .style-form-none-before .basic-form-col .pw-show:focus-within, .style-form-none-before .position-relative .pw-show:hover, .style-form-none-before .position-relative .pw-show:active, .style-form-none-before .position-relative .pw-show:focus, .style-form-none-before .position-relative .pw-show:focus-within {
  background-color: #686868;
  color: #fff;
}
.style-form-none-before form .basic-form-col .pw-show:hover[data-type=text], .style-form-none-before form .basic-form-col .pw-show:active[data-type=text], .style-form-none-before form .basic-form-col .pw-show:focus[data-type=text], .style-form-none-before form .basic-form-col .pw-show:focus-within[data-type=text], .style-form-none-before form .position-relative .pw-show:hover[data-type=text], .style-form-none-before form .position-relative .pw-show:active[data-type=text], .style-form-none-before form .position-relative .pw-show:focus[data-type=text], .style-form-none-before form .position-relative .pw-show:focus-within[data-type=text], .style-form-none-before .form .basic-form-col .pw-show:hover[data-type=text], .style-form-none-before .form .basic-form-col .pw-show:active[data-type=text], .style-form-none-before .form .basic-form-col .pw-show:focus[data-type=text], .style-form-none-before .form .basic-form-col .pw-show:focus-within[data-type=text], .style-form-none-before .form .position-relative .pw-show:hover[data-type=text], .style-form-none-before .form .position-relative .pw-show:active[data-type=text], .style-form-none-before .form .position-relative .pw-show:focus[data-type=text], .style-form-none-before .form .position-relative .pw-show:focus-within[data-type=text], .style-form-none-beforeform .basic-form-col .pw-show:hover[data-type=text], .style-form-none-beforeform .basic-form-col .pw-show:active[data-type=text], .style-form-none-beforeform .basic-form-col .pw-show:focus[data-type=text], .style-form-none-beforeform .basic-form-col .pw-show:focus-within[data-type=text], .style-form-none-beforeform .position-relative .pw-show:hover[data-type=text], .style-form-none-beforeform .position-relative .pw-show:active[data-type=text], .style-form-none-beforeform .position-relative .pw-show:focus[data-type=text], .style-form-none-beforeform .position-relative .pw-show:focus-within[data-type=text], .style-form-none-before.form .basic-form-col .pw-show:hover[data-type=text], .style-form-none-before.form .basic-form-col .pw-show:active[data-type=text], .style-form-none-before.form .basic-form-col .pw-show:focus[data-type=text], .style-form-none-before.form .basic-form-col .pw-show:focus-within[data-type=text], .style-form-none-before.form .position-relative .pw-show:hover[data-type=text], .style-form-none-before.form .position-relative .pw-show:active[data-type=text], .style-form-none-before.form .position-relative .pw-show:focus[data-type=text], .style-form-none-before.form .position-relative .pw-show:focus-within[data-type=text], .style-form-none-before .basic-form-col .pw-show:hover[data-type=text], .style-form-none-before .basic-form-col .pw-show:active[data-type=text], .style-form-none-before .basic-form-col .pw-show:focus[data-type=text], .style-form-none-before .basic-form-col .pw-show:focus-within[data-type=text], .style-form-none-before .position-relative .pw-show:hover[data-type=text], .style-form-none-before .position-relative .pw-show:active[data-type=text], .style-form-none-before .position-relative .pw-show:focus[data-type=text], .style-form-none-before .position-relative .pw-show:focus-within[data-type=text] {
  color: #ff3e29;
}
.form.dark,
form.dark, .form.dark, .style-form-none-before form.dark, .style-form-none-before.form.dark {
  background-color: #393939;
  border: 1px solid #393939;
}
.form.dark h1, .form.dark h2, .form.dark h3, .form.dark h4, .form.dark h5, .form.dark h6,
form.dark h1,
form.dark h2,
form.dark h3,
form.dark h4,
form.dark h5,
form.dark h6, .form.dark h1, .form.dark h2, .form.dark h3, .form.dark h4, .form.dark h5, .form.dark h6, .style-form-none-before form.dark h1, .style-form-none-before form.dark h2, .style-form-none-before form.dark h3, .style-form-none-before form.dark h4, .style-form-none-before form.dark h5, .style-form-none-before form.dark h6, .style-form-none-before.form.dark h1, .style-form-none-before.form.dark h2, .style-form-none-before.form.dark h3, .style-form-none-before.form.dark h4, .style-form-none-before.form.dark h5, .style-form-none-before.form.dark h6 {
  color: #fff;
}
.form.dark hr,
form.dark hr, .form.dark hr, .style-form-none-before form.dark hr, .style-form-none-before.form.dark hr {
  border-top: 1px solid #ccc;
}
.form.dark input, .form.dark select,
form.dark input,
form.dark select, .form.dark input, .form.dark select, .style-form-none-before form.dark input, .style-form-none-before form.dark select, .style-form-none-before.form.dark input, .style-form-none-before.form.dark select {
  color: #fff;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.1333333333);
}
.form.dark input + label, .form.dark select + label,
form.dark input + label,
form.dark select + label, .form.dark input + label, .form.dark select + label, .style-form-none-before form.dark input + label, .style-form-none-before form.dark select + label, .style-form-none-before.form.dark input + label, .style-form-none-before.form.dark select + label {
  color: #ccc;
}
.form.dark input.has_error, .form.dark input.invalid, .form.dark select.has_error, .form.dark select.invalid,
form.dark input.has_error,
form.dark input.invalid,
form.dark select.has_error,
form.dark select.invalid, .form.dark input.has_error, .form.dark input.invalid, .form.dark select.has_error, .form.dark select.invalid, .style-form-none-before form.dark input.has_error, .style-form-none-before form.dark input.invalid, .style-form-none-before form.dark select.has_error, .style-form-none-before form.dark select.invalid, .style-form-none-before.form.dark input.has_error, .style-form-none-before.form.dark input.invalid, .style-form-none-before.form.dark select.has_error, .style-form-none-before.form.dark select.invalid {
  border-bottom: 2px solid orangered;
}
.form.dark .has-error.basic-form-col > input, .form.dark .has-error.basic-form-col > select, .form.dark .has-error.basic-form-col > textarea, .form.dark .has-error > input, .form.dark .has-error > select, .form.dark .has-error > textarea,
form.dark .has-error.basic-form-col > input,
form.dark .has-error.basic-form-col > select,
form.dark .has-error.basic-form-col > textarea,
form.dark .has-error > input,
form.dark .has-error > select,
form.dark .has-error > textarea, .form.dark .has-error.basic-form-col > input, .form.dark .has-error.basic-form-col > select, .form.dark .has-error.basic-form-col > textarea, .form.dark .has-error > input, .form.dark .has-error > select, .form.dark .has-error > textarea, .style-form-none-before form.dark .has-error.basic-form-col > input, .style-form-none-before form.dark .has-error.basic-form-col > select, .style-form-none-before form.dark .has-error.basic-form-col > textarea, .style-form-none-before form.dark .has-error > input, .style-form-none-before form.dark .has-error > select, .style-form-none-before form.dark .has-error > textarea, .style-form-none-before.form.dark .has-error.basic-form-col > input, .style-form-none-before.form.dark .has-error.basic-form-col > select, .style-form-none-before.form.dark .has-error.basic-form-col > textarea, .style-form-none-before.form.dark .has-error > input, .style-form-none-before.form.dark .has-error > select, .style-form-none-before.form.dark .has-error > textarea {
  outline: 2px solid orangered;
}
.form.dark .has-error.basic-form-col > input ~ .error-msg, .form.dark .has-error.basic-form-col > select ~ .error-msg, .form.dark .has-error.basic-form-col > textarea ~ .error-msg, .form.dark .has-error > input ~ .error-msg, .form.dark .has-error > select ~ .error-msg, .form.dark .has-error > textarea ~ .error-msg,
form.dark .has-error.basic-form-col > input ~ .error-msg,
form.dark .has-error.basic-form-col > select ~ .error-msg,
form.dark .has-error.basic-form-col > textarea ~ .error-msg,
form.dark .has-error > input ~ .error-msg,
form.dark .has-error > select ~ .error-msg,
form.dark .has-error > textarea ~ .error-msg, .form.dark .has-error.basic-form-col > input ~ .error-msg, .form.dark .has-error.basic-form-col > select ~ .error-msg, .form.dark .has-error.basic-form-col > textarea ~ .error-msg, .form.dark .has-error > input ~ .error-msg, .form.dark .has-error > select ~ .error-msg, .form.dark .has-error > textarea ~ .error-msg, .style-form-none-before form.dark .has-error.basic-form-col > input ~ .error-msg, .style-form-none-before form.dark .has-error.basic-form-col > select ~ .error-msg, .style-form-none-before form.dark .has-error.basic-form-col > textarea ~ .error-msg, .style-form-none-before form.dark .has-error > input ~ .error-msg, .style-form-none-before form.dark .has-error > select ~ .error-msg, .style-form-none-before form.dark .has-error > textarea ~ .error-msg, .style-form-none-before.form.dark .has-error.basic-form-col > input ~ .error-msg, .style-form-none-before.form.dark .has-error.basic-form-col > select ~ .error-msg, .style-form-none-before.form.dark .has-error.basic-form-col > textarea ~ .error-msg, .style-form-none-before.form.dark .has-error > input ~ .error-msg, .style-form-none-before.form.dark .has-error > select ~ .error-msg, .style-form-none-before.form.dark .has-error > textarea ~ .error-msg {
  color: orangered;
}
.form.dark select:focus,
form.dark select:focus, .form.dark select:focus, .style-form-none-before form.dark select:focus, .style-form-none-before.form.dark select:focus {
  background-color: #535353;
}
.form.dark button,
form.dark button, .form.dark button, .style-form-none-before form.dark button, .style-form-none-before.form.dark button {
  border: 0 solid #fff;
  background-color: #2b2b2b;
  color: #fff;
}
.form.dark button:hover, .form.dark button:active, .form.dark button:focus, .form.dark button:focus-within,
form.dark button:hover,
form.dark button:active,
form.dark button:focus,
form.dark button:focus-within, .form.dark button:hover, .form.dark button:active, .form.dark button:focus, .form.dark button:focus-within, .style-form-none-before form.dark button:hover, .style-form-none-before form.dark button:active, .style-form-none-before form.dark button:focus, .style-form-none-before form.dark button:focus-within, .style-form-none-before.form.dark button:hover, .style-form-none-before.form.dark button:active, .style-form-none-before.form.dark button:focus, .style-form-none-before.form.dark button:focus-within {
  background-color: #686868;
}
.form.dark > a,
form.dark > a, .form.dark > a, .style-form-none-before form.dark > a, .style-form-none-before.form.dark > a {
  color: #ffd87d;
}
.form.dark .basic-form-col .pw-show, .form.dark .position-relative .pw-show,
form.dark .basic-form-col .pw-show,
form.dark .position-relative .pw-show, .form.dark .basic-form-col .pw-show, .form.dark .position-relative .pw-show, .style-form-none-before form.dark .basic-form-col .pw-show, .style-form-none-before form.dark .position-relative .pw-show, .style-form-none-before.form.dark .basic-form-col .pw-show, .style-form-none-before.form.dark .position-relative .pw-show {
  background-color: #2b2b2b;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  color: #9b9b9b;
}
.form.dark .basic-form-col .pw-show[data-type=text], .form.dark .position-relative .pw-show[data-type=text],
form.dark .basic-form-col .pw-show[data-type=text],
form.dark .position-relative .pw-show[data-type=text], .form.dark .basic-form-col .pw-show[data-type=text], .form.dark .position-relative .pw-show[data-type=text], .style-form-none-before form.dark .basic-form-col .pw-show[data-type=text], .style-form-none-before form.dark .position-relative .pw-show[data-type=text], .style-form-none-before.form.dark .basic-form-col .pw-show[data-type=text], .style-form-none-before.form.dark .position-relative .pw-show[data-type=text] {
  color: #b88484;
}
.form.dark .basic-form-col .pw-show:hover, .form.dark .basic-form-col .pw-show:active, .form.dark .basic-form-col .pw-show:focus, .form.dark .basic-form-col .pw-show:focus-within, .form.dark .position-relative .pw-show:hover, .form.dark .position-relative .pw-show:active, .form.dark .position-relative .pw-show:focus, .form.dark .position-relative .pw-show:focus-within,
form.dark .basic-form-col .pw-show:hover,
form.dark .basic-form-col .pw-show:active,
form.dark .basic-form-col .pw-show:focus,
form.dark .basic-form-col .pw-show:focus-within,
form.dark .position-relative .pw-show:hover,
form.dark .position-relative .pw-show:active,
form.dark .position-relative .pw-show:focus,
form.dark .position-relative .pw-show:focus-within, .form.dark .basic-form-col .pw-show:hover, .form.dark .basic-form-col .pw-show:active, .form.dark .basic-form-col .pw-show:focus, .form.dark .basic-form-col .pw-show:focus-within, .form.dark .position-relative .pw-show:hover, .form.dark .position-relative .pw-show:active, .form.dark .position-relative .pw-show:focus, .form.dark .position-relative .pw-show:focus-within, .style-form-none-before form.dark .basic-form-col .pw-show:hover, .style-form-none-before form.dark .basic-form-col .pw-show:active, .style-form-none-before form.dark .basic-form-col .pw-show:focus, .style-form-none-before form.dark .basic-form-col .pw-show:focus-within, .style-form-none-before form.dark .position-relative .pw-show:hover, .style-form-none-before form.dark .position-relative .pw-show:active, .style-form-none-before form.dark .position-relative .pw-show:focus, .style-form-none-before form.dark .position-relative .pw-show:focus-within, .style-form-none-before.form.dark .basic-form-col .pw-show:hover, .style-form-none-before.form.dark .basic-form-col .pw-show:active, .style-form-none-before.form.dark .basic-form-col .pw-show:focus, .style-form-none-before.form.dark .basic-form-col .pw-show:focus-within, .style-form-none-before.form.dark .position-relative .pw-show:hover, .style-form-none-before.form.dark .position-relative .pw-show:active, .style-form-none-before.form.dark .position-relative .pw-show:focus, .style-form-none-before.form.dark .position-relative .pw-show:focus-within {
  background-color: #686868;
  color: #fff;
}
.form.dark .basic-form-col .pw-show:hover[data-type=text], .form.dark .basic-form-col .pw-show:active[data-type=text], .form.dark .basic-form-col .pw-show:focus[data-type=text], .form.dark .basic-form-col .pw-show:focus-within[data-type=text], .form.dark .position-relative .pw-show:hover[data-type=text], .form.dark .position-relative .pw-show:active[data-type=text], .form.dark .position-relative .pw-show:focus[data-type=text], .form.dark .position-relative .pw-show:focus-within[data-type=text],
form.dark .basic-form-col .pw-show:hover[data-type=text],
form.dark .basic-form-col .pw-show:active[data-type=text],
form.dark .basic-form-col .pw-show:focus[data-type=text],
form.dark .basic-form-col .pw-show:focus-within[data-type=text],
form.dark .position-relative .pw-show:hover[data-type=text],
form.dark .position-relative .pw-show:active[data-type=text],
form.dark .position-relative .pw-show:focus[data-type=text],
form.dark .position-relative .pw-show:focus-within[data-type=text], .form.dark .basic-form-col .pw-show:hover[data-type=text], .form.dark .basic-form-col .pw-show:active[data-type=text], .form.dark .basic-form-col .pw-show:focus[data-type=text], .form.dark .basic-form-col .pw-show:focus-within[data-type=text], .form.dark .position-relative .pw-show:hover[data-type=text], .form.dark .position-relative .pw-show:active[data-type=text], .form.dark .position-relative .pw-show:focus[data-type=text], .form.dark .position-relative .pw-show:focus-within[data-type=text], .style-form-none-before form.dark .basic-form-col .pw-show:hover[data-type=text], .style-form-none-before form.dark .basic-form-col .pw-show:active[data-type=text], .style-form-none-before form.dark .basic-form-col .pw-show:focus[data-type=text], .style-form-none-before form.dark .basic-form-col .pw-show:focus-within[data-type=text], .style-form-none-before form.dark .position-relative .pw-show:hover[data-type=text], .style-form-none-before form.dark .position-relative .pw-show:active[data-type=text], .style-form-none-before form.dark .position-relative .pw-show:focus[data-type=text], .style-form-none-before form.dark .position-relative .pw-show:focus-within[data-type=text], .style-form-none-before.form.dark .basic-form-col .pw-show:hover[data-type=text], .style-form-none-before.form.dark .basic-form-col .pw-show:active[data-type=text], .style-form-none-before.form.dark .basic-form-col .pw-show:focus[data-type=text], .style-form-none-before.form.dark .basic-form-col .pw-show:focus-within[data-type=text], .style-form-none-before.form.dark .position-relative .pw-show:hover[data-type=text], .style-form-none-before.form.dark .position-relative .pw-show:active[data-type=text], .style-form-none-before.form.dark .position-relative .pw-show:focus[data-type=text], .style-form-none-before.form.dark .position-relative .pw-show:focus-within[data-type=text] {
  color: #f57b7b;
}

.style-form-none-before form .form-group-element, .style-form-none-before .form .form-group-element, .style-form-none-beforeform .form-group-element, .style-form-none-before.form .form-group-element {
  padding: 0;
}
.style-form-none-before form > img, .style-form-none-before .form > img, .style-form-none-beforeform > img, .style-form-none-before.form > img {
  margin-top: 10px;
}
.style-form-none-before form > :last-child, .style-form-none-before .form > :last-child, .style-form-none-beforeform > :last-child, .style-form-none-before.form > :last-child {
  margin-bottom: 10px;
}
.style-form-none-before form > h5, .style-form-none-before .form > h5, .style-form-none-beforeform > h5, .style-form-none-before.form > h5 {
  margin-bottom: 10px;
}
.style-form-none-before form h6, .style-form-none-before .form h6, .style-form-none-beforeform h6, .style-form-none-before.form h6 {
  margin-top: 30px;
}
.style-form-none-before form > a, .style-form-none-before .form > a, .style-form-none-beforeform > a, .style-form-none-before.form > a {
  display: block;
  padding: 0;
}
.style-form-none-before form input, .style-form-none-before form select, .style-form-none-before form textarea, .style-form-none-before .form input, .style-form-none-before .form select, .style-form-none-before .form textarea, .style-form-none-beforeform input, .style-form-none-beforeform select, .style-form-none-beforeform textarea, .style-form-none-before.form input, .style-form-none-before.form select, .style-form-none-before.form textarea {
  box-sizing: border-box;
  padding: 8px 8px 0;
  height: 32px;
  display: block;
  width: 100%;
  margin-top: 6px;
  font-size: 1.4em;
}
.style-form-none-before form input + label, .style-form-none-before form select + label, .style-form-none-before form textarea + label, .style-form-none-before .form input + label, .style-form-none-before .form select + label, .style-form-none-before .form textarea + label, .style-form-none-beforeform input + label, .style-form-none-beforeform select + label, .style-form-none-beforeform textarea + label, .style-form-none-before.form input + label, .style-form-none-before.form select + label, .style-form-none-before.form textarea + label {
  padding-left: 10px;
  display: block;
  content: "";
  position: absolute;
  top: 9px;
  text-transform: uppercase;
  left: 0;
  transition: 0.2s opacity ease-out, 0.2s color ease-out, 0.2s transform ease-out;
  transform-origin: 0;
  font-size: 1em;
}
.style-form-none-before form input:not(:-moz-placeholder) + label, .style-form-none-before form select:not(:-moz-placeholder) + label, .style-form-none-before form textarea:not(:-moz-placeholder) + label, .style-form-none-before .form input:not(:-moz-placeholder) + label, .style-form-none-before .form select:not(:-moz-placeholder) + label, .style-form-none-before .form textarea:not(:-moz-placeholder) + label, .style-form-none-beforeform input:not(:-moz-placeholder) + label, .style-form-none-beforeform select:not(:-moz-placeholder) + label, .style-form-none-beforeform textarea:not(:-moz-placeholder) + label, .style-form-none-before.form input:not(:-moz-placeholder) + label, .style-form-none-before.form select:not(:-moz-placeholder) + label, .style-form-none-before.form textarea:not(:-moz-placeholder) + label {
  transform: translateY(-10px) translateX(-4px) scale(0.8);
}
.style-form-none-before form input:focus + label, .style-form-none-before form input:not(:placeholder-shown) + label, .style-form-none-before form select:focus + label, .style-form-none-before form select:not(:placeholder-shown) + label, .style-form-none-before form textarea:focus + label, .style-form-none-before form textarea:not(:placeholder-shown) + label, .style-form-none-before .form input:focus + label, .style-form-none-before .form input:not(:placeholder-shown) + label, .style-form-none-before .form select:focus + label, .style-form-none-before .form select:not(:placeholder-shown) + label, .style-form-none-before .form textarea:focus + label, .style-form-none-before .form textarea:not(:placeholder-shown) + label, .style-form-none-beforeform input:focus + label, .style-form-none-beforeform input:not(:placeholder-shown) + label, .style-form-none-beforeform select:focus + label, .style-form-none-beforeform select:not(:placeholder-shown) + label, .style-form-none-beforeform textarea:focus + label, .style-form-none-beforeform textarea:not(:placeholder-shown) + label, .style-form-none-before.form input:focus + label, .style-form-none-before.form input:not(:placeholder-shown) + label, .style-form-none-before.form select:focus + label, .style-form-none-before.form select:not(:placeholder-shown) + label, .style-form-none-before.form textarea:focus + label, .style-form-none-before.form textarea:not(:placeholder-shown) + label {
  transform: translateY(-10px) translateX(-4px) scale(0.8);
}
.style-form-none-before form input + label + .helper-text, .style-form-none-before form select + label + .helper-text, .style-form-none-before form textarea + label + .helper-text, .style-form-none-before .form input + label + .helper-text, .style-form-none-before .form select + label + .helper-text, .style-form-none-before .form textarea + label + .helper-text, .style-form-none-beforeform input + label + .helper-text, .style-form-none-beforeform select + label + .helper-text, .style-form-none-beforeform textarea + label + .helper-text, .style-form-none-before.form input + label + .helper-text, .style-form-none-before.form select + label + .helper-text, .style-form-none-before.form textarea + label + .helper-text {
  margin-top: -6px;
  margin-bottom: 6px;
  display: none;
}
.style-form-none-before form .has-error.basic-form-col > input ~ .basic-form-error.error-msg, .style-form-none-before form .has-error.basic-form-col > select ~ .basic-form-error.error-msg, .style-form-none-before form .has-error.basic-form-col > textarea ~ .basic-form-error.error-msg, .style-form-none-before form .has-error > input ~ .basic-form-error.error-msg, .style-form-none-before form .has-error > select ~ .basic-form-error.error-msg, .style-form-none-before form .has-error > textarea ~ .basic-form-error.error-msg, .style-form-none-before .form .has-error.basic-form-col > input ~ .basic-form-error.error-msg, .style-form-none-before .form .has-error.basic-form-col > select ~ .basic-form-error.error-msg, .style-form-none-before .form .has-error.basic-form-col > textarea ~ .basic-form-error.error-msg, .style-form-none-before .form .has-error > input ~ .basic-form-error.error-msg, .style-form-none-before .form .has-error > select ~ .basic-form-error.error-msg, .style-form-none-before .form .has-error > textarea ~ .basic-form-error.error-msg, .style-form-none-beforeform .has-error.basic-form-col > input ~ .basic-form-error.error-msg, .style-form-none-beforeform .has-error.basic-form-col > select ~ .basic-form-error.error-msg, .style-form-none-beforeform .has-error.basic-form-col > textarea ~ .basic-form-error.error-msg, .style-form-none-beforeform .has-error > input ~ .basic-form-error.error-msg, .style-form-none-beforeform .has-error > select ~ .basic-form-error.error-msg, .style-form-none-beforeform .has-error > textarea ~ .basic-form-error.error-msg, .style-form-none-before.form .has-error.basic-form-col > input ~ .basic-form-error.error-msg, .style-form-none-before.form .has-error.basic-form-col > select ~ .basic-form-error.error-msg, .style-form-none-before.form .has-error.basic-form-col > textarea ~ .basic-form-error.error-msg, .style-form-none-before.form .has-error > input ~ .basic-form-error.error-msg, .style-form-none-before.form .has-error > select ~ .basic-form-error.error-msg, .style-form-none-before.form .has-error > textarea ~ .basic-form-error.error-msg {
  font-size: 1.2em;
}
.style-form-none-before form input.asterisk + label:before, .style-form-none-before form input.required + label:before, .style-form-none-before form input + label.required:after, .style-form-none-before form input + label.asterisk:after, .style-form-none-before form textarea.asterisk + label:before, .style-form-none-before form textarea.required + label:before, .style-form-none-before form textarea + label.required:after, .style-form-none-before form textarea + label.asterisk:after, .style-form-none-before form select.asterisk + label:before, .style-form-none-before form select.required + label:before, .style-form-none-before form select + label.required:after, .style-form-none-before form select + label.asterisk:after, .style-form-none-before .form input.asterisk + label:before, .style-form-none-before .form input.required + label:before, .style-form-none-before .form input + label.required:after, .style-form-none-before .form input + label.asterisk:after, .style-form-none-before .form textarea.asterisk + label:before, .style-form-none-before .form textarea.required + label:before, .style-form-none-before .form textarea + label.required:after, .style-form-none-before .form textarea + label.asterisk:after, .style-form-none-before .form select.asterisk + label:before, .style-form-none-before .form select.required + label:before, .style-form-none-before .form select + label.required:after, .style-form-none-before .form select + label.asterisk:after, .style-form-none-beforeform input.asterisk + label:before, .style-form-none-beforeform input.required + label:before, .style-form-none-beforeform input + label.required:after, .style-form-none-beforeform input + label.asterisk:after, .style-form-none-beforeform textarea.asterisk + label:before, .style-form-none-beforeform textarea.required + label:before, .style-form-none-beforeform textarea + label.required:after, .style-form-none-beforeform textarea + label.asterisk:after, .style-form-none-beforeform select.asterisk + label:before, .style-form-none-beforeform select.required + label:before, .style-form-none-beforeform select + label.required:after, .style-form-none-beforeform select + label.asterisk:after, .style-form-none-before.form input.asterisk + label:before, .style-form-none-before.form input.required + label:before, .style-form-none-before.form input + label.required:after, .style-form-none-before.form input + label.asterisk:after, .style-form-none-before.form textarea.asterisk + label:before, .style-form-none-before.form textarea.required + label:before, .style-form-none-before.form textarea + label.required:after, .style-form-none-before.form textarea + label.asterisk:after, .style-form-none-before.form select.asterisk + label:before, .style-form-none-before.form select.required + label:before, .style-form-none-before.form select + label.required:after, .style-form-none-before.form select + label.asterisk:after {
  content: "*";
  color: #ff0000;
  display: inline-block;
  position: absolute;
  right: -10px;
  font-size: 1.4em;
  top: -3px;
}
.style-form-none-before form select, .style-form-none-before .form select, .style-form-none-beforeform select, .style-form-none-before.form select {
  margin-top: 24px;
  padding: 0 8px;
}
.style-form-none-before form select:not(:-moz-placeholder) + label, .style-form-none-before .form select:not(:-moz-placeholder) + label, .style-form-none-beforeform select:not(:-moz-placeholder) + label, .style-form-none-before.form select:not(:-moz-placeholder) + label {
  transform: translateY(-26px) translateX(-4px);
}
.style-form-none-before form select + label, .style-form-none-before form select:focus + label, .style-form-none-before form select:not(:placeholder-shown) + label, .style-form-none-before .form select + label, .style-form-none-before .form select:focus + label, .style-form-none-before .form select:not(:placeholder-shown) + label, .style-form-none-beforeform select + label, .style-form-none-beforeform select:focus + label, .style-form-none-beforeform select:not(:placeholder-shown) + label, .style-form-none-before.form select + label, .style-form-none-before.form select:focus + label, .style-form-none-before.form select:not(:placeholder-shown) + label {
  transform: translateY(-26px) translateX(-4px);
}
.style-form-none-before form button, .style-form-none-before .form button, .style-form-none-beforeform button, .style-form-none-before.form button {
  margin-top: 5px;
  display: block;
  width: 100%;
  height: 38px;
  font-weight: bold;
  transition: 0.2s background-color ease-out;
}
.style-form-none-before .basic-form-col .pw-show, .style-form-none-before .position-relative .pw-show {
  font: normal normal normal 14px/1 FontAwesome;
  display: block;
  width: 32px;
  height: 31px;
  position: absolute;
  cursor: pointer;
  z-index: 10;
  right: 0;
  line-height: 29px;
  text-align: center;
  font-size: 1.5em;
}
.style-form-none-before .basic-form-col .pw-show:before, .style-form-none-before .position-relative .pw-show:before {
  content: "\f06e";
}
.style-form-none-before .basic-form-col .pw-show + input, .style-form-none-before .position-relative .pw-show + input {
  padding-right: 42px;
}

.fix-label .style-form-none-before.form input + label,
.fix-label.style-form-none-before.form input + label,
.fix-label.form input + label,
.fix-label.style-form-none-before input + label,
.style-form-none-before.form input + label.fix-label,
.fix-label input + label.fix-label,
input.fix-label + label,
.fix-label label, label.fix-label {
  font-size: 1.2em;
  top: -13px;
  transform: none;
  left: 0;
  margin: 0;
  padding-left: 0;
}

.fix-label-top .style-form-none-before.form select + label,
.fix-label-top.style-form-none-before.form select + label,
.fix-label-top.form select + label,
.fix-label-top.style-form-none-before select + label,
.style-form-none-before.form select + label.fix-label-top,
.fix-label-top select + label.fix-label-top,
select.fix-label-top + label,
.fix-label-top label, label.fix-label-top {
  order: -1;
  display: block;
  top: 9px;
  text-transform: uppercase;
  transition: 0.2s opacity ease-out, 0.2s color ease-out, 0.2s transform ease-out;
  color: #383838;
}

.fix-label .style-form-none-before.form textarea + label,
.fix-label.style-form-none-before.form textarea + label,
.fix-label.form textarea + label,
.fix-label.style-form-none-before textarea + label,
.style-form-none-before.form textarea + label.fix-label,
.fix-label textarea + label.fix-label,
textarea.fix-label + label {
  font-size: 1.2em;
  top: -13px;
  transform: none;
  left: 0;
  margin: 0;
  padding-left: 0;
}

/* 2 factor login field */
.s2f-code-wrapper {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 5px 0;
  flex-wrap: wrap;
  padding: 10px 0;
  zoom: 1;
}
.s2f-code-wrapper.disabled {
  /* display:block; */
  zoom: 0.8;
  filter: blur(2px) grayscale(1) opacity(0.5);
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Chrome/Safari/Opera */ /* Conqueror */
  -moz-user-select: none; /* Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently not supported by any browser */
  standard-user-select: none;
  pointer-events: none;
}
.s2f-code-wrapper .s2f-code-input-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
  gap: 5px;
  max-width: 100%;
  width: 300px;
  min-height: 60px;
  /* display:block; */
}
.s2f-code-wrapper .s2f-code-input-wrapper label {
  border: 3px solid #26a69a;
  font-size: 2.5em;
  margin: 0;
  padding-bottom: 10px;
  overflow: hidden;
}
.s2f-code-wrapper .s2f-code-input-wrapper .s2f-code-input {
  font-size: unset !important;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 0 0;
  caret-color: transparent;
  border: none;
  border-bottom: 2px solid grey;
  width: 100%;
  height: 56px;
  font-family: monospace, monospace;
  /* display:block; */
}
.s2f-code-wrapper .s2f-code-input-wrapper .s2f-code-input::-webkit-outer-spin-button, .s2f-code-wrapper .s2f-code-input-wrapper .s2f-code-input::-webkit-inner-spin-button, .s2f-code-wrapper .s2f-code-input-wrapper .s2f-code-input[type=text] {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield; /* Firefox */
}
.s2f-code-wrapper .s2f-code-input-wrapper .s2f-code-input.has-error {
  border-bottom: 2px solid #F44336;
}
.s2f-code-wrapper .s2f-code-input-wrapper .s2f-code-input:focus {
  background-color: rgba(66, 208, 195, 0.2666666667);
  border-bottom: 2px solid #26a69a;
  outline: none;
}
.s2f-code-wrapper .s2f-code-input-wrapper .s2f-code-input::-moz-selection {
  background: transparent;
}
.s2f-code-wrapper .s2f-code-input-wrapper .s2f-code-input::selection {
  background: transparent;
}
.s2f-code-wrapper .s2f-code-btn {
  flex-shrink: 1;
  flex-basis: 0;
  flex-grow: 1;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: 68px;
}
.s2f-code-wrapper .flex-break {
  flex: 0 0 100%;
  order: 99;
}
.s2f-code-wrapper .error-msg {
  order: 100;
  flex: 0 1 300px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.s2f-code-wrapper .error-msg .error-line {
  color: #F44336;
}
.s2f-code-wrapper .error-msg .error-line + .error-line {
  line-height: 1.2;
  font-size: 0.7em;
  color: #972820;
}

/* -- ui check box -- */
.checker > label {
  position: relative;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  justify-content: center;
}
.checker > label input[type=checkbox] {
  height: 0;
  width: 0;
  opacity: 0;
}
.checker > label .text {
  order: 2;
}
.checker > label .check-box-ui {
  flex: 0 0 36px;
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.checker > label .check-box-ui:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
}
.checker > label .check-box-ui:after {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  background-color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgb(255, 255, 255) 59%, rgb(255, 255, 255) 100%);
  position: absolute;
  margin-top: 0;
  margin-left: 3px;
  transform: rotate(-45deg);
  transition: 0.1s height ease-out, 0.2s width ease-out, 0.2s border-width ease-out, 20.4s background ease-out;
  left: calc(50% - 8px);
  top: calc(50% - 0px);
  transform-origin: top left;
}
.checker > label input[type=checkbox]:not(:checked) ~ .check-box-ui:after {
  width: 0;
  height: 0;
  margin-top: 0;
  margin-left: 3px;
  transition: 0.2s height ease-out, 0.1s width ease-out, 0.2s border-width ease-out, 0.01s background ease-out;
  border-width: 0;
  background: transparent;
}
.checker > label:hover .check-box-ui:before,
.checker > label input[type=checkbox]:focus ~ .check-box-ui:before {
  outline: 2px solid gold;
  background-color: #8b8b8b;
}
.checker.large-checker > label, .checker.checker-large > label {
  align-items: center;
}
.checker.large-checker > label .check-box-ui, .checker.checker-large > label .check-box-ui {
  justify-content: left;
}
.checker.large-checker > label .check-box-ui:before, .checker.checker-large > label .check-box-ui:before {
  width: 26px;
  height: 26px;
}
.checker.large-checker > label .check-box-ui:after, .checker.checker-large > label .check-box-ui:after {
  margin-top: 2px;
  margin-left: -6px;
}

.grid-select, .grid-select .optgroup {
  display: grid;
  grid-gap: 4px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.grid-select .option, .grid-select .optgroup .option {
  background-color: #ffffff;
  color: #000;
  margin: 0 !important;
  border: 1px solid #bbb;
  padding: 0;
}
.grid-select .option.selected, .grid-select .optgroup .option.selected {
  background-color: #3a3a3a;
  color: #fff;
  border-color: #3a3a3a;
}
.grid-select .option.selected:not(:hover):not(:focus), .grid-select .optgroup .option.selected:not(:hover):not(:focus) {
  background-color: #212121;
  border-color: #212121;
  color: #fff;
}
.grid-select[disabled] .option, .grid-select .optgroup[disabled] .option {
  position: relative;
  overflow: hidden;
}
.grid-select[disabled] .option.selected, .grid-select .optgroup[disabled] .option.selected {
  background-color: #484848;
  border-color: #484848;
}
.grid-select[disabled] .option:after, .grid-select .optgroup[disabled] .option:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: rotate(-22deg);
  position: absolute;
}
.grid-select[disabled] .option:not(.selected):after, .grid-select .optgroup[disabled] .option:not(.selected):after {
  background-color: #aeadad;
  border-color: #aeadad;
}

.search-wrapper.search-bar-ux {
  flex-grow: 0;
  padding-bottom: 10px;
  padding-right: 32px;
  width: 300px;
  transition: width 0.2s ease-out;
}
.search-wrapper.search-bar-ux:focus-within {
  width: 360px;
  max-width: 90vw;
}
.search-wrapper.search-bar-ux .position-relative {
  width: 100%;
  max-width: 460px;
}
.search-wrapper.search-bar-ux .position-relative:after {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 7px;
  right: 12px;
}
.search-wrapper.search-bar-ux .position-relative .clear-search {
  position: absolute;
  top: 7px;
  right: 30px;
  color: #b30202;
  cursor: pointer;
}
.search-wrapper.search-bar-ux .position-relative .search-info {
  position: absolute;
  top: 7px;
  right: -30px;
  color: #5b5b5b;
  cursor: pointer;
  border: 1px solid;
  border-radius: 50%;
  padding: 5px;
}
.search-wrapper.search-bar-ux .position-relative .search-info > i {
  width: auto;
  font-size: 0.8em;
}
.search-wrapper.search-bar-ux .position-relative .search-info:hover, .search-wrapper.search-bar-ux .position-relative .search-info:focus {
  background-color: #333;
  color: #fff;
}
.search-wrapper.search-bar-ux .position-relative input:not(:focus-within) ~ .clear-search:not(:hover) {
  opacity: 0.5;
}
.search-wrapper.search-bar-ux .position-relative input:-moz-placeholder ~ .clear-search {
  display: none;
}
.search-wrapper.search-bar-ux .position-relative input:placeholder-shown ~ .clear-search {
  display: none;
}
.search-wrapper.search-bar-ux input {
  border: 1px solid #999;
  padding: 6px 36px 6px 10px;
  border-radius: 16px;
  width: 100%;
  height: 36px;
  margin: 0;
}
.search-wrapper.search-bar-ux label {
  margin: 0;
  position: absolute;
  left: 30px;
  top: 7px;
  transition: 0.2s opacity ease-out, 0.2s color ease-out, 0.2s transform ease-out;
}
.search-wrapper.search-bar-ux input:not(:-moz-placeholder) + label {
  transform: translateY(-10px) translateX(-4px) scale(0.8);
  transform-origin: 0 0;
}
.search-wrapper.search-bar-ux input:focus + label:not(.label-icon),
.search-wrapper.search-bar-ux input:not(:placeholder-shown) + label {
  transform: translateY(-10px) translateX(-4px) scale(0.8);
  transform-origin: 0 0;
}
.search-wrapper.search-bar-ux .tippy-box {
  background: #fff;
  border-radius: 0;
  color: #000;
  border: 1px solid #999;
}
.search-wrapper.search-bar-ux .tippy-box .search-info-content ul li > strong {
  min-width: 120px;
  display: inline-block;
}
.search-wrapper.search-bar-ux .li-info-filter {
  white-space: nowrap;
}
.search-wrapper.search-bar-ux .refreshing-indicator {
  position: absolute;
  top: 2px;
  right: 2px;
}
.search-wrapper.search-bar-ux .refreshing-indicator .spinner-circle-rotate {
  border-color: transparent #000;
  width: 32px;
  height: 32px;
  border-width: 1px;
}
.search-wrapper.search-bar-ux .refreshing-indicator .spinner-circle-rotate::after {
  border: 15px solid;
  border-color: transparent rgba(23, 1, 1, 0.1490196078);
}

.js-tooltip {
  max-width: 100%;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
  padding: 0;
  border-radius: 0;
  font-size: 90%;
  background: #fbfbfb;
  z-index: 999;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  font-weight: normal;
}
.js-tooltip > .headline {
  padding: 6px 10px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
}
.js-tooltip > .desc {
  font-style: italic;
  font-size: 0.9em;
  padding: 8px 10px 0 12px;
}
.js-tooltip > .footer {
  padding: 6px 0;
  border-top: 1px solid #ddd;
  font-weight: bold;
}
.js-tooltip > .arrow {
  position: absolute;
  background: #222;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  z-index: -1;
}

.modal {
  max-height: 96%;
}
.modal.modal-fixed-header, .modal.modal-fixed-footer2 {
  display: flex !important;
  flex-direction: column;
}
.modal.modal-fixed-header .modal-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background: inherit;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  /*flex-basis: 1px;*/
  height: auto;
}
.modal.modal-fixed-footer2 .modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  /*bottom: -1px;*/
  z-index: 1;
  background: inherit;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  height: auto;
  /*flex-basis: 1px;*/
}
.modal.modal-fullscreen {
  margin: 0;
  width: auto;
  top: 0;
  bottom: 0;
  max-height: unset;
  max-width: unset;
}
.modal.no-radius {
  border-radius: 0;
}
.modal.no-content-padding .modal-content {
  padding: 0;
}
.modal .modal-close.modal-close-times {
  display: block;
  width: 40px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 30px;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
}
.modal .modal-close.modal-close-times:hover {
  filter: opacity(0.5);
  background-color: #ffb1b1;
}
.modal .modal-close.modal-close-times:before {
  content: "×";
  display: inline;
}
.modal .modal-header {
  padding: 24px 24px 0;
}
.modal .modal-header > h4 {
  margin-bottom: -8px;
}
.modal .modal-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.modal .modal-footer button.modal-button {
  flex-grow: 0;
  flex-shrink: 1;
  width: auto;
  min-width: 200px;
  border-style: none;
  min-height: 36px;
}
.modal .modal-footer button.modal-button:first-child {
  margin-left: auto;
}
.modal .modal-footer button.modal-button:not(:last-child) {
  margin-right: 10px;
}
.modal.wait-modal {
  font-size: 0.8em;
  width: 100%;
  max-width: 550px;
}
.modal.wait-modal .modal-footer {
  display: none;
}
.modal .btn {
  overflow: hidden;
  position: relative;
}
.modal .btn:hover:before,
.modal .btn:focus:before,
.modal .btn.focus:before,
.modal .btn.active:before {
  z-index: 0;
  opacity: 1;
}
.modal .btn:before {
  content: "";
  opacity: 0;
  -webkit-backdrop-filter: invert(0.2);
          backdrop-filter: invert(0.2);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: opacity 0.2s;
  z-index: -1;
}
.modal .modal-footer button.modal-button.modal-countdown-abort {
  margin-right: auto;
  margin-left: 0;
  border: none;
  width: 120px;
  font-size: 0.8rem;
  white-space: pre;
  text-align: center;
}
.modal .modal-footer button.modal-button.modal-countdown-abort span:first-child {
  vertical-align: sub;
}
.modal .modal-footer button.modal-button.modal-countdown-abort:hover, .modal .modal-footer button.modal-button.modal-countdown-abort:focus {
  background-color: #ffc8a8 !important;
}
.modal .modal-countdown-timer {
  font-size: 1.2rem;
  vertical-align: text-bottom;
}
.modal .modal-countdown-timer:before {
  content: "(";
  display: inline-block;
  padding-right: 4px;
}
.modal .modal-countdown-timer:after {
  content: ")";
  display: inline-block;
  padding-left: 4px;
}
.modal .modal-content .input-field:last-child {
  margin-bottom: 0;
}
.modal .modal-content {
  padding-bottom: 12px;
}
.modal.modal-fixed-footer2 .modal-content {
  flex-grow: 1;
  flex-shrink: 1;
  overflow-y: auto;
}
@media screen and (max-width: 480px) {
  .modal {
    width: 96%;
  }
  .modal .modal-footer button.modal-button {
    flex-grow: 1;
    margin: 3px 0 !important;
  }
}

.tagged-frame {
  padding: 3px 3px 1px;
  position: relative;
}
.tagged-frame .tagged-elem, .tagged-frame[data-autocomplete-preview]:after {
  position: relative;
  margin-right: 3px;
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 0.8em;
  line-height: 1em;
  color: #ffffff;
  min-height: 20px;
  vertical-align: middle;
  word-wrap: break-word;
  word-break: break-word;
  white-space: break-spaces;
}
.tagged-frame .tagged-elem {
  border: 1px solid #26a69a;
  border-radius: 20px;
  padding: 12px 25px 12px 16px;
  background-color: #26a69a;
  display: inline-block;
}
.tagged-frame .tagged-elem:hover, .tagged-frame .tagged-elem.remove-focus {
  background-color: #5a938e;
}
.tagged-frame .tagged-remove {
  cursor: pointer;
}
.tagged-frame .tagged-remove:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  content: "";
  display: block;
  width: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill='none' stroke='%23bfffff' stroke-width='20' stroke-opacity='null' stroke-linejoin='undefined' stroke-linecap='undefined' d='M38 38l124 124m0-124L38 162'/%3E %3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.tagged-frame .tagged-remove:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill='none' stroke='%23232323' stroke-width='30' stroke-opacity='null' stroke-linejoin='undefined' stroke-linecap='undefined' d='M38 38l124 124m0-124L38 162'/%3E %3C/svg%3E");
}
.tagged-frame input.tagged-add {
  box-sizing: border-box;
  width: 100px;
  min-width: 100px;
  max-width: 100%;
  margin-bottom: 3px;
  border: 0;
  border-radius: 3px;
  padding-left: 4px;
  padding-right: 4px;
}
.tagged-frame input.tagged-add.tagged-error {
  background-color: #ffeded !important;
  border-bottom: 2px solid #ff7c7c !important;
}
.tagged-frame[data-autocomplete-preview]:after {
  content: attr(data-autocomplete-preview);
  display: inline-block;
  background-color: #999;
  border: 1px solid #26a69a;
  border-radius: 20px;
  padding: 12px 25px 12px 16px;
}
.tagged-frame .tagged-acl {
  display: none;
  background-color: #999;
  padding: 0;
  border-radius: 0;
  border: 1px solid #26a69a;
  width: calc(100% - 2px);
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 1px;
  line-height: 1.5;
  border-top-width: 0;
}
.tagged-frame .tagged-acl::before {
  content: "";
  display: block;
  pointer-events: none;
  content: attr(data-autocomplete-matchcount);
  font-family: monospace;
  font-size: 9px;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 0px 10px;
  text-align: right;
  height: 0;
}
.tagged-frame .tagged-acl.open {
  display: block;
}
.tagged-frame .tagged-acl .acl-suggestion {
  padding: 3px 10px;
}
.tagged-frame .tagged-acl .acl-suggestion.tagged-selected {
  background-color: #0c5460;
}
.tagged-frame .tagged-acl .acl-suggestion:hover {
  background-color: #26a69a;
  color: white;
}
.tagged-frame .tagged-acl .acl-suggestion mark {
  padding: 0;
  background-color: inherit;
  color: #ff7c7c;
}

.chip.chip-bg-color, .tag.chip-bg-color {
  background-color: var(--chip-bg-color, #bbbbbb);
}
.chip.chip-text-color, .tag.chip-text-color {
  color: var(--chip-text-color, #000);
}

.editable-hover .editable:not(.open)[data-value=""]::after,
.editable:not(.open)[data-value=""]::after {
  color: #ff5722;
  font-style: italic;
  content: "<empty>";
}

.editable-hover:hover .editable.changeable:not(.open),
.editable.changeable:not(.open):hover,
.editable.changeable:not(.open):focus {
  cursor: pointer;
}
.editable-hover:hover .editable.changeable:not(.open)::before,
.editable.changeable:not(.open):hover::before,
.editable.changeable:not(.open):focus::before {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  content: "create";
  background: #373737;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-family: "Material Icons", serif;
  font-weight: normal;
  font-style: normal;
  z-index: 1;
}

.editable.changeable.open {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
}
.editable.changeable.open > .editable_input,
.editable.changeable.open .dropdown-trigger,
.editable.changeable.open .pw-wrap > input {
  margin-bottom: 0;
  padding: 8px 16px 8px 16px;
  flex-shrink: 1;
  flex-grow: 1;
  height: inherit;
}
.editable.changeable.open .select-wrapper {
  display: flex;
}
.editable.changeable.open .select-wrapper .dropdown-trigger {
  line-height: normal;
}
.editable.changeable.open .pw-wrap {
  display: flex;
  padding: 0;
}
.editable.changeable.open .pw-wrap .pw-unhide {
  display: flex;
  width: 32px;
  flex-shrink: 0;
  flex-grow: 0;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  transition: background-color 0.4s, color 0.4s;
}
.editable.changeable.open .pw-wrap .pw-unhide:hover, .editable.changeable.open .pw-wrap .pw-unhide:focus {
  background-color: #373737;
  color: #fff;
}
.editable.changeable.open input {
  box-sizing: border-box;
}
.editable.changeable.open span.error {
  color: #df0000;
  display: block;
  padding: 2px 4px;
  font-size: 0.8em;
  background-color: rgba(255, 48, 0, 0.1215686275);
  font-weight: bold;
}

.pw-wrap.invalid > input[type=password]:focus {
  border-bottom: 1px solid #F44336;
  border-bottom-color: rgb(244, 67, 54);
  box-shadow: 0 1px 0 0 #f44336;
}

.editable_input.text-element-edit > .default-value {
  display: block;
  font-size: 0.8em;
  padding: 2px 12px;
  margin: 0 -12px 2px;
  background-color: #e5e5e5;
  min-height: 30px;
  cursor: pointer;
}
.editable_input.text-element-edit > .default-value:hover {
  background-color: #b6b6b6;
}
.editable_input.text-element-edit > .translations {
  display: block;
  font-size: 0.8em;
  padding: 0 0 0 0;
  margin: 0 -12px;
  border-top: 2px solid #000;
}
.editable_input.text-element-edit > .translations .lang-entry {
  display: flex;
  flex-direction: row;
}
.editable_input.text-element-edit > .translations .lang-entry .lang {
  font-weight: bold;
  display: block;
  padding-right: 2px;
  cursor: pointer;
  min-width: 50px;
  flex: 0 0 50px;
}
.editable_input.text-element-edit > .translations .lang-entry .lang:hover {
  background-color: #e5e5e5;
}
.editable_input.text-element-edit > .translations .lang-entry .lang:after {
  content: ": ";
}
.editable_input.text-element-edit > .translations .lang-entry .lang-text {
  cursor: pointer;
  padding: 0 2px;
  min-width: 50px;
  flex: 1 1 5px;
}
.editable_input.text-element-edit > .translations .lang-entry .lang-text:hover {
  background-color: #e5e5e5;
}
.editable_input.text-element-edit .actions {
  padding: 0 0 0 0;
  margin: 0 -12px;
  border-top: 2px solid #000;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.editable_input.text-element-edit .actions .add-entry {
  flex-basis: 1%;
  flex-grow: 1;
  flex-shrink: 1;
}
.editable_input.text-element-edit .actions .toggle-size,
.editable_input.text-element-edit .actions .auto-refresh-translations {
  padding: 0;
  display: flex;
  flex-direction: row;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
}
.editable_input.text-element-edit .actions .auto-refresh-translations {
  /* FIXME google autotranslate not implemented in js -> hide button */
  display: none !important;
}
.editable_input.text-element-edit.full-editor {
  z-index: 1000;
  background-color: #fff;
  position: fixed;
  border: 1px solid black;
  padding: 16px 36px;
  box-shadow: 0 0 16px #515151;
  top: 20%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 800px;
  min-height: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  .editable_input.text-element-edit.full-editor {
    top: 0;
    bottom: 0;
    max-height: 100vh;
    overflow-y: auto;
  }
}
.editable_input.text-element-edit.full-editor .actions {
  order: 10;
  margin: 0 0 10px 0;
  border-top: none;
}
.editable_input.text-element-edit.full-editor .editor-headline {
  order: 0;
  font-weight: bold;
  font-size: 1.2em;
  border-bottom: 1px solid #000;
}
.editable_input.text-element-edit.full-editor > .translations {
  order: 30;
  margin: 0;
}
.editable_input.text-element-edit.full-editor > .default-value {
  order: 20;
  margin: 0;
}
.editable_input.text-element-edit:not(.full-editor) .editor-headline, .editable_input.text-element-edit:not(.full-editor) .auto-refresh-translations {
  display: none;
}
.editable_input.text-element-edit:not(.full-editor) .editor-wrap {
  margin: 0 -12px;
}
.editable_input.text-element-edit .CodeMirror ul,
.editable_input.text-element-edit .editor-preview ul {
  list-style: initial;
  padding-left: revert;
}
.editable_input.text-element-edit .CodeMirror ul li,
.editable_input.text-element-edit .editor-preview ul li {
  list-style: initial;
}
.editable_input.text-element-edit > .editor-wrap {
  order: 15;
}
.editable_input.text-element-edit > .editor-wrap:not(.mde):before {
  content: "new_label";
  font-family: "Material Icons", serif;
  font-weight: normal;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  font-size: 110px;
  padding: 0;
  color: #ccc;
}
.editable_input.text-element-edit > .editor-wrap:not(.mde) > div {
  display: none;
}
.editable_input.text-element-edit .active-edit,
.editable_input.text-element-edit .translations .lang-entry .lang-text.active-edit,
.editable_input.text-element-edit .translations .lang-entry .lang.active-edit {
  background-color: #ffd87d;
  color: #000;
  cursor: progress;
}
.editable_input.text-element-edit .active-edit:hover,
.editable_input.text-element-edit .translations .lang-entry .lang-text.active-edit:hover,
.editable_input.text-element-edit .translations .lang-entry .lang.active-edit:hover {
  background-color: #f5bd6a;
}
.editable_input.text-element-edit .active-edit.has-error,
.editable_input.text-element-edit .translations .lang-entry .lang-text.active-edit.has-error,
.editable_input.text-element-edit .translations .lang-entry .lang.active-edit.has-error {
  background-color: #f56f6a;
  border: #bb1b4a;
}

/* floating label ----------------- */
.floating-label .error {
  background-color: transparent !important;
  font-style: italic;
  font-weight: bold;
  color: #ff2244;
  font-size: 0.8em;
}

.floating-label {
  position: relative;
  margin-top: 20px;
  margin-bottom: 3px;
}

.floating-label > input,
.floating-label > textarea,
.floating-label > select:not(:focus) {
  color: #333;
}

.floating-label > input,
.floating-label > select,
.floating-label > textarea {
  font-size: 14px;
  padding: 4px 4px;
  display: block;
  width: 100%;
  height: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #333;
}

.floating-label > textarea {
  overflow-y: auto;
}

.floating-label > input:focus,
.floating-label > select:focus,
.floating-label > textarea:focus {
  outline: none;
  border-bottom: 2px solid #f00;
}

.floating-label > select:focus {
  background-color: rgba(255, 255, 255, 0.4392156863);
}

.floating-label label {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  padding-left: 5px;
  top: 5px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  background-color: #fff;
  width: 100%;
}

.floating-label > input:not(:-moz-placeholder) ~ label, .floating-label > textarea:not(:-moz-placeholder) ~ label {
  top: -18px;
  font-size: 14px;
  color: #ff5718;
}

.floating-label > input:focus ~ label,
.floating-label > input:not(:placeholder-shown) ~ label,
.floating-label > textarea:focus ~ label,
.floating-label > textarea:not(:placeholder-shown) ~ label {
  top: -18px;
  font-size: 14px;
  color: #ff5718;
}

.floating-label textarea ~ label {
  height: 72px;
}

.floating-label > textarea:not(:-moz-placeholder) ~ label {
  height: 21px;
}

.floating-label > textarea:focus ~ label,
.floating-label > textarea:not(:placeholder-shown) ~ label {
  height: 21px;
}

.floating-label > input:-moz-placeholder ~ label {
  /* color: #ff5718; */
}

.floating-label > input:placeholder-shown ~ label {
  /* color: #ff5718; */
}

.floating-label > select:focus ~ label,
.floating-label > select:not([value=""]):valid ~ label {
  top: -18px;
  font-size: 14px;
  color: #ff5718;
}

.floating-label > textarea {
  min-height: 80px;
  min-width: 100%;
  max-width: 100%;
}

/* percentage bar -------- */
.percentage-bar-text {
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -1px;
  text-align: center;
  text-shadow: 0px 0px 2px #fff;
  font-weight: bold;
  font-size: 13px;
}

.percentage-bar-got {
  height: 22px;
  width: 0;
  animation-name: percentage-bar-grow;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.percentage-bar {
  overflow: hidden;
}

@keyframes percentage-bar-grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.maintenance-reminder {
  /* background: #007bff; */
  background: #bb1b4a;
  color: #fff;
  display: block;
  position: relative;
  font-size: 11px;
}
.maintenance-reminder h6 {
  margin: 0 0 10px 0;
  font-size: 1.1em;
  font-weight: bold;
}
.maintenance-reminder div {
  font-size: 1em;
}

.maintenance-message {
  /* background: #007bff; */
  background: #393939;
  color: #fff;
  display: block;
  position: relative;
  font-size: 12px;
  width: 100%;
  max-width: 820px;
  padding: 10px 20px 20px;
  border: 1px solid #646464;
  margin-left: auto;
  margin-right: auto;
}
.maintenance-message h6 {
  margin: 0 0 10px 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #e55d1d;
}
.maintenance-message div {
  font-size: 1em;
}

.maintenance-announcement {
  background: #bb1b4a;
  color: #fff;
  display: block;
  position: relative;
  font-size: 11px;
}
.maintenance-announcement h6 {
  margin: 0 0 10px 0;
  font-size: 1.1em;
  font-weight: bold;
}
.maintenance-announcement div {
  font-size: 1em;
}

.btn,
.btn-large,
.btn-small,
.btn-flat,
.card-panel {
  border-radius: 0;
}

.btn-floating {
  border-radius: 50%;
}

.modal {
  background-color: #fff;
}

/* GENERAL  ==============================================  */
html {
  min-height: 100%;
  height: 100%;
  /*font-family:Arial, Helvetica, sans-serif;*/
}

body {
  min-height: 100%;
  height: 100%;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
  color: #000000;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
}

@media screen and (min-width: 577px) {
  body.horizontal {
    padding-top: 46px;
  }
}
::before, ::after, * {
  box-sizing: border-box;
}

button, input {
  border-radius: 0;
}

.hidden, .hide {
  display: none;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.flex-grow {
  flex-grow: 1;
}

.flex-stretch {
  align-items: stretch;
}

.grid {
  display: grid;
}

.grid-4-columns {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-3-columns {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-2-columns {
  grid-template-columns: 1fr 1fr;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Chrome/Safari/Opera */ /* Conqueror */
  -moz-user-select: none; /* Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently not supported by any browser */
  standard-user-select: none;
}

.nopointer {
  pointer-events: none;
}

.clear {
  clear: both;
}

.clearfix_a:after {
  content: "";
  clear: both;
}

.printonly {
  display: none;
}

.multiline {
  white-space: pre-line;
}

.cursor-pointer {
  cursor: pointer;
}

.table-fixed {
  table-layout: fixed;
}

code {
  white-space: pre-line;
  word-break: break-all;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
  font-size: 87.5%;
  color: #e83e8c;
}

.fonts-half {
  font-size: 0.5em;
}

.unit.unit-dot::after {
  content: ".";
  display: inline;
}

.unit.unit-euro::after {
  content: "€";
  display: inline;
}

.sticky-left {
  position: sticky;
  left: 0;
}

.spacer {
  min-height: 10px;
}

.hover-bg-gray:hover,
.hover-bg-gray:active {
  background-color: #d0d0d0;
}

.hover-bg-gray:hover .hover-bg-transparent,
.hover-bg-gray:active .hover-bg-transparent {
  background-color: transparent;
}

/* general format helper  ------------------------------- */
.min-30 {
  min-width: 30px;
}

.min-40 {
  min-width: 40px;
}

.min-50 {
  min-width: 50px;
}

.min-60 {
  min-width: 60px;
}

.min-75 {
  min-width: 75px;
}

.min-100 {
  min-width: 100px;
}

.min-110 {
  min-width: 110px;
}

.min-120 {
  min-width: 120px;
}

.min_height10 {
  min-height: 10px;
}

.max_height400 {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

.max_height500 {
  max-height: 500px;
}

.max_height600 {
  max-height: 600px;
}

.max_height700 {
  max-height: 700px;
}

.max_height766 {
  max-height: 766px;
}

.max_height800 {
  max-height: 800px;
}

.debug_pre {
  color: #fff;
  font-family: monospace;
  display: block;
  background: #a16d6e;
  width: calc(100% - 2 * 10px);
  margin-left: 10px;
  max-width: 800px;
  padding: 5px 10px;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.debug_pre_xdebug,
.xdebug-var-dump {
  display: block;
  border: 3px solid #a16d6e;
  margin-left: 10px;
  max-width: 800px;
  padding: 5px 10px;
  background: rgba(255, 0, 0, 0.0666666667);
  border-radius: 10px;
  margin-top: 10px;
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  standard-user-select: text;
  flex-shrink: 0;
}

.route_comment_pre {
  display: block;
  border: 3px solid #32fcc7;
  margin-left: 10px;
  max-width: 800px;
  padding: 5px 10px;
  background: rgba(53, 136, 96, 0.0666666667);
  border-radius: 10px;
  margin-top: 10px;
}

strong {
  font-weight: 800;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

.key-value {
  padding: 3px 0;
  display: flex;
  flex-direction: row;
}
.key-value .key {
  font-weight: bold;
  width: 50%;
}

.key-value.style2 .key {
  background-color: #cdcdcd;
  color: #000;
  padding: 1px 4px 0 10px;
}
.key-value.style2:hover .key, .key-value.style2 :focus-within .key {
  background-color: #000;
  color: #fff;
}
.key-value.style2 .value {
  border: 1px solid #c7c7c7;
}

.key-value-extended {
  display: block;
  width: 100%;
  position: relative;
  padding: 10px 13px 26px;
  background: #ededed;
}
.key-value-extended > .key-value {
  width: 100%;
  display: flex;
  flex-direction: row;
  border: 1px solid black;
  padding: 0;
  position: relative;
  margin-top: 2px;
}
.key-value-extended > .key-value > .key {
  width: 60%;
  display: inline-block;
  padding: 8px 16px;
  background-color: #232323;
  color: #fff;
  font-weight: bold;
}
.key-value-extended > .key-value > .key details {
  font-weight: normal;
  font-size: 0.8rem;
  color: #bdbdbd;
  padding-left: 10px;
}
.key-value-extended > .key-value > .key details summary {
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  margin-left: -10px;
}
.key-value-extended > .key-value > .value {
  display: inline-block;
  width: 40%;
  padding: 8px 37px 8px 16px;
  position: relative;
}
.key-value-extended > .key-value > .value:not(.open) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.key-value-extended > .key-value > .value:not(:hover) {
  padding-right: 8px;
}
.key-value-extended > .key-value:hover > .key {
  background-color: #000;
}
.key-value-extended > .key-value:hover > .value {
  background-color: #fff;
}
.key-value-extended > .info {
  margin: 5px 3px 3px;
  padding: 6px;
  font-size: 0.72em;
  background: #ddd;
  font-weight: bold;
  font-style: italic;
  color: #444;
}

.highlightYellow {
  animation: highlightYellowA 0.9s linear 1;
}

.highlightRed {
  animation: highlightRedA 0.9s linear 1;
}

.highlightGreen {
  animation: highlightGreenA 0.9s linear 1;
}

@keyframes highlightYellowA {
  0% {
    background: #ffff00;
  }
  100% {
    background: #fff;
  }
}
@keyframes highlightRedA {
  0% {
    background: #ff0000;
  }
  100% {
    background: #fff;
  }
}
@keyframes highlightGreenA {
  0% {
    background: #00a231;
  }
  100% {
    background: #fff;
  }
}
/* hTitle */
.hTitle {
  position: relative;
}

.hTitle[data-title]:not([data-title=""]):hover:after {
  opacity: 1;
  z-index: 1130;
  display: block;
  position: absolute;
  min-width: 90px;
  bottom: 30px;
  left: -20px;
  padding: 5px;
  color: #fff;
  font-size: 10px;
  border: 1px solid #000;
  background-color: #6c757d;
  content: attr(data-title);
}

.hTitle.hTitleBottom[data-title]:not([data-title=""]):hover:after {
  top: 30px;
  bottom: inherit;
}

.word-wrap-break-word {
  word-wrap: break-word;
}

.layout {
  position: relative;
  padding-left: 0;
  height: 100%;
}

.content-wrapper {
  height: 100%;
}

.main {
  padding: 0;
  position: relative;
  height: 100%;
  overflow: auto;
}
@media screen and (min-width: 576px) {
  .main {
    padding: 10px;
  }
}

.container-big-left,
.container-big-right {
  padding: 5px;
  order: 1;
  height: 100%;
  overflow: initial;
}
@media screen and (min-width: 576px) {
  .container-big-left,
  .container-big-right {
    overflow: auto;
    order: 0;
    width: calc(100% - 200px);
    padding-right: 5px;
  }
}

.container-big-right {
  padding-left: 5px;
  padding-right: 0;
  order: 1;
}
@media screen and (max-width: 576px) {
  .container-big-right {
    order: 1;
  }
}

.container-small-right,
.container-small-left {
  padding-left: 5px;
  width: 310px;
  order: 1;
  height: 100%;
  overflow-y: auto;
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 576px) {
  .container-small-right,
  .container-small-left {
    padding: 0 0 5px;
    width: 100%;
    order: 0;
    height: auto;
  }
}

.container-small-left {
  padding-right: 5px;
  padding-left: unset;
  order: 0;
  width: 250px;
}
@media screen and (max-width: 576px) {
  .container-small-left {
    padding: 0 0 5px;
    order: 0;
    width: 100%;
  }
}
.container-small-left .left-headline {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 577px) {
  .container-small-left .left-headline {
    min-height: 54px;
  }
}
@media (min-width: 577px) {
  .container-small-left .left-description {
    min-height: 3em;
  }
}
.container-small-left .left-head-stroke-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 577px) {
  .container-small-left .left-head-stroke-box {
    min-height: 149px;
  }
}
.container-small-left .left-head-stroke-box > hr {
  width: 100%;
}

.container-first {
  order: 0;
}

.container-small-right.no-padding,
.container-big-left.no-padding,
.container-small-left.no-padding,
.container-big-right.no-padding {
  padding: 0;
}

@media (min-width: 577px) {
  .data-red-wrap {
    border-top: 1px solid #f00;
    margin-top: 134px;
  }
}
@media (min-width: 992px) {
  .data-red-wrap {
    margin-top: 137px;
  }
}
@media (min-width: 1200px) {
  .data-red-wrap {
    margin-top: 140px;
  }
}

.main > .container-small-right.no-padding {
  margin: -5px 0 -5px -5px;
}
@media screen and (max-width: 576px) {
  .main > .container-small-right.no-padding {
    margin: -10px;
  }
}

.main > .container-small-left.no-padding {
  margin: -5px -5px -5px 0;
}
@media screen and (max-width: 576px) {
  .main > .container-small-left.no-padding {
    margin: -10px;
  }
}

.main > .container-big-left.no-padding {
  margin: -5px -5px -5px 0;
}
@media screen and (max-width: 576px) {
  .main > .container-big-left.no-padding {
    margin: -10px;
  }
}

.main > .container-big-right.no-padding {
  margin: -5px 0 -5px -5px;
}
@media screen and (max-width: 576px) {
  .main > .container-big-right.no-padding {
    margin: -10px;
  }
}

.container-border.container-small-right {
  border-left: 1px solid #c2c2c2;
}
.container-border.container-small-left {
  border-right: 1px solid #c2c2c2;
}
@media screen and (max-width: 576px) {
  .container-border.container-small-right {
    border-left: 0;
    border-bottom: 1px solid #c2c2c2;
  }
  .container-border.container-small-left {
    border-right: 0;
    border-bottom: 1px solid #c2c2c2;
  }
}

details.no-triangle > summary,
details.no-marker > summary,
details.no-summary-marker > summary {
  list-style: none;
}
details.no-triangle > summary::-webkit-details-marker,
details.no-marker > summary::-webkit-details-marker,
details.no-summary-marker > summary::-webkit-details-marker {
  display: none;
}

.yes-no_after[data-value="0"]::after,
.yes-no_after[data-value="1"]::after {
  display: inline-block;
}

.yes-no_after[data-value="0"]::after {
  content: "No";
}

.yes-no_after[data-value="1"]::after {
  content: "Yes";
}

html[lang=de] .yes-no_after[data-value="0"]::after {
  content: "Nein";
}
html[lang=de] .yes-no_after[data-value="1"]::after {
  content: "Ja";
}

.content-by-value[data-value]::after {
  content: attr(data-value);
}

.mark-empty[data-value=""]::after, .mark-empty.empty::after {
  color: #ff5722;
  font-style: italic;
  content: "<empty>";
}

.inner-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  position: relative;
}

@media (max-width: 1200px) {
  .container-small-left,
  .container-small-right {
    width: 24%;
    min-width: 170px;
  }
  .container-big-left, .container-big-right {
    flex-grow: 1;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .container-small-left,
  .container-small-right {
    width: 100%;
    min-width: inherit;
  }
}
:root {
  --navigation_width: calc(180px + 12px );
}

input#menu-toggle {
  display: none;
}

input#menu-toggle:checked ~ .layout.nav-vertical > .menu,
input#menu-toggle:checked ~ .layout.nav-vertical2 > .menu {
  left: 180px;
}
input#menu-toggle:checked ~ .layout.nav-vertical > .menu-toggle-label,
input#menu-toggle:checked ~ .layout.nav-vertical2 > .menu-toggle-label {
  position: fixed;
  left: 180px;
}

@media screen and (max-width: 576px) {
  input#menu-toggle:checked ~ .layout > .menu {
    left: 180px;
  }
  input#menu-toggle:checked ~ .layout > .menu-toggle-label {
    position: fixed;
    left: 180px;
  }
}
.layout, .layout > .menu, .layout > .menu-toggle-label {
  transition: all 0.2s ease-out;
}
.layout .logo-wrap {
  order: 10;
}
.layout .logo-wrap .img {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-origin: content-box;
  padding: 15px 20px;
  height: 46px;
  background-color: #0f0f0f;
  background-image: url("/img/logos/default/base_logo_light");
  background-image: var(--navigation-branch-logo, url("/img/logos/default/base_logo_light"));
  width: 180px;
}
.layout .menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #191818;
}
.layout .menu .navigation-wrap {
  order: 20;
  flex-grow: 1;
}
.layout .menu .navigation-wrap ul {
  padding: 0;
}
.layout .menu .navigation-wrap li {
  list-style: none;
}
.layout .menu .navigation-wrap ul li span:not(.nav-item-text), .layout .menu .navigation-wrap ul li a {
  display: block;
  padding: 4px 10px;
  text-align: left;
}
.layout .menu .navigation-wrap ul li > a, .layout .menu .navigation-wrap ul li > a.menu-entry {
  cursor: pointer;
  color: #49a9d7;
  text-decoration: none;
}
.layout .menu .navigation-wrap ul li ul > li {
  border-left: 8px solid #999;
}
.layout .menu .navigation-wrap ul li ul {
  padding: 0;
}
.layout .menu .navigation-wrap a.menu-entry.active, .layout .menu .navigation-wrap a.menu-headline.active {
  background-color: #373737;
}
@media screen and (min-width: 577px) {
  .layout .menu .navigation-wrap details.active {
    background-color: #373737;
  }
}
.layout .menu .navigation-wrap details > summary::-webkit-details-marker {
  display: none;
}
.layout .menu .menu-headline {
  color: #fff;
}
.layout .menu .menu-headline:hover {
  color: #999;
}
.layout .menu .menu-entry {
  color: #999;
}
.layout .menu .menu-entry:hover {
  background-color: #eeeeee !important;
}
.layout > .menu-toggle-label {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  background: rgba(76, 76, 76, 0.6);
  font-size: 2rem;
  line-height: 4rem;
  z-index: 10;
  width: 4rem;
  height: 4rem;
  text-align: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.layout > .menu-toggle-label:hover {
  background: #000;
  color: #eeeeee;
}

.layout.nav-vertical .menu, .layout.nav-vertical2 .menu {
  flex-direction: column;
  margin-left: -180px;
  width: 180px;
  bottom: 0;
  overflow-y: auto;
}
.layout.nav-vertical .menu .navigation-wrap, .layout.nav-vertical2 .menu .navigation-wrap {
  flex-direction: column;
  display: flex;
  justify-content: flex-end;
}
.layout.nav-vertical .menu .navigation-wrap ul li details, .layout.nav-vertical .menu .navigation-wrap ul li details > summary, .layout.nav-vertical2 .menu .navigation-wrap ul li details, .layout.nav-vertical2 .menu .navigation-wrap ul li details > summary {
  display: block;
  border: 0;
  padding: 0;
  list-style: none;
}
.layout.nav-vertical .menu .navigation-wrap > ul, .layout.nav-vertical2 .menu .navigation-wrap > ul {
  flex-shrink: 0;
  flex-grow: 0;
}
.layout.nav-vertical .menu .navigation-wrap > ul[data-group=core], .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core] {
  flex-grow: 1;
}
.layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_end], .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] {
  order: 100;
}
.layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_end] > li > a, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a {
  padding: 2px 10px;
}
.layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_user], .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_user] {
  display: flex;
  flex-direction: row;
  order: 500;
  margin: 0;
}
.layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_user] a, .layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_user] a:hover, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_user] a, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_user] a:hover {
  color: #49a9d7;
  padding: 0;
  height: 30px;
  line-height: 30px;
  display: inline-block;
}
.layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_user] > li, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_user] > li {
  flex-shrink: 0;
  flex-grow: 1;
  text-align: center;
}
.layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_user] > li:hover, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_user] > li:hover {
  background-color: rgba(76, 76, 76, 0.6);
}
.layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_user] > li:last-child, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child {
  flex-shrink: 0;
  flex-grow: 0;
  width: 30px;
}
.layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a, .layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:hover, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:hover {
  color: #fff;
}
.layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a i, .layout.nav-vertical .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:hover i, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a i, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:hover i {
  margin: 0 !important;
}
@media (min-width: 75em) {
  .layout.nav-vertical, .layout.nav-vertical2 {
    padding-left: 180px;
    left: 0;
  }
  .layout.nav-vertical > .menu, .layout.nav-vertical2 > .menu {
    left: 180px;
  }
  .layout.nav-vertical > .menu-toggle-label, .layout.nav-vertical2 > .menu-toggle-label {
    position: fixed;
    left: 180px;
    display: none;
  }
}

.layout.nav-vertical3 {
  /* override default values*/
  padding-left: 46px;
  left: 0;
}
.layout.nav-vertical3 > .content-wrapper > .main {
  padding: 2px;
}
@media screen and (max-width: 576px) {
  .layout.nav-vertical3 input#menu-toggle:checked ~ .layout > .menu {
    left: 0;
  }
  .layout.nav-vertical3 input#menu-toggle:checked ~ .layout > .menu-toggle-label {
    position: fixed;
    left: 0;
  }
}
.layout.nav-vertical3 .menu .debug-wrap {
  position: fixed;
  display: block;
  background-color: #191818;
  top: calc(100% - 20px);
  z-index: 10;
  padding: 4px;
  width: 100px;
  left: calc(100% - 100px);
}
.layout.nav-vertical3 .menu .debug-wrap:hover, .layout.nav-vertical3 .menu .debug-wrap:focus, .layout.nav-vertical3 .menu .debug-wrap:focus-within, .layout.nav-vertical3 .menu .debug-wrap:active, .layout.nav-vertical3 .menu .debug-wrap:target {
  position: fixed;
  top: -1px;
  bottom: calc(100% - 235px);
  overflow-y: auto;
  z-index: 300;
  border: 1px solid #ddd;
  left: calc(100% - 180px);
  width: 180px;
}
.layout.nav-vertical3 .menu {
  flex-direction: column;
  margin-left: calc(0 - var(--navigation_width));
  width: 46px;
  bottom: 0;
  /*overflow-y: auto;*/
}
.layout.nav-vertical3 .menu .navigation-wrap {
  flex-direction: column;
  display: flex;
  justify-content: flex-end;
}
.layout.nav-vertical3 .menu .navigation-wrap ul:not([data-group=core_user]) li span:not(.nav-item-text),
.layout.nav-vertical3 .menu .navigation-wrap ul:not([data-group=core_user]) li a {
  padding: 4px 12px;
  white-space: nowrap;
  background-color: #191818;
  overflow: hidden;
}
.layout.nav-vertical3 .menu .navigation-wrap .nav-item-text {
  white-space: normal;
  display: inline-table;
  word-break: break-all;
  overflow: visible;
  width: calc(var(--navigation_width) - 46px - 12px);
  background-color: inherit;
}
.layout.nav-vertical3 .menu .navigation-wrap ul li details, .layout.nav-vertical3 .menu .navigation-wrap ul li details > summary {
  display: block;
  border: 0;
  padding: 0;
  list-style: none;
  width: var(--navigation_width);
}
.layout.nav-vertical3 .menu .navigation-wrap ul li details > summary > span::after {
  content: "+";
}
.layout.nav-vertical3 .menu .navigation-wrap > ul {
  flex-shrink: 0;
  flex-grow: 0;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul > li > a > i,
.layout.nav-vertical3 .menu .navigation-wrap > ul > li details summary i {
  margin-right: 14px !important;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core] {
  flex-grow: 1;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] {
  order: 100;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a {
  padding: 2px 10px;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] {
  display: flex;
  flex-direction: column;
  order: 500;
  margin: 0;
  width: 100%;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] a, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] a:hover, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] a:focus, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] a:focus-within, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] a:active, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] a:target {
  color: #49a9d7;
  padding: 0;
  min-height: 30px;
  line-height: 30px;
  display: inline-block;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li {
  flex-shrink: 0;
  flex-grow: 1;
  text-align: center;
  align-content: end;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:hover, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:focus, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:focus-within, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:active, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:target {
  background-color: rgba(76, 76, 76, 0.6);
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  width: unset;
  height: 30px;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a {
  width: 20px;
  text-align: center;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:hover, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:focus, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:focus-within, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:active, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:target {
  color: #fff;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a i, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:hover i, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:focus i, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:focus-within i, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:active i, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:target i {
  margin: 0 !important;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:first-child {
  /*width: 14px;*/
  /*overflow: hidden;*/
  /*padding-left: 14px;*/
  transition: all 0.2s ease-out;
  white-space: nowrap;
  width: 46px;
  height: 30px;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:first-child > a {
  width: 100%;
  overflow: hidden;
  /*display: none;*/
  transition: all 0.2s ease-out;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_user] > li:first-child > a::before {
  display: inline;
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  text-align: center;
  content: "\f007";
  color: inherit;
  margin-left: 16px;
  margin-right: 16px;
  display: inline-block;
  line-height: 30px;
}
.layout.nav-vertical3 .menu .navigation-wrap ul li ul > li {
  border-left: none;
  font-size: 0.8em;
  padding-left: 15px;
}
.layout.nav-vertical3 .menu .navigation-wrap ul li ul > li .fa, .layout.nav-vertical3 .menu .navigation-wrap ul li ul > li .material-icons {
  display: none;
}
.layout.nav-vertical3 .menu > .logo-wrap, .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li {
  width: 46px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
.layout.nav-vertical3 .menu > .logo-wrap:hover, .layout.nav-vertical3 .menu > .logo-wrap:focus, .layout.nav-vertical3 .menu > .logo-wrap:focus-within, .layout.nav-vertical3 .menu > .logo-wrap:active, .layout.nav-vertical3 .menu > .logo-wrap:target, .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li:hover, .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li:focus, .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li:focus-within, .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li:active, .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li:target {
  width: var(--navigation_width);
  overflow: visible;
}
.layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li > details:not(:hover, :focus, :focus-within, :active, :target), .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li > a:not(:hover) {
  height: 32px;
}
.layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li:hover, .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li:focus, .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li:focus-within, .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li:active, .layout.nav-vertical3 .menu > .navigation-wrap > ul:not([data-group=core_user]) > li:target {
  height: unset;
}
.layout.nav-vertical3 .menu > .logo-wrap .img {
  width: calc(var(--navigation_width) - 46px);
  margin-left: 46px;
  margin-left: 46px;
  background-color: rgba(15, 15, 15, 0.537254902);
  padding: 10px;
}
.layout.nav-vertical3 .menu:hover .logo-wrap, .layout.nav-vertical3 .menu:focus .logo-wrap, .layout.nav-vertical3 .menu:focus-within .logo-wrap, .layout.nav-vertical3 .menu:active .logo-wrap, .layout.nav-vertical3 .menu:target .logo-wrap {
  overflow: visible;
  background-color: red;
}
.layout.nav-vertical3 > .menu-toggle-label {
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  line-height: 46px;
  color: var(--light);
  z-index: 1000;
  transform: rotateZ(90deg);
}
.layout.nav-vertical3 > .menu {
  /* left: calc(0 - var(--navigation_width));*/
}
@media (min-width: 75em) {
  .layout.nav-vertical3 {
    /*padding-left: $navigation-logo-height;*/
    /*left: 0;*/
  }
  .layout.nav-vertical3 > .menu {
    /*left: - var(--navigation_width);*/
  }
  .layout.nav-vertical3 > .menu-toggle-label {
    /*position: fixed;*/
  }
}

input#menu-toggle:checked ~ .layout.nav-vertical3 {
  /*padding-left: var(--navigation_width);*/
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu {
  width: var(--navigation_width);
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu .navigation-wrap ul:not([data-group=core_user]) li {
  width: var(--navigation_width);
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu .navigation-wrap ul:not([data-group=core_user]) li > details, input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu .navigation-wrap ul:not([data-group=core_user]) li > a {
  height: unset;
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu .navigation-wrap > ul[data-group=core_user] {
  flex-direction: row;
  align-items: flex-end;
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu .navigation-wrap > ul[data-group=core_user] > li:first-child {
  width: calc(var(--navigation_width) - 20px);
  padding-left: 0px;
  height: unset;
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu .navigation-wrap > ul[data-group=core_user] > li:first-child > a {
  width: 100%;
  display: block;
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu .navigation-wrap > ul[data-group=core_user] > li:first-child > a::before {
  content: unset;
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu .navigation-wrap > ul[data-group=core_user] > li:last-child {
  width: 20px;
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu .navigation-wrap ul li ul > li {
  padding-left: 30px;
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu .logo-wrap {
  overflow: visible;
  background-color: red;
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu-toggle-label {
  transform: rotateZ(0deg);
}
input#menu-toggle:checked ~ .layout.nav-vertical3 > .menu-toggle-label > i:before {
  content: "\f00d";
}
@media screen and (min-width: 577px) {
  .layout.nav-horizontal > .menu-toggle-label {
    display: none;
  }
  .layout.nav-horizontal .menu {
    flex-direction: row;
    width: 100%;
    height: 46px;
    right: 0;
  }
  .layout.nav-horizontal .menu .navigation-wrap {
    display: flex;
    flex-direction: row;
  }
  .layout.nav-horizontal .menu .navigation-wrap ul li > a, .layout.nav-horizontal .menu .navigation-wrap ul li > a.menu-entry {
    white-space: nowrap;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul {
    display: flex;
    flex-direction: row;
    height: 46px;
    margin: 0;
    align-items: center;
  }
  .layout.nav-horizontal .menu .navigation-wrap details summary {
    list-style: none;
    cursor: pointer;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul > li {
    margin: 0;
    position: relative;
    height: 100%;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > details,
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > details > summary,
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > span,
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > a {
    height: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > details > i,
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > details > summary > i,
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > span > i,
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > a > i {
    margin: 0 !important;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > span,
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > a,
  .layout.nav-horizontal .menu .navigation-wrap > ul > li details summary > span,
  .layout.nav-horizontal .menu .navigation-wrap > ul > li details summary > a {
    padding: 0 10px;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul > li > details > .details-content {
    position: absolute;
    top: 46px;
    left: -5px;
    padding: 5px;
    min-width: 180px;
    background-color: #191818;
  }
  .layout.nav-horizontal .menu .navigation-wrap ul li ul > li {
    border-left-width: 5px;
  }
  .layout.nav-horizontal .menu .navigation-wrap .menu-headline {
    cursor: pointer;
  }
  .layout.nav-horizontal .menu .navigation-wrap .menu-headline.path-active {
    background-color: #373737;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul {
    flex-shrink: 0;
    flex-grow: 0;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core] {
    flex-grow: 1;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core_end] {
    order: 100;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core_end] > li > a {
    padding: 2px 10px;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core_user] {
    display: flex;
    flex-direction: row;
    order: 500;
    margin: 0;
    flex-grow: 0;
    flex-shrink: 0;
    align-items: center;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core_user] a, .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core_user] a:hover {
    color: #49a9d7;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-content: center;
    text-align: center;
    line-height: 1em;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core_user] > li {
    flex-shrink: 0;
    flex-grow: 1;
    text-align: center;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core_user] > li:hover {
    background-color: rgba(76, 76, 76, 0.6);
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core_user] > li:last-child {
    flex-shrink: 0;
    flex-grow: 0;
    width: 46px;
  }
  .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a, .layout.nav-horizontal .menu .navigation-wrap > ul[data-group=core_user] > li:last-child a:hover {
    color: #fff;
  }
}
@media screen and (max-width: 576px) {
  .layout.nav-horizontal .menu {
    flex-direction: column;
    margin-left: -180px;
    width: 180px;
    bottom: 0;
    overflow-y: auto;
  }
  .layout.nav-horizontal .menu .navigation-wrap ul li details, .layout.nav-horizontal .menu .navigation-wrap ul li details > summary {
    display: block;
    border: 0;
    padding: 0;
    list-style: none;
  }
}

.scroll2top,
.scroll2top.btn,
.scroll2top.btn-floating {
  position: absolute !important;
  bottom: 10px;
  right: 16px;
  border-radius: 50%;
  background-color: #373737;
}
.scroll2top:hover,
.scroll2top.btn:hover,
.scroll2top.btn-floating:hover {
  background-color: #191818;
}
@media (min-width: 1280px) {
  .scroll2top,
  .scroll2top.btn,
  .scroll2top.btn-floating {
    margin-top: -56px;
  }
}

.smooth-scroll {
  scroll-behavior: smooth;
}

.navigation-wrap ul[data-group=core_end] > li > a.menu-headline:not(:hover, :focus, :focus-within, :active, :target) {
  color: #fff;
}
.navigation-wrap ul[data-group=core_user] > li > a.menu-headline[href="/user"] {
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
  line-height: 1em !important;
}
.navigation-wrap ul[data-group=core_user] > li > a.menu-headline[href="/user"] > small.current-branch {
  font-size: 0.6em;
  display: block;
}

.layout.nav-vertical2 .menu .navigation-wrap ul li ul > li {
  border-left: none;
  font-size: 0.8em;
  padding-left: 30px;
}
.layout.nav-vertical2 .menu .navigation-wrap ul li ul > li .fa, .layout.nav-vertical2 .menu .navigation-wrap ul li ul > li .material-icons {
  display: none;
}
.layout.nav-vertical2 .menu .navigation-wrap > ul > li > details > summary > span {
  padding: 14px 10px;
}
.layout.nav-vertical2 .menu .navigation-wrap > ul > li > details.active-child > summary > span:not(:hover):not(:focus):not(:focus-within) {
  background-color: #2a3a44;
}
.layout.nav-vertical2 .menu .navigation-wrap > ul > li > details.active-child > summary > span:hover, .layout.nav-vertical2 .menu .navigation-wrap > ul > li > details.active-child > summary > span:focus, .layout.nav-vertical2 .menu .navigation-wrap > ul > li > details.active-child > summary > span:focus-within {
  background-color: #eee;
  color: #2c2c2c;
}
.layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a {
  padding: 14px 10px;
}
.layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a.impress-link, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a.privacy-link {
  padding: 4px 10px;
  font-size: 0.8em;
}
.layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a.impress-link:not(:hover), .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a.privacy-link:not(:hover) {
  color: #aaa;
}
.layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a.impress-link:hover, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a.impress-link:focus, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a.impress-link:focus-within, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a.privacy-link:hover, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a.privacy-link:focus, .layout.nav-vertical2 .menu .navigation-wrap > ul[data-group=core_end] > li > a.privacy-link:focus-within {
  background-color: #eee;
  color: #2c2c2c;
}

.layout.nav-vertical3 .menu .navigation-wrap ul li ul > li {
  /*border-left: none;*/
  /*font-size: 0.8em;*/
  /*padding-left: 15px;*/
}
.layout.nav-vertical3 .menu .navigation-wrap ul li ul > li .fa, .layout.nav-vertical3 .menu .navigation-wrap ul li ul > li .material-icons {
  /*display: none;*/
}
.layout.nav-vertical3 .menu .navigation-wrap > ul:not([data-group=core_user]) > li > details > summary > span:not(.nav-item-text) {
  /*padding: 14px 14px;*/
}
.layout.nav-vertical3 .menu .navigation-wrap > ul > li > details.active-child > summary > span:not(:hover):not(:focus):not(:focus-within) {
  background-color: #2a3a44;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul > li > details.active-child > summary > span:hover, .layout.nav-vertical3 .menu .navigation-wrap > ul > li > details.active-child > summary > span:focus, .layout.nav-vertical3 .menu .navigation-wrap > ul > li > details.active-child > summary > span:focus-within {
  background-color: #eee;
  color: #2c2c2c;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a {
  padding: 12px 10px;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a.impress-link, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a.privacy-link {
  padding: 4px 10px;
  font-size: 0.8em;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a.impress-link:not(:hover), .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a.privacy-link:not(:hover) {
  color: #aaa;
}
.layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a.impress-link:hover, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a.impress-link:focus, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a.impress-link:focus-within, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a.privacy-link:hover, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a.privacy-link:focus, .layout.nav-vertical3 .menu .navigation-wrap > ul[data-group=core_end] > li > a.privacy-link:focus-within {
  background-color: #eee;
  color: #2c2c2c;
}

@media screen and (max-width: 576px) {
  .layout.nav-vertical3 {
    --navigation_width:100%;
    padding-left: 0;
    padding-top: 46px;
  }
  .layout.nav-vertical3 .menu {
    width: 80% !important;
    overflow: visible;
    flex-direction: column;
    flex-wrap: wrap;
    left: -80%;
  }
  .layout.nav-vertical3 .menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 46px;
    order: 5;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .layout.nav-vertical3 .menu > .logo-wrap,
  .layout.nav-vertical3 .menu > .logo-wrap:hover {
    width: 180vw;
    position: absolute;
    top: 0;
    left: 80vw;
    background: inherit;
  }
  .layout.nav-vertical3 .menu > .logo-wrap > .img,
  .layout.nav-vertical3 .menu > .logo-wrap:hover > .img {
    width: calc(100% - 92px);
    background-position: left;
  }
  .layout.nav-vertical3 .menu .navigation-wrap,
  .layout.nav-vertical3 .menu .debug-wrap {
    width: 100%;
  }
  .layout.nav-vertical3 .menu .navigation-wrap {
    order: 10;
  }
  .layout.nav-vertical3 .menu .navigation-wrap .nav-item-text {
    width: calc(100% - 46px);
  }
  .layout.nav-vertical3 .menu .navigation-wrap ul:not([data-group=core_user]) li {
    width: 100%;
  }
  .layout.nav-vertical3 .menu .debug-wrap:hover,
  .layout.nav-vertical3 .menu .debug-wrap:not(:hover) {
    position: relative;
    order: 15;
    width: 100%;
    color: white;
    background-color: #002134;
    height: -moz-fit-content;
    height: fit-content;
    overflow: visible;
    text-indent: 0;
    border: 1px solid #ddd;
    left: unset;
    top: unset;
    bottom: unset;
    height: 22px;
  }
  .layout.nav-vertical3 .menu .debug-wrap:hover,
  .layout.nav-vertical3 .menu .debug-wrap:active,
  .layout.nav-vertical3 .menu .debug-wrap:focus,
  .layout.nav-vertical3 .menu .debug-wrap:focus-within,
  .layout.nav-vertical3 .menu .debug-wrap:target {
    height: unset;
  }
  .layout.nav-vertical3 .menu-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
  }
  input#menu-toggle:checked ~ .layout.nav-vertical3 .menu {
    left: 0%;
  }
  input#menu-toggle:checked ~ .layout.nav-vertical3 .menu .logo-wrap {
    left: 0;
    background-color: inherit;
    border-bottom: 1px solid white;
  }
  input#menu-toggle:checked ~ .layout.nav-vertical3 .menu .navigation-wrap ul:not([data-group=core_user]) li {
    width: 100%;
  }
  input#menu-toggle:checked ~ .layout.nav-vertical3 .menu-toggle-label {
    position: absolute;
    left: 0;
  }
}
.navigation-color-code {
  background-color: #ff99fc;
  display: block;
  order: 9999;
  position: absolute;
  left: 0;
  width: 4px;
  height: 100%;
  top: 0;
}

body > pre {
  margin-top: 10px;
}

.layout .menu pre.debug_pre {
  max-width: 100%;
}

pre.debug_pre .xdebug-var-dump {
  flex-shrink: 0;
}
pre.debug_pre .xdebug-var-dump font {
  color: #010032;
  display: block;
  width: 100%;
  white-space: pre-line;
  font-size: 0.8em;
}

@media (min-width: 75em) {
  body:not(.horizontal) > pre.debug_pre {
    margin-left: calc(180px + 10px);
    width: calc(98% - 180px - 10px);
  }
}
.error_box {
  color: #fff;
  width: 100%;
  max-width: 620px;
  background-color: #393939;
  padding: 10px 20px 20px;
  border: 1px solid #646464;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9em;
}
.error_box .bottom-error-code {
  font-family: monospace;
  font-size: 70px;
  text-align: center;
  color: #e55d1d;
  padding-top: 28px;
  line-height: 64px;
}
.error_box a {
  color: #ffd87d;
}
.error_box h3, .error_box h4, .error_box h5 {
  font-weight: 500;
  line-height: 1.2;
}
.error_box h3 {
  font-size: 1.8rem;
  color: #e55d1d;
  margin: 14px 0 10px;
}
.error_box h4 {
  font-size: 1.2rem;
  margin: 14px 0 0;
}
.error_box h4 + p, .error_box h5 + span {
  font-size: 0.8rem;
}
.error_box h5 {
  margin: 10px 0 16px;
  font-size: 1.2rem;
}
.error_box > span {
  display: block;
  font-weight: bold;
  font-size: 1.2em;
}
.error_box > div {
  display: block;
  width: 100%;
}

.main.content.error {
  display: flex;
  flex-direction: column;
}
.main.content.error > pre.debug_pre {
  margin-left: auto;
  margin-right: auto;
  order: 100;
  flex-shrink: 0;
  flex-grow: 0;
}
.main.content.error .error_box {
  order: 1;
  margin-bottom: 30px;
  flex-shrink: 0;
  flex-grow: 0;
}

/* Profiling  ==============================================  */
.nav-vertical .menu .debug-wrap {
  order: 100;
  height: 50px;
  flex-shrink: 0;
  background-color: #0f0f0f;
  overflow-y: auto;
  padding: 5px 5px;
}

@media screen and (max-width: 576px) {
  .nav-horizontal .menu .debug-wrap, .nav-vertical2 .menu .debug-wrap {
    order: 100;
    height: 50px;
    flex-shrink: 0;
    background-color: #0f0f0f;
    overflow-y: auto;
    padding: 5px 5px;
  }
}
.menu .debug-wrap {
  color: #fff;
  font-size: 0.6em;
}
.menu .debug-wrap .desc {
  font-weight: bold;
  display: inline-block;
  width: 50px;
}
.menu .debug-wrap .value {
  line-break: anywhere;
}
.menu .debug-wrap details summary::-webkit-details-marker {
  display: none;
}
.menu .debug-wrap details > summary {
  list-style: none;
}
.menu .debug-wrap details > summary::-webkit-details-marker {
  display: none;
}

@media screen and (min-width: 577px) {
  .nav-horizontal .menu .debug-wrap, .nav-vertical2 .menu .debug-wrap, .nav-vertical3 .menu .debug-wrap {
    position: fixed;
    display: block;
    background-color: #191818;
    top: calc(100% - 20px);
    left: 0;
    width: 180px;
    z-index: 10;
    padding: 4px;
  }
  .nav-horizontal .menu .debug-wrap:hover, .nav-vertical2 .menu .debug-wrap:hover, .nav-vertical3 .menu .debug-wrap:hover {
    position: fixed;
    bottom: -1px;
    top: calc(100% - 235px);
    overflow-y: auto;
    z-index: 300;
    border: 1px solid #ddd;
  }
}
.nav-vertical2 .menu .debug-wrap:not(:hover),
.nav-vertical3 .menu .debug-wrap:not(:hover) {
  background-color: transparent;
  bottom: calc(100% - 20px);
  top: 0;
  overflow: hidden;
  text-indent: -9999px;
}
.nav-vertical2 .menu .debug-wrap:hover,
.nav-vertical3 .menu .debug-wrap:hover {
  top: -1px;
  bottom: calc(100% - 235px);
}

.container-big-left, .container-big-right {
  /*padding: 5px;*/
  /*order: 1;*/
  /*width: 100%;*/
  /* display: block; */
}

.flex-sm-row {
  /* display: block; */
}

.flex-column {
  /* display: block; */
}

.grid-button-wrap {
  /* display: block; */
}

.container-small-right, .container-small-left {
  /* display: block; */
}

@media screen and (min-width: 576px) {
  .container-big-left, .container-big-right {
    /* display: block; */
    /*order:0;*/
  }
  .grid-button-wrap {
    /* display: block; */
  }
  .flex-sm-row {
    /* display: block; */
  }
  .flex-column {
    /* display: block; */
  }
  .container-small-right, .container-small-left {
    /* display: block; */
  }
}

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