textarea{
    resize: none !important;
}

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

.randnuber {
    min-height: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    background-color: #fff;
}

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

.randnuber span {
    font-size: 4rem;
    color: #444;
    transition: transform 0.3s cubic-bezier(0.18, 1.3, 0.6, 1), text-shadow 0.3s, opacity 0.2s;
}

.night .randnuber span{
    color: #eee;
}

.randnuber span.pop {
    animation: numberPop 0.4s ease-out forwards;
}

@keyframes numberPop {
    0% { transform: scale(1) rotate(0deg); opacity: 1; }
    30% { transform: scale(1.18) rotate(0.5deg); opacity: 1; }
    70% { transform: scale(1.05) rotate(-0.2deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.randnuber .demo {
    color: rgb(187 187 187 / 57%);
    font-size: 2rem;
}

.night .randnuber .demo{
    color: #444;
}

.tool_setups{
    display: none;
}

.setup_alerts .layui-form-select .layui-input {
    width: 100%;
}

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

.divbuts{
    padding: 0.5rem;
    border: 1px solid #eee;
    border-top: 0;
    border-radius: 0 0 3px 3px;
}

.night .divbuts{
    border:1px solid #444;
    border-top:0;
}

.divbuts button{
    padding: 0.4rem 1rem;
    text-align: center;
    border: 0;
    background-color: #607D8B;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.divbuts button:nth-child(1) {
    background-color: #009688;
}

.divbuts button:nth-child(2) {
    background-color: #795548;
}

@media screen and (max-width: 390px){
    .divbuts button:nth-child(1){
        width: calc(50% - 0.25rem);
        float: left;
    }
    .divbuts button:nth-child(2){
        width: calc(50% - 0.25rem);
        float: right;
    }
    .divbuts button:nth-child(3){
        width: 100%;
        margin-top: 0.5rem;
    }
}

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

.randnumres{
    border: 1px solid #eee;
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 0.75rem;
    display: none;
}

.night .randnumres {
    border: 1px solid #444;
}

.randnumres div{
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
}

.randnumres div span{
    float: right;
    color: #888;
    cursor: pointer;
    margin-left: 0.5rem;
}

.randnumres div strong{
    font-weight: unset;
}

.randnumres textarea{
    border: 1px solid #eee;
    color: rgba(0, 0, 0, .85);
    width: 100%;
    height: 8rem;
    padding: 0.5rem;
    font-size: 0.65rem;
    display: block;
}

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

@media screen and (max-width: 450px){
    .randnuber span{
        font-size: 2rem;
    }
}

@media screen and (max-width: 350px){
    .layui-form-pane .layui-form-label {
        width: 4rem;
    }
    .layui-form-pane .layui-input-block {
        margin-left: 4rem;
    }
}