/*
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic,500,500italic,700,700italic,900,900italic&subset=latin,latin-ext,cyrillic,cyrillic-ext,greek-ext,greek,vietnamese);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext,cyrillic-ext,cyrillic,greek-ext,greek,vietnamese);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700&subset=latin,latin-ext,greek-ext,greek,vietnamese,cyrillic,cyrillic-ext);
*/

/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v18-latin-300.eot'); /* IE9 Compat Modes */
    src: local('Roboto Light'), local('Roboto-Light'),
    url('../fonts/roboto-v18-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v18-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v18-latin-300.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v18-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v18-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v18-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Roboto'), local('Roboto-Regular'),
    url('../fonts/roboto-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v18-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v18-latin-500.eot'); /* IE9 Compat Modes */
    src: local('Roboto Medium'), local('Roboto-Medium'),
    url('../fonts/roboto-v18-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v18-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v18-latin-500.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v18-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v18-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}

.cssVersion {
    font-family: Roboto !important;
}

html {
    height: 100vh; /* calc(100vh - 72px);*/
}

body {
    background-color: #EDEFF0;
    font-family: Roboto !important;
    font-weight: 300;
    min-height: 100%;
    overflow-x: hidden;
    font-size:20px;

}

header {
    height: 0;
}

.title {
    font: bold 16pt Georgia;
    margin: 10px 0 10px 0;
}

.button{
    -webkit-appearance: none;
}

:focus{
    outline: 1px solid #964599;
}

ol, ul {
    list-style: black;
}

#mobileNave {
    /*background-color: #FFFFFF;*/
    background-color: #EDEFF0;
    margin-bottom: 0px !important;
}

#user_img{
    display: block;
    max-width:40px;
    max-height:40px;
    width: auto;
    height: auto;
}
#patientProfileHeaderImgToChange,
#userProfileHeaderImgToChange,
#memberProfileHeaderImgToChange{
    display: block;
    max-width:80px;
    max-height:80px;
    width: auto;
    height: auto;
    cursor: pointer;
}

#patientProfileLargeImage{
    display: block;
    max-width:100px;
    max-height:100px;
    width: auto;
    height: auto;
    cursor: pointer;
}

/*https://css-tricks.com/snippets/css/complete-guide-grid/*/


.fixed {
    z-index: 1010;
    position: fixed;
}

.app-layout {
    display: grid;
    display: -ms-grid;
    -ms-grid-columns: 245px 4fr 2fr  ;
    -ms-grid-rows: 55px auto 40px;
    display: grid;
     height: 100vh; /*calc(100vh - 120px);*/
    width: 100%;
    grid-template-columns: [ space_first ] 245px [ space_left ] 4fr [ space_right ] 2fr [ space_end ]  ;
    grid-template-rows: [ header-start ] 60px [ header-end ] auto [ section-end ] 60px;
    grid-template-areas: "appheader appheader appheader" "sidebar content extrabar"  "pfooter pfooter pfooter";
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    position: absolute;
    /*top:100px;*/
    overflow: hidden;
    background-color: #EDEFF0;
   /* min-height: 100vh;*/
    z-index: 1;
}

.space_first{
    grid-area: space_first;
}
.space_left{
    grid-area: space_left;
}
.space_right{
    grid-area: space_right;
}
.space_end{
    grid-area: space_end;
}

.space_first,
.space_left,
.space_right,
.space_end{
    margin:2px;
    padding:0px;
}

.appheader {
    grid-area: appheader;
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 4;
    position: fixed;
    display: flex;
    /*align-items: left;*/
    /*box-shadow: 0px 2px 5px 0px #D6DADC;  inset*/
    background-color: white;
    /*border: 2px solid #D6DADC;*/
    width: 100%;
    height: 60px;
    margin: 0;

    z-index: 1015;
    top: 0;
/*    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.05);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.05);*/
    -webkit-box-shadow: 0px 3px 3px #ececec;
    box-shadow: 0px 3px 3px #ececec;
}

.sidebar{
    grid-area: sidebar;
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
    justify-self: stretch;
    align-self: left;
    height: calc(100vh - 120px);
}
.content {
    grid-area: content;
    justify-self: stretch;
    align-self: left;
    /*overflow-y: auto;*/
    /*height: calc(100vh - 144px);*/
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
    margin:0px;

    /*display: flex;*/

       /*height: calc(100vh - 130px) ;*/
      position: relative;
      width: 100%;
background-color: #EDEFF0;
}

.extrabar {
    grid-area: content;
    justify-self: stretch;
    align-self: left;
    /*overflow-y: auto;*/
    height: calc(100vh - 120px);
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 3;
    grid-column-end: 4;
    margin:0px;

    display: flex;

    /*   height: calc(100vh - 144px);
      position: relative;
      width: 100%;*/
    background-color: #EDEFF0;
}

.pfooter{
    grid-area: pfooter;
    justify-self: stretch;
    align-self: left;
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 4;
    background-color: #FFFFFF;
    z-index: 1045;
    position: fixed;
    bottom: 0px;
    height: auto;
    left: 0px;
    right: 0px;
    background-color: white;
}



/*
.item-c {
    grid-area: sidebar;
    justify-self: stretch;
    align-self: left;
    height: calc(100vh - 144px);

    !* overflow-y: auto;*!
}

.item-d {
    grid-area: pfooter;
    justify-self: stretch;
    align-self: left;
}*/


.shadowHeaders{
   /* -webkit-box-shadow: 0px 3px 3px #ececec;
    box-shadow: 0px 3px 3px #ececec;*/
    z-index: 100;
 /*   height:45px;*/
    padding-top:3px;
/*    background-color:#ffffff;*/
}


.shadowHeadersSide{
    /* -webkit-box-shadow: 0px 3px 3px #ececec;
     box-shadow: 0px 3px 3px #ececec;*/
    z-index: 100;
    /*   height:45px;*/

    background-color:#ffffff;
}
.ad_navicon_toggle {
    display: none;
}


.tab-pane {
    -webkit-transform: translate3d(0,0,0);
    width: 100%; /*calc(100% - 15px);*/
    height:  100vh; /* calc(100vh - 40px);*/
    background-color: #EDEFF0;

    position: sticky;
    z-index: 1;
   /* position: fixed;*/
}
.tab-pane-scroll {
    -webkit-transform: translate3d(0,0,0);
    /*-webkit-transform: translateZ(0);*/
    width: 100%;
    background-color: #EDEFF0;
    overflow-y: scroll; overflow-x: hidden; max-height: calc(100vh - 164px);

}
::-webkit-scrollbar {
    width: 0px; /* remove scrollbar space */
    background: transparent; /* optional: just make scrollbar invisible */
}

/* optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    /*background: #FF0000;*/
}



/*#learn_questionaires,*/
/*#learn_sections,*/
/*#plan_tasks,*/
/*#plan_sugggoals,*/
/*#care_article,*/
/*#care_team*/
/*{*/
/*overflow: auto;*/
/*height: calc(100% - 100px);*/
/*padding: .5rem;*/
/*-webkit-overflow-scrolling: touch;*/
/*-ms-overflow-style: none;*/
/*}*/

