/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.listing-wrapper {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}
.d-flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding: 60px 0;
}
.blog-item {
  width: calc(100%/3 - 30px);
  margin: 0 15px 20px;
  padding-bottom: 20px;
  box-shadow: 0 10px 10px -10px rgba(0,0,0,.15);
  border-radius: 3px;
}
.blog-content {
  padding 0 25px;
}
.title h3 a {
  color: #000;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-decoration: none;
}
.title h3:hover a {
  color: #2d9cee
}
.details span {
  font-size: 11px;
  color: #9a9a9a;
  margin-bottom: 15px;
  text-transform: uppercase;
  padding: 10px 0;
  transition: opacity .15s ease-in;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.details .author-name {
  color: #000;
  font-size: 11px;
  line-height: 30px;
  font-weight: 300;
  text-decoration: none;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}
.details .author-name:hover {
  color: #2d9cee;
}
.details .description {
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px solid #f5f5f5;
  color: #666666;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
}

.blog-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.blog-category ul li {
  color: #aaaaaa;
  font-size: 10px;
  line-height: 30px;
  font-weight: 300;
  margin-right: 5px;
}
.blog-category ul li a {
  display: block;
  color: #2d9cee;
  font-size: 10px;
  line-height: 30px;
  font-weight: 300;
  text-decoration: none;
}
.blog-category ul li a:hover {
  color: #2d9cee;
}
.show-more-div {
  padding: 15px 0;
  margin: 0 0 20px;
  text-align: center;
}
.warning {
  text-align: center;
}
#total-pages {
  display: none;
}

#css-loader {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.41);
  z-index: 99999999;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: 26vh;
  position: absolute;
  top: 48%;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100vh;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #000000;
  /*border:4px solid rgba(10,200,206,1.0);*/
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0,0.2,0.8,1) infinite
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0
  }
}