:root {
  --settingsbutton:#1da1f2;
  --settingsbg: #252525ab;
  --settingsbutton_hover:#8b22ff;
  --settingstoggle_on:#1da1f2;
  --settingstoggle_off:#4c4c4c91;
  --overlaytoggledbg:#1da1f2;
}

.adkdemo_settings {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  min-width: 320px;
  background-color: var(--settingsbg);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 5px 10px 0 10px;
  opacity: 0;
  transform: translate(500px, 0px);
  transition: .3s ease;
  overflow-x: hidden;
  overflow-y: auto;
}

.adkdemo_toggle_settings {
  position: fixed;
  top: 15px;
  right: 15px;
  cursor: pointer;
  background-color: var(--settingstoggle_off);
  border-radius: 50px;
  padding: 6px;
  height: 35px;
  width: 35px;
  text-align: center;
  transition: background-color .2s ease;
  display: flex;
  align-items:center;
  justify-content: center;
  font-size: 18px;
}

.show_settings_icon_on i::before{
 content: "\f00d";
}

.show_settings {
  opacity: 1;
  transform: translate(0px, 0px);
}

.adkdemo_settings_section {
  width:100%;
}

.adkdemo_settings_section p {
  text-align: left;
}

.adkdemo_settings_list {
  width: 250px;
}

/* change logo btn */
.hideinput {
  display: none;
}

.adkdemo_settingactionbtn {
  appearance: none;
  border: 0;
  color: #ffffff;
  background: var(--settingsbutton);
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  border-radius: 0px;
  padding: 11px 7px;
  margin:0 0 5px 0;
}

.adkdemo_settingactionbtn:hover {
  background-color: var(--settingsbutton_hover);
}

.adkdemo_settings_toggle {
  display:grid;
  grid-template-columns:1fr 1fr;
  place-items: center;
  place-content: center;
  margin: 0 0 12px 0;
  font-size: 13px;
}

/** overlay switch */
.switcher {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

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

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

input:checked + .switcher_togglecircle {
  background-color: var(--overlaytoggledbg);
}


input:focus + .switcher_togglecircle {
  box-shadow: 0 0 1px #2196F3;
}

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

.switcher_togglecircle.switcher_round {
  border-radius: 34px;
}

.switcher_togglecircle.switcher_round:before {
  border-radius: 50%;
}

.adkdemo_settings_overlay {
  gap: 5px;
  margin: 10px 0;
}
