.carousel-container {
    max-width: 100%;
}

.carousel-container .gallery {
    width: 100%
}

.gallery-container {
    align-items: center;
    display: flex;
    height: 400px;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
	overflow: hidden;
}

.gallery-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--carousel-height);
    opacity: .4;
    position: absolute;
    transition: all .3s ease-in-out;
    width: 150px;
    z-index: 0;
	background: #ccc;
	padding: 12px;
	overflow: hidden;
	text-align: center;
	hyphens: none;
}

.gallery-item.gallery-item-selected {
	box-shadow: 0 0 30px rgba(255, 255, 255, .6), 0 0 60px rgba(255, 255, 255, .45), 0 0 110px rgba(255, 255, 255, .25), 0 0 100px rgba(255, 255, 255, .1);
    height: var(--carousel-selected-height);
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 2;
}

.gallery-item.gallery-item-previous,
.gallery-item.gallery-item-next {
    height: var(--carousel-nav-height);
    opacity: 1;
    width: 200px;
    z-index: 1
}

.gallery-item.gallery-item-previous {
    left: 30%;
    transform: translateX(-50%)
}

.gallery-item.gallery-item-next {
    left: 70%;
    transform: translateX(-50%)
}

.gallery-item.gallery-item-first {
    left: 15%;
    transform: translateX(-50%)
}

.gallery-item.gallery-item-last {
    left: 85%;
    transform: translateX(-50%)
}

.gallery-controls {
    display: flex;
    justify-content: center;
    margin: 30px 0
}

.gallery-controls span {
    cursor: pointer;
    font-size: 16px;
    margin: 0 20px;
    padding: 6px 15px;
    text-transform: capitalize
}

.gallery-controls span:focus {
    outline: none
}

.gallery-controls-prev {
    position: relative;
}

.gallery-controls-next {
    position: relative
}

.gallery-controls-prev.disabled, 
.gallery-controls-next.disabled {
    display: none;
}

.carousel-answers {
	display: flex;
	justify-content: center;
	margin-top: 20px;
    padding-bottom: 24px;
    flex-wrap: wrap;
    row-gap: 15px;

}

.carousel-answers label {
    width: 150px;
    text-align: center;
	margin: 0 10px;
	cursor: pointer;
	padding: 5px 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
}

.carousel-answers label:active {
  transform: translateY(4px);
}

.carousel-answers input[type="radio"] {
	display: none;
}

.carousel-answers input[type="radio"]:checked + label {
	background-color: #007bff;
	color: white;
}

.waiting1, 
.waiting2 {
    display: none;
}

.gallery-item.hidden {
    display: none;
}

.survey-consulting-carousel .question-title-container {
    background: #fff;
    color: black;
}

span.gallery-controls-previous {
    margin-left: 54px;
}

tr.currentRow {
    background: yellow;
}

.survey-consulting-carousel .answer-container {
    /*display: none;*/
}

.answer-container .ls-table-wrapper {
    display: var(--answer-display);
}

.gallery-controls span {
    display: none;
}

.gallery-controls span {
    display: var(--navigation-display);
}