
body {
    font-family: 'Intr94Y';
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: var(--background);
    color: var(--text-color);
    --background: #ffffff;
    --text-color: #333333;
    --button-background: #efefef;
    --button-color: #333333;
    --menu-background: #ffffff;
    --menu-color: #333333;
    --topmenu-background: #fafafa;
    --topmenu-color: #333333;
    --border-color: #cccccc;
    --border-color-group: #e6e6e6;
    --task-item-border-bottom: 0.5px solid #eeeeee;
    --task-item-completed-color: #aaaaaa;
    --note-item-border: 1px solid #eeeeee;
    --note-item-background: #fafafa;
    --note-item-description-color: #333333;
    --note-item-text-color: #444444;
    --filter-day-night: invert(0%);
    --filter-day-night-big-icon: invert(0%) opacity(0.6);
    --link-color: #0366d6;
    --font-size: 16px;
    --day-night-opacity-icon: 0.7;
}

    body.dark {
        font-size: 16px;
        line-height: 1.6;
        --background: #333333;
        --text-color: #aaaaaa;
        --button-background: #444444;
        --button-color: #aaaaaa;
        --menu-background: #333333;
        --menu-color: #cccccc;
        --topmenu-background: #333333;
        --topmenu-color: #cccccc;
        --border-color: #444444;
        --border-color-group: #444444;
        --task-item-border-bottom: 0.5px solid #444444;
        --task-item-completed-color: #555555;
        --note-item-border: 0.5px solid #444444;
        --note-item-background: #333333;
        --note-item-description-color: #aaaaaa;
        --note-item-text-color: #aaaaaa;
        --filter-day-night: invert(100);
        --filter-day-night-big-icon: invert(50%);
        --link-color: #2b95ff;
        --font-size: 16px;
        --day-night-opacity-icon: 0.5;
    }


.block-group-devider {
    border-top: 1px solid var(--border-color);
}

.group {
    border: 1px solid var(--border-color-group);
    margin-right: 3.33333%;
    margin-bottom: 3.3333vw;
    width: 30%;
    padding: 20px;
    position: relative;
    border-radius:5px;
}

.group-in-group {
    border: 1px solid var(--border-color-group);
    margin-bottom: 3.3333vw;
    margin-bottom: 10px;
    width: 100%;
    padding: 20px;
    position: relative;
    border-radius: 5px;
}

.without_group {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    position: relative;
}

.without_block {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
}

.preloader-spinner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 1001;
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: #ffcc00;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow .75s linear infinite;
    animation: spinner-grow .75s linear infinite;
}


.text-success {
    color: #ffcc00;
}

@-webkit-keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 1
    }
}

@keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 1
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow .75s linear infinite;
    animation: spinner-grow .75s linear infinite
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}




.pointer {
    cursor: pointer;
}

.my-reconnect-modal > div {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    overflow: hidden;
    background: var(--background);
    color: #333333;
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.components-reconnect-hide > div {
    display: none;
}

.components-reconnect-show > div {
    display: none;
}

.components-reconnect-show > .show {
    display: block;
}

.components-reconnect-failed > div {
    display: none;
}

.components-reconnect-failed > .failed {
    display: block;
}

.components-reconnect-rejected > div {
    display: none;
}

.components-reconnect-rejected > .rejected {
    display: block;
}








.content-block-button {
    cursor: pointer;
    background: transparent;
    /*border: var(--note-item-border);
    border-radius: 5px;*/
    color: var(--task-item-completed-color);
    cursor: pointer;
    padding: 5px 10px 5px 0;
}

.content-block-button-active {
    background: transparent;
    /*border: var(--note-item-border);
    border-radius: 5px;*/
    color: var(--button-color);
    cursor: pointer;
    padding: 5px 10px 5px 0;
}

.content-block-button-link {
    background: transparent;
    /*border: var(--note-item-border);
    border-radius: 5px;*/
    color: var(--link-color);
    cursor: pointer;
    padding: 5px 10px 5px 0;
}

.content-group-button {
    background: transparent;
    color: var(--task-item-completed-color);
    border-radius: 5px;
    cursor: pointer; 
}

.content-group-button-active {
    background: transparent;
    color: var(--button-color);
    border-radius: 5px;
    cursor: pointer;
}


.light-dark-opacity {
    opacity: var(--day-night-opacity-icon);
}


.c0366d6 {
    color: var(--link-color);
}


.filter-day-night {
    filter: var(--filter-day-night);  
}

.filter-day-night-big-icon {
    filter: var(--filter-day-night-big-icon);
}

.text-color {
    color: var(--note-item-text-color);
}


.top-menu-container {
    background: var(--background);
}

input {
    background: var(--background);
    color: var(--text-color);
    border: var(--note-item-border);
    outline: none;
    padding: 5px 10px;
}

    input::placeholder {
        opacity: 0.5;
    }

textarea {
    font-family: 'Intr94Y';
    background: var(--background);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

    textarea::placeholder {
        opacity: 0.5;
        font-weight: 300;
        font-size: 14px;
    }

    textarea:focus {
        border: 1px solid var(--border-color);
        outline: none;
    }

#topmenu {
    background: var(--topmenu-background);
    color: var(--topmenu-color);
}

#menu {
    background: var(--menu-background);
    color: var(--menu-color);
}

