div.flex_item_container{
  display: flex;
  flex-wrap: wrap;
  padding: 25px 0;
  margin: -12.5px -12.5px;
}
@supports not (grid-area: auto){
  div.flex_item_container{
    max-width: 992px;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  div.flex_item_container{
    max-width: 992px;
  }
  .grid_container{
    width: 100%;
    max-width: 992px;
  }
  div.flex_item_container{
    margin: 0;
  }
}
.flex_item{
  display: flex;
  width: 100%;
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.15));
  border-radius: 3px;
  margin: 0;
  box-sizing: border-box;
  height: 350px;
  max-height: 350px;
  flex-direction: column;
}
.half_padding{
  padding: 12.5px;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .half_padding{
    padding: 12.5px 0;
  }
}
.flex_item_background {
  border-radius: 3px;
  background-color: #FFFFFF;
  height: 100%;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  @supports (column-count: 2){
    div.flex_item_container{
      display: flex;
      flex-wrap: wrap;
    }
  }
}
.flex_third {
  flex-basis: 33.3%;
}
.flex_half {
  flex-basis: 50%;
}
.flex_full {
  flex-basis: 100%;
}
.flex_item.flex_full {
  display: flex;
  flex-direction: row;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .flex_third{
    flex-basis: 100%;
  }
  .flex_item.flex_full {
    display: flex;
    flex-direction: column-reverse;
    height: 700px;
    max-height: 700px;
  }
}
@media only screen and (max-width: 991px){
  div.flex_item_container{
    margin: 0;
  }
  .flex_item, .flex_item_background{
    border-radius: 0;
  }
  .flex_third{
    flex-basis: 100%;
  }
  .flex_half{
    flex-basis: 100%;
  }
  .flex_item_background.carousel_background{
    align-self: center;
  }
  .half_padding{
    padding: 12.5px 0;
  }
  .flex_item.flex_full{
    flex-direction: column-reverse;
    max-height: 700px;
    height: 700px;
  }
}
.empty_flex_item {
  min-height: 200px;
  padding: 25px;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/empty.svg) no-repeat center center;
}

.empty_flex_item p {
  margin-top: 200px;
}
.empty_flex_item .empty_description {
  font-size: 0.72rem;
  color: #98A3A3;
}

