/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */


/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/*CUSTOM*/
.tooltip {
    max-width: 100vw;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height,visibility;
    -o-transition-property: height,visibility;
    transition-property: height,visibility
}
.collapse {
    display: none;
    overflow: hidden;
}


.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: Roboto,"Helvetica Neue",sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    opacity: 0;
    filter: alpha(opacity=0);
    line-break: auto;
}

.tooltip.in {
    filter: alpha(opacity=90);
    opacity: .9
}

.tooltip.top {
    padding: 5px 0;
    margin-top: -3px
}

.tooltip.right {
    padding: 0 5px;
    margin-left: 3px
}

.tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px
}

.tooltip.left {
    padding: 0 5px;
    margin-left: -3px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    background-color: #212121;
    color: rgba(255,255,255,.7);
    text-align: left;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
    max-width: 384px;
    font-size: 14px;
    line-height: 20px;
    padding: 16px 20px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #212121
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #212121
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #212121
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #212121
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #212121
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #212121
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #212121
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #212121
}



/* CUSTOM */
md-toolbar.main-toolbar {
    -webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.14), 0 3px 3px -2px rgba(0,0,0,0.12), 0 1px 8px 0 rgba(0,0,0,0.2);
    box-shadow: 0 3px 4px 0 rgba(0,0,0,0.14), 0 3px 3px -2px rgba(0,0,0,0.12), 0 1px 8px 0 rgba(0,0,0,0.2);
    background-color: #00758F;
    flex-direction: row;
}
.md-sidenav-left.lkc-menu {
    height: 100%;
    width: 256px!important;
}

md-select.md-default-theme.navigator .md-select-value.navigator, md-select.navigator .md-select-value{
    border-bottom:1px solid rgba(0,0,0,0.54)!important;
}
md-select.navigator .md-select-value>span {
    color: #4e5153!important;
}

md-select.navigator:not([disabled]):focus .md-select-value {
    padding-bottom: 1px;
}

.main-toolbar>md-menu {
    margin: 0;
}
.md-toolbar-tools>a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
body>div.preloader {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9999;
}


/* ANIMATIONS */

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 100px auto;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #333;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
          animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s; }
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); 
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1);
  } 
}

.push-prompt {
    min-height: 25px;
    font-weight: 800;
    color: white;
    background-color: #dfa941;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
}
.toolbar-select-home .md-text{
  display: flex;
  align-items: center;
}

/* **** HOME ONLY **** */
.menu-items-container>button, .menu-items-container>a {
  margin: 0;
  padding: 6px 24px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  text-align: start;
  text-decoration: none;
  text-transform: none;
  height: 32px;
  color: rgba(0, 0, 0, 0.54);
  font-weight: 500;
  min-width: 0;
}

.lkc-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.lkc-nav .material-icons {
  font-size: 20px;
}
.lkc-entry-displayname {
  padding-left: 16px;
  pointer-events: none;
  line-height: 22px;
}
.home-cards-container {
  margin: 10px auto;
  max-height: 100%;
  display: block;
}
.home-card {
  margin: 5px;
  min-width: 200px;
  max-width: 210px;
  box-sizing: border-box;
  border-top: 5px solid rgba(255,255,255,0.5);
  position: relative;
  float:left;
}
.home-card > a {
  display: flex;
  text-decoration: none;
  flex-direction: column;
}
.home-card-top {
  display: flex;
  flex-direction: row;
  padding: 0 10px 0 10px;
  height: 68.94px;
}
.home-card-top > img {
  height: 55px;
  width: 55px;
  margin-top: 7px;
}
.home-card-top > h2 {
  margin: auto;
  text-align: left;
  color: white;
  font-size: 20px;
  flex: 1;
  text-shadow: 2px 2px rgba(0,0,0,0.3);
}
.home-card-bottom {
  padding: 0 10px 0 10px;
}
.home-card-bottom > p {
  text-align: left;
  display: -webkit-box;
  line-height: 18px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 54px;
  color: white;
  font-size: 15px;
  margin-top: 4px;
}

