.resdtfc{
    margin: auto;
    margin-top: 0.75rem;
    width: 100%;
    max-width: 24rem;
    display: none;
}

.resdtfcdiv{
    border: 1px solid #eee;
    border-radius: 3px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #f6f7fa;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem;
}

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

.resdtfcdiv>div{
    background-color: #fff;
    border:1px solid #eee;
}

.night .resdtfcdiv>div{
    background-color: #232627;
    border: 1px solid #444;
}

.resdtfcdiv>div>div:nth-child(1){
    text-align: center;
    height: 1.5rem;
    line-height: 1.5rem;
}

.resdtfcdiv>div>div:nth-child(2){
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    gap: 0.25rem;
    padding: 0.25rem 0 0.5rem 0;
    border-radius: 3px;
}

.resdtfcdiv>div>div:nth-child(2)>span{
    height: 1rem;
    line-height: 1rem;
}

.frac{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.frac .top{
    color: #4CAF50;
    border-bottom: 2px solid #4CAF50;
}

.reslihtml {
    border: 1px solid #eee;
    background-color: #f6f7fa;
    margin: 0.75rem auto 0 auto;
    padding: 0 0.5rem;
    border-radius: 3px;
}

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

.reslihtml>div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: #fff;
    margin: 0.5rem 0;
    border-radius: 3px;
}

.night .reslihtml>div{
    background-color: #232627;
}

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

@media screen and (max-width: 430px) {
    .resdtfcdiv {
        grid-template-columns: repeat(1, 1fr);
    }
}