:root {
  --black: #000000;
  --charcoal: #424141;
  --darkGrey: #928F8F;
  --grey: #B8B5B5;
  --lightGrey: #F1F0F0;
  --white: #ffffff;
  --orange: #EC6F45;
  --lightOrange: #FAD2A8;
  --yellow: #FFD600;
  --goldYellow: #EBA63F;
  --blue: #0040FF;
  --lightBlue: lightblue;
  --green: #438945;
  --lightGreen: #69B26B;
  --red: #E40C2B;
}

* {
  padding: 0;
  border: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
}

body {
  font-size: 1vw;
  font-family: sans-serif;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--lightGrey);
  overscroll-behavior: contain;
}

ul {
  list-style: none
}

h1 {
  color: var(--charcoal);
}

h3 {
  color: var(--charcoal);
  flex-grow: 1;
}

span {
  margin-left: 0.3vw;
}

img {
  width: 1vw;
}

input {
  display: block;
  border: var(--lightGrey) solid 2px;
  border-radius: 0.2vw;
  padding: 12px 1vw 12px 1vw;
  font-size: 110%;
  outline: none;
  margin-bottom: 12px;
  width: calc(100% - 2.4vw);
}

input:focus::placeholder {
  color: transparent;
}

input::placeholder {
  color: var(--lightGrey);
  font-weight: normal;

  transition: color 0.3s ease;
}

input:valid {
  color: var(--charcoal);
  font-weight: bold;
}

textarea {
  display: block;
  width: calc(100% - 2.4vw);
  border: var(--lightGrey) solid 2px;
  border-radius: 0.2vw;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 12px 1vw 12px 1vw;
  font-size: 110%;
  outline: none;
  margin-bottom: 12px;
  font-family: sans-serif;
  min-height: 3vw;
}

textarea:focus::placeholder {
  color: transparent;
}

textarea::placeholder {
  color: var(--lightGrey);
  font-weight: normal;
  transition: color 0.3s ease;
}

textarea:valid {
  color: var(--charcoal);
  font-weight: bold;
}

select {
  border: var(--lightGrey) solid 2px;
  border-radius: 0.2vw;
  padding: 12px 12px 12px 12px;
  font-size: 110%;
  outline: none;
  width: 100%;
  margin-bottom: 0.8vw;
  font-weight: bold;
}

/*GLOBAL FORM CLASSES*/
.gMask{
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 4;
    display: none;
    position: absolute;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    text-align: center;
}

.gFrm {
  display: none;
  overflow: auto;
}

.gFloatView {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: none;
  position: absolute;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  text-align: center;
}


.gFrmCon {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: absolute;
  background-color: var(--white);
  z-index: 3;
  right: 25vw;
  left: 25vw;
  top: 5vw;
  border-radius: 7px;
  overflow: hidden;
}

.gFrmCon .gFrmHeader {
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  background-color: var(--lightGrey);
  padding: 0 1vw;
  height: 55px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--grey);
  align-items: center
}

.gFrmBody {
  display: flex;
  position: relative;
  flex-flow: column nowrap;
  width: 90%;
  padding: 20px 0;
  box-sizing: border-box;
  overflow: auto;
}

.gFrmCon .gFrmFooter {
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  background-color: var(--lightGrey);
  padding: 0 1vw;
  height: 55px;
  border-top: 1px solid var(--grey);
  align-items: center;
  box-sizing: border-box;
}

.gFrmCon .gFrmFooter span {
  cursor: pointer;
}

.gFrmCon .gFrmFooter span:hover {
  color: var(--orange);
}

.gFrmLabel{
  display: block;
  width: 100%;
  font-size: 90%;
  color: var(--darkGrey);
  padding-bottom: 0.1vw;
}
.gFrmLabel .color{
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  padding: 0;
}

.gDisplayCheck{
  border-radius: 4px;
  background-color: var(--white);
  margin: 0 0 0 10px;
}
.gCheckbox {
  width: auto;
  margin: 5px 0.5vw;
}
/*GLOBAL BUTTON CLASSES*/
.gBtnOrange {
  display: flex;
  align-items: center;
  background-color: var(--orange);
  padding: 0.3vw 0.7vw 0.3vw 0.7vw;
  color: var(--white);
  border-radius: 0.2vw;
  font-size: 90%;
  cursor: pointer;
  border: solid 1px var(--orange)
}

.gBtnWhite {
  display: flex;
  align-items: center;
  background-color: var(--white);
  padding: 0.3vw 0.7vw 0.3vw 0.7vw;
  color: var(--charcoal);
  border-radius: 0.2vw;
  border: 1px solid var(--grey);
  font-size: 90%;
  cursor: pointer;
}
.gBtnWhite:hover {
  background-color: var(--orange);
  color: var(--white);
  border: solid 1px var(--orange);
}
.gBtnWhite.selected{
    background-color: var(--orange);
    color: var(--white);
    border: solid 1px var(--orange);
}

.gBtnInfrm {
  color: var(--orange);
  display: flex;
  align-items: center;
  background-color: var(--lightOrange);
  padding: 0.3vw 0.7vw 0.3vw 0.7vw;
  border-radius: 0.2vw;
  border: solid 1px var(--orange);
  font-size: 90%;
  cursor: pointer;
}

.gColor{
  border-radius: 3vw;
  height: 0.8vw;
  width: 0.8vw;
  background-color: red;
  margin-right: 0.5vw;
}

.gSelectFilterCon {
  background-color: var(--white);
  display: flex;
  flex-flow: column;
  border-radius: 0.2vw;
  box-shadow: 0 0 5px var(--darkGrey);
  padding: 0.8vw 1.5vw;
}
.gSelectFilterCon .gSelectFilterItem {
  display: flex;
  flex-flow: row nowrap;
  margin: 0.3vw 0;
  color: var(--charcoal);
  cursor: pointer;
}
.gSelectFilterCon .gSelectFilterItem input {
    width: auto;
    margin-right: 5px;
}

.gItemCon {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1vw 1.5vw;
  text-decoration: none;
  align-items: center;
  background-color: var(--white);
  margin-top: 0.8vw;
  border-radius: 0.2vw;
  box-shadow: 0 0 5px var(--darkGrey);
  cursor: pointer;
}

.gItemTitle {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0.2vw;
}
.gItemTitle h3{
  margin-bottom: 0.3vw;
}
.gItemDetail {
  display: flex;
  flex-flow: nowrap;
  align-items: center;
  width: 100%;
}

.gChildInd {
  display: flex;
  align-items: center;
  padding: 0.1vw 0.3vw 0.1vw 0.3vw;
  color: var(--charcoal);
  border-radius: 0.2vw;
  font-size: 80%;
  margin-right: 0.5vw;
  max-width: 150px;
  min-width: 50px;
}

.gDueDate {
  text-align: right;
  font-size: 80%;
  flex-grow: 1;
  margin: 0.2vw;
  color: var(--charcoal);
}

.gProgressBar {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 0.2vw;
  border: 1px solid var(--lightGrey);
}

.gProgressBar .gProgress {
  background-color: var(--green);
  text-align: center;
  padding: 0.2vw 0 0.2vw 0;
  color: var(--white);
  font-size: 60%;
  transition: width 1s;
}

.gTaskCon {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  background-color: var(--white);
  padding: 0.5vw 1vw 0.5vw 1vw;
  transition: height 1s, padding 1s;
  overflow-y: hidden;
}
.gTaskCon .jsTask{
  font-size: 70%;
}
.gTaskCon:hover {
}

.gTaskCon h4 {
  margin-left: 0.8vw;
  flex-grow: 1;
}

