/* Main Colours Begins */
:root {
--site-theme:#2f5599;
--grey: #a9a9a9;
--box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
/* Main Colours Ends*/
/* Scroll bar begins*/
::-webkit-scrollbar {
width: 5px;
height: 20px;
background-color: #f6f8ff; /* or add it to the track */
}
/* Add a thumb */
::-webkit-scrollbar-thumb {
background: var(--orange);
}
/* Scroll bar ends*/
/* Page Styles Begin */
html {
scroll-behavior: smooth;
}
body {
font-family: 'Poppins', sans-serif;
font-size: 14px;
overflow-x: hidden;
}
.site_header{
/* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
background-color: #fff;
}
.site_header .site_nav li a{
color: #000;
font-weight: bold;
text-transform: capitalize;
position: relative;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 24px;
}
.site_header .site_nav li:last-child a{
color: #116AB5;
}
.site_header .site_nav li a::after{
position: absolute;
content: '';
bottom: -10px;
left: 0;
width: 0;
height: 2px;
transition: 0.5s all linear;
background: var(--site-theme);
}
.site_header .site_nav li a:hover::after{
width: 100%;
right: 0;
transition: 0.5s all linear;
}
/* sypmtom checker wrapper  */
.symptom_checker_wrapper{
padding: 50px 0;
width: 100%;
float: left;
}
.box_shadow_wrapper{
background: #fff;
padding: 20px;
}
#heading {
text-transform: uppercase;
color: var(--site-theme);
font-weight: bold;
font-family: 'Exo 2', sans-serif;
}
#msform {
text-align: center;
position: relative;
margin-top: 20px
}
#msform fieldset {
background: white;
border: 0 none;
border-radius: 0.5rem;
box-sizing: border-box;
width: 100%;
margin: 0;
padding-bottom: 20px;
position: relative
}
.form-card {
text-align: left
}
#msform fieldset:not(:first-of-type) {
display: none
}
#msform input,
#msform textarea {
padding: 8px 15px 8px 15px;
border: 1px solid #ccc;
border-radius: 0px;
margin-bottom: 25px;
margin-top: 2px;
width: 100%;
box-sizing: border-box;
color: #2C3E50;
background-color: #ECEFF1;
font-size: 16px;
letter-spacing: 1px
}
#msform input:focus,
#msform textarea:focus {
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
border: 1px solid var(--site-theme);
outline-width: 0
}
#msform .action-button {
width: 160px;
background: var(--site-theme);
font-weight: bold;
box-shadow: var(--box-shadow);
color: white;
border: 0 none;
border-radius: 0px;
cursor: pointer;
position: relative;
padding: 10px 5px;
margin: 10px 0px 10px 5px;
float: right;
z-index: 100;
height: 31px;
line-height: 10px;;
background: #116AB5;
border-radius: 35px;
}
#msform .action-button:hover{
background: #06C1CD;
transition: 0.4s all linear;
}
#msform .action-button-previous {
width: 160px;
background: var(--site-theme);
font-weight: bold;
box-shadow: var(--box-shadow);
color: white;
border: 0 none;
border-radius: 0px;
cursor: pointer;
position: relative;
padding: 10px 5px;
margin: 10px 0px 10px 5px;
float: right;
z-index: 100;
height: 31px;
line-height: 10px;;
background: #116AB5;
border-radius: 35px;
}
#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
background-color: #000000
}
.card {
z-index: 0;
border: none;
position: relative
}
.fs-title {
color: var(--site-theme);
margin-bottom: 15px;
text-align: left;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 20px;
text-align: center;
line-height: 24px;
}
.purple-text {
color: var(--site-theme);
font-weight: normal
}
.steps {
font-size: 25px;
color: gray;
margin-bottom: 10px;
font-weight: normal;
text-align: right
}
.fieldlabels {
color: gray;
text-align: left
}
#progressbar {
margin-bottom: 30px;
overflow: hidden;
color: lightgrey;
padding: 0;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
gap: 180px;
}
#progressbar .active {
color: #000;
font-weight: bold;
}
#progressbar li {
list-style-type: none;
font-size: 15px;
/* width: 25%; */
float: left;
position: relative;
font-weight: 400;
color: #000;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 15px;
line-height: 18px;
text-transform: capitalize;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#progressbar #symptom_details:before {
font-family: 'Font Awesome\ 5 Free';
content: "\f5b1";
color: transparent;
}
#progressbar #where_to_get_care:before {
font-family: 'Font Awesome\ 5 Free';
content: "\f004";
color: transparent;
}
#progressbar #possible_causes:before {
font-family: 'Font Awesome\ 5 Free';
content: "\f0f8";
color: transparent;
}
#progressbar #your_results:before {
font-family: 'Font Awesome\ 5 Free';
content: "\f007";
color: transparent;
}
#progressbar li i{
width: 29px;
height: 29px;
line-height: 45px;
display: block;
font-size: 20px;
color: #000;
background: #D9D9D9;
border-radius: 50%;
/* margin: 0 auto 10px auto; */
padding: 2px;
margin-top: -10px;
}
#progressbar li.active i{
background: #06C1CD;
}
#progressbar li span{
margin-top: 15px;
}
#progressbar li:after {
content: '';
width: 335px;
height: 2px;
background: lightgray;
position: absolute;
left: 0;
top: 25px;
z-index: -1
}
#progressbar li:last-child:after{
display: none !important;
}
#progressbar li:first-child:after{
left: 50%;
}
/*
#progressbar li.active.changed:before {
background: orange;
} */
/* #progressbar li:first-child.active.changed:before {
background: #116AB5;
} */
/* #progressbar li:nth-of-type(2).active.changed:before {
background: #06C1CD;
}
#where_to_get_care.changed:before{
background: #116AB5 !important;
}
#where_to_get_care.changed_removed:before{
background: #06C1CD !important;
} */
/* #progressbar li.active:before{
background: #06C1CD;
color: #fff;
} */
/* #progressbar li.active:after{
background: #06C1CD;
color: #fff;
} */
.progress {
height: 10px
}
.progress-bar {
background-color: #2f5599
}
.fit-image {
width: 100%;
object-fit: cover
}
/* sypmtom checker wrapper  */
/* select2 */
.form-control {
border-radius: 0;
box-shadow: none;
border-color: #d2d6de
}
.select2-hidden-accessible {
border: 0 !important;
clip: rect(0 0 0 0) !important;
height: 1px !important;
margin: -1px !important;
overflow: hidden !important;
padding: 0 !important;
position: absolute !important;
width: 1px !important
}
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}
.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
border: 1px solid #d2d6de;
border-radius: 0;
padding: 6px 12px;
height: 34px
}
.select2-container--default .select2-selection--single {
background-color: #fff;
border: 1px solid #aaa;
border-radius: 4px
}
.select2-container .select2-selection--single {
box-sizing: border-box;
cursor: pointer;
display: block;
height: 28px;
user-select: none;
-webkit-user-select: none
}
.select2-container .select2-selection--single .select2-selection__rendered {
padding-right: 10px
}
.select2-container .select2-selection--single .select2-selection__rendered {
padding-left: 0;
padding-right: 0;
height: auto;
margin-top: -3px
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
color: #444;
line-height: 32px
}
.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
border: 1px solid #116AB5;
border-radius: 35px;
padding: 6px 12px;
height: 40px !important
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
border-color:  #06C1CD transparent transparent transparent;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 26px;
position: absolute;
top: 6px !important;
right: 1px;
width: 20px
}
*:focus {
outline: none;
}
/* select2 */
.select2-container--default .select2-results__option--highlighted[aria-selected]{
background-color: var(--site-theme) !important;
}
/* select2 */
/* radio btn  */
.radio_btn_wrapper ul{
list-style: none;
margin: 0;
padding: 0;
/* overflow: auto; */
display: flex;
flex-wrap: wrap;
}
.radio_btn_wrapper ul li{
display: block;
position: relative;
text-transform: capitalize;
font-size: 12px;
float: left;
width: 20%;
}
.form-group{
margin-bottom: 15px;
}
.radio_btn_wrapper ul li input[type=radio]{
position: absolute;
visibility: hidden;
}
.radio_btn_wrapper ul li label{
display: block;
position: relative;
font-weight: 300;
font-size: 15px;
padding: 0px 55px;
margin: 10px auto;
padding-left: 0;
/* height: 30px; */
z-index: 9;
cursor: pointer;
-webkit-transition: all 0.25s linear;
text-align: center;
padding-right: 0;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 19px;
}
/* .radio_btn_wrapper ul li:hover label{
color: #FFFFFF;
} */
.radio_btn_wrapper ul li .check{
display: block;
position: absolute;
border-radius: 100%;
height: 22px;
width: 22px;
top: 10px;
left: 0;
background: #D9D9D9;
z-index: 5;
transition: border .25s linear;
-webkit-transition: border .25s linear;
}
/* .radio_btn_wrapper ul li:hover .check {
border: 5px solid #FFFFFF;
} */
.radio_btn_wrapper ul li .check::before {
display: block;
position: absolute;
content: '';
border-radius: 100%;
height: 7px;
width: 7px;
top: 4px;
left: 4px;
margin: auto;
transition: background 0.25s linear;
-webkit-transition: background 0.25s linear;
}
.radio_btn_wrapper input[type=radio]:checked ~ .check {
/* border: 5px solid var(--site-theme); */
background: transparent;
background-image: url(../img/9.png) !important;
background-size: cover;
border: none;
}
.radio_btn_wrapper input[type=radio]:checked ~ .check::before{
/* background:var(--site-theme); */
}
.radio_btn_wrapper input[type=radio]:checked ~ label{
color: var(--site-theme);
}
.form-group label{
padding: 10px 0;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 15px;
line-height: 19px;
}
.describe_box_wrapper .select2-selection.select2-selection--single{
height: 200px !important;
}
/* radio btn  */
/* btn_active */
.get_care_btn{
padding:  0;
display: flex;
list-style: none;
}
.get_care_btn li{
margin: 0 10px;
border-radius: 100px;;
}
.get_care_btn li:first-child{
margin-left: 0;
}
.get_care_btn li button{
box-shadow: var(--box-shadow);
margin:0;
border: none;
background: #fff;
border: 1px solid #1ea188;
padding: 5px 10px;
border-radius: 100px;;
transition: 0.5s all linear;
min-width: 145px;
}
.get_care_btn_active{
color: #fff;
background-color: #1ea188 !important;
}
.get_care_btn li button:hover{
background-color: #116AB5 !important;
color: #fff;
transition: 0.5s all linear;
}
/* btn_active */
.no_wrap .radio_btn_wrapper ul{
flex-wrap: nowrap;
}
.m_30{
margin-bottom: 24px;
}
.heading_wrapper {
border-left: 5px solid #979797;
margin: 40px 25px;
}
.heading_wrapper  p{
font-size: 14px;
padding-left: 15px;
color: #b5b5b5;
}
/* adult_female_wrapper */
.adult_female_wrapper{
padding: 20px;
box-shadow: var(--box-shadow);
background: #fff;
text-align: center;
}
.adult_female_wrapper img{
width: 80px;
margin: 20px 0 0 0;
/* box-shadow: var(--box-shadow); */
height: 80px;
}
.adult_female_wrapper p{
color: #838383;
margin: 0 0 20px 0;
}
.adult_female_wrapper h4{
color: #000;
font-weight: bold;
font-size: 16px;
margin: 10px 0;
text-transform: capitalize;
}
.adult_female_wrapper button{
width: auto;
padding: 5px 10px;
background: var(--site-theme);
color: #fff;
border: none;
font-size: 12px;
box-shadow: var(--box-shadow);
text-transform: capitalize;
}
.common_cause ul{
padding: 0;
}
.common_cause ul li{
display: flex;
align-items: center;
margin-bottom: 10px;
color: #838383;
cursor: pointer;
text-transform: capitalize;
justify-content: space-between;
}

