@charset "UTF-8";
body {
  font-family: Poppins, sans-serif;
}

h1 {
  font-size: 27px;
  font-weight: 400;
  line-height: 40px;
  color: #979797;
}

a {
  text-decoration: none;
  color: #2bb1e4;
}

form section div:not(.card) > i {
  position: absolute;
  color: #2bb1e4;
}

input {
  box-sizing: border-box;
  border: 1px solid #d2dded;
  border-radius: 7px;
  height: 30px;
  background: #fff;
  color: #3d3d3d;
}

input:not([type=checkbox]):focus, textarea:focus {
  box-shadow: 0 0 0 2px rgba(43, 177, 228, 0.5);
  outline: none;
  border-color: #2bb1e4;
}

b {
  font-weight: 500;
}

button {
  box-sizing: border-box;
  box-shadow: 0 5px 8px -2px rgba(43, 177, 228, 0.5);
  border: 0;
  border-radius: 7px;
  background-color: #2bb1e4;
  height: 30px;
  font-size: 20px;
  font-weight: 200;
  color: #fff;
  transition-property: box-shadow, border-color, background-color, color;
  transition-duration: 0.15s;
  transition-timing-function: ease-in-out;
}

button:hover {
  border-color: #1a99c9;
  background-color: #1a99c9;
}

button:not(.link):not(.bordered):disabled {
  background-color: #cccbcb !important;
  box-shadow: none !important;
  border-color: #cccbcb !important;
}

button.positive {
  background-color: #2ccccf !important;
  box-shadow: 0 5px 8px -2px #2ccccf !important;
}

button.positive:hover {
  background-color: #1db2b5 !important;
}

button:not(.link):not(.bordered):not(.positive):not(.icon):disabled:hover {
  background-color: #cccbcb;
  border-color: #cccbcb;
}

::placeholder {
  color: #d2dded;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

.text-primary {
  color: #2bb1e4 !important;
}

.text-success {
  color: #46cd72;
}

.text-positive {
  color: #2ccccf !important;
}

.text-positive-hover {
  color: #1db2b5 !important;
}

.text-neutral {
  color: #a384dc !important;
}

.text-danger {
  color: #fb7160 !important;
}

.text-danger-hover {
  color: #db6c5e !important;
}

.text-warning {
  color: #faa743 !important;
}

.text-neutral-alternate {
  color: #c0a6f0;
}

.text-positive-alternate {
  color: #56e5e7;
}

.text-success-alternate {
  color: #62e38c;
}

.text-primary-alternate {
  color: #57cbf3;
}

.text-gray2 {
  color: #edecf1;
}

.text-gray3 {
  color: #cccbcb;
}

.text-gray4 {
  color: #979797;
}

.text-gray5 {
  color: #6e6e6e;
}

.text-gray6 {
  color: #3d3d3d;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

button.warning {
  color: #ffffff;
  background-color: #faa743 !important;
  border-color: #faa743 !important;
  box-shadow: 0 5px 8px -2px #f7be7a !important;
}

button.warning:not(.bordered):hover {
  background-color: #d78d34 !important;
}

button.danger {
  color: #ffffff;
  background-color: #fb7160;
  box-shadow: 0 5px 8px -2px #fb9588;
}

button.danger:not(.bordered):not(.link):hover {
  background-color: #db6c5e !important;
}

button.success {
  color: #ffffff;
  background-color: #46cd72 !important;
  box-shadow: 0 5px 8px -2px #62e38c;
}

button.success:not(.bordered):not(.link):hover {
  background-color: #24b453 !important;
}

button.neutral {
  color: #ffffff;
  background-color: #a384dc !important;
  box-shadow: 0 5px 8px -2px #c0a6f0 !important;
  border: none !important;
}

button.neutral:not(.bordered):not(.link):not(:disabled):hover {
  background-color: #8469b7 !important;
}

button.small {
  height: 30px;
  max-width: 172px;
  font-size: 14px;
}

button.bordered {
  box-shadow: none !important;
  background-color: transparent !important;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

button > :only-child {
  margin: 0 auto;
}

button.bordered:hover {
  border-color: #edecf1;
  background-color: #edecf1;
}

button.bordered.danger, button.bordered.danger:not(:disabled) i {
  color: #fb7160 !important;
  border-color: #fb7160 !important;
}

button.bordered.warning, button.bordered.warning:not(:disabled) i {
  color: #faa743 !important;
  border-color: #faa743 !important;
}

button.bordered.positive, button.bordered.positive:not(:disabled) i {
  color: #2ccccf !important;
  border-color: #2ccccf !important;
}

button.bordered.positive:hover {
  background-color: transparent !important;
}

button.bordered.primary, button.bordered.primary i {
  color: #2bb1e4;
  border-color: #2bb1e4;
}

button.text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 9px;
  width: unset !important;
}
button.text i {
  margin-right: 9px;
}

button.square {
  min-width: 30px !important;
  max-width: 30px !important;
  justify-content: center;
  align-items: center;
}

button.link {
  box-shadow: none;
  border: 0 !important;
  color: #6e6e6e;
  background: transparent !important;
  vertical-align: middle;
}

button.link.primary {
  color: #2bb1e4;
}

button.link.danger {
  color: #fb7160;
}

button:disabled {
  color: #fff !important;
}

button.link:disabled {
  color: #979797 !important;
}

button.link:hover {
  background: none !important;
}

button.dropdown {
  width: unset !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 120px;
  padding: 0 10px;
}
button.dropdown i {
  transform: rotate(90deg);
  display: inline-block;
}

.dropdown-content {
  text-align: left;
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 0;
  z-index: 1;
  border-radius: 12px;
  max-width: 120px;
  border: 1px solid #ecf7ff;
}
.dropdown-content button {
  text-align: left;
  justify-content: flex-start !important;
  margin-left: 0 !important;
  width: 100%;
  padding: 6px 16px;
}
.dropdown-content a {
  display: inline-block;
  width: 100%;
  margin-left: 0 !important;
}
.dropdown-content a:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.dropdown-content a:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.dropdown-content a:hover {
  background-color: #ecf7ff;
}

.dropdown-content.show {
  display: block;
}

button.table-action {
  font-size: 14px;
  font-weight: 300;
  min-width: 140px;
}

input:disabled {
  background-color: #f5f5f5;
}

#smallscreen {
  position: absolute;
  z-index: 10000;
  background-color: #ffffff;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

#smallscreen h1 {
  text-align: center;
  width: 100%;
}

@media print {
  #smallscreen {
    display: none;
  }
}
@media only screen and (min-width: 1px) {
  #smallscreen {
    display: none;
  }
}
strong {
  font-weight: 500;
}

.input-error-message, .form-error-message {
  color: #fb7160 !important;
  font-size: 12px !important;
  margin-left: 14px;
  margin-top: 5px;
  display: block;
  height: 14px;
}

.input-error-message {
  white-space: nowrap;
}

.input-warning-message {
  color: #faa743 !important;
  font-size: 12px !important;
  margin-left: 14px;
  margin-top: 5px;
  display: block;
  height: 14px;
}

.input-warning-message.input {
  margin-top: -20px;
}

.form-error-message {
  margin: 10px auto 0;
}

div.noexpand {
  min-width: 0;
}
div.noexpand .input-error-message.noexpand {
  position: absolute;
}

.input-error input, .input-error textarea, .input-error .select-selected, .input-error p.error {
  border-color: #fb7160 !important;
  animation: shake 0.2s ease-in-out 0s 2;
}

.input-error input:focus {
  box-shadow: none;
}

.input-error i {
  color: #fb7160;
  animation: shake 0.2s ease-in-out 0s 2;
}

input.error {
  border-color: #fb7160 !important;
  animation: shake 0.2s ease-in-out 0s 2;
}

input.error:focus {
  box-shadow: none;
}

@keyframes shake {
  0% {
    margin-left: 0rem;
  }
  25% {
    margin-left: 0.5rem;
  }
  75% {
    margin-left: -0.5rem;
  }
  100% {
    margin-left: 0rem;
  }
}
a {
  cursor: pointer;
}
a label {
  cursor: pointer;
}

button.icon {
  height: 16px;
  background: transparent;
  box-shadow: none;
}

button.round {
  border-radius: 50% !important;
  padding: 0 !important;
}

button.round i {
  line-height: 28px;
  font-size: 16px;
}

button.primary i {
  color: #ffffff;
}

button label {
  cursor: pointer;
}

table.grouped button.link span {
  border-radius: 50%;
  background-color: #2bb1e4;
  width: 16px;
  height: 16px;
  display: block;
  line-height: 10px;
  padding: 0 !important;
}

table.grouped button.link span i {
  color: #ffffff;
  font-size: 8px;
}

table.grouped + div + div {
  margin: 0 23px 50px;
  display: flex;
  width: calc(100% - 48px);
  align-items: center;
  text-align: center;
  padding: 0;
  height: 50px;
  border: 1px dashed #cccbcb;
  border-radius: 6px;
}

table.grouped + div + div button {
  margin: auto;
  width: 30px;
  height: 30px;
}

table.grouped + div, tr.edit > div, tr.add > div {
  width: calc(100% - 76px);
  border: none;
  margin: 0 23px 6px;
  padding: 0 14px;
  border-radius: 6px;
  transition: max-height 0.3s;
  max-height: 0px;
}

table.grouped + div form, tr.edit div form, tr.add div form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  max-height: 0px;
  transition: max-height 0.3s;
}

table.grouped + div * {
  opacity: 0;
  transition: opacity 0.3s;
}

table.grouped tr.edit div {
  opacity: 0;
}

table.grouped + div.show, tr.edit.show div {
  /*tr.add.show div {*/
  border: 1px solid #d2dded;
  max-height: 50px !important;
  opacity: 1 !important;
}

table.grouped + div.show form, tr.edit.show div form, tr.add.show div form {
  max-height: 50px;
}

table.grouped + div.show form {
  padding-right: 15px;
}

table.grouped + div.show * {
  opacity: 1;
}

table.grouped + div button, tr.edit button, tr.add button {
  font-size: 14px;
}

table.grouped + div input, tr.edit div input, tr.add div input {
  flex-basis: 80%;
  margin-left: 2px;
}

div.toast {
  border-radius: 6px;
  padding: 6px;
  color: #ffffff;
  text-align: left;
}

div.toast.error {
  background-color: #fb9588;
  position: relative;
  display: none;
}

div.toast.error.show {
  display: block;
  height: 50px;
  opacity: 1;
}

div.toast.error h3 {
  font-size: 12px;
  font-weight: 500;
  margin: 4px 10px 4px;
}

div.toast.error span {
  font-size: 12px;
  margin: 0 10px 4px;
}

