:root {
    --theme-color: #007cbc;
    --border-width: 7px;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
         url('../fonts/Roboto-Regular.woff') format('woff'),
         url("../fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
         url('../fonts/Roboto-Bold.woff') format('woff'),
         url("../fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oxygen';
    src: url("../fonts/Oxygen-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oxygen';
    src: url("../fonts/Oxygen-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*LOADER START*/
.middle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.bar {
    width: 30px;
    height: 70px;
    background: #f5f5f5;
    display: inline-block;
    transform-origin: bottom center;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    /*   box-shadow:5px 10px 20px inset rgba(255,23,25.2); */
    animation: loader 1.2s linear infinite;
}
.bar1 {
    animation-delay: 0.1s;
}
.bar2 {
    animation-delay: 0.2s;
}
.bar3 {
    animation-delay: 0.3s;
}
.bar4 {
    animation-delay: 0.4s;
}
.bar5 {
    animation-delay: 0.5s;
}
.bar6 {
    animation-delay: 0.6s;
}
.bar7 {
    animation-delay: 0.7s;
}
.bar8 {
    animation-delay: 0.8s;
}

@keyframes loader {
    0% {
        transform: scaleY(0.1);
        background: ;
    }
    50% {
        transform: scaleY(1);
        background: var(--theme-color);
    }
    100% {
        transform: scaleY(0.1);
        background: transparent;
    }
}

#loadScreen {
    display:none;
    position:fixed;
    top:150px;
    bottom:0;
    left:0;
    right:0;
    background:#FFF;
    z-index:900;
}

/*LOADER END*/




body {
    background:#F5F5F5;
    padding-bottom:50px;
}

#cover {
    position: fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background:rgba(0, 0, 0, 0.7);
    z-index:100000;
}

#popup {
    background:#FFF;
    min-height:100px;
    width:400px;
    position:absolute;
    left:50%;
    margin-left:-175px;
    text-align:center;
    padding:20px;
}

#popupicon {
    font-size:100px;
    color:var(--theme-color);
}

#popuptext {
    font-family: 'Oxygen';
    color:var(--theme-color);
    font-size:18px;
    line-height:24px;
    font-weight:bold;
    margin-top:30px;
}

#header {
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:110px;
    font-size:30px;
    line-height:50px;
    background-color:#FFF;
    border-top:10px solid var(--theme-color);
    z-index:1000;
}

#headerInner {
    width:1100px;
    margin:0 auto;
    padding:10px;
}

#navbar {
    background:#E5E5E5;
    height:40px;
    position:fixed;
    top:120px;
    left:0;
    right:0;
    border-bottom:2px solid var(--theme-color);
    z-index:1000;
}

#navbarInner {
    width:1100px;
    margin:0 auto;
}

.menu li {
    float:left;
}

.menu_item {
    display:none;
}

#navbar a{
    font-family:'Oxygen';
    font-weight:bold;
    font-size:16px;
    line-height:40px;
    color: var(--theme-color);
    text-decoration:none;
    padding-left:10px;
    padding-right:10px;
    display:inline-block;
    transition: 0.2s;
    margin:0;
}

#navbar a:hover, .activelink {
    color: #FFF !important;
    background: var(--theme-color);
}

#headerMobile {
    display:none;
}

.buttonBar {
    width:100%;
    text-align:right;
    display:block;
    clear:both;
    height:40px;
    padding:0;
}
.buttonBar .button {
    width:calc(50% - 2px);
}


.button{
    font-family:'Oxygen';
    font-weight:bold;
    font-size:16px;
    line-height:40px;
    color: var(--theme-color) !important;
    text-decoration:none;
    padding-left:10px;
    padding-right:10px;
    display:inline-block;
    transition: 0.2s;
    margin:0;
    background:#E5E5E5;
    border-radius:8px;
    border:0;
    cursor:pointer;
}

.button:hover {
    color: #FFF !important;
    background: var(--theme-color);
}

#userBox_login {
    padding-top:25px;
}

.unread {
    border-radius:35px;
    width:25px;
    background:#e60000;
    color:#FFF;
    display:inline-block;
    height:25px;
    text-align:center;
    line-height:25px;
    font-size:14px;
    margin-left:5px;
}

#pages {
    position:relative;
    top:170px;
    margin:0 auto;
    width:1050px;
    padding-bottom:75px;
}

.page {
    display:none;
}



#logo {
    height:90px;
}

#userBox {
    float:right;
}

.hidden {
    display:none;
}

#userBox_user {
    display:none;
    font-size:18px;
    line-height:30px;
    font-family:'Oxygen';
    color:var(--theme-color);
    text-align:right;
    margin-top:10px;
}

.usersName {
    font-weight:bold;
}

h4 {
    text-align:center;
    display:block;
    font-family:'Oxygen';
    color:var(--theme-color);
    border-bottom:3px solid var(--theme-color);
    font-size:18px;
    line-height:30px;
    font-weight:bold;
    margin-bottom:12px;
}