@media screen and (max-width: 470px) {
  .home-card {
    width: 100%;
    max-width: 100%;
  }
  .search-bar-container {
    display: none!important;
  }
}
@media screen and (max-width: 700px) and (min-width:  470px) {
  .home-card {
    width: 50%;
  }
  .search-bar-container {
    display: none!important;
  }
  .home-cards-container {
    max-width: 440px;
  }
}
@media screen and (max-width: 930px) and (min-width: 700px) {
  .home-card {
    width: 33.33%;
  }
  #search {
    width: 530px;
    font-size: 45px;
    height: 60px;
  }
  .advanced-search-container {
    width: 530px;
  }
  .search-active {
    top: 78px;
  }
  .home-cards-container {
    max-width: 660px;
  }
}
@media screen and (max-width: 1160px) and (min-width: 930px) {
  .home-card {
    width: 25%;
  }
  #search {
    width: 530px;
    font-size: 45px;
    height: 60px;
  }
  .advanced-search-container {
    width: 530px;
  }
  .search-active {
    top: 78px;
  }
  .home-cards-container {
    max-width: 880px;
  }
}
@media screen and (max-width: 1601px) and (min-width: 1160px) {
  .home-card {
    width: 20%;
  }
  #search {
    width: 750px;
    font-size: 55px;
    height: 70px;
  }
  .advanced-search-container {
    width: 750px;
  }
  .search-active {
    top: 92px;
  }
  .home-cards-container {
    max-width: 1100px;
  }
}

@media screen and (min-width: 1601px) {
  .home-card {
    width: calc(20% - 30px);
  }
  #search {
    width: 750px;
    font-size: 55px;
    height: 70px;
  }
  .advanced-search-container {
    width: 750px;
  }
  .search-active {
    top: 92px;
  }
  .home-cards-container {
    max-width: 1320px;
  }
}

/* SEARCH */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: local('Lato Hairline'), local('Lato-Hairline'), url(fonts/eFRpvGLEW31oiexbYNx7Y_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: local('Lato Hairline'), local('Lato-Hairline'), url(fonts/GtRkRNTnri0g82CjKnEB0Q.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local('Lato Light'), local('Lato-Light'), url(fonts/dPJ5r9gl3kK6ijoeP1IRsvY6323mHUZFJMgTvxaG2iE.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local('Lato Light'), local('Lato-Light'), url(fonts/EsvMC5un3kjyUhB9ZEPPwg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(fonts/UyBMtLsHKBKXelqf4x7VRQ.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(fonts/1YwB1sO8YE1Lyjf12WNiUA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local('Lato Bold'), local('Lato-Bold'), url(fonts/ObQr5XYcoH0WBoUxiaYK3_Y6323mHUZFJMgTvxaG2iE.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local('Lato Bold'), local('Lato-Bold'), url(fonts/H2DMvhDLycM56KNuAtbJYA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
#search {
  display: inline-block;
  font-family: "Lato";
  font-weight: 100;
  border: none;
  outline: none;
  color: white;
  padding: 3px;
  background: none;
  margin-top: 10px;
  border-bottom: 1.5px solid white;
  cursor: text;
}

.search-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 10px;
  flex-direction: column;
}
.search-active-title {
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: white;
  background: rgba(148, 38, 69, 0.8);
  background: rgba(83, 150, 197, 0.8);
  width: 96%;
  margin: 0 auto;
  border-top:2px solid white;
  border-left:2px solid white;
  border-right:2px solid white;
  border-bottom:2px solid white;
  border-radius: 10px 10px 0 0;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
}


/*MY CAROUSEL */

.carousel-navigator {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 50%;
  margin: auto;
  display: flex;
}
.carousel-navigator.previous {
  left: 0;
}
.carousel-navigator.next {
  right: 0;
}

.swiper-slide {
  margin: auto 0;
}

/*DATATABLE*/
.row-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.row-column-left {
  flex: 0 1 auto;
  width: 70px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  text-align: center;
  justify-content: center;
}
.row-column-right {
  flex: 1;
  overflow: hidden;
  padding: 10px;
}
.useful-link .dataTables_scrollBody {
  overflow-x: hidden!important;
}
.useful-link tbody, .useful-link tr, .useful-link td {
  width: 100%;
  display: block;
}
a.file-download {
  text-decoration: none;
  color: white;
  cursor: pointer;
}

.file-doc-title {
  word-break: break-word;
  font-weight: 500;
  max-height: 38px;
  line-height: 19px;
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 19px;
}
.file.material-icons {
  font-size: 40px;
}
.file-doc-type {
    font-size: 11px;
    white-space: normal;
}
.file-tags .material-icons:nth-child(1) {
  color: #00de1d;
}
.file-tags .material-icons:nth-child(2) {
  color: orange;
}

.view-container *::-webkit-scrollbar, .view-container::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
}

.view-container *::-webkit-scrollbar-thumb, .view-container::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.8);
}
.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.8);
}
.view-container *::-webkit-scrollbar-track, .view-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.2);
}

