body {
  overflow-y: hidden;
}
/* Base loader animation */
#ajax_loading_base {
  display: block;
}
.desktop_ca_view_page {
  padding-top: 10px;
}

.page-link:hover {
  cursor: pointer !important;
}
li.page-item.active .page-link:hover {
  color: white !important;
}

.no-copy {
  user-select: none;          /* Standard */
  -webkit-user-select: none;  /* Safari */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* Internet Explorer/Edge */
}

/*
  Narrow conatiner to decrease effective-width on large screens.
*/
@media (min-width: 576px) {
  .narrow-container {
      max-width: 540px !important;
      margin-bottom: 1.2rem !important;
  }
}

@media (min-width: 768px) {
  .narrow-container {
      max-width: 720px !important;
      margin-bottom: 1.2rem !important;
  }
}

@media (min-width: 992px) {
  .narrow-container {
      max-width: 850px !important;
      margin-bottom: 1.2rem !important;
  }
}

@media (min-width: 1200px) {
  .narrow-container {
      max-width: 950px !important;
      margin-bottom: 1.2rem !important;
  }
}

.edith .col-md-6 {
  flex: 0 0 47.66667% !important;
  max-width: 47.66667% !important;
}


@media (min-width: 576px) {
  .edith .pagination-md .page-link {
      padding: 0.5rem 1.25rem;
      font-size: 1.35rem;
      line-height: 1.25;
  }

  .edith .pagination-md .page-item:first-child .page-link {
      border-top-left-radius: 0.3rem;
      border-bottom-left-radius: 0.3rem;
  }

  .edith .pagination-md .page-item:last-child .page-link {
      border-top-right-radius: 0.3rem;
      border-bottom-right-radius: 0.3rem;
  }
}
@media (max-width: 425px) {
  .edith .pagination-md .page-link {
      padding: 0.25rem 0.5rem;
      font-size: 0.875rem;
      line-height: 1.5;
  }

  .edith .pagination-md .page-item:first-child .page-link {
      border-top-left-radius: 0.2rem;
      border-bottom-left-radius: 0.2rem;
  }

  .edith .pagination-md .page-item:last-child .page-link {
      border-top-right-radius: 0.2rem;
      border-bottom-right-radius: 0.2rem;
  }
}

/*
  Styling for dynamic icon on each CA card corresponding to its date.
*/
.edith .dynamic-cal-icon .fa-calendar {
  color: #8F8586;
}

.edith .dynamic-cal-icon .fa-stack-1x {
  color:white;
}

.edith .dynamic-cal-icon .fa-stack-1x .icon-date{
  font-size:26px;
  margin-top: 11px;
  display:block;
  white-space: nowrap;
}

.edith .lead {
  font-size: 1.55rem !important;
}

/*    ANIMATION    */
/* =============== */
/*
Using CSS transitions for when the enter and move events
are triggered for the element that has the `ca-repeated-elem` class.
In this case, the CA item cards.
*/
/* Animations currently set to 0s for desktop. May change later. */
.ca-repeated-elem.ng-enter, .ca-repeated-elem.ng-move {
  -webkit-animation:0s my_animation_show;
  animation:0s my_animation_show;
}

/*
  `.ng-enter-active` and `.ng-move-active` are where the transition destination
  properties are set so that the animation knows what to animate.
  Although animation is same as above, the timing these classes are applied is different.
*/
.ca-repeated-elem.ng-enter.ng-enter-active,
.ca-repeated-elem.ng-move.ng-move-active {
  -webkit-animation:0s my_animation_show;
  animation:0s my_animation_show;
}

/*
  Using CSS keyframe animations for when the `leave` event
  is triggered for the element that has the `ca-repeated-elem` class.
*/
.ca-repeated-elem.ng-leave {
  -webkit-animation:0.3s my_animation_hide;
  animation:0.3s my_animation_hide;
}


/*
  The animations are defined here.
*/
@keyframes my_animation_show {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes my_animation_hide {
  from { opacity: 1; }
  to   { opacity: 0; }
}


@keyframes hide {
  0% {
    opacity:1;
    transform: scale(1);
  }
  30% {
    transform: scale(1.02);
  }
  100% {
    opacity:0;
    transform: scale(0.5);
  }
}

@-webkit-keyframes hide {
  0% {
    opacity:1;
    transform: scale(1);
  }
  30% {
    transform: scale(1.02);
  }
  100% {
    opacity:0;
    transform: scale(0.5);
  }
}


@keyframes show {
  0% {
    opacity:0;
    transform: scale(0.5);
  }
  70% {
    transform: scale(1.02);
  }
  100% {
    opacity:1;
    transform: scale(1);
  }
}

@-webkit-keyframes show {
  0% {
    opacity:0;
    transform: scale(0.5);
  }
  70% {
    transform: scale(1.02);
  }
  100% {
    opacity:1;
    transform: scale(1);
  }
}


/* LOADING CADRS STYLES */
/* ==================== */
.loading-cards .l-card {
  height: auto;
  width: 100%;
  background-color: white;
  padding: 20px;
  /* padding-top: 10px; */
  padding-left: 30px;
  padding-right: 28px;
  border-radius: 2px;
  border: 1px rgb(223, 223, 223) solid;
}
.loading-cards .loader-stripes + .loader-stripes {
  margin-top: 15px;
}
.loading-cards .loader-stripe {
  overflow: hidden;
  position: relative;
  display: block;
  color: transparent;
  opacity: 0.1;
  background-color: #637282;
  height: 15px;
}
.loading-cards .loader-stripe::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  background: rgba(255, 255, 255, 0.13);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation-name: slide;
          animation-name: slide;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
@-webkit-keyframes slide {
  0% {
    left: -100%;
 }
  100% {
    left: 100%;
 }
}
@keyframes slide {
  0% {
    left: -100%;
 }
  100% {
    left: 100%;
 }
}
.loading-cards .img-loader-stripe {
  width: 100%;
  height: 120px;
}
.loading-cards .title-loader-stripe {
  width: 90%;
  height: 20px;
}
/* .loading-cards .text-loader-stripe:nth-child(1) {
  width: 100%;
  height: 10px;
  margin-top: 5px;
} */
.loading-cards .text-loader-stripe:nth-child(1) {
  width: 80%;
  height: 10px;
  margin-top: 5px;
}
.loading-cards .text-loader-stripe:nth-child(2) {
  width: 50%;
  height: 10px;
  margin-top: 5px;
}
.loading-cards .mid-loader-stripe {
  width: 40%;
}
.overflowing{
  font-size: 12px !important;
}