.nav {
    /*background: #fff;*/
    background-color: #EDEFF0;
}

.nav ul {
    list-style-type: none;
    padding: 0;
}

.nav ul a {
    text-decoration: none;
}
#learntab,
#plantab,
#caretab,
#admintab{
    width:100%;
    margin: 0px;

 padding-right:0px;
    cursor: pointer;
}

#learnPage,
#carePage,
#planPage,
.tab-pane
{
    cursor: default;
}

#carePage:after{
    border-top: 1px solid red;
    height: 100%;
    width: 10%;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
}

#sidebarChangeMe,
.sidebar{
    /*grid-area: sidebar;*/
   /* font-family: Roboto;*/
    font-weight: 300;
    width:245px;
    /*height:100vh;*/
    -webkit-box-shadow: 3px 0px 3px #ececec;
    box-shadow: 3px 0px 3px #ececec;
    background-color: #ececec;
}
/******** PATIENT BOX ***********/
.sidebarcontainer {
    height: calc(100vh - 120px);
    background-color: #ffffff;
    box-shadow: 0 2px 5px 0 #D6DADC inset;
    /*position: fixed;*/
}

#grad_patient {
    background: linear-gradient(180deg, #71CACB 0%, #005B8C 100%);
    color: white;
   /* padding: 5%;*/
    padding-top: 5%;
    padding-bottom:5%;
    box-shadow: 2px 2px 2px 1px #D6DADC inset;
    width:100%;
    cursor: default;
}

.patientProfileButton {
    -webkit-appearance: none;
    /* opacity: 0.3;*/

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border-color: transparent;
    background-color: rgba(87, 148, 177, 1);
    color: #ffffff;
    height: 40px;
  /*   width: 80%;*/
    font-family: Roboto;
    font-size:20px;
    font-weight:300;
    padding-left:15px;
    padding-right:15px;
    cursor: pointer;
}

.patient-name {
    text-align: center;
    /*height: 11px;*/
    /*width: 89px;*/
    color: #FFFFFF;
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 11px;
    /*text-align: center;*/
    margin-bottom: 0;
    text-transform: uppercase;
    margin-left: 10px;
    margin-right: 10px;
    font-family: Roboto;
    font-weight:500;
    font-weight:500;
}


.patientNameFill {
    text-align: center;
    /*height: 24px;*/
    /*width: 128px;*/
    color: #FFFFFF;
   /* font-family: Roboto;*/
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
    padding: 0;
}

.teamNameFill {
    text-align: center;
    /*height: 24px;*/
    /*width: 128px;*/
    color: #FFFFFF;
    /* font-family: Roboto;*/
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
    padding: 0;
}

.patientline {
    height: 3px;
    width: 25px;
    border-top: 1px solid #FFFFFF;
    align: center;
}

.patientprogression {
    text-align: center;
    /*height: 11px;*/
    /*width: 85px;*/
    color: #FFFFFF;
  /*  font-family: Roboto;*/
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 11px;
    margin-bottom: 0px;
    text-transform: uppercase;
    margin-left: 10px;
    margin-right: 10px;
    font-family: Roboto;
    font-weight:500;
}

.patientmoderate {
    text-align: center;
    /*height: 18px;*/
    /*width: 64px;*/
    color: #FFFFFF;
  /*  font-family: Roboto;*/
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}

.circular-image {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;

    /*   height: 100px;
       width: 100px;*/
}

.circular--portrait {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
}

.circular--portrait img {
    width: 100%;
    height: auto;
}
.circular--landscape {
    display: inline-block;
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
}

.circular--landscape img {
    width: auto;
    height: 100%;
    margin-left: -50px;
}


#user_name {
    color: #2C3240;
   /* font-family: Roboto;*/
    font-size: 15px;
    line-height: 18px;
    text-align: right;
}

#signedInAs {
    color: #8094A1;
    /*font-family: Roboto;*/
    font-size: 15px;
    line-height: 18px;
    text-align: right;
}

/* main Menu CareLearnPlan settings */
.sideMenuUl {
    margin: 0;
    padding: 0;
}

.sideMenuText {
   /* font-family: 'Roboto', sans-serif;*/
    font-size: 25px;

    font-weight: 300;
    line-height: 24px;
     padding-top: 10%;
    padding-bottom: 10%;

    /*padding-left: 20px;
    padding-right: auto;*/
    box-shadow: 0 1px 0 0 #D6DADC inset;
}


.sideMenuTextWhite {
    /* font-family: 'Roboto', sans-serif;*/
    font-size: 25px;
    font-weight: 500;
    line-height: 24px;
  /*  padding-top: 10%;
    padding-bottom: 10%;
    */
    /*padding-left: 20px;
    padding-right: auto;*/
    box-shadow: 0 1px 0 0 #D6DADC inset;
    background-color: #FFFFFF;
    color: #964599;
}
.sideMenuTextGray {
    /* font-family: 'Roboto', sans-serif;*/
    font-size: 25px;
    font-weight: 300;
    line-height: 24px;
    /*padding-top: 15%;*/
    /*padding-bottom: 15%;*/
    /*padding-left: 20px;
    padding-right: auto;*/
    box-shadow: 0 1px 0 0 #D6DADC inset;
    background-color: #EDEFF0;
    color: #8094A1;
}

/*
@media only screen and (max-width: 900px) {
    .sideMenuText {
        font-size: 5.0vw;
    }
}

@media only screen and (min-width: 600px) {
    .sideMenuText {
        font-size: 30px;
    }
}
*/


/*  border: 1px solid #D6DADC;
}*/

.tabpage {
    color: #2C3240;
   /* font-family: 'Roboto', sans-serif;*/
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    /*background-color: white;*/
    background-color: #EDEFF0;
    /*width: 100%;*/
    box-shadow: none; /*2 px 2 px 2 px 1 px #D6DADC;  inset*/
}

/*.steven-s-journey {*/
/*height: 24px;*/
/*width: 149px;*/
/*color: #2C3240;*/
/*font-family: 'Roboto', sans-serif;*/
/*font-size: 20px;*/
/*font-weight: 300;*/
/*line-height: 24px;*/
/*}*/

/*ul li.maincontainer {*/
/*background-color: #EDEFF0;*/
/*height = 100%;*/
/*position: relative;*/
/*display: block;*/
/*box-shadow: none;*/
/*}*/



/*
.sideMenuText a:link    {
   !* Applies to all unvisited links *!
   text-decoration:  none;
    color: #8094A1;
  !* background-color: #EDEFF0;*!
}
.sideMenuText a:visited {
   !* Applies to all visited links *!
   text-decoration:  none;
   color: #8094A1;
   !*background-color: #EDEFF0;*!
}
.sideMenuText a:hover   {
   !* Applies to links under the pointer *!
   text-decoration:  none;
   color: #964599;
   !*background-color: #EDEFF0;*!
}
.sideMenuText a:active  {
   !* Applies to activated links *!
   text-decoration:  none;
   color:  #964599;
!* background-color: #ffffff;*!
}


.article {	height: 18px;	width: 138px;	color: #2C3240;	font-family: Roboto;	font-size: 15px;	line-height: 18px;}*/

