/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.pws-exam-container {
    box-sizing: border-box;
}
.pws-exam-container p{
    padding: 0 10px;
    margin: 1em 0;
}
.pws-exam-container section.pws_exam_timer_container {
    padding-top: 5px;
    height: 35px;
    width:100%;
}
.pws-exam-container section.pws_exam_timer_container hr{
    padding: 0px;
    margin: 0px;
    border-bottom-color: #ccc;
}

.pws-exam-container form span {
    margin-top: 0;
    margin: 0;
}
.pws-field {
	text-align: left;
    opacity: 1;
}
.pws-field input[type='checkbox'],
.pws-field input[type='radio']{
	display: none!important;
}
.pws-exam-answers .pws-field input+label[for^="pws-answer-"] {
    font-weight: 600;
    color: #484848;
    margin-bottom: 0;
    width: 100%;
    height: unset;
    transition: all .3s;
    cursor: pointer;
    display: block !important;
    padding: 5px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    word-wrap: break-word !important;
    white-space: initial !important;
    line-height: 33px;
    text-transform: initial;
}
.pws-field input+label:before {
	content: "";
	display: inline-block;
	background: #ddd;
	background-clip: content-box;
	width: 20px;
	height: 20px;
	border: 3px solid #ccc;
	padding: 3px 3px 3px 3px;
	box-sizing: border-box;
	transition: all .4s linear;
	vertical-align: middle;
	margin-right: 10px;
}
.pws-field input[type="radio"]+label:before {
	border-radius: 50%;
}
.pws-field input+label:hover:before {
	background: #ddd;
	color: #ddd;
	background-clip: content-box;
}
