.carousel-container {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  touch-action: none;
}
.insert-page .panel-layout {
	max-width:1460px;
	background:rgba(255,255,255,.2);
	padding:20px
	}
	
.carousel {
display: inline-flex;
transition: transform 0.3s ease-in-out;
cursor: grab;
touch-action: none;
}

.carousel-item {
min-width: 100vw;
overflow-y: scroll;
color: black;
display: flex;
user-select: none;
justify-content: center;
}
.carousel-controls {text-align:center;}
.carousel-controls button {
display:flex;
position:relative;
  transform: translateY(-50%);
 
	border-radius:8px;
  color: white;
  border: none;
  padding: 8px 10px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1;
max-width:80%;
margin: 25px auto 0 auto;

	
}

.prev-btn { display:inline-block;margin-top:40px;background:#660000}
.next-btn { display:inline-block;margin-top:40px;background:#3e7e00}

.carousel-controls button:hover {
  opacity: .8;

}