#quick-search-table_wrapper div.dataTables_scrollBody {
    background: transparent!important;
}
#quick-search-table_wrapper table.dataTable tbody tr {
    height: 92px;
}
#quick-search-table_wrapper tr.even {
    background: rgba(41, 41, 41, 0.4)!important;
}
#quick-search-table_wrapper tr.odd {
    background: rgba(0,0,0,0.5)!important;
}
#quick-search-table_wrapper table.dataTable tbody td {
    padding: 0px 7px!important;
}
#quick-search-table_wrapper {
  flex:1;
  overflow:hidden;
}
#quick-search-table_wrapper .dataTables_empty {
  display: flex!important;
  justify-content: center!important;
  align-items: center!important;
  color: white!important;
  height: 100%!important;
}
/* FIREFOX BUG */
#quick-search-table_wrapper .dataTables_scroll {
  height: 100%;
}
#quick-search-table_wrapper {
  height: 100%;
  width: 96%;
  margin: auto;
  border: 2px solid white;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

#useful-link-table_wrapper div.dataTables_scrollBody {
    background: transparent!important;
}
#useful-link-table_wrapper table.dataTable tbody tr {
    height: 92px;
}
#useful-link-table_wrapper tr.even {
    background: rgba(41, 41, 41, 0.8)!important;
    color: floralwhite;
}
#useful-link-table_wrapper tr.odd {
    background: rgba(0,0,0,0.7)!important;
    color: floralwhite;
}
#useful-link-table_wrapper table.dataTable tbody td {
    padding: 0px 7px!important;
}
#useful-link-table_wrapper {
  flex:1;
  overflow:hidden;
}
#useful-link-table_wrapper .dataTables_empty {
  display: flex!important;
  justify-content: center!important;
  align-items: center!important;
  color: white!important;
  height: 100%!important;
}
/* FIREFOX BUG */
#useful-link-table_wrapper .dataTables_scroll {
  height: 100%;
}
#useful-link-table_wrapper {
  height: 100%;
  width: 96%;
  margin: auto;
  border: 2px solid white;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

#km-skill-table_wrapper div.dataTables_scrollBody {
    background: transparent!important;
}
#km-skill-table_wrapper table.dataTable tbody tr {
    height: 92px;
}
#km-skill-table_wrapper tr.even {
    background: rgba(255,255,255,0.87)!important;
    color: black;
}
#km-skill-table_wrapper tr.odd {
    background: rgb(238,238,238)!important;
    color: black;
}
#km-skill-table_wrapper table.dataTable tbody td {
    padding: 0px 7px!important;
}
#km-skill-table_wrapper {
  flex:1;
  overflow:hidden;
}
#km-skill-table_wrapper .dataTables_empty {
  display: flex!important;
  justify-content: center!important;
  align-items: center!important;
  color: white!important;
  height: 100%!important;
}
/* FIREFOX BUG */
#km-skill-table_wrapper .dataTables_scroll {
  height: 100%;
}
#km-skill-table_wrapper {
  height: 100%;
  width: 96%;
  margin: auto;
  border: 2px solid white;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}
.container-3{
  width: 300px;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
}
 
