/* Support Top Gallery Styles */
.support-top-gallery {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}
.support-top-gallery-inner {
    display: flex;
    transition: transform 2s cubic-bezier(0.4,0,0.2,1);
}
.support-top-gallery-item {
    flex: 0 0 100%;
    width: 100%;
}
.support-top-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}
.support-top-gallery-controls {
    text-align: center;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.support-top-gallery-controls button:active {
    background: #f0f0f0;
}
.support-top-gallery-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.support-top-gallery-dot {
    margin: 0 5px;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: var(--border1, 2px solid #111);
    background: var(--whnite, #fff);
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
}
.support-top-gallery-dot.active {
    background: #222;
    border-color: #222;
}
.support-top-gallery-prev:active,
.support-top-gallery-next:active {
    border: none !important;
}
.support-top-gallery-controls .stopBtn,
.support-top-gallery-controls .startBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 8px;
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
}
.support-top-gallery-controls .stopBtn:active,
.support-top-gallery-controls .startBtn:active,
.support-top-gallery-controls .stopBtn:hover,
.support-top-gallery-controls .startBtn:hover {
    background: none;
    border: none;
    box-shadow: none;
}
.support-top-gallery-controls .stopBtn img,
.support-top-gallery-controls .startBtn img {
    width: 20px;
    height: 20px;
} 