*,
*:before,
*:after {
  box-sizing: inherit;
}
html,
body {
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  font-family: "Helvetica","Arial", sans-serif;
  color: #333;
  font-size: 13px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0 0 15px;
}

h5 {
  font-size: 1.3em;
  margin: 2em auto;
}
h6 {
  font-size: 1.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
  font-family: "Helvetica","Arial", sans-serif;
}

strong {
  font-weight: 700;
}

p,
ol,
ul,
li {
  font-size: 1em;
  line-height: 1.4em;
  margin: 0 0 15px;
}

ol {
  list-style: decimal outside;
}

ul,
ol {
  margin: 0 0 0 20px;
}

table.noborder td {
  border: none;
}

.container {
  padding: 1em;
}

.btn {
  display: block;
  height: 40px;
  font-weight: 700;
  padding: 0 20px;
  line-height: 1em;
  border-radius: 50px;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  width: 300px;
  margin: auto;
  font-size: 13px;
}
.btn-blue {
  background: #01526a;
  color: #fff;
}
.btn-clear {
  color: #333;
  border: solid 2px #333;
}
.btn-blue:hover {
  color: #fff;
  background: #066683;
}
.btn-clear:hover {
  color: #fff;
  background: #333;
}

.link {
  color: #1eaedb;
  text-decoration: none;
  box-shadow: none;
  font-size: 1rem;
  text-transform: unset;
  height: 1rem;
}
.link:hover {
  color: #0fa0ce;
  text-decoration: underline;
  outline: 0;
}

.nav {
  margin: 0;
  padding: 0;
}

.nav li {
  /* display: block; */
  list-style: none;
  padding: 20px 20px;
  margin: 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  color: #fff;
}
.nav li.active {
  background: #fafafa;
  color: #333;
}
.status {
  text-align: right;
  margin: 0 0 1em;
}
span.badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9em;
}
span.badge.green,
.alert.green {
  background: #d4edda;
  color: #155724;
}
span.badge.red,
.alert.red {
  background: #f8d7da;
  color: #721c24;
}
span.badge.yellow,
.alert.yellow {
  background: #fff3cd;
  color: #856404;
}

.alert {
  padding: 1.5em 2em;
  border-radius: 5px;
  margin: 0 0 1em;
}
.alert p:last-child {
  margin: 0;
}
.cards {
  margin: 0;
  width: 100%;
}
.cards li {
  list-style: none;
  display: block;
  background: #e0e0e0;
  color: #333;
  margin: 0;
  padding: 8px 15px;
}
.cards li:nth-child(even) {
  background: none;
}
.cards.active li {
  background: #d1ecf1;
  color: #0c5460;
}
.cards li span {
  display: inline-block;
}
.cards.active li .name {
  font-weight: 500;
  width: calc(100% - 250px);
}
.cards li .name {
  width: calc(100% - 350px);
}
.cards li .number {
  width: 150px;
}
.cards li .exp {
  width: 80px;
}
.cards li .default {
  width: 100px;
  text-align: right;
}

.overlay {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  left: -100vw;
}
.overlay.active {
  opacity: 1;
  left: 0;
}
.overlay-panel {
  width: 500px;
  background: #fff;
  padding: 2em;
  text-align: center;
}

.c-bg-popup__loader {
  background-color: rgba(255, 255, 255, 0.55);
  display: flex;
  /* margin: 0 -24px; */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  stroke: #ffa32f;
  align-items: center;
  justify-content: center;
}

.c-bg-popup__loader .mat-spinner circle,
.c-bg-popup__loader ::ng-deep .mat-progress-spinner circle {
  stroke: #112e2b;
}

.nav {
  display: block;
}

.badge {
  line-height: unset;
}

.row {
  margin-right: unset;
  margin-left: unset;
}

/** LOADING **/

.loading {
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: all 0.2s;
}
.loading.active {
  display: block;
  z-index: 99;
  opacity: 1;
}
.loading span {
  line-height: 2em;
  margin: 0 auto -50px;
  display: block;
}
.loading>div {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.bt-spinner {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
}
-webkit-@keyframes spin {
  -webkit-from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  -webkit-to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

