/*-------------------------------START GEN CLASS*/
:root {
  --color-blue:#1262a6;
  --color-light-blue:#C4DEFD;
  --color-pink:#cf1b5c;
  --color-red:#F92323;
  --color-green:#0db40d;
  --color-gray:#bbbbbb;
  --color-white:#ffffff;
  --color-black:#000000;
  --color-dark-blue:#080047;
  --color-light-gray:#f0f0f0;
  --color-dark-gray:#858585;
  --color-gray-blue: #263950;
  --color-link:#1563BB;
  --color-border:#77a4da;
  --color-button:#263950;
  --color-button-gray:#858585;
  --color-checkbox:#90afde;
  --color-error-bg:#fffebe;
  --color-error-color:#F92323;
  --color-error-border:1px solid #F92323;
  --color-info-bg: #6791c4;
  --color-info-color: #fff;
  --color-info-border:1px solid #4974a8;
  --gradient-blue:linear-gradient(#d3e4fe, #6491ca);
  --font-primary: Arial, sans-sarif;
  --font-secondry: "Open Sans";
  --font-awesome: "FontAwesome";
  --font-table-head: 13px;
  --font-table-btn: 13px;
  --font-btn: 13px;
  --font-input: 13px;
  --font-small-size:11px;
  --font-normal-size:13px;
  --font-large-size:16px;
  --font-headding-large:16px;
  --font-headding-small:14px;
}

html {
  overflow-y: auto;
}

body {
  font-family: var(--font-primary);
  overflow-x: hidden;
  overflow-y: auto;
  font-size: var(--font-normal-size);
}

table, tr, td, div, span, h1, h2, h3, a, input {
  border-color: var(--color-blue);
}

h1, h2, h3 {
  font-family: var(--font-primary);
}

h1, h2 {
  font-weight: bold;
  color: var(--color-black);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-dark-blue);
  margin-top: 0;
  font-family: Arial;
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 16px;
}

h2 {
  font-size: 14px;
}

.h1 {
  font-size: 16px;
}

.h2 {
  font-size: 14px;
}

a {
  color: var(--color-link);
  text-decoration: none;
  font-weight: normal;
  font-size: var(--font-normal-size);
  outline: 0;
}
a:hover, a:active, a:focus {
  outline: 0;
}

.link {
  display: inline;
  color: var(--color-blue);
  border: none;
  background: none;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}

button:focus, a:focus {
  outline: none;
}

.v-center {
  vertical-align: center;
}

.v-top {
  vertical-align: top;
}

.v-bottom {
  vertical-align: bottom;
}

.v-baseline {
  vertical-align: baseline;
}

hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin-top: 5px;
  margin-bottom: 5px;
}
hr.large {
  margin-top: 10px;
  margin-bottom: 10px;
}
hr.small {
  margin-top: 2px;
  margin-bottom: 2px;
}

label.error {
  color: var(--color-error-color);
  background-color: var(--color-error-bg);
  border: var(--color-error-border);
  font-size: var(--font-normal-size);
  font-weight: normal;
  text-align: left;
  line-height: 20px;
  padding: 5px 8px;
  margin: 5px 0px;
  border-radius: 3px;
}
label.error:before {
  content: "* ";
}

