@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
	font-family: 'Inter', sans-serif;
	font-weight: 500;
}

.scrollbar::-webkit-scrollbar {
    background-color:#fff !important;
    width:16px
}
.scrollbar::-webkit-scrollbar-track {
    background-color:#fff !important;
}
.scrollbar::-webkit-scrollbar-thumb {
    background-color:#a8aabb !important;
    border-radius:16px !important;
    border:5px solid #fff !important;
}

.w400{
	font-weight: 400;
}
.w600{
	font-weight: 600;
}
.w700{
	font-weight: 700;
}

.f-13{
	font-size: 13px;
}

.card .card-img-top{
	height: 200px;
	max-height: 100%;
	object-fit: cover;
}

.h-para-78{
	height: 78px;
	max-height: 100%;
	overflow: auto;
}

.navbar-dark .navbar-toggler {
    color: rgba(255,255,255,1);
    border-color: rgba(255,255,255,1);
}
button:focus {
    outline: 1px dotted;
    outline: none;
}

/*Exam Page Start*/
.containerBlock-bg{
	background-color: #e9ecef;
	color: #000;
	border-radius: 10px;
	padding: 20px;
	max-width: 900px;
}
.question{
    width: 75%;
}
.options{
    position: relative;
    padding-left: 40px;
}
#options label{
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    cursor: pointer;
}
.options input{
    opacity: 0;
}

#options label.wrongAnswer{
	color: red;
	font-weight: 600;
}

#options label.rightAnswer{
	color: green;
	font-weight: 600;
}

.checkmark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #555;
    border: 1px solid #ddd;
    border-radius: 50%;
}
.options input:checked ~ .checkmark:after {
    display: block;
}
.options .checkmark:after{
    content: "";
	width: 10px;
    height: 10px;
    display: block;
	background: white;
    position: absolute;
    top: 50%;
	left: 50%;
    border-radius: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: 300ms ease-in-out 0s;
}
.options input[type="radio"]:checked ~ .checkmark{
    background: green;
    transition: 300ms ease-in-out 0s;
}
.options input[type="radio"]:checked ~ .checkmark:after{
    transform: translate(-50%,-50%) scale(1);
}
.options input[type="radio"]:checked ~ .checkmark.wrong{
    background: #ff0000;
    transition: 300ms ease-in-out 0s;
}

.btn-primary{
    background-color: #555;
    color: #ddd;
    border: 1px solid #ddd;
}
.btn-primary:hover{
    background-color: #21bf73;
    border: 1px solid #21bf73;
}
.btn-success{
    padding: 5px 25px;
    background-color: #21bf73;
}
@media(max-width:576px){
    .question{
        width: 100%;
        word-spacing: 2px;
    } 
}
/*Exam Page End*/



@media(max-width:767px){
	.h-para-78{
		height: auto;
	}
}