.gTaskCon .taskLinks {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

.gTaskCon .jsDateDue {
  font-family: sans-serif;
  font-size: 70%;
  margin: 0 0 0 1vw;
  width: 15em;
}
.gTaskCon .jsDateDue::-webkit-calendar-picker-indicator{
    margin-left: 0px;
}
.gTaskCon .jsFlag{
  width: 20px;
  height: 20px;
}
.gViewCon {
  margin: 3vw 5vw 3vw 5vw;
}

.gViewMainHeader {
  border-bottom: 1px solid var(--grey);
}

.gContentCon {
  display: flex;
}

.gTextEditToolsCon{

}
.gTextEditContent{
    background-color: var(--white);
}

.buzzsproutCon {
  width: 100%;
  margin-top: 3vw;
  border-radius: 2px;
}

.jsViewMoveItem{
  position: absolute;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 0.5vw;
  border: 2px solid var(--lightGrey);
  border-radius: 5px;
  margin-bottom: 0.5vw;
  cursor: pointer;
  z-index: 3;
  transition: top 1s;
}


/*AFRINEUR VIEWS*/
.gFrm .frmViewHeadCon {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  background-color: var(--lightGrey);
  padding: 1vw 1vw 0 1vw;
  border-bottom: 1px solid var(--grey);
}

.gFrm .frmViewHeadCon .frmViewHeader {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  padding: 1vw 1vw 1vw 1vw;
  overflow: hidden;
}
.gFrm .frmViewHeadCon .frmViewDetails {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  padding: 10px 1vw 10px 1vw;
  overflow: hidden;
}
.gFrm .frmViewHeadCon .frmViewDetailsL li{
  margin-bottom: 10px;
}
.gFrm .frmViewHeadCon .frmViewDetailsL li h3{
  font-size: 95%;
}
.gFrm .frmViewHeadCon .frmViewDetailsL li span{
  font-size: 85%;
  color: var(--orange);
}
.gFrm .frmViewHeadCon .frmViewDetailInd{
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 0.2vw;
  text-align: center;
  padding: 0.3vw 0.7vw 0.3vw 0.7vw;
  margin-bottom: 5px;
}

.gFrm .frmViewHeadCon .frmViewNav {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 1vw 1vw 0.1vw 1vw;
  overflow: hidden;
}
.gFrm .frmViewHeadCon .frmViewNav ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.gFrm .frmViewHeadCon .frmViewNav ul li {
  cursor: pointer;
}
.gFrm .frmViewHeadCon .frmViewNav ul li:hover {
  color: var(--orange);
}
.gFrm .frmViewHeadCon .frmViewNav ul li.selected {
  color: var(--orange);
}
.gFrm .frmViewHeadCon .frmViewNavOpt li {
  margin-right: 1vw;
}
.gFrm .frmViewItemCon {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 0.5vw;
  border: 2px solid var(--lightGrey);
  border-radius: 5px;
  margin-bottom: 0.5vw;
  cursor: pointer;
}

.gFrm .frmViewItemCon:hover{
  background-color: var(--lightGrey);
}

.gFrm .frmViewItemCon img {
  padding: 0 0.1vw 0 0.3vw;
}

.gFrm .frmViewItemCon .frmViewItemName {
  margin-right: 0.2vw;
  flex-grow: 1;
}

.gFrm .frmViewItemCon .gProgressBar {
  width: 6vw;
}

.gFrm .frmViewItemCon .frmViewDate {
  font-size: 80%;

}

.gFrmViews .gFrmViewNavAct {

}
.gDropBtn{
  min-width: 8vw;
  text-align: right;
  background-color: var(--lightGrey);
}
.gDropdownContent {
  display: none;
  position: absolute;
  background-color: var(--lightGrey);
  width: 8vw;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.gDropdownContent a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
}
.gDropdownContent a:hover {
  background-color: var(--darkGrey);
  color: var(--white);
}
.gFrmViewNavAct:hover .gDropdownContent {display: block;}
.gFrmViewNavAct:hover .gDropBtn {
  color: var(--orange);
}

.gTaskCon .gTaskConAct {

}
.gTaskActBtn{
  min-width: 8vw;
  padding: 2px 0;
  text-align: center;
  background-color: transparent;
  font-size: 70%;
}
.gTaskDropdownContent {
  font-size: 70%;
  display: none;
  position: absolute;
  background-color: var(--lightGrey);
  width: 8vw;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.gTaskDropdownContent a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
}
.gTaskDropdownContent a:hover {
  background-color: var(--darkGrey);
  color: var(--white);
}
.gTaskConAct:hover .gTaskDropdownContent {display: block;}
.gTaskConAct:hover .gTaskActBtn {
  color: var(--orange);
  background-color: var(--lightOrange);
}

.gJournalMonth{
  width: 100%;
  border-radius: 5px;
  padding: 12px;
  text-align: left;
  background-color: var(--white);
  color: var(--charcoal);
  min-height: 150px;
}

.gViewBody{
  display: flex;
  position: relative;
  flex-flow: column nowrap;
  width: 90%;
  padding: 20px 0;
  box-sizing: border-box;
  overflow: scroll;
}
.gFrm .gViewBody .frmViewAddItem {
  cursor: pointer;
  padding-left: 0.2vw;
  font-size: 80%;
}

.gFrm .gViewBody .frmViewAddItem:hover {
  color: var(--orange);
}

.gFrm .gViewVideoCon{
  position: relative;
}
.gFrm .gViewVideoCon video{
    margin: 15px 15px 70px 15px;
    width: calc(100% - 30px);
}

.jsMoveItem {
    transition: top 1s;
}
.jsMoveItem input{
    border: none;
}


/*GLOBAL TOOLS LIKE INFO BOX , TOOLTIP, DATA LIST*/
#toolTip {
  padding: 5px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--white);
  display: none;
  z-index: 10;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

#infoBox {
  width: 250px;
  color: var(--charcoal);
  background-color: var(--white);
  border-radius: 15px;
  z-index: 5;
  display: none;
  position: absolute;
  margin: 0;
  padding: 15px;
  text-align: center;
  font-family: sans-serif;
  border: 2px solid var(--orange);
}
#infoBox header {
  margin-top: 15px;
  font-family: montserrat;
  font-weight: bold;
  font-size: 24px;
}
#infoBox img {
  margin-bottom: 3px;
  height: 50px;
  width: 50px;
}
#infoBox p {
  font-family: montserrat;
  font-weight: bold;
  font-size: 24px;
}
#infoBox .btnBox {
  margin-top: 10px;
  width: 100%;
  clear: both;
}
#infoBox .btnBox div {
  margin-bottom: 10px;
  color: var(--white);
  height: 40px;
  line-height: 37px;
  border-radius: 5px;
  font-size: 24px;
  cursor: pointer;
}

#dataListCon {
  position: absolute;
  display: none;
  background-color: var(--white);
  box-shadow: 0 0 3px var(--darkGrey);
  z-index: 4;
  max-height: 300px;
}
#dataListCon .googleLogo{
    width: 144px;
    height: 18px;
    float: right;
}
#dataList {
  width: 100%;
  height: 100%;
  text-align: left;
  overflow-y: auto;
}
#dataList tr {
  position: relative;
}
#dataList td {
  text-align: left;
  height: 30px;
  cursor: pointer;
  width: 100%;
  padding-left: 5px;
  vertical-align: middle;
  font-style: 12px;
}
#dataList td:hover {
    background-color: var(--lightGrey);
    color: var(--black);
}
#dataList img {
  height: 20px;
  width: 20px;
  display: inline-block;
}


/*TEXT EDITOR*/
.txtEditBtnBox{
    display: flex;
    flex-flow: row wrap;
    width: 100%;
}
.txtEditBtnBox .txtEditGroupBox{
    display: flex;
    flex-flow: row nowrap;
    margin-left: 10px;
}
.txtEditBtnBox .js_foreColor{
    position: absolute;
    top: 100%;
    display: none;
}
.txtEditBtnBox .js_urlLink{
    position: absolute;
    top: 100%;
    width: 200px;
    display: none;
    background-color: var(--lightGrey);
    border: 1px solid black;
}
.txtEditBtnBox .txtEditBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--charcoal);
    color: var(--white);
    font-size: 20px;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 5px;
    cursor: pointer;
}


/*WEB VIEW*/
#webView{
  height: 100%;
  width: 100%;
}

