.user-box.first-box .card{
    padding: 15px 30px !important;
}

/* copier */
.widget.copy{
    z-index: 200000;
    text-indent: 0;
    /* end of unsetters */
    position: absolute;
    /* right: 18px; */
    top: 10px;
    /* content: "double click to selection"; */
    padding: 0;
    width: auto;
    height: auto;
    position: absolute;
    font-size: 12px;
    color: #333;
    line-height: 20px;
    overflow: hidden;
    backface-visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    transition: all 400ms ease-in;
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
    display: none;
}

.widget.copy:hover{
    opacity: 0.75;
}
/* end of copier */

.user-box .card.tool-info-card .tool-subtitle{
    font-size: 20px;
}

.user-box .card.tool-info-card .tool-note{
    margin-left: 20px;
    margin-top: 10px;
    width: fit-content;
}

.user-box .card.tool-info-card .tool-note li{
    letter-spacing: 1px;
    margin-top: 10px;
    padding: 2px 4px;
    border-radius: 3px;
    background-color: var(--border-header-hover);
}

.user-box .card .third{
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.user-box .card .third .mode-label{
    padding: 4px 12px;
    border-radius: 4px;
    color: #ddd;
    font-weight: bold;
}

.user-box.button-box .card,
.user-box.editor-box .card{
    padding: 0 !important;
}

.user-box.editor-box .card{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 650px;
}

.user-box.editor-box .card .ruler{
    width: 6px;
    height: 90%;
    /* background-color: #aaa;
    border-radius: 10px;
    cursor: col-resize;
    transition: background-color 200ms ease-in; */
}

/* .user-box.editor-box .card .ruler:hover{
    background-color: #fff;
} */

.CodeMirror{
    width: calc(50% - 8px);
    height: 100%;
}

.CodeMirror .added-line{
    background-color: #17363f;
}

.CodeMirror .removed-line{
    background-color: #401919;
    text-decoration: line-through;
}

.user-box.button-box .card{
    display: block;
    height: 85px;
}

.user-box.button-box .card .mode-area{
    width: 100%;
    /* border: 1px solid; */
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.user-box.button-box .card .mode-area input#mode-input{
    outline: unset;
    border: 1px solid #aaa;
    padding: 0px 4px;
    font-size: 20px;
    background-color: transparent;
    color: #fff;
    width: 75px;
    border-radius: 4px;
}

.user-box.button-box .card .mode-area .mode-items{
    width: calc(100% - 90px);
    margin-left: 10px;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-y: auto;
}

.user-box.button-box .card .mode-area .mode-items::-webkit-scrollbar{
    display: none;
}

.user-box.button-box .card .mode-area .mode-items span{
    padding: 0px 6px;
    border-radius: 4px;
    margin-left: 3px;
    background-color: grey;
    color: #ddd;
    cursor: pointer;
    white-space: nowrap;
    font-size: 16px;
    font-weight: bold;
    font-family: Tohama;
}

.user-box.button-box .card .mode-area .mode-items span:hover{
    opacity: 0.75;
}


