.ppgs-slider-shell,
.ppgs-slider-shell * {
    box-sizing: border-box;
}

.ppgs-slider-shell {
    --ppgs-max-width: 980px;
    --ppgs-desktop-height: 570px;
    --ppgs-tablet-height: 420px;
    --ppgs-mobile-height: 300px;
    --ppgs-radius: 30px;
    --ppgs-fit: cover;
    width: 100%;
    max-width: var(--ppgs-max-width);
    margin: 0 auto;
    background: transparent !important;
}

.ppgs-slider {
    position: relative;
    width: 100%;
    padding: 38px 22px 0;
    background: transparent !important;
}

.ppgs-decor {
    position: absolute;
    top: 0;
    right: 18px;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: linear-gradient(135deg, #445fd6 0%, #7372d6 42%, #f2c4c8 100%);
    z-index: 0;
    pointer-events: none;
}

.ppgs-viewport {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: auto !important;
    border-radius: var(--ppgs-radius);
    background: transparent !important;
    isolation: isolate;
    line-height: 0;
}

.ppgs-track {
    display: flex;
    width: 100%;
    height: auto !important;
    align-items: flex-start;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.ppgs-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: auto !important;
    overflow: hidden;
    line-height: 0;
}

.ppgs-slide img {
    display: block;
    width: 100% !important;
    height: auto !important;
    object-fit: initial !important;
    object-position: center center;
    border: 0;
    box-shadow: none;
    max-width: none;
}

.ppgs-slide a,
.ppgs-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.ppgs-arrow {
    position: absolute;
    top: calc(50% + 2px);
    z-index: 4;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px !important;
    outline: 0;
    background: #ffffff !important;
    color: #a8a8ac !important;
    box-shadow: 0 8px 22px rgba(27, 27, 37, 0.12);
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, opacity 180ms ease;
    appearance: none;
    -webkit-appearance: none;
}

.ppgs-arrow:hover,
.ppgs-arrow:focus {
    color: #77777e !important;
    box-shadow: 0 10px 26px rgba(27, 27, 37, 0.18);
    transform: translateY(-50%) scale(1.04);
}

.ppgs-arrow:disabled {
    opacity: 0.48;
    cursor: not-allowed;
}

.ppgs-arrow svg {
    width: 26px;
    height: 26px;
    display: block;
    fill: currentColor;
}

.ppgs-prev {
    left: 0;
}

.ppgs-next {
    right: 0;
}

.ppgs-bars {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 31px;
    width: 100%;
    padding: 15px 22px 0;
    background: transparent !important;
}

.ppgs-bar {
    position: relative;
    width: 100%;
    max-width: 180px;
    height: 5px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px !important;
    background: transparent !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    overflow: visible;
}

.ppgs-bar span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: rgba(225, 224, 236, 0.98);
    transition: background 180ms ease, height 180ms ease;
}

.ppgs-bar.is-active span {
    height: 4px;
    background: #f4ad4a;
}

.ppgs-admin-notice {
    padding: 14px 16px;
    border: 1px solid #e1e1e1;
    background: #fff;
    border-radius: 10px;
    color: #444;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .ppgs-slider {
        padding: 32px 18px 30px;
    }

    .ppgs-decor {
        width: 62px;
        height: 62px;
        right: 12px;
    }

    .ppgs-bars {
        gap: 20px;
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 767px) {
    .ppgs-slider {
        padding: 26px 13px 24px;
    }

    .ppgs-arrow {
        width: 36px;
        height: 36px;
    }

    .ppgs-arrow svg {
        width: 23px;
        height: 23px;
    }

    .ppgs-bars {
        gap: 12px;
        padding: 11px 10px 0;
    }

    .ppgs-bar span {
        height: 3px;
    }

    .ppgs-decor {
        width: 54px;
        height: 54px;
        right: 8px;
        top: 0;
    }
}