.adult_min_height{
min-height: 395px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.bottom_content{
padding-top: 20px;
}
.where_get_min{
min-height: 270px;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.bottom_content p span{
color: var(--site-theme);
font-weight: bold;
}
.input_share{
position: relative;
}
.flex_column{
display: flex;
gap: 10px
}
/* adult_female_wrapper */
.mobile_menu_wrapper{
box-shadow: var(--box-shadow);
padding: 15px 0
}
.mobile_menu_wrapper .mobile_logo img{
width:  70%;
}
.mobile_menu_wrapper .hamburger img{
width:  40%;
opacity: 0.7;
}
.mobile_menu_fixed{
position: fixed;
left: -100%;
top: 0;
width: 80%;
height: 100vh;
background:#fff;
box-shadow: var(--box-shadow);
z-index: 100;
transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.mobile_menu_fixed .mobile_logo a{
width: 100%;
display: block;
border-bottom: 1px solid #ddd;
}
.mobile_menu_fixed .mobile_logo a img{
padding: 15px;
width: 70%
}
.mobile_menu_fixed ul{
padding: 0;
list-style: none;
margin: 0;
margin-top: 35px;
}
.mobile_menu_fixed ul li{
padding: 10px;
}
.mobile_menu_fixed ul li a{
text-decoration: none;
padding: 10px;
text-transform: capitalize;
color: #2b2828;
font-size: 14px;
}
.mobile_menu_fixed ul li a i{
padding-right: 15px
}
.overlay{
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100vh;
display: none;
background:rgba(0,0,0,0.8);
z-index: 90;
}
#msform button{
/* margin-top: 25px !important */
}
/* footer */
.site_footer{
background: #d3d3d3;
padding: 20px;
box-shadow: var(--box-shadow);
width: 100%;
float: left;
}
.flex_footer{
}
.flex_footer p{
text-align: center;
margin: 0;
}
.flex_footer ul{
padding: 0;
list-style: none;
margin: 0;
color: #000;
display: flex;
}
.flex_footer ul li a{
color: #000;
text-decoration: none;
text-transform: capitalize;
}
.flex_footer ul li{
margin: 0 10px;
text-transform: capitalize;
}
/* footer */
.modal-footer button.close_btn{
width: auto;
background: red;
box-shadow: var(--box-shadow);
color: white;
border: 0 none;
border-radius: 0px;
cursor: pointer;
position: relative;
padding:  5px 10px;
font-size: 14px;
margin: 10px 0px 10px 5px;
z-index: 100;
}
.modal-footer button.save_btn{
width: auto;
background: var(--site-theme);
box-shadow: var(--box-shadow);
color: white;
border: 0 none;
border-radius: 0px;
cursor: pointer;
position: relative;
padding: 5px 10px;
font-size: 14px;
margin: 10px 0px 10px 5px;
z-index: 100;
}
.languages{
margin-left: 25px;
}
.languages i{
font-size: 20px;
position: relative;
top: 8px;
cursor: pointer;
}
.modal-title {
font-size: 16px;
font-weight: bold;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-top-left-radius: initial;
border-top-right-radius: initial;
}
.top_logo h2{
font-size: 32px;
font-family: 'Inter', sans-serif;
font-style: normal;
font-weight: 600;
font-size: 32px;
line-height: 39px;
color: #000;
text-transform: capitalize;
}
.top_logo h2 span{
color: #116AB5;
}
.radio_btn_wrapper ul li:first-child label{
padding-left: 0;
text-align: left;
}
.checker_left_wrapper figure img{
width: 70%;
height: auto;
}
.form_textarea{
border-radius: 20px !important;
border: 1px solid #06C1CD !important;
resize: none !important;
background: transparent !important;
}
.checker_text_wrapper h4{
font-size: 20px;
font-family: 'Inter';
font-weight: 600;
line-height:24.2px;
color: #06C1CD;
}
.checker_text_wrapper p{
font-size: 16px;
/* font-style: italic; */
font-family: 'Inter';
color: #000;
font-weight: 300;
line-height:19.36px;
}
.checker_text_wrapper p b{
font-weight: 600;
}
/* Range Slider */
.range-slider__range {
-webkit-appearance: none;
width: calc(100% - (73px));
height: 7px;
border-radius: 5px;
background: #d7dcdf;
outline: none;
padding: 0px !important;
margin: 0;
background: linear-gradient(90deg, #C2F7F7 28.91%, rgba(210, 224, 49, 0.494792) 55.85%, #FFA41C 82.23%) !important;
border-radius: 35px !important;
}
.range-slider__range:focus{
border: none !important;
box-shadow: none !important;
}
.range-slider__range::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 14px;
height: 14px;
border-radius: 50%;
background: #116AB5;
position: relative;
cursor: pointer;
-webkit-transition: background 0.15s ease-in-out;
transition: background 0.15s ease-in-out;
}
.range-slider__range::-webkit-slider-thumb:hover {
background: #1abc9c;
}
.range-slider__range:active::-webkit-slider-thumb {
background: #116AB5;
}
.range-slider__range::-moz-range-thumb {
width: 20px;
height: 20px;
border: 0;
border-radius: 50%;
background: #2c3e50;
cursor: pointer;
-moz-transition: background 0.15s ease-in-out;
transition: background 0.15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
background: #1abc9c;
}
.range-slider__range:active::-moz-range-thumb {
background: #1abc9c;
}
.range-slider__range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c;
}
.range_slider_wrapper ul{
padding: 0;
list-style: none;
display: flex;
align-items: center;
justify-content: space-between;
}
.range_slider_wrapper ul li{
font-family: 'Inter';
font-style: normal;
text-transform: capitalize;
font-weight: 400;
font-size: 15px;
}
/* Range Slider */
.checker_text_wrapper span{
background: #3199D3;
width: 102px;
height: 29px;
border-radius: 25px;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 13px;
display: block;
line-height: 29px;
text-transform: uppercase;
color: #fff;
text-align: center;
margin-bottom: 15px;
}

.checker_text_wrapper span:nth-of-type(2){
background-color: #AF0606;
}

.btn_bgg{
background: #06C1CD !important;
}
.third_screen .get_care_btn{
align-items: center;
justify-content: center;
flex-wrap: inherit !important;
}
.remove_bx{
box-shadow: none;
}
.third_screen .get_care_btn li button{
width: 115px !important;
height: 31px !important;
min-width: auto;
border: none
}

.third_screen_common_cause .common_cause ul {
padding: 0;
width: 100%;
margin: 0;
}
.third_screen_common_cause .adult_female_wrapper img{
margin-top: 0;
}
.third_screen_common_cause h4{
margin-top: 0;
}
.third_screen_common_cause img{
width: 101px;
height: 91px;
}

.common_cause ul li span {
background: var(--site-theme);
padding: 5px;
font-size: 10px;
box-shadow: var(--box-shadow);
color: #fff;
width: 80px;
height: 17px;
line-height: 7px;
border-radius: 100px;
}
.third_screen_common_cause .adult_female_wrapper{
box-shadow: none;
border: 1px solid #116AB5;
border-radius: 20px;
}
.third_screen_common_cause.red_flags .adult_female_wrapper{
box-shadow: none;
border: 1px solid #AF0606;
border-radius: 20px;
}
.adult_female_wrapper.remove_bx p{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 19px;
color: #000;
}

.red_flags ul li span{
background: #AF0606;
}



/* flex_last */
.flex_last{
display: flex;
align-items: center;
}
.flex_last img{
width: 250px;
height: auto;
}

.visit_your_family_physician p {

font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;
text-align: center;
margin-top: 30px;
color: #000000;
}
.visit_your_family_physician p a{
background: #3199D3;
color: #fff;
border-radius: 15px;
font-family: 'Inter';
font-style: normal;
font-size: 20px;
line-height: 40px;
width: 500px;
display: inline-block;
height: 46px;
text-decoration: none;
text-align: center;
font-weight: bold;
margin-left: 15px;
}
/* flex_last */

/* dotted_line */
.dotted_line{
display: flex;
margin: 45px 0;
}
.dotted_line span{
position: relative;
border: 1px solid #A29A9A;
width: 70%;
height: 1px;
float: left;
text-align: center;
margin: auto;
}
.dotted_line span::after{
position: absolute;
content: '';
left: -2px;
top: -3px;
width: 5px;
height: 5px;
background-color: #A29A9A;
border-radius: 5px;
}
.dotted_line span::before{
position: absolute;
content: '';
right: -2px;
top: -3px;
width: 5px;
height: 5px;
background-color: #A29A9A;
border-radius: 5px;
}
/* dotted_line */


.consult_doctor{
display: flex;
align-items: center;
}
.consult_doctor .consult_img img{
width: 150px;
height: auto;
}
.consult_text h4{
color: #06C1CD;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 24px;
}
.consult_text a,.consult_text button{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 28px;
width: 180px;
height: 31px;
background: #116AB5;
border: 1px solid #116AB5;
border-radius: 35px;
text-align: center;
text-decoration: none;
color: #fff;
display: inline-block;
}




/* symptom_history page */
.history_wrapper{
width: 100%;
float: left;
padding: 45px 0;
}
.symptom_history{
text-align: center;

}
.symptom_history img{
width: 80px;
height: 80px;
margin-bottom: 15px;;
}
.symptom_history h4{
color: #06C1CD;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 24px;
}
.history_grey_wrapper{
position: relative;
background: rgba(217, 217, 217, 0.33);
border-radius: 29px;
padding: 15px;
margin-top: 20px;
box-shadow: var(--box-shadow);
}
.history_btn button{
width: 160px;
background: var(--site-theme);
font-weight: bold;
box-shadow: var(--box-shadow);
color: white;
border: 0 none;
border-radius: 0px;
cursor: pointer;
position: relative;
padding: 10px 5px;
margin: 10px 0px 10px 5px;
z-index: 100;
height: 31px;
line-height: 10px;
background: #116AB5;
border-radius: 35px;
}
.history_active_btn{
background: #06C1CD !important;
}

.history_grey_wrapper .top_right_image{
position: absolute;
top: 15px;
right: 15px;
}
.history_grey_wrapper .top_right_image button,.history_grey_wrapper .top_right_image a{
border: none;
background: transparent;
}
.history_grey_wrapper .top_right_image button img,.history_grey_wrapper .top_right_image a img{
width: 25px;
height: 25px;
}
.history_grey_wrapper h5{
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 24px;
}
.history_grey_wrapper h5 span{
display: block;
}
.recommended_care{
background: rgba(255, 164, 28, 0.68);
border-radius: 29px;
margin-top: 15px;
box-shadow: var(--box-shadow);
padding: 15px;
}
.sky_blue{
background: rgba(6, 193, 205, 0.4);
}
.light_orange{
background: rgba(249, 239, 0, 0.29);
}
.recommended_care h5{
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 24px;
color: #000;
}
.recommended_care h5 span{
display: block;
}
/* symptom_history page */


.mob_site_nav{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: inherit;
    gap: 10px;
}
.mob_site_nav li a{
    color: #000;
    font-weight: bold;
    text-transform: capitalize;
    position: relative;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}
.mobile_menu_wrapper {
    padding: 0;
}

.mob_site_nav li:last-child a{
    color: #0d6efd;
}






/* responsive */
@media(min-width: 1601px){
.overflow_h{
overflow: hidden;
}
}
@media(min-width: 1366px) and (max-width: 1500px){
.flex_footer ul {
flex-direction: column;
}
}
@media(min-width: 1200px) and (max-width: 1600px){
.overflow_h{
overflow: hidden;
}
.get_care_btn {
/* flex-wrap: wrap; */
}
.get_care_btn li button{
min-width: auto;
}
.consult_text h4 {
font-size: 14px;
}
.visit_your_family_physician p a{
width: 350px;
font-size: 14px;
}
.adult_female_wrapper button{
font-size: 11px;
}
.radio_btn_wrapper ul li{
width: 24%;
}

#progressbar li:after{
    width: 330px;
    top: 22px;
}
.top_logo h2{
    font-size: 20px;
}

}
@media(min-width: 993px) and (max-width: 1199px){
.get_care_btn {
flex-wrap: wrap;
}
.get_care_btn li{
margin-bottom: 10px;
}
.flex_footer ul {
flex-direction: column;
}
#progressbar {
gap: 60px;
}
#progressbar li:after {
width: 229px;
top: 22px;
z-index: -1;
}
.mb_wrapper.radio_btn_wrapper ul li:first-child{
display: block;
width: 100%;
float: left;
}
.mb_wrapper.radio_btn_wrapper ul li{
width: 30%;
}
.common_cause ul li{
text-align: left;
font-size: 11px;
}
.common_cause ul li span{
text-align: center;
}
.get_care_btn {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 10px;
}
.get_care_btn li{
margin-bottom: 8px;
margin-left: inherit;
width: fit-content;
}

