input {
    border: none;
    outline: none;
    background: none
}

.radio_type {
    margin: 0 6px;
    width: 20px;
    height: 20px;
    /*appearance: none;*/
    position: relative
}

    .radio_type:before {
        content: "";
        width: 20px;
        height: 20px;
        border: 1px solid #fff;
        display: inline-block;
        border-radius: 50%;
        vertical-align: middle
    }

    .radio_type:checked:before {
        content: "";
        width: 20px;
        height: 20px;
        border: 1px solid slateblue;
        background: slateblue;
        display: inline-block;
        border-radius: 50%;
        vertical-align: middle
    }

    .radio_type:checked:after {
        content: "";
        width: 10px;
        height: 5px;
        border: 2px solid white;
        border-top: transparent;
        border-right: transparent;
        text-align: center;
        vertical-align: middle;
        position: absolute;
        top: 6px;
        left: 5px;
        transform: rotate(-45deg)
    }

    .radio_type:checked + label {
        color: #6a5acd
    }

/*body {
    --main-background: hsla(60, 20%, 4%, .281);
    --SearchBar-background: rgba(0, 0, 0, .6);
    --SearchList-background: rgba(0, 0, 0, .6);
    --Modal-background: rgba(0, 0, 0, .6);
    --Window-background: rgba(255, 255, 255, 1);
    --WindowHeader-background: rgba(255, 255, 255, .9);
    --Dock-background: rgba(0, 0, 0, .3);
    --TodoList-background: hsla(0, 0%, 0%, .438);
    --SearchSuggestion-background: rgba(0, 0, 0, .3);
    --highlight-text: #fff
}*/
body {
    --main-background: hsla(60, 20%, 4%, 0);
    --SearchBar-background: rgba(0, 0, 0, .2);
    --SearchList-background: rgba(0, 0, 0, .2);
    --Modal-background: rgba(0, 0, 0, .6);
    --Window-background: rgba(255, 255, 255, 1);
    --WindowHeader-background: rgba(255, 255, 255, .9);
    --Dock-background: rgba(0, 0, 0, .3);
    --TodoList-background: hsla(0, 0%, 0%, .438);
    --SearchSuggestion-background: rgba(0, 0, 0, .3);
    --highlight-text: #fff
}

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

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

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    /*-khtml-user-select: none;*/
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

*::-webkit-scrollbar {
    width: 6px;
    height: 1px
}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 5px #0003;
    background: rgba(255,255,255,.3)
}

*::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #0003;
    border-radius: 10px;
    background: rgba(0,0,0,.3)
}

body {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden
}

code {
    font-family: source-code-pro,Menlo,Monaco,Consolas,"Courier New",monospace
}

#root {
    background: var(--main-background);
    z-index: 0
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    height: 100vh
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding-top: 10%;
    border-radius: 0 36px 36px 0
}

.pie {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    color: #ddd;
    font-weight: bold;
    background: rgb(63,63,63);
    border-radius: 100%;
    box-shadow: 3px 3px 0 6px #c4c4c4;
    cursor: pointer;
    transition: cubic-bezier(.213,.61,.356,1) .9s
}

    .pie:hover {
        background: #333;
        box-shadow: 3px 3px 0 6px #d3d3d3;
        transition: cubic-bezier(.213,.61,.356,1) .9s
    }

.Search {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    /*×¢تح*/
    /*padding-top: 6%*/
    padding-top: 16%
}

.SearchBar {
    display: flex;
    align-items: center;
    width: 550px;
    height: 43px;
    border-radius: 36px;
    background-color: var(--SearchBar-background);
    border: 2px transparent solid;
    box-sizing: border-box;
    box-shadow: #0000005d 0 0 10px;
    transition: border .2s ease
}

    .SearchBar.active {
        box-shadow: #eee 0 0 6px
    }

    .SearchBar > form {
        display: flex;
        justify-self: flex-start;
        width: 520px;
        height: 36px;
        padding: 0 16px
    }

        .SearchBar > form > input {
            width: 100%;
            height: 36px;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 1.3px
        }

            .SearchBar > form > input::-webkit-input-placeholder {
                color: #cbcbcb;
                letter-spacing: 1px;
                font-weight: normal
            }

.SearchUrl {
    position: relative;
    margin-left: 6px;
    padding: 0 9px;
    color: #fff;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
    border-right: 1px #eee solid;
    cursor: pointer
}

.SearchButton {
    width: 100px;
    height: 39px;
    color: #ddd;
    font-size: 16px;
    font-weight: bolder;
    cursor: pointer
}

    .SearchButton > span {
        display: flex;
        align-items: flex-start;
        font-size: 18px;
        margin-top: -3px;
        margin-right: 10px
    }

    .SearchButton:hover {
        color: #fff
    }

