* {
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

:root {
  --color_dark: #32384d;
  --color_blue: #2f8dc6;
  --color_light: #f5f7fb;
  --color_gray: #d9d9d9;
  --color_dark_gray: #999999;
  --color_light_2: #d9d9d9;
  --color_purple: #8250df;
  --color_danger: #dc3545;
  --color_warning: #ffc107;
  --color_info: #17a2b8;
  --color_success: #19af69;
  --color_etfa_orange: #fa9221;
  --color_etfa_purple: #21275c;
  --shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
}

html body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  background-color: #f5f5f5;
  font-weight: 400;
  font-size: 14px;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: var(--color_blue);
}

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

textarea {
  font-family: inherit;
}

input[disabled],
textarea:disabled {
  cursor: not-allowed;
}

.npt {
  width: 100%;
  padding: 8px 15px;
  border-radius: 4px;
  border: 1px solid var(--color_gray);
}

.npt:focus {
  outline: none;
}

.npt_btn {
  width: calc(100% - 65px);
  padding: 10px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--color_gray);
  box-sizing: border-box;
}

.npt_btn:focus {
  outline: none;
  border: 1px solid var(--color_dark);
}

.npt_select {
  width: 100%;
  padding: 9px 7px;
  border-radius: 4px;
  border: 1px solid var(--color_gray);
  box-sizing: border-box;
}

.npt_select:focus {
  outline: none;
  border: 1px solid var(--color_dark);
}

.npt_cell {
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  max-width: 100%;
}

label {
  padding-left: 15px;
  text-align: left;
}

.etf_button {
  width: 175px;
  padding: 8px 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border: none;
}

.btn {
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 5px 8px;
}

.btn-lg {
  padding: 15px;
}

.btn-white {
  background-color: #fff;
  border: 1px solid #ccc;
}

.btn-white:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-default {
  background-color: var(--color_light);
  border: 1px solid var(--color_gray);
}

.btn-default:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--color_blue);
  color: var(--color_light);
  border: 1px solid var(--color_blue);
  box-shadow: 0 3px 12px 0 rgba(74, 58, 255, 0.18);
}

