#pdn_ok {
  display:none;
  z-index:8;
  position:fixed;
  bottom:1em;
  left:1em;
  right:1em;
  background-color:#fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  column-gap: 1em;
  padding: 1em;
}
#pdn_ok label{
  font-size: unset;
}
#pdn_check {
  margin-top: 6px;
  box-shadow: 0px 0 5px #25c9da;
}
#pdn_ok button{
  margin-left: auto;
  border-width: 0;
  background: #25c9da
}

#cookie {
  position: fixed;
  z-index: 10;
  top: 0px;
  right: 0;
  left: 0;
  overflow: scroll;
  margin: 32px auto;
  height: auto;
  max-height: calc(100% - 64px);
  width: 40%;
  max-width: 600px;
  min-width: 300px;
  padding: 24px;
  background-color: #fff;
  box-shadow: 0px 2px 10px -3px #999;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

#cookie.cls-hidden {
  display: none;
  max-height: 0;
  opacity: 0;
}

#cookie #cookie_close {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 4px;
  padding: 0px;
  height: 44px;
  width: 44px;
  margin-bottom: 1rem;
  background-size: 10px;
  background-position: center;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/close.svg');
  background-repeat: no-repeat;
  border: none;
}

#cookie h2 {
  margin-top: 0px;
}

#cookie button{
  border-width: 0px;
  padding: 0.75em 1.5em;
  background: #25c9da;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

#cookie .option{
  position: relative;
  border: none;
  border-bottom: 1px solid #D6D9DC;
  cursor: pointer;
}

#cookie .option:last-of-type{
  margin-bottom: 20px;
}

#cookie .option > div{
  min-height: auto;
  width: 100%;
  padding: 8px 0;
  display: flex;
  align-items: center;
  margin: 0px;
}

#cookie .option div.plus-minus{
  position: relative;
  display: inline-block;
  top: 0px;
  width: 20px;
  height: 20px;
  margin: 0px 5px;
  font-size: 1.5em;
}

#cookie .option div.plus-minus span{
  position: absolute;
  background: #27455c;
  border-radius: 1px;
}

#cookie .option div.plus-minus span:first-of-type{
  top: 25%;
  bottom: 25%;
  width: 10%;
  left: 45%;
}

#cookie .option.expanded div.plus-minus span:first-of-type{
  width: 0%;
}

#cookie .option div.plus-minus span:last-of-type{
  left: 25%;
  right: 25%;
  height: 10%;
  top: 45%;
}

#cookie h4 {
  flex: 1;
  margin: 0 5px;
  font-weight: normal;
}

#cookie .option > div:last-of-type{
  display: none;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
  width: 100%;
  transition: .25s ease-out;
  background-color: #F8F8F8;
}

#cookie .option.expanded > div:last-of-type{
  display: block;
  max-height: unset;
  opacity: 1;
}

#cookie .option > div:last-of-type > p{
  margin-top: 10px;
  margin-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

#cookie .option div.tgl{
  position: static;
  z-index: 1;
  height: 25px;
  margin-right: 5px;
}

#cookie .option div.tgl > label {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
}

#cookie .option div.tgl > label > span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background-color: #a7abb1;
  cursor: pointer;
}

#cookie .option div.tgl.checked > label > span {
  background-color: #25c9da;
}

#cookie .option div.tgl > label > span:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  bottom: 3px;
  left: 3px;
  border-radius: 20px;
  transition: .4s;
  background-color: #fff;
  border-color: #fff;
}

#cookie .option div.tgl.checked > label > span:before {
  transform: translateX(20px);
}