.urlTag {
    height: 100%;
    padding-left: 9px;
    margin-left: 0
}

.fade-up {
    animation: fade-up;
    animation-duration: .3s
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }

    50% {
        opacity: .6
    }

    to {
        opacity: 1
    }
}

.fade-down {
    animation: fade-down;
    animation-duration: .3s
}

@keyframes fade-down {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }

    50% {
        opacity: .6
    }

    to {
        opacity: 1
    }
}

.SearchSuggestion {
    box-sizing: border-box;
    position: absolute;
    top: 39px;
    left: -10px;
    width: 560px;
    height: 300px;
    border-radius: 16px;
    backdrop-filter: blur(9.6px);
    background-color: var(--SearchSuggest-bg);
    box-shadow: 3px 6px 16px #000000f5;
    cursor: pointer;
    z-index: 2
}

    .SearchSuggestion > ul {
        margin: 19px 23px 19px 36px;
        padding: 0;
        height: 263px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden
    }

.SearchSuggestion-item {
    display: flex;
    width: fit-content;
    padding: 6px 19px;
    list-style: none;
    color: #fff;
    transition: ease-in-out .2s
}

    .SearchSuggestion-item:hover {
        color: var(--highlight-text)
    }

.SearchUrlList {
    position: absolute;
    top: 50px;
    left: 6px;
    width: fit-content;
    height: 290px;
    padding: 9px 13px 6px 23px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    backdrop-filter: blur(3.6px);
    background-color: var(--SearchList-background);
    box-shadow: 3px 6px 16px #000000f5;
    cursor: pointer;
    z-index: 3;
    animation: fade-in;
    animation-duration: .3s
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }

    50% {
        opacity: .6
    }

    to {
        opacity: 1
    }
}

.SearchUrlList:before {
    content: "";
    position: absolute;
    left: 13.6px;
    bottom: 100%;
    width: 0;
    height: 0;
    border-width: 6.9px;
    border-style: solid;
    border-color: transparent;
    border-bottom-width: 9.6px;
    border-bottom-color: currentColor;
    color: var(--SearchList-background);
    z-index: 2
}

.SearchUrlList-about {
    padding: 6px 0;
    font-size: 13px
}

.SearchUrlList-row {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap
}

    .SearchUrlList-row > span {
        width: 50px;
        padding-right: 6px;
        border-right: 1px #fff solid;
        text-align: start;
        color: #fff;
        font-size: 15px;
        letter-spacing: 1px
    }

    .SearchUrlList-row > ul {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 16px
    }

        .SearchUrlList-row > ul > li {
            position: relative;
            width: 69px;
            list-style: none;
            color: #ddd;
            font-size: 13.6px;
            transition: transform ease-in-out .2s
        }

            .SearchUrlList-row > ul > li:after {
                content: "";
                position: absolute;
                left: 0;
                width: 69px;
                height: 36px
            }

            .SearchUrlList-row > ul > li:hover {
                color: var(--highlight-text);
                transform: scale(1.6);
                font-weight: bold
            }

.SearchUrlModal {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    margin: 0 auto;
    width: 600px;
    height: 396px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #eee;
    background: var(--Modal-background);
    backdrop-filter: blur(3.6px);
    box-shadow: 0 3px 16px #0000004d;
    border-radius: 16px;
    z-index: 3
}

.SearchUrlModal_title {
    padding: 36px 0;
    font-size: 19px
}

.SearchUrlModal_row {
    width: 100%;
    height: 36px;
    margin: 6px 0
}

    .SearchUrlModal_row > span {
        padding-left: 130px;
        padding-right: 6px
    }

    .SearchUrlModal_row > input {
        width: 256px;
        padding: 6px 9px;
        border: 1.3px rgb(163,163,163) solid;
        border-radius: 0 9.6px 9.6px;
        color: #ddd
    }

        .SearchUrlModal_row > input::-webkit-input-placeholder {
            color: #a3a3a3
        }

        .SearchUrlModal_row > input:focus {
            border: 2px #fff solid
        }

    .SearchUrlModal_row > p {
        color: #a3a3a3;
        font-size: 13.6px;
        text-align: center
    }

.SearchUrlModal_btns {
    position: absolute;
    bottom: 36px
}

    .SearchUrlModal_btns > button:hover {
        transform: translateY(-3px)
    }

.btn-primary, .btn-confirm, .btn-delete {
    margin: 0 16px;
    padding: 6px 19px;
    color: #eee;
    letter-spacing: 2.3px;
    background: inherit;
    outline: none;
    border-radius: 6px;
    border: 2px solid #ddd;
    box-shadow: 3px 3px 3px #0000001a;
    /*transition: translate .3s;*/
    cursor: pointer
}