#webView .webViewCon {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  height: 100%;
  width: 100%;
}

#viewAsk {
    position: absolute;
    display: none;
    height: 100%;
    width: 100%;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.5);
}
/*MAIN NAVIGATION BAR*/
#mainNav{
  background-color: var(--charcoal);
  display: flex;
  flex-flow: row nowrap;
  height: 60px;
  box-sizing: border-box;
  box-shadow: 0 0 10px grey;
  position: relative;
  justify-content: space-between;
  align-items: center;
}


#mainNav img {
  width: 2.7vw;
  padding-left: 20px;
}
#mainNav ul {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  list-style: none;
  margin-right: 2vw;
  height: 60px;
}
#mainNav li {
  display: flex;
  align-items: stretch;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  color: var(--white);
  height: 60px;
  padding: 0 10px;
  align-items: center;
}
#mainNav li.selected{
    background-color: var(--black);
}
#mainNav li:hover {
  background-color: var(--black);
}

#mainNavBtnBox .userSettBtn{
    display: flex;
    flex-flow: row;
    align-items: center;
    box-sizing: border-box;
    background-color: var(--orange);
    padding: 0.3vw 0.7vw 0.3vw 0.7vw;
    position: relative;
    color: var(--white);
    border-radius: 0.2vw;
    font-size: 90%;
    cursor: pointer;
    border: solid 1px var(--orange);
    margin-right: 3px;
}
#mainNavBtnBox .userSettBtn:hover .userSetCon{
    max-height: 200px;
}
#mainNavBtnBox .userSettBtn .userSetCon{
    max-height: 0px;
    width: 100%;
    top: 100%;
    right: 0;
    transition: max-height 0.5s;
    position: absolute;
    background-color: var(--orange);
    z-index: 2;
    color: var(--white);
    overflow:hidden;
}
#mainNavBtnBox .userSettBtn img{
  width: 1.2vw;
  height: 1.2vw;
  top: 100%;
}
#mainNavBtnBox .userSetCon div{
    padding: 0.5vw 1vw 0.5vw 1vw;
    text-align: left;
}
#mainNavBtnBox .userSetCon div:hover{
    background-color: var(--lightOrange);
    font-weight: bold;
}

/*DISPLAY GOALS*/
#disGoals{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#disGoals .disGoals {
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  width: 100%;
}
#disGoals .gFrm{
    width: 100%;
}

#disGoals .disGoalsCon{
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#disGoals .sideNavBar {
  position: relative;
  height: 100%;
  background-color: var(--grey);
  padding-top: 2vh;
  border-right: 2px solid var(--darkGrey);
}
#disGoals .sideNavCon {
  display: flex;
  flex-flow: column nowrap;
  margin-top: 5vw;
}
#disGoals .sideNavCon ul {
  list-style: none;
}
#disGoals .sideNavCon li {
  display: flex;
  align-items: center;
  padding: 0.5vw 1vw 0.5vw 1vw;
  cursor: pointer;
  color: var(--white);
  height: 100%;
}
#disGoals .sideNavCon li:hover {
  background-color: var(--darkGrey);
}
#disGoals .sideNavCon li.selected{
  background-color: var(--darkGrey);
}
#disGoals .sideNavCon img {
  width: 2vw;
}

#disGoals .middleCon {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  margin: 0 1.5vw 1.5vw 1.5vw;
  height: 100%;
}

#disGoals .middleNavBar {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  margin: 1.5vw 0 1.5vw 0;
}
#disGoals .middleNavBar .gBtnOrange {
  margin-left: 0.8vw;
}
#disGoals .middleNavBar .gBtnInfrm {
  margin-left: 0.5vw;
}

#disGoals .middleNavCon {
  border-bottom: 1px solid var(--grey);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
#disGoals .middleNavCon ul {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  list-style: none;
}
#disGoals .middleNavCon li {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  height: 100%;
  align-items: center;
  margin-left: 0.5vw;
}
#disGoals .middleNavCon li:hover {
  color: var(--white);
  background-color: var(--orange);
  border: none;
}

#disGoals .rightCon {
  background-color: var(--grey);
  border-left: 2px solid var(--darkGrey);
  text-align: center;
  width: 20%;
  height: 100%;
  padding: 2vh 10px 0 10px;

}
#disGoals .rightCon h1 {
  color: var(--white);
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  margin: 1.5vw 0 1.5vw 0;
  border-bottom: 1px solid var(--charcoal);
}

#piechart {
  display: flex;
  justify-content: center;
}

/*VIDEO VIEW*/
#disVideo .disVideoCon {
  margin: 3vw 5vw 3vw 5vw;
}
#disVideo .videoContentCon {
  display: flex;
}
#disVideo .disVideoMainHeader {
  border-bottom: 1px solid var(--grey);
}
#disVideo .videoContentLeft {
  display: flex;
  flex-flow: column nowrap;
  width: 70%;
  margin: 2vw 2vw 2vw 0;
  padding: 2vw;
  border-radius: 2px;
  box-shadow: 0 0 5px var(--darkGrey);
  background-color: var(--white);
}
#disVideo .iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
#disVideo .iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#disVideo h2 {
  color: var(--charcoal);
  border-bottom: 1px solid var(--lightGrey);
  margin-top: 2vw;
}
#disVideo .videoContentLeft p {
  font-size: 80%;
  color: (--grey);
  margin-top: 1vw;
}
#disVideo .videoContentLeft h4 {
  color: var(--charcoal);
  margin-top: 1vw;
}
#disVideo .linksCon {
  display: flex;
}
#disVideo .linksCon .gBtnInfrm {
  margin-right: 0.5vw;
  margin-top: 0.2vw;
}
#disVideo .linksCon .gBtnInfrm:hover {
  background-color: var(--orange);
  color: var(--white);
}
#disVideo .videoContentRigth {
  width: 30%;
}
#disVideo .gLibraryItemCon {
  display: flex;
  padding: 1vw;
  background-color: var(--white);
  border-radius: 2px;
  box-shadow: 0 0 5px var(--darkGrey);
  margin-top: 1vw;
  cursor: pointer;
}
#disVideo .gLibraryItemCon:hover {
  background-color: var(--lightGrey);
}
#disVideo .imgCon {
  width: 45%;
}
#disVideo .imgCon img {
  width: 100%;
}
#disVideo .gLibaryDetail {
  width: 55%;
  margin-left: 0.5vw;
}
#disVideo .gLibaryDetail p {
  font-size: 80%;
  color: var(--darkGrey);
  margin-top: 0.5vw;
}

/*PODCAST VIEW*/
#disPodcast .gContentCon{
  flex-flow: column nowrap;
  width: 100%;
}
/*JOURNAL VIEW*/
#disJournal .gContentCon{
  flex-flow: row nowrap;
  width: 100%;
}
#disJournal .gViewMainHeader{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 35px;
}
#disJournal .JournalNavCon{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 100%;
}
#disJournal .JournalNavCon select{
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
  width: 5vw;
  margin-bottom: 0;
  border-radius: 5px;
  margin: 2px 1vw;
  color: var(--charcoal);
  padding: 0
}
#disJournal .JournalNavCon ul{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 100%;
}
#disJournal .JournalNavCon li{
  height: 100%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  margin-right: 0.5vw;
  padding: 0 1.5vw;
  background-color: var(--grey);
}
#disJournal .JournalNavCon li.selected{
  background-color: var(--orange);
}
#disJournal .JournalNavCon li:hover{
  background-color: var(--darkGrey);
}

#disJournal .contentL{
  width: 45%;
}
#disJournal .journalEntry{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
  margin: 20px 0;
}
#disJournal .journalEntry input{
  display: flex;
  box-sizing: border-box;
  border-radius: 5px 0 0 5px;
  align-items: center;
  padding: 0 8px;
  width: 90%;
  height: 40px;
  margin-bottom: 0;
  outline: none;
  border: none;
}
#disJournal .journalEntBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  border-radius: 0 5px 5px 0;
  width: 10%;
  color: var(--white);
  height: 40px;
  cursor: pointer;
}
#disJournal table{
  width: 100%;
}
#disJournal tr{
}
#disJournal td{
  padding: 3px 0;
  vertical-align: top;
}
#disJournal td:last-of-type{
  text-align: right;
  font-size: 60%;
  color: var(--orange);
  width: 15%;
}
#disJournal td:first-of-type{
  padding: 5px 0.5vw 3px 0;
}