h3 {
    background:var(--theme-color);
    color:#FFF;
    font-size:24px;
    line-height:30px;
    font-family:'Oxygen';
    font-weight:bold;
    display:block;
    padding:10px;
    border-radius:5px;
}

h2 {
    text-align:center;
    display:block;
    font-family:'Oxygen';
    color:var(--theme-color);
    border-bottom:3px solid var(--theme-color);
    font-size:18px;
    line-height:40px;
    text-transform: uppercase;
    font-weight:bold;
}

.instructions {
    font-family:'Roboto';
    font-size:14px;
    line-height:20px;
    padding: 10px;
    color:#414141;
    text-align:left;
}

#homeWeight {
    margin-bottom:10px;
}

#homeWeight .instructions {
    background:#FFF;
    text-align:center;
}

.instructionsAlert,.instructionsFPAlert {
    color:#e60000;
    font-weight:bold;
}

.instructionsSuccess {
    color:#0ba000;
    font-weight:bold;
}

.instructionHeader{
    font-weight:bold;
    font-size:16px;
}

.radioBox {
    text-align:left;
}

.templates {
    display:none;
}

#bxRegistrationForm,#bxAccountForm {
    width:400px;
    font-size:14px;
    line-height:22px;
    font-family:'Roboto';
    margin:15px auto;
    text-align:center;
    background:#FFF;
    padding:20px;
    filter: drop-shadow(0 0 4px #C5C5C5);
}

#practiceDetails {
    width:400px;
    font-size:16px;
    line-height:28px;
    font-family:'Roboto';
    margin:15px auto;
    background:#FFF;
    padding:20px;
    filter: drop-shadow(0 0 4px #C5C5C5);
}

#filterBar {
    padding:10px;
    color: var(--theme-color);
    background:#E5E5E5;
    font-family:'Roboto';
    font-weight:bold;
}

#filterBar label {
    font-weight:normal;
}

.event {
    width:95%;
    font-size:13px;
    line-height:18px;
    font-family:'Roboto';
    margin:15px auto;
    background:#FFF;
    padding:15px;
    filter: drop-shadow(0 0 4px #C5C5C5);
    border:3px solid #FFF;
    cursor:pointer;
}

.homeevent {
    width:95%;
    font-size:13px;
    line-height:24px;
    font-family:'Roboto';
    margin:15px auto;
    background:#FFF;
    padding:15px;
    filter: drop-shadow(0 0 4px #C5C5C5);
    border:3px solid #FFF;
}

.event:hover {
    background:#FCFCFC;
    transition: 0.2s;
    border:3px solid var(--theme-color);
}

.eventRow {
    display:block;
}

.eventRow::after {
    content: '';
    display: block;
    clear: both;
}

.eventInfo,.eventLocation {
    float: left;
    display: inline-block;
    width: calc(100% - 90px);
}

#patientSurveyBox, .homeVideo {
    width:95%;
    font-size:13px;
    line-height:18px;
    font-family:'Roboto';
    margin:15px auto;
    background:#FFF;
    padding:15px;
    filter: drop-shadow(0 0 4px #C5C5C5);
    border:3px solid #FFF;
    cursor:pointer;
}

#patientSurveyBox:hover, .homeVideo:hover {
    border:3px solid var(--theme-color);
}

.psbTitle {
    font-size:22px;
    color: var(--theme-color);
    font-weight:bold;
    line-height:32px;
    font-family:'Oxygen';
    display:block;
    text-align:center;
    margin-bottom:10px;
}

.bigprogressbar {
    width:calc(100% - 105px);
    border:2px solid var(--theme-color);
    padding:2px;
    display:inline-block;
    float:left;
}

.bigprogressbar_bar {
    height:20px;
    background:var(--theme-color);
    width:30%;
}

.bxPercentageComplete {
    color:var(--theme-color);
    font-family:'Roboto';
    font-size:13px;
    display:inline-block;
    float:right;
    line-height:28px;
}


.psbDesc,.homeVideoDesc {
    clear:both;
    display:block;
    margin-top:50px;
    text-align:center;
}

u {
    color:var(--theme-color);
    font-weight:bold;s
}

.appointmentTypeRow {
    width:95%;
    font-size:13px;
    line-height:18px;
    font-family:'Roboto';
    margin:15px auto;
    background:#FFF;
    padding:15px;
    filter: drop-shadow(0 0 4px #C5C5C5);
    border:3px solid #FFF;
    cursor:pointer;
}

.appointmentTypeRow:hover {
    background:#FCFCFC;
    transition: 0.2s;
    border:3px solid var(--theme-color);
}

#sapptHeader {
    background:#FFF;
    padding:10px;
}

.apptTypeTitle, #sapptTypeTitle {
    font-size:22px;
    color: var(--theme-color);
    font-weight:bold;
    line-height:32px;
    font-family:'Oxygen';
    display:block;
}

