/**
 * Light-switch widget for native embeds (no iframe).
 * Scoped under .ta-switches.
 */

.ta-switches {
  position: relative;
  width: 300px;
  max-width: 100%;
  height: 160px;
  margin: 0 auto;
  background: #242424;
  border-radius: 8px;
  overflow: hidden;
}

.ta-switches .cube-switch {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6), inset 0 100px 50px rgba(255, 255, 255, 0.1);
  cursor: default;
  display: block;
  height: 100px;
  position: relative;
  margin: 18px 0 0 18px;
  overflow: hidden;
  pointer-events: none;
  width: 100px;
  white-space: nowrap;
  background: #333;
}

.ta-switches .cube-switch .switch {
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 0.7em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -7px 0 rgba(0, 0, 0, 0.2),
    inset 0 50px 10px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.2);
  display: block;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #666;
  transition: all 0.2s ease-out;
  cursor: pointer;
  pointer-events: auto;
}

.ta-switches .cube-switch.active .switch {
  background: #333;
  box-shadow:
    inset 0 6px 0 rgba(255, 255, 255, 0.1),
    inset 0 7px 0 rgba(0, 0, 0, 0.2),
    inset 0 -50px 10px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(205, 205, 205, 0.1);
}

.ta-switches .cube-switch .switch-state {
  display: block;
  position: absolute;
  left: 40%;
  color: #fff;
  font-size: 0.5em;
  text-align: center;
  pointer-events: none;
}

.ta-switches .cube-switch .switch-state.on {
  bottom: 15%;
}

.ta-switches .cube-switch .switch-state.off {
  top: 15%;
}

.ta-switches #light-bulb2,
.ta-switches .ta-light-bulb-glow {
  width: 150px;
  height: 150px;
  background: url(https://lh4.googleusercontent.com/-katLGTSCm2Q/UJC0_N7XCrI/AAAAAAAABq0/6GxNfNW-Ra4/s300/lightbulb.png) no-repeat 0 0;
}

.ta-switches #light-bulb,
.ta-switches .ta-light-bulb {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 5%;
  left: 40%;
  background: url(https://lh4.googleusercontent.com/-katLGTSCm2Q/UJC0_N7XCrI/AAAAAAAABq0/6GxNfNW-Ra4/s300/lightbulb.png) no-repeat -150px 0;
  z-index: 2;
}
