/* 
 *  Owl Carousel - Animate Plugin
 */
 #stacks_in_1 .owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#stacks_in_1 .owl-carousel .owl-animated-in {
  z-index: 0;
}
#stacks_in_1 .owl-carousel .owl-animated-out {
  z-index: 1;
}
#stacks_in_1 .owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
 #stacks_in_1 .owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
 #stacks_in_1 .owl-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;
}
#stacks_in_1 .owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
#stacks_in_1 .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#stacks_in_1 .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
#stacks_in_1 .owl-carousel .owl-controls .owl-nav .owl-prev,
#stacks_in_1 .owl-carousel .owl-controls .owl-nav .owl-next,
#stacks_in_1 .owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#stacks_in_1 .owl-carousel.owl-loaded {
  display: block;
}
#stacks_in_1 .owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
#stacks_in_1 .owl-carousel.owl-hidden {
  opacity: 0;
}
#stacks_in_1 .owl-carousel .owl-refresh .owl-item {
  display: none;
}
#stacks_in_1 .owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#stacks_in_1 .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
#stacks_in_1 .owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
#stacks_in_1 .owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
#stacks_in_1 .owl-carousel.owl-rtl {
  direction: rtl;
}
#stacks_in_1 .owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
#stacks_in_1 .no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
 #stacks_in_1 .owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
#stacks_in_1 .owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
 #stacks_in_1 .owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
#stacks_in_1 .owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
#stacks_in_1 .owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
#stacks_in_1 .owl-carousel .owl-video-playing .owl-video-tn,
#stacks_in_1 .owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
#stacks_in_1 .owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
#stacks_in_1 .owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}.walkies,
.walkies-nohtml5 {
  height: 8px;
  border: none;
  z-index: 500;
  color: rgba(202, 8, 32, 1.00);
  width: 100%;
  display: block
}

.walkies {
  background: rgba(234, 234, 234, 1.00);
}





div.walkies,
progress.walkies {
  position: fixed;
  bottom: 0;
}





progress.walkies {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

progress.walkies::-webkit-progress-bar {
  background-color: transparent
}

progress.walkies::-webkit-progress-value {
  background-color: rgba(202, 8, 32, 1.00)
}

progress.walkies::-moz-progress-bar {
  background-color: rgba(202, 8, 32, 1.00)
}

.walkies-nohtml5 {
  background: #eee
}

.walkies-nohtml5 span {
  width: 0;
  height: 100%;
  display: block;
  text-indent: -9999px;
  background: rgba(202, 8, 32, 1.00)
}

.animated .walkies-nohtml5 span {
  -webkit-transition: width .3s ease;
  transition: width .3s ease
}

@media print {
  div.walkies,
  progress.walkies {
    display: none;
  }
}



/* @group Generic Styles */

#ruleStackstacks_in_37,
#ruleStackstacks_in_37:before,
#ruleStackstacks_in_37:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_37 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */
#ruleStackstacks_in_37 {
	width: 100%;
}
/*  */

/*  */

/*  */

#ruleStackstacks_in_37 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(173, 0, 20, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_37 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */
#ruleStackstacks_in_37 {
	text-align: center;
}

#ruleStackstacks_in_37:before,
#ruleStackstacks_in_37:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	right: 40px;
	height: 0px;
	border-top: 3px dashed rgba(189, 0, 26, 1.00);
}

#ruleStackstacks_in_37:before {
	left: -50%;
	margin-left: -20px;
}

#ruleStackstacks_in_37:after {
	left: 50%;
	margin-left: 20px;
}

#ruleStackstacks_in_37 a {
	left: 50%;
	margin-left: -20px;
}
/*  */

/*  */

/*  */
/*  */

#stacks_in_42 .show-on-focus {
  display: none;
  text-align: center;
}

#stacks_in_42 .owl-carousel:focus .show-on-focus {
  display: block;
}

#stacks_in_42 .scrolly-focus-message {
  background: rgba(205, 205, 205, 1.00);
  color: rgba(51, 51, 51, 1.00);
  padding: 5px;
  text-align: center;
}