.apptTypeProvider, #sapptTypeProvider {
    line-height:20px;
    font-family:'Roboto';
    font-size:13px;
}

.appointmentBox {
    width:95%;
    font-size:13px;
    line-height:24px;
    font-family:'Roboto';
    margin:15px auto;
    background:#FFF;
    padding:15px;
    filter: drop-shadow(0 0 4px #C5C5C5);
    border:3px solid #FFF;
}

#appointmentBoxButtons {
    display:block;
    margin-top:10px;
}

.apptBtn {
    color:var(--theme-color);
    padding:6px;
    border-radius:5px;
    width: calc(33% - 20px);
    display:inline-block;
    cursor:pointer;
    font-size:14px;
    text-align:center;
    border:2px solid #F5F5F5;
    margin:1px;
    text-decoration:none;
}



.apptBtn i {
    margin-right:5px;
}

.apptBtn:hover {
    background:#F5F5F5;
}

.apptBtnConfirmed, .apptBtnConfirmed:hover{
    color:#FFF;
    background:var(--theme-color);
}

.apptBtnConfirmed::after {
    content: 'ed';
}

.apptRowLabel {
    display:inline-block;
    width:80px;
    font-weight:bold;
    text-align:right;
    margin-right:10px;
    float:left;
}

.apptRowLocation {
    float:left;
    display:inline-block;
}

.apptRow::after {
    content: '';
    display: block;
    clear: both;
}

.switchApptBtn {
    display:block;
    line-height:40px;
    font-family:'Roboto';
    font-size:16px;
    font-weight:bold;
    color: var(--theme-color);
    cursor:pointer;
}

.appointmentDateRow {
    background:#FFF;
    border-top:1px solid #C5C5C5;
    padding:5px;
    font-family:'Oxygen';
    font-size:16px;
    line-height:32px;
    font-weight:bold;
    color:var(--theme-color);
    cursor:pointer;
}

.appointmentTimeRow {
    background:#FFF;
    padding:10px;
}

.apptTime {
    padding:10px;
    margin:5px;
    font-family:'Roboto';
    font-size:16px;
    border-radius:5px;
    cursor:pointer;
    width:84px;
    color:#FFF;
    display:inline-block;
    text-align:center;
}

.apptTimeAvail_true {
    background: var(--theme-color);
}

.apptTimeAvail_false {
    background: #909090;
    text-decoration: line-through
}

.videoRow {
    width:95%;
    font-size:13px;
    line-height:18px;
    font-family:'Roboto';
    margin:15px auto;
    background:#FFF;
    padding:15px;
    filter: drop-shadow(0 0 4px #C5C5C5);
    border:3px solid #FFF;
    cursor:pointer;
}

.videoRow:hover {
    background:#FCFCFC;
    transition: 0.2s;
    border:3px solid var(--theme-color);
}

.videoRowHeader {
    display:block;
}

.videoRowIcon {
    color:var(--theme-color);
    font-size:22px;
    margin-right:10px;
    display:inline-block;
}

.videoRowName {
    font-size:22px;
    color: var(--theme-color);
    font-weight:bold;
    line-height:32px;
    font-family:'Oxygen';
    display:inline-block;
}

.videoRowDesc,.videoRowWatched {
    display:block;
    margin-left:40px;
    margin-top:5px;
}

.videoRowWatched {
    color: var(--theme-color);
    font-weight:bold;
}

#theater {
    background: #000000; /* Old browsers */
    background: -moz-linear-gradient(top,  #000000 0%, #3d3d3d 65%, #2d2d2d 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(65%,#3d3d3d), color-stop(100%,#2d2d2d)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #000000 0%,#3d3d3d 65%,#2d2d2d 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #000000 0%,#3d3d3d 65%,#2d2d2d 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #000000 0%,#3d3d3d 65%,#2d2d2d 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #000000 0%,#3d3d3d 65%,#2d2d2d 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#2d2d2d',GradientType=0 ); /* IE6-9 */
    text-align:center;
    margin-top:10px;
    padding:20px;
    border-radius:5px;
}

#videoHolder {
    margin: 0 auto;
}

#videoQuizBar {
    background: var(--theme-color);
    color:#FFF;
    font-weight:bold;
    font-family:'Roboto';
    font-size:14px;
    line-height:24px;
    display:block;
    text-align:center;
    padding:5px;
    margin-top:10px;
    border-radius:5px;
}

#youtubeInstructions {
    font-size:14px;
    line-height:22px;
    font-family:'Roboto';
}

#youtubeInstructions p {
    margin-top:10px;
    display:block;
    padding:5px;
}

#videoDescriptionBox {
    margin-top:10px;
    background:#E9E9E9;
    padding:15px !important;
    border-radius:5px;
    display:block;
}

#youtubeInstructions ul li {
    list-style-type:disc;
    margin:20px;
}

