@charset "utf-8";
/* CSS Document */

.text-bold {
	font-weight: bold;
}

.text-bold-italic {
	font-weight: bold;
	font-style: italic;
}

.text-italic {
	font-style: italic;
}

.bg-honeyDew {
background-color: honeyDew !important;
}

.container-fluid {
	margin-top: 60px;	
}

#festing-sidebar {
	margin-top: 50px;	
}


.swipe-event-right {
  animation: rSwipe ;
  animation-duration: 400ms;
  animation-timing-function: cubic-bezier();
  animation-delay: 0;
  background-color: honeydew;
}


@keyframes rSwipe {
  from {left: 0px; }
  to {left: 150px;}
}



.swipe-event-left {
  animation: lSwwipe ;
  animation-duration: 200ms;
  animation-timing-function: cubic-bezier();
}

@keyframes lSwwipe {
  from {left: 0px;}
  to {left: -150px;}
}