tr.edit, tr.add {
  height: 0;
  border: none !important;
}

tr.edit td, tr.add td {
  height: 0;
  border: none !important;
}

tr.edit:hover, tr.add:hover {
  /*    background: inherit;*/
}

tr.edit td:last-child, tr.add td:last-child {
  border-radius: 6px !important;
}

tr.edit.show td, tr.add.show td {
  border: 1px solid #d2dded !important;
}

tr.edit.show div, tr.add.show div {
  border: none;
  margin: 0;
  width: calc(100% - 23px);
}

tr.edit.show div form, tr.add.show div form {
  width: 100%;
}

td div div.toast.error.show, div.toast.error.show {
  position: absolute;
  top: 45px;
  max-width: calc(80% - 45px);
  height: fit-content;
  max-height: 50px;
  min-height: 30px;
  padding: 6px 6px 10px;
}

tr.edit > td, div.new.show {
  position: relative;
}

tr.add.show, tr.add.show > td {
  border: none !important;
}

table.grouped.sub tr.add.show td {
  padding-right: 0;
}

table.grouped tr.add.show td > div:not(.toast) {
  margin-left: 0;
  width: 100% !important;
  max-width: 100% !important;
}

tr.add.show td > div:not(.toast) {
  border-radius: 6px;
  /*    border: 1px solid colors.$border;
      padding: 0 23px;*/
  margin-left: 46px;
  max-width: calc(100% - 41px);
  margin-bottom: 6px;
}

div.new table.subsub tr td > div {
  margin-bottom: 0 !important;
}

table.grouped.sub div.new {
  margin-left: 0;
}

tr.edit + tr.spacer {
  display: none;
}

tr.edit.show + tr.spacer {
  display: table-row;
}

div.extra, tr.extra > td {
  padding-bottom: 45px;
}

div.new > table > tbody > tr {
  height: 0 !important;
  opacity: 0;
}

div.new > table > tbody > tr input {
  z-index: -100;
}

tr.add.show div.new > table > tbody > tr {
  opacity: 1;
}

tr.add.show div.new > table > tbody > tr input {
  z-index: 1;
}

tr.add {
  display: none;
}

tr.add.show {
  display: table-row;
}

button.back {
  transform: rotate(180deg);
  position: absolute;
  top: -15px;
  left: -15px;
  border-radius: 50%;
  background-color: #a384dc !important;
  color: #ffffff !important;
  opacity: 0.5;
  width: 30px !important;
  padding: 0;
  margin-left: 0 !important;
  box-shadow: none;
}
button.back i {
  line-height: 30px;
}

button.square.link {
  padding: 0;
}
button.square.link span {
  margin: auto;
  display: block;
}

button.square.link:hover {
  background-color: #fff;
}

button.square label {
  max-width: 100%;
  max-height: 100%;
  height: inherit;
  justify-content: center;
  align-items: center;
  display: flex;
}

button.square.bordered {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
}

button.bordered.base {
  display: flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}
button.bordered.base span {
  display: inline-block;
}

div.hide, *.hide {
  display: none;
}

div.top-info {
  color: #2bb1e4;
  text-align: center;
  font-size: 14px;
  background: #ecf7ff;
  padding: 10px 30px;
  max-width: fit-content;
  margin: 15px auto 0;
  border-radius: 8px;
}

body {
  -webkit-text-size-adjust: none;
}

button {
  white-space: nowrap;
  -webkit-border-fit: border !important;
}

button.wrap {
  white-space: initial;
  text-align: left;
}

.invisible {
  visibility: hidden;
}

