/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.quiz-2 #quiz h3 { text-align:right;border-bottom:1px solid #fff; }
.quiz-2 #page-questions label { position:relative;font-size: 2em;padding-right: 10px; }
.quiz-2 #page-questions ul li div:not(.ImgDiv) { margin-top:15px; }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 5px;
    right: -25px;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border-radius: 50%;
	border: 1px solid #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/* Outer */
.popup {
width:100%;
height:100%;
display:none;
position:fixed;
top:0px;
left:0px;
background:rgba(0,0,0,0.75);
}
/* Inner */
.popup-inner {
max-width:700px;
width:65%;
padding:40px;
position:absolute;
top:50%;
left:50%;
-webkit-transform:translate(-50%, -50%);
transform:translate(-50%, -50%);
box-shadow:0px 2px 6px rgba(0,0,0,1);
border-radius:3px;
background:#fff;
}
/* Close Button */
.popup-close {
width:30px;
height:30px;
padding-top:4px;
display:inline-block;
position:absolute;
top:0px;
right:0px;
transition:ease 0.25s all;
-webkit-transform:translate(50%, -50%);
transform:translate(50%, -50%);
border-radius:1000px;
background:rgba(0,0,0,0.8);
font-family:Arial, Sans-Serif;
font-size:20px;
text-align:center;
line-height:100%;
color:#fff;
}
.popup-close:hover {
-webkit-transform:translate(50%, -50%) rotate(180deg);
transform:translate(50%, -50%) rotate(180deg);
background:rgba(0,0,0,1);
text-decoration:none;
}

.popup h2 { color:#000; }
.st-custom-button { display:inline-block;margin:5px 15px;cursor:pointer; }
.st-custom-button i.fa-facebook { color:#4267B2; }
.st-custom-button i.fa-whatsapp { color:#00E676; }
.st-custom-button i.fa-comments { color:#EE9F04; }

.designby { direction: ltr;position: fixed;left: calc(-80px * 2);transform: rotate(-90deg);bottom: 50vh;display:none; }

@media screen and (min-width: 600px) {
  .hide-for-comp { display:none; }
  #clock { font-size:1.6em; }
  .table_answers table { width:100%; }
  #replay, #share { display:inline-block; }
}

@media screen and (max-width: 600px) {
  .table_answers { width:75%;margin:0 auto; }
  .table_answers td { font-size:0.8em !important; }
  .table_answers i { width:25px !important;height:25px !important;line-height:25px !important; }
  #page-questions + .designby { bottom: 0 !important;transform: rotate(0deg) !important;left: 0 !important; }
  .postid-153 .designby { display:none; }
}