#disJournal .contentM{
  box-sizing: border-box;
  padding: 0 3vw;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  width: 38%;

}
#disJournal .contentM h3{
  margin: 20px 0 5px 0;
  width: 100%;
  text-align: left;
  flex-grow: 0;
}

#disJournal .contentR{
  width: 17%;
}
#disJournal .contentR h3{
  margin-top: 20px;
}
#disJournal .moodCon{
  width: 100%;
  display: flex;
  position: relative;
  flex-flow: column nowrap;
  box-sizing: border-box;
  padding: 8px 0;
}
#disJournal .moodTypeHead{
  width: 100%;
  font-size: 100%;
  color: var(--darkGrey);
  text-align: left;
  box-sizing: border-box;
  margin-bottom: 8px;
}
#disJournal .moodOptCon{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
#disJournal .moodBad{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  width: 30%;
  border-radius: 5px;
  border: 1px solid var(--red);
  color: var(--white);
  font-size: 80%;
}
#disJournal .moodOkay{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  width: 30%;
  border-radius: 5px;
  border: 1px solid var(--yellow);
  color: var(--white);
  font-size: 80%;
}
#disJournal .moodGood{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  width: 30%;
  border-radius: 5px;
  border: 1px solid var(--green);
  color: var(--white);
  font-size: 80%;
}

#disJournal .habitCon{
  width: 100%;
  display: flex;
  position: relative;
  flex-flow: row nowrap;
  box-sizing: border-box;
  align-items: center;
  padding: 8px 0;
}
#disJournal .habitType{
  width: 100%;
  font-size: 100%;
  color: var(--darkGrey);
  flex-grow: 1;
  text-align: left;
  box-sizing: border-box;
  margin-bottom: 8px;
}
#disJournal .moodOptCon{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
#disJournal .habitN{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  width: 30%;
  border-radius: 5px;
  border: 1px solid var(--red);
  color: var(--white);
  font-size: 80%;
}
#disJournal .habitY{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  width: 30%;
  border-radius: 5px;
  border: 1px solid var(--green);
  color: var(--white);
  font-size: 80%;
  margin-left: 1vw;
}

/*TRAINING VIEW*/
#disTrain .disVideoCon {
  margin: 3vw 5vw 3vw 5vw;
}
#disTrain .videoContentCon {
  display: flex;
}
#disTrain .disVideoMainHeader {
  border-bottom: 1px solid var(--grey);
}
#disTrain .videoContentLeft {
  display: flex;
  flex-flow: column nowrap;
  width: 70%;
  margin: 2vw 2vw 2vw 0;
  padding: 2vw;
  border-radius: 2px;
  box-shadow: 0 0 5px var(--darkGrey);
  background-color: var(--white);
}
#disTrain .iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
#disTrain .iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#disTrain h2 {
  color: var(--charcoal);
  border-bottom: 1px solid var(--lightGrey);
  margin-top: 2vw;
}
#disTrain .videoContentLeft p {
  font-size: 80%;
  color: (--grey);
  margin-top: 1vw;
}
#disTrain .videoContentLeft h4 {
  color: var(--charcoal);
  margin-top: 1vw;
}
#disTrain .linksCon {
  display: flex;
}
#disTrain .linksCon .gBtnInfrm {
  margin-right: 0.5vw;
  margin-top: 0.2vw;
}
#disTrain .linksCon .gBtnInfrm:hover {
  background-color: var(--orange);
  color: var(--white);
}
#disTrain .videoContentRigth {
  width: 30%;
}
#disTrain .gLibraryItemCon {
  display: flex;
  padding: 1vw;
  background-color: var(--white);
  border-radius: 2px;
  box-shadow: 0 0 5px var(--darkGrey);
  margin-top: 1vw;
  cursor: pointer;
}
#disTrain .gLibraryItemCon:hover {
  background-color: var(--lightGrey);
}
#disTrain .imgCon {
  width: 45%;
}
#disTrain .imgCon img {
  width: 100%;
}
#disTrain .gLibaryDetail {
  width: 55%;
  margin-left: 0.5vw;
}
#disTrain .gLibaryDetail p {
  font-size: 80%;
  color: var(--darkGrey);
  margin-top: 0.5vw;
}

/*DIRECTORY DISPLAY*/
#disDirectory .gViewMainHeader{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
#disDirectory .gViewMainHeader input{
  width: 150px;
  border-radius: 10px;
  margin: 0;
  color: var(--grey);
  font-size: 14px;
}

#disDirectory .gContentCon{
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;

}
#disDirectory img{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8vw;
  height: 8vw;
  margin: 5px;
  border-radius: 50%;
}
#disDirectory h3{
  margin-bottom: 5px;
  width: 100%;
}

#disDirectory .disDirCon{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 0 5px grey;
  width: 20%;
  padding: 1vw;
  margin: 1.5vw 0;
  cursor: pointer;
}
#disDirectory .disDirCon:hover{
  box-shadow: 0 0 10px var(--charcoal);
}
#disDirectory .disDirInd{
  font-style: italic;
  width: 100%;
  text-align: right;
  margin-bottom: 10px;
  font-size: 110%;
  color: var(--orange);
}
#disDirectory .disDirInfo{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  color: var(--charcoal);
  margin-bottom: 5px;
}
#disDirectory .disDirAfr{
  background-color: var(--orange);
  padding: 5px 0.1vw;
  color: var(--white);
  text-align: center;
  margin-top: 10px;
  width: 100%;
  border-radius: 5px;
}

/*DIRECTORY DISPLAY*/
#disAfrineurs .gViewMainHeader{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
#disAfrineurs .gViewMainHeader input{
  width: 150px;
  border-radius: 10px;
  margin: 0;
  color: var(--grey);
  font-size: 14px;
}
#disAfrineurs .gContentCon{
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
#disAfrineurs img{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8vw;
  height: 8vw;
  margin: 5px;
  border-radius: 50%;
  border: 1px solid var(--charcoal);
}
#disAfrineurs h3{
  margin-bottom: 5px;
  width: 100%;
}

#disAfrineurs .disDirCon{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 0 5px grey;
  width: 20%;
  padding: 1vw;
  margin: 1.5vw 0;
  cursor: pointer;
}
#disAfrineurs .disDirCon:hover{
  box-shadow: 0 0 10px var(--charcoal);
}
#disAfrineurs .disDirInd{
  font-style: italic;
  width: 100%;
  text-align: right;
  margin-bottom: 10px;
  font-size: 110%;
  color: var(--orange);
}
#disAfrineurs .disDirInfo{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  color: var(--charcoal);
  margin-bottom: 5px;
}
#disAfrineurs .disDirAfr{
  background-color: var(--orange);
  padding: 5px 0.1vw;
  color: var(--white);
  text-align: center;
  margin-top: 10px;
  width: 100%;
  border-radius: 5px;
}

/*FORM LOGIN*/

#fullView{
  width: 100%;
  height: 100%;
}
#fullView .frmCon {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  padding: 10px;
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#fullView .header {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}
#fullView img{
  width: 120px;
}
#fullView label{
  font-size: 16px;
}
#fullView p {
  display: flex;
  flex-flow: column;
  text-align: center;
  padding: 15px 0 20px 0;
  color: var(--orange);
  font-size: 14px;
}
#fullView .btnBox {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
#fullView .gBtnOrange {
  padding: 7px 14px;
  font-size: 14px;
  border: solid 1px var(--orange);
}
#fullView .btnLoginAlt {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-top: 10px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  color: var(--grey);
}
#fullView .btnLoginAlt:hover {
  color: var(--orange);
}

