.t-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  border-radius: 20px;
  padding: 0 20px;
  min-height: 40px;
  text-align: center;
  border: 0;
  cursor: pointer;
  color: #ffffff;
}
.t-btn:hover {
  color: #ffffff;
}
.t-btn.btn-transparent {
  background-color: transparent;
  border: 1px solid;
  color: #39b549;
}
.t-btn.btn-transparent:hover {
  color: #39b549;
}
.t-btn.btn-green {
  background-color: #39b549;
}
.t-btn.btn-gray {
  background-color: #888686;
}
.t-btn.btn-lt-gray {
  background-color: #b0b6ca;
}

html {
  height: 100%;
  font-size: 15px;
}

button:active {
  outline: none !important;
  border: none !important;
}

button:focus {
  outline: 0 !important;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  min-height: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1.2;
  background-color: #ffffff;
  color: #414A60;
}

body#loginPage {
  min-height: 100%;
  height: 100%;
}

h1, h2, h3 {
  color: #39b549;
  font-weight: 700;
  margin-bottom: 0;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
}

.font-color {
  color: #2F4858;
}

.btn-default {
  border-radius: 20px;
}

.white-bgr {
  background-color: white;
}

.grey-bgr {
  background-color: #e9eae9 !important;
}

.grey {
  color: #e9eae9;
}

.dark-grey {
  color: #50535a;
}

.white {
  color: white;
}

.blue {
  color: #39b549;
}

.bg-blue {
  background-color: #39b549;
}

.bg-gray {
  background-color: #999999;
}

.bold, b {
  font-weight: 700;
}

.blue {
  color: #39b549;
}

.vertical-align {
  top: 50%;
  transform: translateY(-50%);
}

.br-0 {
  border-radius: 0;
}

.disabled {
  opacity: 0.3;
  pointer-events: none;
}

a {
  color: inherit;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

.title {
  margin-bottom: 60px;
}

input {
  border: 1px solid;
}

.cr-placeholder {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/global/placeholder-cd.png");
}

/*
 * Navbar
 */
.nav-link {
  font-size: 15px;
  color: #50535a;
}

@media (max-width: 991px) {
  .nav-link.line:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #1c224b;
    margin-top: 6px;
  }
}

.hint {
  display: flex;
}
.hint:before {
  flex-shrink: 0;
  display: block;
  float: left;
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/icons/info.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  margin-right: 10px;
  margin-top: 3px;
  border-radius: 50%;
}

.popup-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
}
.popup-container .popup {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  width: 90%;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  background-color: #f1f1f1;
  color: #333333;
  padding: 30px 30px;
  box-shadow: 0 0 11px 1px #333;
  z-index: 9;
  display: block;
}
.popup-container .popup .popup-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-image: url("../img/global/placeholder-cd.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
}
.popup-container .popup .popup-icon.ic-tef-white {
  width: 70px;
  height: 70px;
}
.popup-container .popup .popup-text {
  max-width: 80%;
  margin: 50px auto;
}
.popup-container .popup .popup-btns {
  margin-top: 80px;
  display: flex;
  justify-content: space-evenly;
}
.popup-container .popup .popup-btns .t-btn {
  color: #000000;
  background-color: #39b549;
  min-width: 150px;
}

/*
*Return Button
*/
.return-area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  display: none;
}

.btn-return {
  display: block;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/icons/btn_return.png");
  border: none;
}
.btn-return.general {
  position: absolute;
  bottom: 20px;
  right: 20px;
  pointer-events: all;
}

/**
 * Card
 */
.card {
  border: 2px solid white;
  background-color: transparent;
}

/*
 * Login
 */
.login-bgr {
  background-color: #003245;
  width: 100%;
  height: 100%;
}

.login-btn {
  padding: 4px 17px;
  border: none;
  background-clip: padding-box;
  -webkit-transition: color 0.2s linear, background-color 0.2s linear;
  transition: color 0.2s linear, background-color 0.2s linear;
}

.login-btn.btn-default {
  color: #003245;
  background-color: #ffffff;
}

.login-btn.btn-default.btn-border {
  border-color: #ffffff;
  color: #003245;
}

.login-btn.btn-default:hover {
  background-color: #e6e6e6;
  color: #003245;
}

#stoerer {
  background: #fff;
  width: 225px;
  position: fixed;
  padding: 11px;
  color: #003245;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#stoerer a {
  margin-top: 15px;
  display: block;
  color: #003245;
}

/*
 * Dashboard
 */
.headline {
  font-size: 14px !important;
}

/*
 *  Buttons
 */
.button-own {
  padding: 5px 30px;
  width: 100%;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #ffffff !important;
  border: none !important;
}

.button-own.btn-default {
  color: #003245;
  background-color: #ffffff;
}

.button-own.btn-default.btn-border {
  border-color: #ffffff;
  color: #003245;
}

.button-own.btn-default:hover {
  background-color: #e6e6e6;
  color: #003245;
}

.btn {
  padding: 4px 17px;
  border: none;
  background-clip: padding-box;
  -webkit-transition: color 0.2s linear, background-color 0.2s linear;
  transition: color 0.2s linear, background-color 0.2s linear;
}

.btn.btn-default {
  color: #003245;
  background-color: #ffffff;
}

.btn.btn-default-unselected {
  color: #003245;
  background-color: rgba(255, 255, 255, 0.2);
}

.btn.btn-default.btn-border {
  border-color: #ffffff;
  color: #003245;
}

.btn.btn-default:hover {
  background-color: #003245;
  color: #ffffff;
}

/*
 * Border
 */
.border-blue {
  border: 2px solid #003245;
}

/*
 * Checkboxes
 */
.inputGroup {
  background-color: #fff;
  display: block;
  margin: 10px 0;
  position: relative;
}
.inputGroup label {
  padding: 12px 30px;
  width: 100%;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
}
.inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

footer {
  display: none;
  pointer-events: none;
}
footer a {
  pointer-events: all;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: transparent;
}
.nav-pills .nav-link.active:after, .nav-pills .show > .nav-link:after {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  background-color: #00edff;
  margin-top: 5px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/*# sourceMappingURL=global.css.map */
