﻿.button {
  border-width: 0;
  color: #fff;
  background-color: #0068b4;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  text-transform: none;
  font-weight: 700;
  padding: 10px 15px;
  height: 60px;
  width: 242px;
  margin: 10px 0;
  text-decoration: none;
  background-image: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
}
.button:active {
  background-color: #00b2dd;
  text-decoration: none;
  background-image: none;
}
.button:focus {
  outline: none;
}
.form-group > .button {
  width: 100%;
  height: 34px;
  font-size: 15px;
  margin: 0px;
  padding: 7px 15px;
}
.button.table-button {
  width: 100%;
  height: 25px;
  font-size: 14px;
  margin: 0px;
  padding: 3.5px 8px;
  text-overflow: ellipsis;
}
.list-group {
  margin-bottom: 0;
}
.list-group-item:active {
  background-color: #00b2dd;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header-logo {
  margin-top: 15px;
  margin-left: 22px;
}
html,
body,
main {
  height: 100%;
}
.flex {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
.content {
  flex: 1 0 auto;
}
.fa-1-5x {
  font-size: 1.5em;
}
.loader {
  z-index: 999999;
  left: 50%;
  top: 50%;
  display: none;
  position: fixed;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.loader #spinner {
  box-sizing: border-box;
  stroke: #443e59;
  stroke-width: 3px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite;
  animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
@-webkit-keyframes line {
  0% {
    stroke-dasharray: 2, 85.964;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    stroke-dasharray: 65.973, 21.9911;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 2, 85.964;
    stroke-dashoffset: -65.973;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes line {
  0% {
    stroke-dasharray: 2, 85.964;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    stroke-dasharray: 65.973, 21.9911;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 2, 85.964;
    stroke-dashoffset: -65.973;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.footer {
  display: inline-block;
  flex-shrink: 0;
  font-size: 15px;
  margin-bottom: 5px;
}
.wrap {
  display: flex;
  flex-direction: column;
}
.flex-shrink {
  flex-shrink: 0;
}
.form-group textarea {
  margin: 0px;
  width: 100%;
}
.form-group label {
  margin: 0px;
  font-weight: normal;
}
.auto-width {
  width: auto !important;
}
.word-break {
  word-break: break-word;
}
.word-break-all {
  word-break: break-all;
}