/*FORM BUSINESS*/
#frmBusiness h3{
  border-bottom: 1px solid var(--grey);
  margin: 20px 0;
  color: var(--charcoal);
}
#frmBusiness input:disabled{
    background-color: var(--grey);
}

#frmBusiness .frmProfileCon{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin: 3vw 5vw 3vw 5vw;
}
#frmBusiness .frmProfileMHead{
  border-bottom: 1px solid var(--grey);
  position: relative;
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
}

#frmBusiness .frmProfileBody{
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  width: 900px;
}
#frmBusiness .frmProfileBodyL{
  display: flex;
  flex-flow: column;
  position: relative;
  padding: 0 25px;
  margin-top: 25px;
  width: 350px;
  align-items: center;
}
#frmBusiness .photoFile{
    display: none;
}

#frmBusiness .photoCon{
    position: relative;
}
#frmBusiness .photoCon .photo{
    width: auto;
    max-width: 300px;
    max-height: 300px;
    user-select: none;
    user-drag: none;
    margin-bottom: 10px;
}
#frmBusiness .photoCon .cropBox{
    position: absolute;
    display: none;
    z-index: 2;
    background-color: transparent;
    border: 2px solid white;
    box-shadow: 2px 2px 5px black, -2px -2px 5px black;
    cursor: grab;
    resize: both;
    overflow: hidden;
}
#frmBusiness .cropBox .flexBox{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90%;
}
#frmBusiness .photoCon .cropBox .cropMove{
    user-select: none;
    width: 50%;
    height: 50%;
    margin-top: 10%;
    background-color: rgba(255,255,255,0.3);
    position: relative;

}

#frmBusiness .frmProfileBodyR{
  display: flex;
  flex-flow: column;
  position: relative;
  padding: 0 25px;
  margin-top: 25px;
  width: 100%;
  border-left: 2px solid var(--grey);
}
#frmBusiness .nameBox{
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  justify-content: space-between;
  width: 100%;
}
#frmBusiness .nameBox label{
  width: 49%;
}
#frmBusiness label{
  font-size: 14px;
}

#frmBusiness .nameBox input{
  width: 88.5%;
  font-size: 18px;
}
#frmBusiness textarea{
  width: calc(100% - 28px);
}

#frmBusiness .contBox{
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  justify-content: space-between;
  width: 100%;
}
#frmBusiness .contBox label{
  width: 49%;
}
#frmBusiness label{
  font-size: 14px;
}
#frmBusiness .contBox input{
  width: 88.5%;
  font-size: 18px;s
}

#frmBusiness .addressBox{
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  justify-content: space-between;
  width: 100%;
}
#frmBusiness .addressBox label{
  width: 100%;
}
#frmBusiness .addressBox .addressStreet{
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
}
#frmBusiness .addressBox .addressCity{
  box-sizing: border-box;
  width: 50%;
  font-size: 18px;
}
#frmBusiness .addressBox .addressCode{
  box-sizing: border-box;
  width: 30%;
  font-size: 18px;
}

#frmBusiness .checkLabel{
  display: flex;
  flex-flow: row nowrap;
  font-size: 80%;
  align-items: center;
  justify-content: flex-end;
}
#frmBusiness .btnBox{
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
#frmBusiness .btnBox .gBtnOrange{
  margin-left: 10px;
}

/*FORM PROFILE*/
#frmProfile h3{
  border-bottom: 1px solid var(--grey);
  margin: 20px 0;
  color: var(--charcoal);
}
#frmProfile input:disabled{
    background-color: var(--grey);
}
#frmProfile .frmProfileCon{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin: 3vw 5vw 3vw 5vw;
}
#frmProfile .frmProfileMHead{
  border-bottom: 1px solid var(--grey);
  position: relative;
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
}

#frmProfile .frmProfileBody{
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  width: 900px;
}
#frmProfile .frmProfileBodyL{
  display: flex;
  flex-flow: column;
  position: relative;
  padding: 0 25px;
  margin-top: 25px;
  width: 350px;
  align-items: center;
}

#frmProfile .photoFile{
    display: none;
}

#frmProfile .photoCon{
    position: relative;
}
#frmProfile .photoCon .photo{
    width: auto;
    max-width: 300px;
    max-height: 300px;
    user-select: none;
    user-drag: none;
    margin-bottom: 10px;
}
#frmProfile .photoCon .cropBox{
    position: absolute;
    display: none;
    z-index: 2;
    background-color: transparent;
    border: 2px solid white;
    box-shadow: 2px 2px 5px black, -2px -2px 5px black;
    cursor: grab;
    resize: both;
    overflow: hidden;
}
#frmProfile .cropBox .flexBox{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90%;
}
#frmProfile .photoCon .cropBox .cropMove{
    user-select: none;
    width: 50%;
    height: 50%;
    margin-top: 10%;
    background-color: rgba(255,255,255,0.3);
    position: relative;

}

#frmProfile .frmProfileBodyR{
  display: flex;
  flex-flow: column;
  position: relative;
  padding: 0 25px;
  margin-top: 25px;
  width: 100%;
  border-left: 2px solid var(--grey);
}
#frmProfile .nameBox{
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  justify-content: space-between;
  width: 100%;
}
#frmProfile .nameBox label{
  width: 49%;
}
#frmProfile label{
  font-size: 14px;
}
#frmProfile .nameBox input{
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
}
#frmProfile textarea{
  box-sizing: border-box;
  width: 100%;
}

#frmProfile .contBox{
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  justify-content: space-between;
  width: 100%;
}
#frmProfile .contBox label{
  width: 49%;
}
#frmProfile label{
  font-size: 14px;
}
#frmProfile .contBox input{
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
}

#frmProfile .addressBox{
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  justify-content: space-between;
  width: 100%;
}
#frmProfile .addressBox label{
  width: 100%;
}
#frmProfile .addressBox .addressStreet{
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
}
#frmProfile .addressBox .addressCity{
  box-sizing: border-box;
  width: 50%;
  font-size: 18px;
}
#frmProfile .addressBox .addressCode{
  box-sizing: border-box;
  width: 30%;
  font-size: 18px;
}

#frmProfile .checkLabel{
  display: flex;
  flex-flow: row nowrap;
  font-size: 80%;
  align-items: center;
  justify-content: flex-end;
}
#frmProfile .btnBox{
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

#frmPeachAddCard iframe{
    min-height: 280px;
    height: 70vh;
}

/*FORM VIEW ITEMS COMPLETE BAR*/

#view .gFrmCon{
    min-height: 250px;

}


#viewItemsComplete{
  display: flex;
  background-color: var(--orange);
  align-items: center;
  margin: 20px 0 0 0;
  padding: 1vw 1vw;
  width: 86%;
  border-radius: 5px;
}
#viewItemsComplete img{
  width: 1.5vw;
  height: 1.5vw;

}
#viewItemsComplete span{
  flex-grow: 1;
  color: var(--white);
  font-size: 110%;
  padding: 0 2vw 0 0;
}
#viewItemsComplete .viewItemComBtn{
  padding: 0.5vw;
  background-color: var(--green);
  color: var(--white);
  cursor: pointer;
}
#viewItemsComplete .viewItemComBtn:hover{
  box-shadow: 0 0 5px var(--white);
}

/*BUSINESSVIEW*/
#viewBusiness{
  box-sizing: border-box;
  width: 100%;
}
#viewBusiness .viewBusFlexCon{
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
#viewBusiness .viewBusCon{
  width: 930px;
}
#viewBusiness .viewBackBtn{
  cursor: pointer;
  padding: 15px 5px 5px 5px;
  box-sizing: border-box;
  font-size: 14px;
  width: 40px;
  text-align: center;
}
#viewBusiness .viewBackBtn:hover{
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
}
#viewBusiness .viewBusHead{
  display: flex;
  position: relative;
  justify-content: space-between;
  flex-flow: row nowrap;
  align-items: flex-end;
  height: 170px;
}

