/*

VARIABLE STYLES

 */


 :root {
    --primary-color: #2E3646 !important;
    --secondary-color: #A67E5E !important;
    --text-color: white !important;
}



.color_primary {
  color: var(--primary-color) !important;
}

.color_primary_bk {
  background-color: var(--primary-color) !important;
}

.color_secondary {
  color: var(--secondary-color) !important;
}

.color_secondary_bk {
  background-color: var(--secondary-color) !important;
}

.color_secondary_border {
  border-color: var(--secondary-color) !important;
}

.color_text {
  color: var(--text-color) !important;
}

.color_text_bk {
  background-color: var(--text-color) !important;
}

.color_text_border {
  border-color: var(--text-color) !important;
}

#app-ui-loader [type="checkbox"]+label::after, [type="radio"]+label::after {
    border-color: var(--secondary-color) !important;
}
#app-ui-loader  [type="radio"]+label::after {
    background-color: var(--secondary-color) !important;
}
#app-ui-loader [type="checkbox"]+label::before, [type="radio"]+label::before {
    background-color: var(--text-color) !important;
}
