.subcomponent-1 {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.subcomponent-1 .control-panel {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}
.subcomponent-1 .control-panel .arrow {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d6350f;
    border: none;
    cursor: pointer;
    pointer-events: auto;
}
.subcomponent-1 .control-panel .arrow > img {
    width: 1.5rem;
    height: 1.5rem;
    -o-object-fit: contain;
    object-fit: contain;
}
.subcomponent-1 .control-panel .left {
    transform: rotate(180deg);
}
.subcomponent-1 .carousel-window {
    height: 42.5rem;
    width: 100%;
    z-index: 1;
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.subcomponent-1 .carousel-window .carousel {
    position: relative;
    left: 0%;
    display: flex;
    height: 100%;
    transition: 0.5s;
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.subcomponent-1 .carousel-window .carousel:active {
    cursor: grabbing;
}
.subcomponent-1 .carousel-window .carousel > img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0.5rem;
    pointer-events: none;
}
@container (max-width: 60rem) {
    .subcomponent-1 .carousel-window {
        height: 30rem;
    }
}
@container (max-width: 30rem) {
    .subcomponent-1 .control-panel .arrow {
        width: 2.25rem;
        height: 2.25rem;
    }
    .subcomponent-1 .control-panel .arrow > img {
        width: 1rem;
        height: 1rem;
    }
    .subcomponent-1 .carousel-window {
        height: 20rem;
    }
}