div.radio-container {
  display: flex;
  justify-content: space-around;
}
div.radio-container div {
  display: flex;
  align-items: center;
}
div.radio-container div [type=radio]:checked,
div.radio-container div [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
div.radio-container div [type=radio]:checked + label,
div.radio-container div [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}
div.radio-container div [type=radio]:checked + label:before,
div.radio-container div [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #d2dded;
  border-radius: 100%;
  background: #fff;
}
div.radio-container div [type=radio]:checked + label:before {
  background: #2bb1e4;
  border: 1px solid #2bb1e4;
}
div.radio-container div [type=radio]:checked + label:after,
div.radio-container div [type=radio]:not(:checked) + label:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  position: absolute;
  top: 7px;
  left: 7px;
  border-radius: 100%;
}
div.radio-container div [type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
div.radio-container div [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
div.radio-container div label {
  margin-left: 11px;
  white-space: nowrap;
}
div.radio-container div [type=checkbox]:checked,
div.radio-container div [type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
div.radio-container div [type=checkbox]:checked + label,
div.radio-container div [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}
div.radio-container div [type=checkbox]:checked + label:before,
div.radio-container div [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #d2dded;
  border-radius: 3px;
  background: #fff;
}
div.radio-container div [type=checkbox]:checked + label:before {
  background: #2bb1e4;
  border: 1px solid #2bb1e4;
}
div.radio-container div [type=checkbox]:checked + label:after,
div.radio-container div [type=checkbox]:not(:checked) + label:after {
  content: "\e924";
  font-family: icomoon;
  font-size: 9px;
  width: 6px;
  height: 6px;
  color: #fff;
  position: absolute;
  top: -1px;
  left: 4px;
  border-radius: 100%;
  font-weight: 700;
}
div.radio-container div [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
div.radio-container div [type=checkbox]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

div.radio-container.left {
  justify-content: flex-start;
  align-items: center;
  max-width: 444px;
}
div.radio-container.left div [type=checkbox]:not(:checked) + label:before {
  top: 2px;
}
div.radio-container.left div label {
  white-space: break-spaces;
  margin-left: 0;
}
div.radio-container.left div label:before {
  top: 5px !important;
}
div.radio-container.left div label:after {
  top: 4px !important;
}
div.radio-container.left div.center-row label:before {
  top: 2px !important;
}
div.radio-container.left div.center-row label:after {
  top: 2px !important;
}
div.radio-container.left div.top-row label:before {
  top: 1px !important;
}
div.radio-container.left div.top-row label:after {
  top: 0px !important;
}

main {
  padding: 0;
}
main section.centered {
  justify-content: center !important;
  height: unset !important;
  text-align: center;
}
main section.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 23px;
  height: 85px;
}
main section.footer button {
  font-size: 14px;
  min-width: 110px;
  margin: 18px 6px;
}
main section.footer button.large {
  min-width: 166px;
}

div.instruction {
  display: block !important;
  text-align: center;
  border: none !important;
  margin: 0 auto 28px;
  background: none !important;
  height: unset !important;
  max-width: 500px;
}
div.instruction p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
div.instruction p.bold {
  font-weight: 600;
}
div.instruction img {
  width: 500px;
  border: 1px solid #d2dded;
  border-radius: 12px;
}

div.form {
  flex-direction: column;
}

h3.main_title {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  max-width: 500px;
  margin: auto auto 34px;
}

a.link {
  font-weight: 300;
  font-size: 14px;
}

section.hide {
  display: none !important;
}

div.form {
  text-align: left;
  max-width: 520px;
}
div.form label {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 5px;
  display: block;
}

button.medium {
  min-width: 90px;
  padding: 0 10px;
}

button.big {
  min-width: 100px;
  padding: 0 10px;
}

button.large {
  min-width: 166px;
}

button.xlarge {
  min-width: 180px;
}

button.xl {
  min-width: 200px;
}

button.link a {
  color: #979797;
}

section.form-actions {
  border-top: 1px solid #ecf7ff;
}
section.form-actions button {
  margin: 18px 6px;
  width: unset !important;
}
section.form-actions button.link {
  color: #979797;
}

button.primary:not(:disabled):not(.bordered):not(.link):not(.disabled) {
  color: #fff;
  background-color: #2bb1e4 !important;
}

button.primary:not(:disabled):not(.bordered):not(.link):not(.disabled):hover {
  background-color: #1a99c9 !important;
}

button.round.help {
  width: 30px;
  height: 30px;
  box-shadow: none;
  background: #ffecec;
  margin-left: 20px;
  flex-shrink: 0;
}
button.round.help i {
  line-height: 30px;
}

section.header {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  margin: 0 !important;
  padding: 20px 23px 18px;
  height: unset !important;
  border-bottom: 1px solid #ecf7ff;
}
section.header button:not(.back) {
  font-size: 14px;
  margin-left: 20px;
  padding: 0 9px;
}
section.header button:not(.back) i {
  margin-right: 9px;
}
section.header h3 {
  padding: 0;
  margin: 0;
  max-width: unset;
}

section.header.reverse {
  border-top: 1px solid #ecf7ff;
  border-bottom: 0;
}

section.header.gray2 {
  border-color: #edecf1;
}

section.header + section {
  margin-top: 16px;
}

div.left.flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

div.left {
  jusify-content: flex-start;
  text-align: left;
}
div.left div.radio-container {
  margin-bottom: 5px;
}

section.form + section button, section.footer button {
  margin: 18px 6px;
  min-width: 120px;
  font-size: 14px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input.medium {
  max-width: 188px;
}

h3.actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 23px;
}
h3.actions button {
  font-size: 14px;
  font-weight: 300;
  padding: 0 9px;
  color: #ffffff !important;
}
h3.actions button i {
  margin-right: 10px;
}

h3.actions + hr {
  margin: 14px 23px 40px;
  border: 0;
  border-bottom: 1px solid #ecf7ff;
}

span.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 14px !important;
  font-weight: 300;
  line-height: 20px;
  padding: 0 8px;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 7px;
  width: fit-content;
  margin: auto auto 5px;
}

span.badge.large {
  font-size: 14px !important;
}

span.badge.danger {
  background-color: #fb7160;
  color: #ffffff;
}

span.badge.warning {
  background-color: #faa743;
  color: #ffffff;
}

span.badge.danger-light {
  background-color: #ffecec;
  color: #fb9588;
}

span.badge.danger-light2 {
  background-color: #ffecec;
  color: #db6c5e;
}

span.badge.positive-light {
  background-color: #ecfffa;
  color: #1db2b5;
}

.actionable {
  cursor: pointer;
}

.custom-file-input {
  display: none;
}

.custom-file-button.white, .custom-file-button.base {
  box-sizing: border-box;
  box-shadow: 0 5px 8px -2px rgba(43, 177, 228, 0.5);
  border: 0;
  border-radius: 7px;
  background-color: #2bb1e4;
  height: 30px;
  font-size: 20px;
  font-weight: 200;
  color: #fff;
  transition-property: box-shadow, border-color, background-color, color;
  transition-duration: 0.15s;
  transition-timing-function: ease-in-out;
  margin: 21px auto;
  font-size: 14px;
  font-weight: 300;
  align-items: center;
  width: 170px;
  display: block;
  line-height: 30px;
  cursor: pointer;
}

.custom-file-button.small {
  width: 98px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.custom-file-button.medium {
  width: 124px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.custom-file-button.bordered {
  background: #fff;
  color: #2bb1e4;
  border: 1px solid #2bb1e4;
  box-shadow: none;
  justify-content: center;
}

.custom-file-button.medium.bordered {
  justify-content: space-evenly;
}

.custom-file-button.white i {
  color: #fff !important;
}

.input-group .custom-file-button {
  color: #fff;
  line-height: 30px;
  padding: 0 10px;
  margin: 0;
  flex-shrink: 1;
  font-size: 14px;
  font-weight: 300;
  width: unset;
  display: flex;
  align-items: center;
}
.input-group .custom-file-button i {
  font-size: 16px;
  margin-right: 6px;
}
.input-group input:read-only {
  pointer-events: none;
}

.input-group.small {
  width: 80%;
  margin: auto;
}

.input-group.small + span.input-error-message {
  width: calc(80% - 20px);
  margin: auto;
  padding: 5px 10px 0;
}

.input-group.xsmall {
  width: 50%;
}

strong.nowrap {
  line-break: anywhere;
}

div.collapse, div.collapse * {
  max-height: 0;
  opacity: 0;
  transition: all 0.15s ease;
}

div.collapse.expanded, div.collapse.expanded * {
  max-height: 1000px;
  opacity: 1;
  transition: all 0.5s ease;
}

div.main_title {
  display: flex;
  align-items: center;
}
div.main_title h3 {
  font-size: 17px;
  line-height: 24px;
  color: #6e6e6e;
  font-weight: 400;
}

section.margin {
  padding: 0 23px 1px;
}

section.margin-middle {
  padding: 0 23px 30px;
}

section.right {
  display: flex;
  justify-content: flex-end;
}

input.select-search, input.select-search:focus {
  border-color: #d2dded;
  box-shadow: none;
}

select[multiple] {
  height: 30px;
  visibility: hidden;
}

button.base {
  font-size: 14px;
  font-weight: 300;
}

input:read-only {
  background: #f5f5f5 !important;
}

section.filters-top {
  height: 48px !important;
}

div.vertical-center h3 {
  margin: 0 auto;
}

main.statistics-title section:first-child {
  justify-content: space-between !important;
  padding: 22px 23px !important;
  height: unset !important;
}
main.statistics-title section:first-child p {
  font-size: 16px;
  font-weight: 400px;
  line-height: 23px;
  margin: 9px 0;
}
main.statistics-title section:first-child p.title {
  font-weight: 500;
}
main.statistics-title section:first-child p.title.big {
  font-size: 18px;
}
main.statistics-title section:first-child div p {
  margin: 0 0 9px;
}
main.statistics-title section:first-child > p:last-child {
  margin: 9px 0 0;
}
main.statistics-title section.vertical {
  align-items: flex-start !important;
  flex-direction: column;
  margin-right: 0 !important;
}
main.statistics-title section.vertical progress {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #d2dded;
  height: 10px;
  background-color: white;
}
main.statistics-title section.vertical progress::-webkit-progress-bar {
  background-color: white;
  border-radius: 18px;
}
main.statistics-title section.vertical progress::-webkit-progress-value {
  background-color: #2ccccf;
  border-radius: 18px;
}
main.statistics-title section.vertical progress::-moz-progress-bar {
  background-color: #2ccccf;
  border-radius: 18px;
}

div.horizontal {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

p.full {
  width: 100%;
}

.text-right {
  text-align: right;
}

table thead th.padding-right {
  padding-right: 10px;
}

button.back {
  transform: rotate(180deg);
  position: absolute;
  top: -15px;
  left: -15px;
  border-radius: 50%;
  background-color: #a384dc !important;
  opacity: 0.5;
  width: 30px !important;
  padding: 0;
  margin-left: 0 !important;
  box-shadow: none;
}
button.back i {
  line-height: 30px;
}

main section:first-child {
  position: relative;
}
main section.header {
  padding: 22px 23px;
  display: flex;
  justify-content: flex-end;
}

textarea {
  padding: 6px 12px;
  width: 100%;
  height: 100px;
  font-size: 14px;
  background-color: #fff;
  color: #3d3d3d;
  text-align: left;
  box-sizing: border-box;
  border: 1px solid #d2dded;
  border-radius: 7px;
  background: #fff;
}

textarea.small {
  height: 55px;
}

td.nowrap-only {
  white-space: nowrap;
}

td.nowrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
td.nowrap a.text  {
  display: unset !important;
}

.color-cash {
  color: #46cd72 !important;
}

.color-card {
  color: #2bb1e4 !important;
}

.color-cheque {
  color: #2ccccf !important;
}

.color-transfer {
  color: #a384dc !important;
}

.color-credit_note {
  color: #faa743 !important;
}

.color-gift_card {
  color: #fb7160 !important;
}

.custom-select.icons div.select-items > div {
  display: flex;
  align-items: center;
}
.custom-select.icons div.select-items > div i::before {
  font-size: 20px !important;
  line-height: 1 !important;
}

button.centered {
  display: block;
  margin: auto;
}

button.bordered:disabled, button.bordered.disabled {
  color: #cccbcb !important;
  border-color: #cccbcb !important;
}
button.bordered:disabled i, button.bordered.disabled i {
  color: #cccbcb !important;
}

button:not(.bordered):not(.link):disabled, button:not(.link).disabled {
  background-color: #cccbcb !important;
  border-color: #cccbcb !important;
  box-shadow: none;
  color: #fff !important;
}
button:not(.bordered):not(.link):disabled i, button:not(.link).disabled i {
  color: #fff !important;
}

div.user-picture {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.user-picture img {
  max-width: 100%;
  max-height: 100%;
}

.tab-users main section, .tab-stores main section {
  margin: 0;
}

main section dl.detail {
  display: grid;
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  grid-template-columns: 25%;
}

main section dl.detail.vertical {
  grid-auto-flow: row;
}
main section dl.detail.vertical dt {
  margin-top: 28px;
}

main section dl.detail.vertical.full {
  grid-auto-flow: row;
  grid-template-columns: 100%;
}

main section dl.detail dt {
  color: #979797;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
}

main section dl.detail dd {
  margin-left: 0;
  color: #3d3d3d;
  font-weight: 300;
  font-size: 12px;
  line-height: 23px;
}
main section dl.detail dd.sale {
  color: #2bb1e4;
}
main section dl.detail dd.creditnote {
  color: #faa743;
}

.custom-select.disabled {
  border-color: #979797;
  color: #cccbcb;
  pointer-events: none;
}
.custom-select.disabled .select-selected {
  background-color: #edecf1;
}
.custom-select.disabled .select-selected::after {
  border-color: #cccbcb;
}

table.nowrap th {
  white-space: nowrap;
  padding: 0 10px;
  width: unset !important;
}

table.center th {
  text-align: center !important;
}
table.center td {
  text-align: center !important;
}
table.center th.left, table.center td.left {
  text-align: left !important;
}
table.center th.right, table.center td.right {
  text-align: right !important;
}

span.text-large {
  font-size: 27px;
  line-height: 37px;
}

section.section-title h2.title {
  margin-left: 23px;
}
section.section-title button:not(.back) {
  font-size: 14px;
}
section.section-title a:not(:last-child), section.section-title button:not(.back):not(:last-child):not(.last) {
  margin-right: 10px;
}

body.modal-showing {
  overflow: hidden;
}

button.dropbtn {
  font-size: 14px;
}

button.gray {
  background: #f5f5f5;
  box-shadow: none;
  color: #6e6e6e;
}

i.dropbtn {
  font-size: 12px;
  display: inline-block;
  transform: rotate(90deg);
  margin-left: 9px;
}

.dropdown {
  position: relative;
  display: inline-block;
  border-radius: 12px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  color: #6e6e6e;
  min-width: 170px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 12px;
}
.dropdown-content a:first-child {
  border-radius: 12px 12px 0 0;
}
.dropdown-content a:last-child {
  border-radius: 0 0 12px 12px;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
  width: unset;
}
.dropdown-content a label {
  margin: 0;
}
.dropdown-content a:hover {
  background-color: #ecf7ff;
}

:not(tr).show {
  display: block;
}

.right {
  right: 0;
}

div.input-error div.input-group > span {
  border-color: #fb7160;
}

div.segmented-control {
  position: relative;
  z-index: 5;
  width: 200px;
  margin: auto;
}
div.segmented-control input {
  display: none;
}
div.segmented-control #bckgrnd,
div.segmented-control .labels {
  width: 50%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  margin-right: -3px;
  z-index: 2;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  color: #cccbcb;
  margin-bottom: 0 !important;
}
div.segmented-control #bckgrnd a,
div.segmented-control .labels a {
  display: inline-block;
  color: inherit;
  width: 100%;
  height: 100%;
}
div.segmented-control #bckgrnd {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
div.segmented-control input[type=radio]:checked + label {
  color: #2bb1e4;
  background-color: #eefaff !important;
  border-color: #eefaff !important;
  cursor: default;
}
div.segmented-control input[type=radio]:first-of-type:checked + label {
  border-radius: 7px 0 0 7px;
}
div.segmented-control input[type=radio]:last-of-type:checked + label {
  border-radius: 0 7px 7px 0;
}
div.segmented-control input[type=radio]:first-of-type:not(:checked) ~ #bckgrnd {
  transform: translateX(0);
  transition: transform 0.15s ease-in-out;
  box-shadow: 0 0 3px 0 rgba(43, 177, 228, 0.25);
  border-radius: 7px 0 0 7px;
}
div.segmented-control input[type=radio]:last-of-type:not(:checked) ~ #bckgrnd {
  transform: translateX(100px);
  transition: transform 0.15s ease-in-out;
  box-shadow: 0 0 3px 0 rgba(43, 177, 228, 0.25);
  border-radius: 0 7px 7px 0;
}

div.segment-container {
  display: flex;
  margin-bottom: 10px !important;
  margin-top: 0 !important;
}
div.segment-container > div:first-child {
  flex-basis: 250px;
  width: 250px;
  margin: 0;
  flex-shrink: 0;
}
div.segment-container > div:last-child:not(:first-child) {
  flex-basis: 100%;
  margin-left: 20px;
}

div.segment-container.center {
  justify-content: center;
}

div.segmented-control.large {
  width: 250px !important;
}
div.segmented-control.large input[type=radio]:last-of-type:not(:checked) ~ #bckgrnd {
  transform: translateX(125px);
}

div.segmented-control.mini {
  flex-basis: 70px !important;
  width: 70px !important;
}
div.segmented-control.mini input[type=radio]:last-of-type:not(:checked) ~ #bckgrnd {
  transform: translateX(35px);
}

div.segmented-control.small {
  flex-basis: 100px !important;
  width: 100px !important;
}
div.segmented-control.small input[type=radio]:last-of-type:not(:checked) ~ #bckgrnd {
  transform: translateX(50px);
}

div.segmented-control.triple label {
  width: 33%;
}
div.segmented-control.triple input[type=radio]:first-of-type:not(:checked) + label {
  box-shadow: 0 0 3px 0 rgba(43, 177, 228, 0.25);
  border-radius: 7px 0 0 7px;
}
div.segmented-control.triple input[type=radio]:nth-of-type(2):not(:checked) + label {
  box-shadow: 0 0 3px 0 rgba(43, 177, 228, 0.25);
}
div.segmented-control.triple input[type=radio]:last-of-type:not(:checked) + label {
  box-shadow: 0 0 3px 0 rgba(43, 177, 228, 0.25);
  border-radius: 0 7px 7px 0;
}
div.segmented-control.triple input[type=radio]:last-of-type:not(:checked) ~ #bckgrnd {
  transform: translateX(166px);
}
div.segmented-control.triple #bckgrnd {
  width: 83px;
}