.btn-primary-ease {
  background-color: var(--color_blue);
  color: var(--color_light);
  border: 1px solid var(--color_blue);
  box-shadow: 0 3px 12px 0 rgba(74, 58, 255, 0.18);
  transition: all 0.3s ease;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-danger {
  background-color: var(--color_danger);
  color: var(--color_light);
  border: 1px solid var(--color_danger);
}

.btn-danger:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn-glow_blue {
  /* @formatter:off */
  box-shadow:
    0 0 10px var(--color_blue),
    0 0 10px var(--color_blue) inset;
  /* @formatter:on */
  transition: box-shadow 0.3s ease;
}

.hidden {
  display: none;
}

.dropdown-content {
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

table .header {
  padding: 10px 15px;
  background-color: var(--color_blue);
  color: var(--color_light);
}

.cell {
  padding: 10px 15px;
}

.cell_sm {
  padding: 5px;
}

.grid_cell {
  padding: 3px 5px;
  border: 1px solid #e1e1e1;
}

.row {
  border: 1px solid var(--color_light);
  border-top: none;
}

.cell_readonly {
  background-color: #f5f5f5;
}

.error_row {
  background-color: var(--color_danger) !important;
}

/* for alternating striped rows*/
/*.row:nth-child(2n - 1) {
  background-color: var(--color_light_3);
}*/

.mobile_row {
  border-bottom: 1px solid #999999;
}

.modal {
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.panel {
  background-color: #fff;
  width: 300px;
  max-width: 95%;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
  margin: 125px auto 0 auto;
  z-index: 1003;
}

.panel_md {
  background-color: #fff;
  width: 600px;
  max-width: 95%;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 125px auto 0 auto;
  z-index: 1003;
}

.panel_lg {
  background-color: #fff;
  width: 800px;
  max-width: 95%;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 125px auto 0 auto;
  z-index: 1003;
}

.panel_xl {
  background-color: #fff;
  width: 1000px;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 75px auto 0 auto;
  z-index: 1003;
}

.panel_header {
  padding: 5px 15px;
  border-bottom: 1px solid var(--color_dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel_content {
  padding: 15px;
}

.custom.solid-select-container {
  color: #000;
  background-color: #fff;
}

.custom .solid-select-input {
  font-size: 14px;
  padding: 2.5px;
}

.custom .solid-select-single-value {
  overflow-x: hidden;
}

.custom .solid-select-control {
  width: 100%;
  padding: 0.25rem 15px !important;
  border: 1px solid var(--color_light_2);
}

.custom.w_button .solid-select-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.custom.select_slim .solid-select-control {
  height: 33px;
}

.custom .solid-select-list {
  background: #fff;
  border: 1px solid var(--color_light_2);
  z-index: 999999;
}

.custom .solid-select-option {
  padding: 5px;
  margin: 0;
  font-size: 14px;
}

.custom .solid-select-single-value {
  font-size: 14px;
  margin-top: 3px;
}

.custom .solid-select-placeholder {
  padding-top: 3px;
}

.custom .solid-select-multi-value-remove {
  border: none;
}

.custom .solid-select-option[data-focused='true'] {
  background-color: #fff;
}

.custom .solid-select-option:hover {
  background-color: #f5f5f5 !important;
}

.danger_border,
.danger_border > .solid-select-control {
  border: 1px solid var(--color_danger);
}

.air-datepicker-global-container {
  z-index: 999999;
}

.error_text {
  position: absolute;
  font-size: 11px;
  color: var(--color_danger);
  bottom: -14px;
  left: 5px;
}

.alert_danger {
  color: var(--color_danger);
  border: 1px solid var(--color_danger);
  padding: 15px;
  line-height: 1.5;
  border-radius: 8px;
  width: 100%;
}

.alert_warning {
  color: var(--color_warning);
  border: 1px solid var(--color_warning);
  /* make it a little easier to read on a white background */
  filter: brightness(90%);
  padding: 15px;
  line-height: 1.5;
  border-radius: 8px;
  width: 100%;
}

.alert_info {
  color: var(--color_info);
  border: 1px solid var(--color_info);
  padding: 15px;
  line-height: 1.5;
  border-radius: 8px;
  width: 100%;
}

.alert_success {
  color: var(--color_success);
  border: 1px solid var(--color_success);
  padding: 15px;
  line-height: 1.5;
  border-radius: 8px;
  width: 100%;
}

.alert_purple {
  color: var(--color_purple);
  border: 1px solid var(--color_purple);
  padding: 15px;
  line-height: 1.5;
  border-radius: 8px;
  width: 100%;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab {
  width: 125px;
  border: 1px solid #ccc;
  padding: 5px 0;
  border-bottom: none;
  cursor: pointer;
  text-align: center;
}

.tab_active {
  /*border-bottom: 2px solid #FFF;*/
  margin-bottom: -1px;
  padding-bottom: 6px;
  background-color: var(--color_blue);
  color: #fff;
}

.page_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 30px;
  gap: 30px;
}

.page_container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 15px;
  min-height: 100vh;
}

.col2 {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  padding: 0 15px;
}

.card {
  margin: 15px;
  width: 100%;
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #fff;
}

.toast-user-close {
  .toast-close {
    /* hide the default close icon so we can replace it with our own */
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    color: transparent;
    opacity: 1;
  }

  .toast-close::before {
    position: absolute;
    top: 4px;
    right: 4px;
    /* FaSolidXmark */
    content: url('data:image/svg+xml; utf8, <svg fill="currentColor" stroke-width="0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" height="1em" width="1em" style="overflow: visible; color: currentcolor; opacity: 0.6;"><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3l105.4 105.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256l105.3-105.4z"></path></svg>');
  }
}

.admin_header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5px 15px;
  cursor: pointer;
}

.hide_scrollbar {
  scrollbar-width: thin;
}

.-hide_scrollbar::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

.-hide_scrollbar {
  -ms-overflow-style: none; /* for Internet Explorer and Edge */
  scrollbar-width: none; /* for Firefox */
}

.loading_spinner {
  animation-name: spin;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
