/* Slider container */
.voting-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.voting-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Each slide */
.voting-slide {
    min-width: 300px; /* Ensure slides have a fixed width */
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0 10px;
}

/* Navigation arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

/* Popup styles */
#popup {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    display:flex;
}

.popup-description{
    padding-left: 15px;
}


.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: relative;
    bottom: 30px;
	right:20px;
    margin-right: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.popup-video {
    text-align: center;
}

.popup-description {
    margin-top: 10px;
	width:50%;
}


.popup-content{
	padding:40px;
	max-width:100% !important;
}