.learnArticlesLink a:link,
.learnArticlesLink a:hover,
.learnArticlesLink a:active ,
.learnArticlesLink a:visited {
    color: #5c2131;
    border: 0px;
    -webkit-appearance: none;
    /* Applies to activated links */
    text-decoration:  none;
    cursor: pointer;
    box-shadow: none !important;
    text-shadow: none !important;
    outline: none !important;
}



/* ---------------------- QUESTIONNAIRE --------------------- */
a#questionaire_first,
a#questionaire_prev ,
a#questionaire_last ,
a#questionaire_next,
a#modal_Done_button
{
    -webkit-appearance: none;
    /* Applies to activated links */
    text-decoration:  none;
    color:#ffffff;
    /* background-color: #ffffff;*/
    cursor: pointer;
}
a#questionaire_first a:active,
a#questionaire_prev a:active,
a#questionaire_last a:active,
a#questionaire_next a:active,
a#modal_Done_button a:active
{
    -webkit-appearance: none;
    /* Applies to activated links */
    text-decoration:  none;
    color:#ffffff;
    /* background-color: #ffffff;*/
    cursor: pointer;
}
a#questionaire_first a:link,
a#questionaire_prev a:link,
a#questionaire_last a:link,
a#questionaire_next a:link,
a#modal_Done_button a:link
{
    -webkit-appearance: none;
    /* Applies to activated links */
    text-decoration:  none;
    color:#ffffff;
    /* background-color: #ffffff;*/
    cursor: pointer;
}
a#questionaire_first a:visited,
a#questionaire_prev a:visited,
a#questionaire_last a:visited,
a#questionaire_next a:visited,
a#modal_Done_button a:visited
{
    -webkit-appearance: none;
    /* Applies to activated links */
    text-decoration:  none;
    color:#ffffff;
    /* background-color: #ffffff;*/
    cursor: pointer;
}

a#questionaire_first_dark,
a#questionaire_prev_dark ,
a#questionaire_last_dark ,
a#questionaire_next_dark,
a#modal_Done_button_dark
{
    -webkit-appearance: none;
    /* Applies to activated links */
    text-decoration:  none;
    color:#99285F;
    /* background-color: #ffffff;*/
    cursor: pointer;
}
a#questionaire_first_dark a:active,
a#questionaire_prev_dark a:active,
a#questionaire_last_dark a:active,
a#questionaire_next_dark a:active,
a#modal_Done_button_dark a:active
{
    -webkit-appearance: none;
    /* Applies to activated links */
    text-decoration:  none;
    color:#99285F;
    /* background-color: #ffffff;*/
    cursor: pointer;
}
a#questionaire_first_dark a:link,
a#questionaire_prev_dark a:link,
a#questionaire_last_dark a:link,
a#questionaire_next_dark a:link,
a#modal_Done_button_dark a:link
{
    -webkit-appearance: none;
    /* Applies to activated links */
    text-decoration:  none;
    color:#99285F;
    /* background-color: #ffffff;*/
    cursor: pointer;
}
a#questionaire_first_dark a:visited,
a#questionaire_prev_dark a:visited,
a#questionaire_last_dark a:visited,
a#questionaire_next_dark a:visited,
a#modal_Done_button_dark a:visited
{
    -webkit-appearance: none;
    /* Applies to activated links */
    text-decoration:  none;
    color:#99285F;
    /* background-color: #ffffff;*/
    cursor: pointer;
}

#question_modal_card {
    /* width:40vw; height:70vh; padding:0px;*/
    max-width: 630px;
  /*  height:  90vh;*/

    padding:0px auto;
    margin:0px auto
}

#questionnaireline {
    width: 30%;
    height: 3px;
    margin-left: auto;
    margin-right: auto;
    background-color: #99285F;
    color: #99285F;
    border: 0 none;
}

#questionnairelineSmall {
    width: 15%;
    height: 2px;
    margin-left: auto;
    margin-right: auto;
    background-color: #99285F;
    color: #99285F;
    border: 0 none;
}

#question_num_heading {
    color:#ffffff;
   /* color: #8094A1;*/
   /* font-family: Roboto;*/
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 20px;
    text-align: center;
    /*margin-top: 10px;*/
    /*padding-top: 10px;*/
    /*padding-bottom: 0px;*/
}

#question_num_outof {
    color:#ffffff;
    /*margin: 0px;*/
    /*padding-top: 0px;*/
    /*padding-bottom: 0px;*/
    /*color: #2C3240;*/
  /*  font-family: Roboto;*/
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}
#learn_questionaires_mod_body_f {
    padding-top: 0px;
    padding-left:10px;
    padding-right:10px;
}

#learn_questionaires_mod_body {
    color: #2C3240;
   /* font-family: Roboto;*/
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    padding-top: 0px;
    padding-left:20px;
    padding-right:20px;
}

#learnarticleModal_title {
    color: #2C3240;
/* font-family: Roboto;*/
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
}

#learn_questionaires_indent {
    color: #2C3240;
   /* font-family: Roboto;*/
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    /*}*/
}

#learn_questionaires_indent0 {
    color: #2C3240;
   /* font-family: Roboto;*/
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}

#learn_questionaires_questions {
    margin-left: 25px;
    font-size: 20px;
    margin-bottom: 4px;
}

/*
@media (min-height: 400px) {
    learn_questionaires_questions0 {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;

        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}

#learn_questionaires_questionsTwoColumn {
    font-size: 14px;
    margin-left: 25px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;

    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;

}*/

#learn_questionaires_questions0 {
    font-size: 20px;
}

#questionInstruction {
    margin: 0px;
    padding-top: 0px;
    padding-bottom: 5px;
    color: #8094A1;
   /* font-family: Roboto;*/
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

#learn_questionaires_mod_question {
    color: #2C3240;
   /* font-family: Roboto;*/
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    text-align: center;
    margin-bottom: 5px;
}

#learn_questionaires_mod_more {
    /*height: 20px;*/
    /*width: 325px;*/
    color: #8094A1;
  /*  font-family: Roboto;*/
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

#learn_questionares_mod_choice {

  /*  font-family: Roboto;*/
    font-size: 18px;
    line-height: 24px;
    margin: 20px;
    text-align: left;
}

div#learnarticleModal_title a:link {
    color: #8094A1 !important;
    text-decoration: none;
}

div#learnarticleModal_title a:visited {
    color: #8094A1 !important;
    text-decoration: none;
}

div#learnarticleModal_title a:hover {
    color: #8094A1 !important;
    text-decoration: none;
}

div#learnarticleModal_title a:active {
    color: #8094A1 !important;
    text-decoration: none;
}

a#startlearnarticleModal {
    color: #8094A1;
}

#q_modal-container {
    -webkit-border-radius:  5px;
    -moz-border-radius: 5px;
    border-radius:  5px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05) inset;
   /*  height: 85%;*/
    padding-top: 0px;
    padding-left:0px;
    padding-right:0px;
    margin:0;
}
#learn_articleModal,
#care_articleModal {
    /*max-width: 900px;*/
    overflow: hidden;

}
#learn_articleModal,
#care_articleModal {

    -webkit-border-radius:  5px;
    -moz-border-radius: 5px;
    border-radius:  5px;
    background-color: #CCCCCC77;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05) inset;
}