#stacks_in_42 .owl-prev,
#stacks_in_42 .owl-next {
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  margin: 0px 5px;
  border-radius: 0.4rem;
  padding: 0.4rem 1.2rem;
  background: rgba(25, 25, 25, 1.00);
  border: 1px solid rgba(0, 0, 0, 1.00);
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  text-align: center;
}

#stacks_in_42 .owl-prev:focus,
#stacks_in_42 .owl-next:focus {
  background: ;
  border: 1px solid ;
  color: ;
}

#stacks_in_42 .owl-prev:active,
#stacks_in_42 .owl-next:active {
  background: rgba(255, 47, 146, 1.00);
  border: 1px solid rgba(255, 47, 146, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#stacks_in_42 .owl-prev.disabled,
#stacks_in_42 .owl-next.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}








#stacks_in_42 .owl-prev {
  margin-left: 0;
}

#stacks_in_42 .owl-next {
  float: right;
  margin-right: 0;
}




/* @group Generic Styles */

#ruleStackstacks_in_38,
#ruleStackstacks_in_38:before,
#ruleStackstacks_in_38:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_38 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */
#ruleStackstacks_in_38 {
	width: 100%;
}
/*  */

/*  */

/*  */

#ruleStackstacks_in_38 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(173, 0, 20, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_38 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */
#ruleStackstacks_in_38 {
	text-align: center;
}

#ruleStackstacks_in_38:before,
#ruleStackstacks_in_38:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	right: 40px;
	height: 0px;
	border-top: 3px dashed rgba(189, 0, 26, 1.00);
}

#ruleStackstacks_in_38:before {
	left: -50%;
	margin-left: -20px;
}

#ruleStackstacks_in_38:after {
	left: 50%;
	margin-left: 20px;
}

#ruleStackstacks_in_38 a {
	left: 50%;
	margin-left: -20px;
}
/*  */

/*  */

/*  */
/*  *//* @group Generic Styles */

#ruleStackstacks_in_296,
#ruleStackstacks_in_296:before,
#ruleStackstacks_in_296:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_296 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */
#ruleStackstacks_in_296 {
	width: 100%;
}
/*  */

/*  */

/*  */

#ruleStackstacks_in_296 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(173, 0, 20, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_296 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */
#ruleStackstacks_in_296 {
	text-align: center;
}

#ruleStackstacks_in_296:before,
#ruleStackstacks_in_296:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	right: 40px;
	height: 0px;
	border-top: 3px dashed rgba(189, 0, 26, 1.00);
}

#ruleStackstacks_in_296:before {
	left: -50%;
	margin-left: -20px;
}

#ruleStackstacks_in_296:after {
	left: 50%;
	margin-left: 20px;
}

#ruleStackstacks_in_296 a {
	left: 50%;
	margin-left: -20px;
}
/*  */

/*  */

/*  */
/*  */

#stacks_in_90 .show-on-focus {
  display: none;
  text-align: center;
}

#stacks_in_90 .owl-carousel:focus .show-on-focus {
  display: block;
}

#stacks_in_90 .scrolly-focus-message {
  background: rgba(205, 205, 205, 1.00);
  color: rgba(51, 51, 51, 1.00);
  padding: 5px;
  text-align: center;
}

#stacks_in_90 .owl-prev,
#stacks_in_90 .owl-next {
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  margin: 0px 5px;
  border-radius: 0.4rem;
  padding: 0.4rem 1.2rem;
  background: rgba(25, 25, 25, 1.00);
  border: 1px solid rgba(0, 0, 0, 1.00);
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  text-align: center;
}

#stacks_in_90 .owl-prev:focus,
#stacks_in_90 .owl-next:focus {
  background: ;
  border: 1px solid ;
  color: ;
}

#stacks_in_90 .owl-prev:active,
#stacks_in_90 .owl-next:active {
  background: rgba(255, 47, 146, 1.00);
  border: 1px solid rgba(255, 47, 146, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#stacks_in_90 .owl-prev.disabled,
#stacks_in_90 .owl-next.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}








#stacks_in_90 .owl-prev {
  margin-left: 0;
}

#stacks_in_90 .owl-next {
  float: right;
  margin-right: 0;
}




/* @group Generic Styles */