.btn-confirm {
    color: #fff;
    border: 2px solid #3afe33;
    background-color: #06ac00
}

.btn-delete {
    color: #fff;
    border: 2px solid #fe3369;
    background-color: #fe3369
}

.i-icon {
    display: inline-block;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.i-icon-spin svg {
    animation: i-icon-spin 1s infinite linear
}

.i-icon-rtl {
    transform: scaleX(-1)
}

@keyframes i-icon-spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes i-icon-spin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.bg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: url(/bg/background.jpg);
    background-repeat: no-repeat;
    background-size: cover
}

.changeBg {
    box-sizing: border-box;
    margin: 15px;
    position: fixed;
    right: 0;
    bottom: 6px;
    color: #f0f8ff;
    cursor: pointer
}

#bg-video {
    display: block;
    object-fit: cover
}

.todo-container {
    margin-top: 36px;
    width: 100%
}

.todo {
    margin: 0 23px;
    width: 396px;
    height: 369px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 18px 0;
    background-color: var(--TodoList-background);
    box-shadow: #0000005d 0 0 10px
}

.todo-header {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #f0f0f0
}

.todo-header-title {
    color: #eee;
    padding: 23px;
    font-size: 20px;
    letter-spacing: 1.3px
}

.todo-header-btns {
    padding-top: 36px;
    margin-right: -3px;
    display: flex
}

.todo-header-btn {
    width: 60px;
    height: 36px;
    color: #fff;
    background-color: #ffffff4d;
    transition: background .2s .1s ease;
    cursor: pointer
}

    .todo-header-btn:nth-child(1) {
        border-radius: 2px 0 0 6px
    }

    .todo-header-btn.active {
        background-color: #ffffff80
    }

.TodoContent, .DoneContent {
    display: flex;
    flex-direction: column;
    color: #f0f0f0
}

.TodoContent-list, .DoneContent-list {
    margin: 6px 0 16px;
    padding-left: 30px;
    padding-right: 6px;
    height: 221px;
    overflow: auto
}

.DoneContent-list {
    height: 266px
}

.TodoContent-item, .DoneContent-item {
    margin-top: 6px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: cubic-bezier(.215,.61,.355,1) .2s;
    font-size: 15px
}

.TodoContent-item-title, .DoneContent-item-title {
    width: 256px;
    height: 36px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    transition: transform .2s ease .05s,color .1s .1s linear,font-weight .1s linear;
    user-select: text;
    cursor: default;
    display: flex;
    align-items: center;
    transform-origin: left center
}

.DoneContent-item-title {
    display: flex;
    align-items: center;
    text-decoration: line-through
}

.TodoContent-item-btns, .DoneContent-item-btns {
    display: flex;
    margin-left: 16px
}

.TodoContent-item-btn, .DoneContent-item-btn {
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    width: 25px;
    height: 25px;
    margin-left: 3px;
    border-radius: 50%
}

    .TodoContent-item-btn:hover, .DoneContent-item-btn:hover {
        background-color: #ffffff4d
    }

.TodoContent-add {
    padding-left: 30px;
    display: flex;
    justify-content: center
}

.input-default, .input-active {
    width: 106px;
    margin-right: 36px;
    text-align: center;
    color: #eee;
    font-size: 16px;
    border-bottom: 1px solid rgb(165,165,165);
    transition: ease-in-out .3s
}

.input-active {
    width: 256px;
    border-bottom: 1px solid #fff
}

.TodoContent-add-btn {
    width: 30px;
    height: 30px;
    cursor: pointer
}

    .TodoContent-add-btn:hover {
        box-shadow: 0 0 2px #ffffff80
    }

.AppModal {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    margin: 0 auto;
    width: 600px;
    height: 396px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #eee;
    background: var(--Modal-background);
    backdrop-filter: blur(3.6px);
    box-shadow: 0 3px 16px #0000004d;
    border-radius: 16px;
    z-index: 3
}

.AppModal_title {
    padding: 36px 0;
    font-size: 19px
}

.AppModal_row {
    width: 100%;
    height: 36px;
    margin: 6px 0
}

    .AppModal_row > span {
        display: inline-block;
        width: 90px;
        padding-left: 130px;
        padding-right: 6px
    }

    .AppModal_row > input[type=text] {
        width: 256px;
        padding: 6px 9px;
        border: 1.3px rgb(163,163,163) solid;
        border-radius: 0 9.6px 9.6px;
        color: #ddd
    }

    .AppModal_row > label {
        margin: 0 6px
    }

    .AppModal_row > input::-webkit-input-placeholder {
        color: #a3a3a3
    }

    .AppModal_row > input:focus {
        border: 2px #fff solid
    }

    .AppModal_row > p {
        color: #a3a3a3;
        font-size: 13.6px;
        text-align: center
    }

