@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap);
@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body, html {
  height: 100%;
  font-family: "Inter", sans-serif;
  color: #454D58;
  background-color: #F3F6FA;
  font-size: 14px;
  overflow-x: hidden;
}

section {
  padding: 50px 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #222324;
  margin-bottom: 30px;
}

h1 {
  font-size: 32px;
  font-weight: 600;
}

h2 {
  font-size: 28px;
  font-weight: 600;
}
h2 + h3 {
  color: #6E819A;
  font-size: 18px;
  font-weight: 300;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 17px;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 13px;
}

p {
  line-height: 23px;
  margin-bottom: 30px;
}

input:disabled, select:disabled, textarea:disabled {
  background-color: #F3F6FA;
  color: #6E819A;
}

textarea {
  font-family: inherit;
  font-size: inherit;
}

b, strong {
  font-weight: 700;
}

[x-cloak] {
  display: none !important;
}

.grid {
  display: grid;
  grid-gap: 20px;
}
@media (min-width: 1200px) {
  .grid-d {
    display: grid;
    grid-gap: 20px;
  }
}
.grid-d-item-center {
  grid-column-start: 1;
  grid-column-end: 3;
}
.grid-d-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-no-gap {
  grid-gap: 0px;
}
.grid-small-gap {
  grid-gap: 15px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-2-3 {
  grid-template-columns: 2fr 1fr;
}
.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
}

#application {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 30px;
}

.logo {
  background: url("/images/logo.png") no-repeat center center/contain;
  display: block;
  width: 200px;
  height: 200px;
  text-indent: -99999px;
}