#ruleStackstacks_in_39,
#ruleStackstacks_in_39:before,
#ruleStackstacks_in_39:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_39 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */
#ruleStackstacks_in_39 {
	width: 100%;
}
/*  */

/*  */

/*  */

#ruleStackstacks_in_39 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(173, 0, 20, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_39 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */
#ruleStackstacks_in_39 {
	text-align: center;
}

#ruleStackstacks_in_39:before,
#ruleStackstacks_in_39:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	right: 40px;
	height: 0px;
	border-top: 3px dashed rgba(189, 0, 26, 1.00);
}

#ruleStackstacks_in_39:before {
	left: -50%;
	margin-left: -20px;
}

#ruleStackstacks_in_39:after {
	left: 50%;
	margin-left: 20px;
}

#ruleStackstacks_in_39 a {
	left: 50%;
	margin-left: -20px;
}
/*  */

/*  */

/*  */
/*  */

#stacks_in_274 .show-on-focus {
  display: none;
  text-align: center;
}

#stacks_in_274 .owl-carousel:focus .show-on-focus {
  display: block;
}

#stacks_in_274 .scrolly-focus-message {
  background: rgba(205, 205, 205, 1.00);
  color: rgba(51, 51, 51, 1.00);
  padding: 5px;
  text-align: center;
}

#stacks_in_274 .owl-prev,
#stacks_in_274 .owl-next {
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  margin: 0px 5px;
  border-radius: 0.4rem;
  padding: 0.4rem 1.2rem;
  background: rgba(25, 25, 25, 1.00);
  border: 1px solid rgba(0, 0, 0, 1.00);
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  text-align: center;
}

#stacks_in_274 .owl-prev:focus,
#stacks_in_274 .owl-next:focus {
  background: ;
  border: 1px solid ;
  color: ;
}

#stacks_in_274 .owl-prev:active,
#stacks_in_274 .owl-next:active {
  background: rgba(255, 47, 146, 1.00);
  border: 1px solid rgba(255, 47, 146, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#stacks_in_274 .owl-prev.disabled,
#stacks_in_274 .owl-next.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}








#stacks_in_274 .owl-prev {
  margin-left: 0;
}

#stacks_in_274 .owl-next {
  float: right;
  margin-right: 0;
}




/* @group Generic Styles */

#ruleStackstacks_in_40,
#ruleStackstacks_in_40:before,
#ruleStackstacks_in_40:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_40 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */
#ruleStackstacks_in_40 {
	width: 100%;
}
/*  */

/*  */

/*  */

#ruleStackstacks_in_40 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(173, 0, 20, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_40 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */
#ruleStackstacks_in_40 {
	text-align: center;
}

#ruleStackstacks_in_40:before,
#ruleStackstacks_in_40:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	right: 40px;
	height: 0px;
	border-top: 3px dashed rgba(189, 0, 26, 1.00);
}

#ruleStackstacks_in_40:before {
	left: -50%;
	margin-left: -20px;
}

#ruleStackstacks_in_40:after {
	left: 50%;
	margin-left: 20px;
}

#ruleStackstacks_in_40 a {
	left: 50%;
	margin-left: -20px;
}
/*  */

/*  */

/*  */
/*  */
#tabsstacks_in_106 {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: block;
}

#tabsstacks_in_106 li {
  display: block;
  margin: 0;
  flex-grow: 1;
  text-align: center;
}

#tabsstacks_in_106 li .tabtastic-button {
  padding: 10px 20px 10px 20px;
  margin: 5px 0px 5px 0px;
  cursor: pointer;
  background: rgba(93, 102, 117, 1.00);
  font-size: 20px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 1.00);
  border-radius: 5px 5px 5px 5px;
  transition: all 0ms ease-in-out;
  
	
  
  
  
  text-align: center;
  
  
}

@media screen and (min-width: 568px) {
  #tabsstacks_in_106 {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }

  #tabsstacks_in_106 li {
      display: inline-block;
      flex-grow: 1;
  }

  #tabsstacks_in_106 li .tabtastic-button {
    padding: 10px 20px 10px 20px;
    margin: 0px 10px 0px 10px;
  }

  #tabsstacks_in_106 li:first-child .tabtastic-button {
    margin-left: 0;
  }

  #tabsstacks_in_106 li:last-child .tabtastic-button {
    margin-right: 0;
  }
}

