.clear {
  clear: both;
}

#cookieConsent {
  position: fixed;
  right: 0;
  z-index: 10001;
  background-color: rgba(255, 255, 255, 0.3);
  color: #1a1a1a;
  padding: 12.5px;
  line-height: 1.25;
  -webkit-transition: 250ms all ease-in-out;
  -moz-transition: 250ms all ease-in-out;
  -ms-transition: 250ms all ease-in-out;
  -o-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}
#cookieConsent:not(.pinned) {
  bottom: 0;
  width: 100%;
}
#cookieConsent.pinned {
  bottom: 25px;
}
#cookieConsent A {
  color: #5887a2;
  font-weight: bold;
  text-transform: uppercase;
}
#cookieConsent A:hover {
	color: #193f65;
}

#cookieConsent .t3kk-wrapper {
  align-items: center;
  background-color: #f3f2ef;
  display: flex;
  flex-direction: row;
  flex-flow: row wrap;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 25px;
}
#cookieConsent .t3kk-wrapper h2, #cookieConsent .t3kk-wrapper h3 {
  font-size: 18px;
  margin: 0 0 7.5px 0;
  font-family: 'DINCompPro', sans-serif;
  font-weight: bold;
  line-height: 1;
  
}



#cookieConsent .t3kk-wrapper .message {
  font-size: 90%;
  padding-right: 25px;
}

#cookieConsent .t3kk-wrapper .message p {
	padding:0;
	line-height: 1.5;
}

#cookieConsent .t3kk-wrapper .confirm {
  width: 150px;
}
#cookieConsent .t3kk-wrapper button {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  color: #193f65;
  font-size: 13px;
  font-weight: 300;
  font-family: 'DINCompPro', sans-serif;
  height: 40px;
  line-height: 40px;
  width: 100%;
  -webkit-transition: 0.5s all ease-in-out;
  -moz-transition: 0.5s all ease-in-out;
  -ms-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  background-color: transparent;
  border: 1px solid #193f65;
}
#cookieConsent .t3kk-wrapper button:enabled {
  cursor: pointer;
}
#cookieConsent .t3kk-wrapper button:enabled:hover {
  background-color: #193f65;
  color: #f3f2ef;
  -webkit-transition: 0.25s all ease-in-out;
  -moz-transition: 0.25s all ease-in-out;
  -ms-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  /* -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px; */
  /* stops bg color from leaking outside the border: */
  background-clip: padding-box;
}
#cookieConsent .t3kk-wrapper button:not(:enabled) {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: transparent;
  color: white;
}
#cookieConsent .icon {
  height: 30px;
  display: none;
  width: 30px;
  cursor: pointer;
}
#cookieConsent .icon svg {
  width: 100%;
  height: 100%;
}
#cookieConsent.pinned {
  background-color: #ebeae9;
  -webkit-transition: 250ms all ease-in-out;
  -moz-transition: 250ms all ease-in-out;
  -ms-transition: 250ms all ease-in-out;
  -o-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}
#cookieConsent.pinned:hover {
  background-color: #ebeae9;
}
#cookieConsent.pinned .icon {
  display: block;
}
#cookieConsent.pinned .t3kk-wrapper {
  display: none;
}

.el-switch > input[type="checkbox"]:checked + .el-switch-style {
  background-color: #20a0ff;
}
.el-switch .el-switch-style {
  height: 1.6em;
  left: 0;
  background: #C0CCDA;
  background-color: #c0ccda;
  -webkit-border-radius: 0.8em;
  border-radius: 0.8em;
  display: inline-block;
  position: relative;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 3em;
  cursor: pointer;
}

.el-switch .el-switch-style::before {
  display: block;
  content: '';
  height: 1.4em;
  position: absolute;
  width: 1.4em;
  background-color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  left: 0.1em;
  top: 0.1em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.el-switch > input[type="checkbox"]:checked + .el-switch-style::before {
  left: 50%;
}

.el-switch input[name="switch"] {
  display: none;
}

.el-switch {
  display: block;
  margin-bottom: 40px;
}

.el-switch::after {
  content: attr(data-content);
  line-height: 35px;
  vertical-align: text-bottom;
  font-size: 13px;
  padding-left: 9px;
  text-transform: uppercase;
}