html {
    --keycolor: #1989fa;
    --bg: #F8F8FB;
    --line: #F0F0F0;
    --txt: 0A0A0A;
}

.fields {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    /* background-color: ; */

    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.fieldsbox {
    width: 40%;
    height: 100%;
    background-color: var(--bg);
    border-right: 1px solid var(--line);
    /* background-color: #00000050; */
    /* background-color: white; */

    box-shadow: 0 0 5px #ccc;
    border-radius: 5px 0 0 5px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fieldsheader {
    width: 100%;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.fieldsheader span {
    flex: 1;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #333;
    font-weight: 500;
    font-size: 12px;
}

.spanselected {
    color: #1989fa !important;
    font-weight: 700;

}

.fieldData2 {
    --spanwitdh: calc(((50vw - 50px) * 0.9) - 20px);
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(1, var(--spanwitdh));
    grid-template-rows: repeat(1, 40px);
    column-gap: 15px;
    row-gap: 15px;
}

.fieldData {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.fieldData div {
    width: 100%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #aaa;
    margin-top: 15px;
}

.fieldSelected {
    border: 2px solid var(--keycolor) !important;
    font-weight: 700;
    color: var(--keycolor) !important;
}

.fielditem {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.fielditem span {
    text-align: left;
    margin-right: 10px;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 10px;
    font-weight: 700;
    flex: 1;
    color: var(--txt);
}

.svgicon {
    width: 20px !important;
    height: 20px !important;
    margin-left: 0px !important;
    margin-right: 15px;
    cursor: pointer;
    fill: var(--txt);
}

.iconselected {
    fill: var(--keycolor);
}

#bg,
#txtSettingbox,
#theme {
    width: 100%;
    height: calc(100vh - 51px);
    overflow-y: scroll;
}


.themeList {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: left;
    cursor: pointer;
}

.boxs {
    width: 99%;
    height: 44px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    margin-top: 10px;
}

.boxs div {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    margin-left: 6px;
}

.boxs:last-child {
    margin-bottom: 10px;
}

.boxsss {
    border: 2px solid var(--keycolor);
}

.colorlayout {
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    margin-right: 20px;
    overflow-x: scroll;
}

.color-group {
    width: 90%;
    margin: 0 auto;
    /* border: 1px solid white; */
    margin-top: 10px;

    display: flex;
    /* flex-direction: row-reverse; */
    flex-direction: column;
    align-items: center;
    justify-content: left;
}

.color-block {
    width: 24px;
    height: 24px;
    margin: 9px 6px 9px 6px;
    border-radius: 12px;
    overflow: hidden;

}

.js-color {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12;
}

.colorsettingx {
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.colorbg {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #ddd;
    background-color: white;
}

.colorbg span {
    flex: 1;
    font-weight: 400;
    margin-left: 10px;
    line-height: 40px;
    font-size: 11px;
}

.bgright {
    height: 100%;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.colorlabel {
    font-size: 12px;
    line-height: 30px;
    font-weight: 600;
}

.cover {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;

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

.covercenter {
    margin-right: 50px;
    width: calc(90vw - 50px);
    height: 80%;
    background-color: white;
    border-radius: 5px;
    border: 1px solid var(--line);
    box-shadow: 0 0 5px #ccc;
}

#colorsboxs {
    width: calc(90vw - 50px);
    height: calc(80vh - 50px);
    overflow-y: scroll;
    overflow-x: scroll;
}

.closeicon {
    position: absolute;
    right: 0;
    width: 38px;
    height: 50px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* border: 1px solid var(--line); */
    cursor: pointer;
}

.closeicon svg {
    margin-top: 6px;
}

.svgiconbig {
    width: 28px;
    height: 28px;
}

.svgiconbigKey {
    width: 28px;
    height: 28px;
    fill: #1989fa;
}

.svgiconx {
    width: 20px;
    height: 20px;
}