* {
  box-sizing: border-box;
}

/* Style the header */
header {
  font-family: Georgia, serif;
  background-color: #eee;
  padding: 30px;
  text-align: center;
  font-size: 35px;
  color: #220;
}


/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  padding: 10px;
  text-align: center;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav, article {
    width: 100%;
    height: auto;
  }
}

body {
  background-color: #eee;
  font-family: Verdana, sans-serif;
  font-size: 12px;  
}

h3 {
  font-family: Georgia, serif;
  font-size: 24px;    
  text-align: center;
}

button {
  padding: 12px;
  padding-right: 65px;
  padding-left: 65px;
}


.container {
  background-color: #fff;
  margin-left:  auto;
  margin-right:  auto;
  margin-top: 17px;
  max-width: 1170px;
  padding-top: 20px;
  padding-right: 15px;
  padding-left: 15px;
}

.container_top {
  background-color: #fff;
  margin-left:  auto;
  margin-right:  auto;
  margin-top: 17px;
  max-width: 1170px;
  padding-right: 15px;
  padding-left: 15px;
}

.demo_image {
    float: right;
    padding: 10px;
}

.text_box {
    padding: 10px;
}

.text_box_red {
    padding: 10px;
    background-color: #ffcccc;
}

.text_box_green {
    padding: 10px;
    background-color: #ccffcc;
}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.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: #006699;
}

input:focus + .slider {
  box-shadow: 0 0 1px #006699;
}

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%;
}

.lblReserved {
  position: relative;
  top: 12px;
  font-family: Verdana, sans-serif;
  font-size: 20px;  
}

#my_title {
    float: right;
}