.container-3 input#search{
  width: 300px;
  height: 50px;
  background: #90949e;
  border: none;
  font-size: 10pt;
  float: left;
  color: #262626;
  padding-left: 45px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
}
.container-3 input#search::-webkit-input-placeholder {
   color: #65737e;
}
 
.container-3 input#search:-moz-placeholder { /* Firefox 18- */
   color: #65737e;  
}
 
.container-3 input#search::-moz-placeholder {  /* Firefox 19+ */
   color: #65737e;  
}
 
.container-3 input#search:-ms-input-placeholder {  
   color: #65737e;  
}
.container-3 .icon{
  position: absolute;
  top: 50%;
  margin-left: 17px;
  margin-top: 17px;
  z-index: 1;
  color: #4f5b66;
 
   -webkit-transition: all .55s ease;
  -moz-transition: all .55s ease;
  -ms-transition: all .55s ease;
  -o-transition: all .55s ease;
  transition: all .55s ease;
}

/* animagted bg */
.home-fundo {
  -moz-animation: bg 60s linear infinite;
  -webkit-animation: bg 60s linear infinite;
  -ms-animation: bg 60s linear infinite;
  animation: bg 60s linear infinite;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  background: transparent url('/components/img/OracleHQvectorFinal2.svg') bottom left;
  background-repeat: repeat-x;
  background-size: auto 100%;
  width: calc((100vh)*3*4.2045514)!important;
  left: 0;
  opacity: 1;
  top: 0;
  height: 100%;
  width: 100%;
  position: fixed;
}

@-moz-keyframes bg {
  0% {
    -moz-transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  100% {
    -moz-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    -webkit-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    -ms-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    transform: translate3d(calc(-4.2045514*(100vh)),0,0);
  }
}

@-webkit-keyframes bg {
  0% {
    -moz-transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  100% {
    -moz-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    -webkit-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    -ms-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    transform: translate3d(calc(-4.2045514*(100vh)),0,0);
  }
  }

@-ms-keyframes bg {
  0% {
    -moz-transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  100% {
    -moz-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    -webkit-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    -ms-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    transform: translate3d(calc(-4.2045514*(100vh)),0,0);
  }
}

@keyframes bg {
  0% {
    -moz-transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  100% {
    -moz-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    -webkit-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    -ms-transform: translate3d(calc(-4.2045514*(100vh)),0,0);
    transform: translate3d(calc(-4.2045514*(100vh)),0,0);
  }
}


md-toolbar.main-toolbar {
  background-color: #ffffff;
}
.md-toolbar-tools .md-button, .md-toolbar-tools .md-button.md-icon-button md-icon {
  color: #4e5153;
}


#search::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: white;
  font-weight: 300;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}
#search::-moz-placeholder { /* Firefox 19+ */
  color: white;
  font-weight: 300;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}
#search:-ms-input-placeholder { /* IE 10+ */
  color: white;
  font-weight: 300;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}
#search:-moz-placeholder { /* Firefox 18- */
  color: white;
  font-weight: 300;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}

.dataTables_empty a {
  color: white;
  font-weight: bold;
}


/*CSM Reference*/
.parentCard {
  outline: none;
  padding: 8px;
  padding-left: 25px;
}
.contact-card {
  background-color: white;
  min-width: 250px;
  width: 100%;
  margin: 5px;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}
