@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800|Poppins:200,300,400,500,600,700,800,900&display=swap');

body{
    position: relative;
    font-family: 'Open Sans', sans-serif;
    background: #FFFFFF;
    color:#027eff;
    
    top: 0px!important;
    width:100%;
	height:100%;
	padding: 0px;
	margin: 0px;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Poppins', sans-serif;
    font-weight:500;
    line-height: 1.5em;
}

/* Button Loader */
.button-loader{
    display: none;
}
.button-1{
    width: 100px;
    height: 200px;
    background-image: url('../images/boticon/switch-no.png');
}
.button-2{
    width: 100px;
    height: 200px;
    background-image: url('../images/boticon/switch-yes.png');
}

.wrapper{
    position: relative;
    z-index: 2;
    
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    
    width: 100%!important;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
}


.nav-menu{
    position: fixed;
    top: 0px;
    right: 0px;
    background-image: url('../images/menu-icon.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    z-index: 999999999999999999999999999999999;
    
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nav-menu.close{
    background-image: url('../images/menu-close.png');
    width: 55px;
    height: 55px;
}

.navoverlay{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60%;
    height: 55px;
}



.response-container{
    text-align: center;
    margin-top: 100px;
}
.response-container h1{
    color: #027eff;
    font-size: 50px;
    font-weight: 100;
    line-height: 1em;
    margin-bottom: 20px;

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.response-container h1 span{
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.form-container{
    position: relative;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 30px;
}
.form-container .textbox{
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center left 10px;
    background-color:transparent;
    color: #027eff;
    font-weight: 500;
    border-radius: 5px;
    border: 2px solid #027eff;
    outline: none;
    width: 100%;
    padding: 15px;
}

.form-container .button-group{
    /* width: 100%;
    display: block;
    text-align: left!important; */
    position: absolute;
    top: 10px;
    right: 10px;
}

/* .form-container .button-group{
    text-align: center;
} */
.form-container .button{
    display: inline-block;
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 30px;
    height: 30px;
    padding: 12px;
    /* margin-top: 7px; */
    border-radius: 5px;
    text-indent: -9999px;
}

.form-container .button.show{
    opacity: 1;
}

.form-container .button.send{
    background-color:#027eff;
    background-image: url('../images/boticon/send.png');
}
.form-container .button.refresh{
    background-color:#027eff;
    background-image: url('../images/boticon/refresh.png');
}

.form-container .button.mic{
    background-color:#027eff;
    background-image: url('../images/boticon/mic.png');
    background-size: 20px 20px;
}

.form-container .textbox::-webkit-input-placeholder{ color: #5fadff; }
.form-container .textbox:-ms-input-placeholder{ color: #5fadff; }
.form-container .textbox::placeholder{ color: #5fadff; }

.form-container .textbox:focus::-webkit-input-placeholder{ color: rgba(255,255,255, 0); }
.form-container .textbox:focus:-ms-input-placeholder{ color: rgba(255,255,255, 0); }
.form-container .textbox:focus::placeholder{ color: rgba(255,255,255, 0); }


.common-symptoms{
    width: 70%;
    color:#FFFFFF;
    margin: 0 auto;
    margin-bottom: 50px;
}
.common-symptoms h6{
    color:#027eff;
    font-size: 16px;
    margin-bottom: 10px;
}

.common-symptoms a{
    background: #027eff;
    color: #FFFFFF;
    font-size: 12px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    display: inline-block;
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 7px;
    text-decoration: none;
    /* background: transparent;
    border: 2px solid #027eff;
    color: #027eff; */
    font-weight: 700;
    font-size: 14px;
}
.common-symptoms a:hover{
    background: #027eff;
    color: #FFFFFF;
}


.nav-container{
    position: fixed;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    padding-top: 30px;
    /* background: rgba(0,0,0, 0.5); */
    z-index: 9;
    
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nav-container.show{
    left: 0px;
}

.nav-container .inner{
    padding: 30px;
}

.nav-container li{
    position:relative;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
}

.nav-container a{
    color:#FFFFFF;
    font-size: 18px;
    text-decoration: none;
    font-weight: 400;
}

.nav-container img{
    position: relative;
    top: 5px;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}




.option_symptoms{
    width: 70%;
    margin: 0 auto;
    margin-bottom: 30px;
    display: none;
}
.option_symptoms .inner{

}
.option_symptoms ul li{
    position:relative;
    background-image: url('../images/boticon/switch-no.png');
    background-size: 256px 138px;
    background-size: 67px 36px;
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 82px;
    padding-right: 0px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    cursor: pointer;
    
    /* border-bottom: 1px solid rgba(255,255,255, 0.2); */
    display: block;
    width: 100%;
}
.option_symptoms ul li:last-child{
    margin-bottom: 0px;
    border-bottom: 0px;
}
.option_symptoms ul li.checked{
    background-image: url('../images/boticon/switch-yes.png');
}
.option_symptoms ul li img{
    float: left;
    width: 50px;
    height: auto;
}

.option_symptoms ul li .overlay{
    position: absolute;
    top:0px;
    left: 0px;
    width: 67px;
    height: 65px;
    text-indent: -99999px;
}

.option_symptoms .send_ans{
    width: 100%;
    display: block;
    background: #027eff;
    color: #FFFFFF;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    opacity: 1;
}
.option_symptoms .send_ans.hide{
    display: none;
}


.error-report{
    display: none;
    margin-bottom: 60px;
}
.error-report li{
    font-size: 13px;
    margin-bottom: 10px;
}
.error-report li:last-child{
    border: 0px;
    margin-bottom: 0px;
}

.error-report li a{
    display: block;
    width: 100%;
    padding: 10px;
    border: 2px solid #CCCCCC;
    text-decoration: none;
    border-radius: 100px;
    color:#FFFFFF;
    text-align: center;
}


/* Google Translation */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
#goog-gt-tt{
    display:none!important;
}
.goog-te-gadget .goog-te-combo {
    margin: 0;
    border: none;
    color: #FFFFFF !important;
    border-radius: 50px; padding: 5px 0px 5px 35px;
    background: #027eff;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
}
.goog-te-gadget {
    color:transparent!important;
}
#:0.targetLanguage {
    color: #666;
}
.skiptranslate.goog-te-gadget span {
    display:none;
}
.skiptranslate.goog-te-gadget span a {
    display:none;
}
        
#google_translate_element{
    position: absolute!important;
    top: 0px;
    width: 100%;
}
.goog-te-gadget .goog-te-combo{
    width: 100%!important;
    margin: 0px!important;
    padding: 20px!important;
    border-radius: 0px!important;
    outline: none!important;
}



/* Social Share */
.social-media{
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    text-align: left;
}
.social-media ul{
    display: inline-block;
    margin: 0 auto;
}
.social-media li{
    float: left;
    margin-bottom: 0px;
}

.front-social-media{
    display: none;
}
.front-social-media h6{
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
}
.front-social-media img{
    width: 25px;
    height: 25px;
}

.front-social-media ul{
    display: inline-block;
    margin: 0 auto;
}
.front-social-media li{
    float: left;
    margin-right: 10px;
    margin-bottom: 0px;
}

.button-container{
    display: block!important;
    margin-top: 20px;
    margin-bottom: 70px;
}

.button-container a{
    display: inline-block;
    border: 3px solid #2ecc71;
    color: #2ecc71;
    font-weight: 600;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    text-decoration: none;
    border-radius: 100px;
}

.help{
    position: fixed;
    top: 11px;
    right: 50px;
    width: 32px;
    height: 32px;
    z-index: 999999;
}


.menu-bar{
   background: #2ecc71;
   color: #FFFFFF;
   text-align: center;
   padding-top: 10px;
   padding-bottom: 10px;
   position: fixed;
   bottom: 0px;
   left: 0px;
   width: 100%;
   display: none;
}

.menu-bar img{
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
}

.menu-bar ul{
    display: inline-block;
}

.menu-bar li{
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    margin-right: 25px;
}
.menu-bar li:last-child{
    margin-right: 0px;
}

.menu-bar li span{
    display: block;
}

.menu-bar li a{
    text-decoration: none;
    color:#FFFFFF;
}

.menu-bar-spacer{
    /*width: 100%;*/
    /*display: none;*/
    
    background: #FF0033;
    width: 100%;
    display: block;
    height: 135px;
    opacity: 0;
}

/* Loading Screen */
.image-loading-screen{
    background-color:#2ecc71;
    background-image: url('../images/loading_screen.svg');
    background-position: center bottom 50px;
    background-repeat: no-repeat;
    background-size: 90px 90px;
    position: fixed;
    top:0px;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 9999999999999999999999;
    
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-loading-screen.show{
    left: 0px;
}
.image-loading-screen .inner{
    padding: 50px;
}
.image-loading-screen h1{
    font-size: 20px;
    display: block;
    width: 100%;
    color: #FFFFFF;
    margin-bottom: 40px;
}
.image-loading-screen a.cancel{
    background: #FFFFFF;
    color:#2ecc71;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.top-bar-links{
    background: #027eff;
    width: 100%;
    text-align: right;
    padding: 10px;
    padding-right: 15px;
    padding-left: 15px;
    z-index: 9999999;
    text-align: center;
}
.top-bar-links a{
    display: inline-block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    min-width: 60px;
    margin-left: 5px;
    margin-right: 5px;
}
.top-bar-links img{
    width: 30px;
    height: 30px;
    margin-left: 5px;
}
.top-bar-links span{
    display: block;
    margin-top: 5px;
}


.tapToSpeak{
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: #027eff;
    color: #FFFFFF;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 999999;
}

.tapToSpeak img{
    width: 50px;
}


/* Search Result */
.search-result-container{
    display: none;
    background-color: #f5f5f5;
    position: absolute;
    width: 100%;
    border-radius: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.search-result-container li{
    color: #888888;
    font-size: 14px;
    padding: 20px;
    padding-bottom: 15px;
    padding-top: 15px;
    cursor: pointer;
}
.search-result-container li:hover{
    background-color: #027eff;
    color: #FFFFFF;
}

/* Responsive */
@media only screen and (min-width: 200px) and (max-width: 600px){
    
    .wrapper{
        min-height: 0px;
        display: block;
        align-items: center;
        justify-content: center;
        padding-bottom: 150px;
        
    }
    
    .response-container{
        margin-top: 30px;
    }
    
    .response-container h1{
        font-size: 30px;
        line-height: 1.2em;
        margin-bottom: 20px;
        min-height: 100px;
    }
    
    .form-container{
        width: 100%;
    }
    
    .common-symptoms{
        width: 100%;
    }
    
    .common-symptoms a{
        font-size: 17px;
        padding: 13px;
    }
    
    .option_symptoms{
        width: 100%;
    }
    
    .top-bar-links{
        text-align: center;
        padding-top: 25px;
    }
    
    .top-bar-links img{
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    
    .top-bar-links span{
        margin-top: 0px;
        margin-bottom: 20px;
    }
    
    .tapToSpeak{
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: auto;
        z-index: 999;
    }
    
    .top-bar-links span{
        font-size: 10px;
    }
    
    .top-bar-links a{
        /*min-width: 0px!important;*/
        width: 16%!important;
    }
    
    .form-container .button{
        background-size: 25px 25px;
        width: 50px;
        height: 50px;
    }
    
    /* Hidden Icons */
    .page.chat-bot .chatbot{ display: none; }
    
}

/* -------------------------------------------------------- */
/* Tablet Version */
/* -------------------------------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 1024px)  {
    
    .response-container h1{
        font-size: 30px;
        margin-bottom: 40px;
    }
    
}

@media only screen and (min-width: 1024px) and (max-width: 1366px)  {
    
    .response-container h1{
        font-size: 40px;
        margin-bottom: 40px;
    }
    
}



