/******************************************
CSS FUER DAS DESIGN DER STARTSEITE

******************************************/
body{
  /*background-image: url("../img/bg3.jpg");*/
  background-color: #262626;
  margin: 0px; padding: 0px;
}

/* Markierschutz der Login-Seite*/
body.login{
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Schriftgröße der Login-Seite, die sich an der Fensterbreite orientiert */
@media screen and (min-width: 601px) {
  div.title {
    font-size: 65px;
  }
  .text-size{
	font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  div.title {
    font-size: 40px;
	margin: 0px;
	padding: 0px;
  }
  .text-size{
	font-size: 20px;
  }
}
@media (max-width: @screen-xs) {
  body{
	font-size: 50px;
  }
}

/* Buttons */
.btn-main{
  background-color: #229620; 
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  border-radius: 15px;
}
.btn-success{
  background-color: #229620; 
  border-color: #26CF23;
}
.btn-success:hover, .btn-success:active, .btn-success:focus{
	background-color: #0D730B;
}
.btn-danger{
  background-color: #DC3545; 
}
.btn-danger:hover {
	background-color: red;
}

/* Angemeldet bleiben Regler */
.custom-switch.custom-switch-adaptive {
  padding-left: 0; 
}
.custom-switch.custom-switch-adaptive .custom-control-label {
  padding: 0 1.5em;
  position: relative;
  border-radius: 1em;
  line-height: 1.4em;
  color: #293170;
  border: 1px solid #6C757D;
  background-color: #F8F9FA;
  transition: background-color 200ms; }
.custom-switch.custom-switch-adaptive .custom-control-label::before {
  content: none; 
}
.custom-switch.custom-switch-adaptive .custom-control-label::after {
  position: absolute;
  height: 1em;
  top: 0.2em;
  left: 0.2em;
  width: 1em;
  border-radius: 1em;
  transition: left 200ms; 
}
.custom-switch.custom-switch-adaptive .custom-control-input:checked ~ .custom-control-label {
  color: #FFF;
  background-color: #28a745;
  border-color: #28a745; 
}
.custom-switch.custom-switch-adaptive .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #FFF;
  left: calc(100% - 1.2em);
  transform: none;
  -webkit-transform: none; 
}

/* Resposive Dashboard-Ansicht */
.card-img-top{
  padding: 15px;
  width: 200px;
  height: 200px;
}
.card-columns {
  column-count: 2;
}
@media (min-width: 576px) {
  .card-img-top{
    padding: 15px;
    width: 200px;
    height: 200px;
  }
  .card-columns {
    column-count: 2;
  }
}
@media (min-width: 768px) {
  .card-img-top{
    padding: 15px;
    width: 275px;
    height: 275px;
  }
  .card-columns {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .card-img-top{
    padding: 15px;
    width: 200px;
    height: 200px;
  }
  .card-columns {
    column-count: 4;
  }
}
@media (min-width: 1200px) {
  .card-img-top{
    padding: 15px;
    width: 250px;
    height: 250px;
  }
  .card-columns {
    column-count: 4;
  }
}

/* Suche Benutzer Verwalten */
.input-group.md-form.form-sm.form-search input{
  border: 1px solid #bdbdbd;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