#viewBusiness .viewBusInfoCon{
  width: 500px;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
}
#viewBusiness .viewBusInfoCon img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
#viewBusiness .viewBusName{
  font-size: 25px;
  font-weight: bold;
  color: var(--charcoal);
  margin-bottom: 3px;
}
#viewBusiness .viewBusInd{
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 10px;
}
#viewBusiness .viewBusReferalBtn{
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  box-sizing: border-box;
  background-color: var(--green);
  padding: 10px;
  border-radius: 7px;
  color: var(--white);
  font-size: 14px;
  margin: 10px 0 10px 10px;
}
#viewBusiness .viewBusReferalBtn:hover{
  background-color: var(--lightGreen);
}

#viewBusiness .viewBusNavCon{
  height: 40px;
  border-bottom: 1px var(--darkGrey) solid;
}
#viewBusiness .viewBusNavCon ul{
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  box-sizing: border-box;
}
#viewBusiness .viewBusNavCon li{
  display: flex;
  align-items: center;
  justify-content: space-around;
  cursor: pointer;
  height: 100%;
  background-color: var(--grey);
  box-sizing: border-box;
  padding: 0 10px;
  color: var(--white);
  border-radius: 7px 7px 0 0;
  margin: 0 10px 0 0;
}
#viewBusiness .viewBusNavCon li.selected{
  background-color: var(--darkGrey);
}
#viewBusiness .viewBusNavCon li:hover{
  background-color: var(--darkGrey);
}

#viewBusTabsCon{
  width: 100%;
}
#viewBusDisc h2{
  margin: 20px 0 10px 0;
  font-size: 20px;
}
#viewBusDisc p{
  font-size: 14px;
}
#viewBusContact h2{
  margin: 20px 0 10px 0;
  font-size: 20px;
}
#viewBusContact label{
  display: flex;
  align-items: flex-start;
  color: var(--orange);
  width: 400px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}
#viewBusContact label span{
  font-weight: bold;
  color: var(--charcoal);
  text-align: right;
}

#viewBusReferals table{
  width: 100%;
  margin-top: 20px;
}
#viewBusReferals td{
  text-align: center;
}
#viewBusReferals td:first-of-type{
  text-align: left;
}
#viewBusReferals th:first-of-type{
  text-align: left;
}
#viewBusReferals td select{
  margin: 0;
}
#viewBusReferals .busRefClickOpen{
  background-color: var(--blue);
  border-radius: 7px;
  color: var(--white);
  padding: 4px 8px;
  cursor: pointer;
}

#viewProTabRefers table{
  width: 100%;
  margin-top: 20px;
}
#viewProTabRefers td{
  text-align: center;
  padding: 5px;
}
#viewProTabRefers th{
  text-align: center;
  padding: 8px;
}
#viewProTabRefers td:first-of-type{
  text-align: left;
}
#viewProTabRefers th:first-of-type{
  text-align: left;
}
#viewProTabRefers td:last-of-type{
  text-align: right;
}
#viewProTabRefers th:last-of-type{
  text-align: right;
}

/*viewProfile*/
#viewProfile{
  box-sizing: border-box;
  width: 100%;
}
#viewProfile .viewProFlexCon{
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
#viewProfile .viewProCon{
  width: 930px;
}
#viewProfile .viewBackBtn{
  cursor: pointer;
  padding: 15px 5px 5px 5px;
  box-sizing: border-box;
  font-size: 14px;
  width: 40px;
  text-align: center;
}
#viewProfile .viewBackBtn:hover{
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
}
#viewProfile .viewProHead{
  display: flex;
  position: relative;
  justify-content: space-between;
  flex-flow: row nowrap;
  align-items: flex-end;
  height: 170px;
}

#viewProfile .followBtn{
    display: flex;
    flex-flow: row;
    align-items: center;
    box-sizing: border-box;
    background-color: var(--orange);
    padding: 5px 10px;
    position: relative;
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    border: solid 1px var(--orange);
    max-height: 27px;
    margin: 5px 0 10px 0;
}

#viewProfile .viewProInfoCon{
  width: 500px;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
}
#viewProfile .viewProInfoCon img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
#viewProfile .viewProName{
  font-size: 25px;
  font-weight: bold;
  color: var(--charcoal);
  margin-bottom: 3px;
}
#viewProfile .viewProInd{
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 10px;
}
#viewProfile .viewProReferalBtn{
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  box-sizing: border-box;
  background-color: var(--green);
  padding: 10px;
  border-radius: 7px;
  color: var(--white);
  font-size: 14px;
  margin: 10px 0 10px 10px;
}
#viewProfile .viewProReferalBtn:hover{
  background-color: var(--lightGreen);
}

#viewProfile .viewProNavCon{
  height: 40px;
  border-bottom: 1px var(--darkGrey) solid;
}
#viewProfile .viewProNavCon ul{
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  box-sizing: border-box;
}
#viewProfile .viewProNavCon li{
  display: flex;
  align-items: center;
  justify-content: space-around;
  cursor: pointer;
  height: 100%;
  background-color: var(--grey);
  box-sizing: border-box;
  padding: 0 10px;
  color: var(--white);
  border-radius: 7px 7px 0 0;
  margin: 0 10px 0 0;
}
#viewProfile .viewProNavCon li.selected{
  background-color: var(--darkGrey);
}
#viewProfile .viewProNavCon li:hover{
  background-color: var(--darkGrey);
}

#viewProTabsCon{
  width: 100%;
}
#viewProTabBio h2{
  margin: 20px 0 10px 0;
  font-size: 20px;
}
#viewProTabBio p{
  font-size: 14px;
}
#viewProTabContact h2{
  margin: 20px 0 10px 0;
  font-size: 20px;
}
#viewProTabContact label{
  display: flex;
  align-items: flex-start;
  color: var(--orange);
  width: 400px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}
#viewProTabContact label span{
  font-weight: bold;
  color: var(--charcoal);
  text-align: right;
}

/*FROM Billing view*/
#viewBilling{
  width: 100%;
}
#viewBilling .billingHead{
  display: flex;
  flex-flow: row nowrap;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  padding: 30px 0 3px 0;
  border-bottom: 1px var(--charcoal) solid;
}
#viewBilling .billingHead h1{

}
#viewBilling .billingMainCon{
  display: flex;
  flex-flow: row nowrap;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
#viewBilling .billingInvCon{
  width: 75%;
}
#viewBilling .billingInvCon table{
  width: 95%;
  border-collapse: collapse;
}
#viewBilling h2{
  color: var(--charcoal);
  padding-top: 25px;
}
#viewBilling .billingInvCon th{
  padding: 3px 0 3px 3px;
  background-color: var(--orange);
  color: var(--white);
  text-align: left

}
#viewBilling .billingInvCon td{
  padding: 5px 5px 5px 8px;
  text-align: left;
}
#viewBilling .billingInvCon td:last-of-type{
  text-align: right;
}
#viewBilling .billingInvCon .invDue{
  border-radius: 5px;
  background-color: var(--red);
  color: var(--white);
  padding: 3px;
  text-align: center;
}
#viewBilling .billingInvCon .invPaid{
  border-radius: 5px;
  background-color: var(--green);
  color: var(--white);
  padding: 3px;
  text-align: center;
}

#viewBilling .billingCardCon{
  width: 25%;
}
#viewBilling .billingCard{
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  background-image: linear-gradient(to right, var(--grey), Var(--white));
  border-radius: 7px;
  border: 1px var(--charcoal) solid;
  margin: 10px 5px 0 5px;
  box-sizing: border-box;
  padding: 8px 10px;
}
#viewBilling .cardHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#viewBilling .cardHead span{
  font-size: 80%;
  cursor: pointer;
}
#viewBilling .cardHead span:hover{
  color: var(--red);
}
#viewBilling .cardNumber{
  margin-top: 20px;
  color: var(--black);
  font-size: 110%;
}
#viewBilling .cardEx{
  display: flex;
  flex-flow: row nowrap;
  margin-top: 8px;
}
#viewBilling .cardEx span{
  margin: 0 3px 0 0;
  color: var(--white);
}
#viewBilling .nameOnCard{
  margin-top: 5px;
}
#viewBilling .setAsDefault{
  width: 100%;
  text-align: right;
  cursor: pointer;
}
#viewBilling .asDefault{
  width: 100%;
  text-align: right;
  cursor: pointer;
  color: var(--green);
  font-weight: bold;
}
#viewBilling .setAsDefault:hover{
  color: var(--green);
}
#viewBilling .addCardBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  border-radius: 7px;
  background-color: var(--orange);
  color: var(--white);
  padding: 5px 8px;
  margin: 10px 0 0 5px;



}
#viewBilling .addCardBtn:hover{
  background-color: var(--lightOrange);
}

