/* viet unicode font */
@font-face {
    font-family: be-viet-pro-light;
    src: url("../../fonts/BeVietnamPro-Light.woff") format("woff");
}

::selection {
    background:none;
}

body{
    font-family: be-viet-pro-light, Arial, sans-serif;
    background: lightcyan;
    font-weight:500;
    text-transform: uppercase;
    height:100%;
}
th, td {
    width: 100px;
    height: 3px;
}
td {
    font-size:12px;
}

.playground-notice {
    position: absolute;
    top: 3px;
    right: 3px;
    font-size: 10px;
    color: red;
}

.registration-header {
    color: teal;
    font-size: 30px;
    font-weight: 900;
}

.warning {
    color: teal !important;
    margin-top: -100px;
    text-transform: none !important;
    -webkit-animation: blink 3.4s steps(15, start) infinite;
}

@keyframes blink {
  to {
      visibility: hidden;
  }
}
@-webkit-keyframes blink {
  to {
      visibility: hidden;
  }
}


.selects {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 215px auto auto 70px;
}

.region {
    color:purple;
    font-weight:600;
    font-size: 15px;
    text-align: center;
    margin-left: 50px;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

#eye {
    position: absolute;
    top: 33px;
    left: 170px;
    cursor: pointer;
}

/* Edge :not showing eye */
::-ms-reveal {
    display: none;
}

/* select header lines and table */
.select-wrap {
    position: relative;
    width: 600px;
    height: 400px;
    padding-bottom: 200px;
}
.select-container {
    position: absolute;
    margin-top: -40px;
    width: 90%;
    max-width: 90%;
    margin-left: 5%;
}

/* li labels and bullets */
li {
    position: relative;
    padding: 0px 0px 15px 30px; 
    height:12px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.active {
    color: darkblue;
    font-weight: bold;
    font-size: 13px;
}

.not-active {
    color: darkblue;
    opacity: 0.5;
}

.bullet {
    position: relative;
    width: 25px;
    height: 25px;
    left: -3px;
    top: 2px;
    margin-top: -12px;
}

ul {
    list-style-type: none;
    width: 320px;
    margin: 10px auto auto auto auto;
}

label:before {
   /* bullet */
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    left: 7px;
    top: calc(50% - 13px);
    box-sizing: border-box;
    border-radius: 50%;
    background: blue;
}

input[type="radio"] {
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    z-index: 100;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    top: calc(50% - 15px);
    cursor: pointer;
    -webkit-appearance: none;
}

input[type="radio"]:checked ~ .bullet {
    position:absolute;
    opacity: 1;
    top: 8px;
    animation-name: explode;
    animation-duration: 1.550s;
}


@keyframes explode {
    0%{
        opacity: 0;
        transform: scale(10);
    }
    60%{
        opacity: 1;
        transform: scale(0.5);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}

.tab50 {
    display:inline-block;
    width: 50px;
}

.tab100 {
    display:inline-block;
    width: 100px;
}
