html {
  background-color: #f8f8f8;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  height: 50px;
  cursor: pointer;
}

tr>th {
  text-transform: uppercase;
  color: lightslategray;
  font-size: 0.8em;
  text-align: left;
  font-weight: 600;
}

/*
  td,
  th {
    padding: 5px 12px 5px 12px;
    
  }
  */

.headerText {
  text-transform: uppercase;
  color: lightslategray;
  font-size: 0.8em;
  text-align: left;
  font-weight: 600;
}

table {
  /* line-height: 44px; */
  width: 100%;
  border-collapse: collapse;
}


strong {
  color: #4400ff;
}


/* System Fonts as used by Medium and WordPress */
/* ul {
  list-style:none;
  padding-left: 0px;
} */

li {

  color: #333333;
  list-style-position: outside;
  padding-bottom: 5px;
}

a {
  font-weight: 600;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

html {
  margin: 0px;
  padding: 0px;
}

body {
  margin: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
  padding: 0px 16px 0px 16px;
  margin-top: 0px;
  margin: auto;
  max-width: 900px;
  margin-bottom: 100px;
  color: #222222;
  /* text-align: justify; */
  text-justify: auto;
}

.coloredCheckbox-selector input {
  display: none !important
}

.coloredCheckbox-selector {
  display: flex;
}

.coloredCheckbox-selector input[type=checkbox]+label {
  display: inline-block;
  border-radius: 6px;
  background: #e9e9e9;
  height: 40px;
  width: 50px;
  margin-right: 3px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.coloredCheckbox-selector input[type=checkbox]:checked+label {
  background: #05d775;
  color: #ffffff;
}

p {
  color: #666666;
  font-weight: bold;
}

.desc>p {
  font-weight: normal;
}

input,
select {
  /* width: 100%; */
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid rgb(121, 121, 121);
  border-radius: 4px;
  font-size: 16px;
}

input:focus,
select:focus {
  border: 1px solid rgb(62, 75, 255);
}

h1 {
  /* font-weight: 500; */
  color: #222222;
  /* margin-top: 0px; */
  /* padding-top: 0px; */
  /* padding-bottom: 30px; */
}

h1>a:hover {
  text-decoration: none;
}


.desc>h2 {
  margin-top: 40px;
  font-size: 2em;
  /* color:  #224b97; */
}

.desc {
  margin-top: 60px;
}

h3 {
  color: #4972be;
}


h1,
h2 {
  font-weight: 800;
}

strong {
  font-weight: 800;
}

h1 strong,
h2>span {
  color: #4400ff;
  /* border-bottom: #4b4b4b solid 3px; */
}


.planningRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  /* -webkit-box-shadow: 0px 0px 33px -10px #000000; */
  box-shadow: 0px 0px 16px 0px #00000030;
  cursor: pointer;
}

.planning-time {
  color:cornflowerblue; 
  margin: 0px;
}

.planning-days {
  margin: 0px;
}
.left {
  flex: 1
}

/* ----------------------------------SWITCH------------------- */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #2196F3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}