/* CONTENT STYLE */
.content {
  max-width: 1200px;
  margin: 0 auto;
}

/* ROUND SWITCH CHECKBOX */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkboxSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

input:checked + .checkboxSlider {
  background-color: #1881dd;
}

input:focus + .checkboxSlider {
  box-shadow: 0 0 1px #1881dd;
}

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

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

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


/* COOKIE PAGE */

.cookieClose {
  text-decoration: none;
  float: right;
}

.cookieDialog {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10420000000;
  width: 100%;
  height: 100%;
  display: none;
}

.cookieOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1042000000;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}

.cookieIn {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.cookieBox h2 {
  margin: 10px 40px 15px 0;
}

.cookieBox {
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  margin: 30px;
  padding: 30px;
  margin: 0 auto;
  max-width: 700px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  font-family: sans-serif;
}

.cookieDialog td {
  padding-right: 20px;
}

/* cookie page - buttons */

.cookieNoticeButton.gray {
  color: #000;
  background: #fff;
}

.cookieNoticeButton.gray:hover {
  color: #000;
  background: #f0f0f0;
}

.cookieNoticeButton.green {
  color: #fff;
  background: #64c633;
}

.cookieNoticeButton.green:hover {
  background: #6fe434;
}

.cookieTabs {
  float: left;
  width: 100%;
  border-bottom: 1px solid #EEEEEE;
}

.cookieTabs .cookieTabItem {
  float: left;
  width: 33%;
  text-align: center;
  padding: 15px 0px;
  font-weight: bold;
}

.cookieTabs .cookieTabItem.active {
  color: #1881dd;
  border-bottom: 3px solid #1881dd;
}

.cookieTabs .cookieTabItem:hover {
  color: #1881dd;
  cursor: pointer;
}

.cookieDialog .cookieContent {
  float: left;
  padding: 13px 0px;
}

.cookieDialog .cookieContent.hide {
  display: none;
}

.cookieDialog .cookieContent h2 {
  font-family: sans-serif;
  font-size: 15px;
}

.cookieDialog .cookieContent p {
  font-size: 15px;
  line-height: 25px;
}

.cookieDialog .cookieContent[data-tab="settings"] p {
  padding: 5px 0px 0px 0px;
  line-height: 25px;
  margin: 0px;
  font-size: 14px;
}

.cookieDialog .cookieButtons {
  float: right;
}

.cookieDialog .cookieNoticeButton {
  float: left;
  border-radius: 20px;
  background: #1881dd;
  padding: 13px 18px;
  border: none;
  font-weight: bold;
}

.cookieDialog .cookieNoticeButton:hover {
  cursor: pointer;
  background: #1881dd;
  color: #fff;
}

.cookieNoticeButton.cookieConfig {
  float: left;
  background: #fff;
  border: 2px solid #1881dd;
  color: #1881dd;
}

.cookieNoticeButton.cookieAgree {
  margin-left: 10px
}

.cookieContent table tr td {
  border-bottom: 1px solid #EEEEEE;
  padding: 10px 0px;
}

.cookieDialog table {
  width: 100%;
}

/*.cookieDialog .checkboxSlider {
  background-color: #1881dd !important;
}*/

.cookieContent table tr td {
  padding: 10px 10px 10px 0px;
}

.cookie-consent-show {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.7);
  appearance: none;
  border: 0;
  border-radius: 50%;
  padding: 8px 10px 12px 10px;
  z-index: 100000;
}

.
