div.carouselWrapper {
    display: flex; /* Add display: flex */
    justify-content: center; /* Add justify-content: center */
}

div.carouselWrapper div.items {
    white-space: nowrap;
    flex-flow: row nowrap;
    justify-content: space-between;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    display: flex;
    align-self: center;
    padding-bottom: 10px; /* Add padding between videos */
    scroll-behavior: smooth;
}

div.carouselWrapper div.items::-webkit-scrollbar {
    display: none;
}

div.carouselWrapper div.items:hover .item {
    opacity: 0.3;
}

div.carouselWrapper div.items:hover .item:hover {
    opacity: 1;
}

div.carouselWrapper div.control-container {
    height: 300px;
    position: absolute;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

div.carouselWrapper div.container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 220px;
    position: relative;
    width: 80%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    width: calc(100% - 110px); /* Subtract the width of the buttons */
}

div.carouselWrapper div.left-scroll {
    left: 0;
}

div.carouselWrapper div.left-scroll i {
    transform: translate(-60%, -50%);
}

div.carouselWrapper div.right-scroll {
    right: 0;
}

div.carouselWrapper div.right-scroll i {
    transform: translate(-40%, -50%);
}

div.carouselWrapper div.scroll {
    display: inline-block;
    color: #f6f6f6;
    top: 37%;
    transform: translateY(-50%); /* Change translate value */
    width: 50px; /* Change the width */
    height: 200px; /* Change the height */
    border: 1px solid #f6f6f6;
    border-radius: 0; /* Remove the border-radius */
    margin: 0 5px;
    z-index: 951;
    background-color: rgba(0, 0, 0, 0.7); /* Set a background color */
    opacity: 0.3; /* Set default opacity */
}

div.carouselWrapper div.scroll:hover {
    opacity: 1; /* Change opacity on hover */
}

div.carouselWrapper div.scroll i {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

div.carouselWrapper div.right-scroll i {
    border-width: 20px 0 20px 30px;
    border-color: transparent transparent transparent #f6f6f6;
}

div.carouselWrapper div.left-scroll i {
    border-width: 20px 30px 20px 0;
    border-color: transparent #f6f6f6 transparent transparent;
}

div.carouselWrapper .item {
    position: relative;
    align-self: center;
    width: 200px;
    height: 200px;
    margin: 0 3px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    z-index: 899;
}

div.carouselWrapper .item:hover {
    transform: scale(1.5);
    margin: 30px;
    opacity: 1;
    z-index: 950;
    overflow: visible;
}

div.carouselWrapper .item:hover .opacity-none {
    opacity: 1;
}

div.carouselWrapper .item .item-load-icon {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

div.carouselWrapper .item .opacity-none {
    opacity: 0;
}

div.carouselWrapper .item img.item-image {
    width: 200px;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

div.carouselWrapper .item .item-title-container {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

div.carouselWrapper .item .item-title {
    color: #f6f6f6;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}


div.carouselWrapper .item .item-description {
    color: #f6f6f6;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    white-space: pre-wrap;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    margin: 5px 0;
    padding: 10px 0;
}

div.carouselWrapper .button {
    position: absolute;
    color: #f6f6f6;
    font-size: 30px;
    border: 1px solid #f6f6f6;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    z-index: 950;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease-in-out;
}

div.carouselWrapper .button i {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -55%);
    z-index: 950;
}

div.carouselWrapper .button:hover {
    box-shadow: 0px 0px 50px #FFFFFF;
}