
* {
  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_danger: #dc3545;
  --color_warning: #ffc107;
  --color_success: #19af69;
}

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

a {
  text-decoration: none;
  color: #333;
}

a, a:hover, a:active, a:visited, a:focus {
  text-decoration:none;
  color: #000;
}


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

textarea {
  font-family: inherit;
}

input[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: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;
}

.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;
}



/**
 * Tooltip Styles
 */

 .tooltip {
  /* position: relative; making the .tooltip span a container for the tooltip text */
  z-index: 1000;
}

.tooltip:before {
  content: attr(data-tooltip); /* here's the magic */
  position: absolute;
  pointer-events: none;
  /* vertically center on top of element */
  transform: translate(-15%, -110%);
  
  /* basic styles */
  padding: 10px;
  border-radius: 10px;
  background: var(--color_dark);
  color: var(--color_light);
  text-align: center;
  z-index: 999999999;
  white-space: nowrap;
  display: none; /* hide by default */
  max-width: 200px;
  line-height: 1.5
}

.tooltip:hover:before {
  display: block;
}

.tooltip.top:before {
  transform: translate(-0%, -160%);
  margin-left: 5px; /*and add a small left margin */
}

.tooltip.right:before {
  transform: translate(50%, -25%);
  margin-left: 5px; /*and add a small left margin */
}


.tooltip.bottom:before {
  transform: translate(0, 15px);
  margin-left: 5px; /*and add a small left margin */
}




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

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

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

.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 > .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_success {
  color: var(--color_success); 
  border: 1px solid var(--color_success); 
  padding: 15px; line-height: 1.5;
  border-radius: 8px;
  width: 100%;
}

.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;
}