#learn_article_modal_body,
#care_article_modal_body {
    color: #2C3240;
   /* font-family: Roboto;*/
    font-size: 20px;
    line-height: 28px;
    max-width: 900px;
}
#learn_article_modal_body ul,
#care_article_modal_body ul {
    list-style-type: circle;
}
.care_article_line:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 10%;
    border-left: 2px solid #ff0000;
    transform: translate(-10%);
}

#imgcentered {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.imgcentered {
    display: block;
    margin: 0 auto;
}

.pamsButton {
    -webkit-appearance: none;
    height: 40px;
    width: 100px;
    -webkit-border-radius:  20px;
    -moz-border-radius: 20px;
    border-radius:  20px;
    background-color: #71CACB;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}

p#commentText.commentText {
    color: #2C3240;
   /* font-family: Roboto;*/
    font-size: 16px;
    line-height: 24px;
}

#sidebarChangeMe {
    padding: 0;
    margin: 0;
    overflow:visible;
}

div#suggTask {
    margin-bottom: 0;
    margin-top: 5px;
    background-color: rgba(126, 211, 33, 1);
    height: 23px;
    color: #FFFFFF;
  /*  font-family: Roboto;*/
    font-size: 11px;
    font-weight: bold;
    line-height: 13px;
}

div #suggTask p {
    margin-bottom: 0;
    margin-left: 20px;
    padding-top: 5px;
    color: #FFFFFF;
}

@media only screen and (min-width: 1026px) {
    .app-layout {
        -ms-grid-columns: 245px 4fr 2fr  ;
        grid-template-columns: [ space_first ] 245px [ space_left ] 4fr [ space_right ] 2fr [ space_end ]  ;
        grid-template-rows: [ header-start ] 60px [ header-end ] auto [ section-end ] 60px;
        grid-template-areas: "appheader appheader appheader"
        "sidebar content extrabar" ;
         "pfooter pfooter pfooter";
    }

    #appheaderMobile {
        display: none;
    }

    .appheader {
        display:  block;
        grid-row-start: 1;
        grid-row-end: 2;
        grid-column-start: 1;
        grid-column-end: 4;
        height: 60px;
    }

    #MCPHeader {
        display:  block;
    }

    #userloginHeader {
        display: inline-block;
    }



    .ad_navicon_toggle {
        display: none;
    }


    #sidebarHolder {
        display: block;
    }

    #mobileNave {
        display: none;
    }

   /* .item-c {
        grid-area: sidebar;
    }*/
    .extrabar {
        display: block;
    }
    .uk-tab > * > a
    {
        border-bottom: none;

    }
    .sidebar {
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end: 2;
    }

    .content{
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 2;
        grid-column-end: 3;
        margin: 0px;
        height: calc(100vh - 120px) ;
    }
    #question_modal_card {
        /* width:40vw; height:70vh; padding:0px;*/
        max-width: 630px;
        padding:0px auto;
        margin:0px auto
    }

    #learn_articleModal,
    #care_articleModal,
    #articleModal{
        width:100%;
        height:100%;
        margin: 0;
        padding: 0;
    }

    .tab-pane-scroll {
        overflow:hidden;
        overflow-y:auto;
        max-height: calc(100vh - 224px);
    }
}

@media all and (max-width: 1025px) and (min-width: 601px) {

    .app-layout {
        -ms-grid-columns: 245px 4fr ;
        grid-template-columns: [ space_first ] 245px [ space_left ] 4fr [ end ]  ;
        grid-template-rows: [ header-start ] 60px [ header-end ] auto [ section-end ] 60px;
        grid-template-areas: "appheader appheader  " "sidebar content " "pfooter pfooter ";
    }

    #appheaderMobile {
        display: none;
    }

    .appheader {
        display:  block;
        grid-row-start: 1;
        grid-row-end: 2;
        grid-column-start: 1;
        grid-column-end: 2;
        height:60px;
    }
    .sidebar {
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end: 2;
    }
    #MCPHeader {
        display:  block;
    }

    #userloginHeader {
        display: inline-block;
    }

    .content{
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 2;
        grid-column-end: 3;
        margin: 0px;
        height: calc(100vh - 120px) ;
    }

    #plan_sugggoals_tab{
        display:block;
    }
    .extrabar {
        display: block;
    }

    .ad_navicon_toggle {
        display: none;
    }

    #sidebarHolder {
        display: block;
    }

    #mobileNave {
        display: none;
    }

  /*  .item-c {
        grid-area: sidebar;
    }*/
    .uk-tab > * > a
    {
        border-bottom: 1px solid transparent;
    }
    #question_modal_card {
        /* width:40vw; height:70vh; padding:0px;*/
        max-width: 630px;
        padding:0px auto;
        margin:0px auto
    }

    #learn_articleModal,
    #care_articleModal,
    #articleModal{
        width:100%;
        height:100%;
        margin: 0;
        padding: 0;
    }
    .tab-pane-scroll {
        overflow:hidden;
        overflow-y:auto;
        max-height: calc(100vh - 224px);
    }
}

@media all and (max-width: 600px) and (min-width: 0px) {

    .app-layout {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-rows: [ header-start ] 40px [ header-end ] auto [ section-end ]  0px;
        grid-template-areas: "appheader " "content "  "pfooter ";
    }

    .ad_navtext_toggle {
        position: fixed;
        right: 0;
        left: 0;
        top: 20px;
        z-index: 1030;
        display: block;
    }
    .content{
      grid-row-start: 2;
      grid-row-end: 3;
      grid-column-start: 1;
      grid-column-end: 2;
      margin: 0px;
        height:  calc(100vh - 60px) ;
    }

    .appheader {
        display:  block;
        height: 40px;
    }
    .sidebar {
        grid-row-start: 2;
        grid-row-end: 3;
        grid-column-start: 1;
        grid-column-end: 2;
    }
    #MCPHeader {
        display: none;
    }

    #userloginHeader {
        display: none;
    }

    .extrabar {
        display: none;
    }

    .fixed {
        z-index: 1010;
        position: relative;
    }

    #sidebarholder {
        display: none;
    }

    #mobileNave {
        display: block;
    }

  /*  .item-c {
        grid-area: sidebar;
    }*/
    .uk-tab > * > a
    {
        border-bottom: 1px solid transparent;
    }

    #question_modal_card {
        /* width:40vw; height:70vh; padding:0px;*/
        width: 100%;
        height: 100%;
        padding:0px auto;
        margin:0px auto
    }

    #learn_articleModal,
    #care_articleModal,
    #articleModal{
        width:100%;
        height:100%;
        margin: 0;
        padding: 0;
    }
    .pfooter{
        height:0px;
        display:none;
    }
    .tab-pane-scroll {
        overflow:hidden;
        overflow-y:auto;
        max-height: calc(100vh - 164px);
    }
}

/***** SIGN IN */

.signin {

    padding-bottom:0px;
    padding-left: 10px;
    padding-right: 10px;
    font-family: Roboto;
    font-size: 11px;
    font-weight: 300;
    line-height: 13px;
    color: #2C3240 !important;
    max-width: 900px;
    align-self: center;
    margin: auto;
}