.eventTitle {
    font-size:22px;
    color: var(--theme-color);
    font-weight:bold;
    line-height:32px;
    border-bottom:1px solid #F5F5F5;
    display:block;
    font-family:'Oxygen';
}

.eventTitleIcon {
    margin-right:10px;
}

.eventLabel {
    font-weight:bold;
    display:inline-block;
}

.eventRegisterBtn {
    display:inline-block;
    color: var(--theme-color);
    font-weight:bold;
    text-align:center;
    position:absolute;
    bottom:-3px;
    right:-3px;
    padding:10px;
    background:#E5E5E5;
    border-top-left-radius: 20px;
}

.eventRegisterBtn i {
    font-size:42px;
    display:block;
}

.event:hover .eventRegisterBtn {
    background: var(--theme-color);
    color:#FFF;
    transition: 0.2s;
}

#practiceDetails .practiceRow {
    padding:5px;
    display:block;
    min-height:40px;
    border-bottom:1px solid #F5F5F5;
    cursor:pointer;
}

.practiceRowBreak {
    clear:both;
}

.practiceLabel {
    float:left;
    line-height:28px;
    color: var(--theme-color);
    font-weight:bold;
}

#practiceDetails span {
    float:right;
    text-align:right;
}

.bxAddLabel {
    display:block;
    text-align:left;
    line-height:20px;
    font-size:14px;
    font-family:'Oxygen';
    padding:5px;
}

.accountDetails {
    display:block;
    line-height:20px;
    font-size:14px;
    font-family:'Oxygen';
    font-weight:bold;
    text-align:left;
    padding:5px;
}

.bxAddFormField {
    width: calc(100% - 20px);
    padding:10px;
    font-size:14px;
    border:0;
    border-bottom:2px solid #D5D5D5;
    display:inline-block;
    background:#F5F5F5;
    margin-bottom:20px;
}

.bxAddFormField:focus {
    border-color:var(--theme-color);
    background:#FFF;
}

.bxAddMonthField,.bxAddDayField,.bxAddYearField {
    margin:10px auto;
    padding:5px;
    font-size:14px;
    line-height:20px;
    font-family:'Roboto';
    border:0;
    border-bottom:2px solid #D5D5D5;
    display:inline-block;
    background:#F5F5F5;
    width:32%;
}

.bxAddMonthField:focus,.bxAddDayField:focus,.bxAddYearField:focus {
    border-color:var(--theme-color);
    background:#FFF;
}

#bx-bmi-underweight {
    display:inline-block;
    width:37%;
    height:8px;
    background:#3F6FA7;
    float:left;
}

#bx-bmi-ideal {
    display:inline-block;
    width:13%;
    height:8px;
    background:#0ec400;
    float:left;
}

#bx-bmi-overweight {
    display:inline-block;
    width:10%;
    height:8px;
    background:#ffa200;
    float:left;
}

#bx-bmi-obese {
    display:inline-block;
    width:40%;
    height:8px;
    background:#FF0000;
    float:left;
}

#bx-bmi-meter-holder {
    background:#FFF;
    height:20px;
}

#bx-bmi-meter {
    border-style: solid;
    border-width: 0 5px 8px 5px;
    border-color: transparent transparent #707070 transparent;

    display:inline-block;
    position:relative;
    top: -5px;
    left: 50%;
    margin-left:-5px;
}

#bx-home-bmiinfo {
    background:#F5F5F5;
    color:#707070;
    text-align:center;
    font-family:14px;
    font-family:'Roboto';
    font-weight:bold;
    line-height:30px;
    height:30px;
}

#bx-home-weight-today {
    display:block;
    color:#FFF;
    font-size:18px;
    line-height:45px !important;
    height:45px;
    text-align:center;
    background:var(--theme-color);
    font-family:'Oxygen';
}

#bx-home-weight-today a {
    color:#FFF;
    font-size:16px !important;
    text-decoration:none;
}

#bx-home-weight-today input {
    width:65px;
    background-color:rgba(255, 255, 255, 0.2);
    display:inline-block;
    color: #FFF;
    font-size:20px;
    padding:5px;
    text-align:center;
    font-weight:bold;
    border-radius: 5px;
    border:0;
}

#rememberMeBox {
    margin-top:5px;
    margin-bottom:20px;
}

#rememberMeBox input {
    position:relative;
    top:2px;
}

