@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

body{
    font-family: 'Open Sans', sans-serif;
    background:#EEEEEE;
    font-size: 14px;
    position: relative;
}

.main-wrapper{
    height: 100vh; 
	display: flex; 
	align-items: center; 
	justify-content: center;
}

.main-wrapper .inner-wrapper{

}

.header-container{
    text-align: center;
    width: 100%;
}
.header-container img{
    margin-bottom: 50px;
    max-width: 100%;
}


.content-container{}
.content-container .inner{
    width: 50%;
    margin: 0 auto;
}

@media only screen and (min-width: 300px) and (max-width: 700px)  {
    .content-container .inner{
        width: 100%;
    }
}

.select2-selection {
  -webkit-box-shadow: 0;
  box-shadow: 0;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  color: #555555;
  font-size: 14px;
  outline: 0;
  min-height: 48px;
  text-align: left;
}

.select2-selection__rendered {
  margin: 10px;
}

.select2-selection__arrow {
  margin: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field{
    outline: none;
    padding: 10px;
}

.content-container .inner .label{
    font-weight: 600;
    font-size: 20px;
    color:#AAAAAA;
    margin-bottom: 0px;
    text-align: center;
    max-height: 100px;
}

.button{
    display: block;
    border: none;
    background:#3498db;
    color:#FFFFFF;
    width: 100%;
    padding: 15px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    text-align: center;
    text-decoration: none;
}
.button.disabled{
    background: #bdc3c7;
    color: #7f8c8d;
}



.home-screen{}

.home-screen a{
    border: 0px!important;
    text-decoration: none;
    color: #333333;
    text-decoration: none;
}

.home-screen .icon{
    background: #E5E5E5;
    background: #fafafa;
    margin-bottom: 10px;
}
.home-screen .icon.small{
    font-size: 15px;
    line-height: 1.3em;
}

.home-screen .icon.small h6 a{
    text-decoration: none!important;
}

.home-screen .label{
    padding: 30px;
    padding-top: 30px;
    overflow: hidden;
    
}
.home-screen .icon.small .label{
    padding: 10px;
    padding-left: 20px;
}

.home-screen h6{
    font-size: 21px;
    text-align: left;
    margin-bottom: 5px;
}
.home-screen .icon.small h6{
    font-size: 17px;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 600;
    text-decoration: none;
}
.home-screen a:hover h6{
    text-decoration: none;
}

.home-screen a h6{
    text-decoration: none;
}

.home-screen p{
    font-size: 17px;
    text-align: left;
    font-weight: 500;
    color: #CCCCCC;
    margin-bottom: 0px;
}

.home-screen .icon.small p{
    line-height: 1.3em;
    font-size: 14px;
}

.home-screen a p{
    text-decoration: none;
}

.home-screen .item{
    background-color:#027eff;
    background-image: url('../images/mobile-icon/doctor.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50px 50px;
    
    float: left;
    width: 100px;
    height: 100px;
    
    display: inline-block;
}

.home-screen .icon.small .item{
    width: 80px;
    height: 80px;
}

.home-screen .item.doctorai{ background-image: url('../images/mobile-icon/doctor.png'); }
.home-screen .item.video-call{ background-image: url('../images/mobile-icon/video-call.png'); }
.home-screen .item.chat{ background-image: url('../images/mobile-icon/chat.png'); }
.home-screen .item.phone-call{ background-image: url('../images/mobile-icon/phone-call.png'); }
.home-screen .item.installer{ background-image: url('../images/mobile-icon/installer.png'); }

.home-screen .item.color-1{ background-color: #2ecc71; }
.home-screen .item.color-2{ background-color: #9b59b6; }
.home-screen .item.color-3{ background-color: #e67e22; }
.home-screen .item.color-4{ background-color: #e74c3c; }
.home-screen .item.color-5{ background-color: #3498db; }


.version-selector{}

.version-selector label{
    display: block;
    font-size: 16px;
    margin-bottom: 20px;
}

.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;
}

.blur{
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
}

.nav-menu{
    position: fixed;
    top: 20px;
    right: 25px;
    background-image: url('../images/menu-icon-dark.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 30px;
    height: 30px;
    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-dark.png');
    width: 30px;
    height: 30px;
}

.nav-container{
    position: fixed;
    top: 0px;
    left: -100%;
    height: 100%;
    padding-top: 30px;
    z-index: 9;
    background-color: rgba(255,255,255, 1);
    
    -webkit-box-shadow: 0 0 15px 0 rgba(186, 186, 186, 0.5);
    box-shadow: 0 0 15px 0 rgba(186, 186, 186, 0.5);
    
    -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: 35px;
}

.nav-container a{
    color:#555555;
    font-size: 20px;
    text-decoration: none;
    font-weight: 400;
}

.nav-container img{
    position: relative;
    top: 5px;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.tab{
    color:#3498db;
    font-weight: 700;
    padding: 15px;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
    border-radius: 3px;
}
.tab:hover,
.tab.active{
    background:#3498db;
    color:#FFFFFF;
}

.hidden-content{
    display: none;
}
.hidden-content.show{
    display: block;
}


@media only screen and (min-width: 300px) and (max-width: 700px)  {
    
    .home-screen .item{
        width: 80px;
        height: 80px;
        
        background-size: 30px 30px;
    }
    
    .home-screen .item.doctorai{
        background-size: 50px 50px;
    }
    
    .content-container .inner .label{
        max-height: 80px;
        padding: 15px;
        padding-top: 12px;
    }
    
    .home-screen h6{
        font-size: 15px;
        font-weight: 600;
    }
    
    .home-screen p{
        font-size: 13px;
        line-height: 1.5em;
    }
    
    .rpm_patient_button{ width: 100%; text-align: center; }
    
    .last-col{ margin-bottom: 100px; }
    .spacer{ margin-bottom: 200px; }
    
}


/* ========================================================================= */
/* Display Order and other stuff */
/* ========================================================================= */
.order-container{
    margin-top: 50px;
    margin-bottom: 150px;
}

.card{
    background: #FFFFFF;
    border-radius: 3px;
    padding: 30px;
    margin-bottom: 30px;
    
    -webkit-box-shadow: 0 0 20px 0 #DDDDDD;
    box-shadow: 0 0 20px 0 #DDDDDD;
}

.card .logo{
    margin-bottom: 20px;
    width: 80%;
}

.card h6{
    position: relative;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
}

.card h6 a.selectAll{
    display: block;
    margin-top: 10px;
    text-decoration: none;
    font-size: 16px;
    color: #027eff;
    
    font-size: 14px;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
    margin: 0px;
}

.card li{
    margin-bottom: 20px;
}
.card li:last-child{
    margin-bottom: 0px;
}

.card .label{
    font-size: 14px;
    line-height: 1.3em;
    overflow: hidden;
}

.card .checkbox{
    float: left;
    width: 14px;
    height: 14px;
    border: 1px solid #CCCCCC;
    border-radius: 100%;
    margin-right: 8px;
    cursor: pointer;
}
.card .checkbox.checked{
    border-color: #027eff;
    background-color:#027eff;
}

.card .ai-button{
    background-color: #027eff;
    padding: 20px;
    border-radius: 5px;
}
.card .ai-button img{
    width: 50px;
    height: auto;
    float: left;
    margin-right: 20px;
}

.card .ai-button .desc{
    overflow: hidden;
}

.card .ai-button h6{
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.card .ai-button h6 a{
    color: #FFFFFF;
    font-size: 20px;
    margin: 0px;
    text-decoration: none;
}
.card .ai-button p{
    line-height: 1.5em;
    margin-bottom: 0px;
}
.card .ai-button p a{
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.6;
}

.order-container .button{
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #027eff;
    color: #FFFFFF;
    margin-top: 20px;
}

.notice-bar{
    position: relative;
    background-color:#FFFFFF;
    background-image: url(../images/info-icon.png);
    background-repeat: no-repeat;
    background-size: 25px 25px;
    background-position: top 20 left 20px;
    
    border-left: 5px solid #027eff;
    border-radius: 3px;
    padding: 15px;
    padding-left: 60px;
    
    -webkit-box-shadow: 0 0 20px 0 #DDDDDD;
    box-shadow: 0 0 20px 0 #DDDDDD;
}
.notice-bar h2{
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}
.notice-bar p{
    color: #AAAAAA;
    margin-bottom: 0px;
}

.notice-bar .button{
    position: absolute;
    right: 20px;
    top: 15px;
    display: inline-block;
    width: auto;
    font-size: 14px;
    margin: 0px!important;
}


.rpm_patient_button{
    background: #027eff;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: inline-block;
    border-radius: 3px;
}

.list{
    margin-bottom: 30px;
}
.list li{
    margin-bottom: 20px;
}
.list img{
    float: left;
    width: 15px;
    height: auto;
    margin-right: 5px;
}
.list .desc{
    overflow: hidden;
}


@media only screen and (min-width: 300px) and (max-width: 700px)  {
    
    .notice-bar p{ margin-bottom: 10px; line-height: 1.5em; }
    .notice-bar .button{
        position: static;
    }
    
    .card h6 a.selectAll{
        margin-top: 10px;
        position: static;
        display: block;
        width: 100%;
    }
       
}







