.slider-carousel {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.slider-carousel .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
    /*border-radius: 0;*/
    background-color: #005EC460;
    /*box-shadow: 0 2px 8px #000E7480;*/
    z-index: 5;
    line-height: 1;
    border-radius: 50px;
}

.slider-carousel .btn.white {
    background-color: #ffffff60;
}

.slider-carousel .btn img {
    width: 24px;
    height: 24px;
}

@media (max-width: 767px) {
    .slider-carousel .btn img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 990px) {
    .slider-carousel .btn {
        /*width: 30px;*/
        /*height: 30px;*/
        top: 100%;
        transform: none;
        margin-top: 10px;
    }

    .slider-carousel button.btn {
        padding: 7px;
    }
}

.slider-carousel .prev {
    left: 5px;
}

.slider-carousel .next {
    right: 5px;
}

.slider-carousel .btn-check:checked + .btn,
.slider-carousel .btn.active,
.slider-carousel .btn.show
/*.slider-carousel .btn:first-child:active,*/
/*.slider-carousel :not(.btn-check) + .btn:active */
{
    /*transform: translateY(-50%);*/
    background-color: var(--accentColor);
}

.slider-carousel .btn:hover {
    /*transform: translateY(-50%);*/
    background-color: var(--accentColor);
}

.slider-carousel .btn.white:hover {
    /*transform: translateY(-50%);*/
    background-color: white;
}

.slider-carousel .btn-check:focus + .btn,
.slider-carousel .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem hsla(0, 100%, 70%, 0);
}


*:has(> .slider-carousel) > .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /*margin-top: clamp(40px, 20vw, 70px);;*/
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

@media (max-width: 767px) {
    *:has(> .slider-carousel) > .dots {
        gap: 5px;
    }
}

*:has(> .slider-carousel) > .dots .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
    transition: background-color 0.2s ease;
}

*:has(> .slider-carousel) > .dots .dot:hover {
    background-color: var(--accentColor);
}

*:has(> .slider-carousel) > .dots span.dot.active {
    background-color: var(--accentColor);
    /*outline: 2px solid var(--accentColor);*/
    /*outline-offset: 3px;*/
}

.slider-carousel .item {
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease-in-out;
    width: 100%;

    border-radius: var(--border-radius);
    overflow: hidden;
}

.slider-carousel .active {
    opacity: 1;
    display: block;
}

.slider-carousel .slider-inner {
    display: flex;
    flex-direction: column;
}

.slider-carousel .slider-inner .podpis {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: normal;
    text-transform: none;
}

.slider-carousel .slider-inner .opinion-text {
    font-family: "Montserrat", sans-serif;
    color: #a0a0a0;
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.slider-carousel .slider-inner p.text {
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    margin-bottom: 20px;
}

.slider-carousel .slider-inner {
    position: relative;
    min-height: 131px;
}

.slider-carousel .slider-inner * {
    position: relative;
    z-index: 2;
}

.slider-carousel .slider {
    position: relative;
}

@media (min-width: 991px) {
    /*.slider-carousel .slider:before {
        content: "";
        z-index: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        left: -120px;
        width: calc(100% + 240px);
        border: 0;
    }*/

    /*.slider-carousel .slider-inner::before {
        position: absolute;
        content: "”";
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 100px;
        color: var(--textColorLight);
        top: -95px;
        right: 0;
        z-index: 10;
    }

    .slider-carousel .slider-inner::after {
        position: absolute;
        content: "“";
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 100px;
        color: var(--textColorLight);
        bottom: -147px;
        left: 0;
        z-index: 10;
    }*/
}

/*.slider-carousel .slider:after {
    content: "";
    z-index: 1;
    position: absolute;
    top: -40px;
    height: calc(100% + 80px);
    left: -60px;
    width: calc(100% + 120px);
    background-color: white;
    border: 0;
    max-width: calc(100vw);
    box-shadow: 0 4px 16px #00000010;
}

@media (max-width: 991px) {
    .slider-carousel .slider:after {
        width: calc(100vw - 10px);
        left: -50px;
    }
}


@media (max-width: 767px) {
    .slider-carousel .slider:after {
        width: 100vw;
        left: -29px;
    }
}*/

.slide-caption {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}