div.switch-container {
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  margin-bottom: 28px !important;
}
div.switch-container label {
  margin-bottom: 0 !important;
}

div.switch-container.title {
  margin-bottom: 14px !important;
}

div.switch-container.title-middle {
  margin-top: 10px !important;
  margin-bottom: 18px !important;
}

div.input-container {
  margin-bottom: 10px !important;
}

button.left {
  text-align: left;
}

table th.actions {
  width: 80px;
}
table td.actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 50px;
  width: 80px !important;
}
table td.actions a {
  box-sizing: border-box;
}
table td.actions > *:not(:last-child) {
  margin-right: 20px;
}
table td.actions button {
  height: 30px;
}

input.small {
  width: 60% !important;
}

section.detail.section-title {
  margin-bottom: 0 !important;
  border-bottom: none;
}
section.detail.section-title h2 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  color: #3d3d3d;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

section.detail-list {
  padding-bottom: 9px;
}
section.detail-list > div {
  padding: 0 23px;
  height: unset !important;
  background-color: unset !important;
}
section.detail-list > div dl {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  grid-template-columns: 50%;
}
section.detail-list > div dl dt {
  color: #979797;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
}
section.detail-list > div dl dd {
  margin-left: 0;
  color: #6e6e6e;
  font-weight: 300;
  font-size: 12px;
  line-height: 23px;
  margin-bottom: 16px;
}