.flex_last{
flex-direction: column;
}
.range_slider_wrapper ul{
text-align: center;
}
.range_slider_wrapper ul li {
font-size: 10px;
}
.visit_your_family_physician p a {
font-size: 12px;
line-height: 30px;
width: 100%;
height: 30px;
margin-top: 15px;
}
.consult_doctor {
flex-direction: column;
justify-content: center;
}
.consult_text{
text-align: center;
}
.consult_text a, .consult_text button{
font-size: 11px;
margin-bottom: 10px;
}
.consult_text h4{
font-size: 14px;
}

.back_mt_5{
margin-top: 30px !important;
}
.top_logo h2{
    font-size: 20px;
}
.symptom_checker_wrapper{
    padding-bottom: 0;
}

}


@media(min-width: 768px) and (max-width: 992px){
.mobile_menu_wrapper .mobile_logo img{
width: auto
}
.mobile_menu_wrapper .hamburger img {
width: 15%;
opacity: 0.7;
}
#progressbar{
gap: 80px;
}
#progressbar li span {
font-size: 12px;
}
.checker_left_wrapper figure img {
width: 40%;
}
#progressbar li i{
margin-top: -7px;
}
#progressbar li:last-child i{
margin-left: 35px;
}
#progressbar li:last-child span{
position: relative;
left: 10px;
}
#msform fieldset{
padding-bottom: 0;
}
.checker_left_wrapper{
text-align: center;
}
.mb_wrapper.radio_btn_wrapper ul{
align-items: center;
justify-content: space-between;
padding: 0 20px;
}
.mb_wrapper.radio_btn_wrapper ul li .check{
left: -26px;
top: 8px;
}