#tabsstacks_in_106 li .tabtastic-button:hover {
  background: rgba(250, 12, 25, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#tabsstacks_in_106 li.current .tabtastic-button {
  background: rgba(250, 12, 25, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

.tabtastic-content{
  display: none;
  padding: 10px 0px 10px 0px;
  margin: 0px 0px 0px 0px;
  background-color: rgba(255, 255, 255, 0.00);
}

.tabtastic-content.current{
  display: inherit;
}


#stacks_in_104 .show-on-focus {
  display: none;
  text-align: center;
}

#stacks_in_104 .owl-carousel:focus .show-on-focus {
  display: block;
}

#stacks_in_104 .scrolly-focus-message {
  background: rgba(205, 205, 205, 1.00);
  color: rgba(51, 51, 51, 1.00);
  padding: 5px;
  text-align: center;
}

#stacks_in_104 .owl-prev,
#stacks_in_104 .owl-next {
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  margin: 0px 5px;
  border-radius: 0.4rem;
  padding: 0.4rem 1.2rem;
  background: rgba(25, 25, 25, 1.00);
  border: 1px solid rgba(0, 0, 0, 1.00);
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  text-align: center;
}

#stacks_in_104 .owl-prev:focus,
#stacks_in_104 .owl-next:focus {
  background: ;
  border: 1px solid ;
  color: ;
}

#stacks_in_104 .owl-prev:active,
#stacks_in_104 .owl-next:active {
  background: rgba(255, 47, 146, 1.00);
  border: 1px solid rgba(255, 47, 146, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#stacks_in_104 .owl-prev.disabled,
#stacks_in_104 .owl-next.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}








#stacks_in_104 .owl-prev {
  margin-left: 0;
}

#stacks_in_104 .owl-next {
  float: right;
  margin-right: 0;
}






#stacks_in_135 .show-on-focus {
  display: none;
  text-align: center;
}

#stacks_in_135 .owl-carousel:focus .show-on-focus {
  display: block;
}

#stacks_in_135 .scrolly-focus-message {
  background: rgba(205, 205, 205, 1.00);
  color: rgba(51, 51, 51, 1.00);
  padding: 5px;
  text-align: center;
}

#stacks_in_135 .owl-prev,
#stacks_in_135 .owl-next {
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  margin: 0px 5px;
  border-radius: 0.4rem;
  padding: 0.4rem 1.2rem;
  background: rgba(25, 25, 25, 1.00);
  border: 1px solid rgba(0, 0, 0, 1.00);
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  text-align: center;
}

#stacks_in_135 .owl-prev:focus,
#stacks_in_135 .owl-next:focus {
  background: ;
  border: 1px solid ;
  color: ;
}

#stacks_in_135 .owl-prev:active,
#stacks_in_135 .owl-next:active {
  background: rgba(255, 47, 146, 1.00);
  border: 1px solid rgba(255, 47, 146, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#stacks_in_135 .owl-prev.disabled,
#stacks_in_135 .owl-next.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}








#stacks_in_135 .owl-prev {
  margin-left: 0;
}

#stacks_in_135 .owl-next {
  float: right;
  margin-right: 0;
}




/* @group Generic Styles */

#ruleStackstacks_in_41,
#ruleStackstacks_in_41:before,
#ruleStackstacks_in_41:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_41 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */
#ruleStackstacks_in_41 {
	width: 100%;
}
/*  */

/*  */

/*  */

#ruleStackstacks_in_41 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(173, 0, 20, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_41 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */
#ruleStackstacks_in_41 {
	text-align: center;
}

#ruleStackstacks_in_41:before,
#ruleStackstacks_in_41:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	right: 40px;
	height: 0px;
	border-top: 3px dashed rgba(189, 0, 26, 1.00);
}

#ruleStackstacks_in_41:before {
	left: -50%;
	margin-left: -20px;
}

#ruleStackstacks_in_41:after {
	left: 50%;
	margin-left: 20px;
}

#ruleStackstacks_in_41 a {
	left: 50%;
	margin-left: -20px;
}
/*  */

/*  */

/*  */
/*  */