.page-header {
  display: flex;
  justify-content: space-between;
}
.page-header-title {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 15px;
}
.page-header-title h2, .page-header-title h3 {
  margin-bottom: 0;
}
.page-header-title h2 {
  position: relative;
  top: -1px;
}
@media (max-width: 1200px) {
  .page-header {
    gap: 20px;
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .page-header {
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .page-with-sidebar {
    padding-right: calc(30% - 30px);
  }
}
.page-sidebar {
  width: 30%;
  top: 0;
}

.sidebar {
  padding: 30px;
  background-color: § #FFF;
}
.sidebar::after {
  content: "";
  background-color: #FFF;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: -1;
}
@media (max-width: 1200px) {
  .sidebar-list-container {
    padding-left: 30px;
  }
}
.sidebar h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #8c9baf;
  letter-spacing: 1px;
}
.sidebar-list {
  list-style-type: none;
  list-style-position: inside;
}
.sidebar-list-item {
  list-style: none;
  font-size: 15px;
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.sidebar-list-item a {
  display: block;
  color: inherit;
  text-decoration: none;
  flex: 1;
}
.sidebar-list-item::before {
  content: "•";
  font-size: 8px;
  position: relative;
  top: -1px;
  margin-right: 7px;
  color: #8c9baf;
}
.sidebar-list-item-active {
  font-weight: 600;
}
.sidebar-list-item-amount {
  font-size: 14px;
  font-weight: 500;
  color: #6E819A;
}
@media (max-width: 1200px) {
  .sidebar-toggle {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #FAFAFA;
    border-top: 1px solid #e2e9f3;
    width: 30px;
  }
  .sidebar-toggle-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .sidebar-toggle:hover {
    background-color: #ededed;
  }
}
@media (min-width: 1200px) {
  .sidebar-toggle {
    display: none;
  }
}
@media (min-width: 1200px) {
  .sidebar {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-left: 1px solid #e2e9f3;
    width: 30%;
    min-height: calc(100vh - 100px);
  }
}

.stocklist-container {
  height: 100%;
}
@media (max-width: 1200px) {
  .stocklist-container {
    overflow-x: hidden;
  }
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeinUp {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadeinUp {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeoutUp {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeoutUp {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@-webkit-keyframes drop {
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    top: 3.78em;
    transform: rotateX(-360deg);
  }
  80% {
    opacity: 1;
    top: 3.78em;
    transform: rotateX(-360deg);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    top: 6.94em;
  }
}
@keyframes drop {
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    top: 3.78em;
    transform: rotateX(-360deg);
  }
  80% {
    opacity: 1;
    top: 3.78em;
    transform: rotateX(-360deg);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    top: 6.94em;
  }
}
@-webkit-keyframes grdAiguille {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes grdAiguille {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes ptAiguille {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes ptAiguille {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes topbar-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes topbar-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.stocklist {
  opacity: 0;
  -webkit-animation: fadeIn 0.15s ease-in both;
          animation: fadeIn 0.15s ease-in both;
}

nav {
  position: relative;
  height: 50px;
  background-color: #4388F0;
}
@media (min-width: 1200px) {
  nav {
    height: 100px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}
nav.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 3;
}
nav .nav-logo a {
  position: absolute;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 0;
  text-indent: -99999px;
  width: 100px;
  height: 30px;
  background: url("/images/logo-app.png") no-repeat left center/contain;
  transition: all 0.4s ease;
  top: 10px;
}
@media (min-width: 1200px) {
  nav .nav-logo a {
    top: 0;
    margin-right: 50px;
    height: 100px;
  }
}
nav .nav-logo a.loading {
  opacity: 0;
  top: 10px;
}
nav .nav-logo-loader {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 25px;
  border-radius: 50%;
  border: 2px solid transparent;
  -webkit-animation: topbar-loader 0.8s linear infinite;
          animation: topbar-loader 0.8s linear infinite;
  opacity: 0;
  transition: all 0.4s ease;
}
nav .nav-logo-loader-active {
  border-color: #fff;
  border-right-color: rgba(255, 255, 255, 0);
  opacity: 1;
  top: 5px;
}
@media (min-width: 1200px) {
  nav .nav-logo-loader-active {
    top: 20px;
  }
}
@media (max-width: 1200px) {
  nav .menu-overlay {
    position: fixed;
    z-index: 6;
    top: 50px;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(46, 57, 85, 0.7);
  }
}
nav .menu-container {
  display: flex;
}
@media (max-width: 1200px) {
  nav .menu-container {
    flex-direction: column;
    position: fixed;
    z-index: 7;
    top: 50px;
    left: -100%;
    background-color: #4388F0;
    width: 100%;
    padding-top: 30px;
    color: #FFF;
    transition: left 0.3s ease;
  }
  nav .menu-container-active {
    left: 0;
  }
}
nav .menu, nav .menu-right {
  display: flex;
}
nav .menu li > a, nav .menu li > div, nav .menu-right li > a, nav .menu-right li > div {
  position: relative;
  padding: 15px 0 15px 30px;
  height: 100%;
  color: #FFF;
  text-decoration: none;
  display: flex;
  align-items: center;
}
nav .menu li > a svg, nav .menu li > div svg, nav .menu-right li > a svg, nav .menu-right li > div svg {
  position: relative;
  top: -1px;
  margin-right: 8px;
  stroke-width: 1.5px;
  width: 20px;
}
nav .menu li > a.active, nav .menu li > div.active, nav .menu-right li > a.active, nav .menu-right li > div.active {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1200px) {
  nav .menu li > a, nav .menu li > div, nav .menu-right li > a, nav .menu-right li > div {
    padding: 0 15px;
  }
}
nav .menu li > div a, nav .menu-right li > div a {
  color: #FFF;
  text-decoration: none;
}
@media (max-width: 1200px) {
  nav .menu li .navigation-dropdown-item, nav .menu-right li .navigation-dropdown-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
nav .menu li .navigation-dropdown-list, nav .menu-right li .navigation-dropdown-list {
  color: #FFF;
  padding: 10px 0 0 30px;
  width: 100%;
}
nav .menu li .navigation-dropdown-list li a, nav .menu-right li .navigation-dropdown-list li a {
  cursor: pointer;
  transition: 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 1200px) {
  nav .menu li .navigation-dropdown-list li a, nav .menu-right li .navigation-dropdown-list li a {
    padding: 15px 20px;
    border-bottom: 1px solid #F3F6FA;
  }
  nav .menu li .navigation-dropdown-list li a:hover, nav .menu-right li .navigation-dropdown-list li a:hover {
    background-color: #F3F6FA;
  }
}
nav .menu li .navigation-dropdown-list li:last-child a, nav .menu-right li .navigation-dropdown-list li:last-child a {
  border-bottom: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
nav .menu li .navigation-dropdown-list li.active, nav .menu-right li .navigation-dropdown-list li.active {
  background-color: #4388F0;
}
@media (min-width: 1200px) {
  nav .menu li .navigation-dropdown-list li.active, nav .menu-right li .navigation-dropdown-list li.active {
    background-color: #F3F6FA;
  }
}
@media (min-width: 1200px) {
  nav .menu li .navigation-dropdown-list, nav .menu-right li .navigation-dropdown-list {
    color: #454D58;
    background-color: #FFF;
    position: absolute;
    z-index: 3;
    top: 100%;
    right: 0;
    padding: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.05));
  }
}
@media (max-width: 1200px) {
  nav .menu, nav .menu-right {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  nav .menu, nav .menu-right {
    height: 100%;
  }
}
@media (min-width: 1200px) {
  nav .menu-right {
    flex-direction: row-reverse;
  }
  nav .menu-right li a {
    flex-direction: row-reverse;
  }
  nav .menu-right li a svg {
    position: relative;
    top: -1px;
    margin-left: 12px;
    margin-right: 0;
  }
  nav .menu-right li:last-child a {
    padding-right: 0;
  }
}
nav .menu-toggle {
  cursor: pointer;
  flex-direction: row-reverse;
}
@media (min-width: 1200px) {
  nav .menu-toggle {
    display: none;
  }
}

.card {
  width: 100%;
  max-width: 500px;
}
.card-box {
  background-color: #FFF;
  border-radius: 5px;
  padding: 30px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.05));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dropdown {
  position: relative;
}
.dropdown-list {
  position: absolute;
  right: 0;
  z-index: 3;
  min-width: 250px;
  background-color: #FFF;
  border-radius: 5px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.05));
  margin-top: 10px;
}
.dropdown-list li a {
  cursor: pointer;
  transition: 0.2s;
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #F3F6FA;
}
.dropdown-list li a:hover {
  background-color: #F3F6FA;
}
.dropdown-list li:first-child a {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.dropdown-list li:last-child a {
  border-bottom: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.pagination {
  margin-top: 20px;
}
.pagination li:not(:first-child) {
  margin-left: 8px;
}
.pagination li .pagination-element {
  display: flex;
  align-items: center;
  padding: 5px 8px;
}
.pagination li .pagination-element-button {
  border: none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  background-color: #FFF;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.05));
  color: inherit;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.pagination li .pagination-element-number {
  font-size: 16px;
  padding: 9px 14px;
}

.clock-loader {
  border-radius: 70px;
  border: 3px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  display: block;
  width: 120px;
  height: 120px;
}
.clock-loader::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 24px;
  left: 48%;
  height: 40px;
  width: 4px;
  border-radius: 5px;
  transform-origin: 50% 94%;
  -webkit-animation: ptAiguille 12s linear infinite;
  animation: ptAiguille 12s linear infinite;
}
.clock-loader:after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 13px;
  left: 48%;
  height: 50px;
  width: 4px;
  border-radius: 5px;
  transform-origin: 50% 97%;
  -webkit-animation: grdAiguille 2s linear infinite;
  animation: grdAiguille 2s linear infinite;
}

.letter-loader {
  z-index: 4;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transition: translateX(-50%);
}
.letter-loader li {
  position: relative;
  top: 0.63em;
  display: inline-block;
  text-transform: uppercase;
  opacity: 0;
  transform: rotateX(-90deg);
  -webkit-animation: drop 1.2s ease-in-out infinite;
          animation: drop 1.2s ease-in-out infinite;
  font-size: 24px;
  color: #4388F0;
}
.letter-loader li:nth-child(1) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.letter-loader li:nth-child(2) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.letter-loader li:nth-child(3) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.letter-loader li:nth-child(4) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.modal {
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}
.modal-dialog {
  background-color: #FFF;
  border-radius: 5px;
  margin: auto;
  width: 90%;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.05));
}
.modal-dialog-wide {
  width: 650px;
}
@media (min-width: 1200px) {
  .modal-dialog {
    width: 500px;
  }
}
.modal-content {
  padding: 20px;
}
.modal-header, .modal-body, .modal-footer {
  padding: 10px 0 0 10px;
}
.modal-header {
  position: relative;
  margin-bottom: 10px;
}
.modal-body {
  margin-bottom: 10px;
}
.modal-footer {
  display: flex;
  gap: 10px;
}
.modal-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
.modal-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #8c9baf;
  margin-bottom: 10px;
}
.modal-close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background-color: transparent;
}
.modal-close svg {
  stroke: #aabfdc;
}

.form {
  width: 100%;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group-select-with-icon {
  position: relative;
  min-width: 200px;
  display: inline-block;
}
.form-group-select-with-icon svg, .form-group-select-with-icon .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  left: 12px;
  width: 17px;
  height: 17px;
  stroke: #4388F0;
}
.form-group-select-with-icon select {
  padding-left: 40px;
}
.form-group-with-list input {
  outline: none;
}
.form-label {
  display: block;
  margin-bottom: 8px;
}
.form-label .req {
  float: right;
  font-size: 12px;
  color: #8c9baf;
}
.form-input, .form-input-large, .form-input-group, .form-select, .form-textarea {
  width: 100%;
  font-size: 100%;
  box-sizing: border-box;
  border: 1px solid #cedaeb;
  border-radius: 3px;
}
.form-input-icon, .form-input-icon-right, .form-input-icon-right-button, .form-input-field-icon, .form-input-field-icon-right, .form-input-field-icon-right-button {
  width: 17px;
  height: 17px;
}
.form-input-icon, .form-input-icon-right-button, .form-input-field-icon, .form-input-field-icon-right-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.form-input-icon-right, .form-input-field-icon-right {
  position: absolute;
  top: 12px;
}
.form-input-icon, .form-input-field-icon {
  left: 12px;
}
.form-input-icon + .form-input, .form-input-field-icon + .form-input {
  padding-left: 36px;
}
.form-input-icon + .form-input-field, .form-input-field-icon + .form-input-field {
  padding: 12px 12px 12px 36px;
}
.form-input-icon-right, .form-input-icon-right-button, .form-input-field-icon-right, .form-input-field-icon-right-button {
  right: 12px;
}
.form-input-icon-right-button, .form-input-field-icon-right-button {
  cursor: pointer;
  width: 17px;
  height: 17px;
  line-height: 17px;
  text-align: center;
}
.form-input-icon-right-button .icon, .form-input-field-icon-right-button .icon {
  width: 18px;
  height: 18px;
  color: #4388F0;
}
.form-input-icon-right-button-active, .form-input-field-icon-right-button-active {
  background-color: #4388F0;
  border-radius: 5px;
}
.form-input-icon-right-button-active .icon, .form-input-field-icon-right-button-active .icon {
  width: 13px;
  height: 12px;
  color: #FFF;
}
.form-input-large {
  font-size: 18px;
  padding: 18px;
  outline-color: #4388F0;
}
.form-input-large-icon, .form-input-large-icon-right, .form-input-large-icon-right-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}
.form-input-large-icon {
  left: 18px;
}
.form-input-large-icon + .form-input-large {
  padding-left: 45px;
}
.form-input-large-icon-right, .form-input-large-icon-right-button {
  right: 18px;
}
.form-input-large-icon-right-button {
  cursor: pointer;
  width: 27px;
  height: 27px;
  line-height: 27px;
  text-align: center;
}
.form-input-large-icon-right-button .icon {
  width: 18px;
  height: 18px;
  color: #4388F0;
}
.form-input-large-icon-right-button-active {
  background-color: #4388F0;
  border-radius: 5px;
}
.form-input-large-icon-right-button-active .icon {
  width: 13px;
  height: 12px;
  color: #FFF;
}
.form-input, .form-select, .form-textarea {
  padding: 12px;
  outline-color: #4388F0;
}
.form-input-placeholder-faded::-moz-placeholder, .form-select-placeholder-faded::-moz-placeholder, .form-textarea-placeholder-faded::-moz-placeholder {
  color: #cedaeb;
}
.form-input-placeholder-faded:-ms-input-placeholder, .form-select-placeholder-faded:-ms-input-placeholder, .form-textarea-placeholder-faded:-ms-input-placeholder {
  color: #cedaeb;
}
.form-input-placeholder-faded::placeholder, .form-select-placeholder-faded::placeholder, .form-textarea-placeholder-faded::placeholder {
  color: #cedaeb;
}
.form-input-group {
  display: flex;
}
.form-input-group-item {
  position: relative;
  flex: 1;
  padding: 12px;
  text-align: center;
  cursor: pointer;
}
.form-input-group-item:not(:last-child) {
  border-right: 1px solid #cedaeb;
}
.form-input-group-item input[type=radio] {
  width: 0;
  height: 0;
  -moz-appearance: none;
}
.form-input-group-item input[type=radio]:checked:after {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  height: 5px;
  background-color: #4388F0;
}
.form-input-group-counter {
  display: flex;
  height: 40px;
  width: 80px;
}
.form-input-group-counter > .form-input {
  position: relative;
  z-index: 1;
  padding: 10px 15px;
  outline: none;
}
.form-input-group-counter > .form-input-counter {
  margin-left: -3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #e0e8f2;
  border: 1px solid #cedaeb;
  color: #6E819A;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.form-input-group-counter > .form-input-counter button {
  cursor: pointer;
  background-color: #e0e8f2;
  padding: 2px 4px;
  border: 0;
}
.form-input-group-counter > .form-input-counter button:hover {
  background-color: #cedaeb;
}
.form-input-group-counter > .form-input-counter button svg {
  stroke: #6E819A;
  width: 12px;
  height: 12px;
}
.form-input-group-counter > .form-input-counter button:first-child {
  border-top-right-radius: 5px;
}
.form-input-group-counter > .form-input-counter button:last-child {
  border-bottom-right-radius: 5px;
}
.form-select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: #FFF url("/images/icons/select-icon.svg") 99.5% no-repeat !important;
  /* Fallback */
  background: #FFF url("/images/icons/select-icon.svg") calc(100% - 12px) no-repeat !important;
  /* Better placement regardless of input width */
}
.form-select::-ms-expand {
  display: none;
}
.form-select:disabled {
  opacity: 1;
  cursor: default;
  background: #F3F6FA !important;
}
.form-select-no-icon {
  background: #FFF !important;
}
.form-select-dropdown {
  padding: 2px 12px;
  min-height: 43px;
}
.form-select-dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  border-radius: 5px;
  background-color: #f2f5fa;
  border: 1px solid #cedaeb;
}
.form-select-dropdown-item svg {
  width: 12px;
  height: 12px;
  margin-left: 8px;
}
.form-select-dropdown-options {
  border: 1px solid #cedaeb;
  margin-top: -2px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.form-select-dropdown-options-absolute {
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: #FFF;
}
.form-select-dropdown-options-absolute .form-select-multiple-search input {
  border: none;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.form-select-dropdown-options-list {
  max-height: 290px;
  overflow-y: scroll;
}
.form-select-dropdown-option {
  cursor: pointer;
  padding: 12px;
}
.form-select-dropdown-option:not(:first-of-type) {
  border-top: 1px solid #cedaeb;
}
.form-select-dropdown-option:hover, .form-select-dropdown-option-current {
  background-color: #F3F6FA;
}
.form-select-dropdown-search input {
  border-bottom: none;
  border-right: none;
  border-left: none;
  outline: none;
}
.form-select-dropdown-search-with-options {
  border-bottom: 1px solid #cedaeb;
  border-radius: 0;
}
.form-select-dropdown-disabled {
  cursor: default;
  background: #F3F6FA !important;
}
.form-textarea {
  resize: vertical;
}
.form-remember label {
  display: block;
}
@media (max-width: 1200px) {
  .form-remember label {
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .form-remember {
    display: flex;
    justify-content: space-between;
  }
}

.tabs {
  border-bottom: 1px solid #b9d3f9;
  margin-bottom: 30px;
}
.tabs .tab {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  padding-bottom: 20px;
  position: relative;
}
.tabs .tab-active {
  padding-bottom: 0;
}
.tabs .tab-active::after {
  margin-top: 20px;
  content: "";
  display: block;
  height: 5px;
  border-radius: 3px;
  background-color: #4388F0;
}
.tabs .tab:not(:last-child) {
  margin-right: 20px;
}

.tabs-modal .tab {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  padding: 10px 20px;
  position: relative;
}
.tabs-modal .tab-active {
  font-weight: 600;
  background-color: #EBF1F6;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.tabs-modal-content {
  background-color: #EBF1F6;
  padding: 30px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tabs-modal-content-title {
  font-size: 12px;
  margin-bottom: 10px;
  color: #6F8698;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tabs-modal-content-input-block {
  background-color: #FFF;
  padding: 10px;
  border-radius: 5px;
}
.tabs-modal-content-input-block label {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  color: #99B4CB;
  letter-spacing: 1.2px;
}
.tabs-modal-content-input-block input, .tabs-modal-content-input-block .pseudo-input {
  font-size: 30px;
  border: none;
  text-align: center;
  outline: none;
  padding: 20px 0;
}

.list-group-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #FFF;
  padding: 20px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.05));
  margin-bottom: 1px;
}
.list-group-item:first-of-type {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.list-group-item:last-of-type {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.list-group-item > div:first-child, .list-group-item span:first-child, .list-group-item > a:first-child {
  width: 25%;
}
.list-group-item > div:last-child, .list-group-item span:last-child, .list-group-item > a:last-child {
  margin-left: auto;
}
.list-group-item > div.list-group-item-flex, .list-group-item span.list-group-item-flex, .list-group-item > a.list-group-item-flex {
  flex: 1 1 0;
  width: 0;
}
.list-group-item a {
  display: inline-block;
  text-decoration: none;
  color: #4388F0;
}

.form-input-list {
  position: relative;
  top: -2px;
  display: block;
  width: 100%;
  border: 1px solid #cedaeb;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top: none;
  background-color: #FFF;
  padding-bottom: 15px;
}
.form-input-list-category {
  cursor: pointer;
  padding: 5px 20px;
}
.form-input-list-category-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.form-input-list-category-item h5 {
  margin-bottom: 0;
  margin-left: 8px;
}
.form-input-list-category-item svg {
  width: 17px;
  height: 22px;
}
.form-input-list-category-active .form-input-list-category-item h5 {
  font-weight: 600;
}
.form-input-list-category .form-input-list {
  border: 0;
  padding-bottom: 0;
}
.form-input-list-category .form-input-list-item {
  border-left: 1px dashed #cedaeb;
  margin-left: 1px;
  padding-left: 14px;
}
.form-input-list-item {
  padding: 5px 35px;
}
.form-input-list li {
  background-color: #FFF;
}
.form-input-list li a {
  cursor: pointer;
  color: #4388F0;
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 5px 10px;
}
.form-input-list li a:hover, .form-input-list li a.form-input-list-item-current {
  background-color: #F3F6FA;
}

.button {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: #FFF;
  border: 1px solid #FFF;
  border-radius: 5px;
  padding: 12px;
  margin: 0;
  text-decoration: none;
  font-weight: 400;
  color: #4388F0;
  font-size: 100%;
  transition: 0.2s;
}
.button-default {
  background-color: #F3F6FA;
  border: 1px solid #F3F6FA;
  color: #454D58;
}
.button-default:hover {
  background-color: #e1e9f3;
  border: 1px solid #e1e9f3;
}
.button-primary {
  background-color: #4388F0;
  border: 1px solid #4388F0;
  color: #fff;
}
.button-primary:hover {
  background-color: #146aec;
  border: 1px solid #146aec;
}
.button-primary-line {
  background-color: transparent;
  color: #4388F0;
  border: 1px solid #4388F0;
}
.button-primary-line:hover {
  background-color: #4388F0;
  border: 1px solid #4388F0;
  color: #fff;
}
.button-primary-light {
  background-color: #d1e2fb;
  border: 1px solid #0b408f;
  color: #0b408f;
}
.button-success {
  background-color: #68D4AE;
  border: 1px solid #68D4AE;
  color: #fff;
}
.button-success:hover {
  background-color: #54cea3;
  border: 1px solid #54cea3;
}
.button-success-light {
  background-color: #dff6ee;
  border: 1px solid #247f5f;
  color: #247f5f;
}
.button-danger {
  background-color: #EB5858;
  border: 1px solid #EB5858;
  color: #fff;
}
.button-danger:hover {
  background-color: #e84141;
  border: 1px solid #e84141;
}
.button-danger-light {
  background-color: #fbe1e1;
  border: 1px solid #981212;
  color: #981212;
}
.button-warning {
  background-color: #D5A269;
  border: 1px solid #D5A269;
  color: #fff;
}
.button-warning-light {
  background-color: #f6ece1;
  border: 1px solid #815524;
  color: #815524;
}
.button-block {
  justify-content: center;
  width: 100%;
}
.button svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.button-icon-right svg {
  margin-right: 0;
  margin-left: 8px;
}
.button-simple {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.badge {
  display: inline-block;
  position: relative;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: #F3F6FA;
  color: #454D58;
}
.badge svg {
  stroke: #454D58;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.badge-primary {
  color: #FFF;
  background-color: #4388F0;
}
.badge-primary svg {
  stroke: #FFF;
}
.badge-success {
  color: #FFF;
  background-color: #68D4AE;
}
.badge-success svg {
  stroke: #FFF;
}
.badge-warning {
  color: #FFF;
  background-color: #D5A269;
}
.badge-warning svg {
  stroke: #FFF;
}
.badge-danger {
  color: #FFF;
  background-color: #EB5858;
}
.badge-danger svg {
  stroke: #FFF;
}
.badge-circle {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  padding: 0;
}
.badge-text {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.label {
  background-color: #d1e2fb;
  border: 1px solid #d1e2fb;
  color: #0b408f;
  padding: 8px 16px;
  border-radius: 46px;
  font-size: 14px;
  font-weight: 300;
}
.label-success {
  background-color: #dff6ee;
  border-color: #dff6ee;
  color: #247f5f;
}
.label-warning {
  background-color: #f6ece1;
  border-color: #f6ece1;
  color: #D5A269;
}
.label-danger {
  background-color: #fbe1e1;
  border-color: #fbe1e1;
  color: #981212;
}
.label svg {
  position: relative;
  top: 1px;
  margin-right: 5px;
  width: 13px;
  height: 13px;
}

.table {
  width: 100%;
}
.table-light {
  border-collapse: separate;
  border: 1px solid #e2e9f3;
  border-radius: 5px;
  -moz-border-radius: 5px;
  background-color: #FFF;
}
.table thead {
  background-color: #e0e8f2;
}
.table thead tr:first-child th:first-child {
  border-top-left-radius: 4px;
}
.table thead tr:first-child th:last-child {
  border-top-right-radius: 4px;
}
.table tfoot tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}
.table tfoot tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}
.table tr th, .table tr td {
  text-align: left;
  padding: 20px 25px;
}
.table tr th:last-child, .table tr td:last-child {
  text-align: right;
}
.table tr th {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
.table tr td {
  border-top: 1px solid #e2e9f3;
}
.table .thead .tr, .table .tbody .tr {
  display: flex;
  align-items: center;
}
.table .thead .tr .th, .table .thead .tr .td, .table .thead .tr th, .table .thead .tr td, .table .tbody .tr .th, .table .tbody .tr .td, .table .tbody .tr th, .table .tbody .tr td {
  text-align: left;
}
.table .thead .tr .th:first-child, .table .thead .tr .td:first-child, .table .thead .tr th:first-child, .table .thead .tr td:first-child, .table .tbody .tr .th:first-child, .table .tbody .tr .td:first-child, .table .tbody .tr th:first-child, .table .tbody .tr td:first-child {
  width: 35%;
}
@media (max-width: 1200px) {
  .table .thead .tr .th:first-child, .table .thead .tr .td:first-child, .table .thead .tr th:first-child, .table .thead .tr td:first-child, .table .tbody .tr .th:first-child, .table .tbody .tr .td:first-child, .table .tbody .tr th:first-child, .table .tbody .tr td:first-child {
    padding-left: 30px;
  }
}
.table .thead .tr .th:last-child, .table .thead .tr .td:last-child, .table .thead .tr th:last-child, .table .thead .tr td:last-child, .table .tbody .tr .th:last-child, .table .tbody .tr .td:last-child, .table .tbody .tr th:last-child, .table .tbody .tr td:last-child {
  flex: 1;
  text-align: right;
}
.table .thead .tr .th:not(:first-child):not(:last-child), .table .thead .tr .td:not(:first-child):not(:last-child), .table .thead .tr th:not(:first-child):not(:last-child), .table .thead .tr td:not(:first-child):not(:last-child), .table .tbody .tr .th:not(:first-child):not(:last-child), .table .tbody .tr .td:not(:first-child):not(:last-child), .table .tbody .tr th:not(:first-child):not(:last-child), .table .tbody .tr td:not(:first-child):not(:last-child) {
  min-width: 120px;
  padding-left: 20px;
}
.table .thead .tr {
  background-color: #FAFAFA;
  border-top: 1px solid #e2e9f3;
}
.table .thead .tr .th {
  color: #6E819A;
  font-weight: 600;
  padding: 12px 20px 12px 0;
}
.table .thead .tr .th:not(:first-child) {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.table .tbody {
  background-color: #FFF;
}
.table .tbody .td {
  font-size: 15px;
  font-weight: 400;
  border-right: 1px solid #e2e9f3;
  padding: 20px 20px 20px 0;
}
.table .tbody .td:not(:first-child) {
  font-size: 18px;
  font-weight: 500;
}
.table .tbody .td:last-child {
  border-right: 0;
}
.table .tbody .td a {
  cursor: pointer;
  display: block;
}
.table .tbody .td .table-item-title {
  padding-top: 3px;
  padding-bottom: 3px;
}
.table .tbody .td .table-item-title > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.table .tbody .td .amount-pos, .table .tbody .td .amount-neg {
  position: absolute;
  font-size: 11px;
  font-weight: 400;
  right: 12px;
}
.table .tbody .td .amount-pos {
  top: 12px;
  color: #68D4AE;
}
.table .tbody .td .amount-neg {
  bottom: 12px;
  color: #EB5858;
}
.table .tbody .td input {
  border: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  outline: none;
  width: 50px;
  -webkit-appearance: none;
}
.table .tbody .td input::-moz-placeholder {
  color: #cedaeb;
}
.table .tbody .td input:-ms-input-placeholder {
  color: #cedaeb;
}
.table .tbody .td input::placeholder {
  color: #cedaeb;
}
.table-with-sidebar .thead .tr, .table-with-sidebar .tbody .tr {
  width: 100%;
  position: relative;
  z-index: 2;
  border: 0;
}
.table-with-sidebar .thead .tr::before, .table-with-sidebar .tbody .tr::before {
  content: "";
  border-bottom: 1px solid #e2e9f3;
  border-right: 1px solid #e2e9f3;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  z-index: -1;
}
.table-with-sidebar .thead .tr::before {
  background-color: #FAFAFA;
  border-top: 1px solid #e2e9f3;
}
.table-with-sidebar .tbody .tr::before {
  background-color: #FFF;
}
.table-with-sidebar .tbody .tr-visible:last-of-type::before {
  border-bottom: 0;
}
@media (max-width: 1200px) {
  .table-with-sidebar {
    width: calc(100% + 30px);
    margin-left: -30px;
    max-height: 100vh;
    overflow-y: scroll;
  }
}
.table-sidebar {
  position: absolute;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  z-index: 3;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .table-sidebar {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 100px;
    right: auto;
    padding: 25px 0 25px 30px;
    width: 50%;
    border-left: 0;
  }
}
.table-sidebar::after {
  background-color: #FFF;
  border-top: 1px solid #e2e9f3;
}
@media (max-width: 1200px) {
  .table-sidebar-open {
    right: 0;
  }
}

.message {
  width: 100%;
  margin-bottom: 30px;
  padding: 15px 20px;
  border-radius: 5px;
  background-color: #4388F0;
  border: 1px solid #4388F0;
  color: #FFF;
}
.message-default {
  background-color: #FFF;
  color: #454D58;
}
.message-info {
  background-color: rgba(67, 136, 240, 0.25);
  color: #4388F0;
}
.message-success {
  background-color: #68D4AE;
  border-color: #68D4AE;
}
.message-danger {
  background-color: #EB5858;
  border-color: #EB5858;
}
.message li {
  list-style: none;
}
.message li:not(:last-child) {
  margin-bottom: 10px;
}
.message p {
  font-size: 14px;
  margin-bottom: 0;
}
.message-with-icon {
  position: relative;
}
.message-with-icon svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.message-with-icon p {
  margin-left: 30px;
}

.toast-message-single {
  visibility: hidden;
  min-width: 250px;
  background-color: #cedaeb;
  color: #454D58;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 4;
  bottom: 30px;
  left: 30px;
}
.toast-message-single-success {
  background-color: #68D4AE;
  color: #FFF;
}
.toast-message-single-danger {
  background-color: #EB5858;
  color: #FFF;
}
.toast-message-single-show {
  visibility: visible;
  -webkit-animation: fadeinUp 0.5s, fadeoutUp 0.5s 2.5s;
  animation: fadeinUp 0.5s, fadeoutUp 0.5s 2.5s;
}

.toast-messages {
  position: fixed;
  z-index: 4;
  bottom: 30px;
  left: 30px;
}
.toast-messages .toast-message {
  width: 300px;
  background-color: #cedaeb;
  color: #454D58;
  text-align: left;
  border-radius: 5px;
  padding: 16px;
  z-index: 4;
}
.toast-messages .toast-message-success {
  background-color: #68D4AE;
  color: #FFF;
}
.toast-messages .toast-message-danger {
  background-color: #EB5858;
  color: #FFF;
}
.toast-messages .toast-message:not(:first-child) {
  margin-top: 10px;
}

.datepicker {
  position: absolute;
  z-index: 4;
  background-color: #FFF;
  border-radius: 5px;
  border-color: #F3F6FA;
  margin-top: 10px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.05));
  width: 360px;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
}
.datepicker-open {
  opacity: 1;
  max-height: inherit;
  visibility: visible;
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.datepicker-button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.datepicker-daytitle {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
.datepicker-day {
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  margin: 10px auto;
}
.datepicker-day-active, .datepicker-day-highlighted {
  border-radius: 100%;
}
.datepicker-day-highlighted {
  background-color: #F3F6FA;
}
.datepicker-day-active {
  background-color: #4388F0;
  color: #FFF;
}
.datepicker-day-disabled {
  cursor: default;
  color: #cedaeb;
}
.datepicker-form-input {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  cursor: pointer;
  padding: 0;
  min-height: 40px;
}
.datepicker-form-input svg:last-child {
  width: 12px;
  height: 12px;
  right: 15px;
  stroke: #cedaeb;
}
.datepicker-form-input-disabled {
  cursor: default;
  background-color: #F3F6FA;
  color: #6E819A;
}
.datepicker-time {
  display: flex;
  align-items: center;
  justify-content: center;
}
.datepicker-time button {
  cursor: pointer;
  border: 0;
  background-color: inherit;
}
.datepicker .input-time-wrapper {
  position: relative;
}
.datepicker .input-time-wrapper input {
  font-size: 16px;
  border: 0;
  padding: 9px 16px 9px 0;
  text-align: center;
  outline: none;
  max-width: 60px;
}
.datepicker .input-time-selectors {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
}
.datepicker .input-time-selectors button {
  padding: 0 3px;
  background-color: #e0e8f2;
  height: 18px;
}
.datepicker .input-time-selectors button svg {
  width: 10px;
  height: 10px;
}
.datepicker .input-time-selectors button:hover {
  background-color: #cedaeb;
}
.datepicker .input-time-selectors button:first-child {
  border-bottom: 1px solid #cedaeb;
}
.datepicker .input-time-seperator, .datepicker .input-time-text {
  padding: 0 8px;
}

.m-0 {
  margin: 0px !important;
}

.p-0 {
  padding: 0px !important;
}

.m-t-0 {
  margin-top: 0px !important;
}

.p-t-0 {
  padding-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.m-5 {
  margin: 5px !important;
}

.p-5 {
  padding: 5px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.p-10 {
  padding: 10px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.p-15 {
  padding: 15px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.p-20 {
  padding: 20px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-25 {
  margin: 25px !important;
}

.p-25 {
  padding: 25px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-30 {
  margin: 30px !important;
}

.p-30 {
  padding: 30px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-35 {
  margin: 35px !important;
}

.p-35 {
  padding: 35px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-40 {
  margin: 40px !important;
}

.p-40 {
  padding: 40px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-45 {
  margin: 45px !important;
}

.p-45 {
  padding: 45px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-50 {
  margin: 50px !important;
}

.p-50 {
  padding: 50px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.m-75 {
  margin: 75px !important;
}

.p-75 {
  padding: 75px !important;
}

.m-t-75 {
  margin-top: 75px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

.m-b-75 {
  margin-bottom: 75px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

.m-l-75 {
  margin-left: 75px !important;
}

.p-l-75 {
  padding-left: 75px !important;
}

.m-r-75 {
  margin-right: 75px !important;
}

.p-r-75 {
  padding-right: 75px !important;
}

.m-100 {
  margin: 100px !important;
}

.p-100 {
  padding: 100px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.m-l-100 {
  margin-left: 100px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

.m-r-100 {
  margin-right: 100px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

.m-auto {
  margin: auto;
}

.m-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.color-light {
  color: #6E819A;
}

.icon-primary {
  stroke: #4388F0;
}
.icon-primary svg {
  stroke: #4388F0;
}
.icon-success {
  stroke: #68D4AE;
}
.icon-success svg {
  stroke: #68D4AE;
}
.icon-danger {
  stroke: #EB5858;
}
.icon-danger svg {
  stroke: #EB5858;
}
.icon-info {
  stroke: #8c9baf;
}
.icon-info svg {
  stroke: #8c9baf;
}

.flex {
  display: flex;
}
.flex-center {
  align-items: center;
}
.flex-justify-center {
  justify-content: center;
}
.flex-justify-end {
  text-align: right;
  justify-content: end;
}
.flex-space-between {
  justify-content: space-between;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-gap {
  gap: 20px;
}
.flex-gap-small {
  gap: 15px;
}
.flex-gap-xs {
  gap: 8px;
}
.flex-1 {
  flex: 1;
}

.cursor-auto {
  cursor: auto !important;
}
.cursor-pointer {
  cursor: pointer !important;
}

@media (min-width: 1200px) {
  .w-d-2-3 {
    width: 66.67%;
  }
}
.w-2-3 {
  width: 66.67%;
}
.w-1-7 {
  width: 14.28%;
}

.h-full {
  height: 100%;
}

.uppercase {
  text-transform: uppercase;
}

.text-big {
  font-size: 20px;
}
.text-small {
  font-size: 12px;
}
.text-info {
  font-size: 12px;
  color: #8c9baf;
}
.text-warning {
  font-size: 12px;
  color: #D5A269;
}
.text-faded {
  color: #cedaeb !important;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.bg-white {
  background-color: #FFF;
}

.relative {
  position: relative;
}

.inline-block {
  display: inline-block;
}

.disabled {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
}

@media (min-width: 1200px) {
  .visible-mobile {
    display: none;
  }
}

@media (max-width: 1200px) {
  .hidden-mobile {
    display: none;
  }
}

.stocklist-transition-enter {
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  transform-origin: top;
  transition-duration: 100ms;
}
.stocklist-transition-enter-start {
  transform: translateY(calc(-100% + 50px));
  opacity: 0.5;
}
.stocklist-transition-enter-end {
  transform: translateY(0);
  opacity: 1;
}
.stocklist-transition-leave {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transform-origin: top;
  transition-duration: 50ms;
}
.stocklist-transition-leave-start {
  opacity: 1;
}
.stocklist-transition-leave-end {
  opacity: 0.5;
}
