@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

@font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Roboto-Mono-1.woff2') format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Roboto-Mono-2.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Roboto-Black';
    src: url('/fonts/Roboto-Black.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('/fonts/Roboto-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto-Mono';
    font-style: bold;
    src: url('/fonts/Roboto-Black.woff2') format('woff2');
}

@font-face {
    font-family: 'UbuntuMono-Regular';
    src: url('../fonts/UbuntuMono/UbuntuMono-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'PTMono-Regular';
    src: url('../fonts/PT_Mono/PTMono-Regular.ttf') format('truetype');
}  

@media (prefers-color-scheme: dark) {
    :root {
        /* PrimaryColor */
        --PrimaryColor: #779953;
        --PrimaryColorText: #121214;
        /* BGColor */
        --ColorThemes0: #232523;
        --ColorThemes1: #121214;
        /* TextColor */
        --ColorThemes3: #f9f9fd;

        --C0: #779953;
        --C1: #9a77c9;
        --C2: #7c7c7c;
        --C3: #c5ba59;
        --C4: #a14a2e;
        --C5: #bb4444;
        --C6: #e7e7e7;
    }
}

@media (prefers-color-scheme: light) {
    :root {
        /* PrimaryColor */
        --PrimaryColor: #779953;
        --PrimaryColorText: #ffffff;
        /* BGColor */
        --ColorThemes0: #dfe5e1;
        --ColorThemes1: #fbfbfb;
        /* TextColor */
        --ColorThemes3: #404040;

        --C0: #779953;
        --C1: #9a77c9;
        --C2: #7c7c7c;
        --C3: #c5ba59;
        --C4: #a14a2e;
        --C5: #bb4444;
        --C6: #e7e7e7;
    }
}

@media (min-width: 800px) {
    * {
        scroll-snap-type: none !important;
    }
}

@media (pointer:fine) {
    ::-webkit-scrollbar {
        width: 7px;
        height: 7px;
        background-color: var(--ColorThemes0);
        background: 0;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--PrimaryColor);
    }

    ::-webkit-scrollbar-track {
        background: 0;
        border: 0;
        margin: 0;
    }
}

body {
    background: var(--ColorThemes0);
}

input[type="submit"] {
    -webkit-appearance: none;
    text-align: center;
}
input{
    border-radius: 0;
    accent-color: var(--PrimaryColor);
}
select{
    border-radius: 0;
    accent-color: var(--PrimaryColorText);
}

.header{
    display: flex;
    justify-content: center;
    font-family: PTMono-Regular;
}
.header_block{
    width: 100%;
    max-width: 800px;
    padding: 0;
    height: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    margin: 0 10px;
}
.header_block > .blockPage{
    width: 80%;
    height: 40px;
    background:  var(--ColorThemes1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.header_block span{
    font-size: 14px;
    color: var(--ColorThemes3);
    margin-left: 10px;
    text-transform: uppercase;
}
#selectLang{
    border-radius: 0;
    width: 20%;
    min-width: 100px;
    height: 40px;
    background: var(--PrimaryColor);
    color: var(--PrimaryColorText);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s ease;
    margin-top: 10px;
    margin-left: 10px;
}





#app{
    display: flex;
    flex-direction: column;
    align-items: center;
}

details {
    color: var(--ColorThemes3);
    width: calc(100% - 40px);
    max-width: calc(800px - 20px);
    padding: 10px;
    background: var(--ColorThemes1);
    border-radius: 0px;
    margin: 10px 10px;
    font-family: PTMono-Regular;
}

summary {
    cursor: pointer;
    text-align: center;
}

* {
    border: 0;
    padding: 0;
    margin: 0;
    font-weight: 400;
    outline: none;
}

h1 {
    color: var(--ColorThemes3);
    position: relative;
    display: inline-block;
    border-radius: 0px;
    padding: 0 5px;
    border: 0;
    margin: 0 0 10px 0;
    text-align: center;
    font-size: 24px;
    margin-top: 50px;
}

.block_week {
    background: var(--ColorThemes0);
    color: var(--ColorThemes3);
    border-radius: 0px;
    padding: 10px;
    margin: 10px 0;
}

.i0 {
    background: var(--ColorThemes0);
    color: var(--ColorThemes3);
    width: 200px;
    height: 28px;
    position: relative;
    display: inline-block;
    border-radius: 0px;
    padding: 0 5px;
    border: 0;
    margin: 0;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
}

.line {
    background: var(--ColorThemes1);
    padding: 5px;
    border-radius: 0px;
    margin: 10px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
}
.line > div{
    width: calc(50% - 5px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.line > div > p{
    background: var(--C0);
    min-width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--PrimaryColorText);
    margin-right: 5px;
}
.line > div > select{
    background: var(--C0);
    min-width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--PrimaryColorText);
    margin-right: 5px;
}
.line > div > input{
    background: var(--ColorThemes0);
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ColorThemes3);
    padding: 0 5px;
}
.line > span{
    background: var(--ColorThemes0);
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ColorThemes3);
    padding: 0 5px;
}

.line2{
    flex-direction: column;
}
.line2 > div{
    width: 100%;
}
.line2 > hr{
    width: 100%;
    height: 5px;
}
.mob_line{
    flex-direction: row !important;
}
.mob_line div{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.mob_line > div > p{
    background: var(--C0);
    min-width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--PrimaryColorText);
    margin-right: 5px;
}
.mob_line > div > input{
    background: var(--ColorThemes0);
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ColorThemes3);
    padding: 0 5px;
}
.mob_line > span{
    background: var(--ColorThemes0);
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ColorThemes3);
    padding: 0 5px;
}