/*SALES PAGE BEGIN HIER*/
#salesPage .gFrmCon{
   padding: 20px;
   flex-flow: column nowrap;
   box-sizing: border-box;
   align-items: center;
}
#salesPage .salesPageHeadCon{
  display: flex;
  flex-flow: column nowrap;
  box-sizing: border-box;
  align-items: center;
}
#salesPage .salesPageBody{
  display: flex;
  flex-flow: column nowrap;
  box-sizing: border-box;
  align-items: center;
}
#salesPage video{
  width: 100%;

}
#salesPage h1{
  text-align: center;
  margin-bottom: 20px;
  font-size: 300%;
}
#salesPage h2{
  text-align: center;
  font-size: 250%;
  margin-bottom: 20px;
}
#salesPage h3{
  text-align: center;
  margin-bottom: 20px;
}
#salesPage h4{
  text-align: center;
  margin-bottom: 20px;
}
#salesPage p{
  text-align: center;
}
#salesPage a{
  text-align: center;
  margin-bottom: 20px;
}
#salesPage li{
  box-sizing: border-box;
  margin: 20px;
}
#salesPage .refCon{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#salesPage .refCon img{
  width: 80px;
}
#salesPage .salesPayBtnCon{
  background-color: var(--orange);
  color: var(--white);
  padding: 10px;
  border-radius: 5px;
  margin: 20px 0 10px 0;
  width: 60%;
  cursor: pointer;
}
#salesPage .salesPayBtnCon:hover{
  box-shadow: 0 0 7px var(--grey);
}
#salesPage .salesPayBtnCon h3{
  color: var(--white);
  margin-bottom: 7px;
}

/*FROM Projectss*/
#frmProjects .showMoreCon{
    overflow: hidden;
    max-height: 30px;
    transition: max-height 1s;
}
#frmProjects .showMoreBtnCon{
    display: flex;
    height: 30px;
    width: 100%;
    justify-content: center;
}
#frmProjects .showMoreBtnCon span{
    color: var(--orange);
}

/*FRORM TASKS*/
#frmTasks .showMoreCon{
    overflow: hidden;
    max-height: 30px;
    transition: max-height 1s;
}
#frmTasks .showMoreBtnCon{
    display: flex;
    height: 30px;
    width: 100%;
    justify-content: center;
}
#frmTasks .showMoreBtnCon span{
    color: var(--orange);
}

/*FORM GOAL*/
#frmGoals .checkLabel{
  display: flex;
  flex-flow: row nowrap;
  font-size: 90%;
  color: var(--darkGrey);
  align-items: center;
  justify-content: flex-start;
}
#frmGoals .showMoreCon{
    overflow: hidden;
    max-height: 30px;
    transition: max-height 1s;
}
#frmGoals .showMoreBtnCon{
    display: flex;
    height: 30px;
    width: 100%;
    justify-content: center;
}
#frmGoals .showMoreBtnCon span{
    color: var(--orange);
}

/*FORM BLOG*/
#frmBlog{
  width: 930px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

/*#frmBlog .txtEditBtn img{
  width: 50px;

}*/
#frmBlog .frmBlogCreatHead{
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid var(--grey);
  padding-bottom: 5px;
}
#frmBlog .blogTitleLbl{
  width: 100%;
  margin: 20px 0 10px 0;
}
#frmBlog .blogTitleLbl h2{
  font-size: 20px;
  color: var(--charcoal);
}
#frmBlog .blogTitleLbl input{
  box-sizing: border-box;
  outline: none;
  margin: 5px 0 0 0;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
}
#frmBlog iframe{
    width: 100%;
    height: 68%;
    overflow-y: auto;
}
#frmBlog .blogContenBtnCon{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/*BUSINESS VIEW SCREEN*/
#disBusiness .frmProfileCon{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin: 3vw 5vw 3vw 5vw;
}
#disBusiness .viewBusHead{
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--grey);
  position: relative;
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
}
#disBusiness .viewBusHead div{
  margin-left: 10px;
}
#disBusiness .busDisCon{
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
}
#disBusiness .busCon{
  background-color: var(--white);
  display: flex;
  margin: 10px 0 0 0;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid var(--grey);
  cursor: pointer;
}
#disBusiness .busCon:hover{
  background-color: var(--lightOrange);
}
#disBusiness .busCon img{
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 50%;
}
#disBusiness .busItemDisCon{
  display: flex;
  width: calc(100% - 60px);
  align-items: center;
  justify-content: space-between;
}
#disBusiness .busItemDisCon h1{
  font-size: 20px;
  margin-bottom: 2px;
}
#disBusiness .busItemDisCon p{
  font-size: 15px;
  color: var(--darkGrey);
}
#disBusiness .busItemRCon{
  text-align: right;
}

#disGoals .sideNavBar {
  height: 100%;
  background-color: var(--grey);
  padding-top: 2vh;
  border-right: 2px solid var(--darkGrey);
  width: 11vw;
}
#disGoals .sideNavBar .sideNavCon {
  display: flex;
  flex-flow: column nowrap;
  margin-top: 5vw;
}
#disGoals .sideNavBar .sideNavCon ul {
  list-style: none;
}
#disGoals .sideNavBar .sideNavCon li {
  display: flex;
  align-items: center;
  padding: 0.5vw 1vw 0.5vw 1vw;
  cursor: pointer;
  color: var(--white);
  height: 100%;
}
#disGoals .sideNavBar .sideNavCon li:hover {
  background-color: var(--darkGrey);
}
#disGoals .sideNavBar .sideNavCon img {
  width: 2vw;
}
#disGoals .sideNavBar .counterCon{
    position: relative;
}
#disGoals .sideNavBar .counter{
    position: absolute;
    height: 18px;
    width: 18px;
    top: -10px;
    right: -15px;
    border-radius: 50%;
    background-color: var(--red);
    text-align: center;
    line-height: 18px;
    font-size: 80%;
}

#disGoals .middleCon {
  margin: 0 1.5vw 1.5vw 1.5vw;

  width: 80%;
  position: relative;
}
#disGoals .middleCon .middleNavBar {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  margin: 1.5vw 0 1.5vw 0;
}
#disGoals .middleCon .gMiddelItemsCon {
    overflow-y: auto;
    padding-bottom: 1vh;
}

#disGoals .middleNavBar .gBtnOrange {
  margin-left: 0.8vw;
}
#disGoals .middleNavBar .gBtnInfrm {
  margin-left: 0.5vw;
}
#disGoals .middleNavBar .middleNavCon {
  border-bottom: 1px solid var(--grey);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
#disGoals .middleNavBar .middleNavCon ul {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  list-style: none;
}
#disGoals .middleNavBar .middleNavCon li {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  height: 100%;
  align-items: center;
  margin-left: 0.5vw;
}
#disGoals .middleNavBar .middleNavCon li:hover {
  color: var(--white);
  background-color: var(--orange);
  border: none;
}

#srcGoals .checkLabel{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
}

#srcTasks .gMiddelItemsCon input{
    border: none;
    flex-grow: 2;
    margin: 0 10px 0 10px;
    padding: 0;
}
#srcTasks .gChildInd{
  width: 10em;
  cursor: pointer;
}
#srcTasks .gTaskCon .gChildInd:hover {
  background: var(--lightOrange);
  border: var(--orange) 1px solid;
  box-sizing: border-box;
}