.common_cause ul li{
text-align: left;
font-size: 11px;
}
.common_cause ul li span{
text-align: center;
}
.third_screen .get_care_btn {
align-items: center;
justify-content: center;
flex-wrap: wrap !important;
}
.checker_text_wrapper p{
text-align: left;
font-size: 12px;
}
.checker_text_wrapper h4{
font-size: 18px;
}
.checker_text_wrapper span{
font-size: 12px;
}
.flex_last{
flex-direction: column;
}
.range_slider_wrapper ul{
text-align: center;
}
.range_slider_wrapper ul li {
font-size: 10px;
}
.visit_your_family_physician p a {
font-size: 12px;
line-height: 30px;
width: 100%;
height: 30px;
margin-top: 15px;
}
.consult_doctor {
flex-direction: column;
justify-content: center;
}
.consult_text{
text-align: center;
}
.consult_text a, .consult_text button{
font-size: 11px;
margin-bottom: 10px;
}
.consult_text h4{
font-size: 14px;
}

#msform .action-button{
width: 25%;
}
.symptom_checker_wrapper{
padding-bottom: 0;
}
.back_mt_5{
margin-top: 30px !important;
}
.top_logo h2{
    font-size: 20px;
}
#progressbar li:nth-of-type(3)::after{
    /* display: none; */
}
.symptom_checker_wrapper{
    padding-bottom: 0;
}

}
@media(min-width: 0) and (max-width: 767px){
#progressbar li{
font-size: 12px;
}
.select2-container{
font-weight: bold;
font-size: 12px;
}
.form-group label {
padding: 10px 0;
font-size: 11px;
padding-bottom: 8px;
/* color: #a2a2a2; */
}
.get_care_btn {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 10px;
}
.get_care_btn li{
margin-bottom: 8px;
margin-left: inherit;
width: 41%;
}
.m_30{
margin-bottom: 0;
}
.radio_btn_wrapper ul li label{
font-size: 13px;
}
.no_wrap .radio_btn_wrapper ul {
flex-wrap: wrap;
}
.adult_female_wrapper{
margin-bottom: 25px;
}
.overflow_h{
overflow: hidden;
}
#msform button{
font-size: 12px
}
.symptom_checker_wrapper{
padding:0
}
#msform button {
/* margin-top: 0 !important; */
}
.describe_box_wrapper{
/* margin-bottom: 25px;; */
}
#msform input, #msform textarea{
margin-bottom: 0;
}
.flex_footer ul{
flex-direction: column;
margin-bottom: 15px;
}
.mob_just{
justify-content: flex-start !important;
}