@media (max-width: 800px){
    .line{
        flex-direction: column;
    }
    .line > div {
        width: 100%;
    }
    .line > div:nth-child(2) {
        margin-top: 5px;
    }
    .mob_line {
        flex-direction: column !important;
    }
    .mob_line > div:nth-child(2) {
        margin-top: 5px;
    }
    .mob_line > div > input{
        margin: 0 !important;
    }
}

.line_box{
    background: var(--ColorThemes0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: calc(100% - 20px);
}
.line_box > p{
    margin: 10px;
}
.line_box > div{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.line_box > div > input{
    background: var(--ColorThemes1);
    min-width: calc(70% - 10px);
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ColorThemes3);
    padding: 0 5px;
}
.line_box > div > button{
    background: var(--ColorThemes0);
    min-width: calc(30% - 10px);
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ColorThemes3);
    padding: 0;
    margin: 0;
}
.line_box > button{
    width: 100%;
    height: 30px;
    margin: 0;
    text-align: center;
}

select {
    font-size: 16px;
}

button {
    background: var(--C0);
    color: var(--ColorThemes3);
    height: 35px;
    position: relative;
    display: inline-block;
    text-align: center;
    border-radius: 0px;
    padding: 0 10px;
    margin: 20px;
    font-size: 16px;
    cursor: pointer;
}

.c0 {
    background: var(--C1) !important;
    color: #ffffff !important;
}

.c1 {
    background: var(--C2) !important;
    color: #ffffff !important;
}

.c2 {
    background: var(--C3) !important;
    color: #ffffff !important;
}

.c3 {
    background: var(--C4) !important;
    color: #ffffff !important;
}

.c4 {
    background: var(--C0) !important;
    color: var(--C6) !important;
}

.c5 {
    background: var(--C5) !important;
    color: var(--C6) !important;
}

.c6 {
    background: #537299 !important;
    color: var(--C6) !important;
}

.block_save_name {
    color: var(--ColorThemes3);
    max-width: calc(800px - 10px);
    padding: 10px;
    background: var(--ColorThemes1);
    border-radius: 0px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 40px);
    font-family: PTMono-Regular;
}

.block_save_i2 {
    height: 28px;
    position: relative;
    display: inline-block;
    text-align: left;
    border-radius: 0px;
    padding: 0 5px;
    border: 0;
    margin: 1.5px;
    font-family: PTMono-Regular;
}

#doc div svg {
    width: 800px;
    height: auto;
}

.bloch_FAQ {
    background-color: var(--ColorThemes0);
    border-radius: 0px;
    padding: 10px 10px;
    margin: 5px;
    text-align: left;
    width: calc(100% - 20px);
}

.bloch_FAQ_PS {
    font-size: 14px;
    opacity: 0.9;
}

.but_clear {
    width: 100%;
    background: var(--C5);
    color: #fff;
    margin: 10px 0;
}

.but_save {
    margin: 10px 0;
    width: 100%;
    color: #fff;
}

#update-banner-1 {
    height: 55px;
    transition: .3s ease;
    font-family: PTMono-Regular;
}

#update-banner-1 .content {
    margin: 0 auto;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#update-banner-1 .headline {
    font-weight: 800;
    font-size: 15px;
    color: var(--ColorThemes0);
}

#update-banner-1 .subhead {
    font-size: 13px;
    text-align: center;
    color: var(--ColorThemes0);
}

#update-banner-1[data-state="noupdate"] {
    display: none;
}

#update-banner-1[data-state="updateavailable"] {
    display: block;
    cursor: pointer;
    background: #26AE60;
    color: var(--ColorThemes0);
    transition: .3s ease;
    opacity: 0.95;
    z-index: 9999;
}

#update-banner-1-icon {
    display: none;
}

#update-banner-1-icon svg {
    padding: 0px 50px;
    width: 25px;
    margin: -4px;
    fill: var(--ColorThemes0);
}

#mess{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgb(31 31 33 / 41%);
    top: 0;
    font-family: PTMono-Regular;
}
.messAPP {
    display: flex;
    width: 300px;
    height: 200px;
    border-radius: 0;
    background: var(--ColorThemes0);
    border: 2px solid var(--ColorThemes1);
    box-shadow: 0px 24px 32px rgb(0 0 0 / 9%), 0px 16px 24px rgb(0 0 0 / 9%), 0px 4px 8px rgb(0 0 0 / 9%), 0px 0px 1px rgb(0 0 0 / 9%);
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -110px;
    margin-left: -160px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 10px;
}

.messAPP input,
.messAPP button {
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    height: 30px;
    color: var(--ColorThemes0);
    padding: 2px 10px;
    background: var(--ColorThemes3);
    cursor: pointer;
    border: 0;
    margin-bottom: 5px;
    margin-left: 0;
}

.messAPPclose {
    margin: 5px;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 25px;
    padding: 0;
}

.messAPPtype {
    color: var(--ColorThemes3);
    color: #d15959;
    background: #fff;
    padding: 5px 10px;
    position: absolute;
    top: 5px;
    display: none;
}

.messAPPtext {
    color: var(--ColorThemes3);
    font-size: 18px;
    text-align: center;
}