/* line 1, src/styles/public/epdf_settings.scss */
body {
  background: #eee;
  padding: 0;
  margin: 0;
}

/* line 7, src/styles/public/epdf_settings.scss */
.epdf-settings-page {
  display: none;
  max-width: 980px;
  padding: 20px 0;
  margin: 20px auto;
  text-align: center;
  color: #666;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 10px #d5d7d8;
          box-shadow: 0px 0px 10px #d5d7d8;
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  /* ON/OFF text */
  /* accessibility styles */
  /* reset accessibility style on hover */
}

/* line 31, src/styles/public/epdf_settings.scss */
.epdf-settings-page.epdf-compatible {
  display: block;
}

/* line 32, src/styles/public/epdf_settings.scss */
.epdf-settings-page.epdf-incompatible {
  display: block;
  padding: 0;
}

/* line 36, src/styles/public/epdf_settings.scss */
.epdf-settings-page.epdf-incompatible .switch-box {
  display: none;
}

/* line 39, src/styles/public/epdf_settings.scss */
.epdf-settings-page.epdf-incompatible .description {
  width: 100%;
  margin: 0;
  padding: 50px 0;
  text-align: center;
}

/* line 44, src/styles/public/epdf_settings.scss */
.epdf-settings-page.epdf-incompatible .description p.unavailable {
  display: block;
}

/* line 45, src/styles/public/epdf_settings.scss */
.epdf-settings-page.epdf-incompatible .description p.instructions {
  display: none;
}

/* line 49, src/styles/public/epdf_settings.scss */
.epdf-settings-page .switch-box, .epdf-settings-page .description {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 53, src/styles/public/epdf_settings.scss */
.epdf-settings-page .switch-box {
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 25px 20px;
  border: 1px solid grey;
  border-radius: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* line 63, src/styles/public/epdf_settings.scss */
.epdf-settings-page .description {
  margin: 10px;
  vertical-align: top;
}

/* line 67, src/styles/public/epdf_settings.scss */
.epdf-settings-page .description p.unavailable {
  display: none;
}

/* line 72, src/styles/public/epdf_settings.scss */
.epdf-settings-page .title {
  font-size: 20px;
  margin-bottom: 20px;
}

/* line 77, src/styles/public/epdf_settings.scss */
.epdf-settings-page label.ios7-switch {
  font-size: 39px;
}

/* line 81, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch {
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  tap-highlight-color: transparent;
}

/* line 89, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch input {
  opacity: 0;
  position: absolute;
}

/* line 94, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch input + span {
  position: relative;
  display: inline-block;
  width: 1.65em;
  height: 1em;
  background: white;
  -webkit-box-shadow: inset 0 0 0 0.0625em #e9e9e9;
          box-shadow: inset 0 0 0 0.0625em #e9e9e9;
  border-radius: 0.5em;
  vertical-align: -0.15em;
  -webkit-transition: all 0.4s cubic-bezier(0.17, 0.67, 0.43, 0.98);
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.43, 0.98);
}

/* line 106, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch:active input + span,
.epdf-settings-page .ios7-switch input + span:active {
  -webkit-box-shadow: inset 0 0 0 0.73em #e9e9e9;
          box-shadow: inset 0 0 0 0.73em #e9e9e9;
}

/* line 111, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch input + span.knob:after {
  position: absolute;
  display: block;
  content: '';
  width: 0.875em;
  height: 0.875em;
  border-radius: 0.4375em;
  top: 0.0625em;
  left: 0.0625em;
  background: white;
  -webkit-box-shadow: inset 0 0 0 0.03em rgba(0, 0, 0, 0.1), 0 0 0.05em rgba(0, 0, 0, 0.05), 0 0.1em 0.2em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 0 0.03em rgba(0, 0, 0, 0.1), 0 0 0.05em rgba(0, 0, 0, 0.05), 0 0.1em 0.2em rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

/* line 127, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch:active input + span.knob:after,
.epdf-settings-page .ios7-switch input + span:active:after {
  width: 1.15em;
}

/* line 132, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch input:checked + span {
  -webkit-box-shadow: inset 0 0 0 0.73em #4cd964;
          box-shadow: inset 0 0 0 0.73em #4cd964;
}

/* line 136, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch input:checked + span.knob:after {
  left: 0.7125em;
}

/* line 140, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch:active input:checked + span.knob:after,
.epdf-settings-page .ios7-switch input:checked + span:active:after {
  left: 0.4375em;
}

/* line 146, src/styles/public/epdf_settings.scss */
.epdf-settings-page span.onoff:after {
  color: grey;
  content: "OFF";
}

/* line 150, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch input:checked ~ span.onoff:after {
  color: #33be4b;
  content: "ON";
}

/* line 156, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch input:focus + span.knob:after {
  -webkit-box-shadow: inset 0 0 0 0.03em rgba(0, 0, 0, 0.15), 0 0 0.05em rgba(0, 0, 0, 0.08), 0 0.1em 0.2em rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 0 0.03em rgba(0, 0, 0, 0.15), 0 0 0.05em rgba(0, 0, 0, 0.08), 0 0.1em 0.2em rgba(0, 0, 0, 0.3);
  background: #fff;
}

/* line 163, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch input:focus + span {
  -webkit-box-shadow: inset 0 0 0 0.0625em #dadada;
          box-shadow: inset 0 0 0 0.0625em #dadada;
}

/* line 167, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch input:focus:checked + span {
  -webkit-box-shadow: inset 0 0 0 0.73em #33be4b;
          box-shadow: inset 0 0 0 0.73em #33be4b;
}

/* line 172, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch:hover input:focus + span.knob:after {
  -webkit-box-shadow: inset 0 0 0 0.03em rgba(0, 0, 0, 0.1), 0 0 0.05em rgba(0, 0, 0, 0.05), 0 0.1em 0.2em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 0 0.03em rgba(0, 0, 0, 0.1), 0 0 0.05em rgba(0, 0, 0, 0.05), 0 0.1em 0.2em rgba(0, 0, 0, 0.2);
  background: #fff;
}

/* line 179, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch:hover input:focus + span {
  -webkit-box-shadow: inset 0 0 0 0.0625em #e9e9e9;
          box-shadow: inset 0 0 0 0.0625em #e9e9e9;
}

/* line 183, src/styles/public/epdf_settings.scss */
.epdf-settings-page .ios7-switch:hover input:focus:checked + span {
  -webkit-box-shadow: inset 0 0 0 0.73em #4cd964;
          box-shadow: inset 0 0 0 0.73em #4cd964;
}