.form-control {
  padding: 3px 8px;
  line-height: 20px;
}
.form-control.alt {
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.form_login input {
  padding: 10px;
  margin-bottom: 5px;
}

input {
  border-radius: 3px;
  border: 1px solid;
  padding: 5px 8px;
  line-height: 20px;
  /* margin-bottom: 5px; */
  box-sizing: border-box;
  width: 100%;
}
input[type=checkbox], input[type=radio] {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  vertical-align: sub;
}
input[type=submit], input[type=radio] {
  position: relative;
  top: 2px;
  margin-right: 5px;
  display: inline-block;
  width: initial;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bootstrap-select {
  height: 30px;
  border-radius: 3px;
  line-height: initial;
  width: auto;
}
.bootstrap-select button.btn {
  border: 1px solid var(--color-gray);
  border-radius: 3px !important;
  padding: 5px 8px !important;
  color: #000000 !important;
}

select {
  width: 100%;
  border: 1px solid var(--color-gray);
  padding: 5px 8px;
  border-radius: 3px;
  background: var(--color-white);
  height: initial;
  line-height: 20px;
}

.select-wrapper {
  position: relative;
}
.select-wrapper select {
  -webkit-appearance: none;
}
.select-wrapper select option[disabled]:first-child {
  display: none;
}
.select-wrapper option {
  color: var(--color-black);
}
.select-wrapper select.empty {
  color: var(--color-gray);
}
.select-wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -3px;
  vertical-align: middle;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

label {
  display: inline-block;
  margin-bottom: 0px;
  position: relative;
  height: initial;
  line-height: 20px;
}

input[type=text], input[type=number], input[type=email], input[type=tel], input[type=password], input[type=search] {
  display: block;
  width: 100%;
  font-size: var(--font-input);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  padding: 5px 8px;
  border-radius: 3px;
  height: initial;
  line-height: 20px;
  color: var(--color-input-text);
  box-shadow: none;
}
input[type=text].large, input[type=number].large, input[type=email].large, input[type=tel].large, input[type=password].large, input[type=search].large {
  font-size: var(--font-large-size);
  padding: 6px 10px;
  line-height: 22px;
}
input[type=text].small, input[type=number].small, input[type=email].small, input[type=tel].small, input[type=password].small, input[type=search].small {
  font-size: var(--font-small-size);
  padding: 3px 5px;
  line-height: 16px;
}
input[type=radio]:disabled {
  background: var(--color-gray);
}

.alert-danger, .alert-error {
  color: var(--color-error-color);
  background-color: var(--color-error-bg);
  border: var(--color-error-border);
  font-size: var(--font-normal-size);
  font-weight: normal;
  text-align: left;
  line-height: 20px;
  padding: 5px 8px;
  margin: 5px 0px;
  border-radius: 3px;
}

.alert-danger.fill, .alert-error.fill {
  color: var(--color-error-bg);
  background-color: var(--color-error-color);
  border: var(--color-error-border);
  border-radius: 3px;
}

.alert-info {
  background-color: var(--color-info-bg);
  color: var(--color-info-color);
  border: var(--color-info-border);
}

.center {
  text-align: center;
}

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

.red {
  color: var(--color-red);
}

.blue {
  color: var(--color-blue);
}

.green {
  color: var(--color-green);
}

.border {
  border: 1px solid var(--color-blue);
}

.border-red {
  border: var(--color-red) 1px solid !important;
}

.border-blue {
  border: var(--color-blue) 1px solid !important;
}

.border-green {
  border: var(--color-green) 1px solid !important;
}

.border-white {
  border: var(--color-white) 1px solid !important;
}

.border-white-left {
  border-left: var(--color-white) 1px solid !important;
}

.border-white-right {
  border-right: var(--color-white) 1px solid !important;
}

.border-white-top {
  border-top: var(--color-white) 1px solid !important;
}

.border-white-bottom {
  border-bottom: var(--color-white) 1px solid !important;
}

.border-black {
  border: var(--color-black) 1px solid !important;
}

.border-black-left {
  border-left: var(--color-black) 1px solid !important;
}

.border-black-right {
  border-right: var(--color-black) 1px solid !important;
}

.border-black-top {
  border-top: var(--color-black) 1px solid !important;
}

.border-black-bottom {
  border-bottom: var(--color-black) 1px solid !important;
}

.block {
  display: block;
}

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.flex, .d-flex {
  display: flex;
}

.strong, .fat, .bold {
  font-weight: bold;
}

.default, .normal {
  font-weight: normal;
}

.light, .slim, .lighter {
  font-weight: lighter;
}

.clear-style, .decoration-none {
  text-decoration: none;
}

.underline, .decoration-underline {
  text-decoration: underline;
}

.ma {
  margin: auto;
}

.m-0, .margin-clear {
  margin: 0;
}

.p-0, .padding-clear {
  padding: 0;
}

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

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

.form-row {
  flex-direction: row;
  display: flex;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}
.row.alt {
  margin-left: -1%;
  margin-right: -1%;
}

.m-auto {
  margin: auto;
}

.flex-row {
  flex-direction: row !important;
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.v-align-top {
  vertical-align: top !important;
}

.v-align-center {
  vertical-align: center !important;
}

.v-align-bottom {
  vertical-align: bottom !important;
}

.border_block {
  border: 1px solid var(--color-border);
  padding: 12px;
  border-radius: 7px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: var(--color-white);
}

.text-block {
  margin-top: 12px;
  padding: 16px 16px 3px 16px;
  margin-bottom: 12px;
}

.border-clear {
  border: none;
}

.border-top, .brd-t {
  border-top: 1px solid var(--color-blue);
}

.border-bottom, .brd-b {
  border-bottom: 1px solid var(--color-blue);
}

.border-left, .brd-l {
  border-left: 1px solid var(--color-blue);
}

.border-right, .brd-r {
  border-right: 1px solid var(--color-blue);
}

.border-top-gray, .brd-t-g {
  border-top: 1px solid var(--color-light-gray);
}

.border-bottom-gray, .brd-b-g {
  border-bottom: 1px solid var(--color-light-gray);
}

.border-left-gray, .brd-l-g {
  border-left: 1px solid var(--color-light-gray);
}

.border-right-gray, .brd-r-g {
  border-right: 1px solid var(--color-light-gray);
}

.btn {
  text-transform: initial;
}
.btn.wide {
  padding-left: 35px;
  padding-right: 35px;
}
.btn.large {
  padding: 8px 15px;
}
.btn.fill {
  width: 100%;
}
.btn.inline {
  display: inline;
  padding: 6.2px 10px;
}
.btn.inline.large {
  display: inline;
  padding: 11.2px 15px;
}
.btn.btn-transparent {
  background: transparent;
  text-transform: initial;
  border: 1px solid transparent;
}
.btn.btn-transparent:hover {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.btn.btn-border {
  background: none;
  border: 1px solid #ccc;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  border-color: var(--color-dark-blue);
}

.btn.btn-border {
  background: none;
  border: 1px solid #ccc;
  color: initial;
}

.form-control {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

header.header {
  background-image: var(--gradient-blue);
  height: 98px;
  margin-bottom: 13px;
  padding-top: 12px;
}

.gradient {
  background-image: var(--gradient-blue);
}

.breadcrumb {
  background: var(--color-light-gray);
  padding: 12px 20px 10px 20px;
  border-radius: 0px;
  margin-bottom: 12px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}

.breadcrumb li {
  font-size: var(--font-normal-size);
  color: var(--color-black);
}
.breadcrumb li a {
  font-size: var(--font-normal-size);
  color: var(--color-black);
}

.content .text-block {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  margin-top: 12px;
  padding: 16px 16px 3px 16px;
  margin-bottom: 12px;
}
.content .text-block.lg {
  min-height: 245px;
}
.content h1 {
  font-size: var(--font-large-size);
  color: var(--color-dark-blue);
  margin-top: 0;
  margin-bottom: 8.5px;
  font-family: Arial;
  font-weight: bold;
}
.content h1 a {
  color: var(--color-dark-blue);
  font-weight: inherit;
}
.content p {
  font-size: var(--font-normal-size);
  color: var(--color-black);
  margin-bottom: 10.5px;
  line-height: 1.6em;
  text-align: justify;
}
.content p strong {
  color: var(--color-dark-blue);
  font-weight: bold;
}
.content ul {
  padding: 0px 29px;
  margin-bottom: 20px;
}
.content img.content-img {
  margin-left: 16px;
  margin-bottom: 2px;
}

.col-1p {
  width: 1%;
}

.table td, .table th {
  padding: 5px 8px;
  line-height: 20px;
}
.table.alt {
  border: none;
}
.table .head_title {
  border: 1px solid var(--color-border);
  text-align: center;
  border-radius: 2px;
  font-size: var(--font-normal-size);
  background-image: var(--gradient-blue);
  display: flex;
}
.table .head_title [class*=col-] {
  margin: 7px 9px;
  font-size: var(--font-normal-size);
  font-weight: bold;
  font-weight: bold;
}
.table .head_title h1 {
  margin: 7px 9px;
  font-size: var(--font-normal-size);
  font-weight: bold;
  font-weight: bold;
  flex: 1 0 100%;
}
.table .book-back h1 {
  margin-bottom: 12px;
}
.table .head_title [class*=col] {
  margin: 4px 0px;
}
.table.alt .head_title [class*=col] {
  border-right: 1px solid var(--color-white);
}
.table .head_title [class*=col]:last-child {
  border: none;
}
.table .header, .table thead, .table tbody {
  background: var(--color-white);
  color: var(--color-dark-blue);
  font-size: var(--font-normal-size);
  font-weight: normal;
  padding: 4px 0px;
}
.table.color {
  border-collapse: separate;
  border-spacing: 0 5px;
}
.table.no-space {
  border-spacing: 0;
}
.table .table-bordered .no-border td,
.table .table-bordered .no-border th {
  border: 0px;
}
.table.color .header {
  background: var(--color-light-blue);
  text-align: center;
  font-weight: bold;
  padding: 8px 5px;
  font-size: var(--font-normal-size);
  margin: 0px;
  display: table-header-group;
  background: transparent !important;
}
.table.color thead {
  background: var(--color-light-blue);
  text-align: center;
  font-weight: bold;
  padding: 8px 5px;
  font-size: var(--font-normal-size);
  margin: 0px;
  display: table-header-group;
}
.table.color thead tr td, .table.color thead tr th {
  border-top: none;
  vertical-align: middle;
  padding: 5px 10px;
  /* margin: 5px 0; */
}
.table.color tbody tr.no-border td, .table.color tbody tr.no-border th {
  border: none;
}
.table.color tbody tr td, .table.color tbody tr th {
  border-top: none;
  vertical-align: middle;
  padding: 5px 10px;
  /* margin: 5px 0; */
}
.table.color tbody tr td:not(.no-border) {
  border-left: var(--color-border) 1px solid;
}
.table.color tbody tr.no-border td, .table.color tbody tr td:first-child {
  border-left: var(--color-border) 0px solid;
}
.table.color thead tr td, .table.color thead tr th {
  border-top: 1px solid var(--color-border) !important;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-dark-blue) !important;
  border-right: 0px;
  border-left: 0px;
  vertical-align: middle;
  padding: 5px 8px;
  font-size: var(--font-normal-size);
  line-height: 20px;
}
.table.color thead tr:first-child td, .table.color thead tr:first-child th {
  background: var(--color-light-blue);
}
.table.color > thead > tr > td:first-child, .table.color > thead > tr > th:first-child {
  border-left: 1px solid var(--color-border);
  border-top-left-radius: 8px;
}
.table.color > thead > tr > td:last-child {
  border-right: 1px solid var(--color-border);
  border-top-right-radius: 8px;
}
.table.color > thead > tr > th:last-child {
  border-right: 1px solid var(--color-border);
  border-top-right-radius: 8px;
}
.table.color > thead > tr > th:only-child {
  border: 1px solid var(--color-border) !important;
}
.table.color > thead > tr > th.not-round {
  border-radius: 0px;
}
.table .header:not(thead):not(tbody), .table thead tr.flex, .table tbody tr.flex {
  display: flex;
}
.table .btn {
  text-transform: uppercase;
  display: inline-block;
  box-shadow: none;
  font-size: var(--font-btn-table);
  padding: 5px 8px;
  border-radius: 3px;
  min-width: 100px;
  line-height: 20px;
}
.table .btn.btn-lg {
  padding: 6px 12px;
  border-radius: 3px;
  line-height: 15px;
}
.table .btn:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
  border-color: var(--color-dark-blue);
}
.table .clicked.btn {
  background-color: var(--color-gray);
  border-color: transparent;
}
.table .section {
  color: var(--color-gray);
  font-size: var(--font-normal-size);
  padding: 10px 0;
  border-top: 2px solid var(--color-light-gray);
  display: flex;
}
.table .section.border-color {
  border-top-color: var(--color-light-blue);
}
.table.alt .section {
  border: none;
  border-bottom: 1px solid var(--color-light-blue);
  padding: 4px 0;
}
.table.alt .table.alt .section {
  padding: 4px 0;
}
.table.alt .section [class*=col] {
  border-right: 1px solid var(--color-light-blue);
  padding-top: 5px;
  padding-bottom: 5px;
}
.table.alt .section [class*=col]:last-child {
  border-right: none;
}
.table .section [class*=col] {
  text-align: left;
}
.table .section [class*=col].center {
  text-align: center;
}
.table .section.center [class*=col] {
  text-align: center;
}
.table .header {
  text-align: center;
}
.table .section {
  text-align: center;
}
.table .section .title {
  text-align: left;
}
.table textarea {
  display: block;
  width: 100%;
  font-size: var(--font-input);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  padding: 5px 8px;
  border-radius: 3px;
}
.table input[type=text], .table input[type=number] {
  display: block;
  width: 100%;
  font-size: var(--font-input);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  padding: 5px 8px;
  border-radius: 3px;
}
.table input[type=text]:disabled, .table input[type=number]:disabled {
  color: var(--color-gray);
  background: var(--color-light-gray);
}
.table input[type=text].large, .table input[type=number].large {
  font-size: var(--font-large-size);
  padding: 6px 10px;
}
.table input[type=text].small, .table input[type=number].small {
  font-size: var(--font-small-size);
  padding: 3px 10px;
}
.table.alt .table.alt.border {
  border-top: 1px solid var(--color-light-blue);
  border-bottom: 1px solid var(--color-light-blue);
}
.table.alt .table.alt .section [class*=col] {
  padding: 2px 8px;
}
.table.color tbody tr.color {
  background: var(--color-light-gray);
  background: var(--color-light-gray);
}

table.v-top tr td {
  vertical-align: top;
}
table.toggle a.action {
  color: black;
}
table.toggle a.action i {
  transition: transform 250ms;
}
table.toggle a.action.active i {
  transform: rotateX(180deg);
}

.table.color thead tr td, .table.color thead tr th {
  border-left: 1px #88b1e2 solid;
}
.table.color thead tr.border th:last-child {
  border-right: 1px #88b1e2 solid;
}
.table.color thead tr th {
  border-right: 1px #88b1e2 solid;
  border-left: 1px #88b1e2 solid;
}
.table.color tbody tr.color {
  background: #e3f0ff;
}
.table.color .no-border tbody tr td {
  border: none;
}
.table.color tbody tr.gray td {
  background: var(--color-light-gray);
  border-bottom: #fff 1px solid;
}
.table.color tbody tr.blue td {
  background: var(--color-border);
  color: #fff;
  border-color: #fff;
}
.table.color tbody tr.skyblue td {
  background: var(--color-light-blue);
  color: var(--color-blue);
  border-color: var(--color-border);
}
.table.color tbody tr.border {
  border: none;
}
.table.color tbody tr.border td {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.table.color tbody tr.border td:first-child {
  border-left: 1px solid var(--color-border);
}
.table.color tbody tr.border td:last-child {
  border-right: 1px solid var(--color-border);
}

table.table.table-borderless td {
  padding: 5px 6px;
  border: 0px;
}
table.table.table-borderless tr.color td {
  background: var(--color-light-gray);
  border-right: 1px var(--color-gray) solid;
}
table.table.table-borderless tr.color td:last-child {
  border-right: 0px var(--color-light-blue) solid;
}

.JColResizer > tbody > tr > td, .JColResizer > tbody > tr > th {
  text-indent: 8px;
}

.btn {
  font-size: var(--font-btn);
  display: inline-block;
  padding: 5px 8px;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 3px;
}
.btn:focus, .btn:active, .btn:hover {
  box-shadow: none !important;
  outline: 0;
}

.btn-primary {
  color: var(--color-white);
  background-color: var(--color-button);
  border-color: var(--color-button);
}
.btn-primary:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
  border-color: var(--color-dark-blue);
}

a.btn-primary {
  color: var(--color-white) !important;
}
a.btn-primary:hover {
  color: var(--color-white) !important;
  background-color: var(--color-blue);
  border-color: var(--color-dark-blue);
}

.btn-primary.unavailable {
  background: var(--color-gray);
  color: var(--color-white);
  border: 1px solid transparent;
}
.btn-primary.disable {
  background: var(--color-dark-gray);
  color: var(--color-white);
  border: 1px solid transparent;
}
.btn-primary.disable:hover {
  background: var(--color-dark-blue);
  color: var(--color-white);
  border: 1px solid transparent;
}
.btn-primary.unavailable:hover {
  background: var(--color-gray);
  color: var(--color-white);
  border: 1px solid transparent;
}
.btn-primary:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  box-shadow: none !important;
  outline: 0;
}
.btn-primary:focus {
  box-shadow: none !important;
  outline: 0;
}
.btn-primary:active {
  box-shadow: none !important;
  outline: 0;
}
.btn-primary:active:focus:not(:disabled):not(.disabled) {
  box-shadow: none !important;
  outline: 0;
}

.btn-full {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.modal-backdrop.show {
  opacity: 0;
}

.modal-body {
  padding: 0px 12px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: var(--font-normal-size);
  /* max-height: 80vh; */
}
.modal-body p {
  margin: 0 0 10px;
}

.modal-content {
  box-shadow: var(--box-shadow);
  float: none;
  width: auto;
  border-radius: 5px !important;
}

.modal-header {
  background-image: var(--gradient-blue);
  padding: 0px;
  border: 0px solid var(--color-light-gray);
}
.modal-header .modal-title, .modal-header h4.modal-title {
  font-size: var(--font-normal-size);
  line-height: 1;
  padding: 8px;
  font-weight: bold;
  padding-left: 12px;
}
.modal-header .close {
  display: none;
}

.modal-footer {
  padding: 8px;
  border: 0px solid var(--color-light-gray);
  margin-bottom: 0px;
}

.model-close, .modal-footer button.btn {
  color: var(--color-red);
  background: none;
  position: relative;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  margin-top: 0px;
  margin-bottom: 0px;
  float: none !important;
  border-radius: 3px;
  border: 1px solid transparent;
}

.modal-footer button.btn.submit {
  color: var(--color-info-color);
  background: var(--color-gray-blue);
}

.model-close:hover, .modal-footer button.btn:hover {
  border-color: var(--color-gray);
}

button.dismiss {
  line-height: 14px;
  font-size: 8px;
  padding: 0px;
  margin: 0px;
  width: 14px;
  height: 14px;
  background: rgba(255, 0, 0, 0.2901960784);
  border: none;
  float: right;
  cursor: pointer;
  color: white;
  border-radius: 25px;
}

.login_page {
  background: #6690cb;
  background: linear-gradient(0deg, #6690cb 0%, #d2e4fe 100%);
  width: 480px;
  padding: 40px 20px;
  margin: 80px auto;
  border: 1px #1d1e5b solid;
  border-radius: 15px;
  box-shadow: 0px 8px 5px #a19ea1;
  color: #1D0745;
  font-size: var(--font-normal-size);
}

.login_page input, .login_page .select-wrapper select {
  border-color: var(--color-dark-gray);
}

.global-pagination ul {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  list-style: none;
  margin: 0 auto;
  border-radius: 0.25rem;
}
.global-pagination.left {
  justify-content: flex-start;
}
.global-pagination.right {
  justify-content: flex-end;
}
.global-pagination > li {
  padding: 0px 3px;
  line-height: 22px;
}
.global-pagination > li > a, .global-pagination > li > span {
  position: relative;
  display: block;
  padding: 0;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  color: var(--color-button) !important;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 20px;
}
.global-pagination li > a {
  border-radius: 20px;
}
.global-pagination li:first-child > span:before {
  content: "\f100";
  font-family: "Font Awesome 5 Free", "FontAwesome";
  color: var(--color-gray-blue) !important;
  position: absolute;
  z-index: 9999;
  left: 0px;
  background: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}
.global-pagination li > span {
  border-radius: 20px;
}
.global-pagination > li.active > a, .global-pagination > li.active > span {
  color: var(--color-white) !important;
  background: var(--color-button);
  border-color: var(--color-button);
}
.global-pagination > li > a:active, .global-pagination > li > span:active, .global-pagination > li > a:hover, .global-pagination > li > span:hover {
  color: var(--color-white) !important;
  background: var(--color-button);
  border-color: var(--color-button);
}
.global-pagination > li.prev > a:before, .global-pagination > li.prev > span:before {
  content: "\f100";
}
.global-pagination > li.next > a:before, .global-pagination > li.next > span:before {
  content: "\f100";
}
.global-pagination > li.prev > a:before, .global-pagination > li.next > a:before, .global-pagination > li.prev > span:before, .global-pagination > li.next > span:before {
  font-family: "Font Awesome 5 Free", "FontAwesome";
  color: var(--color-button) !important;
  text-align: center;
  line-height: 25px;
}
.global-pagination > li.prev > a:hover:before, .global-pagination > li.next > a:hover:before, .global-pagination > li.prev > span:hover:before, .global-pagination > li.next > span:hover:before, .global-pagination > li.prev > a:active:before, .global-pagination > li.next > a:active:before, .global-pagination > li.prev > span:active:before, .global-pagination > li.next > span:active:before {
  color: var(--color-white) !important;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 18px;
  text-decoration: none;
  color: #263950;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
  font-size: 13px;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  z-index: 2;
  color: #263950;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #263950;
  border-color: #263950;
  cursor: default;
}
.pagination > .disabled > span {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination > .disabled > span:hover, .pagination > .disabled > span:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination > .disabled > a {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination > li > a, .pagination > li > span {
  margin-left: 2px;
  margin-right: 2px;
  padding: 0px 5px;
  min-width: 35px;
  height: 35px;
  text-align: center;
  line-height: 34px;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
  width: 36px;
  background: none;
  border: 0px;
  position: relative;
  color: #263950;
  z-index: 0;
}
.pagination > li:first-child > a:before, .pagination > li:first-child > span:before {
  content: "\f100";
  font-family: "Font Awesome 5 Free", "FontAwesome";
  color: #263950;
  position: absolute;
  z-index: 9999;
  left: 0px;
  background: #fff;
  width: 36px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
  width: 36px;
  background: none;
  border: 0px;
  position: relative;
  color: #263950;
  z-index: 0;
}
.pagination > li:last-child > a:before, .pagination > li:last-child > span:before {
  content: "\f101";
  font-family: "Font Awesome 5 Free", "FontAwesome";
  color: #263950;
  position: absolute;
  z-index: 9999;
  right: 0px;
  background: #fff;
  width: 36px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
}
.pagination li.active span.page-link {
  border-radius: 25px;
  background-color: #263950;
  border-color: #263950;
}

.pagination-lg > li > a, .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

.pagination-sm > li > a, .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.currency {
  display: flex;
  flex-wrap: wrap;
  width: 70px;
  margin: auto;
}
.currency > .sign {
  flex-basis: 10px;
}
.currency > .amount {
  flex-grow: 1;
  text-align: right;
}
.currency.left {
  float: left;
}
.currency.right {
  float: right;
}
.currency.left::after, .currency.right::after {
  content: "";
  display: block;
  clear: both;
}

/* Styles for hiding the native checkbox */
input[type=checkbox].check-custom, input[type=radio].check-custom {
  position: absolute;
  top: auto;
  width: 0px;
  height: 0px;
  overflow: hidden;
  display: none;
  opacity: 0;
}
input[type=checkbox].check-custom ~ .checkmark:after, input[type=radio].check-custom ~ .checkmark:after {
  display: none;
}
input[type=checkbox].check-custom ~ .check-toggle, input[type=radio].check-custom ~ .check-toggle, input[type=checkbox].check-custom ~ .checkmark, input[type=radio].check-custom ~ .checkmark {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border: 2px solid var(--color-gray);
  cursor: pointer;
  border-radius: 0%;
  margin-top: -3px;
  margin-right: 8px;
  margin-left: 8px;
}
input[type=checkbox].check-custom ~ .check-toggle, input[type=radio].check-custom ~ .check-toggle, input[type=checkbox].check-custom ~ .checkmark {
  background: white;
  border: 1px solid var(--color-gray);
}
input[type=radio].check-custom ~ .checkmark {
  background: white;
  border: 1px solid var(--color-gray);
}
input[type=radio].check-custom ~ .check-toggle, input[type=radio].check-custom ~ .checkmark {
  border-radius: 50%;
}
input[type=radio].check-custom.disabled ~ .check-toggle, input[type=radio].check-custom[disabled] ~ .check-toggle, input[type=radio].check-custom.disabled ~ .checkmark, input[type=radio].check-custom[disabled] ~ .checkmark {
  background: var(--color-checkbox);
}
input[type=checkbox].check-custom:hover ~ .check-toggle, input[type=radio].check-custom:hover ~ .check-toggle, input[type=checkbox].check-custom:hover ~ .checkmark, input[type=radio].check-custom:hover ~ .checkmark {
  border-color: var(--color-gray);
}
input[type=checkbox].check-custom:focus ~ .check-toggle, input[type=radio].check-custom:focus ~ .check-toggle, input[type=checkbox].check-custom:focus ~ .checkmark, input[type=radio].check-custom:focus ~ .checkmark {
  border-color: var(--color-checkbox);
  box-shadow: 0 0 0 1px var(--color-blue);
}
input[type=checkbox].dark.check-custom:checked ~ .check-toggle, input[type=radio].dark.check-custom:checked ~ .check-toggle, input[type=checkbox].dark.check-custom:checked ~ .checkmark, input[type=radio].dark.check-custom:checked ~ .checkmark {
  background: var(--color-checkbox) url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAFHGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTA3LTI0VDE3OjM5OjQwKzA1OjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0wOC0wMVQxOToyNzoxOSswNTowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0wOC0wMVQxOToyNzoxOSswNTowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpkNzg2OTA1MS1lZDg0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") center no-repeat;
  /* background: var(--color-light-blue) url(../../images/check-mark-xxl.png) center no-repeat; */
  border-color: #7697ca;
  background-size: 8px;
}
input[type=checkbox].check-custom:checked ~ .check-toggle, input[type=radio].check-custom:checked ~ .check-toggle, input[type=checkbox].check-custom:checked ~ .checkmark, input[type=radio].check-custom:checked ~ .checkmark {
  background: var(--color-checkbox) url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAFHGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTA3LTI0VDE3OjM5OjQwKzA1OjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0wOC0wMVQxOToyNzoxOSswNTowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0wOC0wMVQxOToyNzoxOSswNTowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpkNzg2OTA1MS1lZDg0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") center no-repeat;
  /* background: var(--color-light-blue) url(../../images/check-mark-xxl.png) center no-repeat; */
  border-color: var(--color-checkbox);
  background-size: 8px;
}
input[type=checkbox].check-custom.small:checked ~ .check-toggle, input[type=radio].check-custom.small:checked ~ .check-toggle, input[type=checkbox].check-custom.small:checked ~ .checkmark, input[type=radio].check-custom.small:checked ~ .checkmark {
  background-size: 5px;
}
input[type=checkbox].check-custom.small ~ .check-toggle, input[type=radio].check-custom.small ~ .check-toggle, input[type=checkbox].check-custom.small ~ .checkmark, input[type=radio].check-custom.small ~ .checkmark {
  width: 13px;
  height: 13px;
}
input[type=checkbox].check-custom.large:checked ~ .check-toggle, input[type=radio].check-custom.large:checked ~ .check-toggle, input[type=checkbox].check-custom.large:checked ~ .checkmark, input[type=radio].check-custom.large:checked ~ .checkmark {
  background-size: 12px;
}
input[type=checkbox].check-custom.large ~ .check-toggle, input[type=radio].check-custom.large ~ .check-toggle, input[type=checkbox].check-custom.large ~ .checkmark, input[type=radio].check-custom.large ~ .checkmark {
  width: 22px;
  height: 22px;
}

.dropdown .dropdown-item.active {
  background-color: var(--color-button);
}

/* Styles for the basic appearance of the custom checkbox */
/* Styles for the hover state appearance of the custom checkbox */
/* Styles for the focus state appearance of the custom checkbox */
/* Styles for the checked state appearance of the custom checkbox */
/*-------------------------------END GEN CLASS*/