.AppModal_btns {
    position: absolute;
    bottom: 36px
}

    .AppModal_btns > button {
        margin: 0 16px;
        padding: 6px 19px;
        color: #eee;
        letter-spacing: 2.3px;
        background: inherit;
        outline: none;
        border-radius: 6px;
        border: 2px solid #ddd;
        box-shadow: 3px 3px 3px #0000001a;
        /*transition: translate .3s;*/
        cursor: pointer
    }

    .AppModal_btns > .confirm {
        color: #fff;
        border: 2px solid #3afe33;
        background-color: #06ac00
    }

    .AppModal_btns > .delete {
        color: #fff;
        border: 2px solid #fe3369;
        background-color: #fe3369
    }

    .AppModal_btns > button:hover {
        transform: translateY(-3px)
    }

#App-window {
    position: absolute;
    z-index: 999;
    left: 0;
    top: 0
}

.AppList {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    padding: 0 16px;
    margin: 0 auto
}

.AppList-app {
    margin: 13px 0;
    width: 60px;
    transition: all .19s ease-out;
    cursor: pointer
}

.AppList-app-logo-container {
    max-width: 50px;
    max-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(228,226,236,.9);
    border-radius: 50%;
    overflow: hidden
}

.AppList-app-logo {
    display: inline-block;
    padding: 6.9px;
    width: 30px;
    height: 30px;
    background: rgb(228,226,236,.9);
    border-radius: 50%;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.AppList-app-name {
    position: absolute;
    top: -25px;
    left: 10px;
    width: max-content;
    display: none;
    font-size: 13px;
    text-align: center;
    color: #fff;
    transition: all .19s ease-out;
    cursor: pointer
}

.AppList > .AppList-app:hover {
    margin: 13px 12px;
    padding-bottom: 23px
}

    .AppList > .AppList-app:hover > .AppList-app-name {
        display: block
    }

.AppList > .AppList-app > .AppList-app-name:hover {
    background-color: var(--Dock-background)
}

.AppWindow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    min-width: 300px;
    min-height: 300px;
    animation: fade-in;
    animation-duration: .3s;
    transition: all .3s ease-in-out;
    border-radius: 15px;
    box-shadow: 2.8px 2.8px 2.2px #00000005,6.7px 6.7px 5.3px #00000007,12.5px 12.5px 10px #00000009,22.3px 22.3px 17.9px #0000000b,41.8px 41.8px 33.4px #0000000d,100px 100px 80px #00000012;
    overflow: hidden
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }

    50% {
        opacity: .6
    }

    to {
        opacity: 1
    }
}

.AppWindowHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 16px;
    height: 36px;
    background-color: var(--WindowHeader-background);
    backdrop-filter: blur(3.6px);
    cursor: move
}

    .AppWindowHeader .Logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        border-radius: 50%
    }

    .AppWindowHeader .Menu a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 39px;
        height: 36px;
        cursor: pointer;
        transition: ease-in-out .3s
    }

        .AppWindowHeader .Menu a:last-child {
            border-radius: 0 13.6px 0 0
        }

        .AppWindowHeader .Menu a:hover {
            background: #ddd
        }

.AppWindowContent {
    width: 100%;
    background: var(--Window-background)
}

    .AppWindowContent iframe {
        width: 100%;
        height: 100%;
        min-width: 300px;
        min-height: 270px;
        border: none
    }

    .AppWindowContent .mask {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 999999
    }

.resizebar {
    display: inline-flex;
    height: 0;
    z-index: 999
}

.resize-left {
    position: absolute;
    width: 36px;
    height: 100%;
    left: -19px;
    top: 30px;
    cursor: w-resize
}

.resize-right {
    position: absolute;
    width: 36px;
    height: 100%;
    right: -19px;
    top: 30px;
    cursor: e-resize
}

.resize-bottom {
    position: absolute;
    width: 100%;
    height: 36px;
    bottom: -19px;
    cursor: s-resize
}

.resize-left-bottom {
    position: absolute;
    width: 36px;
    height: 36px;
    left: -19px;
    bottom: -19px;
    cursor: sw-resize
}

.resize-right-bottom {
    position: absolute;
    width: 36px;
    height: 36px;
    right: -19px;
    bottom: -19px;
    cursor: se-resize
}

.Dock {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 36px;
    height: 63px;
    color: #ddd;
    background-color: var(--Dock-background);
    backdrop-filter: blur(6px);
    border-radius: 19px;
    transition: all .1s ease-in-out
}
