body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: #414042;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
}

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #9370db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ba55d3;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f0f;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

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

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

.swal2-html-container {
  color: #FFF;
  font-size: 1em;
}

/*------------------------------------
- COLOR primary
------------------------------------*/
.alert-primary {
  color: #843900;
  background-color: #ffe2cc;
  border-color: #ffd6b7;
}

.alert-primary hr {
  border-top-color: #ffc79e;
}

.alert-primary .alert-link {
  color: #512300;
}

.badge-primary {
  color: #212529;
  background-color: #ff6e00;
}

.badge-primary[href]:hover, .badge-primary[href]:focus {
  color: #212529;
  background-color: #cc5800;
}

.bg-primary {
  background-color: #ff6e00 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #cc5800 !important;
}

.border-primary {
  border-color: #ff6e00 !important;
}

.btn-primary {
  color: #212529;
  background-color: #ff6e00;
  border-color: #ff6e00;
}

.btn-primary:hover {
  color: #212529;
  background-color: #db5e00;
  border-color: #cc5800;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 110, 0, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #212529;
  background-color: #ff6e00;
  border-color: #ff6e00;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #212529;
  background-color: #cc5800;
  border-color: #bc5100;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 110, 0, 0.5);
}

.btn-outline-primary {
  color: #ff6e00;
  background-color: transparent;
  border-color: #ff6e00;
}

.btn-outline-primary:hover {
  color: #212529;
  background-color: #ff6e00;
  border-color: #ff6e00;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 110, 0, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #ff6e00;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #212529;
  background-color: #ff6e00;
  border-color: #ff6e00;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 110, 0, 0.5);
}

.list-group-item-primary {
  color: #843900;
  background-color: #ffd6b7;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #843900;
  background-color: #ffc79e;
}

.list-group-item-primary.list-group-item-action.active {
  color: #212529;
  background-color: #843900;
  border-color: #843900;
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #ffd6b7;
}

.table-hover .table-primary:hover {
  background-color: #ffc79e;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #ffc79e;
}

.text-primary {
  color: #ff6e00 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #cc5800 !important;
}

/*------------------------------------
- COLOR secondary
------------------------------------*/
.alert-secondary {
  color: #000000;
  background-color: #8284b9;
  border-color: #7577b2;
}

.alert-secondary hr {
  border-top-color: #6466a9;
}

.alert-secondary .alert-link {
  color: #000000;
}

.badge-secondary {
  color: #fff;
  background-color: #282948;
}

.badge-secondary[href]:hover, .badge-secondary[href]:focus {
  color: #fff;
  background-color: #151627;
}

.bg-secondary {
  background-color: #282948 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #151627 !important;
}

.border-secondary {
  border-color: #282948 !important;
}

.btn-secondary {
  color: #fff;
  background-color: #282948;
  border-color: #282948;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #1b1b31;
  border-color: #151627;
}

.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 41, 72, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #282948;
  border-color: #282948;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #151627;
  border-color: #10101d;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 41, 72, 0.5);
}

.btn-outline-secondary {
  color: #282948;
  background-color: transparent;
  border-color: #282948;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #282948;
  border-color: #282948;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 41, 72, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #282948;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #282948;
  border-color: #282948;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 41, 72, 0.5);
}

.list-group-item-secondary {
  color: #000000;
  background-color: #7577b2;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #000000;
  background-color: #6466a9;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #7577b2;
}

.table-hover .table-secondary:hover {
  background-color: #6466a9;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #6466a9;
}

.text-secondary {
  color: #282948 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #151627 !important;
}

/*------------------------------------
- COLOR complementary
------------------------------------*/
.alert-complementary {
  color: #050952;
  background-color: #a4a9f9;
  border-color: #9197f7;
}

.alert-complementary hr {
  border-top-color: #7980f6;
}

.alert-complementary .alert-link {
  color: #020422;
}

.badge-complementary {
  color: #fff;
  background-color: #0d17c5;
}

.badge-complementary[href]:hover, .badge-complementary[href]:focus {
  color: #fff;
  background-color: #091195;
}

.bg-complementary {
  background-color: #0d17c5 !important;
}

a.bg-complementary:hover, a.bg-complementary:focus,
button.bg-complementary:hover,
button.bg-complementary:focus {
  background-color: #091195 !important;
}

.border-complementary {
  border-color: #0d17c5 !important;
}

.btn-complementary {
  color: #fff;
  background-color: #0d17c5;
  border-color: #0d17c5;
}

.btn-complementary:hover {
  color: #fff;
  background-color: #0a13a3;
  border-color: #091195;
}

.btn-complementary:focus, .btn-complementary.focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 23, 197, 0.5);
}

.btn-complementary.disabled, .btn-complementary:disabled {
  color: #fff;
  background-color: #0d17c5;
  border-color: #0d17c5;
}

.btn-complementary:not(:disabled):not(.disabled):active, .btn-complementary:not(:disabled):not(.disabled).active, .show > .btn-complementary.dropdown-toggle {
  color: #fff;
  background-color: #091195;
  border-color: #080f86;
}

.btn-complementary:not(:disabled):not(.disabled):active:focus, .btn-complementary:not(:disabled):not(.disabled).active:focus, .show > .btn-complementary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 23, 197, 0.5);
}

.btn-outline-complementary {
  color: #0d17c5;
  background-color: transparent;
  border-color: #0d17c5;
}

.btn-outline-complementary:hover {
  color: #fff;
  background-color: #0d17c5;
  border-color: #0d17c5;
}

.btn-outline-complementary:focus, .btn-outline-complementary.focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 23, 197, 0.5);
}

.btn-outline-complementary.disabled, .btn-outline-complementary:disabled {
  color: #0d17c5;
  background-color: transparent;
}

.btn-outline-complementary:not(:disabled):not(.disabled):active, .btn-outline-complementary:not(:disabled):not(.disabled).active, .show > .btn-outline-complementary.dropdown-toggle {
  color: #fff;
  background-color: #0d17c5;
  border-color: #0d17c5;
}

.btn-outline-complementary:not(:disabled):not(.disabled):active:focus, .btn-outline-complementary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-complementary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 23, 197, 0.5);
}

.list-group-item-complementary {
  color: #050952;
  background-color: #9197f7;
}

.list-group-item-complementary.list-group-item-action:hover, .list-group-item-complementary.list-group-item-action:focus {
  color: #050952;
  background-color: #7980f6;
}

.list-group-item-complementary.list-group-item-action.active {
  color: #fff;
  background-color: #050952;
  border-color: #050952;
}

.table-complementary,
.table-complementary > th,
.table-complementary > td {
  background-color: #9197f7;
}

.table-hover .table-complementary:hover {
  background-color: #7980f6;
}

.table-hover .table-complementary:hover > td,
.table-hover .table-complementary:hover > th {
  background-color: #7980f6;
}

.text-complementary {
  color: #0d17c5 !important;
}

a.text-complementary:hover, a.text-complementary:focus {
  color: #091195 !important;
}
