@charset "UTF-8";
*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-font-family: "Roboto", sans-serif;
  --primary-font-size: 14px;
  --primary-background-color: #F8F9FA;
  --content-text-color: #334C56;
  --card-border-color: #CECECE;
  --card-box-shadow: 0 0 0.3125rem #1718180d,0 0.0625rem 0.125rem #00000026;
  --hover-background-color: #f5f5f5;
  /* NAVEGADOR */
  --nav-width: 250px;
  /* HEADER */
  --header-height: 80px;
  /*FOOTER*/
  --footer-height: 0px;
}

body {
  margin: 0;
  background-color: var(--primary-background-color);
}

.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(71, 71, 71, 0.22);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: var(--header-height);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}
.header__item {
  width: auto;
  height: 100%;
  padding: 0 15px;
  cursor: pointer;
  color: #cecece;
  font-size: 1.2em;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__user {
  width: 100px;
  height: 100%;
  position: relative;
  padding: 0 15px;
  color: #6302ef;
  cursor: pointer;
  font-size: 1.5em;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
}
.header__user:hover {
  background-color: var(--hover-background-color);
}
.header__nav-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
}
.header__checkbox {
  width: var(--header-height);
  height: 100%;
  color: #cecece;
  position: relative;
  display: none;
}
.header__logout-btn {
  width: var(--header-height);
  height: 100%;
  color: #939598;
  text-decoration: none;
  border: none;
  font-size: 18px;
  background-color: transparent;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .header__logo {
    display: none;
  }
  .header__checkbox {
    display: block;
  }
}
.header__checkbox input {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  margin: 0;
  z-index: 5;
  cursor: pointer;
}
.header__checkbox .open-nav-icon {
  display: flex;
}
.header__checkbox .close-nav-icon {
  display: none;
}
.header__checkbox input:checked ~ .open-nav-icon {
  display: none;
}
.header__checkbox input:checked ~ .close-nav-icon {
  display: flex;
}

