
html, body{
  min-height:100%;
  width:100%;
  background-color: #FBF8F1;
}
.truncate-3{
    display: -webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow: hidden;
    hyphens: auto;
    width:100%;
}
body>main{
    height: 100%;
    width: 100%;
    display: flex; 
    flex-direction: column;
}
body>main>nav, body>main>footer{
    flex-shrink: 1;
}
div#main-wrapper{
    flex-grow: 1;
    overflow: auto;
    position:relative;
    min-height: 70vh;
}
main>nav{
  background-color: 	#0072b2 !important;
}

main>footer {
  background-color: #f3efe6;
}

/**
* Loader
*/
.preloader {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00000082;
  z-index: 9999;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 3px solid #53cdff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #53cdff transparent transparent transparent;
  }
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**
End of Pre Loader
*/


/** Scroll to Top Button */
div#sc-custom-floating-scroll-top-btn {
  position: fixed;
  z-index: 10;
  background: #147db8;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 15px;
  cursor: pointer;
  box-shadow: 0px 2px 4px #7e7e7e;
  animation: jump .5s infinite;
}
div#sc-custom-floating-scroll-top-btn:hover,
div#sc-custom-floating-scroll-top-btn:active{
  animation: unset;

}
@keyframes jump{
  0%{
    bottom:30px;
  }
  100%{
    bottom:35px;
  }
}
div#sc-custom-floating-scroll-top-btn>span {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
div#sc-custom-floating-scroll-top-btn>span:before {
  content: "";
  position: absolute;
  height: 30px;
  width: 9px;
  background: white;
}
div#sc-custom-floating-scroll-top-btn>span:after {
  content: "";
  position: absolute;
  background: #fff;
  border-left: 15px solid #147db8;
  border-right: 15px solid #147db8;
  border-bottom: 15px solid #fff;
  top: 7px;
}
