.x-carousel-slider {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.x-carousel-slider-item {
    flex: 1 0 0;
}

.x-carousel-nav {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.x-carousel-switch {
    width: 50px;
    height: 25px;
    margin: 8px;
    border-radius: 25px;
    cursor: pointer;
    user-select: none;
    color: white;
    background: #6567C9;
    /* background: linear-gradient(107.54deg, #0078d4 .39%, #8661c5 51.23%, #ff9349 100%) fixed; */
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-carousel-switch:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.x-carousel-pages {
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-carousel-page {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #6567C9;
    /* background: linear-gradient(107.54deg, #0078d4 .39%, #8661c5 51.23%, #ff9349 100%) fixed; */
    margin: 0 3px;
    cursor: pointer;
    transition: width 0.25s ease, height 0.25s ease;
}

.x-carousel-page.x-carousel-page-active {
    width: 12px;
    height: 13px;
}
