.cookieSwitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.cookieSwitch 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: #00bf28;
}
input:focus+.checkboxSlider {
  box-shadow: 0 0 1px #00bf28;
}
input:checked+.checkboxSlider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.checkboxSlider.round {
  border-radius: 34px;
}
.checkboxSlider.round:before {
  border-radius: 50%;
}
.cookieOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1009;
  width: 100%;
  height: 100%;
  background: #42546d;
  opacity: 0.3;
  display: none;
}
.cookieIn {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1010;
}
.cookieBoxSecond {
  display: none;
}
.cookieBox h2 {
  margin: 0px 40px 15px 0;
  color: #fff;
}
.cookieBox {
  background: #1b232e;
  border: 3px solid #525252;
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  text-align: left;
  position: fixed;
  z-index: 1011;
}
.cookieBox td {
  padding-top: 15px;
  padding-right: 20px;
  color: #d3d3d3;
  line-height: 1.3rem;
}
.cookieBox td b {
  color: #fff;
}
.cookieBox {
  line-height: 1.2rem;
}
.cookieBox b {
  line-height: 1.3rem;
}
.cookieBox p {
  color: #d3d3d3;
  line-height: 1.3rem;
}
.cookieBox div {
  color: #d3d3d3;
}
.buttonbar {
  padding-top: 25px;
}
.cookieNoticeButton {
  font-size: 1rem;
  padding: 12px 17px;
  font-weight: 500;
  border-radius: 2.5rem;
  cursor: pointer;
  margin-right: 10px;
}
.cookieNoticeButton.gray {
  color: #fff;
  border: #6e6e6e solid 2px !important;
  background: #1b232e;
}
.cookieNoticeButton.gray:hover {
  color: #000;
  background: #d1d1d1;
}
.cookieNoticeButton.blue {
  color: #fff;
  background: #355ece;
}
.cookieNoticeButton.blue:hover {
  background: #4476ff;
}
.cookieNoticeButton.green {
  color: #fff;
  background: #00bf28;
}
.cookieNoticeButton.green:hover {
  background: #16df41;
}
@media only screen and (min-width: 0) and (max-width: 1100px) {
  .cookieBox {
    border-radius: 10px;
    padding: 15px;
  }
  .cookieNoticeButton {
    font-size: 0.9rem;
  }
  .cookieBox td {
    padding-bottom: 0px;
    padding-top: 0px;
    padding-right: 10px;
    font-size: 0.9rem;
    line-height: 1.1rem;
  }
  .cookieBox td.first {
    padding-bottom: 10px;
  }
  .cookieBox div {
    font-size: 0.9rem;
  }
  .cookieBox h2 {
    font-size: 1.3rem;
  }
  .cookieBox p {
    font-size: 0.9rem;
    line-height: 1.1rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 415px) {
  .cookieNoticeButton.gray {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 720px) {
  .cookieBox {
    margin-right:20px;
    margin-bottom:20px;
  }
}