#srcReview .header{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

/*DISPLAY BLOG*/
#disBlog{
  width: 100%;
  text-align: center;
}
#disBlog .disBlogHead{
  display: flex;
  flex-flow: row nowrap;
  min-width: 930px;
  margin: 0 5vw;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px var(--grey) solid;
}
#disBlog .disBlogHead h1{
  flex-grow: 1;
  text-align: left;
  font-size: 25px;
}
#disBlog .gBtnOrange{
  font-size: 16px
}
#disBlog .gBtnInfrm{
  font-size: 16px;
  margin-left: 8px;
}
#disBlog .js_title{
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
}
#disBlog .disBlogCon{
  display: flex;
  flex-flow: row nowrap;
  min-width: 930px;
  margin: 0 5vw;
}
#disBlog .disBlogConL{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 15%;
}
#disBlog .disBlogConL h2{
  margin-top: 20px;
  color: var(--orange);
  font-size: 20px;
}
#disBlog .disBlogConL h3{
  font-size: 18px;
  color: var(--charcoal);
  flex-grow: 0;
}
#disBlog .disBlogConL h4{
  font-size: 16px;
  color: var(--darkGrey);
  margin: 10px 0 5px 0;
}
#disBlog .disBlogConL h5{
  font-size: 14px;
  color: var(--orange);
}
#disBlog .disBlogConL img{
  width: 90%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px var(--charcoal) solid;
  margin: 8px 0;
}
#disBlog .followBtn{
    display: flex;
    flex-flow: row;
    align-items: center;
    box-sizing: border-box;
    background-color: var(--orange);
    padding: 5px 10px;
    position: relative;
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    border: solid 1px var(--orange);
    max-height: 27px;
    margin: 5px 0 10px 0;
}

/*#disBlogFBtnBox .followSettBtn{
    display: flex;
    flex-flow: row;
    align-items: center;
    box-sizing: border-box;
    background-color: var(--orange);
    padding: 5px 10px;
    position: relative;
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    border: solid 1px var(--orange);
    max-height: 27px;
    margin: 5px 0 10px 0;
}
#disBlogFBtnBox .followSettBtn:hover{
  border-radius: 5px 5px 0 0;
}
#disBlogFBtnBox .followSettBtn:hover .followSetCon{
    max-height: 200px;
}
#disBlogFBtnBox .followSettBtn .followSetCon{
    max-height: 0px;
    width: 100%;
    top: 100%;
    right: 0;
    transition: max-height 0.5s;
    position: absolute;
    background-color: var(--orange);
    z-index: 2;
    color: var(--white);
    overflow:hidden;
}
#disBlogFBtnBox .followSettBtn img{
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: none;
}
#disBlogFBtnBox .followSetCon div{
    padding: 5px 10px;
    text-align: left;
    border: solid 1px var(--orange);
    box-sizing: border-box;
}
#disBlogFBtnBox .followSetCon div:hover{
    background-color: var(--lightOrange);
    border: solid 1px var(--lightOrange);
    font-weight: bold;
} */
#disBlog .blogPostEditBtn{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  padding: 5px 10px;
  border-radius: 5px;
  width: 90%;
  box-sizing: border-box;
  margin-top: 5px;
  color: var(--white);
}
#disBlog .blogPostDelCon{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  background-color: var(--charcoal);
  padding: 5px 10px;
  border-radius: 5px;
  width: 90%;
  box-sizing: border-box;
  margin-bottom: 5px;
}
#disBlog .blogPostDelCon img{
  width: 15px;
  margin: 0;
}
#disBlog .blogPostDelCon span{
  color: var(--white);
  font-size: 12px;
}

#disBlog .disBlogConM{
  display: flex;
  flex-flow: column nowrap;
  width: 65%;
  padding: 0 20px;
  box-sizing: border-box;
}
#disBlog .js_title{
  margin: 20px 0
}
#disBlog .disBlogConM p{
  margin: 0px 0 10px 0;
  text-align: justify;
}
#disBlog .blogPostCom h4{
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  margin: 10px 0 5px 0;
}
#disBlog .blogPostCom textarea{
  font-size: 14px;
  margin-bottom: 5px
}
#disBlog .blogPostCom .gBtnOrange{
  display: flex;
  width: 80px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

#disBlogBlogContent{
  line-height: 1.5;
}

#disBlog .blogComDisCon{
  min-height: 200px;
  margin: 20px 0 50px 0;
}
#disBlog .blogComItem {
  display: flex;
  flex-flow: row nowrap;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 25px;
  align-items: flex-start;
}
#disBlog .blogComItem img{
  width: 50px;
  border-radius: 50%;
  border: solid var(--charcoal) 1px;
}
#disBlog .blogComItemInfo{
  display: flex;
  flex-flow: column nowrap;
  width: calc(100% - 50px);
  box-sizing: border-box;
  padding-left: 8px;
}
#disBlog .comHead{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
#disBlog .comHead .comOwner{
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}
#disBlog .comHead .comTime{
  font-size: 10px;
  text-align: right;
  color: var(--orange);
}
#disBlog .comment{
  font-size: 12px;
  text-align: left;
  margin-top: 3px;
}
#disBlog .btnBox{
    display: flex;
    justify-content: space-between;
}
#disBlog .delBtnBox .btnDel{
    display: flex;
    align-items: center;
    padding: 0.2vw 0.7vw 0.2vw 0.7vw;
    color: var(--white);
    border-radius: 0.2vw;
    font-size: 90%;
    cursor: pointer;
    background-color: var(--red);
    margin-left: 10px;
}
#disBlog .delBtnBox .btnCan{
    display: flex;
    align-items: center;
    background-color: var(--orange);
    padding: 0.2vw 0.7vw 0.2vw 0.7vw;
    color: var(--white);
    border-radius: 0.2vw;
    font-size: 90%;
    cursor: pointer;
    background-color: var(--white);
    color: var(--orange);
}

#disBlog .disBlogConR{
  display: flex;
  flex-flow: column nowrap;
  width: 20%;
}
#disBlog .disBlogConR h2{
  margin-top: 20px;
  color: var(--orange);
  font-size: 20px;
}
#disBlog .latePostCon{
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: 8px;
  background-color: var(--white);
  border-radius: 5px;
  margin-top: 15px;
}
#disBlog .latePostCon:hover{
  box-shadow: 0 0 5px grey;
}
#disBlog .latePostCon.selected{
    background-color: var(--orange);
}
#disBlog .latePostCon h3{
  width: 100%;
  text-align: left;
  margin-bottom: 2px;
}
#disBlog .latePostCon span{
  width: 100%;
  display: flex;
  font-size: 10px;
  color: var(--darkGrey);
  align-items: right;
  justify-content: flex-end;
}
#disBlog .latePostCon.selected h3{
    color: var(--white);
}
#disBlog .latePostCon.selected span{
    color: var(--white);
}


/*AFRINEUR SEARCH - IDEAS TAB*/
#srcIdeas .gTaskCon h4 {
  margin-left: 0;
}
#srcIdeas .gTaskCon .gChildInd {
  cursor: pointer;
  width: 10em;
  box-sizing: border-box;
}
#srcIdeas .gTaskCon .gChildInd:hover {
  background: var(--lightOrange);
  border: var(--orange) 1px solid;
}

#srcIdeas .gMiddelItemsCon input{
    border: none;
    flex-grow: 2;
    margin: 0 10px 0 10px;
    padding: 0;
}

@media only screen and (max-width: 1000px){

  #fullView .frmCon {
    padding: 0;
    width: 80%;
    background-color: transparent;
  }
  #fullView label input{
    border-radius: 5px;
  }
  #fullView .btnBox {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
  #fullView .gBtnOrange {
    padding: 7px 14px;
  }
  #fullView .btnLoginAlt {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    color: var(--grey);
  }
  #fullView .btnLoginAlt:hover {
    color: var(--orange);
  }

}