.wfStage{
    margin:10px;
    padding:5px;
    filter: drop-shadow(0 0 2px #C5C5C5);
    background:#FFF;
    min-height:36px;
    border 1px solid #F5F5F5
}

.wfStageComplete {
    background: #dbeeff;
}

.wfStagePatientComplete {
    background: #fefbc6;
}

.wfStageAssigned {
    background: #cdfec6;
}

.wfStageIcon {
    display:inline-block;
    height:36px;
    width:36px;
    float:left;
    padding-right:5px;
    border-right:1px solid #F5F5F5
}

.wfStageLabel {
    font-family:'Roboto';
    font-weight:bold;
    font-size:14px;
    line-height:36px;
    display:inline-block;
    float:left;
    margin-left:5px;
}

.wfStageCompleted,.wfcStageCompleted,.cStageCompleted {
    font-family:'Roboto';
    font-weight:regular;
    font-size:12px;
    line-height:36px;
    display:inline-block;
    float:right;
    margin-left:10px;
}

.wfStageCompleteBtn {
    float:right;
    color:var(--theme-color);
    background:#F5F5F5;
    padding:4px;
    border-radius:5px;
    width: 135px;
    display:inline-block;
    cursor:pointer;
    font-size:12px;
    text-align:center;
    border:2px solid var(--theme-color);
    margin:1px;
    font-weight:bold;
    line-height:23px;
    font-family:'Roboto';
}


.wfStageCompleteBtn:hover {
    color:#F5F5F5;
    background:var(--theme-color);
    border:2px solid var(--theme-color);
}

.wfcStageCompleted,.cStageCompleted {
    line-height:20px;
}

.wfStageCompletedDate,.wfcStageCompletedDate,.cStageCompletedDate {
    font-weight:bold;
}

.wfStageCriteria {
    margin-top:-10px;
    margin-left:25px;
    margin-right:25px;
}



.wfcStage,.cStage {
    display:block;
    min-height:20px;
    padding-top:15px;
    padding-bottom:10px;
    border-bottom:1px solid #C5C5C5;
    padding-left:10px;
    padding-right:10px;
}

.wfcStageBreak,.cStageBreak {
    clear:both;
}

.wfStageCriteria {
    border-left:2px solid #C5C5C5;
    border-right:2px solid #C5C5C5;
    border-bottom:1px solid #C5C5C5;
    background:#FFF !important;
    margin-bottom:10px;
}

.wfcStageIcon,.cStageIcon {
    font-size:20px;
    display:inline-block;
    width:20px;
    height:20px;
    line-height:20px;
    text-align:center;
    float:left;
}

.icofont-check-circled {
    color:#0ba000;
}

.icofont-minus-circle {
    color:#ff9c00;
}

.emptyCircle {
    height:14px;
    width:14px;
    border:2px solid #C5C5C5;
    border-radius:20px;
    display:inline-block;
    padding:0;
    margin:0;
}

.emptyCircle2 {
    height:22px;
    width:22px;
    border:2px solid #C5C5C5;
    border-radius:20px;
    display:inline-block;
    padding:0;
    margin:0;
}

.wfcStageLabel,.cStageLabel {
    font-family:'Roboto';
    font-size:14px;
    line-height:20px;
    display:inline-block;
    float:left;
    width:740px;
    padding-left:10px;
}

.critList {
    border-left:2px solid #C5C5C5;
    border-right:2px solid #C5C5C5;
    border-bottom:1px solid #C5C5C5;
    background:#FFF !important;
    margin-bottom:10px;
}

.portalFile {
    display:block;
    text-decoration:none;
    background-repeat:no-repeat;
    background-size: 28px 28px;
    background-position:5px 5px;
    margin:5px;
    padding:7px;
    border-radius:5px;
    min-height:32px;
}

.portalVideoName,.portalFileName {
    display:inline-block;
    font-size:16px;
    line-height:24px;
    font-family:"Roboto",Arial;
    color:#000;
    font-weight:bold;
    margin-right:15px;
    width:calc(100% - 60px);
}

.portalVideoDesc, .portalFileDesc {
    display:block;
    font-size:13px;
    line-height:18px;
    font-family:"Roboto",Arial;
    color:#4c4c4c;
    width:calc(100% - 60px);
}

.portalVideo:hover,.portalFile:hover,.inboxMessageRow:hover {
    background-color:#E5E5E5;
}

.portalFileIcon {
    float:left;
    margin-right:10px;
}

.inboxMessageRow {
    display:block;
    text-decoration:none;
    padding-left:34px;
    color:#626262;
    font-size:13px;
    line-height:24px;
    cursor:pointer;
    background:#F5F5F5;
    margin:10px;
    padding:5px;
    filter: drop-shadow(0 0 2px #C5C5C5);
    min-height:24px;
    border 1px solid #F5F5F5;
    font-family:'Roboto';
}

.imrUnread {
    color:#2a6996;
    font-weight:bold;
    background-color:#FFF;
}

.imrUnreadIcon {
    font-size:24px;
    float:left;
    margin-right:5px;
}

.imrDate {
    display:inline-block;
    width:160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height:24px;
    float:left;
}

.imrFrom {
    display:inline-block;
    width:220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height:24px;
    font-weight:normal;
    font-style:italic;
    float:left;
}

.imrFrom span {
    font-size:9px;
}

.imrSubject {
    display:inline-block;
    width:430px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height:24px;
    float:left;
    width: 600px;
}

.messageToolbar {
    background:var(--theme-color);
    padding:5px;
    border-radius:10px;
}

.messageHeader {
    font-family:'Roboto';
    font-size:14px;
    padding:5px;
}

.messageDetailRow {
    padding:5px;
    display:block;
}

.messageDetailLabel {
    display:inline-block;
    width:85px;
    text-align:right;
}

.messageDetail {
    font-weight:bold;
}

.backBtn,.deleteBtn {
    background:#E5E5E5;
    border-radius: 8px;
    cursor:pointer;
    font-family: 'Oxygen';
    font-weight:bold;
    font-size: 16px;
    line-height: 30px;
    color: var(--theme-color) !important;
    display:inline-block;
    padding-left:10px;
    padding-right:10px;
}
.deleteBtn {
    float:right;
}

#messageHolder {
    border:20px solid #D5D5D5;
    padding:10px;
    font-family:'Roboto';
    font-size:13px;
    line-height:22px;
}

#footer {
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    line-height:30px;
    font-size:12px;
    text-align:center;
    font-family:'Roboto';
    background:#D5D5D5;
}

