.img-switcher-container-009bffd0 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.img-switcher-main-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.img-switcher-main {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.img-switcher-main.switching {
    opacity: 0.1;
}

.img-switcher-thumbs-wrapper {
    width: 100%;
}

.img-switcher-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.img-switcher-thumb-container {
    cursor: pointer;
}

.img-switcher-thumb {
    object-fit: cover;
    transition: opacity 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.img-switcher-thumb.active {
    opacity: 1;
    border-color: #333;
}
