.icouxrpass{
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.night .icouxrpass{
    color: #bbb;
}

/******************************************/

.grids-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    justify-content: center;
    border: 1px solid #eee;
    padding: 0.75rem;
    margin-top: 0.75rem;
    border-radius: 3px;
    display: none;
}

.night .grids-wrapper{
    border:1px solid #444;
}

.matrix-box{
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
}

.night .matrix-box{
    border: 1px solid #444;
}

.matrix {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #eee;
    padding: 0.5rem 0;
    gap: 1px;
    background: #f6f7fa;
}

.night .matrix {
    border-top: 1px solid #444;
    background: #181a1b;
}

.matrix-label{
    text-align: center;
    padding: 0.75rem 0;
}

.cell {
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: bold;
}

@media screen and (max-width: 440px) {
    .grids-wrapper {
        grid-template-columns: 1fr;
    }
}