#footer .link {
    cursor:pointer;
    color: var(--theme-color) !important;
    text-decoration:underline;
    margin-left:15px;
}

#terms, #privacy {
    font-size:12px;
    line-height:18px;
    font-family:'Roboto';
}

#terms p, #privacy p {
    margin:15px;
}

#terms ul li, #privacy ul li {
    margin:15px;
    list-style-type:disc;
}

.quizQuestion {
    padding:10px;
    margin:10px;
    background:#fbfbfc;
    display:block;
    filter: drop-shadow(0 0 4px #C5C5C5);
}

.quizQuestionText {
    font-family:Arial;
    font-size:15px;
    line-height:20px;
    margin:10px;
}

.quizAnswer {
    display:block;
    background-color:#efefef;
    margin:10px;
    padding:5px;
    font-size:15px;
    line-height:25px;
    min-height:25px;
    font-family:Arial;
    cursor:pointer;
    border-radius:5px;
}

.quizAnswer:hover {
    background-color:#D5D5D5;
}

.correct {
    background-color: #93ffa2 !important;
}

.correct .ans_icon {
    color:#0ba000;
}

.ans_icon {
    font-size:28px;
    margin-right:5px;
}

.incorrect {
    background-color: #ffb2b2 !important;
}

.incorrect .ans_icon {
    color:#c60000;
}

.ans_icon,.ans_label {
    display:inline-block;
    float:left;
}

.ans_label {
    width: calc(100% - 35px);
}

.quizAnswer::after {
    content: '';
    display: block;
    clear: both;
}

.quizLink {
    text-decoration:underline;
    cursor:pointer;
}

#popupbuttons button {
    margin:10px;
    font-family:'Roboto';
    font-weight:bold;
    background:var(--theme-color);
    color:#FFF;
    padding:10px;
    border:0;
    border-radius:5px;
    font-size:14px;
    cursor:pointer;
}

#patientSurveyBarHolder {
    display:block;
    width:calc(100% - 10px);
    height:10px;
    background:#C5C5C5;
    margin:5px;
    border-radius:5px;
}

#patientSurveyBar {
    width:5%;
    height:10px;
    background:var(--theme-color);
    border-radius:10px;
}

#surveyButtons {
    background:#FFF;
    padding:15px;
    text-align:center;
}

#surveyButtons button {
    color:var(--theme-color);
    padding:4px;
    border-radius:5px;
    width: calc(33% - 10px);
    display:inline-block;
    cursor:pointer;
    font-size:14px;
    text-align:center;
    border:2px solid #F5F5F5;
    margin:1px;
    font-weight:bold;
    line-height:30px;
}

#surveyButtons button:hover {
    color:#F5F5F5;
    background:var(--theme-color);
}

#patientSurveyPageInfo {
    color:var(--theme-color);
    font-size:13px;
    font-family:'Roboto';
    font-weight:bold;
    line-height:18px;
    text-align:right;
    padding:5px;
}

#tableOfContents {
    position: fixed;
    top:240px;
    bottom:30px;
    width:350px;
    overflow-y:auto;
}

#surveyContents {
    position: fixed;
    top:270px;
    bottom:105px;
    width:670px;
    margin-left:350px;
    padding:15px;
    overflow-y:auto;
    font-family:'Roboto';
    font-size:13px;
    line-height:18px;
    background:#FFF;
}

#surveyButtons {
    position: fixed;
    bottom:30px;
    width:670px;
    margin-left:350px;
}

.tocSection {
    background:#E5E5E5;
    margin:5px;
    padding:5px;
    border-radius:3px;
    border:3px solid #E5E5E5;
}

.tocPageNr {
    display:inline-block;
    font-family:'Oxygen';
    font-size:20px;
    font-weight:bold;
    float:left;
    color:#555;
    width:30px;
}

.tocList {
    display:inline-block;
    float:left;
    color:#555;
    font-family:'Roboto';
    font-size:12px;
    line-height:18px;
}

