/**
 * insta Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/instaCarousel2/instaCarousel2/blob/master/LICENSE
 */
/*
 *  insta Carousel - Core
 */
 
 	.insta-carousel img
	{
	border-radius: 250px;
    border: 3px #ffffff solid;
	}
	
	 	.insta-carousel h5
	{
		text-align: center;
		text-transform: capitalize;
	}
	
	@media (max-width: 800px){
	.top-stories {
    display: block!important;
    padding-top: 20px;
	
}
	
.insta-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .insta-carousel .insta-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .insta-carousel .insta-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .insta-carousel .insta-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .insta-carousel .insta-wrapper,
  .insta-carousel .insta-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .insta-carousel .insta-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .insta-carousel .insta-item img {
    display: block;
    width: 100%;
	margin: 7px 0;}
  .insta-carousel .insta-nav.disabled,
  .insta-carousel .insta-dots.disabled {
    display: none; }
  .insta-carousel .insta-nav .insta-prev,
  .insta-carousel .insta-nav .insta-next,
  .insta-carousel .insta-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .insta-carousel .insta-nav button.insta-prev,
  .insta-carousel .insta-nav button.insta-next,
  .insta-carousel button.insta-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .insta-carousel.insta-loaded {
    display: block; }
  .insta-carousel.insta-loading {
    opacity: 0;
    display: block; }
  .insta-carousel.insta-hidden {
    opacity: 0; }
  .insta-carousel.insta-refresh .insta-item {
    visibility: hidden; }
  .insta-carousel.insta-drag .insta-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	padding:3px;	}
  .insta-carousel.insta-grab {
    cursor: move;
    cursor: grab; }
  .insta-carousel.insta-rtl {
    direction: rtl; }
  .insta-carousel.insta-rtl .insta-item {
    float: right; }

/* No Js */
.no-js .insta-carousel {
  display: block; }

/*
 *  insta Carousel - Animate Plugin
 */
.insta-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.insta-carousel .insta-animated-in {
  z-index: 0; }

.insta-carousel .insta-animated-out {
  z-index: 1; }

.insta-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	insta Carousel - Auto Height Plugin
 */
.insta-height {
  transition: height 500ms ease-in-out; }

/*
 * 	insta Carousel - Lazy Load Plugin
 */
.insta-carousel .insta-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the insta-item that breaks page layouts
		 */ }
  .insta-carousel .insta-item .insta-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .insta-carousel .insta-item .insta-lazy[src^=""], .insta-carousel .insta-item .insta-lazy:not([src]) {
    max-height: 0; }
  .insta-carousel .insta-item img.insta-lazy {
    transform-style: preserve-3d; }

/*
 * 	insta Carousel - Video Plugin
 */
.insta-carousel .insta-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.insta-carousel .insta-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("insta.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.insta-carousel .insta-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.insta-carousel .insta-video-playing .insta-video-tn,
.insta-carousel .insta-video-playing .insta-video-play-icon {
  display: none; }

.insta-carousel .insta-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.insta-carousel .insta-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }