html, body {
  height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  background: #e9eaeb;
  margin: 0px;
}

.flex-center-center {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hide {
  display: none;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

/*==============================================================================
================================================================================
==============================================================================*/

.mt-20 {
  margin-top: 20px;
}

/*==============================================================================
================================================================================
==============================================================================*/

.text-red {
  color: red;
}

.text-green {
  color: green;
}

.data-maschine-status {
  font-weight: 700;
}


/*==============================================================================
================================================================================
==============================================================================*/

.btn-fs {
  display: block;
  width: 100%;
}

.btn-blue {
  background-color: #7e9cd0;
  color: #ffffff;
}

.btn-blue:hover {
  background-color: #57585a;
  color: #ffffff;
}

.btn-grey {
  background-color: #ffffff;
  color: #57585a;
  border-color: #57585a;
}

.btn-grey:hover {
  background-color: #57585a;
  color: #ffffff;
}

.btn-red {
  background-color: #d30303;
  color: #ffffff;
}


/*==============================================================================
================================================================================
==============================================================================*/

.input {
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  border-radius: .25rem;
  border: 1px solid #57585a;
}

/*==============================================================================
================================================================================
==============================================================================*/

.login-header {
  margin-bottom: 30px;
}

.login-container {
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0px 1px 6px #0000001F;
  border-radius: 4px;
  width: 100%;
  max-width: 400px;
}


/*==============================================================================
================================================================================
==============================================================================*/

#header {
  background: #ffffff;
  position: fixed;
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  display: flex;
  justify-content: space-between;
  z-index: 100;
}

#header .logo-container {
  width: 200px;
}

#header .btn-conainer > a {
  font-size: 30px;
  color: #0c65af;
}

section.body {
  background: #ffffff;
  min-height: 100%;
  padding-top: 100px;
}

/*==============================================================================
================================================================================
==============================================================================*/

.toast-container.toast-container-fluid {
  width: 100%;
}

.toast.toast-fluid {
  width: 100%;
}

/*==============================================================================
================================================================================
==============================================================================*/

.maschinen-container .maschinen-item {
  padding-top: 20px;
}

.maschinen-container .maschinen-item .maschinen-item-border > div {
  border-bottom: 1px solid #0c65af;
  width: 100%;
  padding-top: 20px;
}

.maschinen-container .maschinen-item .maschinen-item-button > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #0c65af;
  color: #0c65af;
  text-decoration: none;
}

.maschinen-container .maschinen-item .maschinen-item-button > a:hover {
  background-color: #7e9cd0;
  color: #ffffff;
}

/*==============================================================================
================================================================================
==============================================================================*/

.maschine-input-container {
  display: flex;
  justify-content: space-between;
}

.maschine-input-titel {
  margin-bottom: 1.5rem;
}

.maschine-input-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #0c65af;
  background-color: #ffffff;
  border: 1px solid #0c65af;
}

.maschine-input-button:hover {
  color: #ffffff;
  background-color: #0c65af;
}

.maschine-input-button:active {
  color: #ffffff;
  background-color: #00447d;
  border: 1px solid #00447d;
}

.maschine-input-display {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c65af;
  color: #ffffff;
  width: 100px;
  font-size: 24px;
  font-weight: bold;
}

.maschine-input-display-container {
  display: flex;
}

.maschine-input-display > span {
  display: flex;
}

.maschine-input-display.bg-notsame {
  background-color: #d30303;
}

.maschine-input-display.bg-same {
  background-color: green;
}

/*==============================================================================
============================== ALARM LISTE =====================================
==============================================================================*/

.alarm-item {
  margin-bottom: 1rem;
}

.alarm-item-container {
  border: 1px solid #0c65af;
  border-radius: 4px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.alarm-item-header {
  border-bottom: 1px solid #0c65af;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.alarm-item-body {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.alarm-item-body p {
  margin-bottom: 0px;
}

.alarm-item-footer {
  border-top: 1px solid #0c65af;
  padding: 0.75rem;
}

.alarm-item-footer a {
  border-radius: 5px;
  border: 1px solid #0c65af;
  color: #0c65af;
  text-decoration: none;
  text-align: center;
  padding: 0.75rem;
}

/*==============================================================================
============================== STAT ============================================
==============================================================================*/

#stat-container {
  width: 100%;
}

/*==============================================================================
============================== NAV =============================================
==============================================================================*/

.nav-tabs .nav-link.active {
  border-color: #0c65af #0c65af #fff;
}

.nav-tabs .nav-link:hover {
  border-color: #529be4 #529be4 #0c65af;
}

.nav-tabs {
  border-bottom: 1px solid #0c65af;
}

.nav-link {
  color: #0c65af;
}

/*==============================================================================
============================== SPINNER =========================================
==============================================================================*/

.spinner-container {
  position: absolute;
  background-color: #ffffff;
  z-index: 99;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*==============================================================================
============================== FORM ============================================
==============================================================================*/

.form-control.error {
  border-color: #f44336;
}

.form-inline-switch {
  display: inline-block;
  margin-left: 5px;
}