@media screen and (max-width: 600px) {
  .contact-card {
    width: 100%x);
  }
}
@media screen and (max-width: 850px) and (min-width:  600px) {
  .contact-card {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 1150px) and (min-width: 850px) {
  .contact-card {
    width: calc(33.33% - 10px);
  }
}
@media screen and (max-width: 1450px) and (min-width: 1150px) {
  .contact-card {
    width: calc(25% - 10px);
  }
}

@media screen and (min-width: 1450px) {
  .contact-card {
    width: calc(20% - 10px);
  }

}
.client-name {
  font: bold 18px 'Roboto';
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-transform: uppercase;
}
.industry-name {
    font: italic 12px 'Roboto';
}
.filter-title {
  display: flex;
  height: 38px;
  align-items: center;
  padding-left: 5px;
  cursor: pointer;
  outline: none;
  background: #5396c5;
  color: white;
  box-shadow: 0 3px 4px 0 rgba(0,0,0,0.14), 0 3px 3px -2px rgba(0,0,0,0.12), 0 1px 8px 0 rgba(0,0,0,0.2);
}
.filter-title .material-icons {
  margin-right: 0;
  color: white;
}
.filter-parameters {
    padding-left: 10px;
}
.filter-parameters md-checkbox:first-child { 
  margin-top: 16px;
}
md-sidenav *::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3)!important;
}
.bottom-card {
  display: flex;
}
.card-left {
  flex:1;
}
.card-right {
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-direction: column;
}
.card-right button {
  width:  50px;
  height: auto;
  display:  flex;
  align-items:  center; 
  justify-content:  center; 
  margin:   0;
  padding:0!important ;
}
.card-right .material-icons {
  font-size: 40px;
  width: 40px;
  height: 40px;
  margin: 0;
}
.leftcard.pillars, .leftcard.metadata{
  font-size: 14px;
  margin-top: 5px;
  display: flex;
  height: 28px;
  align-items: center;
}
.search-toolbar {
  transition: box-shadow 0.18s ease-out,background-color 0.18s ease-out !important;
  transition-delay: 0.12s !important;
}
.search-toolbar > md-input-container> md-icon {
  top: 5px;
  left: 6px;
}
.search-toolbar.hasNoText md-input-container {
  padding-right: 0;
}
.search-toolbar .md-errors-spacer {
  display: none;
}
.search-toolbar.active .icon-search {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  opacity: 0;
  transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1) 0.06s;
}
.search-toolbar .icon-search {
  color: #b9b9b9!important; 
  outline: none!important;
}
.search-toolbar .icon-close {
  color: #b9b9b9!important;
  cursor: pointer;
  outline: none!important;
}
.pillar-carousel {
  display: flex;
  width: 100%;
  max-width: 175px;
}
.pillar-carousel md-icon {
  height: initial;  
  width: initial; 
  min-height: initial; 
  min-width: initial; 
}
.pillar-carousel .md-button {
  padding: 0;
  margin: 0;
  height: initial;
  width: initial;
  min-height: 24px!important;
  max-width: 12px;
  flex: 1 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
slide {
  display: flex;
  text-align: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  margin: auto;
}
slide.only-one {
  justify-content: flex-start;
      padding-left: 5px;
}
md-toolbar.filters {
  border-top: 0.3px solid #757675;
  background-color: white;
  color: #5396c5;
  box-shadow: 0 3px 4px 0 rgba(0,0,0,0.14), 0 3px 3px -2px rgba(0,0,0,0.12), 0 1px 8px 0 rgba(0,0,0,0.2);
}
md-toolbar.filters h1 {
  font-weight: bold;
}
.collapseButton {
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: inherit;
}
.collapseButton.button-colapsed {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
span.roud-with-number {
  background: red;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 0 1px 0px red inset, 0 0 1px 0px red;
  color: white;
}


.popUpTable {
  max-height: 70vh;
  overflow: auto;
}
.popUpTable::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
}
.popUpTable::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
}
.popUpTable::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.08);
}
.popUpTable > table {
  margin: auto;
  width: 95%;
  position: relative;
  border: 1px solid #383838;      
}
.popUpTable > table > tbody > tr > th {
  text-align: center;
  padding: 5px 10px;
}
.popUpTable > table > tbody > tr > td {
  text-align: center;
  padding: 0px 10px;
}
.productsTable tr:nth-child(odd){ 
  background: #b8d1f3;
}
.productsTable tr:nth-child(even){
  background: #dae5f4;
}
.productsTable {
  /*white-space: nowrap;*/
}
.productsTable td {
  padding: 0 15px;
  text-align: center;
}
.reference-flag {
  position: absolute;
  background: red;
  color: white;
  left: 0;
  font-size:12px;
  font-weight:400;
  align-items:center;
  display: flex;
  width: 20px;
  top: 0;
  height: 100%;
  writing-mode: vertical-lr;
  justify-content: center;
  border-radius: 0 7px 7px 0;
  transform: rotate(180deg);
}

