body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
header {
    color: black;
    height: 60px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 5px;
    border-bottom: 1px solid #cccccc;
}

header h2{
    width: 250px;
    display: inline-block;
}

header h2 a{
  text-decoration: none;
}

main {
  width: 100%;
  min-height: calc(100vh - 250px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 10px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--padding);
  box-sizing: border-box;
  font-size: 12px;
  color: var(--Grau);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

footer .TWLTLogo {
  height: 18px;
  vertical-align: middle;
}
footer a{
  text-decoration: none;
  cursor: pointer;
}

h1 {
    margin: 0;
    font-weight: 500;
}

h3 {
    text-align: center;
    margin: 0 0 30px 0;
}

h4 {
  text-align: center;
  margin: 0 0 30px 0;
}

a {
    color: #E31C79;
}

form {
    text-align: center;
    margin-top: 40px;
}

.input {
    display: block;
    width: 250px;
    margin: 10px auto 40px auto;
    text-align: center;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid black;
    background-color: white;
}

.input:focus {
    outline: none;
    box-shadow: 2px 3px 3px #fcdd3c;
}

button {
    padding: 10px 20px 10px 20px;
    color: black;
    font-size: 14px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.form-switch {
/*	margin: 40px;
font-size: 130%;
*/
  display: block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  margin: 10px 0px;
}
.form-switch i {
  position: relative;
  display: inline-block;
  margin-right: .5rem;
  width: 46px;
  height: 26px;
  background-color: #c6c6c6;
  border-radius: 23px;
  vertical-align: text-bottom;
  transition: all 0.3s linear;
}
.form-switch i::before {
  content: "";
  position: absolute;
  left: 0;
  width: 42px;
  height: 22px;
  background-color: #fff;
  border-radius: 11px;
  transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
  transition: all 0.25s linear;
}
.form-switch i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
  transform: translate3d(2px, 2px, 0);
  transition: all 0.2s ease-in-out;
}
.form-switch:active i::after {
  width: 28px;
  transform: translate3d(2px, 2px, 0);
}
.form-switch:active input:checked + i::after { transform: translate3d(16px, 2px, 0); }
.form-switch input { display: none; }
.form-switch input:checked + i { background-color: #0081dd; }
.form-switch input:checked + i::before { transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0); }
.form-switch input:checked + i::after { transform: translate3d(22px, 2px, 0); }

.errorMsg{
  color: red;
}

.selectBox {
  display: block;
  width: 250px;
  margin: 10px auto 40px auto;
  text-align: center;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid black;
  background-color: white;
}

.inputbox {
  display: inline-block;
  width: 250px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid black;
  background-color: white;
}

.inputbox:focus {
  outline: none;
  box-shadow: 2px 3px 3px #fcdd3c;
}
.groupForm{
  
}
.Userlable{
  width: 150px;
  display: inline-block;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 1px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
.width200{
  width: 200px;
}
.hide{
  display: none;
}
.timeSlot div{ 
  display: inline-block;
  border: 1px solid;
  margin: 5px;
  padding: 5px;
  cursor: pointer;
  width: 100px;
  text-align: center;
}
.timeSlot div:hover{ 
  background: #E31C79;
}
.active{
 background-color: #0081dd;
}
.delete{
  cursor: pointer;
}
.StatusTitle{ 
  width: 200px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.day{
  display:inline-block;
  width: 300px;
}

.days div{ 
  display: inline-block;
  border: 1px solid;
  margin: 5px;
  padding: 5px;
  cursor: pointer;
  width: 90px;
  text-align: center;
}
.statusOption{
  width: 300px;
}
.deleteFavorite{
  cursor: pointer;
}
.setAdmin{
  cursor: pointer;
}
.addAditionEmail{
  cursor: pointer;
  width: 10px;
}
.btn-sm{
    color: black;
    font-size: 12px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}
.OtpBox{
  display: inline-block;
  width: 250px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid black;
  background-color: white;
  text-align: center;
}
.DeleteAditionalEmail{
  cursor: pointer;
}
.userStatus{
  cursor: pointer;
}
.unsubscribe{
  cursor: pointer;
}
.settingIcon{
    float: right;
    margin-top: 22px;
    margin-right: 10px;
}

.Anleitungspfeil {
	width: 100px;
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(120deg);
}

.AbstandObenUnten {
	margin: 30px 0;
}

.FarbigerStreifen {
	border-left: 4px solid #0081dd;
	padding: 0px 0px 0px 30px;
}

.Willkommen {
	position: relative;
}

.loeschen {
	background-color: red;
	color: white !important;
}

.rechts {
	text-align: right;
}

section .gruppierung {
	margin-bottom: 40px;
}

.deleteGroup{
  cursor: pointer;
  width: 10px;
}

.login {
  float: right;
  margin-right: 10px;
  margin-top: 10px;
}
.LoginWrapper {
  text-align: center;
  margin-top: 40px;
}
.editTeamName{
  display: inline-block;
  padding: 5px;
}
