.xperia-service-coverage-window {
    box-sizing: border-box;
    width: 100%;
    max-width: 511px;
    min-height: 153px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-left: 0px!important;
    overflow: hidden;
}

.xperia-service-coverage-window *,
.xperia-service-coverage-window *::before,
.xperia-service-coverage-window *::after {
    box-sizing: border-box;
}

.xperia-service-coverage-window__title {
    width: 100%;
    min-height: 16px;
    display: flex;
    align-items: center;
    color: #aaaaaa;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.xperia-service-coverage-window__bars {
    width: 100%;
    height: 32px;
    padding-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.xperia-service-coverage-window__bar {
    width: 11.88px;
    height: 28px;
    display: block;
    flex: 0 0 11.88px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.xperia-service-coverage-window__bar.is-working {
    background: rgba(46, 244, 172, 0.3);
}

.xperia-service-coverage-window__bar.is-overlap {
    background: #2ef4ac;
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.533);
}

.xperia-service-coverage-window__times {
    width: 100%;
    height: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #aaaaaa;
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
}

.xperia-service-coverage-window__legend {
    width: 100%;
    min-height: 24px;
    padding-top: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.xperia-service-coverage-window__legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaaaaa;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    white-space: nowrap;
}

.xperia-service-coverage-window__dot {
    width: 8px;
    height: 8px;
    display: block;
    flex: 0 0 8px;
    border-radius: 8px;
}

.xperia-service-coverage-window__dot.is-overlap {
    background: #2ef4ac;
    box-shadow: 0 0 8px #34d399;
}

.xperia-service-coverage-window__dot.is-working {
    background: rgba(46, 244, 172, 0.3);
}

@media (max-width: 575px) {
    .xperia-service-coverage-window {
        max-width: 100%;
        padding: 16px;
        border-radius: 16px;
    }

    .xperia-service-coverage-window__bars {
        gap: 5px;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .xperia-service-coverage-window__bars::-webkit-scrollbar {
        display: none;
    }

    .xperia-service-coverage-window__legend {
        flex-wrap: wrap;
    }
}