/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#quiz-form {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 20px;
    counter-reset: my-sec-counter;
}
#quiz-form fieldset {
    padding: 0;
}
#quiz-form fieldset legend::before {
    counter-increment: my-sec-counter;
    content: "" counter(my-sec-counter) ". ";
}
#quiz-form fieldset:not(:last-child) {
    margin-bottom: 60px;
}
#quiz-form fieldset legend {
    font-family: "gilroy-semiBold" !important;
    font-size: 24px;
    color: #0175cf;
}
.inner_lable_data label small {
    color: #4f4f4f;
    font-size: 18px;
    font-family: 'gilroy-regular' !important;
}
.select_areas {
    padding-left: 0px;
    padding-top: 25px;
}
.inner_lable_data {
    padding-left: 30px;
}
.select_areas input {
    border: 1px solid #0175cf !important;
    height: 56px;
    padding: 20px;
    max-width: 648px;
    width: 100%;
    font-size: 20px;
    font-family: 'gilroy-regular' !important;
    box-shadow: none;
    outline: none;
}
.select_areas label {
    width: 100%;
}
.quiz_submit_data input[type="submit"] {
    background-color: #00adee;
    color: #fff;
    border: 2px solid #00adee;
    font-family: 'gilroy-bold' !important;
    font-size: 20px;
    padding: 12px 50px;
    transition: all 0.5s ease-in-out 0s;
}
.quiz_submit_data input[type="submit"]:hover {
	background: #fff;
	color: #00adee;
}
.quiz_bottoms {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.quiz_points {
    color: #00adee;
    font-size: 64px;
    font-family: "gilroy-extraBold" !important;
    display: flex;
    align-items: center;
    gap: 20px;
}
.quiz_points span {
    font-size: 36px;
    color: #fff;
    background: url('https://dev.webgarh.net/milkclubnew/wp-content/uploads/2024/09/pointsValueBg-icon.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The container */
.radio_conts {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 30px;
  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 */
.radio_conts input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #0175cf;
}
/* When the radio button is checked, add a blue background */
.radio_conts input:checked ~ .checkmark {
  background-color: #fff;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the indicator (dot/circle) when checked */
.radio_conts input:checked ~ .checkmark:after {
  display: block;
}
/* Style the indicator (dot/circle) */
.radio_conts .checkmark:after {
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0175cf;
}
.radio_conts input:checked ~ small {
	color: #0175cf;
	font-family: "gilroy-semiBold" !important;
}



@media only screen and (max-width: 1024px) {

#quiz-form fieldset legend {
    font-size: 20px;
}
.quiz_points {
    font-size: 40px;
}
.quiz_points span {
    font-size: 26px;
    width: 50px;
    height: 50px;
}



}


@media only screen and (max-width: 767px) {

#quiz-form fieldset legend {
    font-size: 18px;
}
#quiz-form {
    padding: 50px 20px;
}
.inner_lable_data {
    padding-left: 20px;
}
.radio_conts {
    margin-bottom: 20px;
}
#quiz-form fieldset:not(:last-child) {
    margin-bottom: 20px;
}
.inner_lable_data label small {
    font-size: 16px;
}
.select_areas input {
    margin-bottom: 20px;
    font-size: 18px;
}
.quiz_bottoms {
    flex-direction: column;
    gap: 20px;
}
.quiz_points {
    font-size: 30px;
}
.quiz_submit_data input[type="submit"] {
    font-size: 18px;
    padding: 10px 40px;
}
.quiz_points span {
    font-size: 24px;
}




}



 