.clock-container{
    background-color: #e9f2fa;
    margin-bottom: 0.75rem;
    text-align: center;
    padding: 0.25rem 0;
    border: 1px dashed #b6d6f0;
    border-radius: 3px;
}

.night .clock-container{
    background-color: #181a1b;
    border: 1px dashed #444;
}

.clock-container>div{
    width: 15rem;
    height: 15rem;
    background-color: #fff;
    border-radius: 50%;
    margin: 0.5rem auto;
}

.night .clock-container>div{
    background-color: #444444;
}

.clock-container svg{
    
}

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

.progress-editdiv {
    display: flex;
    gap: 0.6rem;
    justify-items: start;
    align-items: center;
    justify-content: start;
    border: 1px solid #eee;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
}

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

.progress-editdiv span.icons {
    font-size: 0.6rem;
    font-weight: bold;
    color: #6666;
    cursor: pointer;
}

.night .progress-editdiv span.icons{
    color:#888;
}

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

.layui-tab-content{
    padding: 0;
}

.clocksetup{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
}

.layui-form-item{
    margin-bottom: 0;
}

#fileimgs{
    text-align: center;
    color: #aaa;
    font-size: 0.55rem;
    width: calc(100% - 1.9rem);
    float: left;
    cursor: pointer;
}

#fileimgsclear{
    border: 1px solid #eeeeee;
    width: 1.9rem;
    height: 1.9rem;
    display: inline-block;
    line-height: 1.9rem;
    text-align: center;
    border-left: 0;
    cursor: pointer;
}

.night #fileimgsclear{
    border: 1px solid #444;
    border-left: 0;
    background-color: #181a1b;
    color: #aaa;
}

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

.color_inp{
    width: calc(100% - 1.9rem);
    float: left;
}
.layui-colorpicker{
    padding: 0.25rem 0.25rem 0.25rem 0.25rem;
    border-left: 0;
}
.night .layui-colorpicker{
    border: 1px solid #444;
    border-left: 0;
    background-color: #181a1b;
}
.colorselect{
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    display: inline-block !important;
    clear: none !important;
    float: left;
}

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

.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;
    }
}

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

@media screen and (max-width: 1260px){
    .clocksetup {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media screen and (max-width: 360px){
    .clock-container>div {
        width: 13rem;
        height: 13rem;
    }
}

@media screen and (max-width: 310px){
    .clock-container>div {
        width: 11rem;
        height: 11rem;
    }
}

@media screen and (max-width: 280px){
    .clock-container>div {
        width: 8rem;
        height: 8rem;
    }
}

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