.nav {
  width: 85%;
  max-width: var(--nav-width);
  height: calc(100vh - var(--header-height));
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  margin-top: var(--header-height);
  transition: left 0.7s ease-out;
  -webkit-transition: left 0.5s ease-out;
  -moz-transition: left 0.7s ease-out;
  -ms-transition: left 0.7s ease-out;
  -o-transition: left 0.7s ease-out;
  border-right: 1px solid #cecece;
  font-family: var(--primary-font-family);
  overflow-y: auto;
}
@media only screen and (max-width: 900px) {
  .nav {
    left: calc(var(--nav-width) * -1);
  }
}
.nav__item {
  width: 100%;
  height: 50px;
  color: var(--content-text-color);
  text-decoration: none;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__item-box {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.nav__item-box--gray {
  color: #939598;
}
.nav__item-box:hover {
  background-color: var(--hover-background-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.nav__item-box.active {
  color: #2980b9;
  background-color: #eeeeee;
}
.nav__item-icon {
  width: 30px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__item-text {
  margin-left: 5px;
}

.main-container {
  width: 100%;
  height: auto;
  min-height: calc(100vh - var(--footer-height));
}

.nav-container {
  width: var(--nav-width);
  z-index: 2;
}
@media only screen and (max-width: 900px) {
  .nav-container {
    position: fixed;
    top: 0;
    left: calc(var(--nav-width) * -1);
  }
}

.content-container {
  width: calc(100% - var(--nav-width));
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 60px;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .content-container {
    width: 100%;
  }
}

.page-container {
  width: 100%;
  padding: 0 20px;
}

.form-container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.container {
  height: auto;
}
.container--full-width {
  width: 100%;
}
.container--center {
  margin: auto;
}
.container-max-width--500px {
  max-width: 500px;
}
.container-max-width--750px {
  max-width: 750px;
}
.container--full-screen {
  width: 100vw;
  height: 100vh;
}

.flex {
  display: flex;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex-shrink--none {
  flex-shrink: 0;
}
.flex-direction--column {
  flex-direction: column;
}
.flex-jc--center {
  justify-content: center;
}
.flex-jc--left {
  justify-content: left;
}
.flex-jc--right {
  justify-content: right;
}
.flex-jc--space-between {
  justify-content: space-between;
}
.flex-jc--space-around {
  justify-content: space-around;
}
.flex-jc--space-evenly {
  justify-content: space-evenly;
}
.flex-ai--center {
  align-items: center;
}
.flex-ai--start {
  align-items: flex-start;
}
.flex-ai--end {
  align-items: flex-end;
}

.padding--5 {
  padding: 5px;
}
.padding-vertical--5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.padding-horizontal--5 {
  padding-left: 5px;
  padding-right: 5px;
}
.padding-top--5 {
  padding-top: 5px;
}
.padding-left--5 {
  padding-left: 5px;
}
.padding-right--5 {
  padding-right: 5px;
}
.padding-bottom--5 {
  padding-bottom: 5px;
}
.padding--8 {
  padding: 8px;
}
.padding-vertical--8 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.padding-horizontal--8 {
  padding-left: 8px;
  padding-right: 8px;
}
.padding-top--8 {
  padding-top: 8px;
}
.padding-left--8 {
  padding-left: 8px;
}
.padding-right--8 {
  padding-right: 8px;
}
.padding-bottom--8 {
  padding-bottom: 8px;
}
.padding--10 {
  padding: 10px;
}
.padding-vertical--10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.padding-horizontal--10 {
  padding-left: 10px;
  padding-right: 10px;
}
.padding-top--10 {
  padding-top: 10px;
}
.padding-left--10 {
  padding-left: 10px;
}
.padding-right--10 {
  padding-right: 10px;
}
.padding-bottom--10 {
  padding-bottom: 10px;
}
.padding--20 {
  padding: 20px;
}
.padding-vertical--20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.padding-horizontal--20 {
  padding-left: 20px;
  padding-right: 20px;
}
.padding-top--20 {
  padding-top: 20px;
}
.padding-left--20 {
  padding-left: 20px;
}
.padding-right--20 {
  padding-right: 20px;
}
.padding-bottom--20 {
  padding-bottom: 20px;
}
.padding--40 {
  padding: 40px;
}
.padding-vertical--40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.padding-horizontal--40 {
  padding-left: 40px;
  padding-right: 40px;
}
.padding-top--40 {
  padding-top: 40px;
}
.padding-left--40 {
  padding-left: 40px;
}
.padding-right--40 {
  padding-right: 40px;
}
.padding-bottom--40 {
  padding-bottom: 40px;
}
.padding--50 {
  padding: 50px;
}
.padding-vertical--50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.padding-horizontal--50 {
  padding-left: 50px;
  padding-right: 50px;
}
.padding-top--50 {
  padding-top: 50px;
}
.padding-left--50 {
  padding-left: 50px;
}
.padding-right--50 {
  padding-right: 50px;
}
.padding-bottom--50 {
  padding-bottom: 50px;
}

.margin--auto {
  margin: auto;
}
.margin--5 {
  margin: 5px;
}
.margin-vertical--5 {
  margin-top: 5px;
  margin-bottom: 5px;
}
.margin-horizontal--5 {
  margin-left: 5px;
  margin-right: 5px;
}
.margin-top--5 {
  margin-top: 5px;
}
.margin-left--5 {
  margin-left: 5px;
}
.margin-right--5 {
  margin-right: 5px;
}
.margin-bottom--5 {
  margin-bottom: 5px;
}
.margin--10 {
  margin: 10px;
}
.margin-vertical--10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.margin-horizontal--10 {
  margin-left: 10px;
  margin-right: 10px;
}
.margin-top--10 {
  margin-top: 10px;
}
.margin-left--10 {
  margin-left: 10px;
}
.margin-right--10 {
  margin-right: 10px;
}
.margin-bottom--10 {
  margin-bottom: 10px;
}
.margin--15 {
  margin: 15px;
}
.margin-vertical--15 {
  margin-top: 15px;
  margin-bottom: 15px;
}
.margin-horizontal--15 {
  margin-left: 15px;
  margin-right: 15px;
}
.margin-top--15 {
  margin-top: 15px;
}
.margin-left--15 {
  margin-left: 15px;
}
.margin-right--15 {
  margin-right: 15px;
}
.margin-bottom--15 {
  margin-bottom: 15px;
}
.margin--30 {
  margin: 30px;
}
.margin-vertical--30 {
  margin-top: 30px;
  margin-bottom: 30px;
}
.margin-horizontal--30 {
  margin-left: 30px;
  margin-right: 30px;
}
.margin-top--30 {
  margin-top: 30px;
}
.margin-left--30 {
  margin-left: 30px;
}
.margin-right--30 {
  margin-right: 30px;
}
.margin-bottom--30 {
  margin-bottom: 30px;
}

.border--1 {
  border: 1px solid;
}
.border-vertical--1 {
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.border-horizontal--1 {
  border-left: 1px solid;
  border-right: 1px solid;
}
.border-top--1 {
  border-top: 1px solid;
}
.border-bottom--1 {
  border-bottom: 1px solid;
}
.border-left--1 {
  border-left: 1px solid;
}
.border-right--1 {
  border-right: 1px solid;
}
.border-color--gray {
  border-color: #CECECE;
}

.modal {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 501;
}
.modal__card {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.modal__card-width--small {
  max-width: 500px;
}
.modal__card-width--medium {
  max-width: 700px;
}
.modal__card-width--large {
  max-width: 1200px;
}
.modal__card-height--small {
  max-height: 300px;
}
.modal__card-height--medium {
  max-height: 500px;
}
.modal__card-height--large {
  max-height: 750px;
}

.card {
  width: 100%;
  height: auto;
  background-color: white;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: var(--card-box-shadow);
  /*overflow: hidden;*/
}

.tile {
  width: 100%;
  padding: 20px;
  background-color: #FFFFFF;
  border: 1px solid #CECECE;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  color: var(--content-text-color);
  position: relative;
}
.tile__image {
  width: 50px;
  height: 50px;
  margin: 0 10px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.tile__title {
  font-family: var(--primary-font-family);
}
.tile__content {
  width: 100%;
}
.tile__subtitle {
  font-family: var(--primary-font-family);
  font-size: 12px;
  color: #939598;
}
.tile__leading {
  margin-right: 15px;
}
.tile__trailing {
  margin-left: 15px;
}

.loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 501;
}
.loader__animation {
  width: 48px;
  height: 48px;
  position: relative;
}
.loader__animation::before, .loader__animation::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48em;
  height: 48em;
  background-image: radial-gradient(circle 10px, #0984e3 100%, transparent 0), radial-gradient(circle 10px, #0984e3 100%, transparent 0), radial-gradient(circle 10px, #0984e3 100%, transparent 0), radial-gradient(circle 10px, #0984e3 100%, transparent 0), radial-gradient(circle 10px, #0984e3 100%, transparent 0), radial-gradient(circle 10px, #0984e3 100%, transparent 0), radial-gradient(circle 10px, #0984e3 100%, transparent 0), radial-gradient(circle 10px, #0984e3 100%, transparent 0);
  background-position: 0em -18em, 0em 18em, 18em 0em, -18em 0em, 13em -13em, -13em -13em, 13em 13em, -13em 13em;
  background-repeat: no-repeat;
  font-size: 0.5px;
  border-radius: 50%;
  animation: blast 1s ease-in infinite;
}
.loader__animation::after {
  font-size: 1px;
  background: #0984e3;
  animation: bounce 1s ease-in infinite;
}

@keyframes bounce {
  0%, 100% {
    font-size: 0.75px;
  }
  50% {
    font-size: 1.5px;
  }
}
@keyframes blast {
  0%, 40% {
    font-size: 0.5px;
  }
  70% {
    opacity: 1;
    font-size: 4px;
  }
  100% {
    font-size: 6px;
    opacity: 0;
  }
}
.input {
  width: 100%;
  height: auto;
  margin: 15px 0;
  position: relative;
}
.input--half {
  width: 47%;
}
.input__label {
  font-family: var(--primary-font-family);
  font-size: 12px;
  color: var(--content-text-color);
  margin: 5px 0;
  display: block;
}
.input__element {
  width: 100%;
  height: 40px;
  padding: 0 5px;
  outline: none;
  border: 1px solid rgba(71, 71, 71, 0.22);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-family: var(--primary-font-family);
  color: var(--primary-font-color);
}
.input__element option {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.input__element--textarea {
  height: 150px;
  padding: 5px;
  resize: none;
}
.input__element--canvas-signature {
  height: 150px;
  padding: 0;
  touch-action: none;
}
.input__element-color {
  width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.input__element-color input {
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  position: absolute;
  right: -8px;
  top: -8px;
  border: none;
  cursor: pointer;
}
.input__element--error {
  border: 2px solid #dc3545;
}
.input__span-error {
  font-family: var(--primary-font-family);
  font-size: 12px;
  color: #dc3545;
}

/*file-builder*/
.file-builder {
  width: 100%;
  height: auto;
  min-height: 200px;
  margin: 15px 0;
  display: block;
  position: relative;
  border-radius: 5px;
  /*file-builder__title*/
  /*file-builder__files-container*/
  /*file-builder__file-box*/
  /*file-builder__input*/
}
.file-builder--single {
  width: 200px;
  height: 200px;
  margin: 15px 0;
  display: block;
  position: relative;
  border-radius: 5px;
}
.file-builder--dashed {
  border: 2px dashed #cecece;
}
.file-builder--solid {
  border: 1px solid #cecece;
}
.file-builder__title {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: var(--primary-font-family);
  text-align: center;
}
.file-builder__files-container {
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.file-builder__file-box {
  width: 100px;
  height: 120px;
  border: 1px solid #cecece;
  margin: 5px;
  border-radius: 5px;
  position: relative;
}
.file-builder__file-box--dashed {
  border: 1px dashed #cecece;
}
.file-builder__file-box--featured {
  border: 2px solid #2ecc71;
}
.file-builder__file-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.file-builder__input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.checkbox-input {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-shrink: 0;
}
.checkbox-input input {
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 5;
}
.checkbox-input__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(71, 71, 71, 0.22);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.checkbox-input input:checked ~ .checkbox-input__checkmark {
  background-color: #0984e3;
}
.checkbox-input input:disabled ~ .checkbox-input__checkmark {
  background-color: #cecece;
}
.checkbox-input__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-input input:checked ~ .checkbox-input__checkmark:after {
  display: block;
}
.checkbox-input .checkbox-input__checkmark:after {
  left: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
}

.searcher {
  width: 100%;
  max-width: 350px;
  height: 40px;
  padding: 0 30px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid rgba(71, 71, 71, 0.22);
  position: relative;
}
.searcher__search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.searcher__input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}
.searcher__close-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: none;
}

.button {
  width: auto;
  height: 40px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--primary-font-family);
  font-size: 13px;
  text-decoration: none;
  text-align: center;
  /*outline: none;*/
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
}
.button--full-width {
  width: 100%;
}
.button--primary {
  background-color: #0984e3;
  color: #fff;
}
.button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #cecece;
}
.button--danger {
  background-color: red;
  color: #fff;
}
.button--success {
  background-color: #6ab04c;
  color: #fff;
}
.button--default {
  background-color: #EFEFEF;
  color: #000000;
}
.button--disabled {
  opacity: 0.5;
}

.text-button {
  text-decoration: none;
  border: none;
  font-size: 14px;
  font-family: var(--primary-font-family);
  background-color: transparent;
  cursor: pointer;
}
.text-button--primary {
  color: #0984e3;
}
.text-button--danger {
  color: red;
}
.text-button--success {
  color: #6ab04c;
}

.icon-button {
  text-decoration: none;
  border: none;
  font-size: 18px;
  background-color: transparent;
  cursor: pointer;
  padding: 10px;
  color: #939598;
}
.icon-button--primary {
  color: #0984e3;
}
.icon-button--danger {
  color: red;
}
.icon-button--success {
  color: #6ab04c;
}

.back-button {
  width: 40px;
  height: 40px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--primary-font-family);
  font-size: 13px;
  text-decoration: none;
  text-align: center;
  /*outline: none;*/
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #cecece;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
}

.password-button {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 0;
  cursor: pointer;
  color: #000000;
}
.password-button__checkbox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.password-button__see {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.password-button__hide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.password-button input:checked ~ .password-button__see {
  display: none;
}
.password-button input:checked ~ .password-button__hide {
  display: flex;
}

.table {
  width: 100%;
  border-spacing: 0;
  font-size: var(--primary-font-size);
  font-family: var(--primary-font-family);
  box-shadow: var(--card-box-shadow);
}
.table__head {
  text-align: left;
  z-index: 1;
}
.table__head--sticky {
  position: sticky;
  top: 0;
}
.table__row {
  background-color: #FFFFFF;
}
.table__row--alt {
  background-color: #FFFFFF;
}
.table__row:hover {
  background-color: var(--hover-background-color);
}
.table__col {
  padding: 0;
  border-top: 1px solid #CECECE;
  background-color: #FFFFFF;
}
.table__col--sticky {
  position: sticky;
  left: 0;
}
.table__col--all-borders {
  border: 1px solid #CECECE;
}
.table--all-borders {
  border: 1px solid #CECECE;
}
.table__cell-content {
  width: 100%;
  height: 100%;
  padding: 17px;
  display: block;
  color: var(--content-text-color);
}
.table__cell-label {
  width: 100%;
  padding: 5px 10px;
  display: block;
  color: var(--secondary-font-color);
  font-size: 12px;
}
.table__cell-image {
  width: 50px;
  height: 50px;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.table__href {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
}
.table__options {
  position: relative;
  right: 0;
  text-align: center;
  cursor: pointer;
}
.table__status-indicator {
  padding: 2px 4px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #FFFFFF;
}
.table__status-indicator--green {
  color: #009432;
  background-color: rgba(123, 237, 159, 0.5);
}
.table__status-indicator--orange {
  color: #E07C24;
  background-color: rgba(240, 147, 43, 0.5);
}
.table__status-indicator--yellow {
  color: #cc8e35;
  background-color: rgba(236, 204, 104, 0.7);
}
.table__status-indicator--red {
  color: #b33939;
  background-color: rgba(255, 107, 129, 0.5);
}

.responsive-table {
  width: 100%;
  overflow: auto;
}
.responsive-table--full-page {
  min-height: 200px;
  height: calc(100vh - 350px);
}

.spacer {
  width: 100%;
}
.spacer--5 {
  padding-top: 5px;
}
.spacer--10 {
  padding-top: 10px;
}
.spacer--20 {
  padding-top: 20px;
}
.spacer--30 {
  padding-top: 30px;
}
.spacer--50 {
  padding-top: 50px;
}

.text {
  font-family: var(--primary-font-family);
  font-size: var(--primary-font-size);
  color: var(--content-text-color);
}
.text--left {
  text-align: left;
}
.text--right {
  text-align: right;
}
.text--center {
  text-align: center;
}
.text-fs--18px {
  font-size: 18px;
}
.text-fs--20px {
  font-size: 20px;
}
.text-fs--22px {
  font-size: 22px;
}
.text-fs--24px {
  font-size: 24px;
}
.text--title {
  font-size: 24px;
}
.text--subtitle {
  font-size: 20px;
}
.text-color--gray {
  color: #939598;
}
.text--bold {
  font-weight: bold;
}

.toast-container {
  position: fixed;
  margin: 10px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--primary-font-family);
  z-index: 9999;
}
.toast-container[data-position$=-right] .toast {
  transform: translateX(110%);
}
.toast-container[data-position$=-left] .toast {
  transform: translateX(-110%);
}
.toast-container[data-position=top-center] .toast {
  transform: translateY(-100vh);
}
.toast-container[data-position=bottom-center] .toast {
  transform: translateY(100vh);
}
.toast-container .toast.show {
  transform: translate(0, 0);
}
.toast-container[data-position^=top-] {
  top: 0;
}
.toast-container[data-position^=bottom-] {
  bottom: 0;
}
.toast-container[data-position$=-right] {
  right: 0;
}
.toast-container[data-position$=-left] {
  left: 0;
}
.toast-container[data-position$=-center] {
  left: 50%;
  transform: translateX(-50%);
}

.toast {
  box-sizing: border-box;
  padding: 1.2rem;
  border-radius: 0.25em;
  position: relative;
  cursor: pointer;
  transition: transform 300ms ease-in-out;
  overflow: hidden;
  box-shadow: 0px 0px 5px 0px rgba(128, 128, 128, 0.75);
}
.toast--default {
  background-color: white;
  color: #000;
}
.toast--success {
  background-color: #07bc0c;
  color: #ffffff;
}
.toast--warning {
  background-color: #f1c40f;
  color: #ffffff;
}
.toast--error {
  background-color: #e74c3c;
  color: #ffffff;
}
.toast.progress::before {
  content: "";
  position: absolute;
  height: 2px;
  width: calc(100% * var(--progress));
  background-color: blue;
  bottom: 0;
  left: 0;
  right: 0;
}
.toast.can-close::after {
  content: "×";
  position: absolute;
  top: 2px;
  right: 5px;
}

/* OPTIONS HELPER */
.options-panel {
  position: absolute;
  right: calc(50% - 20px);
  width: 200px;
  height: auto;
  padding: 12px 0;
  background-color: #FFFFFF;
  box-shadow: var(--card-box-shadow);
  border: 1px solid #CECECE;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  opacity: 0;
  display: none;
  z-index: 10;
  font-weight: normal;
  cursor: default;
}
.options-panel--bottom {
  top: 100%;
  opacity: 1;
}
.options-panel--top {
  bottom: 100%;
  opacity: 1;
}
.options-panel__arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  /* top: -10px; */
  background-color: #FFFFFF;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  z-index: 9;
}
.options-panel--bottom .options-panel__arrow {
  top: -10px;
  border-top: 1px solid #CECECE;
  border-left: 1px solid #CECECE;
}
.options-panel--top .options-panel__arrow {
  bottom: -10px;
  border-bottom: 1px solid #CECECE;
  border-right: 1px solid #CECECE;
}
.options-panel__title {
  padding: 0 12px;
  margin: 7px 0;
  width: 100%;
  display: block;
  text-align: left;
  font-size: 14px;
  font-family: var(--primary-font-family);
  color: var(--content-text-color);
}
.options-panel__text {
  padding: 0 12px;
  margin: 7px 0;
  display: block;
  font-family: var(--primary-font-family);
  color: var(--content-text-color);
  font-size: 16px;
}
.options-panel__button {
  padding: 8px 12px;
  width: 100%;
  height: auto;
  display: block;
  color: #0984e3;
  text-decoration: none;
  background-color: transparent;
  border: none;
  outline: none;
  font-family: var(--primary-font-family);
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}
.options-panel__button--danger {
  color: red;
}
.options-panel__button--success {
  color: #6ab04c;
}
.options-panel__button:hover {
  color: var(--content-text-color);
  background-color: var(--hover-background-color);
}
.options-panel__rect-button {
  padding: 5px;
  height: 100%;
  display: block;
  background-color: #0984e3;
  color: #fff;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: var(--primary-font-family);
  font-size: 12px;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.options-panel__rect-button-color--white {
  background-color: #fff;
  color: var(--content-text-color);
  border: 1.5px solid #CECECE;
  font-weight: bold;
}
.options-panel__row {
  padding: 0 12px;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  background-color: transparent;
  border: none;
  outline: none;
  font-family: var(--primary-font-family);
  font-size: 14px;
}
.options-panel__row--space-between {
  justify-content: space-between;
}
.options-panel__row--center {
  justify-content: center;
}
.options-panel__textbox {
  width: 100%;
  height: 100%;
  padding: 0 5px;
  border: 1px solid rgba(71, 71, 71, 0.22);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-family: var(--primary-font-family);
}
.options-panel__hr {
  height: 1px;
  border-width: 0;
  background-color: #CECECE;
}
.options-panel__checkbox {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-shrink: 0;
}
.options-panel__checkbox input {
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 1;
}
.options-panel__checkbox__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(71, 71, 71, 0.22);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.options-panel__checkbox input:checked ~ .options-panel__checkbox__checkmark {
  background-color: #0984e3;
}
.options-panel__checkbox__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.options-panel__checkbox input:checked ~ .options-panel__checkbox__checkmark:after {
  display: block;
}
.options-panel__checkbox .options-panel__checkbox__checkmark:after {
  left: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
}

.select-card-container {
  display: flex;
  align-items: center;
  position: relative;
}
.select-card-hide {
  display: none;
}
.select-card-text {
  font-size: 12px;
}
.select-card-multiple-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.select-card-multiple-container__selection {
  margin: 5px 0;
  margin-right: 5px;
  display: flex;
  background-color: lightgrey;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.select-card-multiple-container__selection button {
  padding: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #000000;
}
.select-card-multiple-container__selection span {
  padding: 8px;
  display: flex;
  align-items: center;
}
.select-card-message {
  padding: 10px;
}
.select-card-search {
  display: block;
  width: 100%;
  height: auto;
  padding: 5px;
  position: relative;
}
.select-card-search__field {
  width: 100%;
  height: 40px;
  padding: 0 5px;
  outline: 1px solid #0984e3;
  border: 1px solid rgba(71, 71, 71, 0.22);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-family: var(--primary-font-family);
  color: var(--primary-font-color);
}
.select-card-search__erase-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: none;
}
.select-card-results {
  width: 100%;
  height: auto;
  max-height: 250px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  border: 1px solid rgba(71, 71, 71, 0.22);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  z-index: 1000;
}
.select-card-results--hide {
  display: none;
}
.select-card-results__options {
  width: 100%;
  height: auto;
  max-height: 170px;
  overflow: auto;
}
.select-card-results__option {
  width: 100%;
  min-height: 40px;
  height: auto;
  padding: 0 5px;
  display: flex;
  align-items: center;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none; /* Safari */
}
.select-card-results__option:hover {
  background-color: #0984e3;
  color: #FFFFFF;
}
.select-card-results__option--selected {
  background-color: #cccece;
}

.position--relative {
  position: relative;
}
.position--absolute {
  position: absolute;
}
.position--fixed {
  position: fixed;
}

.overflow--hidden {
  overflow: hidden;
}
.overflow--scroll {
  overflow: scroll;
}
.overflow--auto {
  overflow: auto;
}
.overflow-x--hidden {
  overflow-x: hidden;
}
.overflow-x--scroll {
  overflow-x: scroll;
}
.overflow-x--auto {
  overflow-x: auto;
}
.overflow-y--hidden {
  overflow-y: hidden;
}
.overflow-y--scroll {
  overflow-y: scroll;
}
.overflow-y--auto {
  overflow-y: auto;
}

.hide {
  display: none;
}

.logo {
  display: block;
}
.logo--full {
  height: 100%;
}
.logo--medium {
  width: 150px;
}/*# sourceMappingURL=styles.css.map */