/* root */
.pc-listing-type-container {
    position: absolute;
}

.fp-cover-container .image-item {
    margin-bottom: 0px !important;
}

.fp-cover-container {
    position: relative;
    height: calc(100vh - 74px);
}

.fp-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fp-cover img {
    object-fit: cover;
}

.fp-cover-active {
    opacity: 1;
    z-index: 2;
}

.fp-cover-legend-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    padding: 10px 20px;
    border-radius: 20px;
}

.fp-cover-legend {
    width: 50px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fp-cover-legend.fp-cover-legend-active {
    background-color: white;
}
