/* src/css/utils.css */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
[class*=col-] {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}
.col-xs-1 {
  width: 8.33333%;
}
.col-xs-2 {
  width: 16.66667%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-4 {
  width: 33.33333%;
}
.col-xs-5 {
  width: 41.66667%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-7 {
  width: 58.33333%;
}
.col-xs-8 {
  width: 66.66667%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-10 {
  width: 83.33333%;
}
.col-xs-11 {
  width: 91.66667%;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-offset-1 {
  margin-left: 8.33333%;
}
.col-xs-offset-2 {
  margin-left: 16.66667%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-4 {
  margin-left: 33.33333%;
}
@media (min-width: 768px) {
  .col-sm-1 {
    width: 8.33333%;
  }
  .col-sm-2 {
    width: 16.66667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
}
@media (min-width: 992px) {
  .col-md-1 {
    width: 8.33333%;
  }
  .col-md-2 {
    width: 16.66667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333%;
  }
  .col-md-5 {
    width: 41.66667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333%;
  }
  .col-md-8 {
    width: 66.66667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333%;
  }
  .col-md-11 {
    width: 91.66667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1 {
    width: 8.33333%;
  }
  .col-lg-2 {
    width: 16.66667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
}
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
.container-fluid {
  margin: 0 auto;
  padding: 0 15px;
}
.form-group {
  margin-bottom: 15px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.control-label {
  font-weight: bold;
}
.help-block {
  display: block;
  margin-top: 5px;
  color: #a94442;
  font-size: 12px;
}
.has-error .form-control {
  border-color: #a94442;
}
.form-group.label-floating,
.form-group.label-static {
  position: relative;
  padding-top: 28px;
  margin-bottom: 24px;
}
.form-group.label-floating > .control-label,
.form-group.label-static > .control-label {
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, .54);
  font-weight: 400;
  pointer-events: none;
  white-space: nowrap;
}
.form-group.label-floating > .control-label {
  transition:
    top .2s ease,
    font-size .2s ease,
    color .2s ease;
}
.form-group.label-floating.is-empty > .control-label {
  top: 30px;
  font-size: 14px;
  color: rgba(0, 0, 0, .38);
}
.form-group.label-floating > .form-control,
.form-group.label-static > .form-control {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, .26);
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(0, 0, 0, .87);
}
.form-group.label-floating > .form-control:focus,
.form-group.label-static > .form-control:focus {
  border-bottom: 2px solid #0077B5;
  outline: none;
  box-shadow: none;
}
.form-group.label-floating > .form-control[disabled],
.form-group.label-static > .form-control[disabled] {
  color: rgba(0, 0, 0, .7);
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
}
.btn-default {
  background-color: #fff;
  border-color: #ccc;
  color: #333;
}
.btn-primary {
  background-color: #337ab7;
  border-color: #2e6da4;
  color: #fff;
}
.btn-success {
  background-color: #5cb85c;
  border-color: #4cae4c;
  color: #fff;
}
.btn-danger {
  background-color: #d9534f;
  border-color: #d43f3a;
  color: #fff;
}
.btn-raised {
  box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-group {
  display: inline-flex;
  position: relative;
}
.btn-group > .btn {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  border-radius: 4px 0 0 4px;
}
.btn-group > .btn:last-child {
  border-radius: 0 4px 4px 0;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 8px;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table thead th {
  border-bottom: 2px solid #ddd;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #ddd;
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
.nav-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  border-bottom: 2px solid #ddd;
}
.nav-item {
  margin-bottom: -2px;
}
.nav-link {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #555;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-link:hover {
  color: #333;
  border-color: #eee;
}
.nav-link.active {
  color: #333;
  background-color: #fff;
  border-color: #ddd #ddd #fff;
}
.tab-content {
  padding: 10px 0;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.panel {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
}
.panel-default {
  border-color: #ddd;
}
.panel-heading {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  border-radius: 3px 3px 0 0;
}
.panel-title {
  margin: 0;
  font-size: 16px;
}
.panel-body {
  padding: 15px;
}
.panel-group {
  margin-bottom: 20px;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
.modal-dialog {
  background: #fff;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  margin: 20px;
}
.modal-content {
  border-radius: 4px;
  overflow: hidden;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  background-color: #f5f5f5;
}
.modal-title {
  margin: 0;
  font-size: 18px;
}
.modal-body {
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.mt-3 {
  margin-top: 12px;
}
.mt-4 {
  margin-top: 16px;
}
.mb-3 {
  margin-bottom: 12px;
}
.font-weight-bold {
  font-weight: bold;
}
.height-90 {
  height: 90px;
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  transition: width .6s ease;
}
progressbar.winter .progress-bar {
  background-color: #5bc0de;
}
progressbar.spring .progress-bar {
  background-color: #5cb85c;
}
progressbar.summer .progress-bar {
  background-color: #f0ad4e;
}
progressbar.fall .progress-bar {
  background-color: #d9534f;
}
progressbar.success .progress-bar {
  background-color: #5cb85c;
}
progressbar.info .progress-bar {
  background-color: #5bc0de;
}
progressbar.warning .progress-bar {
  background-color: #f0ad4e;
}
progressbar.danger .progress-bar {
  background-color: #d9534f;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .visible-xs {
    display: none !important;
  }
}
.w-100 {
  width: 100% !important;
}
.d-flex {
  display: flex !important;
}
.d-block {
  display: block !important;
}
.d-none {
  display: none !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.justify-content-center {
  justify-content: center !important;
}
.align-items-center {
  align-items: center !important;
}
.col-1 {
  width: 8.33333%;
}
.col-2 {
  width: 16.66667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33333%;
}
.col-5 {
  width: 41.66667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33333%;
}
.col-8 {
  width: 66.66667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33333%;
}
.col-11 {
  width: 91.66667%;
}
.col-12 {
  width: 100%;
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  margin-bottom: 8px;
}
.input-group-addon {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  color: #555;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  white-space: nowrap;
}
.list-inline {
  padding: 0;
  margin: 0;
  list-style: none;
}
.list-inline li {
  display: inline-block;
  padding: 0 5px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: background-color .4s;
}
.slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: transform .4s;
}
.switch input:checked + .slider {
  background-color: #0077B5;
}
.switch input:checked + .slider::before {
  transform: translateX(16px);
}
.slider.round {
  border-radius: 24px;
}
.slider.round::before {
  border-radius: 50%;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
