/* =========================================================
   DS215J
========================================================= */

.ds215j-wrapper {

    width: 140px;
    height: 220px;

    transform:
        scale(.38);

    transform-origin:
        center center;

    flex-shrink: 0;
}


/* =========================================================
   主機
========================================================= */

.ds215j-nas {

    width: 140px;
    height: 220px;

    background: #f7f7f9;

    border-radius: 10px;

    display: flex;

    padding: 0;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.15),
        inset -2px -2px 5px rgba(0,0,0,0.05),
        inset 2px 2px 5px rgba(255,255,255,0.9);

    border: 1px solid #e2e2e6;

    font-family:
        'Segoe UI',
        sans-serif;
}


/* =========================================================
   白色面板
========================================================= */

.ds215j-nas .white-front-face {

    flex: 1;

    height: 100%;

    background:
        linear-gradient(
            135deg,
            #ffffff 60%,
            #f0f0f4
        );

    position: relative;

    display: flex;

    align-items: flex-end;

    padding-left: 12px;
    padding-bottom: 18px;
}

.ds215j-nas .syno-brand-text {

    font-size: 9px;

    color: #a0a0ab;

    font-weight: bold;

    letter-spacing: .5px;

    opacity: .8;
}


/* =========================================================
   控制面板
========================================================= */

.ds215j-nas .gray-control-strip {

    width: 36px;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #5a5a62,
            #43434a
        );

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    align-items: center;

    padding: 20px 0;

    box-sizing: border-box;

    box-shadow:
        inset 1px 0 3px
        rgba(0,0,0,.3);
}


/* =========================================================
   LED
========================================================= */

.ds215j-nas .ds-led-group {

    display: flex;

    flex-direction: column;

    gap: 14px;

    align-items: center;

    width: 100%;
}

.ds215j-nas .ds-led-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 3px;

    width: 100%;
}

.ds215j-nas .ds-led-item label {

    font-size: 5.5px;

    color: #c2c2cb;

    transform: scale(.85);

    font-weight: 600;
}

.ds215j-nas .ds-led {

    width: 4px;
    height: 4px;

    border-radius: 50%;
}

.ds215j-nas .status-g {

    background: #00e676;

    box-shadow:
        0 0 6px #00e676,
        0 0 2px #fff;
}

.ds215j-nas .lan-g {

    background: #00e676;

    box-shadow:
        0 0 4px #00e676;
}

.ds215j-nas .disk-g {

    background: #39ff14;

    box-shadow:
        0 0 5px #39ff14;

    animation:
        ds215j-blink
        1.8s
        infinite
        alternate
        ease-in-out;
}

.ds215j-nas
.ds-led-item:nth-child(4)
.disk-g {

    animation-delay: .4s;
}


/* =========================================================
   電源
========================================================= */

.ds215j-nas .ds-power-zone {

    margin-bottom: 5px;
}

.ds215j-nas .ds-round-power-btn {

    width: 16px;
    height: 16px;

    background:
        linear-gradient(
            #4f4f56,
            #2d2d33
        );

    border-radius: 50%;

    border: 1px solid #222;

    display: flex;

    justify-content: center;
    align-items: center;

    box-shadow:
        0 2px 4px rgba(0,0,0,.4),
        inset 0 1px 1px
        rgba(255,255,255,.2);
}

.ds215j-nas .ds-power-blue {

    width: 4px;
    height: 4px;

    background: #00b0ff;

    border-radius: 50%;

    box-shadow:
        0 0 8px #00b0ff,
        0 0 2px #fff;
}


@keyframes ds215j-blink {

    0% {
        opacity: .3;
        filter: brightness(.7);
    }

    45% {
        opacity: 1;
        filter: brightness(1.2);
    }

    60% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }

}