@charset "utf-8";
html, body{background:#f7cd47;}

.ls-1{letter-spacing:1px;}
.p-h{line-height:20px !important;}
.s-h{line-height:12px !important;}

.my-selection ul {
  list-style-type: none;
}

.my-selection li {
  display: inline-block;
}

.my-selection input[type="radio"][id^="cb"] {
  display: none;
}

.my-selection label {
  border: 1px solid #d1212b;
  padding: 20px 10px;
  display: block;
  position: relative;
  margin: 10px 10px 50px 10px;
  cursor: pointer;
  background:#d1212b;
  border-radius:15px;
}
.my-selection label small{position:absolute; left:0; top:145px; text-align:center; width:100%; line-height:16px;}
.my-selection label:before {
  background: #fff;
  color: #d1212b;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid #d1212b;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

.my-selection label img {
  height: 100px;
  width: 130px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

.my-selection :checked + label {
  border-color: #d1212b;
}

.my-selection :checked + label:before {
  content: "✓";
  background-color: #fff;
  transform: scale(1.2);
}

.my-selection :checked + label img {
  transform: scale(0.9);
  z-index: -1;
}

.txt-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.txt-shadow-w {
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}