.tocSection::after {
    content: '';
    display: block;
    clear: both;
}

.tocSectionCompleted {
    border:3px solid var(--theme-color);
    cursor:pointer;
}

.tocSectionCompleted .tocPageNr, .tocSectionCompleted .tocList {
    color:var(--theme-color);
}

.tocSectionSelected {
    color:#FFF;
    cursor:pointer;
    background:var(--theme-color);
}

.tocSectionSelected .tocPageNr, .tocSectionSelected .tocList {
    color:#FFF;
}

.bxPortalInstructions {
    font-family:'Roboto';
    font-size:13px;
    line-height:18px;
    padding:10px;
}


.bxLargeLabel {
    display:block
}

.bxPortalSurveyModule textarea {
    width:100%;
}

.bxPortalColumn {
    width:50%;
    float:left;
}

.bxPortalColumnSmall {
    width:33%;
    float:left;
}

.bxPortalColumn label {
    display:inline-block;
    width:120px;
    text-align:right;
}

#surveyArea input[type=text] {
    border: 0;
    border-bottom:2px solid #C5C5C5;
    background:#F5F5F5;
    margin:3px;
    padding:5px;
}

.surveyInput {
    width:170px;
    border: 0;
    border-bottom:2px solid #C5C5C5;
    background:#F5F5F5;
    margin:3px;
    padding:5px;
}


.surveySelect {
    /*width:160px;*/
    border: 0;
    border-bottom:2px solid #C5C5C5;
    background:#F5F5F5;
    margin:3px;
    padding:5px;
}

.bxTableHeader, .bxTableHeader2 {
    background:var(--theme-color);
    color:#FFF;
}

.bxTableHeader th {
    padding:3px;
    vertical-align:middle;
    font-size:11px;
    width:10%;
}

.bxTableHeader2 th {
    padding:3px;
    vertical-align:middle;
    font-size:11px;
}



#bxFamilyMedicalHistory,#bxPhysicians,#bxSurgeryHistory,#bxWeightManagement,#bxAllergies,#bxMedications {
    width:650px;
}

#bxFamilyMedicalHistory td {
    padding:3px;
}

#bxFamilyMedicalHistory input {
    width:100%;
}

.scrollHorizontal {
    display:none;
}

.insuranceCompanyDropdown {
    width:270px;
}

#p_insuranceInformation,#s_insuranceInformation {
    display:none;
}

.bxCityField {
    width: 65px !important;
}

.bxStateField {
    width:20px !important;
}

.bxZipField {
    width:37px !important;
}


#bxPhysicians td {
    padding:3px;
}

#bxPhysicians input, #bxPhysicians textarea {
    width:100%;
}

.addSurveyButton {
    color:var(--theme-color);
    padding:4px;
    border-radius:5px;
    width: 125px;
    display:inline-block;
    cursor:pointer;
    font-size:14px;
    text-align:center;
    border:2px solid #F5F5F5;
    margin:1px;
    font-weight:bold;
    line-height:25px;
}

.addSurveyButton:hover {
    color:#F5F5F5;
    background:var(--theme-color);
}

.bxCoMorbidities label {
    line-height:24px;
    display:block;
}

.bxReviewOfSystemsLabel {
    display:block;
}

.bxComorbidTextarea {
    margin-left:20px;
    width:calc(100% - 40px);
    display:block;
    height:75px;
    font-family:'Roboto';
}

.bxComorbidDropdown, .bxComorbidInput {
    margin-left:20px !important;
    width:calc(100% - 40px);
    display:block;
    font-family:'Roboto';
}

 .bxComorbidInput {
    width:calc(100% - 50px);
 }

 .installationinstructions {
     display:none;
 }

 .installationinstructions img {
     width: calc(100% - 50px);
     margin:0 auto;
     display:block;
 }