/* FORMS */
.lkc-input-container{
    padding-bottom: 24px;
  }
  .lkc-input-container label {
    color: rgba(0,0,0,0.54);
    display: block;
    font-size: 13px;
    padding-bottom: 8px;
  }
  md-icon.lkc-help-icon {
    padding-left: 4px;
    vertical-align: middle;
    cursor: default;
    color: rgba(0,0,0,0.54);
    font-size: 16px;
    height: initial;
    width: initial;
    min-height: initial;
    min-width: initial;
    line-height: initial;
    margin: 0;
  }
  lkc-card-action-bar {
    background-color: #f5f5f5;
    -webkit-box-shadow: 0 -1px 0 rgba(0,0,0,0.12) inset;
    box-shadow: 0 -1px 0 rgba(0,0,0,0.12) inset;
    color: rgba(0,0,0,0.54);
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    min-height: 56px;
    position: relative;
    -webkit-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0
  }
  md-single-grid, [md-single-grid] {
    -webkit-justify-content: center;
    justify-content: center;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    margin: 0 auto;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lkc-main-message {
    padding: 24px 32px 0 24px;
  }
  .lkc-upload-form md-select {
    background-color: white;
    box-shadow: 0 0 0 transparent inset, 0 0 0 1px #e0e0e0 inset;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    max-width: 100%;
    outline: 0;
    vertical-align: middle;
    -webkit-appearance: none;
  }
  .lkc-upload-form input, .lkc-upload-form textarea {
    border: none;
    box-shadow: 0 0 0 transparent inset, 0 0 0 1px #e0e0e0 inset;
    box-sizing: border-box;
    max-width: 100%;
    outline: none;
    padding: 8px!important;
    width: 100%;
    min-height: 43px;
    resize: none;
  }
  .lkc-upload-form .md-select-value {
    padding: 8px!important;
  }
  .lkc-upload-form md-option:first-child { 
    border-top: 0;
  }
  .lkc-upload-form md-option {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .lkc-upload-form md-option .md-text {
    white-space: normal;
    text-overflow: initial;
  }
  .lkc-upload-form md-option.generic {
    padding-left: 16px!important;
    /*background: #f6f5f5!important;*/
  }
  .lkc-upload-form md-option.generic > div.md-container {
    display: none!important;
  }
  .lkc-upload-form md-option.generic:hover {
    background: rgb(238,238,238)!important;
  }
  .lkc-main-message.lower {
    padding: 0 24px 16px 24px;
  }
  .lkc-upload-form md-select.ng-required.ng-invalid:not(.md-no-asterisk) .md-select-value span:first-child:after, .lkc-upload-form md-select[required].ng-invalid:not(.md-no-asterisk) .md-select-value span:first-child:after {
    content: initial;
  }
  .lkc-upload-form input:not([disabled]):focus, .lkc-upload-form textarea:not([disabled]):focus {
    border-bottom-width: 2px!important;
    border-bottom-style: solid!important;
    border-bottom-color: rgba(68,138,255,0.87)!important;
  }
  .lkc-upload-form input.ng-invalid.ng-touched, .lkc-upload-form textarea.ng-invalid.ng-touched {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    color: rgb(221,44,0)!important;
    border-bottom-color: rgb(221,44,0)!important;
  }
  .lkc-upload-form md-select.md-default-theme:not([disabled]):focus .md-select-value, .lkc-upload-form md-select:not([disabled]):focus .md-select-value {
    border-bottom-color: rgba(68,138,255,0.87)!important;
  }
  .lkc-upload-form md-select-menu.md-default-theme md-content md-option[selected], .lkc-upload-form md-select-menu md-content md-option[selected] {
    color: rgba(68,138,255,0.87)!important;
  }
  .lkc-upload-form md-select-menu md-content .md-checkbox-enabled[selected] .md-icon {
    background-color: rgba(68,138,255,0.87)!important;
  }
  .lkc-upload-form .md-select-menu-container.md-active md-select-menu>md-content {
    overflow-x: hidden;
  }
  .lkc-upload-form md-content._md {
    overflow-x: hidden;
  }