/***************
FORM
***************/
.frmtitle{
	padding			:10px;
	border			:1px solid #CCC;
	border-bottom	:0px;
	background		:#CCDAE8;
	text-align		:left;
	color			:#000;
	font-size		:14px;
	font-weight 	:bold;
	width			:100%;
	box-shadow		:2px 2px 2px rgba(0,0,0,0.8);}
.frmbody{
	padding			:20px 30px 20px 30px;
	border			:1px solid #CCC;
	background		:#FFF;
	width			:100%;
	font-size		:13px;
	line-height		:1.5;
	box-shadow		:2px 2px 2px rgba(0,0,0,0.8);}
.frmfooter{
	padding			:10px 20px 10px 20px;
	border-left		:1px solid #CCC;
	border-right	:1px solid #CCC;
	border-bottom	:1px solid #CCC;
	border-radius	:0px 0px 5px 5px;
	background		:#fff;
	width			:100%;
	font-size		:13px;
	line-height		:1.5;
	box-shadow		:2px 2px 2px rgba(0,0,0,0.8);
	margin-bottom 	:20px;}


/* ******************************************************************************** */

/* OPTION PADA PERTANYAAN */
.option-container {
    display: flex;
    margin-bottom: 0;}

.option-details {
    display: flex;
    align-items: flex-start;
    padding-top: 3px;}

.option-number, .option-text {
    font-size: 13px;}

.option-number {
    width: 20px;
	margin-right: 0px;}

.option-image img {
    max-width: 200px;}

/* RADIO */
.radio {
    margin: 0;}

.radio input[type="radio"] {
    opacity: 0;}

.radio input[type="radio"] + .radio-label:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 17px;
    margin-right: 0;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
}

.radio input[type="radio"]:checked + .radio-label:before {
    background-color: #3197EE;
    box-shadow: inset 0 0 0 4px #f4f4f4;}

.radio input[type="radio"]:focus + .radio-label:before {
    outline: none;
    border-color: #3197EE;}

.radio input[type="radio"]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;}

.radio input[type="radio"] + .radio-label:empty:before {
    margin-right: 0;}

/* ******************************************************************************** */

/***********************************************
UKURAN MEDIA 500
************************************************/

@media screen and (max-width: 500px) {

.frmtitle, .frmbody, .frmfooter{
	padding :10px;}

}