body {
    margin: 0;
}

/*--------------------------------------
mainScreenFrame
--------------------------------------*/
.mainScreenFrame {
    width: 1920px;
    height: 1080px;
    padding: 50px;
    background-color: #000000;
    border: 5px solid #ffffff;
    border-radius: 50px;
    box-shadow: 10px 10px 20px #00000070;
}

/*--------------------------------------
mouse
--------------------------------------*/
.mouse {
    width: 10px;
    height: 10px;
    background: #00000000;
    border: solid 5px #ffffff;
    border-radius: 50%;
    mix-blend-mode: difference;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    pointer-events: none;
}

/*--------------------------------------
mainScreen
--------------------------------------*/
.mainScreen {
    position: absolute;
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    background-color: #91DDCF;
    z-index: 1;
}

/*--------------------------------------
header
--------------------------------------*/
.header {
    display: flex;
    width: 1920px;
    height: 50px;
    background-color: #00000070;
}

.header img {
    margin: 0 10px;
    padding: 8px;
}

.header .headerList {
    display: flex;
    cursor: pointer;
}

.header .headerList p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin: 0;
    padding: 0 10px;
    color: #FFFFFF;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 25px;
    transition: 0.5s;
}

.header .headerList p:hover {
    background-color: #00000070;
}

.header .clockHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px 0 auto;
}

.header #clockHeader {
    color: #FFFFFF;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 25px;
}

/*--------------------------------------
contents
--------------------------------------*/
.contents {
    display: flex;
    flex-wrap: wrap;
    width: calc(1920px - (135px * 2));
    padding: 120px 135px;
    gap: 110px;
}

.appIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    background-color: #ffffff;
    mix-blend-mode: difference;
    border-radius: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.appIcon:hover {
    transform: scale(1.2);
}

.appIcon img {
    width: 80px;
    height: 80px;
}

/*--------------------------------------
windowArea
--------------------------------------*/
.windowArea {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.window {
    display: none;
    position: absolute;
    padding: 0 10px 10px;
    border-radius: 10px;
    box-shadow: 10px 10px 20px #00000070;
    z-index: 5;
}

/* ↓ window position & color ↓ */
#file {
    top: 100px;
    left: 150px;
    background-color: #687EFF;
}

#app {
    top: 150px;
    left: 200px;
    background-color: #80B3FF;
}

#momochoco {
    top: 200px;
    left: 250px;
    background-color: #98E4FF;
}

.W01 {
    top: 200px;
    left: 150px;
    background-color: #F5004F;
}

/*
.W01 {
    top: 100px;
    left: 1500px;
    background-color: #F5004F;
}
*/

.W02 {
    top: 250px;
    left: 200px;
    background-color: #7E30E1;
}

.W03 {
    top: 300px;
    left: 250px;
    background-color: #FF3EA5;
}

/**
.W03 {
    top: 700px;
    left: 1500px;
    background-color: #FF3EA5;
}
**/

.W04 {
    top: 350px;
    left: 300px;
    background-color: #35A29F;
}

.W05 {
    top: 400px;
    left: 350px;
    background-color: #00000000;
    border: 3px solid #ffffff;
}

.W06 {
    top: 450px;
    left: 400px;
    background-color: #FF8400;
}

.W07 {
    top: 500px;
    left: 450px;
    background-color: #6A9C89;
}

/* ↑ window position & color ↑ */

.window .ui-icon {
    background-image: none;
}

.windowBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.windowBar p {
    width: 100%;
    margin: 0 5px;
    color: #FFFFFF;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 25px;
    white-space: nowrap;
    overflow: hidden;
}

.windowBar .windowButtons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.windowBar .windowButtons span {
    margin: 0 5px;
    color: #FFFFFF;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 25px;
    cursor: pointer;
}

.windowContent {
    display: flex;
    height: calc(100% - 50px);
}

/* ↓ header window Sidebar & Panel ↓ */
.windowSidebar {
    position: relative;
    width: 20%;
    height: 100%;
    padding: 20px 0;
    border-right: 2px solid #dfdfdf;
    box-sizing: border-box;
    background-color: #f0f0f0;
    overflow-y: scroll;
}

.windowSidebar::-webkit-scrollbar {
    display: none;
}

.sidebarTab {
    padding: 10px 20px;
    color: #000000;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 28px;
    cursor: pointer;
}

.sidebarTab:hover {
    background-color: #00000020;
}

.sidebarTab.active {
    background-color: #00000020;
}

.windowPanel {
    position: relative;
    width: 80%;
    height: 100%;
    background-color: #ffffff;
    overflow-y: scroll;
}

.windowPanel::-webkit-scrollbar {
    display: none;
}

.panelContent {
    display: none;
}

.panelContent.active {
    display: block;
}

.panelContent h2 {
    margin: 30px 0;
    text-align: center;
    color: #000000;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 50px;
}

.panelContent p {
    margin: 30px 0;
    padding: 0 10%;
    text-align: center;
    color: #000000;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 32px;
}

.panelContent hr {
    width: 80%;
}

/* ↑ header window Sidebar & Panel ↑ */

/* ↓ file window option ↓ */
.optionFlex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle {
    position: relative;
    width: 78px;
    height: 48px;
    margin-left: 30px;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
}

.toggle input[type=checkbox] {
    display: none;
}

.toggle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #e9e9eb;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}

.toggle:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}

.toggle.checked:before {
    background: #35c759;
}

.toggle.checked:after {
    left: 33px;
    box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}

.pickr {
    margin-left: 30px;
}

.pickr button {
    width: 100px !important;
    height: 50px !important;
    border: solid 5px #000000;
}

.pcr-app[data-theme=nano] {
    width: 500px;
}

/* ↑ file window option ↑ */

/* ↓ app window ↓ */
.appIconWrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.accountConect {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* ↑ app window ↑ */

/* ↓ momochoco window ↓ */
.inputUserName,
.inputTwitchAccountName {
    width: 40%;
    height: 50px;
    padding: 3px 20px;
    border-radius: 10px;
    border: 5px solid #dfdfdf;
    color: #000000;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 32px;
}

.userConectButton,
.twitchAccountConectButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 50px;
    padding: 5px;
    border-radius: 10px;
    background-color: #dfdfdf;
    color: #000000;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 32px;
    cursor: pointer;
}

.userConectButton:hover,
.twitchAccountConectButton:hover {
    background-color: #bbbbbb;
}

/* ↑ momochoco window ↑ */

/*--------------------------------------
app settings
--------------------------------------*/
.settings h2 {
    margin: 20px auto;
    text-align: center;
    color: #000000;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 50px;
}

.settings h3 {
    margin: 10px 0;
    text-align: center;
    color: #687EFF;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 40px;
}

.settings p {
    margin: 0;
    text-align: center;
    color: #000000;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 700;
    font-size: 32px;
}

.settings input[type="range"] {
    appearance: none;
    width: 60%;
    margin-right: 20px;
    border-radius: 50px;
    background-color: #35c759;
}

.settings input[type="range"]::-webkit-slider-runnable-track {
    height: 48px;
}

.settings input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    margin-top: 3px;
    width: 42px;
    height: 42px;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);

}

.settings .px {
    width: 100px;
}

.settings .px::after {
    content: "px";
}

.settings hr {
    width: 80%;
}