/* The important parts */
.radioshow-large {
  width: 75vw;
  height: 65vh;
}
.radioshow-medium {
  width: 60vw;
  height: 52vh;
}
.radioshow-small {
  width: 37.5vw;
  height: 32.5vh;
}
.radioshow {
  position: relative;
  clear: both;
  text-align: center;
  -webkit-backface-visibility: hidden;
}
.radioshow + .radioshow {
  margin-top: 5em;
}
.radioshow .cue {
  display: inline-block;
  position: relative;
  box-shadow: 0 0 0 2px #6d8fb1;
  border-radius: 1.5rem;
  padding: .65rem;
  z-index: 100;
  cursor: pointer;
  background: rgba(209, 220, 231, 0.35);
  color: rgba(109, 143, 177, 0.65);
  text-shadow: 0 1px 1px #FFF;
  margin: 0 .25rem;
  text-align: center;
  line-height: 1em;
  -webkit-transition: background 0.35s ease 0.1s;
  -moz-transition: background 0.35s ease 0.1s;
  -ms-transition: background 0.35s ease 0.1s;
  -o-transition: background 0.35s ease 0.1s;
  transition: background 0.35s ease 0.1s;
}
.radioshow .cue:hover {
  background: rgba(102, 204, 255, 0.35);
}
.radioshow .cue span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  padding-top: .2rem;
  display: block;
}
.radioshow .shot {
  position: absolute;
  top: 3em;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: .5em;
  background: #333639 no-repeat 50% 50%;
  background-size: cover;
  box-shadow: 0 0 0 3px rgba(109, 143, 177, 0.35) inset, 0 1em 2em 0em rgba(0, 0, 0, 0.15000000000000002);
  z-index: 1;
  opacity: 0;
  overflow: hidden;
}
.radioshow .shot img {
  width: 100%;
}
.radioshow .shot .text {
  position: absolute;
  text-align: left;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #f1efee;
  overflow-y: auto;
  min-width: 220px;
  min-height: 120px;
}
.radioshow .shot .text .padme {
  padding: 1em;
}
.radioshow .shot .text label {
  padding: 0;
  color: #66ccff;
}
.radioshow .shot .text label:hover {
  color: #b3e6ff;
}
.radioshow .shot .text label.prev {
  float: left;
  margin: .1em .5em 1em 0;
}
.radioshow .shot .text label.next {
  float: right;
  margin: .1em 0 1em .5em;
}
.radioshow .shot .text h2 {
  clear: both;
  margin: 0 0 .5em 0;
  color: #66ccff;
  text-shadow: 0 0px 2px rgba(0, 0, 0, 0.65);
  font-size: 1.5em;
}
.radioshow .shot .text p {
  font-size: 1.1em;
  margin: 0 0 1em 0;
}
.radioshow .trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0 0 0 -0.5em;
  opacity: 0;
  z-index: 0;
}
.radioshow .trigger:checked + .cue {
  background: #66ccff;
  color: #FFF;
  text-shadow: 0 -1px 1px #6d8fb1;
}
.radioshow .trigger:checked + .cue:nth-child(n) + .shot {
  box-shadow: 0 0 0 0.2em rgba(0, 0, 0, 0.19999999999999996) inset, 0 3em 4em -2em rgba(0, 0, 0, 0.6);
  z-index: 2;
  opacity: 1;
}
.radioshow-fade .shot {
  -webkit-transition: opacity 0.75s ease 0s;
  -moz-transition: opacity 0.75s ease 0s;
  -ms-transition: opacity 0.75s ease 0s;
  -o-transition: opacity 0.75s ease 0s;
  transition: opacity 0.75s ease 0s;
}
.radioshow-scale .shot {
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transition: all 0.75s ease 0s;
  -moz-transition: all 0.75s ease 0s;
  -ms-transition: all 0.75s ease 0s;
  -o-transition: all 0.75s ease 0s;
  transition: all 0.75s ease 0s;
}
.radioshow-scale .trigger:checked + .cue:nth-child(n) + .shot {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.radioshow-north .text {
  right: 0;
  top: 0;
  left: 0;
  height: 35%;
}
.radioshow-south .text {
  right: 0;
  bottom: 0;
  left: 0;
  height: 35%;
}
.radioshow-east .text {
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
}
.radioshow-west .text {
  left: 0;
  top: 0;
  bottom: 0;
  width: 35%;
}
.radioshow-up .text {
  right: 0;
  top: 100%;
  left: 0;
  height: 35%;
  -webkit-transition: top 0.85s ease 0.15s;
  -moz-transition: top 0.85s ease 0.15s;
  -ms-transition: top 0.85s ease 0.15s;
  -o-transition: top 0.85s ease 0.15s;
  transition: top 0.85s ease 0.15s;
}
.radioshow-up:hover .text {
  top: 65%;
}
.radioshow-down .text {
  right: 0;
  bottom: 100%;
  left: 0;
  height: 35%;
  -webkit-transition: bottom 0.85s ease 0.15s;
  -moz-transition: bottom 0.85s ease 0.15s;
  -ms-transition: bottom 0.85s ease 0.15s;
  -o-transition: bottom 0.85s ease 0.15s;
  transition: bottom 0.85s ease 0.15s;
}
.radioshow-down:hover .text {
  bottom: 65%;
}
.radioshow-back .text {
  top: 0;
  bottom: 0;
  left: 100%;
  width: 35%;
  -webkit-transition: left 0.85s ease 0.15s;
  -moz-transition: left 0.85s ease 0.15s;
  -ms-transition: left 0.85s ease 0.15s;
  -o-transition: left 0.85s ease 0.15s;
  transition: left 0.85s ease 0.15s;
}
.radioshow-back:hover .text {
  left: 65%;
}
.radioshow-over .text {
  top: 0;
  right: 100%;
  bottom: 0;
  width: 35%;
  -webkit-transition: right 0.85s ease 0.15s;
  -moz-transition: right 0.85s ease 0.15s;
  -ms-transition: right 0.85s ease 0.15s;
  -o-transition: right 0.85s ease 0.15s;
  transition: right 0.85s ease 0.15s;
}
.radioshow-over:hover .text {
  right: 65%;
}
/* radio button title tooltips */
[data-title]:before,
[data-title]:after {
  display: none;
  position: absolute;
}
[data-title]:before {
  content: attr(data-title);
  width: 10em;
  left: -4.5em;
  bottom: 160%;
  background: rgba(0, 0, 0, 0.65);
  color: #FFF;
  padding: .5rem;
  box-shadow: 0 0 0.5rem rgba(209, 220, 231, 0.5);
  border-radius: .35rem;
  white-space: normal;
  text-align: center;
  line-height: 1.45em;
  font-size: .8rem;
  text-shadow: 0 -1px 1px #000000;
  z-index: 1;
}
[data-title]:after {
  content: '';
  top: -60%;
  left: .25em;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.65) transparent transparent transparent;
  border-width: .5rem .5rem 0 .5rem;
  width: 0;
  height: 0;
  z-index: 2;
}
[data-title]:hover:before,
[data-title]:hover:after {
  display: block;
}
/* Position overrides */
.radioshow-below {
  height: auto;
  padding-top: 65vh;
}
.radioshow-below .shot {
  top: 0;
  bottom: 3em;
}
.radioshow-below .trigger {
  background-color: rgba(109, 143, 177, 0.55);
}
.radioshow-below [data-title]:before {
  top: 160%;
  bottom: auto;
}
.radioshow-below [data-title]:after {
  top: auto;
  bottom: -60%;
  border-color: transparent transparent rgba(0, 0, 0, 0.65) transparent;
  border-width: 0 .5rem .5rem .5rem;
}
.radioshow-left {
  text-align: left;
}
.radioshow-left [data-title]:before {
  text-align: left;
  left: -0.5em;
  right: auto;
}
.radioshow-left [data-title]:after {
  left: .25em;
  right: auto;
}
.radioshow-right {
  text-align: right;
}
.radioshow-right [data-title]:before {
  text-align: right;
  left: auto;
  right: -0.5em;
}
.radioshow-right [data-title]:after {
  left: auto;
  right: .25em;
}
.radioshow-hide .text,
.radioshow-hide [data-title]:hover:before,
.radioshow-hide [data-title]:hover:after {
  display: none;
}