/*div #signin {*/
/*margin-left: 20px;*/
/*padding-top: 5px;*/
/*}*/

.signin_header {
    color: #8094A1;
    font-family: Roboto;
    font-size: 25px;
    font-weight: 300;
    line-height: 29px;
    text-align: center;
    margin:0;
}

.signin_header2 {
    color: #2C3240 ;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 300;
    line-height: 18px;
    text-align: left;
    margin:0;
    margin-bottom:10px;
}

button_barelyThere{
    -webkit-appearance: none;
    height: 50px;
    width: 264px;
    border: 1px solid #D6DADC;
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;
    background-color: #aaaaaa;
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}
button_barelyThere:hover{background-color: #808080;}

button_barelyThere:focus{ border: 1px solid #8094A1;}


.button_purple {
    -webkit-appearance: none;
    height: 50px;
    width: 264px;
    border: 1px solid #D6DADC;
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;
    background-color: #964599;
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}
.button_purple:hover{background-color: #743677;}

.button_purple:focus{ border: 1px solid #8094A1;}


.button_aquaSM {
    -webkit-appearance: none;
    height: 50px;
    width: 100%;
    border: 1px solid #D6DADC;
    border-radius: 100px;
    background-color: #71CACB;
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}
.button_aquaSM:hover{background-color: #4b9494;}

.button_aquaSM:focus{ border: 1px solid #8094A1;}

.button_aqua_sm {
    -webkit-appearance: none;
    border: 1px solid #D6DADC;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background-color: #71CACB;
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;

}

.button_aqua_sm:hover{background-color: #4b9494;}

.button_aqua_sm:focus{ border: 1px solid #8094A1;}


.button_gray_sm {
    -webkit-appearance: none;
    border: 1px solid #D6DADC;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background-color: #8094A1;
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;

}
.button_purple_sm {
    -webkit-appearance: none;
    border: 1px solid #D6DADC;
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;
    background-color: #964599;
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}

.button_purple_sm:hover{background-color: #743677;}

.button_purple_sm:focus{ border: 1px solid #8094A1;}


.button_blue_sm {
    -webkit-appearance: none;
    border: 1px solid #D6DADC;
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;
    background-color: #005B8C;
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}

.button_purple_sm:hover{background-color: #003b63;}

.button_purple_sm:focus{ border: 1px solid #8094A1;}


.red_box{
    border-color: #99285F;
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    border-radius:  10px;
    -webkit-border-radius:  10px;
    -moz-border-radius:  10px;

}

.button_red_sm {
    -webkit-appearance: none;
    border: 1px solid #D6DADC;
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;
    background-color: #99285F;
    color: #FFFFFF;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}


.button_red_sm:hover{background-color: #6c2337;}

.button_red_sm:focus{ border: 1px solid #8094A1;}

.button_SM {
    -webkit-appearance: none;
    height: 50px;
    width: 264px;
    border: 1px solid #D6DADC;
    border-radius: 100px;
    font-family: Roboto;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}

.button_white {
    -webkit-appearance: none;
    height: 50px;
    width: 264px;
    border: 1px solid #D6DADC;
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;
    background-color: #ffffff;
    color: #8094A1;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}
.button_white:hover{background-color: #e7e7e7;}

.button_white:focus{ border: 1px solid #8094A1;}


.button_whiteSM {
    -webkit-appearance: none;
    height: 50px;
    width: 100%;
    border: 1px solid #D6DADC;
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;
    background-color: #ffffff;
    color: #8094A1;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}
.button_whiteSM:hover{background-color: #e7e7e7;}

.button_whiteSM:focus{ border: 1px solid #8094A1;}


.button_whiteSM_thin {
    -webkit-appearance: none;
    height: 35px;
    width: 100%;
    border: 1px solid #D6DADC;
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;
    background-color: #ffffff;
    color: #8094A1;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}

.button_whiteSM_thin:hover{background-color: #e7e7e7;}

.button_whiteSM_thin:focus{ border: 1px solid #8094A1;}

.button_whiteSM_learnMore {
    -webkit-appearance: none;
    height: 30px;
    width: 80%;
    border: 1px solid #D6DADC;
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;
    background-color: #ffffff;
    color: #8094A1;
    font-family: Roboto;
    font-weight: 300;
    font-size: 16px; /*calc(3px + 1.5vw);*/
    line-height: 18px; /*calc(3px + 1.5vw);*/
    text-align: center;
    align-content: center;
    cursor: pointer;
    padding: 0;
}

.button_whiteSM_learnMore:hover{background-color: #e7e7e7;}

.button_whiteSM_learnMore:focus{ border: 1px solid #8094A1;}


.button_aqua {
    -webkit-appearance: none;
    height: 50px;
    width: 100%;
    border: 1px solid #D6DADC;
    border-radius: 100px;
    background-color: #005B8C;
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}


.button_aqua_sm:hover{background-color: #003d68;}

.button_aqua_sm:focus{ border: 1px solid #8094A1;}


.button_blue {
    -webkit-appearance: none;
    height: 50px;
    width: 100%;
    border: 1px solid #D6DADC;
    border-radius: 100px;
    background-color: #71CACB;
    color: #FFFFFF;
    font-family: Roboto;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}

.button_blue:hover{background-color: #58adae;}

.button_blue:focus{ border: 1px solid #8094A1;}


.signin_input {
    height: 50px;
    width: 100%;
   border: 1px solid #D6DADC;
   /* border: 2px solid #005b8c;*/
    -webkit-border-radius:  5px;
    -moz-border-radius:  5px;
    border-radius:  5px;
    background-color: #FFFFFF;
    color: #2C3240 !important;
    margin-bottom: 10px;
    text-transform: none;
    font-size: 18px;
}

.fullPageModal {
    background-color: #EDEFF0;
    padding-top: 10px;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.centerFull {
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    position: absolute;
}

#forgotRememberRow {
    /* margin-left:33%;
     margin-right:33%;*/
}

#copyright {
    color: #B2C0C7;
    width: 293px;
    font-family: Roboto;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    padding-top:0px;
    margin-top:0px;
}

#forgotpassword {
    align-content: center;
    color: #8094A1;
    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
}

.mySelectDropdown {

    font-family: Roboto;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    margin: 0px;
    text-align: left;
}

.task-descript-gray {
    /*height: 11px;*/
    /*width: 84px;*/
    color: #8094A1;
    font-family: Roboto;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 20px;
    text-transform: uppercase;
}

.taskFontDark{
    margin-left:5px;
    margin-right:5px;
    border-radius:5px;
    color: #2C3240;	font-family: Roboto;	font-size: 18px;	line-height: 24px;     font-weight: normal;text-transform: none;
}
.taskFontGrey{
    margin-left:5px;
    margin-right:5px;
    border-radius:5px;
    color: #8094A1;	font-family: Roboto;	font-size: 18px;	line-height: 24px;    font-weight: normal;text-transform: none;
}
.taskFontGrey12{
    margin-left:5px;
    margin-right:5px;
    border-radius:5px;
    color: #8094A1;	font-family: Roboto;	font-size: 16px;	line-height: 22px;    font-weight: normal;text-transform: none;
}

.extrabar {
    /*grid-area: extrabar;*/
    display: block;
    width:100%;
    height:100%; /*vh;*/
    margin: 0;
    padding: 0;

}

.taskitems{
    margin:0px !important;
    margin-left:-5px !important;
    padding-left:5
}

.tooltip_templates {
    display: none;
    max-width:200px;
}

.tooltip_templates_right {
    display: none;
    max-width:300px;
}
.tooltipster-default,
.tooltipster-base,
.tooltipster-content
{
    font-family: Roboto;
    font-size: 22px;
    line-height: normal !important;
    z-index:3000;
}

.mytooltipfont{


}

.tooltipster-sidetip.tooltipster-noir .tooltipster-box {
    /*border-radius: 0;*/
    border: 3px solid #964599;
    background: #fff;
    max-width:300px;

    /*font: 22px/34px "Roboto", serif;*/
    font-family: Roboto;
    font-size: 22px;
  /*   font-weight: bold;
    line-height: 130%;*/
    border-radius: 40px;
    padding: 20px;
}

.tooltipster-sidetip.tooltipster-noir .tooltipster-content {
    color: #000
}

.tooltipster-sidetip.tooltipster-noir .tooltipster-arrow {
    height: 11px;
    margin-left: -11px;
    width: 22px
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-left .tooltipster-arrow, .tooltipster-sidetip.tooltipster-noir.tooltipster-right .tooltipster-arrow {
    height: 22px;
    margin-left: 0;
    margin-top: -11px;
    width: 11px
}

.tooltipster-sidetip.tooltipster-noir .tooltipster-arrow-background {
    border: 11px solid transparent
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #fff;
    top: 4px
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #fff;
    left: -4px
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #fff;
    left: 4px
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #fff;
    top: -4px
}

.tooltipster-sidetip.tooltipster-noir .tooltipster-arrow-border {
    border-width: 11px
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -11px
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-right .tooltipster-arrow-uncropped {
    left: -11px
}

/*
.tooltip {
    position: relative;
    display: inline-block;
    !*border-bottom: 1px dotted black;*!
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #8094A1;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 2s;
    font-size: 16px;
    -webkit-transition-delay: 1s; !* Safari *!
    transition-delay: 1s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}*/

label.cameraButton {
    display: inline-block;
    margin: 1em 0;

    /* Styles to make it look like a button */
    padding: 0.5em;
    border: 2px solid #666;
    border-color: #EEE #CCC #CCC #EEE;
    background-color: #DDD;
    cursor: pointer;
}

/* Look like a clicked/depressed button */
label.cameraButton:active {
    border-color: #CCC #EEE #EEE #CCC;
    cursor: pointer;
}

/* This is the part that actually hides the 'Choose file' text box for camera inputs */
label.cameraButton input[accept*="camera"] {
    display: none;
    cursor: pointer;
}

/*https://www.labnol.org/internet/light-youtube-embeds/27941/*/
.youtube-player {
    position: relative;
    padding-bottom: 56.23%;
    /* Use 75% for 4:3 videos */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 5px;
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
}

.youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}

.youtube-player img:hover {
    -webkit-filter: brightness(75%);
}

.youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url("//i.imgur.com/TxzC70f.png") no-repeat;
    cursor: pointer;
}


/* The spinner    https://jsfiddle.net/StephanWagner/kk5bd3hh/ */

@keyframes spinner {
    to {transform: rotate(360deg);}
}

.spinner,
.spinner:before {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
}

.spinner:before {
    content: '';
    display: block;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #333;
    animation: spinner .6s linear infinite;
}

.spinner-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}

/* Animations */

.spinner-add,
.spinner-remove {
    animation-fill-mode: both;
    animation-duration: .4s;
}

.spinner-add {
    animation-name: spinner-add;
}

@keyframes spinner-add {
    from {transform: scale(0);}
    to {transform: scale(1);}
}

.spinner-remove {
    animation-name: spinner-remove;
}

@keyframes spinner-remove {
    to {transform: scale(0);}
}

.cursorpointer{
    cursor: pointer;
}

::selection{
    background: #71CACB !important;
}
.uk-tab > *{
    -webkit-box-shadow: 0px 3px 3px #ececec;
    box-shadow: 0px 3px 3px #ececec;
}
.uk-tab > * > a
{
    text-transform: none;
 font-size: 18px;
 color: #2C3240;
 font-weight: 300;
 line-height: 50px;

}
.uk-input,
input{
    -webkit-border-radius:  5px;
    -moz-border-radius:  5px;
    border-radius:  5px;

}

button{
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;

}

button:active, input[type="button"]:active {
    outline: none;
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;


}
button:focus, input[type="button"]:focus {
     outline: none; /*solid 1pt #8e4a93 ;*/
    -webkit-border-radius:  100px;
    -moz-border-radius:  100px;
    border-radius:  100px;
   /* box-shadow: 0 0 0 2pt #8e4a93 ;*/
    -webkit-box-shadow:0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    -moz-box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

a.button:hover {
   /* box-shadow: 0 0 10px 0 #CCC inset, 0 0 10px 4px #CCC;*/
    outline: none; /*solid #8e4a93 1pt;*/
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;

    -webkit-box-shadow:0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    -moz-box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

/*.button:focus,*/
.button:hover,
.button_aquaSM:hover,
.button_aqua_sm:hover,
.button_purpleSM:hover,
.button_purple_sm_sm:hover,
.button_SM:hover,
.button_white:hover,
.button_whiteSM:hover,
.button_aqua:hover,
.button_purple:hover {
    outline: none; /*solid #8e4a93 1pt;*/
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
  /*  box-shadow: 0 0 10px 0 #CCC inset, 0 0 10px 4px #CCC;*/

     -webkit-box-shadow:0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    -moz-box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.stop-top {
    stop-color: #8e4a93;  /* Indigo */
}

.stop-bottom {
    stop-color: #341B36;  /* Teal */
}

.gradientfilled {
    fill: url(#purplegradient);
}

.outlined {
    fill:   none;
    stroke: url(#purplegradient);
    stroke-width: 4;
}

.capitalizeFirstLetter:first-letter{
    text-transform: capitalize;
}

.wordwrap {
    white-space: pre-wrap;      /* CSS3 */
    white-space: -moz-pre-wrap; /* Firefox */
    white-space: -pre-wrap;     /* Opera <7 */
    white-space: -o-pre-wrap;   /* Opera 7 */
    word-wrap: break-word;      /* IE */
}

.linebk {
    background: url("data:image/svg+xml;utf8,  <svg width='100%' height='100%' viewBox='0 0 100% 100%' xmlns='http://www.w3.org/2000/svg'> <line x1='35' y1='0' x2='35' y2='100%' stroke-width='1' stroke='#8094A1'/> </svg>");
    background-repeat:no-repeat;
    background-position:center center;
    background-size: 100% 100%, auto;
}


#imageUpload
{
    display: none;
}

#profileImage
{
    cursor: pointer;
}

#profile-container {
    width: 40px;
    height: 40px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

#profile-container img {
    width: 40px;
    height: 40px;
}


fieldset.radios {
    border: none;
}
fieldset fields {
    clear: both;
}
.qinput {
    float: left;
    display: block;
}
.qlabel {
    position: relative;
    margin-left: 20px;
    display: block;
    text-align: left !important;
  /*  padding-right: 40px !important;*/
    padding-bottom: 20px !important;
    padding-left: 20px !important;
    vertical-align: text-top !important;
}


.uglabel {
    color: #2C3240 !important;
    position: relative;
    margin-left: 0px;
    display: block;
    text-align: left !important;
    /*  padding-right: 40px !important;*/
    padding-bottom: 20px !important;
    padding-left: 20px !important;
    vertical-align: text-top !important;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #964599;
}

.video:after {
    content: "";
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    z-index: 100;
    background: transparent url(../imgs/youtube-style-play-button-hi.png) no-repeat center;
    pointer-events: none;
}

#overlayModal, #articleModal, #learn_articleModal{
    z-index: 2099;
}



/* TOOL TIP SIMPLE */
/*
.tooltip {
    position: relative;
    display: inline-block;
    !* border-bottom: 1px dotted black;*!
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}*/


/**
 * Tooltip Styles   https://chrisbracco.com/a-simple-css-tooltip/
 */
/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
    position: relative;
    cursor: pointer;
    z-index: 1020;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
    position: absolute;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition:
            opacity 0.2s ease-in-out,
            visibility 0.2s ease-in-out,
            -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:
            opacity 0.2s ease-in-out,
            visibility 0.2s ease-in-out,
            -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:
            opacity 0.2s ease-in-out,
            visibility 0.2s ease-in-out,
            transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform:    translate3d(0, 0, 0);
    transform:         translate3d(0, 0, 0);
    pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
    z-index: 9997;
    border: 6px solid transparent;
    background: transparent;
    content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
    z-index: 9996;
    /*padding: 8px*/;
    /*width: 160px;*/
    background-color: #fff;
    /*background-color: hsla(0, 0%, 20%, 0.9);*/
    color: #000;
    content: attr(data-tooltip);
   /* font-size: 14px;
    line-height: 1.2;*/
    font-family: Roboto;
    font-size: 22px;
    line-height: normal !important;
    min-width:260px;
    max-width:400px;
    border: 3px solid #964599;
    border-radius: 20px;
    padding: 10px;

}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
    bottom: 100%;
    left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: #964599;
    /*border-top-color: hsla(0, 0%, 20%, 0.9);*/
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
    margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
    -webkit-transform: translateY(-12px);
    -moz-transform:    translateY(-12px);
    transform:         translateY(-12px);
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
    right: 100%;
    bottom: 50%;
    left: auto;
}

.tooltip-left:before {
    margin-left: 0;
    margin-right: -12px;
    margin-bottom: 0;
    border-top-color: transparent;
    border-left-color: #964599;
    /*border-left-color: hsla(0, 0%, 20%, 0.9);*/
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
    -webkit-transform: translateX(-12px);
    -moz-transform:    translateX(-12px);
    transform:         translateX(-12px);
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
    top: 100%;
    bottom: auto;
    left: 50%;
}

.tooltip-bottom:before {
    margin-top: -12px;
    margin-bottom: 0;
    border-top-color: transparent;
    border-bottom-color: #964599;
    /*border-bottom-color: hsla(0, 0%, 20%, 0.9);*/
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
    -webkit-transform: translateY(12px);
    -moz-transform:    translateY(12px);
    transform:         translateY(12px);
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
    bottom: 50%;
    left: 100%;
}

/* RightTop */
.tooltip-righttop:before,
.tooltip-righttop:after {

    left: 100%;
bottom: auto;
}
.tooltip-righttop:before,
.tooltip-right:before {
    margin-bottom: 0;
    margin-left: -12px;
    border-top-color: transparent;
    border-right-color: #964599;
    /*border-right-color: hsla(0, 0%, 20%, 0.9);*/
}

.tooltip-righttop:focus:before,
.tooltip-righttop:focus:after ,
.tooltip-righttop:hover:before,
.tooltip-righttop:hover:after  {
    -webkit-transform: translateX(-12px);
    -moz-transform:    translateX(-12px);
    transform:         translateX(-12px);

}


.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
    -webkit-transform: translateX(12px);
    -moz-transform:    translateX(12px);
    transform:         translateX(12px);
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-righttop:before {
    top: -56px;
}
.tooltip-righttop:after {
    top: -56px;
}

.tooltip-left:before,
.tooltip-right:before {
    top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-righttop:after {
    margin-left: 0;
    margin-bottom: -16px;
}

.tooltip-left:after,
.tooltip-right:after {
    margin-left: 0;
    margin-bottom: -16px;
}

 /************* OTHER STUFF */

/*.tooltip { !* Container for our tooltip *!
    position: relative;
    display: inline-block;
    border-bottom: 2px dotted black; !* Add some dots below the element *!
}

.tooltip .tooltiptext { !* This is for the tooltip text *!
    visibility: hidden;
    width: 100px;
    background-color: green;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 10px; !* Defines tooltip text position *!
    position: absolute;
    z-index: 1;
    top: -10px;
    right: 110%;
}

.tooltip:hover .tooltiptext { !* Makes tooltip text visible when hovered on *!
    visibility: visible;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 20%;
    left: 100%; !* This will position the arrow on the right of the tooltip *!
    margin-top: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent black; !* This will make the left border black*!
}*/

div {
    overflow: visible
}

span {
    overflow: visible
}
/*********** ANOTHER ***********/



/* ============================================================================================================================
== OVAL THOUGHT BUBBLE (more CSS3)  http://nicolasgallagher.com/pure-css-speech-bubbles/demo/default.css
** ============================================================================================================================ */

.oval-thought {
    position:relative;
    width:270px;
    padding:50px 40px;
    margin:1em auto 80px;
    text-align:center;
    color:#fff;
    background:#075698;
    /* css3 */
    background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698));
    background:-moz-linear-gradient(#2e88c4, #075698);
    background:-o-linear-gradient(#2e88c4, #075698);
    background:linear-gradient(#2e88c4, #075698);
    /*
    NOTES:
    -webkit-border-radius:220px 120px; // produces oval in safari 4 and chrome 4
    -webkit-border-radius:220px / 120px; // produces oval in chrome 4 (again!) but not supported in safari 4
    Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
    */
    -webkit-border-top-left-radius:220px 120px;
    -webkit-border-top-right-radius:220px 120px;
    -webkit-border-bottom-right-radius:220px 120px;
    -webkit-border-bottom-left-radius:220px 120px;
    -moz-border-radius:220px / 120px;
    border-radius:220px / 120px;
}

.oval-thought p {font-size:1.25em;}

/* creates the larger circle */
.oval-thought:before {
    content:"";
    position:absolute;
    bottom:-20px;
    left:50px;
    width:30px;
    height:30px;
    background:#075698;
    /* css3 */
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    border-radius:30px;
}

/* creates the smaller circle */
.oval-thought:after {
    content:"";
    position:absolute;
    bottom:-30px;
    left:30px;
    width:15px;
    height:15px;
    background:#075698;
    /* css3 */
    -webkit-border-radius:15px;
    -moz-border-radius:15px;
    border-radius:15px;
}

.incomplete-label {
    display: inline-block;
    padding: 0 10px;
    background: #8094A1;
    line-height: 1.5;
    font-size: 0.875rem;
    color: #fff;
    vertical-align: middle;
    white-space: nowrap;
    border-radius: 5px;
    text-transform: uppercase;
}

.learn-label {
    display: inline-block;
    padding: 0 10px;
    background: #99285F;
    line-height: 1.5;
    font-size: 0.875rem;
    color: #fff;
    vertical-align: middle;
    white-space: nowrap;
    border-radius: 5px;
    text-transform: uppercase;
}

/*<!---------  switch on/off ----------->*/

.myswitch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.myswitch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.myslider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.myslider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .myslider {
    background-color: #964599;
}

input:focus + .myslider {
    box-shadow: 0 0 1px #964599;
}

input:checked + .myslider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.myslider.myround {
    border-radius: 34px;
}

.myslider.myround:before {
    border-radius: 50%;
}


 /* arrows on scroll bar  http://jsfiddle.net/Nk3NH/4/  */
::-webkit-scrollbar {
        width: 15px;
        height: 15px;
    }
::-webkit-scrollbar-button {
    background-size: 100%;
    height: 15px;
    width: 15px;
    -webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2);
}

::-webkit-scrollbar-button:end {
    display: block;
}

::-webkit-scrollbar-button:start {
    display: none;
}

::-webkit-scrollbar-button:horizontal:increment {
    background-image: url(../imgs/arrowdown.png);
}

::-webkit-scrollbar-button:horizontal:decrement {
    background-image: url(../imgs/arrowup.png);
}

::-webkit-scrollbar-button:vertical:increment {
    background-image: url(../imgs/arrowdown.png);
}

::-webkit-scrollbar-button:vertical:decrement {
    background-image: url(../imgs/arrowup.png);
}

::-webkit-scrollbar-track {
    background: #f8f8f8;
    -webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
}
::-webkit-scrollbar-thumb {
    background: #aaa;
    -webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #989898;
}
::-webkit-scrollbar-thumb:active {
    background: #808080;
    -webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.3);
}
.mcpTabsRed,
.mcpTabsCyan,
.mcpTabsPurple,
.mcpTabsBlue,
.mcpTabs{
    font-weight: 500;
    text-align: center;
    border-bottom: 5px #005B8C;

    /* color: #005B8C;
   color: #2C3240;*/
    /*color: #000000;*/
    font-size:26px;
    line-height: 32px;
    padding-top: 0px;
    height:40px;
}
/*

.mcpTabsRed,
.mcpTabsCyan,
.mcpTabsPurple,
.mcpTabsBlue,
.mcpTabs uk-active{
    background-color: #ffffff;
}

.mcpTabsRed,
.mcpTabsCyan,
.mcpTabsPurple,
.mcpTabsBlue,
.mcpTabs{
    background-color: #ff0000;
}
*/



.mcpTabsCyan{
    border-bottom: 5px solid #66c2a5;
}

.mcpTabsCare,
.mcpTabsPurple{
    border-bottom: 5px solid #964599;
}

.mcpTabsPlan,
.mcpTabsBlue{
    border-bottom: 5px solid #005B8C;

}

.mcpTabsLearn,
.mcpTabsRed{
    border-bottom: 5px solid #99285F;

}

.careTabColors{
color:#964599;

}
.learnTabColors{
color:#99285F;

}
.planTabColors{
color:#005B8C;

}


.careTabColorsOnly{
    color:#964599;

}
.learnTabColorsOnly{
    color:#99285F;

}
.planTabColorsOnly{
    color:#005B8C;

}


.careTabColorsInactive{
    color: rgba(84, 84, 84, 0.6);
    background-color: lightgray;
}
.learnTabColorsInactive{
    color:rgba(84, 84, 84, 0.6);
    background-color: lightgray;
}
.planTabColorsInactive{
    color:rgba(84, 84, 84, 0.6);
    background-color: lightgray;
}

/* https://a11y.nicolas-hoffmann.net/dialog-tooltip/  */


/* it will work better with this box-sizing, you may adapt it to your needs */
/*html { box-sizing: border-box; }
*, *:before, *:after {
  box-sizing: inherit;
}*/

.simple-tooltip-container {
    position: relative;
}

.simple-tooltip-tooltip {
    position: absolute;
    z-index: 666;
    top: 50%;
    left: 50%;
    width: 15em;

    background: #fff;
    background: rgba (255, 255, 255, .9);
    border: 1px solid #882525;
    border-radius: .5em;
    padding: 1em;
    text-align: left;
}
.simple-tooltip-tooltip__title {
    margin: 0;
    line-height: 1;
}
.simple-tooltip-tooltip p {
    font-size: 1em;
}
.simple-tooltip-tooltip__close {
    float: right;
    /** fix typo inputs **/
    font-family: inherit;
    font-size: 1em;
    background: #882525;
    color: #fff;
    border-radius: 1em;
}

/* it can be easily adapted in media-queries for tablets/mobile */

/* for this example: tablets */
@media (max-width: 55.625em) {

    .simple-tooltip-container {
        position: static;

    }
    .simple-tooltip-tooltip {
        position: static;
        width: auto;
        margin-top: 1em;
    }

}

/* another example (“it’s customisable” button) */
/* tooltip modal */
.left-tooltip-tooltip {
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 667;
    position: fixed;
    width: 25em;
    max-width: 100%;
    background: #f00;
    padding: .5em;
    font-size: 1em;
    border: 0;
    animation: fromleft .3s linear;
    background-image:
            -webkit-linear-gradient(
                    top,
                    #882525 3em,
                    #f7f7f7 3em
            );
    background-image:
            linear-gradient(
                    to bottom,
                    #882525 3em,
                    #f7f7f7 3em
            );

}
.left-tooltip-tooltip__close {
    float: right;
    background: transparent;
    color: #fff;
}
.left-tooltip-tooltip__title {
    font-size: 1.2em;
    margin: 0;
    color: #fff;
    font-weight: normal;
}

@-webkit-keyframes fromleft {
    0%   { width: 0; }
    100% { width: 25em; }
}
@keyframes fromleft {
    0%   { width: 0; }
    100% { width: 25em; }
}


#caretimeline line {stroke: gray; stroke-width:1}


.videoWrapper {
    position: relative;
    padding-bottom: 20px;
    padding-top: 25px;

}
.videoWrapper object,
.videoWrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.box_vignette{
    color: #005B8C;
    background-color: #ffffff;
    border: 2px solid #005B8C;
    padding: 15px;
}




*::-webkit-input-placeholder {
    color: gray;
}
*:-moz-placeholder {
    /* FF 4-18 */
    color: gray;
    opacity: 1;
}
*::-moz-placeholder {
    /* FF 19+ */
    color: gray;
    opacity: 1;
}
*:-ms-input-placeholder {
    /* IE 10+ */
    color: gray;
    opacity: 1;
}
*::-ms-input-placeholder {
    /* Microsoft Edge */
    color: gray;
    opacity: 1;
}

:placeholder-shown { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: gray;
    opacity: 1; /* Firefox */
}