button {
    background: var(--button-background);
    background: none;
    color: var(--button-color);
    padding: 10px;
    border: none;
    border: 1px solid var(--border-color-group);
    font-family: 'Intr94Y';
    font-weight: 300;
}

    button.button-done-cancel, button.button-change-parent {
        border: var(--note-item-border);
    }

.edit-item-bottom-border {
    border-bottom: 0.5px solid var(--task-item-border-bottom);
}

.edit-item-hr {
    border-top: 0.5px solid var(--task-item-border-bottom);
}

.task-item {
    border-bottom: var(--task-item-border-bottom);
    border-bottom: none;
}

.task-item-completed {
    color: var(--task-item-completed-color);
}

.picture-item {
    /*border-bottom: var(--task-item-border-bottom);*/
    border-bottom: none;
}

.note-item {
    max-width: 100%;
    min-width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    font-size: 14px;  
    cursor: pointer;
    /*border-top: var(--note-item-border);*/
    /*max-width: 350px;
    min-width: 350px;*/
    /*max-height: 196px;
    min-height: 196px;*/
}

.note-item-border-bottom {
    border-top: 1px solid var(--border-color-group);
}


.note-item-description {
    color: var(--note-item-description-color);
    /*margin-bottom: 20px;*/
    font-weight:300;
    
}

.note-item-text {
    color: var(--note-item-text-color);
    font-size: var(--font-size);
    font-size: 14px;
    font-weight: 300;
}



input.input-edit-text[type="date"] {
    /* -webkit-appearance: none;
    -moz-appearance: none;*/
    padding: 0 !important;
}

input.input-edit-text[type="number"] {
    /* -webkit-appearance: none;
    -moz-appearance: none;*/
    padding: 0 !important;
}



.app-container {
   padding: 0;
}

button {
    font-size: var(--font-size);
}

div {
  box-sizing: border-box;
}

a, .btn-link {
    color: var(--link-color);
    cursor: pointer;
    font-weight:300;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }



.monthes-bar {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*border-top: 0.5px solid var(--border-color);*/
    flex-wrap: wrap;
    
}

/*.monthes-bar::-webkit-scrollbar {
        display: none;
    }*/


.month-bar-item {
    /*width: 16.65%;
    max-width: 16.65%;
    width: 20%;
    max-width: 20%;*/
    display: flex;
    justify-content: start;
    align-items: center;
    height: 30px;
    border: none;
    /*border-right: 0.5px solid var(--border-color) !important;
    border-bottom: 0.5px solid var(--border-color) !important;
    border-top: 0.5px solid var(--border-color) !important;*/
    font-size: 12px;
    color: var(--text-color);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: var(--background);
    font-size: var(--font-size);
    padding-left:0;
    cursor: pointer;
}

    .month-bar-item:first-child {
        /*border-left: 0.5px solid var(--border-color) !important;*/
    }

.years-bar {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*background: #fcfcfc;*/
}

.year-bar-item {
    /*width: 70px;*/
    display: flex;
    justify-content: start;
    align-items: center;
    height: 30px;
    border: none;
    /*border-top: 0.5px solid var(--border-color) !important;
    border-right: 0.5px solid var(--border-color) !important;*/
    font-size: var(--font-size);
    color: var(--text-color);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: var(--background);
    padding-left: 0;
    cursor: pointer;
}


    .year-bar-item:first-child {
        /*border-left: 0.5px solid var(--border-color) !important;*/
    }


    /*Swiper slider*/
    .swiper {
        width: 100%;
        height: 100%;
    }


.swiper-slide {
    text-align: center;
    font-size: 18px;
    /*background: #fff;*/
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    /*border-bottom: 1px solid #eeeeee*/
    /*background: #fcfcfc;*/
}

.swiper-scrollbar {
    display: none;
}
/*.swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
}*/


.button-reload {
    padding: 15px 20px;
    font-weight: 300;
    border: 1px solid #eeeeee;
    border-radius: 100px;
    text-decoration: unset;
    color: #333333;
    font-size: 12px;
}

.button-switch-type {
    border: 1px solid #cccccc;
   
}

.group-popup {
    z-index: 100;
    top: 30px;
    right: 10px;
    background: var(--background);
    border: 1px solid var(--border-color);
    padding: 0 10px;
    border-radius: 10px;
}

.group-popup-three-dots {
    top: 0px;
    right: 10px;
    cursor: pointer;
    position: absolute;
    color: var(--task-item-completed-color);
    z-index:1000;
}


@media screen and (max-width:767px) {
    .note-item {
        /*border: var(--note-item-border);
        background: var(--note-item-background);*/
        border-top: var(--note-item-border);
        max-width: 92vw;
        min-width: 92vw;
        max-width: 40vw;
        min-width: 40vw;
        max-width: 100%;
        min-width: 100%;
        max-height: 100%;
        min-height: 10px;
        overflow: hidden;
        display: flex;
        font-size: 14px;
    }

    .group {
        border: 1px solid var(--border-color-group);
        width: 100%;
        padding: 5%;
        margin-right: 0;
        margin-bottom: 10px;
        position: relative;
    }

    .without_group {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        display: flex;
        align-items: start;
        flex-direction: column;
    }

    .without_block {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        display: flex;
        align-items: start;
        flex-direction: column;
    }

    .group-item {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

}