/******************************
 Infinite Scroll
*******************************/
.ias-trigger,
.ias-spinner,
.ias-noneleft {
  width: 100%;
  clear: both;
  text-align: center; }
  .ias-trigger i::before,
  .ias-spinner i::before,
  .ias-noneleft i::before {
    font-size: 22px; }

.ias-trigger a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
/*
.ias-trigger-prev .button {
    margin: 10px;
}
.ias-trigger-next .button {
    margin: 10px;
}
*/
.ias-trigger,
.ias-spinner{
    padding: 10px;
}
.ias-noneleft {
    background: rgba(255,255,255,1);
    margin: 10px;
    padding: 10px;
    border-radius: 3px;
}
.ias-trigger a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ias-trigger a {
    display: inline-flex;
}
.ias-trigger .button {
    border: none;
    border-radius: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    line-height: 1;
    min-width: 0;
    transition: all .1s ease-out;
}
.ias-trigger .button {
    display: inline-block;
    padding: 7px 30px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: transparent;
    border: 1px solid #000;
  color: #000 !important;
  border-radius: 20px;
}
.ias-loader {
  position: relative;
  top: 0;
  height: 40px;
  margin-top: 0;
  text-align: center;
  background: transparent url('loader.svg') no-repeat center center;
  background-size: 40px 19px;
  opacity: 1;
  animation: flipAnimation 1s infinite;
  transition: opacity 300ms;
}

/* @see https://medium.com/designer-recipes/understanding-card-flip-animation-using-css-391c40ed3136 */
@keyframes flipAnimation {
  0%   {
    -ms-transform: rotateY(-180deg); /* IE 9 */
    -webkit-transform: rotateY(-180deg); /* Safari Chrome */
    transform: rotateY(-180deg);
  }
  50%  {
    -ms-transform: rotateY(0deg); /* IE 9 */
    -webkit-transform: rotateY(0deg); /* Safari Chrome */
    transform: rotateY(0deg);
  }
  100% {
    -ms-transform: rotateY(-180deg); /* IE 9 */
    -webkit-transform: rotateY(-180deg); /* Safari Chrome */
    transform: rotateY(-180deg);
  }
}