.history_btn button {
font-size: 10px;
width: auto;
padding: 10px;
}
.d-flex.history_btn .flex-grow-1{
flex-grow: 0!important;
}

.top_logo h2{
    font-size: 20px;
}
#progressbar{
gap: initial;
}
#progressbar li i{
margin-top: -7px;
}
#progressbar li:last-child i{
margin-left: 35px;
}
#progressbar li:last-child span{
position: relative;
left: 10px;
}
#msform fieldset{
padding-bottom: 0;
}
.checker_left_wrapper{
text-align: center;
}
.mb_wrapper.radio_btn_wrapper ul{
align-items: center;
justify-content: space-between;
padding: 0 20px;
}
.mb_wrapper.radio_btn_wrapper ul li .check{
left: -26px;
top: 8px;
}

.mb_wrapper.radio_btn_wrapper ul li:first-child{
display: block;
width: 100%;
float: left;
}
.mb_wrapper.radio_btn_wrapper ul li{
width: auto
}
.common_cause ul li{
text-align: left;
font-size: 11px;
}
.common_cause ul li span{
text-align: center;
}
.third_screen .get_care_btn {
align-items: center;
justify-content: center;
flex-wrap: wrap !important;
}
.checker_text_wrapper p{
text-align: left;
font-size: 12px;
}
.checker_text_wrapper h4{
font-size: 18px;
}
.checker_text_wrapper span{
font-size: 12px;
}
.flex_last{
flex-direction: column;
}
.range_slider_wrapper ul{
text-align: center;
}
.range_slider_wrapper ul li {
font-size: 10px;
}
.visit_your_family_physician p a {
font-size: 12px;
line-height: 30px;
width: 100%;
height: 30px;
margin-top: 15px;
}
.consult_doctor {
flex-direction: column;
justify-content: center;
}
.consult_text{
text-align: center;
}
.consult_text a, .consult_text button{
font-size: 11px;
margin-bottom: 10px;
}
.consult_text h4{
font-size: 14px;
}

#msform .action-button{
width: 45%;
}
.back_mt_5{
margin-top: 30px !important;
}
}
/* responsive  Ends here*/