/*BEGIN MOBILE STYLES*/
@media only screen
and (max-device-width : 1100px) {
    #header,#navbar {
        display:none;
    }

    #headerMobile {
        display:block !important;
        border-top:5px solid var(--theme-color);
        height:50px;
        z-index:1000;
        position:fixed;
        top:0;
        left:0;
        right:0;
    }

    .top-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: #00BAF0;
        background: #FFF;
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        color: #FFF;
        height: 50px;
        padding: 1em;
    }

    .top-nav #logo {
        height:45px;
    }

    .mobilemenu {
        display: flex;
        flex-direction: row;
        list-style-type: none;
        margin: 0;
        padding: 0;
        background:var(--theme-color);
    }

    .mobilemenu > li {
        margin: 0 1rem;
        overflow: hidden;
    }

    .menu-button-container {
        display: none;
        height: 100%;
        width: 30px;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle {
        display: none;
    }

    .menu-button,
    .menu-button::before,
    .menu-button::after {
        display: block;
        background-color: var(--theme-color);
        position: absolute;
        height: 4px;
        width: 30px;
        transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
        border-radius: 2px;
    }

    .menu-button::before {
        content: '';
        margin-top: -8px;
    }

    .menu-button::after {
        content: '';
        margin-top: 8px;
    }

    #menu-toggle:checked + .menu-button-container .menu-button::before {
        margin-top: 0px;
        transform: rotate(405deg);
    }

    #menu-toggle:checked + .menu-button-container .menu-button {
        background: rgba(255, 255, 255, 0);
    }

    #menu-toggle:checked + .menu-button-container .menu-button::after {
        margin-top: 0px;
        transform: rotate(-405deg);
    }

    .menu-button-container {
        display: flex;
    }
    .mobilemenu {
        position: absolute;
        top: 0;
        margin-top: 80px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    #menu-toggle ~ .mobilemenu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    #menu-toggle:checked ~ .mobilemenu li {
        height: 45px;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
        border-bottom:1px solid var(--theme-color);
    }
    .mobilemenu > li {
        display: flex;
        margin: 0;
        width: 100%;
        color: white;
        background-color: #E5E5E5;

    }

    .mobilemenu > li a {
        font-family:'Oxygen';
        font-weight:bold;
        font-size:18px;
        line-height:45px;
        color: #FFF;
        text-decoration:none;
        padding-left:15px;
        display:block;
        width:100%;
        border-left:5px solid var(--theme-color);
        background:var(--theme-color);
    }
    .mobilemenu > li:not(:last-child) {
        border-bottom: 1px solid var(--theme-color);
    }

    .bar {
        width:15px !important;
    }

    #pages {
        position:relative;
        top:87px;
        width:100%;
    }

    h3 {
        border-radius:0;
        font-size:18px;
    }

    #bxRegistrationForm,#bxAccountForm {
        width:calc(100% - 20px);
        margin:0;
        padding:10px;
        filter: none;
    }

    #practiceDetails {
        width:calc(100% - 20px);
        margin:0;
        padding:10px;
        filter: none;
    }

    .menu_item {
        display:none;
    }

    .event,.videoRow {
        width:calc(100% - 70px);
    }

    .eventRegisterBtn {
        display:block;
        position:relative;
        top:10px;
        border-top-left-radius: 0;
        bottom:auto;
        right:auto;
    }

    .eventRegisterBtn i {
        display:inline-block;
        margin-right:10px;
        font-size:16px;
    }

    .wfStage {
        text-align:center;
    }

    .wfStageIcon {
        padding:1px;
        border:0;
        display:block;
        float:none;
        margin:0 auto;
    }

    .wfStageLabel {
        padding:1px;
        border:0;
        display:block;
        float:none;
        margin:0;
        line-height:18px;
        font-size:13px;
    }

    .wfStageCompleted {
        padding:1px;
        border:0;
        display:block;
        float:none;
        margin:0;
        line-height:14px;
        font-size:10px;
    }

    .imrSubject{
        width: 100%;
    }

    .messageToolbar {
        border-radius:0;
        position:fixed;
        top:87px;
        left:0;
        right:0;
    }

    .messageHeader {
        font-size:12px;
        position:fixed;
        top:127px;
        left:0;
        right:0;
        background:#FFF;
    }

    #messageHolder {
        border:2px solid #D5D5D5;
        padding:5px;
        margin-top:115px;
    }

    .wfcStageLabel,.cStageLabel {
        width:calc(100% - 30px);
    }
    #footer {
        display:none;
    }

    #pages {
        padding-bottom:20px;
    }

    .filterRow {
        display:block;
        padding:5px;
    }

    #theater {
        border-radius:0;
        margin:0;
        padding:0;
    }

    #videoQuizBar, #videoDescriptionBox,.quizQuestion {
        margin:0;
        border-radius:0;
    }

    .quizAnswer {
        margin:0;
        border-radius:0;
    }

    #popup {
        width:calc(100% - 20px);
        position:absolute;
        left:0;
        right:0;
        top:0;
        text-align:center;
        padding:10px;
        margin-left:0;
    }

    .appointmentBox,.appointmentTypeRow {
        width:calc(100% - 66px);
    }

    .homeevent,#patientSurveyBox, .homeVideo {
        width: calc(100% - 66px);
    }

    #tableOfContents {
        display:none;
    }

    #surveyContents, #surveyButtons {
        position:static;
        margin:0;
        width:calc(100% - 30px);
    }

    .bxPortalColumn {
        width:100%;
        float:none;
        display:block;
    }

    .bxPortalColumnSmall {
        width:100%;
        float:none;
        display:block;
    }

    .bxSurveySidescrollHolder {
        width:100%;
        overflow-x:scroll;
    }

    .scrollHorizontal {
        display:block;
        color: var(--theme-color);
        text-align:center;
        width:100%;
        font-size:13px;
        line-height:20px;
        font-family:'Roboto';
        font-weight:bold;
    }

    .wfStageCompleteBtn {
        float:none;
        display:block;
        margin:5px auto;
        clear:both;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}