.carousel {
  display: flex;
  position: relative;
  height: 100%;
}
.carousel_item{
  background-color: #FFFFFF;
  display: none;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 3px;
  overflow: hidden;
}
.carousel_item.active{
  display: flex;
  width: 100%;
}
.carousel_header{
  display: flex;
  justify-content: space-between;
  flex: 1;
}
.carousel_header h4 {
  margin-top: 0;
  margin: 0;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 25px 25px 0 25px;
}
.carousel_footer{
  display: flex;
  justify-content: space-evenly;
  flex: 1;
  overflow: hidden;
  background-color: #EBEBEB;
}
.carousel_footer_item:nth-child(2) {
  border-left: solid 1px #98A3A3;
  border-right: solid 1px #98A3A3;
}
.carousel_footer_item:first-child{
  border-bottom-left-radius: 3px;
}
.carousel_footer_item:last-child{
  border-bottom-right-radius: 3px;
}
.carousel_footer_item{
  border-top: solid 1px #98A3A3;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}
.carousel_footer_item .description {
  color: #98A3A3;
  font-size: 0.8rem;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel_footer_item .info {
  color: #222222;
  font-size: 0.8rem;
  font-weight: normal;

}
.carousel_help {
  height: 30px;
  width: 30px;
}
.carousel_arrow_right{
  position: absolute;
  top: 40%;
  height: 40px;
  width: 40px;
  right: -12.5px;
  cursor: pointer;
}
.carousel_arrow_left{
  position: absolute;
  top: 40%;
  height: 40px;
  width: 40px;
  left: -12.5px;
  cursor: pointer;
}
.carousel_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.carousel_body h1 {
  margin: 0;
  color: #222222;
  font-size: 2rem;
  font-weight: normal;

}
.carousel_body h2 {
  margin: 0 0 10px 0;
  opacity: 0.74;
  color: #98A3A3;
  font-size: 1rem;
  font-weight: normal;
}
@media only screen and (max-width: 991px){
  .carousel_arrow_left{
    left: 12.5px;
  }
  .carousel_arrow_right{
    right: 12.5px;
  }
}
.projects_header {
  padding: 0 25px;
  padding-top:25px;
  flex: 1;
}
.projects_header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 25px;
  padding-top: 25px;
  text-align: center;
  align-items: baseline;
  flex:1;
}
.projects_header h1{
  margin: 0;
  font-size: 0.9rem;
  font-weight: bold;
}
.projects_header p{
  margin: 0;
  font-size: 0.6rem;
  color: #98A3A3;
}
.projects_body{
  flex:10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fill_flex{
  flex:1;
}
.project_item{
  height: 69px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12.5px;
  box-sizing: border-box;
  border-radius: 3px;
}
.empty_project{
  background-color: #F9F9F9;
}
.finished_project {
  background-color: #3E8CAE;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.view_unfinished_project.finished_project,
.view_unfinished_projects.finished_project {
  background-color: #FFFFFF;
}
.finished_project_info{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.finished_project_info > p {
  margin:0;
}
.project_date{
  color: white;
  font-weight: bold;
  font-size: 0.5rem;
  text-transform: uppercase;
}
.view_unfinished_project .project_date,
.view_unfinished_projects .project_date{
  color: #98A3A3
}
.project_title{
  color: #FFFFFF;
  font-size: 0.7rem;
}
.view_unfinished_project .project_title,
.view_unfinished_projects .project_title{

  color:#3E8CAE;
}
.finished_project_documents{
  font-size: 0.6rem;
  border: 1px solid;
  border-radius: 27.5px;
  padding:7px;
  color:#FFFFFF;
}
.view_unfinished_project .finished_project_documents,
.view_unfinished_projects .finished_project_documents {
  color: #98A3A3;
}
.modal_container{
  width: 33%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-height: 100%;
}
@media only screen and (max-width: 991px){
  .modal_container{
    width: 90%;
  }
}
.modal_container > * {
  /* set width for child elements */
  width: 100%;
}
.modal_container ul {
  list-style: none;
  margin:0;
  padding:25px;
}
.modal_heading{
  display: flex;
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: bold;
}
.modal_content{
  overflow-y: auto;
}
.modal_heading.dashboard_modal{
  background-color: #F6F6F6;
  color: #222222;
}
.modal_heading > span {
  font-size: 1rem;
}
.modal_heading.project_heading_modal{
  background-color: #3E8CAE;
  color: #ffffff;
}
.modal_heading.project_heading_modal.view_unfinished_projects{
  background-color: #F6F6F6;
  color: #222222;
}
.project_modal{
  max-height: 90%;
  background-color: #FFFFFF;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.finished_project_documents:hover {
  cursor: pointer;
}
.dashboard_project{
  background-color: #FFFFFF;
}
.view_finished_projects, .view_finished_project,
.view_unfinished_projects, .view_unfinished_project {
  cursor: pointer;
}
.view_finished_project .finished_project_documents,
.view_unfinished_project .finished_project_documents{
  opacity: 0;
}
.view_finished_project:hover .finished_project_documents,
.view_unfinished_project:hover .finished_project_documents{
  opacity: 1;
  transition: .25s;
}
.dashboard_project .dashboard_project_name{
  margin: 0;
  font-size: 0.7rem;
  color: #3E8CAE;
}
.dashboard_project .dashboard_project_description{
  margin: 0;
  font-size: 0.5rem;
  color: #98A3A3;
}
.dashboard_item{
  background-color:#ffffff;
}
.dashboard_project_info{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.dashboard_project_info > p {
  margin:0;
  font-size: 0.7rem;
}
.dashboard_project_info  .more_dashboard_projects{
  color: #98A3A3;
  text-transform: uppercase;
  font-size: 0.5rem;
}
.number_dashboard_projects{
  color: #3E8CAE;
}
.finished_project .view_dashboards{
  color:#98a3a3;
}

.empty_project .empty_project_title{
  background-color: #EBEBEB;
  width: 20%;
  height: 10%;
  border-radius: 3px;
  margin: 5px 0;
}
.empty_project .empty_project_content{
  background-color: #EBEBEB;
  width:50%;
  height: 15%;
  border-radius: 3px;
  margin: 5px 0;
}
.project_body{
  border: 1px solid #EBEBEB;
  border-radius: 5px;
  background-color: #FFFFFF;
  box-shadow: 0 0 7px 0 rgba(0,0,0,0.08);
  flex:1;
}
.flex_item ul {
  margin: 0;
  padding: 25px;
}
.flex_item ul.development_body{
  padding: 15px;
}
.projects_body ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.development_header{
  border-radius: 5px 5px 0 0;
  background-color: #3E8CAE;
  padding: 25px;
  box-shadow: 0 0 7px 0 rgba(0,0,0,0.08);
}
.development_heading{
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: bold;
  margin: 5px 0 10px 0;
}
.development_body{
  list-style-type: none;

}
.development_body {
  padding: 25px;
}
.development_body li a{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 10px;
  padding-left: 40px;
  margin-right: 10px;
  font-size: 0.8rem;
}
.development_body a:hover span {
  text-decoration: underline;
}
.development_body a:visited span{
  color: #98A3A3
}
.development_body li~li {
  border-top: 1px solid rgba(152, 163, 163, 0.2);
}
.development_body li a span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #000;
}
.development_body li a.analyze-questions {
  background: url(../img/icon-analyze-questions.svg) no-repeat center left !important;
  background-size: 32px;
  height: 40px;
}
.upcoming_list_item{
  border: 1px solid #EBEBEB;
  border-radius: 5px;
  background-color: #FFFFFF;
  box-shadow: 0 0 7px 0 rgba(0,0,0,0.08);
  margin: 9px 0;
  transition: all .25s ease-in;
}
.looker_list_item:hover{
  border-color: #3E8CAE;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}

.account_title{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.user_text {
  color: black;
  font-size: 1.6rem;
  font-weight: bold;
  margin:0;
}
.company_text {
  color: #909090;
  font-size: 1rem;
  font-weight: normal;
  margin: 0.83em;
  text-align: center;
}
.company_text a {
  color: #3E8CAE;
  display: block;
}
.message_text {
  position: absolute;
  justify-content: center;
  list-style: none;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  top: 60px;
  margin: 0;
  padding: 0;
  left: 0px;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}
.message_text > li {
  box-sizing: border-box;
  height: 60px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.message_text .success,
.message_text .info,
.message_text .debug {
  background-color: #4f86a0;
}
.message_text .warning {
  background-color: #e07d26;
}
.message_text .error {
  background-color: #be5127;
}

@media only screen and (min-width: 992px) {
  @supports (grid-area: auto){
    .grid_container{
      display: grid;
      grid-template-columns: minmax(auto,3fr) minmax( 900px, 14fr) minmax(auto,3fr);
      grid-template-areas: ". data ."
      ". news .";
      height: 100%;
    }
    .account_news{
      grid-area: news;
    }
    .flex_item_container{
      grid-area: data;
    }
    @media only screen and (min-width: 2080px){
      .grid_container{
        grid-template-columns: auto 1456px auto;
      }
    }
  }
}

.finished{
  display: inline-block;
  border-radius: 50%;
  background-color: #6CD070;
  margin-right: 5px;
  width: 10px;
  height: 10px;
}
.late{
  display: inline-block;
  border-radius: 50%;
  background-color: #D92121;
  margin-right: 5px;
  width: 10px;
  height: 10px;
}
.development_status {
  color: white;/* #866932;*/
  font-size: 0.7rem;
  font-weight: bold;

  margin: 10px 0 5px 0;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.padder {
  padding: 25px;
}
.spaced_list > li {
  margin-bottom: 5px;
}
.close_modal{
  background: url(../img/close-modal-blue.svg) no-repeat center right;
  color: #ffffff;
  margin: 25px 0;
  cursor: pointer;
  text-shadow: 1px 1px #222222;
  align-self: flex-end;
  width: max-content;
  width: -moz-max-content;
  padding-right: 40px;
  height: 30px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.close_modal:after {
  content: '';
  background-color: rgba(0,0,0,0.08);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(5px);
  border-radius: 5px;
  z-index: -1;
  background-blend-mode: multiply;

}
.spaced_list > li:last-child {
  margin-bottom: 0;
}
.unfinished_list .unfinished_list_item p{
  color: #98A3A3;
  font-size: 16px;
  font-weight: normal;

  margin: 10px 0 0 0;
  text-transform: uppercase;
}
.unfinished_list .unfinished_list_item h3{
  color: #3E8CAE;
  font-size: 25px;
  font-weight: normal;

  margin: 0 0 10px 0;
}
.padded_body{
  padding: 0 25px;
  padding-bottom: 25px;
}
.project_info{
  font-size: 0.82rem;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .flex_item_background .projects_body .project_info{
    flex:1;
  }
}

.project_actions{
  display: flex;
  justify-content: flex-end;
  font-size: 0.72rem;
}
.project_interaction{
  border: 1px solid;
  border-radius: 27.5px;
  padding:15px;
  padding-left: 45px;
  margin: 0 5px;
}
.project_interaction:hover{
  cursor: pointer;
}
.project_interaction.no_margin_left{
  margin-left:0;
}
.project_interaction.no_margin_right{
  margin-right: 0;
}
@media only screen and (max-width:991px){
  .project_interaction{
    text-indent: -9999px;
    padding: 15px;
  }
  .view_documents, .project_actions:hover .view_documents,.view_documents_disabled, .project_actions:hover .view_documents_disabled{
    background-position: center center;
  }
  .view_project, .project_actions:hover .view_project,.view_project_disabled, .project_actions:hover .view_project_disabled{
    background-position: center center;
  }

}
/*
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Client project list

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/
#clientprojects div {
  color: #98a3a3;
  display: flex;
  flex-direction: column;
  font-size: .9rem;
  grid-area: news;
}
#clientprojects ol,
#clientprojects ul {
  display: block;
  margin: 0;
  padding: 0;
}
#clientprojects ol {
  display: flex;
  flex-wrap: wrap;
}
#clientprojects li {
  display: block;
}
#clientprojects ol > li {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 0 7px 0 #0000001a;
  margin: 0 12px 12px 0;
  padding: 25px;
  width: calc(33.3% - 12px);
}
#clientprojects ol > li:nth-child(3n) {
  margin-right: 0;
  width: 33.3%;
}
#clientprojects h2 {
  color: #222;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
#clientprojects h2 span {
  color: #98a3a3;
  font-size: .8rem;
}
#clientprojects ul li:first-child {
  color: #3E8CAE;
  font-size: .7rem;
  letter-spacing: .05rem;
  margin: 0 0 .8rem;
  text-transform: uppercase;
}
#clientprojects ul li:nth-child(4),
#clientprojects ul li:nth-child(5) {
  margin-top: .8rem;
}
#clientprojects a {
  text-decoration: underline;
  transition: .1s ease-in color;
}
#clientprojects a:hover,
#clientprojects a:focus,
#clientprojects a:active {
  color: #666;
  transition: .1s ease-in color;
}
#clientprojects a.document {
  background-position: left top;
  background-size: 1em;
  background-repeat: no-repeat;
  display: inline-block;
  padding: 0 0 4px 1.2em;
}
@media only screen and (max-width:991px) {
  #clientprojects div {
    padding: 10px;
  }
  #clientprojects ol {
    display: block;
  }
  #clientprojects ol > li:nth-child(1n) {
    padding: 16px;
    margin-right: 0;
    width: 100%;
  }
}