div.detail-columns {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}
div.detail-columns dl.x50 {
  flex-basis: 50%;
}
div.detail-columns dl.x25 {
  flex-basis: 25%;
}
div.detail-columns dl.x40 {
  flex-basis: 40%;
}
div.detail-columns dl {
  white-space: nowrap;
}
div.detail-columns dd {
  color: #3d3d3d !important;
}
div.detail-columns div.extra {
  flex-basis: 20% !important;
  flex-shrink: 0 !important;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #3d3d3d;
}

div.detail-columns.first dl {
  margin-bottom: 0;
}

main > section:nth-child(2) > div.detail-columns:last-child {
  border-bottom: none !important;
}

div.actions:not(.dashed) {
  display: flex;
}
div.actions:not(.dashed) button.button {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
div.actions:not(.dashed) button.button a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 !important;
}
div.actions:not(.dashed) button.button i {
  margin-right: 10px;
}

button.medium-large {
  min-width: 126px;
}

.list-actions {
  padding: 23px;
  display: flex;
  justify-content: space-between;
}
.list-actions > div.list-limit {
  display: flex;
  align-items: center;
  flex-basis: 200px !important;
}
.list-actions > div.list-limit > div:last-child {
  margin-left: 20px;
  flex-basis: 70px;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > input, .input-group > div.custom-select {
  position: relative;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > input:not(:last-child),
.input-group .select-selected.grouped {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.input-group > :last-child {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.input-group > button {
  box-shadow: none;
  font-size: 14px;
}

.input-group > span {
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #d2dded;
  background: #d2dded;
  display: block;
  min-width: 30px;
  border-radius: 7px;
  text-align: center;
  line-height: 28px;
}

.input-group > span.medium {
  min-width: 50px;
}

.input-group span:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group span:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

h3.subtitle {
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  color: #6e6e6e;
}

h3.subtitle.middle {
  margin-top: 44px;
}

span.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

span.dot.spaced {
  margin-right: 10px;
}

span.dot.success {
  background-color: #46cd72;
}

span.dot.danger {
  background-color: #fb7160;
}

span.dot.neutral {
  background-color: #a384dc;
}

span.dot.gray6 {
  background-color: #3d3d3d;
}

span.dot.warning {
  background-color: #faa743;
}

span.dot.primary {
  background-color: #2bb1e4;
}

span.dot.positive {
  background-color: #2ccccf;
}

.table-flex {
  display: flex;
  width: 100%;
}
.table-flex tbody {
  width: 100%;
}
.table-flex tr {
  display: flex;
  align-items: center;
  width: 100%;
}
.table-flex tr td:td:not(:nth-last-child(2)) {
  flex: 0 1 auto;
  white-space: nowrap;
}
.table-flex tr td:nth-last-child(2) {
  flex: 1;
}

.logbook {
  table-layout: unset;
  width: 100%;
  border-top: 1px solid #cccbcb;
  width: calc(100% - 46px);
}
.logbook tr {
  border: none;
  border-bottom: 1px solid #f5f5f5;
  height: 42px !important;
}
.logbook tr td:first-child {
  width: 1%;
  white-space: nowrap;
  padding-left: 12px !important;
}
.logbook tr td:nth-child(2) {
  width: 1%;
  white-space: nowrap;
  padding-left: 10px !important;
}
.logbook tr td:nth-child(3) {
  width: 1%;
  white-space: nowrap;
  padding-left: 24px;
}
.logbook tr td:nth-last-child(2) {
  max-width: 50%;
  white-space: nowrap;
  padding-right: 0 !important;
}
.logbook tr td:last-child {
  max-width: 40px !important;
  min-width: 40px !important;
  width: 45px !important;
  padding-left: 10px !important;
}
.logbook tr td:last-child button {
  margin-left: 10px;
}
.logbook tr td.spaced span {
  margin-left: 10px;
}
.logbook tr span.dot {
  margin-right: 16px !important;
}

table.logbook tbody tr td:not(.marker):not(.image):not(.nowrap) {
  padding-right: 10px !important;
}

table.logbook tbody tr td:not(.marker):not(.image):not(.nowrap):nth-last-child(2) {
  padding-right: 0 !important;
}

section.form h2.main-title {
  font-size: 17px;
  font-weight: 400;
  color: #6e6e6e;
  margin: 50px auto 30px;
}

main section.footer.spaced {
  padding: 0;
}

div.blank-separator {
  padding-bottom: 16px;
}

div.disabled span, div.disabled div, div.disabled input, div.disabled select {
  pointer-events: none;
}

div.table div.header:not(.inventory) {
  display: flex;
  justify-content: space-between;
  color: #979797;
  margin-bottom: 6px;
}
div.table div.header:not(.inventory) div {
  font-size: 14px !important;
  font-weight: 400;
}
div.table div.header:not(.inventory) > div:nth-child(2) {
  padding-left: 10px;
}
div.table div.header:not(.inventory) > div.comp:nth-child(2) {
  flex-grow: 30;
}
div.table div.header:not(.inventory) > div:nth-child(4) {
  text-align: right;
}

h2.subtitle {
  font-size: 16px !important;
  color: #3d3d3d;
  font-weight: 500;
}

section.section-title.noborder {
  border: none !important;
  margin-bottom: 0 !important;
}

section.page-selector {
  display: flex;
  margin: 0 23px 10px;
  justify-content: flex-start;
  align-items: center;
}
section.page-selector > div {
  margin-right: 10px;
  flex-basis: 70px;
}

td.marked {
  background: #f4f6fb;
}

main.statistics {
  background: transparent;
  box-shadow: none;
}
main.statistics section.container {
  display: block !important;
  margin: 0 !important;
  height: unset !important;
}
main.statistics section.container > div.cards {
  display: flex;
  margin: 0 !important;
}
main.statistics section.container > div.cards > div.card {
  box-shadow: 0 6px 25px -5px rgba(43, 177, 228, 0.25);
  border-radius: 12px;
  background-color: #fff;
  padding: 30px 22px 32px;
  flex: 1 1 0;
  width: 0;
  flex-basis: unset !important;
  margin: 0 14px 0px;
}
main.statistics section.container > div.cards > div.card span {
  display: block;
}
main.statistics section.container > div.cards > div.card span:first-child {
  font-size: 14px !important;
  font-weight: 500;
  color: #bcd0eb !important;
  margin-bottom: 16px;
}
main.statistics section.container > div.cards > div.card span:last-child {
  font-size: 27px !important;
  font-weight: 400;
}
main.statistics section.container > div.cards > div.card span.title {
  margin-bottom: 8px;
}
main.statistics section.container > div.cards > div.card span.subtitle {
  color: #cccbcb;
  font-weight: 100px;
  font-size: 12px;
  margin-bottom: 8px;
}
main.statistics section.container > div.cards > div.card.flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.statistics section.container > div.cards > div:first-child {
  margin-left: 0 !important;
}
main.statistics section.container > div.cards > div:last-child {
  margin-right: 0 !important;
}

div.extra.spaced {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  padding: 0;
  height: 160px;
}
div.extra.spaced button {
  font-size: 14px;
}
div.extra.spaced div.actions {
  flex-direction: column;
}
div.extra.spaced div.actions button {
  margin-top: 12px;
  box-shadow: none !important;
}

button.spaced {
  margin: auto 10px;
}

section:first-child.section-title.plain {
  margin-bottom: 0;
  height: 48px;
  border-bottom: none;
  padding: 0;
}

table tbody tr td:not(.marker):not(.image):not(.nowrap) {
  padding-right: 10px !important;
}

section.statistics-inline {
  display: flex !important;
  justify-content: space-between !important;
  padding: 22px !important;
  margin: 0 !important;
  height: unset !important;
}
section.statistics-inline div {
  font-size: 16px !important;
  flex-basis: 33.3%;
}
section.statistics-inline div:nth-child(2) {
  text-align: center;
}
section.statistics-inline div:last-child {
  text-align: right;
}
section.statistics-inline span {
  font-size: 18px !important;
}

table tr.align-bottom th {
  vertical-align: bottom;
  padding-bottom: 10px;
}

div.divider {
  margin: 0 23px;
  border-bottom: 1px solid #ecf7ff;
}
