﻿@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap");

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    font-style: normal;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    border: none
}

::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

* *:focus {
    outline: none;
    border: none
}

p {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

:root {
    --black: rgba(35, 40, 45, 1);
    --white: #ffffff;
    --lightwhite: #fbfdfb;
    --gray: #f6fbf6;
    --lightgray: #ecf4ee;
    --green: #339a3f;
    --border-color: #a0daa6;
    --lightgreen: #e7f4e8
}

/* ui kit start */
.ui-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    margin-bottom: 46px;
}

.ui-item:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.h1 {
    font-size: 27px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    line-height: 3.741;

}

.h2 {
    font-size: 25px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    line-height: 3.72;

}

.h3 {
    font-size: 19px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    line-height: 3.737;

}

.hr-line {
    height: 2px;
    background: #cecece;
}

.ui_item-1 {
    width: 20%;
}

.ui_item-2 {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 70px;
    padding-left: 70px;
    padding-right: 60px;
    gap: 5px;
}

.ui_item-2 .logs__select-drop,
.ui_item-2.logs__select .select__value {
    width: 100%;
    height: 60px !important;

}

.ui_item-2.logs__select .select__value {
    padding: 10px;
}

.ui_item-2.bg-gray {
    background: #f6fbf6;
}

.input-ui,
.ui-search {
    padding-left: 16px;
    max-width: 468px;
    width: 100%;
    height: 60px;
    border-radius: 6px;
    background: #f6fbf6;
    border: 2px solid #d4e8d9;
    font-size: 23px;
    color: rgb(0, 0, 0);
    line-height: 6.391;
}

.ui-search input {
    background: inherit;
    width: 100%;
    height: 100%;
}

.ui-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ui-search-img {
    width: 49px;
    height: 56px;
    padding: 18px 16px;
    cursor: pointer;
}

.ui-span {
    width: 2px;
    background: #d4e8d9;
    height: 80%;

}

.input-ui.error {
    border-color: #f7b6ba;
}

.bg-gray .input-ui {
    background: #ffffff;
}

.container-ui {
    background: white;
}

.ui-search:hover .ui-span {
    background: #a0daa6;
}

.ui-search:active .ui-span {
    background: #5bd068;
}

.ui-checkbox {
    min-width: 39px;
    max-width: 39px;
}

.input .ui-checkbox input:checked+label:after {
    right: 20%;
    width: 12px;
    height: 21px;
}

.input .ui-checkbox label:before {
    width: 39px;
    height: 38px;
}

.ui-btn {
    max-width: 468px;
    width: 100%;
    height: 74px;
    background: #4ab957;
    color: var(--white);
    border-radius: 6px;
}

.ui-btn:hover {
    background: #5bd068;

}

.ui-btn:active {
    background: #74d97f;

}

.ui-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}

.ui-remove {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    max-width: 150px;
    width: 100%;
    height: 60px;
    border: 2px solid #a0daa6;
    border-radius: 6px;
}

.ui-add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    max-width: 300px;
    width: 100%;
    height: 60px;
    border: 2px solid #a0daa6;
    border-radius: 6px;
    font-size: 19px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    text-transform: uppercase;

}

button.ui-add:disabled,
button.ui-remove:disabled,
button.ui-edit:disabled {
    -webkit-filter: opacity(0.5);
    filter: opacity(0.5);
    color: rgb(0, 0, 0);
}

.ui-remove:hover,
.ui-add:hover {
    background: #f6fbf6;
}

.ui-remove:active,
.ui-add:active {
    background: #e7f5e7;
}

.ui-remove-img {
    width: 20px;
    height: 20px;
}

.ui-edit {
    width: 100%;
    height: 48px;
    font-size: 15px;
    text-transform: uppercase;
    color: #339a3f;
    border: 2px solid #a0daa6;
    border-radius: 4px;

}

.ui-edit:hover {
    background: #e7f5e7;

}

.ui-edit:active {
    background: #ceecce;

}

@media(max-width:767px) {
    .h1 {
        font-size: 22px;
    }

    .h2 {
        font-size: 20px;
    }

    .h3 {
        font-size: 16px;
    }

    .ui-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;

    }

    .ui_item-2 {
        width: 100%;
    }

    .ui-search {
        max-width: 100%;
    }

    .ui-add {
        font-size: 16px;
    }

    .ui-remove-img {
        width: 15px;
        height: 15px;
    }
}

/* ui kit end */
html {
    scroll-behavior: smooth
}

body {
    background: #f6fbf6
}

.body-active {
    overflow-y: hidden;
    background: var(--gray)
}

.body-active .container {
    padding-bottom: 0
}

.overflow {
    overflow: hidden
}

.opacity {
    opacity: 0
}

a {
    text-decoration: none;
    color: unset;
    cursor: pointer
}

li {
    list-style: none
}

svg {
    display: inline-block;
    cursor: pointer
}

img {
    width: 100%;
    height: 100%;
    display: block
}

input,
h1,
h2,
h3,
h4,
h5,
h6 {
    cursor: pointer
}

input:hover,
.ui-search:hover {
    border-color: #a0daa6
}

input:focus,
.ui-search:active {
    border-color: #5bd068;
    background: #f6fbf6
}

.container {
    max-width: 1225px;
    width: 100%;
    margin: 0 auto;
    padding: 111px 20px 20px
}

.container.changing {
    padding-top: 180px;
}

.tdu {
    -webkit-text-decoration: solid underline;
    text-decoration: solid underline
}

.container-fluid {
    max-width: 1125px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

button {
    cursor: pointer;
    background: inherit
}

.db {
    display: none
}

@font-face {
    font-family: 'icon';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../fonts/fa-brands-400.eot");
    src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("true-type"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg")
}

@font-face {
    font-family: 'icon';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("../fonts/fa-duotone-900.eot");
    src: url("../fonts/fa-duotone-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-duotone-900.woff2") format("woff2"), url("../fonts/fa-duotone-900.woff") format("woff"), url("../fonts/fa-duotone-900.ttf") format("true-type"), url("../fonts/fa-duotone-900.svg#fontawesome") format("svg")
}

@font-face {
    font-family: 'icon';
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url("../fonts/fa-light-300.eot");
    src: url("../fonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-light-300.woff2") format("woff2"), url("../fonts/fa-light-300.woff") format("woff"), url("../fonts/fa-light-300.ttf") format("true-type"), url("../fonts/fa-light-300.svg#fontawesome") format("svg")
}

@font-face {
    font-family: 'icon';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../fonts/fa-regular-400.eot");
    src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("true-type"), url("../fonts/fa-regular-400.svg#fontawesome") format("svg")
}

@font-face {
    font-family: 'icon';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("../fonts/fa-solid-900.eot");
    src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("true-type"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg")
}

label {
    display: block;
    position: relative;
    margin: 0 15px;
    cursor: pointer
}

input[type=checkbox] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute
}

label span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    position: relative
}

label span::before {
    content: '';
    display: block;
    position: relative;
    width: 19.8px;
    height: 19.8px;
    border-radius: 50%;
    border: 2px solid #d9eadd
}

label span::after {
    content: '';
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #343434
}

.auto__block label input[type=checkbox]:checked~span::after {
    display: block
}

.auto__block label input[type=checkbox]:not(:checked)~span::after {
    display: none
}

.icon_2-28 {
    width: 22px;
    height: 23px
}

.icon_2-55-3 {
    width: 21px;
    height: 23px
}

.icon_2-30 {
    width: 15px;
    height: 28px
}

.icon_2-32 {
    width: 28px;
    height: 25px
}

.icon_2-11 {
    width: 27px;
    height: 27px
}

.icon_2-12 {
    width: 21px;
    height: 28px
}

.icon_2-13 {
    width: 17px;
    height: 27px
}

.icon_2-37 {
    width: 27px;
    height: 26px
}

.icon_2-38 {
    width: 29px;
    height: 27px
}

.icon_2-15 {
    width: 27px;
    height: 26px
}

.icon_2-3 {
    margin-left: 22px;
    margin-right: 14px;
    width: 30px;
    height: 25px
}

.icon_2-3-2 {
    width: 30px;
    height: 25px
}

.wrapper {
    width: 114px;
    height: 53px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 2px solid #a4dcab;
    border-radius: 5px;
    padding-left: 14px;
    padding-right: 13px;
    z-index: 99999;
    position: absolute;
    right: 20px;
    cursor: pointer
}

.wrapper:hover {
    background: #e7f4e8;
}

.wrapper-txt {
    font-size: 15px;
    font-family: "Ubuntu";
    color: #278b5d;
    text-transform: uppercase
}

.wrapper__nav {
    padding: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: transparent;
    border-style: none;
    outline: none;
    cursor: pointer
}

.wrapper__nav span {
    width: 21px;
    height: 2px;
    background-color: #198353;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 2px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.wrapper__nav span:nth-child(2) {
    margin-top: 5px;
    margin-bottom: 5px
}

.wrapper-active span:nth-child(1) {
    opacity: 0;
}

.wrapper-active span:nth-child(2) {
    margin-top: 0;
    margin-bottom: -2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.wrapper-active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.wrapper__container {
    position: absolute;
    right: -10000%;
    top: 63px;
    height: 50vh;
    padding-top: 13px;
    padding-right: 40px;
    padding-bottom: 31px;
    padding-left: 40px;

}

.wrapper__container.wrapper-active {
    right: -1px;
    top: 63px;
    height: 80vh;
    overflow-x: hidden;
    background: white;

}

.wrapper-active .wrapper__nav {
    margin-bottom: 5px;
}

.wrapper-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 354px;
    height: calc(99% / 9 + 1px);
    border: 2px solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-bottom-color: #daeddd;
}

.wrapper-item:hover {
    border-color: #daeddd;
    background-color: #f3f9f3;
    color: inherit;
}

.wrapper-item:not(:first-child) {
    margin-top: -2px;
}

.wrapper-img {
    min-width: 44px;
    width: 100%;
    max-width: 44px;
    max-height: 44px;
    height: 100%;
    min-height: 75%;
    border-radius: 4px;
    padding-top: 11px;
    padding-right: 5px;
    padding-bottom: 11px;
    padding-left: 8px;
    background: #e7f4e8;
    margin-right: 22px;
    margin-left: 11px;
}

.wrapper-arrow {
    position: absolute;
    right: 60px;
    width: 10px;
    height: 16px;
}

header {
    top: 0;
    background: var(--white);
    position: fixed;
    width: 100%;
    z-index: 999;
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 11px !important;
    position: relative
}

.header__logo {
    display: inline-block;
    width: 194px;
    height: 53px;
    margin-right: auto
}

.login__header .header__logo {
    margin-left: auto
}

.header .search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: 28px;
    cursor: pointer
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 37px;
    cursor: pointer
}

.admin__title {
    font-size: 27px;
    color: black;
    line-height: 28px
}

.exit {
    display: none
}

.exit-icon {
    width: 53px;
    height: 43px
}

.mob-burger {
    width: 41px;
    height: 28px;
    display: none
}

.admin__block {
    max-width: 880px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 60px
}

.admin__block-card {
    width: 48%;
    border-radius: 7px;
    border: 2px solid #d9eadd;
    overflow: hidden;
    background: #e7f4e8;
    margin-bottom: 35px
}

.admin__block-card:hover {
    border-color: #a0daa6
}

.admin__block-card:hover img {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.admin__block-card img {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s
}

.admin__block-card:nth-child(2n+2) {
    margin-left: 35px
}

.admin__block-img {
    max-width: 417px;
    width: 100%;
    height: 195px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.graphic-block-img {
    width: 132px;
    height: 117px
}

.log-block-img {
    width: 150px;
    height: 114px
}

.uvedomlenia-block-img {
    width: 142px;
    height: 118px
}

.group-block-img {
    width: 142px;
    height: 120px
}

.admin__block-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--white);
    height: 75px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 23px;
    padding-right: 19px;
    font-size: 23px;
    color: black;
    line-height: 26px
}

.admin__block-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.admin-icon {
    width: 10px;
    height: 16px
}

.admin-icon-mob {
    display: none;
    width: 39px;
    height: 24px
}

.breadcrumb__title,
.breadcrumb__subtitle {
    color: #4ab957;
    font-weight: bold;
    margin-bottom: 0;
    font-size: 16px
}

.breadcrumb__title:hover,
.breadcrumb__subtitle:hover {
    color: #5bd068
}

.breadcrumb__title:focus,
.breadcrumb__subtitle:focus {
    color: #74d97f
}

.breadcrumb .arrow,
.device__group .arrow {
    margin-left: 9px;
    margin-right: 6px;
    width: 19px;
    height: 2px;
    background: #cee1d3
}

.back {
    display: none
}

.mob-buttons {
    display: none
}

.auto__title-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 53px
}

.auto__title-block .grafic-share {
    display: none
}

.auto__title {
    font-size: 31px;
    color: black
}

.uvedomlenia .auto__button,
.auto .auto__button {
    background: #e7f5e7
}

.auto__button,
.edit__button {
    font-size: 15px;
    font-family: "Ubuntu";
    color: #339a3f;
    text-transform: uppercase;
    border-style: solid;
    border-width: 2px;
    border-color: var(--border-colot);
    border-radius: 5px;
    background-color: #f6fbf6;
    width: 296px;
    height: 52px
}

.auto__button:hover,
.edit__button:hover {
    border-color: transparent;
    color: var(--white);
    background-color: #5bd068
}

.auto__button:focus-within,
.edit__button:focus-within {
    border-color: transparent;
    color: var(--white);
    background-color: #74d97f
}

.container__automatization {
    border: 2px solid #d9eadd;
    border-radius: 8px;
    overflow: hidden
}

.auto .container__automatization {
    border-bottom: 0px
}

.auto__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--white);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 2px solid #d9eadd;
    overflow: hidden
}
.auto__block:nth-child(2n+2){
    background: #f9fcf9;
}
.auto__block:nth-child(2n+2) .auto__right{
    background: #f9fcf9;
}

.auto__block:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.automatization-title {
    font-size: 21px;
    color: black;
    line-height: 1.286;
    text-align: left;
    margin-bottom: 20px
}

.auto__right {
    max-width: 79px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 2px solid var(--lightgray)
}

.open .icon_4-2 {
    position: absolute;
    top: -100%
}

.icon_4-2 {
    width: 12px;
    height: 19px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.auto__right {
    border: none;
    background: var(--white);
    position: relative
}

.auto__block:has(input:checked) {
    background: #fbfdfb
}

.p-24 {
    padding-left: 32px
}

.grid {
    width: 100%;
    border-right: 2px solid var(--lightgray)
}

.auto__block .on {
    position: absolute;
    right: 50%;
    bottom: -100%;
    width: 21px;
    height: 25px
}

.open .on {
    position: absolute;
    bottom: 50%;
    right: 50%;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%)
}

.td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 60px;
    min-height: 60px;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 19px;
    font-family: "Ubuntu";
    color: black;
    line-height: 1.737;
    border-bottom: 2px solid var(--lightgray)
}

.td-line {
    width: 19px;
    height: 2px;
    background: #afc9b5
}

.td:hover {
    cursor: pointer;
    background: #e7f5e7
}

.td .bacg:hover {
    background-color: inherit;
}

.td div.td-line:hover {
    background: #afc9b5
}

.auto__right:hover, 
.auto__block:nth-child(2n+2) .auto__right:hover {
    background: #e7f5e7
}
.auto__right:focus-within,
.auto__right:focus-within {
    background: #ceecce
}

.td:last-child {
    border: none;
    padding-top: 0;
    padding-bottom: 0
}

.grid-2 {
    max-width: 300px;
    width: 100%
}

.grid-2 .td-nine,
.grid-2 .td-eleven,
.grid-2 .td-thirteen {
    padding-left: 22px;
}

.td-one,
.td-two,
.td-three,
.td-four,
.td-five,
.td_uvedomlenia-three {
    min-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.container__automatization.container__uvedomlenia .td-two,
.container__automatization.container__uvedomlenia .td-four {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.container__automatization .td-two,
.container__automatization .td-four {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.td-two,
.td-four {
    padding-left: 11px;
    padding-right: 11px;
}

.td-one,
.td-three {
    padding-right: 11px;
    min-width: 70px;

}

.td-five {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.brr {
    border-right: 2px solid var(--lightgray)
}

.brt {
    border-top: 2px solid var(--lightgray)
}

.brb {
    border-bottom: 2px solid var(--lightgray)
}

.td-span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 20px;
    min-width: 55px;
    height: 26px;
    border: 2px solid #d9eadd;
    border-radius: 25px
}

.td-span.btn {
    min-width: 55px;
    width: auto;
    height: 26px;
}
.td-span:focus {
    background: #ceecce;
}

.td-six,
.td-seven,
.td-eight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 60px;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.td-six {
    padding-left: 32px;
    padding-right: 16px;

}

.td-seven,
.td-eight {
    padding-left: 16px;
    padding-right: 16px;
}

.td-nine,
.td-ten,
.td-eleven,
.td-twelve,
.td-thirteen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.td-nine {
    width: 49.3%
}

.td-ten {
    width: 50.4%
}

.td-eleven {
    width: 49.3%
}

.td-eleven .icon_2-12 {
    width: 22px;
    height: 28px
}

.td-twelve {
    width: 50.4%
}

.td-twelve .icon_2-13 {
    width: 18px;
    height: 28px
}

.td-thirteen {
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.td-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
    width: 28px;
    height: 25px
}

.td-number {
    min-width: 49px;
    padding-left: 5px;
    padding-right: 5px;
    height: 26px;
    background: #ecf4ee;
    border-radius: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.img-2,
.img-3 {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #e7f4e8;
    border-radius: 4px;
}

.td div.img-2 div:hover,
.td div.img-3 div:hover,
.td div.img-2:hover,
.td div.img-3:hover {
    background: #e7f4e8;
}

.degree {
    margin-left: auto;
    margin-right: auto;
}

.degre-icon {
    display: none
}

.addbutton {
    margin: 31px auto auto auto;
    display: block;
    border-style: solid;
    border-width: 2px;
    border-color: var(--border-color);
    border-radius: 5px;
    background-color: rgba(74, 185, 87, 0);
    width: 296px;
    height: 52px;
    font-size: 16px;
    color: #339a3f;
    text-transform: uppercase
}

.addbutton:hover {
    border-color: transparent;
    color: var(--white);
    background-color: #5bd068
}

.addbutton:focus {
    border-color: transparent;
    color: var(--white);
    background-color: #74d97f
}

.addbutton:focus-within {
    border-color: transparent;
    color: var(--white);
    background-color: #74d97f
}

.icon_check {
    position: absolute;
    top: -100%;
    left: 0
}

.icon_1-15 {
    position: absolute;
    top: 0;
    left: 0
}

.uvedomlenia {
    border-bottom: none
}

.uvedomlenia .auto__block {
    border-top: none;
    border-left: 2px solid #d9eadd;
    border-right: 2px solid var(--lightgray);
    overflow: hidden
}

.uvedomlenia .auto__block:first-child {
    border-top: 2px solid #d9eadd;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px
}

.uvedomlenia .auto__block:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.uvedomlenia .border .auto__right {
    border-bottom: none
}

.uvedomlenia .container__automatization {
    border: none
}

.grid-uvedomlenia {
    padding-left: 0
}

.grid-two {
    max-width: 340px;
    width: 100%;
    border-right: 2px solid var(--lightgray)
}

.grid-two .td {
    padding-left: 10px;
    padding-right: 10px;
}

.grid-two .tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
}

.grid-two .tr-w {
    margin-left: 40px;
}

.tr__span-number {
    margin-left: 13px;
}

.grid-uvedomlenia .td_uvedomlenia-three {
    padding-left: 11px;
    padding-right: 11px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.td-line.dn {
    display: none
}

.grid-uvedomlenia .td .tr {
    width: 86px;
    height: 86px;
    border-right: 2px solid var(--lightgray);
    border-bottom: 2px solid var(--lightgray);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.grid-uvedomlenia .td .tr-w {
    width: 204px;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.grid-uvedomlenia .td .tr__span-number {
    max-width: 113px;
    width: 100%;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-style: solid;
    border-width: 2px;
    border-color: #d9eadd;
    border-radius: 5px;
    background-color: #f6fbf6
}

.grid-uvedomlenia .td .tr:last-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-right: none
}

.grid-uvedomlenia .td .tr:last-child .tr__span-number {
    max-width: 63px;
    width: 100%
}

.clients__span {
    margin-right: 7px;
    font-size: 20px
}

.clients .dn {
    display: none
}

.clients .db {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.clients .share .dn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.clients .accordion__info .w-74 .db {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.clients .accordion__info .w-74 .dn {
    display: none
}

.clients .day,
.clients .week,
.clients .month {
    display: none
}

.clients .auto__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.clients .auto__title-block {
    margin-bottom: 44px
}

.clients__device {
    width: 100%;
    max-height: 88px;
    padding-left: 22px;
    border: 2px solid var(--lightgray);
    border-radius: 8px;
    background: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.clients-add {
    font-size: 16px;
    color: #339a3f;
    text-transform: uppercase;
    line-height: 3;
    text-align: center;
    border: 2px solid #a0daa6;
    border-radius: 4px;
    width: 252px
}

.clients-add:hover {
    background: #e7f5e7
}

.clients-add:focus-within {
    background: #ceecce
}

.clients__device-name-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 11px;
    padding-bottom: 11px;
    width: 190px;
    border-right: 2px solid var(--lightgray)
}

.clients__device-name-block.db {
    display: none
}

.mob-buttons-block {
    display: none
}

.clients__device-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px
}

.clients__device-title {
    font-size: 15px;
    color: #696f69;
    line-height: 25px
}

.clients__device-subtitle {
    font-size: 15px;
    line-height: 25px
}

.clients__device-setting {
    width: 100%;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 11px;
    padding-bottom: 11px;
}

.clients__device-set-icon {
    font-size: 18px;
    line-height: 2.389;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.clients__device-set {
    padding: 10px;
    border-radius: 25px
}

.clients__device-set.share .db {
    display: none
}

.clients__device-set:hover {
    background: #f6fbf6
}

.clients__device-set:focus-within {
    background: #e7f5e7
}

.clients .icon_2-14 {
    width: 35px;
    height: 35px
}

.clients .set__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px
}

.clients .set__icon-1 {
    width: 28px;
    height: 28px
}

.clients .set__icon-2 {
    width: 25px;
    height: 28px
}

.clients .set__icon-3 {
    width: 22px;
    height: 26px
}

.clients .set__icon-4 {
    width: 34px;
    height: 29px
}

.clients .set__icon-5 {
    width: 23px;
    height: 25px
}

.open .accord__submain {
    min-height: 0px;
    max-height: 100%
}

.open .open__block .icon__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.open__sub .accord__block {
    border-top: 2px solid #d9eadd
}

.open__sub .accord__sub-submain {
    min-height: 0px;
    max-height: 100%
}

.open__sub .icon__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.open__sub-submain .accord__block {
    border-top: 2px solid #d9eadd
}

.open__sub-submain .accord__sub_sub-submain {
    min-height: 0px;
    max-height: 100%
}

.open__sub-submain .icon__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.bg {
    background: var(--lightgreen)
}

.bg-white {
    background: var(--white)
}

.accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%
}

.accordion .xx,
.accordion .yy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
    font-family: "Ubuntu";
    color: black;
    line-height: 1.294;
    text-transform: uppercase
}

.accordion .xx span {
    display: block;
    width: 11px;
    height: 11px;
    background: #4ab957;
    border-radius: 25px;
    margin-left: 12px
}

.accordion .yy span {
    display: block;
    width: 11px;
    height: 11px;
    background: #ec404c;
    border-radius: 25px;
    margin-left: 12px
}

.accordion .icon__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 35px;
    padding: 10px;
    border-radius: 40%
}

.accordion .icon__arrow-right {
    width: 35px;
    height: 40px;
    padding: 10px;
    border-radius: 40%
}

.accordion-item {
    width: 100%
}
.accordion-item.active .icon__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.accordion-item .w-74.w-active .icon__arrow,
.accordion-item .w-74.w-active .icon__arrow-right {
    background: #a0daa6
}

.accordion-title {
    width: 100%;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 21px;
    color: black
}

.accordion-header .accordion-title {
    margin-bottom: 0
}

.accordion-title br {
    display: none
}

.accordion-title .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding-right: 24px
}

.accordion-header,
.accordion_main-header {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.accordion-content {
    display: none
}

.accordion-content.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.accordion-content.active .accordion-header {
    border-radius: 0;
    margin-top: -2px
}

.accordion-header:hover,
.accordion_main-header:hover,
.accordion-content.active .accordion-header:hover {
    z-index: 1;
    border-color: #a0daa6 !important
}

.accordion-header:hover a.w-74,
.accordion-header:hover .w-74.db,
.accordion-header:hover h4,
.accordion-header:hover h4:nth-child(3n),
.accordion_main-header:hover a.w-74,
.accordion_main-header:hover .w-74.db,
.accordion_main-header:hover h4,
.accordion_main-header:hover h4:nth-child(3n) {
    border-color: #a0daa6
}

.accordion-icon {
    margin-left: auto;
    margin-right: 30px;
    min-height: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.w-63 {
    max-width: 10%;
    min-width: 10%;
    width: 100%
}

.w-83 {
    max-width: 12%;
    min-width: 12%;
    width: 100%
}

.w-85 {
    max-width: 12%;
    min-width: 12%;
    width: 100%
}

.accordion-header h4.w-85,
.accordion_main-header h4.w-85 {
    border-right: none;
}

.accordion-header{
    border: 2px solid #d9eadd;
    margin-left: -2px;
    margin-right: -2px;
}
.accordion-header,
.accordion_main-header {
    position: relative;
    margin-top: -2px;
    z-index: 0;
    text-transform: uppercase
}
.accordion_main-header{
    border-top-left-radius:8px;
    border-top-right-radius:8px;
    margin-left: -2px;
    margin-right: -2px;
    border: 2px solid #d9eadd;
}
.br-r{
    border-radius:8px;
    border: 2px solid #d9eadd;
    border-bottom: 0px;
}
.accordion-item:last-child .accordion-content {
    border-radius: 10px; /* Пример радиуса границы - вы можете изменить на свой */
  }
.ml-0{
    margin-left: 0 !important;
}
.accordion-content .accordion-header .w-74:first-child {
    margin-left: 15px;
}

.accordion-content .accordion-content .accordion-header .w-74:first-child {
    margin-left: 20px;
}

.accordion-content .accordion-content .accordion-content .accordion-header .w-74:first-child {
    margin-left: 25px;
}

.accordion-content .accordion-header:hover~.accordion-header {
    border-bottom-color: #a0daa6
}

.accordion-header.active {
    border-bottom-left-radius: 0px
}

.accordion-header.active .w-74:first-child {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.accordion-header .accordion-symbol,
.accordion-header .accordion-sign,
.accordion_main-header .accordion-symbol,
.accordion_main-header .accordion-sign {
    font-size: 12px
}

.accordion-header .minus,
.accordion_main-header .minus {
    position: relative
}

.minus .accordion-symbol {
    color: #ec3a47;
    position: absolute
}

.plus {
    position: relative
}

.plus .accordion-symbol {
    color: #4ab957;
    position: absolute
}

.accordion__info {
    width: 100%
}

.accordion__info .accordion-header {
    margin-left: -2px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.accordion-item a.w-74,
.accordion-item .w-74.db,
.accordion_main-header a.w-74,
.accordion_main-header .w-74.db {
    border-left: 2px solid #d9eadd
}

.accordion__info .accordion-header .w-74:focus {
    background: #a0daa6
}

.accordion .accordion-header a.w-74:hover,
.accordion .accordion_main-header a.w-74:hover
 {
    background: #c5eac5
}

.accordion .accordion-header a.w-74:focus {
    background: #a0daa6
}

.accordion .accordion-header a.w-74:focus-within, 
.accordion .accordion_main-header a.w-74:focus-within 
{
    background: #a0daa6
}

.accordion-header .w-74:first-child:hover {
    background-color: inherit;
}

.accordion .icon__raiting {
    width: 30px;
    height: 36px;
    border-radius: 30%
}
.accordion .icon__4-2 {
    width: 10px;
    height: 16px;
}

.accordion__info .icon__raiting {
    width: 60px;
    height: 50px;
    padding: 10px;
    border-radius: 30%
}

.w-74 {
    min-width: 74px;
    height: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@-webkit-keyframes unfoldIn {
    0% {
        -webkit-transform: scaleX(0) scaleY(0.005);
        transform: scaleX(0) scaleY(0.005)
    }

    50% {
        -webkit-transform: scaleX(1) scaleY(0.005);
        transform: scaleX(1) scaleY(0.005)
    }

    100% {
        -webkit-transform: scaleY(1) scaleX(1);
        transform: scaleY(1) scaleX(1)
    }
}

@keyframes unfoldIn {
    0% {
        -webkit-transform: scaleX(0) scaleY(0.005);
        transform: scaleX(0) scaleY(0.005)
    }

    50% {
        -webkit-transform: scaleX(1) scaleY(0.005);
        transform: scaleX(1) scaleY(0.005)
    }

    100% {
        -webkit-transform: scaleY(1) scaleX(1);
        transform: scaleY(1) scaleX(1)
    }
}

@-webkit-keyframes unfoldOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scaleX(1) scaleY(0.005);
        transform: scaleX(1) scaleY(0.005)
    }

    100% {
        -webkit-transform: scaleX(0) scaleY(0.005);
        transform: scaleX(0) scaleY(0.005)
    }
}

@keyframes unfoldOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scaleX(1) scaleY(0.005);
        transform: scaleX(1) scaleY(0.005)
    }

    100% {
        -webkit-transform: scaleX(0) scaleY(0.005);
        transform: scaleX(0) scaleY(0.005)
    }
}

.popup {
    position: absolute;
    -webkit-transform: translate(-100%, -100%);
    -ms-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(197, 201, 197, 0.5)
}

.popup__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--white);
    max-width: 702px;
    width: 60%;
    max-height: 90vh;
    padding: 60px 30px;
    overflow-x: hidden;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    scrollbar-width: 0px;
    border-radius: 8px
}

.popup__container-grid {
    padding-top: 66px;
    padding-left: 0;
    padding-right: 10px;
    padding-bottom: 40px;
    max-width: 822px;
    width: 100%;
}

.popup__container-grid .popup__block {
    padding-left: 40px;
    padding-top: 0px;
    padding-right: 52px;
    padding-bottom: 0px;
}

.popup__container::-webkit-scrollbar {
    width: 0px
}

.popup-grid.grid {
    border: 2px solid #d9eadd;
    border-radius: 9px;
}

.popup.active {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    z-index: 999;
    position: fixed
}

.popup__block {
    width: 100%;
    min-height: 100%;
    background: var(--white);
    position: relative;
    z-index: 999;
    padding: 60px 67px 68px
}

.popup .icon__close {
    cursor: pointer;
    width: 26px;
    height: 26px
}

.popup__title {
    font-size: 25px;
    line-height: 1.72;
    text-align: center;
    margin-bottom: 76px
}

.popup__txt {
    font-size: 21px;
    line-height: 32px;
    text-align: left
}

.btn {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.popup__btn {
    margin-top: 76px;
    border-radius: 7px;
    background-color: #4ab957;
    max-width: 468px;
    width: 100%;
    height: 74px;
    font-size: 23px;
    color: white;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px;
    display: block
}

.popup-4 .popup__btn-block {
    margin-top: 76px;
    max-width: 468px;
    width: 100%;
    height: 74px;
    font-size: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup__btn-block .popup__btn_save {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
    background-color: #4ab957;
    border-radius: 7px;
    height: 74px;
    font-size: 23px
}

.popup__btn-block .popup__btn_save a {
    color: white
}

.popup__btn-block .popup__btn_save:hover {
    background-color: #5bd068
}

.popup__btn-block .popup__btn_save:focus {
    background-color: #74d97f
}

.popup__btn-block .popup__btn_delete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 25%;
    border-radius: 7px;
    height: 74px;
    background: var(--gray);
    border: 2px solid var(--lightgray)
}

.popup__btn-block .popup__btn_delete .delete-btn {
    width: 25px;
    height: 25px
}

.popup__btn-block .popup__btn_delete:hover {
    background-color: #5bd068
}

.popup__btn-block .popup__btn_delete:focus {
    background-color: #74d97f
}

.popup__btn:hover {
    background-color: #5bd068
}

.popup__btn:focus {
    background-color: #74d97f
}

.popup__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 1;
    right: 21px;
    top: 21px
}

.popup-1 .popup__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.popup-12 .select__option,
.popup-12 .select__value,
.popup-13 .select__option,
.popup-13 .select__value,
.popup-15 .select__option,
.popup-15 .select__value,
.popup-16 .select__option,
.popup-16 .select__value {
    width: 100%;
    font-size: 23px;
    line-height: 23px
}

.popup-12 .popup__title {
    margin-bottom: 13px
}

.popup-12 .popup__title br {
    display: none
}

.popup-13 .popup__select-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 196px;
    margin-left: auto;
    margin-right: auto
}

.popup-13 .popup__select-time span {
    font-size: 36px;
    line-height: 36px
}

.popup-13 .popup__select-time .h,
.popup-13 .popup__select-time .m {
    width: 78px;
    height: 60px;
    background: var(--lightwhite);
    border: 2px solid #d9eadd;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 28px;
    font-family: "Ubuntu";
    color: black;
    padding: 13px;
    line-height: 3.5;
    text-align: center;
    cursor: pointer
}

.popup-13 .popup__select-time .h:hover,
.popup-13 .popup__select-time .m:hover {
    border-color: #a0daa6
}

.popup-13 .popup__select-time .h:focus,
.popup-13 .popup__select-time .m:focus {
    border-color: #5bd068
}

.popup-13 .popup__title {
    margin-bottom: 72px
}

.popup-13 .popup__btn {
    margin-top: 50px
}

.popup-14 {
    text-align: center
}

.popup-14 .popup__title {
    margin-bottom: 35px
}

.popup-14 .popup__subtitle {
    font-size: 19px;
    color: black;
    line-height: 19px
}

.popup-14 .popup__btn {
    margin-top: 57px
}

.popup-15 .popup__title,
.popup-16 .popup__title {
    margin-bottom: 13px
}

.popup-15 .popup__block-name,
.popup-16 .popup__block-name {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.popup-15 .popup__ls,
.popup-16 .popup__ls {
    margin-bottom: 53px
}

.popup-15 .popup__ls .select__option,
.popup-16 .popup__ls .select__option .popup-15 .popup__ls .select__value,
.popup-16 .popup__ls .select__value {
    border-color: #e8e8e8;
    background: #f8f8f8;
    font-size: 23px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 23px
}

.popup-15 .popup__btn,
.popup-16 .popup__btn {
    margin-top: 50px
}

.popup-15 .required,
.popup-16 .required {
    position: relative
}

.popup-15 .required::before,
.popup-16 .required::before {
    position: absolute;
    content: '*';
    right: -15px;
    top: 0;
    color: #ec404c
}

.device svg {
    cursor: pointer
}

.device__block {
    width: 100%;
    height: 84px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 2px solid #d9eadd;
    border-radius: 8px;
    background: var(--white);
    padding-left: 20px;
    padding-right: 20px
}

.device__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px
}

.device__group-btn {
    width: 168px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #a4dcab;
    border-radius: 5px;
    font-size: 15px;
    color: #339a3f;
    text-transform: uppercase;
    line-height: 25px
}

.device__group-btn:hover {
    background: #e7f5e7
}

.device__group-btn:focus-within {
    background: #ceecce
}

.device__setting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 52px
}

.device__setting.dn {
    display: none
}

.device__setting .set__icon-1 {
    width: 25px;
    height: 28px
}

.device__setting .set__icon-2 {
    width: 25px;
    height: 28px
}

.device__setting .set__icon-3 {
    width: 32px;
    height: 28px
}

.edit-icon {
    width: 0;
    height: 0;
}

.device-set {
    font-size: 19px;
    color: rgba(0, 0, 0, 0.902);
    line-height: 19px;
    padding: 10px;
    border-radius: 25px
}

.device-set:hover {
    background: #f6fbf6
}

.device-set:active {
    background: #e7f5e7
}

.device__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 25px
}

.device__left {
    overflow: hidden;
    border-radius: 6px;
    margin-top: 67px;
    max-width: 591px;
    width: 100%;
    background: var(--white)
}

.device__left-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #d9eadd;
    margin-top: -2px;
    padding-left: 10px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    height: 74px
}

.device__left-block:first-child {
    margin-top: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
}

.device__left-block:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
}

.sub__device-txt {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.device__left-txt {
    cursor: pointer;
    margin-left: 8px;
    font-size: 21px;
    color: black;
    line-height: 1.857
}

.device .right__block {
    overflow: hidden;
    background: var(--white);
    border-radius: 8px
}

.device__right {
    max-width: 567px;
    width: 100%
}

.device__right .w-51 {
    min-width: 51px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.device__right .w-67 {
    min-width: 67px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.device__right .w-67:hover .img-2 {
    background: #c5eac5
}

.device__right .w-67:focus-within .img-2 {
    background: #a0daa6
}

.device__right .w-84 {
    min-width: 96px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.device__right .w-78 {
    min-width: 90px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.device__right .w-157 {
    min-width: 112px;
    width: 100%;
    padding-left: 20px
}

.device__right .w-51,
.device__right .w-67,
.device__right .w-84,
.device__right .w-78,
.device__right .w-157 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 19px;
    color: black;
    line-height: 19px
}

.device__right-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 67px;
    padding-bottom: 15px
}

.device__right-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin-top: -2px;
    height: 92px;
    border: 2px solid #d9eadd
}

.device__right-block h4,
.device__right-block p {
    font-size: 19px;
    color: black;
    line-height: 1.316
}

.device__right-block:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-top: 0
}

.device__right-block:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.device__right-block:nth-child(2n+2) {
    background: var(--lightwhite)
}

.device__right-block .after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.device__right-block .after .before-span {
    display: none
}

.device__right-block .after .after-span {
    color: #ec3a47;
    font-size: 12px
}

.device__right-block .before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.device__right-block .before .after-span {
    display: none
}

.device__right-block .before .before-span {
    color: #40b646;
    font-size: 12px
}

.device__right-img {
    min-width: 44px;
    height: 44px;
    margin-left: 10px;
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #e7f4e8;
    border-radius: 4px;
}

.device__right-block .w-51 {
    background: var(--lightgreen);
    height: 100%;
    border-right: 2px solid #d9eadd
}

.device__right-block .w-67 {
    height: 100%
}

.device__right-block .w-84 {
    height: 100%;
    border-right: 2px solid #d9eadd
}

.device__right-block .w-78 {
    height: 100%;
    border-right: 2px solid #d9eadd
}

.device__right-block .w-157 {
    height: 100%
}

.device__right-block p {
    color: #696f69
}

.device__right .right-icon {
    width: 32px;
    height: 28px;
}

.w-57 {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 57px;
    width: 100%;
    border-right: 2px solid #d9eadd
}

.device__right-title .w-57 {
    border: none
}

.right-icon-link {
    width: 20px;
    height: 20px
}

.device-icon {
    width: 29px;
    height: 30px
}


.device__active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    height: 100%
}

.device__active .device__left-txt {
    color: #d70808;
}

.device__active:has(input:checked) .device__left-txt {
    color: #4ab957
}

.device__active:has(input:checked) .device__left-span {
    background-color: #4ab957
}

.device__active .device__left-span {
    width: 15px;
    height: 15px;
    border-radius: 25px;
    background: #da1919
}

.device__active .device__left-status {
    border-left: 2px solid #d9eadd;
    border-right: 2px solid #d9eadd
}

.device__active .device__left-status:last-child {
    border-right: none
}

.device__active .sub__device-txt {
    text-align: center
}

.device__active .sub__device-txt .device__left-txt {
    margin-left: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.device .w-74 {
    min-width: 76px;
    height: 100%
}

.device__active .dn {
    display: none
}

.img-device {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #e7f4e8;
}

.img-device.red {
    background-color: #ffeded;
}

.device__active .db {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.device__active .img-2.db {
    background: #ffeded
}

.w-128 {
    width: 128px
}

.device-input {
    width: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.device-input .checkbox-2 {
    cursor: pointer;
    display: block
}

.device-input .checkbox-2 input {
    display: none
}

.device-input .checkbox-2 input+span {
    display: block;
    position: relative;
    float: left;
    width: 45px;
    height: 30px;
    background-color: #da1919;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6)
}

.device-input .checkbox-2 input:checked+span {
    background-color: #4ab957
}

.device-input .checkbox-2 input+span:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    left: 2px;
    height: 25px;
    width: 26px;
    background-color: #fefefe;
    border-radius: 50px
}

.device-input .checkbox-2 input:checked+span:before {
    left: 17px
}

.device-input .checkbox-2 input:checked+.device-input__1~.device__active {
    color: green
}

.status .device__active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    height: 100%
}

.device__active .img-2 {
    margin-right: 0;
}

.img-2.red {
    background: #ffeded;
}

.img-2.green {
    background-color: #e7f4e8;
}

.img-2.green span {
    background-color: #4ab957;
}

.status .device__active .device__left-txt.db {
    color: #d70808;
}

.status .device__active .device__left-txt.dn {
    color: #40a44c;
}

.sub__device {
    background: var(--lightwhite);
    height: 104px
}

.sub__device .img-2 {
    background: inherit;
}

.sub__device .device__left-txt {
    font-size: 18px;
    color: #696f69;
    line-height: 18px
}

.sub__device .device__active .device__left-txt {
    color: #40a44c;
    text-align: center
}

.sub__device .device__active .device__left-txt:last-child {
    color: #d70808
}

.sub__device .device__left-status {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.sub__device-icon {
    width: 21px;
    height: 23px;
}

.sub__device .device__active {
    height: 100%
}

.letki-txt {
    text-align: center;
    margin-left: 28px;
    margin-right: 28px;
    color: #d70808;
}

.temp .device-icon {
    width: 27px;
    height: 22px
}

.temp .device__active .device__left-txt {
    position: relative
}

.temp .device__active .device__left-txt::before {
    content: '+';
    position: absolute;
    left: 22%
}

.temp .device__active .device__left-txt::after {
    content: '°';
    position: absolute
}

.temp .device__active .device-link .device-icon {
    width: 12px;
    height: 19px
}

.device__active:has(input:checked) .device__left-txt {
    color: #40a44c
}

.device__active:has(input:checked) .device__left-span {
    background-color: #4ab957
}

.device__active:has(input:checked) .dn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.device__active:has(input:checked) .db {
    display: none
}

.device__active:has(input:checked) .device-icon {}

.device-btn {
    display: block;
    margin-top: 76px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 7px;
    background-color: #4ab957;
    max-width: 468px;
    width: 100%;
    height: 74px;
    font-size: 23px;
    color: white;
    text-align: center
}

.device-btn:hover {
    border-color: transparent;
    color: var(--white);
    background-color: #5bd068
}

.device-btn:focus {
    border-color: transparent;
    color: var(--white);
    background-color: #74d97f
}

.device-btn:active {
    border-color: transparent;
    color: var(--white);
    background-color: #74d97f
}

.device__left-block:hover,
.device__left-block:hover .device__active .device__left-status,
.device__left-block:hover,
.device__right-block:hover,
.device__right-block:hover .w-51,
.device__right-block:hover .w-57,
.device__right-block:hover .w-84,
.device__right-block:hover .w-78 {
    border-color: #a0daa6;
    z-index: 1
}

.popup__input {
    width: 100%;
    height: 60px;
    border: 2px solid #d9eadd;
    border-radius: 5px;
    background: var(--lightwhite);
    padding-left: 30px;
    font-size: 18px
}

.popup__block-name {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 19px
}

.popup__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.select__option,
.select__value {
    width: 80%;
    height: 60px;
    border: 2px solid #d9eadd;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--lightwhite);
    cursor: pointer;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup__select .select__option,
.popup__select .select__value {
    width: 100%
}

.select__option {
    margin-bottom: 10px
}

.select__option:hover .select__value .select-span,
.select__value:hover .select-span {
    background: #a0daa6
}

.select__option:active .select__value .select-span,
.select__value:active .select-span {
    background: #5bd068
}

.select__option:hover,
.select__value:hover {
    border-color: #a0daa6 !important
}

.select__option:active,
.select__value:active {
    border-color: #5bd068 !important
}

.select__option:hover .popup__select-icon {
    border-left-color: #a0daa6
}

.select__option:active,
.select__value:active {
    border-color: #5bd068
}

.popup__select-icon {
    border-left: 2px solid #d9eadd;
    width: 60px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.popup__select-icon .select-icon {
    width: 16px;
    height: 10px
}

.popup__select-add {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    z-index: 10;
    border: 2px solid #b1e1b6;
    font-size: 36px;
    line-height: 36px
}

.popup__select-add span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -5px
}

.popup__select-add:hover {
    border-color: #a0daa6;
    background: #f6fbf6
}

.popup__select-add:focus {
    background: #e7f5e7
}

.popup__line {
    width: 100%;
    height: 2px;
    background: #d9eadd;
    margin-top: 50px;
    margin-bottom: 30px
}

.popup__set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px
}

.popup__set-delete {
    width: 25%;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    border: 2px solid #b1e1b6
}

.popup__set-delete .delete-icon {
    width: 20px;
    height: 20px
}

.popup__set-add {
    width: 70%;
    height: 60px;
    border-radius: 5px;
    border: 2px solid #b1e1b6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 19px;
    line-height: 5.947
}

.popup__set-add a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.popup__set-delete:hover,
.popup__set-add:hover {
    border-color: #a0daa6;
    background: #f6fbf6
}

.popup__set-delete:focus,
.popup__set-add:focus {
    background: #e7f5e7
}

.popup-3 .popup__block {
    padding-left: 0;
    padding-right: 0
}

.popup-3 .popup__add-title {
    text-transform: uppercase
}

.popup-3 .form__line {
    width: 85%
}

.popup-3 .popup__main,
.popup-3 .popup__add {
    padding-left: 67px;
    padding-right: 67px
}

.group-add,
.group-line,
.subgroup-add,
.subgroup-line {
    display: none
}

.popup-3 .popup__btn {
    display: block;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto
}

.popup-3 .popup__btn:hover {
    border-color: transparent;
    color: var(--white);
    background-color: #5bd068
}

.popup-3 .popup__btn:focus {
    border-color: transparent;
    color: var(--white);
    background-color: #74d97f
}

.device__input,
.popup__input-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

.device__input-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.input input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer
}

.input label {
    position: relative;
    margin-left: 0;
    margin-right: 20px;
    cursor: pointer
}

.input label:before {
    content: '';
    -webkit-appearance: none;
    background-color: var(--lightwhite);
    border: 2px solid #d4e8d9;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    width: 42px;
    height: 42px
}

.input label:hover::before {
    border: 2px solid #a0daa6
}

.input input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 45%;
    right: 45%;
    width: 14px;
    height: 30px;
    border: solid var(--white);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg) translate(-50%, -50%)
}

.input input:checked+label:before {
    content: '';
    background-color: #28b02e;
    border: 2px solid #a6dcac
}

.input .device-input-txt {
    font-size: 21px;
    color: black;
    line-height: 21px
}

.input .automatization__block-item input {
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
    height: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 21px;
    font-family: "Ubuntu";
    color: black;
    line-height: 1.286
}

.popup-1-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 60px;
    background: #f6fbf6;
    border: 2px solid #d4e8d9;
    border-radius: 5px;
    overflow: hidden
}

.popup-1-input:hover {
    border-color: #a0daa6
}

.popup-1-input:focus {
    border-color: #5bd068;
    background: #f6fbf6
}

.popup-1-input .input-search {
    background-color: inherit;
    width: 100%;
    padding-left: 30px;
    font-size: 21px;
    color: black;
    line-height: 21px
}

.popup-1-input .btn-search {
    width: 50px;
    border-left: 2px solid #d4e8d9;
    margin: 12px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.popup-1-input .search-icon {
    width: 20px;
    height: 20px
}

.popup-2 .popup-2-block {
    padding-left: 107px;
    padding-right: 107px
}

.popup-2 .popup__text {
    margin-bottom: 25px
}

.popup-2 .popup__btn {
    max-width: 100%;
}

.popup-2 .popup__text-title {
    font-size: 25px;
    color: black;
    line-height: 25px;
    text-align: center
}

.popup-2 .popup-2-input {
    width: 100%;
    height: 60px
}

.popup-2 .popup-2-input input {
    width: 100%;
    height: 100%;
    background: #f6fbf6;
    border: 2px solid #d4e8d9;
    border-radius: 5px;
    padding-left: 30px;
    font-size: 18px
}

.popup-2 .popup-2-input input:hover {
    border-color: #a0daa6
}

.popup-2 .popup-2-input input:focus {
    border-color: #5bd068;
    background: #f6fbf6
}

.popup-2 .popup__btn-block {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup-2 .closed {
    width: 25%;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #b1e1b6;
    border-radius: 5px
}

.popup-2 .closed .closed-icon {
    width: 20px;
    height: 20px
}

.popup-2 .add {
    width: 70%;
    height: 60px;
    border: 2px solid #b1e1b6;
    border-radius: 5px;
    font-size: 19px;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 19px;
    text-align: center
}

.popup-2 .closed:hover,
.popup-2 .add:hover {
    border-color: #a0daa6;
    background: #f6fbf6
}

.popup-2 .closed:focus,
.popup-2 .add:focus {
    background: #e7f5e7
}

.input-qr {
    width: 100%;
    height: 60px;
    border: 2px solid #d4e8d9;
    border-radius: 7px;
    background: #f6fbf6;
    padding-left: 20px;
    font-size: 23px
}

.img-share {
    display: none;
}

.logs__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.logs__btn {
    margin-left: auto;
    margin-right: auto;
    max-width: 296px;
    width: 100%;
    background: inherit
}

.logs__main-info {
    background: var(--white);
    width: 100%;
    padding: 18px 26px;
    border: 2px solid #d9eadd;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 22px
}

.logs__main .data-icon {
    width: 20px;
    height: 17px
}

.logs__main-block {
    margin-top: 30px;
    border-radius: 5px;
    background: var(--white);
    border-bottom: 0px
}

.logs__main-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -2px;
    position: relative;
    z-index: 0;
    border: 2px solid #d9eadd
}

.logs__main-item:first-child {
    margin-top: 0
}

.logs__main-item:hover {
    z-index: 1;
    border-color: #a0daa6
}

.logs__main-item:hover .item {
    z-index: 1;
    border-color: #a0daa6
}

.logs__main-item:nth-child(2n+2) {
    background: #fbfdfb
}

.logs__main-item:nth-child(2n+1) .item:last-child:hover {
    background: #fbfdfb
}

.logs__main-item:nth-child(2n+2) .item:last-child:hover {
    background: #e7f5e7
}

.logs__main-item .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 110px;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    border-right: 2px solid #d9eadd;
    padding-top: 20px;
    padding-left: 30px;
    padding-bottom: 24px;
    font-size: 18px;
    line-height: 18px
}

.logs__main-item .item:last-child {
    padding-right: 30px;
    border: none
}

.logs__main-item .item-post {
    color: #9a9a9a;
    font-style: italic
}

.logs__main-item .item .item-title {
    font-weight: bold
}

.logs__main-item .item .item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.logs__main-item .item .item-inco-icon {
    margin-left: 5px;
    margin-right: 5px
}

.logs__data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 28px
}

.logs__data-kal {
    width: 203px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #d9eadd;
    border-radius: 4px;
    background: var(--lightwhite);
    padding-top: 6px;
    padding-bottom: 6px
}

.logs__share-block {
    width: 203px
}

.logs__share-btn {
    width: 203px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    border: 2px solid #d9eadd;
    background: var(--lightwhite);
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 19px;
    color: black;
    line-height: 1.158
}

.logs__share-btn:hover {
    background: #e7f5e7;
    color: #339a3f;
}

.logs__share-btn:focus-within {
    background: #ceecce
}

.logs__share-icon {
    width: 40px;
    height: 32px
}

.logs__data-kal input {
    padding-left: 40px;
    background: var(--lightwhite);
    color: #c6d5c9;
    cursor: pointer
}

.logs__data-kal input,
.logs__data-txt {
    position: relative;
    z-index: 99;
    background: transparent;
    font-size: 19px;
    color: #bacbbe;
    line-height: 1.158;
    text-align: left
}

.logs__data-txt {
    min-width: 32px;
    height: 32px;
    border-right: 2px solid #d9eadd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 9;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #6b766b
}

.logs__data-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    margin-left: auto
}

.logs__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 22px 28px
}

.logs__select-txt {
    font-size: 19px;
    color: #696f69;
    line-height: 1.158;
    text-align: left
}

.logs__select-drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--lightwhite);
    width: 203px;
    height: 44px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #6b766b;
    cursor: pointer
}

.logs__select .select__options {
    border-left: 2px solid #d9eadd;
    border-right: 2px solid #d9eadd;
    border-bottom: 2px solid #d9eadd;
    position: absolute;
    background: var(--white)
}

.logs__select ._active .select__value {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.logs__select .select__option {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
    color: #696f69;
    line-height: 1.158
}

.logs__select .select__value {
    width: 100%;
    height: 44px;
    font-size: 19px;
    color: #696f69;
    line-height: 1.158
}

.logs__select-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    border-left: 2px solid #d9eadd
}

.logs__select-icon .logs-icon {
    width: 16px;
    height: 10px;
    margin-left: 12px
}

.logs .logs__data-kal:hover,
.logs .logs__select-drop:hover {
    border-color: #a0daa6
}

.logs .logs__data-kal:active,
.logs .logs__select-drop:active {
    border-color: #5bd068
}

.logs .logs__data-kal:active .logs__data-txt,
.logs .logs__data-kal:active .logs__select-icon,
.logs .logs__select-drop:active .logs__data-txt,
.logs .logs__select-drop:active .logs__select-icon {
    border-color: #5bd068
}

.logs .logs__data-kal:hover .logs__data-txt,
.logs .logs__data-kal:hover .logs__select-icon,
.logs .logs__select-drop:hover .logs__data-txt,
.logs .logs__select-drop:hover .logs__select-icon {
    border-color: #a0daa6
}

input[type=date]::-webkit-calendar-picker-indicator {
    display: none
}

.item-inco-icon {
    width: 12px;
    height: 10px
}

.logs__item-icon {
    width: 15px;
    height: 20px
}

.w-205 {
    width: 205px
}

.w-340 {
    width: 340px
}

.w-270 {
    width: 270px
}

.w-365 {
    width: 365px
}

.schedules {
    margin-top: 50px
}

.automatization__block {
    border-radius: 5px;
    overflow: hidden
}

.automatization .auto__mob-buttons {
    display: none
}

.automatization__block-item {
    border: 2px solid #c9dacd;
    width: 100%;
    height: 94px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -2px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: var(--white)
}

.automatization__block-item:hover {
    border-color: #a0daa6;
    z-index: 1
}

.automatization__block-item:hover .item-block .item-title,
.automatization__block-item:hover .item-block-button,
.automatization__block-item:hover .item-block-info {
    border-color: #a0daa6
}

.automatization__block-item:first-child {
    margin-top: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.automatization__block-item:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}

.automatization__block-item:nth-child(2n+2) {
    background: var(--lightwhite)
}

.automatization__block-item .item-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    margin-left: 18px;
    gap: 20px
}

.automatization__block-item .item-block .item-title {
    width: 172px;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 2px solid #c9dacd;
    cursor: pointer
}

.automatization__block-item .item-block .item-title h3 {
    color: black;
    text-align: center
}

.automatization__block-item .item-block .item-txt {
    margin-left: 15px;
    font-size: 21px;
    color: black;
    line-height: 1.286;
    text-align: left
}

.automatization__block-item .item-block-info {
    width: 138px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    font-size: 19px;
    font-family: "Ubuntu";
    color: black;
    line-height: 1.421;
    border-left: 2px solid #c9dacd
}

.automatization__block-item .item-block-info .item-icon {
    width: 36px;
    height: 36px
}

.automatization__block-item .item-block-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.automatization__block-item .item-block-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 168px;
    height: 100%;
    border-left: 2px solid #c9dacd;
    font-size: 19px;
    color: #bb4a4a;
    line-height: 1.421;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.automatization__block-item .item-block-button:hover,
.automatization__block-item:nth-child(2n+2) .item-block-button:hover {
    background: #e7f5e7
}
.automatization__block-item .item-block-button:focus,
.automatization__block-item:nth-child(2n+2) .item-block-button:focus {
    background: #ceecce
}
.automatization__block-item .item-block-button .item-icon {
    width: 16px;
    height: 16px
}

.automatization__schedules {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.automatization__schedules-title {
    font-size: 21px;
    color: black;
    line-height: 21px;
    margin-bottom: 22px
}

.automatization__schedules-time {
    border: 2px solid #c9dacd;
    border-radius: 5px;
    overflow: hidden;
    width: 133px
}

.automatization__schedules-time .time-block {
    border-bottom: 2px solid #c9dacd;
    width: 100%;
    height: 92px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--white)
}

.automatization__schedules-time .time-block .hours {
    border: 2px solid #c9dacd;
    border-radius: 4px;
    background: var(--lightwhite);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 93px;
    height: 58px;
    overflow: hidden;
    font-size: 21px;
    color: black;
    cursor: pointer;
    line-height: 21px
}

.automatization__schedules-time .time-block:last-child {
    border: none
}

.automatization__schedules-time .time-block:nth-child(2n+2) {
    background: var(--lightwhite)
}

.automatization__schedules-block {
    width: 80%;
    border-radius: 5px;
    overflow: hidden
}

.automatization__schedules-block .item-block {
    margin-left: 0
}

.automatization__schedules-block .item-block-info {
    background: var(--lightgreen);
    width: 52px;
    border-left: none
}

.automatization__schedules-block .item-block .item-icon {
    width: 32px;
    height: 30px
}

.automatization__schedules-block .item-block .i-c {
    width: 30px;
    height: 37px
}

.automatization__schedules-block .item-block-button .item-icon {
    width: 16px;
    height: 16px
}

.automatization__schedules-icon .icon-block {
    width: 52px;
    height: 92px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.automatization__schedules-icon .icon-block .schedules-icon {
    width: 30px;
    height: 15px
}

.automatization .addbutton {
    margin-bottom: 30px;
    display: block
}

.degre-title {
    font-size: 21px;
    color: black;
    line-height: 1.286;
    margin-bottom: 22px
}

.degre-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 116px;
    height: 58px;
    border: 2px solid #c9dacd;
    background: #f6fbf6;
    position: relative;
    font-size: 21px;
    color: black;
    cursor: pointer;
    line-height: 21px
}

.degre-block:hover,
.degre-block:hover .degre-txt p {
    border-color: #a0daa6
}

.degre-block:focus-within,
.degre-block:focus-within .degre-txt p {
    border-color: #5bd068
}

.degre-block::before {
    content: '°C';
    position: absolute;
    font-size: 21px;
    color: black;
    line-height: 1.286;
    right: -30px
}

.degre-txt {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.degre-txt p {
    color: #616d61;
    border-right: 2px solid #c9dacd;
    font-size: 13px;
    font-family: "Ubuntu";
    color: #616d61;
    text-transform: uppercase;
    line-height: 32px;
    padding-left: 8px;
    padding-right: 8px
}

.degre-txt .degre-inp {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 21px;
    color: black;
    background: inherit;
    line-height: 1.286
}

.degre .degre__block-item {
    padding-left: 18px;
    border: 2px solid #c9dacd;
    border-radius: 5px;
    background: var(--white);
    gap: 57px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 92px
}

.degre-btn {
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
    margin-bottom: 116px
}

.popup__block .db {
    display: none !important
}

.degre-btn .delete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 150px;
    height: 60px;
    border: 2px solid #a0daa6;
    border-radius: 5px
}

.degre-btn .delete-icon {
    width: 20px;
    height: 20px
}

.degre-btn .delete-save {
    background-color: #4ab957;
    width: 300px !important;
    height: 60px;
    font-size: 22px;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    border-radius: 5px;
    margin-top: 0 !important
}

.degre-btn .delete-save:hover {
    border-color: transparent;
    background-color: #5bd068
}

.degre-btn .delete-save:focus {
    border-color: transparent;
    color: var(--white);
    background-color: #74d97f
}

.degre-btn .delete:hover {
    border-color: #a0daa6;
    background-color: #e7f5e7
}

.degre-btn .delete:focus {
    border-color: #a0daa6;
    background-color: #ceecce
}

.notification .setting-notification-title {
    margin-top: 50px;
    margin-bottom: 20px
}

.notification__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 50px
}

.notification__main .left {
    width: 55%
}

.left .notification-checkbox {
    border-right: none
}

.notification__main .right {
    width: 40%;
    height: 100%
}

.notification__block {
    border-radius: 8px;
    overflow: hidden
}

.notification__block-item {
    height: 93px;
    background: var(--white);
    border: 2px solid #d9eadd;
    overflow: hidden;
    margin-top: -2px;
    position: relative;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.notification__block-item:first-child {
    margin-top: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px
}

.notification__block-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.notification__block-item:last-child .degre-block::before {
    display: none
}

.notification__block-item:last-child .notification-input-txt {
    width: auto
}

.notification__block-item:hover,
.notification__block-item:hover,
.notification__block-item:hover,
.notification__block-item:hover .notification-checkbox,
.notification__block-item:hover {
    border-color: #a0daa6;
    z-index: 1
}

.notification__block-item:hover .notification__icon {
    border-right: 2px solid #a0daa6;
    z-index: 1
}

.notification__icon {
    min-width: 50px;
    max-width: 50px;
    width: 100%;
    height: 100%;
    border-right: 2px solid transparent;
    background: var(--lightgreen);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.notification__icon .notification-icon-1 {
    width: 26px;
    height: 27px
}

.notification__icon .notification-icon-2 {
    width: 18px;
    height: 32px
}

.notification__icon .notification-icon-3 {
    width: 30px;
    height: 28px
}

.notification__icon .notification-icon-4 {
    width: 30px;
    height: 25px
}

.notification__icon .right-icon-1 {
    width: 30px;
    height: 30px
}

.notification__icon .right-icon-2 {
    width: 26px;
    height: 32px
}

.notification__icon .right-icon-3 {
    width: 30px;
    height: 30px
}

.notification__icon .user-icon {
    width: 28px;
    height: 28px
}

.notification .automatization__block-item,
.notification .notification__block-input {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background: var(--white);
    width: auto;
    border: none;
    height: 83px;
    margin-left: 20px
}

.notification .automatization__block-item .degre-block,
.notification .notification__block-input {
    margin-right: 50px
}

.notification__user {
    border: 2px solid #d9eadd;
    border-radius: 5px;
    overflow: hidden
}

.notification__user .automatization__block-item {
    margin-left: 0;
    border-bottom: 2px solid #d9eadd
}

.notification__user .automatization__block-item:last-child {
    border-bottom: none
}

.notification__user .automatization__block-item .item-block {
    margin-left: auto
}

.notification-txt {
    margin-left: 23px;
    font-size: 21px;
    color: black;
    line-height: 21px
}

.notification .check-box {
    margin-left: 23px
}

.notification-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 300px;
    height: 100%;
    border-right: 2px solid #d9eadd
}

.notification-checkbox:last-child {
    border-right: none
}

.notification-checkbox .check-box {
    margin-left: 40px
}

.notification-save-btn {
    display: block;
    max-width: 448px;
    width: 100%;
    height: 52px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 7px;
    background-color: #4ab957;
    font-size: 23px;
    color: white;
    font-weight: bold;
    line-height: 23px;
    margin-top: 50px;
    margin-bottom: 70px
}

.notification-save-btn:hover {
    border-color: transparent;
    color: var(--white);
    background-color: #5bd068
}

.notification-save-btn:focus {
    border-color: transparent;
    color: var(--white);
    background-color: #74d97f
}

.notification-input-txt {
    font-size: 21px;
    color: black;
    width: 100%;
    line-height: 21px
}

.notification-btn {
    margin-bottom: 50px
}

.setting-notification .dn,
.automatization .dn {
    display: none
}

.automatization .db {
    display: block
}

.setting-notification-title {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.setting-notification-title .notification-title,
.setting-notification-title .notification-btn {
    font-size: 23px;
    color: black;
    line-height: 1.174
}

.setting-notification-title .notification-btn {
    color: #4ab957;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0
}

.setting-notification-title .notification-btn span {
    font-size: 36px;
    line-height: 36px;
    margin-right: 10px;
    display: inline-block
}

.input label {
    margin-right: 10px
}

.input .notification__block-item label {
    margin-left: 20px
}

.popup-5 .device__input {
    padding-top: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #d9eadd
}

.popup-5 .popup__input-block,
.popup-17 .popup__input-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup-5 .popup__input-title,
.popup-17 .popup__input-title {
    font-size: 21px;
    color: black;
    line-height: 21px
}

.popup-5 .popup__input-subtitle,
.popup-17 .popup__input-subtitle {
    margin-top: 10px;
    color: #696f69;
    font-style: italic
}

.popup-5 .popup__btn {
    margin-top: 43px
}

.popup-5 .pt-0 {
    padding-top: 0
}

.share__block {
    max-width: 675px;
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden
}

.share__block-accord {
    border: 2px solid #d9eadd;
    margin-top: -2px;
    position: relative;
    z-index: 0;
    overflow: hidden
}

.share__block-accord:first-child {
    margin-top: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
}

.share__block-accord:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
}

.share__block-accord.active .share-icon-right {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.share__block-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 80px;
    background: var(--white)
}

.share__block-accord:last-child .share__accord {
    border-bottom: none
}

.share__block-accord .accord-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.share__block-icon {
    margin-left: auto;
    min-width: 72px;
    max-width: 72px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 2px solid #ecf4ee;
    height: 100%
}

.share__block-title {
    margin-left: 23px
}

.share__block-title h3 {
    font-size: 19px;
    color: black;
    line-height: 21px
}

.share__block-txt {
    font-size: 21px;
    color: black;
    line-height: 21px
}

.share__icon {
    min-width: 50px;
    max-width: 50px;
    width: 100%;
    height: 100%;
    border-bottom: 2px solid #ecf4ee;
    background: #e1f0e2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.share__block-accord.active .share__accord .share__icon {
    border: none
}

.share-icon-left-1 {
    width: 23px;
    height: 26px
}

.share__block-accord:hover,
.share__block-accord:hover .share__block-icon,
.share__block-accord:hover .share-btn,
.share__block-accord.active:hover .share__accord,
.share__block-accord:first-child:hover,
.share__block-accord:last-child:hover {
    border-color: #a0daa6;
    z-index: 1
}

.share__block-accord:hover .share__icon,
.share__block-accord:hover .share__accord .share__icon {
    border-right: 2px solid #a0daa6;
    z-index: 1
}

.share-icon-left-2 {
    width: 27px;
    height: 31px
}

.share-icon-left-3 {
    width: 31px;
    height: 25px
}

.share-icon-right {
    width: 10px;
    height: 16px
}

.share__accord {
    height: 100%;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.share__block-accord.active .share__accord {
    border-top: 2px solid #ecf4ee;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.share__accord .accord-item {
    height: 54px
}

.share-btn {
    border-top: 2px solid #d9eadd;
    background: var(--white)
}

.share-btn .addbutton {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.input .share__block-icon label:before {
    width: 30px;
    height: 30px
}

.input .share__block-icon input:checked+label:after {
    width: 7px;
    height: 12px;
    -webkit-transform: rotate(40deg) translate(-50%, -50%);
    -ms-transform: rotate(40deg) translate(-50%, -50%);
    transform: rotate(40deg) translate(-50%, -50%)
}

.grafic__header {
    width: 100%;
    height: 88px;
    background: var(--white);
    border: 2px solid #d9eadd;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.grafic__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%
}

.grafic__icon .grafic-icon {
    width: 35px;
    height: 35px
}

.grafic__icon-block {
    max-width: 187px;
    min-width: 170px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 2px solid #d9eadd;
    margin-left: 22px;
    font-size: 19px;
    color: rgba(0, 0, 0, 0.902);
    line-height: 21px
}

.grafic__icon-dn {
    display: none
}

.grafic__icon-block:last-child {
    border-right: none;
    margin-left: 26px
}

.grafic__icon-item {
    text-align: center;
    margin-left: 15px;
    margin-right: 37px
}

.grafic__icon-title {
    font-size: 15px;
    color: #696f69;
    line-height: 15px
}

.grafic__icon-symbol-dn {
    display: none
}

.grafic__icon-2 .grafic-icon {
    width: 35px;
    height: 30px;
    margin-right: 10px;
}

.grafic__icon-2 .grafic__icon-2 {
    width: 23px;
    height: 25px;
    margin-right: 13px
}

.grafic__icon-2 .grafic__icon-block {
    max-width: 225px;
    min-width: 130px;
    width: 100%;
    height: 60px;
    margin-left: 0;
    margin-right: 46px;
    border-radius: 50px;
    padding-left: 5px;
    padding-right: 5px
}

.grafic__icon-2 .grafic-automatization:hover,
.grafic__icon-2 .grafic-share:hover {
    border-radius: 25px;
    background: #f6fbf6
}

.grafic__icon-2 .grafic-automatization:focus-within,
.grafic__icon-2 .grafic-share:focus-within {
    border-radius: 25px;
    background: #ceecce
}

.grafic__icon-2 .grafic-automatization,
.grafic__icon-2 .grafic-share {
    font-size: 19px;
    color: black;
    line-height: 19px
}

.grafic-share .grafic-icon:last-child {
    display: none
}

.grafic__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    margin-top: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px
}

.grafic__block {
    background: var(--white);
    border: 2px solid #d9eadd;
    max-width: 416px;
    width: 100%;
    border-radius: 5px
}

.grafic__block-item {
    width: 100%;
    min-height: 73px;
    padding-left: 28px;
    padding-right: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 2px solid #ecf4ee
}

.grafic__block-item:hover,
.grafic__block-icon:hover {
    background: transparent
}

.grafic__block-item:focus,
.grafic__block-icon:focus {
    background: transparent
}
.grafic__block-icon:has(:not(div)):hover {
    background: #e7f5e7
}

.grafic__block-icon:has(:not(div)):focus {
    background: #ceecce
}

.grafic__block-item:nth-child(5n):hover,
.grafic__block-item:nth-child(6n):hover,
.grafic__block-item:nth-child(5n):focus-within,
.grafic__block-item:nth-child(6n):focus-within {
    background: none
}

.grafic__block-item .item-title {
    font-size: 21px;
    color: black;
    line-height: 0.905;
    text-align: left
}

.grafic__block-item:last-child {
    border-bottom: none
}

.grafic__block-item:nth-child(5),
.grafic__block-item:nth-child(6) {
    padding: 0
}

.grafic__block-item:nth-child(5) .grafic__block-icon:nth-child(2n+2) {
    display: none
}

.grafic__block-item .item-indicator-1 {
    display: inline-block;
    width: 27px;
    height: 7px;
    background: #4ab957
}

.grafic__block-item .item-indicator-2 {
    display: inline-block;
    width: 27px;
    height: 7px;
    background: #f17079
}

.grafic__block-item .item-indicator-3 {
    display: inline-block;
    width: 27px;
    height: 7px;
    background: #2c2d2d
}

.grafic__block-item .item-indicator-4 {
    display: inline-block;
    width: 27px;
    height: 7px;
    background: #5081d1
}

.grafic__block .icon-1 {
    width: 31px;
    height: 31px
}

.grafic__block .icon-2 {
    width: 30px;
    height: 29px
}

.grafic__block-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 25%;
    height: 73px;
    border-right: 2px solid #ecf4ee
}
.grafic__block-icon:nth-child(7) {
    border-color: transparent
}

.grafic__block-icon:last-child {
    border-right: none
}

.grafic__grafica {
    background: var(--white);
    border: 2px solid #d9eadd;
    border-radius: 5px;
    max-width: 748px;
    min-width: 464px;
    width: 100%;
    min-height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.grafic__info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 73px;
    background: var(--white);
    border: 2px solid #ecf4ee;
    margin-top: -2px;
    padding-left: 28px;
    position: relative;
    z-index: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.grafic__info-item:first-child {
    margin-top: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.grafic__info-item:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.grafic__info-item:hover {
    z-index: 1;
    border-color: #a0daa6
}

.grafic__info-item:hover .grafic__footer-block .info__item,
.grafic__info-item:hover .grafic__info-item .info__item {
    border-color: #a0daa6 !important
}

.grafic__info-item:hover .info__item {
    border-right-color: #a0daa6 !important
}

.grafic__info-item:hover .info__item.wh-76 {
    border-right-color: transparent !important
}

.grafic__info-item:nth-child(2n+2) {
    background: #f8fcf8
}

.grafic__info-item:nth-child(2n+2) .info__item-icon-1:hover,
.grafic__info-item:nth-child(2n+2) .info__item-icon-2:hover,
.grafic__info-item:nth-child(2n+2) .info__item-icon-3:hover,
.grafic__info-item:nth-child(2n+2) .info__item-icon-4:hover {
    background: #e7f5e7
}

.grafic__info-item .info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    border-right: 2px solid #ecf4ee;
    font-size: 21px;
    color: black;
    line-height: 0.905;
    text-align: left
}

.grafic__footer-block,
.grafic__footer-block-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.grafic__title-main,
.grafic__footer-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.grafic__footer-block .info__item {
    border-color: #ecf4ee !important
}

.grafic__footer-icon,
.grafic__footer-cal-icon {
    display: none
}

.grafic__footer-symbol {
    display: none
}

.grafic__info-item .info__item-icon-1 {
    width: 60px;
    height: 55px;
    padding: 12px;
    border-radius: 40%
}

.grafic__info-item .info__item-icon-1:hover,
.grafic__info-item .info__item-icon-2:hover,
.grafic__info-item .info__item-icon-3:hover {
    background: #f6fbf6
}

.grafic__info-item .info__item:focus-within .info__item-icon-1,
.grafic__info-item .info__item:focus-within .info__item-icon-2,
.grafic__info-item .info__item:focus-within .info__item-icon-3 {
    background: #e7f5e7
}

.grafic__info-item:nth-child(2n+2) .info__item-icon-1:hover,
.grafic__info-item:nth-child(2n+2) .info__item-icon-2:hover,
.grafic__info-item:nth-child(2n+2) .info__item-icon-3:hover {
    background: #e7f5e7
}

.grafic__info-item:nth-child(2n+2) .info__item:focus-within .info__item-icon-1,
.grafic__info-item:nth-child(2n+2) .info__item:focus-within .info__item-icon-2,
.grafic__info-item:nth-child(2n+2) .info__item:focus-within .info__item-icon-3 {
    background: #ceecce
}

.grafic__info-item .info__item-icon-2,
.grafic__info-item .info__item-icon-4 {
    width: 60px;
    height: 55px;
    padding: 12px;
    border-radius: 40%
}

.grafic__info-item .info__item-icon-4 {
    display: none
}

.grafic__info-item .info__item-icon-3 {
    width: 35px;
    height: 40px;
    padding: 12px;
    border-radius: 40%
}

.grafic__info-item .info__item:last-child {
    border-color: transparent
}

.info__item-title {
    border: 0 !important
}

.grafic__footer-block-2 .info__item:last-child {
    border-color: #ecf4ee
}

.grafic__info-item:hover .info__item:last-child {
    border-right: 2px solid transparent
}

.grafic__info-item .info__item-number {
    font-size: 21px;
    color: black;
    line-height: 3.476;
    text-align: center
}

.grafic__info-item .info__item-span-1 {
    color: #56be62;
    font-size: 12px;
    line-height: 12px;
    margin-left: 1px;
    margin-bottom: 5px
}

.grafic__info-item .info__item-span-2 {
    color: #f17079;
    font-size: 12px;
    line-height: 12px;
    margin-left: 1px;
    margin-bottom: 5px
}

.grafic-minus .info__item-span-1,
.grafic-plus .info__item-span-2 {
    display: none
}

.grafic-plus .info__item-span-1,
.grafic-minus .info__item-span-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.grafic__info-item .wh-261 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start
}

.grafic__title-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-left: 28px
}

.grafic__title-block h4 {
    font-size: 17px;
    color: black;
    line-height: 17px;
    text-align: center
}

.wh-261 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.wh-100 {
    width: 100px
}

.wh-120 {
    width: 120px
}

.wh-90 {
    min-width: 90px
}

.wh-76 {
    width: 76px
}

.users .wh-285 {
    max-width: 253px;
    width: 100%;
    padding-left: 10px
}

.users .wh-340 {
    min-width: 310px;
    width: 100%;
    padding-left: 10px
}

.users .wh-160 {
    min-width: 130px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

.users .info__item.wh-160 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.users .wh-75 {
    max-width: 75px;
    min-width: 50px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.users__info {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 200px;
    background: var(--white)
}

.users__info-item {
    border: 2px solid #d9eadd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -2px;
    position: relative;
    z-index: 0;
}

.users__info-item:first-child {
    border-top-color: #d9eadd;
    overflow: hidden;
    margin-top: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px
}

.icon_3-5 {
    width: 12px;
    height: 13px;
    margin-right: 14px;
}

.icon_3-6 {
    min-width: 14px;
    height: 11px;
    margin-right: 14px;
}

.users__info-item:last-child {
    overflow: hidden;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.users__info-item .td-one,
.users__info-item .td-two,
.users__info-item .td-three,
.users__info-item .td-four,
.users__info-item .td-five,
.users__info-item .td-six,
.users__info-item .td-seven,
.users__info-item .td-eight {
    min-height: 58px;
}

.users__info-item:nth-child(2n+2) {
    background: #fbfdfb
}

.users__info-item:nth-child(2n+1) .info__item,
.users__info-item:nth-child(2n+1) .grid {
    background: var(--white)
}

.users__info .info__item.wh-75,
.users__info .info__item.wh-285 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: auto;
}

.info__item.wh-285 {
    padding-left: 30px;
    padding-right: 65px;
}

.info__item.wh-160 {
    border-bottom: 2px solid #ecf4ee
}

.info__item.wh-160:last-child {
    border-bottom: none
}

.users .info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 60px;
    border-right: 2px solid #ecf4ee
}

.users__info-block {
    max-width: 218px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.users .info__item:last-child {
    border-right: none
}

.users .info__item.wh-75:hover,.users__info-item:nth-child(2n+2) .info__item.wh-75:hover {
    background: #e7f5e7
}
.users .info__item.wh-75:focus,.users__info-item:nth-child(2n+2) .info__item.wh-75:focus {
    background: #ceecce
}
.users .users__info-block .info__item {
    border-right: 2px solid #ecf4ee
}

.users__info-item .td div:hover {
    background: inherit;
}

.users__info-item:hover,
.users__info-item:hover .grid,
.users__info-item:hover .grid .td,
.users__info-item:first-child:hover,
.users__info-item:hover .info__item,
.users:has(.users__info-item:hover) .users .info__item,
.users:has(.users__info-item:hover) .users .users__info-block .info__item {
    border-color: #a0daa6;
    z-index: 1
}

.users .info__item-name,
.users .info__item-tell {
    font-size: 19px;
    color: black;
    line-height: 19px;
    margin-bottom: 10px
}

.users .info__item-tell,
.users .info__item-mailto {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.users .info__item-post {
    font-style: italic;
    color: #939393;
    font-size: 16px
}

.users .info__item-mailto {
    font-size: 16px;
    line-height: 19px;
    color: #4ab957
}

.users .info__item-txt {
    font-size: 17px;
    color: black;
    line-height: 17px
}

.user-img {
    width: 34px;
    height: 34px;
    margin-left: 22px;
    margin-right: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 4px;
    background: #e7f4e8;
}

.users .info__item-icon-1 {
    width: 22px;
    height: 15px;
}

.users .info__item-icon-2 {
    width: 23px;
    height: 9px;
}

.users .info__item-icon-3 {
    width: 17px;
    height: 17px;
}

.users .info__item-icon-4 {
    width: 12px;
    height: 19px
}

.popup-7 .popup__input-block,
.popup-6 .popup__input-block {
    border-bottom: 2px solid #ecf4ee;
    padding-top: 20px;
    padding-bottom: 20px
}

.popup-7 .popup__input-title,
.popup-6 .popup__input-title {
    font-size: 21px;
    color: black;
    line-height: 1.5
}

.popup-7 .popup__input-subtitle,
.popup-6 .popup__input-subtitle {
    color: #696f69;
    font-style: italic
}

.popup-8 .popup__title,
.popup-9 .popup__title {
    margin-bottom: 50px
}

.popup-8 .accordion-header.active .accordion-icon,
.popup-9 .accordion-header.active .accordion-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.popup-8 .popup__block,
.popup-9 .popup__block {
    padding-left: 0;
    padding-right: 0
}

.popup-8 .popup__form,
.popup-9 .popup__form {
    padding-left: 107px;
    padding-right: 107px
}

.popup-8 .popup__name,
.popup-8 .popup__post,
.popup-8 .popup__email,
.popup-8 .popup__tel,
.popup-9 .popup__name,
.popup-9 .popup__post,
.popup-9 .popup__email,
.popup-9 .popup__tel {
    margin-bottom: 12px;
    font-size: 19px;
    font-family: "Ubuntu";
    color: black;
    line-height: 19px
}

.popup-8 .popup__input,
.popup-9 .popup__input {
    padding-left: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 18px
}

.popup-8 .popup__input:last-child,
.popup-9 .popup__input:last-child {
    margin-bottom: 50px
}

.popup-8 .popup__line,
.popup-9 .popup__line {
    margin: 0
}

.popup-8 .popup__access,
.popup-9 .popup__access {
    margin-top: 30px;
    padding-left: 107px;
    padding-right: 107px
}

.popup-8 .popup__access-icon,
.popup-9 .popup__access-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin-top: 36px;
    margin-bottom: 50px
}

.popup-8 .popup__icon-1,
.popup-9 .popup__icon-1 {
    width: 39px;
    height: 24px;
}

.popup-8 .popup__icon-3,
.popup-9 .popup__icon-3 {
    width: 36px;
    height: 36px;
}

.popup-8 .popup__icon-4,
.popup-9 .popup__icon-4 {
    width: 40px;
    height: 32px;
}

.popup-8 .popup__accordion,
.popup-9 .popup__accordion {
    margin-top: 30px;
    padding-left: 107px;
    padding-right: 107px
}

.popup-8 .popup__accordion label,
.popup-9 .popup__accordion label {
    margin-left: 0;
    margin-right: 25px
}

.popup-8 .popup__accordion .accord-title,
.popup-9 .popup__accordion .accord-title {
    font-size: 19px;
    color: black;
    font-weight: bold;
    text-transform: uppercase
}

.popup-8 .popup__accordion .accordion-icon,
.popup-9 .popup__accordion .accordion-icon {
    border: none
}

.popup-8 .popup__btn,
.popup-9 .popup__btn {
    margin-left: auto;
    margin-right: auto;
    display: block
}

.popup-8 .accord__item,
.popup-9 .accord__item {
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0px
}

.popup-8 .input label::before,
.popup-9 .input label::before {
    width: 36px;
    height: 35px
}

.popup-8 .accordion-header,
.popup-9 .accordion-header {
    border-top: none;
    border-left: none;
    border-right: none
}

.popup-9 .blockade {
    margin-bottom: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.popup-9 .blockade label {
    margin-right: 23px
}

.popup-9 .blockade-txt {
    font-size: 21px;
    color: black;
    line-height: 21px
}

.popup-10 .popup-8-select {
    width: 100%;
    height: 60px;
    border: 2px solid #d9eadd;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.popup-10 input {
    padding-left: 30px
}

.popup-10 .select {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--lightwhite)
}

.popup-10 .users__popup-select {
    width: 100%;
    height: 60px;
    border: 2px solid #d9eadd;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden
}

.popup-10 .users__popup-select label {
    margin: 0
}

.popup-10 .users__popup-select:hover,
.popup-10 .users__popup-select:hover .select__icon {
    border-color: #a0daa6
}

.popup-10 .users__popup-select:focus,
.popup-10 .users__popup-select:focus .select__icon {
    border-color: #5bd068;
    background: #f6fbf6
}

.popup-10 .select__icon {
    background: var(--lightwhite);
    width: 49px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 2px solid #d4e8d9;
    margin-right: 0
}

.popup-10 .select__icon .select-icon {
    width: 19px;
    height: 12px
}

.popup-10 .popup__input {
    margin-bottom: 30px
}

.popup-10 .popup__name,
.popup-10 .popup__post {
    margin-bottom: 10px
}

.popup-10 .popup__btn {
    margin-top: 50px
}

.clients-01 .clients__main-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 14px
}

.clients-01 .addbutton {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 0
}

.clients-01 .clients__main-title .text {
    height: 100%;
    max-width: 687px;
    width: 100%;
    padding-left: 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start
}

.clients-01 .clients__main-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 93px
}

.clients-01 .clients__main-item .text {
    height: 100%;
    max-width: 687px;
    width: 100%
}

.clients-01 .clients__main-info {
    min-width: 140px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 2px solid transparent;
    font-size: 19px;
    color: black;
    line-height: 19px;
    padding-left: 10px;
    padding-right: 10px
}

.clients-01 .clients__main-info:last-child {
    border-right: none
}

.clients-01 .clients__main-icon {
    min-width: 73px;
    max-width: 215px;
    width: 100%
}

.clients-01 .clients__block {
    border-radius: 5px;
    border-radius: 8px;
    background: var(--white)
}

.clients-01 .clients__block-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #d9eadd;
    border-bottom-color: #ecf4ee;
    position: relative;
    z-index: 0;
    margin-top: -2px;
    height: 93px
}

.clients-01 .clients__block-item:first-child {
    margin-top: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px
}

.clients-01 .clients__block-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.clients-01 .clients__block-item:hover,
.clients-01 .clients__block-item:hover .clients__block-info,
.clients-01 .clients__block-item:hover,
.clients-01 .clients__block-item:hover,
.clients-01 .clients__block-item:hover {
    border-color: #a0daa6;
    z-index: 1
}

.clients-01 a .clients__block-item:last-child {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px
}

.clients-01 .clients__block-item .text {
    height: 100%;
    max-width: 687px;
    width: 100%;
    padding-left: 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start
}

.clients-01 .clients__block-item:nth-child(2n+2) {
    background: #fbfdfb
}

.clients-01 .clients__block-info {
    min-width: 140px;
    height: 100%;
    border-right: 2px solid #ecf4ee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px
}

.clients-01 .clients__block-info:last-child {
    border-right: none
}

.clients-01 .clients__block-txt {
    font-size: 21px;
    color: black;
    line-height: 21px
}

.clients-01 .clients__block-txt span {
    color: #3eab56
}

.clients-01 .clients__block .clients-icon {
    width: 39px;
    height: 39px;
    margin-right: 10px
}

.clients-01 .clients__block-icon {
    min-width: 73px;
    max-width: 215px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.clients-01 .clients__block-icon:hover {
    background: #f6fbf6
}

.clients-01 .clients__block-icon:focus {
    background: #e7f5e7
}

.clients-01 .clients__block-item:nth-child(2n+2) .clients__block-icon:hover {
    background: #e7f5e7
}

.clients-01 .clients__block-item:nth-child(2n+2) .clients__block-icon:focus {
    background: #ceecce
}

.clients-01 .clients__block .icon-arrow {
    width: 10px;
    height: 16px
}

.clients-2 {
    margin-top: 53px
}

.clients-2 .clients__block {
    max-width: 672px;
    width: 100%;
    background: var(--white);
    overflow: hidden;
    border-radius: 6px
}

.clients-2 .clients__block-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 80px;
    border: 2px solid #d9eadd;
    border-top-color: #ecf4ee;
    border-bottom-color: #ecf4ee;
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin-top: -2px;
    cursor: pointer
}

.clients-2 .clients__block-item:first-child {
    margin-top: 0;
    border-top-color: #d9eadd;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
}

.clients-2 .clients__block-item:last-child {
    border-bottom-color: #d9eadd;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
}

.clients-2 .clients__block .left__icon {
    min-width: 53px;
    max-width: 53px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #e1f0e2;
    height: 100%
}

.clients__block-item .left__icon {
    border-right: 2px solid transparent
}

.clients__block-item .right__icon {
    border-left: 2px solid transparent
}

.clients-2 .clients__block .left__icon .left-icon-1 {
    width: 33px;
    height: 24px
}

.clients-2 .clients__block .left__icon .left-icon-2 {
    width: 31px;
    height: 25px
}

.clients-2 .clients__block .left__icon .left-icon-3 {
    width: 30px;
    height: 24px
}

.clients-2 .clients__block .left__icon .left-icon-4 {
    width: 23px;
    height: 25px
}

.clients-2 .clients__block .left__icon .left-icon-5 {
    width: 28px;
    height: 23px
}

.clients-2 .clients__block .left__icon .left-icon-6 {
    width: 25px;
    height: 23px
}

.clients-2 .clients__block .clients-title {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 26px;
    font-size: 21px;
    color: black;
    line-height: 21px
}

.clients-2 .clients__block .right__icon {
    min-width: 72px;
    max-width: 72px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 2px solid #ecf4ee;
    height: 100%
}

.clients-2 .clients__block .right__icon .right-icon {
    width: 10px;
    height: 16px
}

.clients-2 .clients__block-item:hover,
.clients-2 .clients__block-item:first-child:hover,
.clients-2 .clients__block-item:hover .left__icon,
.clients-2 .clients__block-item:hover .right__icon,
.clients-2 .clients__block-item:hover {
    border-color: #a0daa6;
    z-index: 1
}

.clients-2 .clients__block .left__icon:hover {
    background: #e7f5e7
}

.login__header {
    background: var(--white);
    width: 100%;
    height: calc(20vh + 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.login__header .header__logo {
    width: 283px;
    height: 77px
}

.login {
    max-width: 468px;
    width: 100%;
    padding-top: 140px;
    margin-left: auto;
    margin-right: auto
}

.login__title {
    margin-top: 23px;
    margin-bottom: 60px;
    font-size: 25px;
    color: black;
    line-height: 25px;
    text-align: center
}

.login__input {
    border: 2px solid #d4e8d9;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background: var(--white);
    margin-bottom: 30px
}

.login__input:focus-within {
    border-color: #5bd068;
    background: #f6fbf6
}

.login__input:hover {
    border-color: #a0daa6;
    background: #f6fbf6
}

.login__input:hover legend {
    color: #a0daa6
}

.login__input:has(input:valid) {
    border-color: #5bd068
}

.login__input:focus-within .login__input-icon {
    border-color: #5bd068
}

.login__input-icon,
.login__input-right {
    min-width: 50px;
    max-width: 50px;
    height: 40px;
    border-right: 2px solid #d4e8d9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.login__input-right,
.right__icon {
    border: none
}

.login__input-icon:last-child {
    border-right: none
}

.login__input-icon .login-icon {
    width: 20px;
    height: 20px
}

.login input,
.changing .login__input input {
    width: 100%;
    height: 60px;
    border-radius: 5px;
    font-size: 23px;
    line-height: 23px;
    z-index: 50;
    cursor: text;
    background: inherit
}
.login-link.btn{
    width: 292px;
}
.recovery .login__input-right {
    border: none
}

.recovery label {
    margin: 0
}

.login .right-icon-1,
.login .right-icon-2,
.recovery .right-icon-1,
.recovery .right-icon-2 {
    width: 30px;
    height: 22px;
    margin-right: 25px
}

.right__icon.show .right-icon-2,
.login__input-right.show .right-icon-2 {
    display: none
}

.right__icon.show .right-icon-1,
.login__input-right.show .right-icon-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.right__icon.hide .right-icon-1,
.login__input-right.hide .right-icon-1 {
    display: none
}

.right__icon.hide .right-icon-2,
.login__input-right.hide .right-icon-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

button:disabled {
    background-color: #ffffff !important;
    border: 2px solid #a0daa6;
    color: #4ab957;
    cursor: not-allowed !important
}

.login-btn {
    margin-top: 38px;
    margin-bottom: 50px;
    width: 100%;
    height: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 23px;
    border-radius: 5px;
    border: 2px solid #a0daa6;
    font-weight: bold;
    background: #4ab957;
    color: var(--white);
    line-height: 23px
}

.login-btn:hover {
    background: #5bd068
}

.login-btn:active {
    background: #74d97f
}

.login-btn-forgot {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    font-size: 21px;
    color: #4ab957;
    line-height: 21px;
    text-align: center;
    background: inherit;
    border-color: #a0daa6;
    color: #4ab957
}

.login-btn-forgot:hover {
    color: #5bd068
}

.login-btn-forgot:active {
    color: #74d97f
}

.popup-18 .popup__text-title {
    text-align: center;
    margin-bottom: 50px
}

.popup-18 .popup__btn-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.popup-18 .save-auto,
.popup-18 .delete-auto {
    width: 25%;
    height: 60px;
    border: 2px solid #b1e1b6;
    border-radius: 5px;
    font-size: 18px
}

.popup-18 .save-auto:hover,
.popup-18 .delete-auto:hover {
    background: #5bd068;
    color: var(--white)
}
.popup-18 .save-auto:focus-within,
.popup-18 .delete-auto:focus-within {
    background: #74d97f;
    color: var(--white)
}

.changing__txt {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 18px
}

.changing .login__input-icon {
    border-right: none
}

.changing .login__input-icon .login-icon {
    width: 23px;
    height: 17px
}

.changing .login-tel {
    width: 23px;
    height: 25px
}

.login__input .changing__legend {
    position: absolute;
    font-size: 28px;
    margin: 0;
    color: #a6baab;
    left: 50px;
    padding-left: 5px;
    padding-right: 5px;
    cursor: text;
    z-index: 60
}

#login,
#pass {
    padding-left: 10px
}

.main-log .changing__legend,
.main-pass .changing__legend {
    left: 55px;
    padding-left: 10px !important
}

.login__input:has(input:focus) .changing__legend,
.login__input:has(input:valid) .changing__legend {
    color: #5bd068;
    top: -20px;
    font-size: 18px;
    background: #f6fbf6;
    z-index: 40
}

input::-moz-selection {
    caret-color: red
}

input::selection {
    caret-color: red
}

.recovery .login__input-icon .recovery-icon {
    width: 25px;
    height: 25px
}

.changing__title {
    max-width: 548px;
    width: 60%;
    font-size: 48px;
    color: black;
    line-height: 1.278;
    margin: 0 auto 30px;
    text-align: center
}

.changing-title {
    font-size: 24px;
    color: black;
    line-height: 1.278;
    margin: 0 auto 120px;
    text-align: center
}

.changing__form,
.recovery__form {
    max-width: 428px;
    margin-left: auto;
    margin-right: auto
}

.changing .login-btn {
    margin-left: auto;
    margin-right: auto
}

.changing .auto__title-block {
    display: none
}

.changing__form-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5px
}

.changing__form-input {
    width: 20%;
    height: 128px;
    border: 2px solid #d9eadd;
    border-radius: 7px;
    background: #f6fbf6;
    font-size: 32px;
    color: black;
    line-height: 4.594;
    text-align: center
}

.timer {
    margin-top: 30px;
    font-size: 27px;
    color: #939393;
    line-height: 1;
    text-align: center
}

.login__input-right.pass-off {
    display: block;
    width: 30px;
    height: 32px;
    margin-left: auto;
    margin-right: 17px
}

.login__input-right.pass-off svg {
    display: block;
    width: 100%;
    height: 100%
}

.login__input-right.pass-off svg {
    width: 100%;
    height: 100%
}

.login__input-right.pass-on svg {
    width: 100%;
    height: 100%
}

.login__input-right.pass-on {
    display: none;
    width: 30px;
    height: 32px;
    margin-left: auto;
    margin-right: 17px
}

.container-exit {
    max-width: 1020px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    height: 104px;
    background: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: none
}

.container-exit .exit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.search {
    width: 42px;
    height: 42px
}

.auto__button-search {
    margin-right: 38px
}

.accordion-header h4,
.accordion_main-header h4 {
    height: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 2px solid #d9eadd;
    font-size: 21px;
    color: black;
    line-height: 1.381
}

.accordion-title h4 {
    border-right: 2px solid transparent;
    text-align: center
}

.accordion-header h4:nth-child(3n),
.accordion_main-header h4:nth-child(3n) {
    border-left: 2px solid #d9eadd;
}

.clients .accordion-header .minus .accordion-symbol,
.clients .accordion-header .plus .accordion-symbol,
.clients .accordion_main-header .minus .accordion-symbol,
.clients .accordion_main-header .plus .accordion-symbol {
    position: relative;
    display: inline-block;
    left: 5px;
    top: -3px
}

.share .db {
    display: block
}

.share .dn {
    display: none
}

@media (max-width: 1140px) {
    .changing__title {
        width: 50%;
        font-size: 34px;
        margin-bottom: 90px
    }

    .device__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .device__left {
        max-width: 100%
    }

    .device__right {
        max-width: 100%
    }

    .device__right .w-51 {
        width: 25%
    }

    .w-57 {
        min-width: 44px
    }

    .device__right-title .w-57 {
        border: none
    }

    .device__right .w-67,
    .device__right .w-84,
    .device__right .w-78 {
        width: 50%
    }

    .device__right .w-157 {
        width: 100%
    }

    .device__right-block .w-67,
    .device__right-block .w-84,
    .device__right-block .w-78 {
        width: 50%
    }

    .device__right-block .w-157 {
        width: 100%
    }

    .device__right-title {
        height: 40px
    }

    .device-btn {
        width: 50%;
        height: 50px;
        margin-top: 30px;
        font-size: 16px
    }
}

@media (max-width: 1020px) {
    .user-img {
        width: 46px;
        height: 46px;
        border-radius: 6px;
    }

    .users .info__item-icon-1 {
        width: 31px;
        height: 19px
    }

    .users .info__item-icon-2 {
        width: 31px;
        height: 12px
    }

    .users .info__item-icon-3 {
        width: 27px;
        height: 26px
    }

    .users__info-block {
        max-width: 88px;
    }

    .users .wh-160 {
        padding-right: 0;
    }

    .users .users__info-block .info__item {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .users .info__item-txt {
        display: none;
    }

    .grid-two .tr {
        margin-left: 5px;
        margin-right: 5px;
    }

    .grid-two {
        max-width: 290px;
    }

    .grid-two .tr-w {
        margin-left: 6%;
    }

    .tr__span-number {
        margin-left: 0;
    }

    .auto__title {
        font-size: 24px;
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }

    .grid-uvedomlenia {
        height: 100%
    }

    .device .edit__button {
        display: none
    }

    .device__block {
        border-radius: 0px;
        border-left: 0px;
        border-right: 0px
    }

    .device__main {
        padding-left: 12px;
        padding-right: 12px
    }

    .grafic__header {
        border-left: 0;
        border-right: 0;
        border-radius: 0
    }

    .grafic__info {
        border-left: none;
        border-right: none;
        border-radius: 0
    }

    .grafic__main-container {
        padding: 18px 12px 20px
    }

    .users__info-item:first-child,
    .users__info-item:last-child,
    .users__info-item,
    .users__info {
        border-left: none;
        border-right: none;
        border-radius: 0
    }

    .clients-01 .auto__title-block {
        margin-bottom: 0
    }

    .uvedomlenia .auto__block,
    .clients-01 .clients__block-item {
        border-left: 0px;
        border-right: 0px
    }

    .clients-01 .clients__block {
        border-radius: 0
    }

    .uvedomlenia .auto__block:last-child,
    .clients-01 .clients__block-item:last-child {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px
    }

    .uvedomlenia .auto__block:first-child,
    .clients-01 .clients__block-item:first-child {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px
    }

    .notification__main {
        padding: 0 12px
    }

    .notification-input-txt {
        font-size: 18px
    }

    .automatization__block-item .item-block-button {
        width: 88px
    }

    .admin__block {
        margin-top: 66px;
        padding-left: 12px;
        padding-right: 12px
    }

    .grafic__icon-item {
        margin-right: 0
    }

    .grafic__info-item {
        border-left: none;
        border-right: none;
        padding-left: 15px
    }

    .grafic__info-item:first-child {
        border-radius: 0px
    }

    .grafic__info-item:last-child {
        border-radius: 0px
    }

    .grafic__icon-2 {
        margin-right: 12px
    }

    .grafic__info-item .info__item,
    .grafic__info-item .info__item-number {
        font-size: 16px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .grafic__icon-block {
        min-width: 150px
    }

    .grafic__block-item .item-title {
        font-size: 18px
    }

    .automatization__block,
    .automatization__schedules,
    .degre,
    .degre-btn,
    .setting-notification-title {
        margin-left: 12px;
        margin-right: 12px
    }

    .automatization-title,
    .automatization__schedules-title {
        padding-left: 12px;
        padding-right: 12px
    }

    .users .wh-285 {
        min-width: 100px;
        padding-left: 10px
    }

    .info__item.wh-285 {
        padding-right: 20px;
    }

    .user-img {
        margin-left: 5px;
        margin-right: 5px;
    }

    .users .wh-340 {
        min-width: 160px
    }

    .users .wh-160 {
        min-width: 80px;
        font-size: 8px;
        padding-right: 5px;
        line-height: 12px
    }

    .users .p-24 {
        padding-left: 10px;
    }

    .users .td-six {
        padding-left: 10px;
    }

    .users .td-seven,
    .users.td-eight {
        padding-left: 10px;
        padding-right: 11px;
    }

    .w-47 {
        width: 47px
    }

    .automatization .item-block .item-title {
        width: 140px;
        height: 35px
    }

    .automatization__block-item .item-block-button a {
        width: 140px;
        font-size: 14px
    }

    .degre-btn .delete {
        height: 50px
    }

    .degre-btn .delete-save {
        height: 50px;
        font-size: 16px
    }

    .schedules {
        margin-top: 30px
    }

    .automatization__schedules-title {
        font-size: 18px
    }

    .automatization .addbutton {
        width: 280px;
        height: 50px;
        font-size: 18px
    }

    .item-span-icon {
        display: none
    }

    .automatization__block-item .item-block-info {
        width: 88px
    }

    .automatization__block-item .item-block-info .item-icon {
        width: 30px;
        height: 30px
    }

    .auto__title-block .grafic-share {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .auto__title-block .grafic-share .grafic-icon {
        width: 35px;
        height: 30px;
        margin-right: 10px
    }

    .grafic__icon-2 .grafic__icon-block {
        max-width: 200px;
        margin-right: 20px
    }

    .grafic__icon .grafic-icon {
        width: 25px;
        height: 25px
    }

    .degre-txt p {
        font-size: 18px;
        line-height: 18px;
        padding-right: 8px
    }

    .degre-txt .degre-inp {
        padding-left: 12px;
        font-size: 18px
    }

    .container__automatization {
        margin-top: 28px;
        border-radius: 0px;
        border-left: 0px;
        border-right: 0px
    }

    .auto__block:last-child {
        border-radius: 0px
    }

    .container {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 30px
    }

    .container.login {
        padding-top: 140px;
    }

    .auto__mob-buttons {
        max-width: 130px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .auto__graf-icon {
        width: 53px;
        height: 44px
    }

    .auto__logs-icon {
        width: 43px;
        height: 45px
    }

    .logs__main {
        padding-left: 12px;
        padding-right: 12px
    }

    .logs__main-block {
        margin-left: -12px;
        margin-right: -12px;
        border-left: 0;
        border-right: 0;
        border-radius: 0px
    }

    .logs__main-info,
    .logs__main-block,
    .logs__main-item .item,
    .logs__main-item {
        border-color: #e7e7e7
    }

    .logs__main-item {
        border-left: none;
        border-right: none
    }

    .auto__title-block {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .logs__share-block {
        display: none
    }

    .logs__select-drop,
    .logs__data-kal {
        width: 45%
    }

    .logs__data,
    .logs__select {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .img-share {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .logs__share-btn {
        width: 100%
    }

    .auto {
        padding-top: 0
    }

    .share-button {
        width: 43px;
        height: 49px
    }

    .device__setting.dn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .device__setting.db {
        display: none
    }

    .device__group-btn {
        border-radius: 20px
    }

    .accordion-header h4,
    .accordion_main-header h4 {
        font-size: 16px
    }

    .edit-icon {
        width: 42px;
        height: 42px
    }

    .auto__title-block {
        max-width: 1020px;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        border-bottom: 2px solid #e7e7e7;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-top: 30px;
        padding-bottom: 30px;
        background: var(--white);
        margin-bottom: 30px
    }

    .popup__block {
        padding: 20px 30px
    }

    .popup-3 .popup__main,
    .popup-3 .popup__add {
        padding-left: 40px;
        padding-right: 40px
    }

    .popup-3 .form__line {
        width: 75%
    }

    .popup-3 .popup__btn {
        max-width: 280px
    }

    .popup-8 .popup__form,
    .popup-9 .popup__form,
    .popup-8 .popup__accordion,
    .popup-9 .popup__accordion,
    .popup-8 .popup__access,
    .popup-9 .popup__access {
        padding-left: 50px;
        padding-right: 50px
    }

    .clients-2 {
        margin-top: 0
    }

    .container-exit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 2px solid #e7ede9;
        margin-bottom: 27px
    }

    .clients-01 .clients__main-title {
        padding: 31px 0;
        background: #e7f4e8;
        margin-bottom: -2px
    }

    .clients .set__icon {
        margin: 0
    }

    .clients__device {
        padding-left: 0
    }

    .clients__device-name {
        width: 50%
    }

    .clients .db,
    .clients .logs .db {
        display: none
    }

    .clients .dn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .accordion .icon__raiting {
        height: 15px;
    }

    .clients__device-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%
    }

    .clients__device-subtitle {
        margin-left: auto;
        margin-right: 10%
    }

    .clients__device-set-icon {
        width: 100%;
        line-height: 1;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .clients__device-set-icon .minus,
    .clients__device-set-icon .plus {
        max-width: 100% !important;
        text-align: center;
        font-size: 10px
    }

    .accordion-sign {
        font-size: 8px
    }

    .clients__device-setting {
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 160px;
        width: 50%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .clients__device-set {
        border-bottom: 2px solid #d9eadd;
        padding: 5px;
        border-radius: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 80px;
        width: 50%
    }

    .clients__device-set.users {
        border-bottom: none;
    }

    .clients__device-set:last-child {
        border-bottom: none;
    }

    .clients__device-set {
        border-right: 2px solid #d9eadd
    }

    .admin {
        padding-top: 0;
        overflow: hidden
    }

    .mob-buttons-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .clients__device {
        max-height: 100%
    }

    .clients .share .dn {
        display: none
    }

    .clients__accordion {
        margin-top: 25px
    }

    .accordion-header,
    .accordion_main-header {
        padding-left: 12px;
        border-right: none;
        border-left: none
    }

    .accordion__info .accordion-header {
        border-left: 2px solid #d9eadd;
        border-right: none
    }

    .clients__device-name-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 0 0 15px;
        width: 100%;
        height: 80px;
        border-bottom: 2px solid #d9eadd
    }

    .clients__device-name-block:last-child {
        border-bottom: 0
    }

    .clients__device {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        border-color: #d9eadd;
        padding-left: 0
    }

    .icon-2-41 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 41px;
        height: 29px
    }

    .exit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer
    }

    .mob-burger {
        display: block;
        cursor: pointer
    }

    .admin__title {
        text-align: center
    }

    .admin__block-card:nth-child(2n+2) {
        margin-left: auto
    }

    .admin__title-block {
        max-width: 1020px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 20px
    }

    .admin-container {
        text-align: center;
        height: 104px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: var(--white);
        border-bottom: 2px solid #e7e7e7
    }

    .admin__block {
        margin-left: auto;
        margin-right: auto
    }

    .admin__block-card {
        overflow: visible;
        position: relative;
        margin-bottom: 75px
    }

    .admin__block-list {
        position: absolute;
        height: 60px;
        top: -60px;
        background: transparent;
        padding-left: 0
    }

    .admin-icon {
        display: none
    }

    .admin-icon-mob {
        display: block
    }

    .clients-01 .clients__main .quantity {
        min-width: 127px;
        max-width: 127px;
        width: 100%
    }

    .clients-01 .clients__main .date {
        min-width: 110px;
        max-width: 110px;
        width: 100%
    }

    .clients-01 .clients__block-item .quantity {
        min-width: 127px;
        max-width: 127px;
        width: 100%
    }

    .clients-01 .clients__block-info {
        min-width: 110px;
        max-width: 110px;
        width: 100%
    }

    .grafic__title-block {
        display: none
    }

    .grafic__footer {
        margin-top: 30px
    }

    .wh-100 {
        width: 55px
    }

    .wh-120 {
        width: 75px
    }

    .wh-90 {
        min-width: 70px
    }

    .grafic__info-item .info__item-icon-1,
    .grafic__info-item .info__item-icon-2,
    .grafic__info-item .info__item-icon-3,
    .grafic__info-item .info__item-icon-4 {
        width: 55px;
        height: 45px
    }

    .sub__device {
        height: 102px
    }
}

@media (max-width: 767px) {
    .auto__block {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .grid {
        width: 100%;
    }

    .grid .td:last-child {
        padding-left: 22px;
        border-bottom: 2px solid var(--lightgray);
    }

    .users__info-item .grid .td:last-child {
        padding-left: inherit;
        border-bottom: none;
    }

    .users__info-item .td-number {
        min-width: 48px;
        border-radius: 12px;
    }

    .users .info__item-tell,
    .users .info__item-mailto {
        font-size: 15px;
    }

    .icon_3-5,
    .icon_3-6 {
        display: none;
    }

    .popup__container-grid .grid .td:last-child {
        border-bottom: none;
    }

    .grid-2,
    .grid-two {
        max-width: 100%;
    }

    .open .icon_4-2 {
        left: -100%;
    }

    .grid-2 .td:last-child {
        border-bottom: none;
    }

    .grid-two .td {
        padding-left: 27px;
    }

    .degree {
        margin-left: 0;
    }

    .auto__right {
        border-top: 2px solid var(--lightgray);
        max-width: 100%;
        height: 60px;
    }

    .grid-2 .td-nine,
    .grid-2 .td-eleven,
    .grid-2 .td-thirteen {
        padding-left: 32px;
    }

    .td-six,
    .td-seven,
    .td-eight {
        padding-left: 10px;
    }

    .accordion-header h4,
    .accordion_main-header h4 {
        font-size: 12px;
    }

    .changing__title {
        width: 50%;
        font-size: 26px;
        margin-bottom: 50px
    }

    .device__group {
        width: 50%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .grafic__icon {
        border-bottom: none
    }

    .grafic__icon-block {
        margin-left: 0
    }

    .grafic__icon-block {
        font-size: 16px
    }

    .popup-8 .popup__form,
    .popup-9 .popup__form,
    .popup-8 .popup__accordion,
    .popup-9 .popup__accordion,
    .popup-8 .popup__access,
    .popup-9 .popup__access {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media (max-width: 720px) {
    .clients__main {
        padding: 0
    }

    .automatization__block-item .item-block-button {
        width: 50px
    }

    .td {
        font-size: 14px;
        line-height: 1
    }

    .automatization__block-item:hover,
    .automatization__block-item:hover .item-block .item-title,
    .automatization__block-item:hover .item-block-button,
    .automatization__block-item:hover .item-block-info {
        border-color: #e7e7e7
    }

    .automatization__block-item .item-block-button {
        border-color: #e7e7e7
    }

    .popup__icon {
        right: 15px;
        top: 15px
    }

    .popup-3 .popup__main,
    .popup-3 .popup__add {
        padding-left: 30px;
        padding-right: 30px
    }

    .popup__select-add {
        width: 40px;
        height: 40px
    }

    .select__option,
    .select__value {
        font-size: 14px !important;
        line-height: 16px !important;
        height: 40px !important
    }

    .popup__input {
        height: 50px
    }

    .share .db {
        display: none
    }

    .share .dn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .share-btn {
        margin-top: -2px
    }

    .share-btn .addbutton {
        border-color: #c6c6c6
    }

    .share-btn-icon {
        width: 19px;
        height: 31px
    }

    .share__accord {
        display: none
    }

    .clients-01 {
        background: var(--white)
    }

    .clients-2 {
        padding-left: 12px;
        padding-right: 12px
    }

    .clients-01 .clients__block,
    .clients__device {
        border-left: none;
        border-right: none;
        border-radius: 0
    }

    .accordion:first-child .accord__item {
        border-left: none
    }

    .accordion .accord__item {
        border-radius: 0
    }

    .accordion-header:hover a.w-74,
    .accordion-header:hover h4,
    .accordion-header:hover,
    .accordion_main-header:hover a.w-74,
    .accordion_main-header:hover h4,
    .accordion_main-header:hover,
    .accordion-content.active .accordion-header:hover {
        border-color: #d9eadd !important
    }

    .clients-01 .addbutton {
        max-width: 280px;
        margin-right: auto;
        height: 30px
    }

    .clients-2 .clients__block,
    .clients-2 .clients__block-item,
    .clients-2 .clients__block .right__icon {
        border-color: #efefef
    }

    .clients-2 .clients__block .left__icon {
        background: transparent
    }

    .auto__title-block {
        padding-left: 12px;
        padding-top: 18px;
        padding-right: 12px;
        padding-bottom: 25px;
        margin-bottom: 0
    }

    .changing .auto__title-block {
        padding-top: 25px
    }

    .logs .auto__title-block,
    .device .auto__title-block {
        margin-bottom: 30px
    }

    .device .auto__title-block {
        margin-bottom: 0;
        border-bottom: none
    }

    .device__block {
        height: auto;
        padding: 10px
    }

    .users .auto__title-block {
        margin-bottom: 28px
    }

    .grafic__icon-2 .grafic-automatization:hover,
    .grafic__icon-2 .grafic-share:hover,
    .grafic__icon-2 .grafic-automatization:focus-within,
    .grafic__icon-2 .grafic-share:focus-within {
        border-radius: 0
    }

    .grafic__footer {
        margin-top: 0
    }

    .grafic__info-item .info__item-icon-2 {
        display: none
    }

    .grafic__info-item .info__item-icon-4 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .grafic__info-item .info__item-icon-3 {
        width: 35px;
        height: 35px
    }

    .grafic__info-item {
        height: 118px;
        padding-left: 12px;
        padding-right: 12px;
        border-color: #e7e7e7
    }

    .grafic__info-item .info__item {
        border-color: #e7e7e7
    }

    .grafic__footer-block .info__item {
        border-color: #e7e7e7 !important
    }

    .grafic__info-item .info__item-number {
        line-height: 1
    }

    .grafic__footer-icon {
        width: 31px;
        height: 31px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .grafic__footer-symbol {
        display: inline-block;
        margin-left: 15px;
        margin-right: 1px
    }

    .grafic__footer-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .grafic__footer-cal-icon {
        width: 22px;
        height: 20px;
        margin-left: 26px;
        margin-right: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .grafic-plus .info__item-span-1,
    .grafic-minus .info__item-span-2 {
        margin-right: auto
    }

    .wh-76 {
        width: 40px
    }

    .wh-100 {
        min-width: 90px
    }

    .wh-90 {
        min-width: 60px
    }

    .wh-120 {
        min-width: 160px;
        width: 100%
    }

    .grafic__footer-block .wh-100:last-child {
        border-top: 2px solid #e7e7e7
    }

    .grafic__block {
        margin: 0 auto;
        max-width: 200px;
        min-width: 200px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border: none;
        border-radius: 0
    }

    .grafic__grafica {
        border: none;
        background: #f8f8f8;
        min-width: 100px
    }

    .grafic__main {
        padding: 14px 12px;
        background: var(--white);
        gap: 0;
        border: 2px solid #e7e7e7;
        border-radius: 8px;
        margin-top: 0
    }

    .grafic__block-item {
        padding-left: 0;
        padding-right: 0;
        margin-right: 24px;
        max-width: 178px;
        min-height: 54px;
        width: 100%
    }

    .grafic__block-item:nth-child(5) {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-bottom: 0
    }

    .grafic__block-item:nth-child(6) {
        display: none
    }

    .grafic__block-item:nth-child(5) .grafic__block-icon {
        border-bottom: 2px solid #e7e7e7;
        width: 53%
    }

    .grafic__block-item:nth-child(5) .grafic__block-icon:nth-child(2n+2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 47%;
        border-right: 0;
        font-size: 21px;
        color: #343635;
        line-height: 2.762
    }

    .grafic__block-icon:nth-child(7) {
        border-color: #e7e7e7
    }

    .grafic__header {
        padding-left: 0;
        padding-right: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start
    }

    .grafic__icon-block {
        min-width: 120px;
        max-width: 140px;
        border-right: 2px solid #d9eadd;
        margin-left: 0;
        border-right: none;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }

    .grafic__icon-2 .grafic__icon-block {
        max-width: 102px;
        min-width: 100px
    }

    .grafic__block-icon {
        width: 100%
    }

    .grafic__icon-2 .grafic__icon-block h4 {
        display: none
    }

    .grafic__icon-block .db {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .grafic__icon-block .dn {
        display: none
    }

    .grafic__icon-dn {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-right: 2px solid #e7e7e7
    }

    .grafic__icon-dn .grafic__icon-block {
        min-width: 100px;
        max-width: 130px;
        width: 100%
    }

    .grafic__icon-symbol-dn {
        display: inline-block
    }

    .grafic__icon-symbol-db {
        display: none
    }

    .grafic__icon-block,
    .grafic__icon-block:last-child {
        border-right: 2px solid #e7e7e7
    }

    .grafic__icon-dn .grafic__icon-block {
        border: none;
        height: auto
    }

    .grafic__icon-icon {
        width: 25px;
        height: 23px
    }

    .grafic__icon-title {
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
        font-size: 14px;
        color: black;
        text-transform: uppercase;
        line-height: 2.857
    }

    .grafic__icon .grafic-icon {
        width: 38px;
        height: 38px
    }

    .grafic__icon-number {
        font-size: 19px;
        color: black;
        text-transform: uppercase;
        line-height: 1.632
    }

    .grafic__icon-block {
        position: relative;
        height: 100%
    }

    .grafic__header {
        height: 130px;
        border-top: none
    }

    .grafic__before {
        font-size: 12px;
        margin-bottom: 5px
    }

    .grafic-minus .grafic__before-symbol-minus {
        display: inline-block;
        color: #f17079
    }

    .grafic-minus {
        color: #f17079
    }

    .grafic-plus .grafic__before-symbol-plus {
        display: inline-block;
        color: #5dc069
    }

    .grafic-plus {
        color: #5dc069
    }

    .grafic-plus .grafic__before-symbol-minus,
    .grafic-minus .grafic__before-symbol-plus {
        display: none
    }

    .grafic__icon-2 .grafic__icon-block {
        margin-right: 0;
        height: 100%;
        font-size: 14px;
        line-height: 16px;
        border-radius: 0
    }

    .grafic__icon-2 .grafic-automatization,
    .grafic__icon-2 .grafic-share {
        font-size: 12px;
        line-height: 12px;
        height: 100%
    }

    .grafic-share .grafic__icon-block {
        border-right: none
    }

    .grafic-share .grafic-icon:last-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .auto__title-block .grafic-share .grafic-icon {
        margin-left: auto;
        margin-right: 0
    }

    .grafic-share .grafic-icon:first-child {
        display: none
    }

    .setting-notification .db,
    .automatization .db {
        display: none
    }

    .setting-notification .dn,
    .automatization .dn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .setting-notification .addbutton,
    .automatization .addbutton {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 78px;
        height: 78px;
        border: 2px solid #c6c6c6;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        font-size: 36px;
        border-radius: 6px;
        color: #333333
    }

    .delete-save {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 78px;
        height: 78px;
        border: 2px solid #c6c6c6;
        margin-top: 30px;
        margin-left: auto;
        font-size: 36px;
        border-radius: 6px;
        color: #333333
    }

    .setting-notification .delete-save.dn {
        max-width: 550px;
        width: 100%
    }

    .setting-notification-title .notification-title,
    .setting-notification-title .notification-btn {
        color: black;
        font-weight: bold
    }

    .notification {
        margin-left: 12px;
        margin-right: 12px
    }

    .notification-title {
        margin-top: 18px;
        margin-left: 12px;
        margin-right: 12px
    }
    .setting-notification .dn:hover span,
    .automatization .dn:hover span {
        color: var(--white)
    }

    .popup__input-block {
        margin-bottom: 10px
    }

    .notification__block.left,
    .notification__block.left .notification__block-item:last-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }

    .notification__block.right,
    .notification__block.right .notification__block-item:first-child {
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }

    .notification__block.right {
        margin-top: -2px
    }

    .notification__block-item:hover .notification__icon {
        border-right-color: transparent
    }

    .notification__block.right .notification__block-item:first-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .notification-checkbox {
        width: 277px;
        border-right: none
    }

    .notification__block,
    .notification__block-item {
        border-color: #e7e7e7
    }

    .notification__icon {
        background: transparent
    }

    .notification__icon .notification-icon-1 {
        width: 32px;
        height: 30px
    }

    .notification__icon .notification-icon-2 {
        width: 21px;
        height: 39px
    }

    .notification__icon .notification-icon-3 {
        width: 38px;
        height: 34px
    }

    .notification__icon .notification-icon-4 {
        width: 38px;
        height: 31px
    }

    .notification__icon .right-icon-1 {
        width: 38px;
        height: 38px
    }

    .notification__icon .right-icon-2 {
        width: 33px;
        height: 40px
    }

    .notification__icon .right-icon-3 {
        width: 39px;
        height: 39px
    }

    .notification__icon {
        min-width: 86px;
        max-width: 86px;
        width: 100%
    }

    .input .notification__block-item label {
        margin-left: 10px
    }

    .input label:before {
        width: 50px;
        height: 50px
    }

    .automatization {
        background: var(--white)
    }

    .automatization-title {
        margin-top: 18px
    }

    .degre {
        margin-top: 50px
    }

    .automatization__block,
    .automatization__block-item {
        border-color: #e7e7e7
    }

    .automatization__block-item:nth-child(2n+2) {
        background: transparent
    }

    .automatization__block-item:nth-child(2n+2) .item-block-info {
        background: transparent
    }

    .automatization__block-item .item-block .item-title {
        border-color: #c6c6c6
    }

    .automatization .item-block .item-title {
        width: 120px
    }

    .automatization__block-item .item-block-button a {
        width: 50px
    }

    .automatization__block-item .item-block .item-txt {
        font-size: 16px
    }

    .automatization__block-item .item-block-info {
        background: var(--white)
    }

    .line {
        display: block;
        width: 100%;
        height: 2px;
        background: #e7e7e7
    }

    .automatization__schedules-time {
        border-right: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        width: 100px;
        height: 182px;
        border-color: #e7e7e7
    }

    .automatization__schedules-icon .icon-block {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start
    }

    .automatization__schedules-time .time-block .hours {
        color: #616d61;
        border-color: #d9eadd
    }

    .degre .degre__block-item {
        border-color: #e7e7e7
    }

    .degre-block {
        width: 78px;
        height: 82px;
        border-color: #d9eadd
    }

    .degre-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 38px;
        height: 34px
    }

    .degre-txt {
        padding-left: 8px;
        padding-right: 8px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .degre-btn .delete {
        border: 2px solid #c6c6c6
    }

    .degre-btn {
        margin-bottom: 50px
    }

    .degre-btn .db {
        display: none
    }

    .degre-btn .dn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: transparent;
        border: 2px solid #c6c6c6
    }

    .delete-save-icon {
        width: 19px;
        height: 31px
    }

    .notification__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
        gap: 0px
    }

    .popup.active {
        bottom: -10vh
    }

    .popup-18 .popup__container {
        max-height: 30vh;
        min-height: 30vh
    }

    .popup__container {
        min-height: 90vh;
        max-height: 90vh;
        height: 100%;
        max-width: 740px;
        width: 100%;
        border-radius: 0
    }

    .input-qr {
        max-width: 100%
    }

    .popup-8 .popup__form,
    .popup-9 .popup__form,
    .popup-8 .popup__access,
    .popup-9 .popup__access {
        padding-left: 40px;
        padding-right: 40px
    }

    .popup__btn {
        max-width: 300px
    }

    .popup__block .dn {
        display: none
    }

    .popup__block .db {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        background-color: transparent
    }

    .popup__block .delete-save {
        margin-right: none;
        background: transparent;
        border: 2px solid #c6c6c6
    }

    .popup__block .delete-save:hover {
        background: #4ab957
    }

    .popup__btn~.degre-btn {
        max-width: 576px
    }

    .automatization .addbutton {
        margin-top: 20px;
        margin-bottom: 30px
    }

    .schedules {
        margin-top: 50px
    }

    .icon-block {
        border-bottom: 2px solid #e7e7e7
    }

    .icon-block:last-child {
        border: 0
    }

    .automatization__schedules-icon {
        height: 182px;
        border-top: 2px solid #e7e7e7;
        border-bottom: 2px solid #e7e7e7
    }

    .automatization__schedules-time .time-block:nth-child(2n+2) {
        background: transparent
    }

    .automatization__schedules-time .time-block {
        border-color: #e7e7e7
    }

    .automatization__schedules-block {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-color: #e7e7e7
    }

    .automatization__schedules-icon .icon-block .schedules-icon {
        width: 30px
    }

    .degre-txt p,
    .degre-txt .degre-inp {
        padding: 0;
        border: 0
    }

    .automatization__block-item .item-block .item-title h3{
        font-size: 16px;
        line-height: 1.5
    }

    .button-txt.dn {
        display: none
    }

    .degre-txt p {
        width: 100%;
        font-size: 12px;
        line-height: 20px;
        margin-left: 5px
    }

    .degre-txt .degre-inp {
        font-size: 28px;
        color: #616d61;
        line-height: 1.5;
        margin-bottom: 10px
    }

    .logs .db {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .logs__button-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 27px;
        color: #343635;
        line-height: 1;
        text-align: left
    }

    .logs__button-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 12px;
        height: 19px
    }

    .logs__button {
        margin-left: auto;
        margin-right: auto;
        max-width: 604px;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 20px
    }

    .logs__main-block {
        border-bottom: 2px solid #e7e7e7
    }

    .logs__btn {
        max-width: 300px;
        height: 50px
    }

    .logs__button-btn {
        width: 45%;
        margin-top: 48px;
        margin-bottom: 75px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 33px 19px 31px 26px;
        border: 2px solid #c6c6c6;
        border-radius: 6px
    }

    .logs__data {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .logs__select-drop:nth-child(2n+2) {
        margin-left: auto
    }

    .logs__select-drop:last-child {
        margin-left: 0px
    }

    .auto__title {
        font-size: 26px
    }

    .logs__select-icon .logs-icon {
        width: 29px;
        height: 18px
    }

    .logs__select-drop {
        height: auto;
        width: 45%
    }

    .logs .logs__select .select__value,
    .logs .logs__select .select__options {
        padding: 10px 5px 10px;
        height: auto !important;
        font-size: 12px !important
    }

    .logs__select .select__value,
    .logs__select .select__options {
        padding: 29px 12px 25px;
        height: auto !important
    }

    .logs__select-txt {
        font-size: 21px;
        color: #616d61;
        line-height: 1;
        text-align: left
    }

    .logs__select-icon {
        border-left: none
    }

    .logs__data-kal,
    .logs__share-btn {
        height: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 12px 10px 12px 10px
    }

    .logs__data-kal {
        position: relative
    }

    .logs__data-kal label {
        position: absolute;
        margin-top: 10px;
        right: 0
    }

    .logs__share-btn {
        padding: 31px 12px 31.34px 12px
    }

    .logs__share-btn p {
        display: none
    }

    .logs__data-label {
        margin-left: auto;
        margin-right: 0
    }

    .logs__data-txt {
        width: 100%;
        height: 20px;
        position: relative;
        border-right: none;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start
    }

    .logs__data-kal input {
        margin-left: 0
    }

    .logs__data-kal input,
    .logs__data-txt {
        font-size: 16px;
        color: #bacbbe;
        line-height: 1.667;
        text-align: left
    }

    .share-button {
        width: 30px;
        height: 30px
    }

    .changing {
        overflow: hidden
    }

    .changing .auto__title-block {
        margin-top: 0;
        margin-bottom: 30px
    }

    .changing-title,
    .changing__form,
    .recovery__form {
        padding-left: 12px;
        padding-right: 12px
    }

    .icon_1-2,
    .icon_1-15,
    .icon_check,
    .icon_1-6,
    .search,
    .w-47 {
        width: 30px;
        height: 30px
    }

    .share__block {
        max-width: 100%;
        margin-top: 18px;
        padding-left: 12px;
        padding-right: 12px
    }

    .share__block-icon {
        border: none
    }

    .share__icon {
        border-bottom: none;
        background: transparent
    }

    .share-icon-left-1 {
        margin-left: 2px;
        width: 31px;
        height: 34px
    }

    .share-icon-left-2,
    .share-icon-left-3 {
        width: 42px;
        height: 32px
    }

    .input .share__block-icon label::before {
        width: 45px;
        height: 45px;
        border-color: #cddfd1
    }

    .input .share__block-icon input:checked+label:before {
        background: var(--lightwhite);
        border-color: #cddfd1
    }

    .input .share__accord label::before {
        width: 37px;
        height: 37px
    }

    .input .share__block-icon input:checked+label:after {
        border-color: #616d61;
        border-width: 0px 4px 4px 0px;
        top: 50%;
        right: 45%;
        width: 10px;
        height: 16px
    }

    .share__block-item,
    .share__block-accord,
    .share__block-accord:first-child,
    .share__block-accord:last-child {
        border-color: #e7e7e7
    }

    .share__block-item {
        border-bottom-color: transparent
    }

    .accord-item {
        margin-top: -2px;
        border-top: 2px solid #e7e7e7;
        border-bottom: 2px solid #e7e7e7
    }

    .share__block-accord:hover,
    .share__block-accord:hover .share__block-icon,
    .share__block-accord:hover .share-btn,
    .share__block-accord.active:hover .share__accord,
    .share__block-accord:first-child:hover,
    .share__block-accord:last-child:hover {
        border-color: #d9eadd
    }

    .share__block-accord:hover .share__icon,
    .share__block-accord:hover .share__accord .share__icon {
        border-color: transparent
    }

    .accord-item:first-child {
        margin-top: 0
    }

    .accord-item:last-child {
        border-bottom: none
    }

    .share__block-txt {
        font-size: 28px;
        line-height: 2.607
    }

    .share__block-title h3 {
        font-size: 23px;
        line-height: 2.043
    }
}

@media (max-width: 650px) {
    .grafic__icon-2 .grafic__icon-block {
        min-width: 50px;
        max-width: 70px
    }

    .grafic__icon-2 .grafic-icon {
        margin-left: 5px;
        margin-right: 5px
    }

    .grafic__block-item {
        max-width: 130px
    }

    .grafic__block {
        min-width: 150px;
        max-width: 150px
    }

    .grafic__block-item .item-title {
        font-size: 14px
    }

    .grafic__block-item .item-indicator-1,
    .grafic__block-item .item-indicator-2,
    .grafic__block-item .item-indicator-3,
    .grafic__block-item .item-indicator-4 {
        width: 18px;
        height: 4px
    }
}

@media (max-width: 576px) {
    .automatization__block-item .item-block-button {
        width: 35px
    }

    .td-number {
        min-width: 40px;
    }

    .logs__select-drop {
        height: auto;
        width: 49%
    }

    .logs__data-kal {
        width: 49%
    }

    .login__input .changing__legend {
        font-size: 16px
    }

    .login__title {
        margin-top: 15px;
        margin-bottom: 30px;
        font-size: 18px;
        line-height: 18px
    }

    .popup-13 .popup__select-time .h,
    .popup-13 .popup__select-time .m {
        width: 60px;
        height: 40px;
        font-size: 18px
    }

    .share__block-txt {
        font-size: 16px;
        line-height: 1
    }

    .share__block-title h3 {
        font-size: 16px;
        line-height: 1
    }

    .share-icon-left-1,
    .share-icon-left-2,
    .share-icon-left-3 {
        width: 20px;
        height: 20px
    }

    .share__block-item {
        height: 50px
    }

    .share__icon {
        min-width: 40px;
        max-width: 40px
    }

    .input .share__block-icon label::before {
        width: 35px;
        height: 35px
    }

    .input .share__accord label::before {
        width: 30px;
        height: 30px
    }

    .input .share__block-icon input:checked+label:after {
        right: 40%;
        width: 12px;
        height: 20px
    }

    .share-btn .addbutton {
        width: 150px;
        height: 40px
    }

    .share-btn-icon {
        width: 15px;
        height: 20px
    }

    .clients-01 .auto__title-block {
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 0;
    }

    .clients-01 .clients__main-title {
        padding-top: 10px;
        padding-bottom: 10px
    }

    .clients-01 .addbutton {
        max-width: 160px
    }

    .auto__title-block .grafic-share .grafic-icon {
        width: 15px;
        height: 15px
    }

    .grafic__icon-2 .grafic__icon-block {
        min-width: 40px
    }

    .grafic__icon .grafic-icon,
    .grafic__icon-icon {
        width: 15px;
        height: 15px
    }

    .grafic__icon-dn .grafic__icon-icon {
        margin-right: 10px
    }

    .grafic__icon-dn .grafic__icon-block {
        padding-left: 20px;
        line-height: 16px
    }

    .grafic__header {
        height: 70px
    }

    .grafic__icon-item {
        margin-left: 5px;
        font-size: 8px
    }

    .grafic__icon-title {
        font-size: 7px
    }

    .grafic__before {
        right: 44px;
        font-size: 6px;
        top: -2px
    }

    .grafic__icon-number,
    .grafic__symbol {
        font-size: 8px
    }

    .grafic__icon-block {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        padding-left: 12px;
        min-width: 70px
    }

    .grafic__block {
        min-width: 70px;
        max-width: 70px
    }

    .grafic__block-icon {
        height: 30px
    }

    .grafic__block .icon-1,
    .grafic__block .icon-2 {
        width: 15px;
        height: 15px
    }

    .grafic__grafica {
        min-height: 200px
    }

    .grafic__main {
        padding: 5px
    }

    .grafic__block-item .item-title {
        font-size: 8px
    }

    .grafic__block-item {
        margin-right: 5px;
        min-height: 30px
    }

    .grafic__block-item .item-indicator-1,
    .grafic__block-item .item-indicator-2,
    .grafic__block-item .item-indicator-3,
    .grafic__block-item .item-indicator-4 {
        width: 10px;
        height: 2px
    }

    .grafic__info-item .info__item,
    .grafic__info-item .info__item-number {
        font-size: 12px
    }

    .grafic__footer-icon {
        width: 15px;
        height: 15px
    }

    .grafic__footer-symbol {
        margin-left: 5px
    }

    .wh-100 {
        min-width: 50px
    }

    .grafic__footer-cal-icon {
        width: 15px;
        height: 15px;
        margin-left: 5px;
        margin-right: 5px
    }

    .wh-120 {
        min-width: 90px
    }

    .grafic__info-item .info__item-icon-1,
    .grafic__info-item .info__item-icon-2,
    .grafic__info-item .info__item-icon-4 {
        width: 25px;
        height: 25px;
        padding: 5px
    }

    .grafic__info-item .info__item-icon-3 {
        width: 20px;
        height: 20px;
        padding: 5px
    }

    .wh-90 {
        min-width: 30px
    }

    .grafic__footer-block-2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .grafic__footer-block-2 .wh-90:last-child {
        border-top: 2px solid #e7e7e7
    }

    .schedules,
    .degre {
        margin-top: 15px
    }

    .automatization .item-block .item-title {
        width: 60px;
        height: 20px
    }

    .automatization__block-item .item-block .item-title h3 {
        font-size: 9px
    }

    .automatization .item-block:last-child {
        margin: 0
    }

    .automatization__block-item .item-block-button a {
        width: 35px;
        border-color: #e7e7e7
    }

    .automatization__schedules-icon {
        height: 107px;
        width: 45px
    }

    .automatization__schedules-icon .icon-block {
        width: 45px;
        height: 35px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .automatization__block-item .item-block-info .item-icon {
        width: 15px;
        height: 15px
    }

    .automatization__schedules-time {
        height: 107px;
        width: 64px
    }

    .automatization__schedules-icon .icon-block .schedules-icon {
        width: 15px
    }

    .auto__right {
        position: relative
    }

    .td-span {
        width: 35px;
        height: 20px;
    }

    .setting-notification .dn,
    .automatization .dn {
        width: 30px;
        height: 30px
    }

    .degre-btn .delete-save {
        height: 35px
    }

    .addbutton {
        width: 60%;
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 10px
    }

    .setting-notification .addbutton,
    .automatization .addbutton,
    .delete-save {
        font-size: 22px
    }

    .degre-btn .delete {
        width: 100px;
        height: 35px
    }

    .degre .degre__block-item {
        height: 60px;
        gap: 35px
    }

    .degre-block {
        width: 60px;
        height: 50px
    }

    .input .automatization__block-item input {
        height: 30px;
        font-size: 10px
    }

    .degre-icon {
        width: 20px;
        height: 20px
    }

    .delete-save-icon {
        height: 20px
    }

    .degre-txt p {
        margin-left: 0;
        font-size: 8px;
        line-height: 8px
    }

    .degre-txt .degre-inp {
        margin-bottom: 5px;
        font-size: 16px;
        line-height: 1
    }

    .popup-12 .popup__title br {
        display: block
    }

    .popup__btn~.degre-btn {
        max-width: 100%
    }

    .auto__title-block {
        margin-bottom: 20px
    }

    .grafic .auto__title-block {
        margin-bottom: 00px
    }

    .auto__mob-buttons {
        max-width: 70px;
        margin-left: 10px
    }

    .auto__graf-icon,
    .auto__logs-icon {
        width: 20px;
        height: 20px
    }

    .automatization-title {
        font-size: 16px;
        line-height: 1;
        margin-bottom: 10px
    }

    .automatization__schedules-title {
        font-size: 16px
    }

    .degre-title {
        font-size: 16px
    }

    .automatization__block-item .item-block-info {
        font-size: 12px;
        max-width: 50px;
        min-width: 50px
    }

    .automatization__block-item .item-block .item-txt {
        font-size: 10px
    }

    .input label:before {
        width: 20px;
        height: 20px
    }

    .input input:checked+label:after {
        right: 40%;
        width: 7px;
        height: 13px
    }

    .popup-8 .input input:checked+label:after,
    .popup-9 .input input:checked+label:after {
        right: 50%;
        width: 10px;
        height: 22px
    }

    .setting-notification-title .notification-title,
    .setting-notification-title .notification-btn {
        font-size: 16px
    }

    .notification__block-item {
        height: 60px
    }

    .notification .automatization__block-item .degre-block {
        width: 50px;
        margin-right: 30px
    }

    .notification__icon .notification-icon-1,
    .notification__icon .notification-icon-2,
    .notification__icon .notification-icon-3,
    .notification__icon .notification-icon-4,
    .notification__icon .right-icon-1,
    .notification__icon .right-icon-2,
    .notification__icon .right-icon-3 {
        width: 20px;
        height: 20px
    }

    .notification-input-txt {
        font-size: 12px
    }

    .notification__icon {
        min-width: 40px;
        max-width: 40px
    }

    .logs__btn {
        max-width: 150px;
        height: 30px
    }

    .logs__button-btn {
        margin-top: 20px;
        margin-bottom: 50px
    }

    .logs__button-btn {
        padding: 10px;
        font-size: 16px
    }

    .auto__title {
        font-size: 16px
    }

    .logs__data-kal {
        padding: 8px
    }

    .logs__data-kal input,
    .logs__data-txt,
    .logs__select-txt {
        font-size: 14px;
        line-height: 1
    }

    .logs__data-kal input {
        padding: 0;
        height: 30px
    }

    .logs__data-txt {
        height: 10px
    }

    .logs__select-icon .logs-icon {
        width: 15px;
        height: 10px
    }

    .logs__main-info {
        padding: 5px
    }

    .logs__select {
        gap: 5px
    }

    .header {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .accordion-header h4,
    .accordion_main-header h4 {
        font-size: 9px
    }

    .container-exit {
        height: 60px
    }

    .login-btn {
        max-width: 280px;
        height: 45px;
        font-size: 16px;
        line-height: 16px;
        position: absolute;
        bottom: 0px;
        left: 50%;
        -webkit-transform: translate(-50%, 0px);
        -ms-transform: translate(-50%, 0px);
        transform: translate(-50%, 0px)
    }

    .login-btn-forgot {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 50px
    }

    .changing__title {
        width: 100%;
        font-size: 22px;
        margin-bottom: 50px
    }

    .changing-title {
        margin-bottom: 50px
    }

    .changing__form-input {
        height: 70px;
        font-size: 24px
    }

    .timer {
        margin-top: 30px
    }
}

@media (max-width: 350px) {
    .grafic__before {
        right: 15px
    }
}

@media (min-width: 320px) and (max-width: 1020px) {
    .header {
        display: none
    }

    .breadcrumb {
        display: none
    }

    .mob-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        overflow: hidden;
        width: 80px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .mob-buttons .open .icon_1-15 {
        top: 100%
    }

    .icon_1-2,
    .icon_1-15,
    .icon_check,
    .icon_1-6,
    .search,
    .w-47 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 30px;
        height: 30px
    }

    .mob-buttons .open .icon_check {
        top: 0%
    }

    .automatization__block-item {
        height: 37px;
        font-size: 8px
    }

    .automatization__block-item .item-block .item-txt {
        margin-left: 0
    }

    .automatization__block-item .item-block-button .item-icon {
        width: 7px;
        height: 7px
    }

    .automatization .item-block {
        gap: 5px;
        margin-left: 5px
    }

    .schedules .automatization__block-item .item-block {
        margin-left: 0
    }

    .schedules .time-block {
        height: 35px
    }

    .schedules .time-block .hours {
        width: 40px;
        height: 20px;
        font-size: 12px
    }

    .degre-block::before {
        font-size: 16px;
        right: -20px
    }

    .degre-btn .delete-icon {
        width: 15px;
        height: 15px
    }
}

@media (min-width: 320px) and (max-width: 720px) {
    .changing__header {
        display: none !important
    }

    .users__info-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto
    }

    .users .users__info-block .info__item {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .users .info__item.wh-75 {
        min-height: 58.4px;
        min-width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-bottom: none
    }

    .users .wh-285 {
        max-width: 100%;
        border-right: none;
        border-bottom: 2px solid #ecf4ee;
        padding-top: 10px;
        padding-bottom: 5px;
        min-width: 100px;
        height: auto;
        padding-left: 10px
    }

    .users__info .info__item.wh-285 {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .users__info-item .grid .td:last-child {
        border-bottom: 2px solid var(--lightgray)
    }

    .users__info-item:hover .grid .td:last-child,
    .users__info-item:hover .users__info-block {
        border-color: #a0daa6;
    }

    .users .wh-340 {
        height: auto
    }

    .users__info-block {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .users .users__info-block .info__item:last-child {
        display: none;
    }

    .users__info-block {
        max-width: 100%;
        border-bottom: 2px solid #ecf4ee;
    }

    .users .users__info-block .info__item {
        border-right: none;
    }

    .users .wh-160 {
        border-bottom: none;
        max-width: 70px;
        min-width: 70px;
    }

    .users .wh-75 {
        height: auto
    }

    .changing .auto__title-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative
    }

    .changing input::-webkit-input-placeholder {
        font-size: 20px
    }

    .changing input::-moz-placeholder {
        font-size: 20px
    }

    .changing input:-ms-input-placeholder {
        font-size: 20px
    }

    .changing input::-ms-input-placeholder {
        font-size: 20px
    }

    .changing input::placeholder {
        font-size: 20px
    }

    .changing .auto__title-block .back {
        position: absolute;
        left: 12px
    }

    .back {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 36px;
        line-height: 33px
    }

    .auto__button {
        display: none !important
    }

    .logs__btn {
        display: block !important
    }

    .logs__data {
        gap: 5px
    }

    .td-five {
        padding-right: 10px;
    }

    .td-eight {
        padding-right: 10px;
    }

    .td-thirteen {
        height: 98px
    }

    .grid-2 .td-thirteen {
        height: 100%
    }

    .auto .addbutton {
        margin-bottom: 50px
    }

    .td-six,
    .td-seven,
    .td-eight {
        padding-left: 10px;
        padding-right: 5px;
        min-height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .auto__button-mob {
        width: 50%
    }

    .open .icon_4-2 {
        position: absolute;
        z-index: -1;
        top: 50%;
        left: -100%
    }

    .open .auto__block .on {
        position: absolute;
        bottom: 50%;
        right: 50%;
        -webkit-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
        transform: translate(50%, 50%)
    }

    .auto__block .on {
        position: absolute;
        bottom: 50%;
        right: -100%
    }

    .auto__block {
        overflow: hidden
    }

    .icon_4-2 {
        width: 12px;
        height: 12px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

    .container__uvedomlenia .auto__block {
        min-width: 280px;
        width: 100%;
        padding-left: 0
    }

    .container__uvedomlenia .auto__block .td {
        text-align: center
    }

    .container__uvedomlenia .auto__block .td-two {
        padding-left: 5px
    }

    .container__uvedomlenia .auto__block .grid-uvedomlenia .td_uvedomlenia-three {
        padding-left: 10px
    }

    .grid-uvedomlenia .td .tr__span-number {
        max-width: 80px;
        height: 30px;
        font-size: 14px
    }

    .open .grid-uvedomlenia .td .tr:nth-child(3) {
        width: 45%
    }

    .icon_2-28 {
        width: 18px;
        height: 18px
    }

    .icon_2-30 {
        height: 20px
    }

    .icon_2-11,
    .icon_2-13,
    .icon_2-32,
    .icon_2-15,
    .icon_2-37,
    .icon_2-38,
    .icon_2-12,
    .icon_2-3 {
        width: 20px;
        height: 20px
    }

    .device__group-btn {
        width: 50%;
        height: 30px;
        font-size: 9px;
        line-height: 15px;
        text-transform: none
    }

    .edit-icon {
        width: 25px;
        height: 25px
    }

    .device__setting {
        gap: 5px
    }

    .device__group {
        width: 60%
    }

    .device__setting .set__icon-1,
    .device__setting .set__icon-2,
    .device__setting .set__icon-3 {
        width: 15px;
        height: 15px;
        margin-right: 0px
    }

    .device-set {
        margin-left: 0px;
        margin-right: 0px;
        font-size: 12px;
        padding: 5px
    }

    .device-set .clients__device-set-icon {
        margin-left: 0
    }

    .logs__main-item .item {
        height: 70px;
        font-size: 8px;
        line-height: 10px;
        padding: 5px
    }

    .w-270 {
        min-width: 80px;
        width: 100%
    }
}

@media (min-width: 720px) and (max-width: 1020px) {
    .grid {
        padding-left: 0
    }

    .auto__block {
        overflow: hidden
    }

    .back {
        display: block;
        font-family: 'icon';
        font-size: 36px;
        line-height: 33px
    }

    .auto__button-mob {
        margin-right: 30px;
    }

    .auto__button {
        display: none !important
    }

    .logs__btn {
        display: block !important
    }

    .auto__right {
        width: 100%;
        position: relative
    }

    .addbutton {
        display: none
    }

    .device__group-btn {
        width: 120px;
        height: 35px
    }

    .device__block {
        width: 100%;
        height: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .device__setting {
        gap: 15px
    }

    .device__setting .set__icon-1,
    .device__setting .set__icon-2,
    .device__setting .set__icon-3 {
        width: 25px;
        height: 25px
    }

    .device-set {
        font-size: 16px
    }

    .device__setting .set__icon {
        margin-right: 0
    }

    .device__left {
        margin-top: 30px
    }

    .device-btn {
        display: block;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 7px;
        background-color: #4ab957;
        width: 300px;
        height: 50px;
        font-size: 16px;
        color: white;
        text-align: center
    }

    .logs__main-item .item {
        padding-left: 20px
    }
}

@media (min-width: 720px) and (max-width: 1140px) {
    .container__uvedomlenia .auto__block {
        min-width: 680px;
        width: 100%;
        padding-left: 0
    }

    .grid-uvedomlenia {
        height: 100%
    }

    .open .grid-uvedomlenia .td .tr:nth-child(3) {
        width: 45%
    }
}

@media (min-width: 1080px) and (max-width: 1140px) {
    .grid-uvedomlenia .td .tr {
        width: 200px
    }

    .grid-uvedomlenia .td .tr:nth-child(3) {
        width: 302px
    }
}

@media (min-width: 768px) and (max-width: 1020px) {

    .clients__device-set.dashboard,
    .clients__device-set.share {
        border-right-color: transparent;
    }

}

@media (min-width: 320px) and (max-width: 768px) {

    .clients__device-set.users,
    .clients__device-set.share {
        border-right-color: transparent !important;
    }

    .clients__device-set.share .db {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .popup__container {
        padding-top: 45px;
        padding-bottom: 20px;
        padding-right: 25px
    }

    .clients__device-title,
    .clients__device-subtitle {
        font-size: 12px;
        line-height: 12px
    }

    .clients .share .dn {
        display: none
    }

    .accordion__info .icon__raiting {
        width: 30px
    }

    .clients__device-setting {
        padding: 0;
        width: 50%
    }

    .clients__device-set {
        border-right: 2px solid #d9eadd !important;
        border: none;
        padding: 0px;
        border-radius: 0px;
        height: 80px;
        width: 25%
    }

    .clients__device-set:nth-child(2n+1) {
        border-right: none
    }

    .clients__device-set.logs,
    .clients__device-set.dashboard,
    .clients__device-set.users {
        width: calc(100% / 3);
        border-bottom: 2px solid #d9eadd !important
    }

    .clients__device-set:last-child {
        width: 25%
    }

    .clients .set__icon-1,
    .clients .set__icon-2,
    .clients .set__icon-3,
    .clients .set__icon-4,
    .clients .set__icon-5 {
        width: 20px;
        height: 24px
    }

    .clients__device-set:last-child {
        border: none
    }

    .clients .day,
    .clients .week,
    .clients .month {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .clients .minus .clients-minus,
    .clients .plus .clients-plus {
        display: inline-block
    }

    .clients .minus .clients-plus,
    .clients .plus .clients-minus {
        display: none
    }

    .clients__device-name {
        width: 50%;
        padding-top: 0px;
        padding-bottom: 0px
    }

    .clients__accordion {
        gap: 0px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .clients .accordion {
        min-width: 130px
    }

    .clients .accordion-title {
        font-size: 10px;
        margin-right: 0px;
        padding-left: 5px
    }

    .clients .bg .w-74:first-child,
    .clients .w-74:first-child {
        position: absolute;
        left: 30%;
        translate: -30%
    }

    .clients .w-74:last-child {
        min-width: 10%
    }

    .clients .accordion-title:not(:first-child) {
        width: 80px;
        font-size: 8px
    }

    .clients .accordion-title .title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .clients .accordion-icon {
        font-size: 10px;
        padding-right: 5px
    }

    .clients .accordion__info {
        min-width: 130px
    }

    .clients .accordion__info .w-74 .db {
        display: none
    }

    .clients .accordion__info .w-74 .dn,
    .clients .accordion .w-74 .dn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 10px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .accordion__info .icon__raiting,
    .accordion .icon__raiting {
        width: 10px;
        height: 10px;
        border-radius: 0
    }

    .w-63,
    .w-83,
    .w-74 {
        max-width: 10%
    }

    .w-85 {
        max-width: 12%;
    }

    .clients .accordion .icon__arrow {
        width: 10px;
        height: 10px;
        border-radius: 0px
    }

    .accordion .icon__arrow-right {
        padding: 13px
    }

    .accordion .icon__arrow {
        padding: 0px
    }

    .popup-8 .accordion .icon__arrow,
    .popup-9 .accordion .icon__arrow {
        padding: 10px
    }

    .clients .accordion .icon__arrow-right {
        height: 100%;
        border-radius: 0
    }

    .clients .accordion .xx span,
    .clients .accordion .yy span {
        width: 7px;
        height: 7px;
        margin-left: 5px
    }

    .accordion .xx,
    .accordion .yy {
        font-size: 8px
    }

    .clients .accordion__info .accordion-title,
    .clients .accordion__info .accordion-header {
        padding-left: 0px;
        height: 50px
    }

    .accordion-header .minus,
    .accordion-header .plus,
    .accordion_main-header .minus,
    .accordion_main-header .plus {
        text-align: center;
        border-right: 2px solid #d9eadd;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .accordion-content .accordion-header .accordion-title {
        margin-left: 5px;
    }

    .accordion-content .accordion-content .accordion-header .accordion-title {
        margin-left: 10px;
    }

    .accordion-content .accordion-content .accordion-content .accordion-header .accordion-title {
        margin-left: 15px;
    }

    .accordion-content .accordion-header .w-74:first-child {
        margin-left: 0px;
    }

    .accordion-content .accordion-content .accordion-header .w-74:first-child {
        margin-left: 0px;
    }

    .accordion-content .accordion-content .accordion-content .accordion-header .w-74:first-child {
        margin-left: 0px;
    }

    .clients .accordion-header,
    .clients .accordion_main-header {
        height: 50px;
        font-size: 10px
    }

    .clients .auto__title-block {
        margin-bottom: -2px
    }

    .clients .icon_2-14 {
        width: 38px;
        height: 38px
    }

    .clients .w-74 {
        min-width: 10%;
        height: 47px
    }

    .clients .accordion-icon {
        min-height: 50px
    }

    .popup__block-name {
        margin-top: 15px;
        font-size: 14px;
        line-height: 16px
    }

    .popup__ls {
        margin-bottom: 25px !important
    }

    .popup__btn {
        margin-top: 30px
    }

    .popup-2 .popup__text-title {
        font-size: 18px;
        line-height: 20px
    }

    .popup-2 .popup-2-block {
        padding-left: 30px;
        padding-right: 30px
    }

    .popup-2 .popup__block {
        padding-top: 50px
    }

    .accordion-title br {
        display: block
    }

    .notification__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .notification__main .left,
    .notification__main .right {
        width: 100%
    }

    .notification .setting-notification-title {
        margin-top: 30px
    }

    .notification .automatization__block-item {
        height: 100%;
        margin-left: 10px
    }

    .notification__user .automatization__block-item {
        margin-left: 0;
        height: 50px
    }

    .notification-txt {
        font-size: 12px;
        line-height: 12px
    }

    .notification-save-btn {
        font-size: 16px;
        width: 50%;
        height: 40px;
        margin-top: 30px;
        margin-bottom: 30px
    }

    .setting-notification .auto__title {
        text-align: center
    }

    .share-icon-right {
        height: 10px
    }

    .grafic__icon-block:last-child {
        margin-left: 0
    }

    .grafic__icon-2 {
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        border: none
    }

    .popup-15 .popup__container {
        min-height: 100vh
    }

    .popup__block {
        padding: 20px 30px
    }

    .popup__title {
        margin-bottom: 30px;
        font-size: 18px;
        line-height: 18px
    }

    .popup__txt {
        text-align: justify;
        font-size: 12px;
        line-height: 12px
    }

    .popup__btn {
        height: 50px;
        font-size: 18px;
        margin-left: auto;
        margin-right: auto
    }

    .popup .icon__close {
        width: 15px;
        height: 15px
    }
}

@media (min-width: 567px) and (max-width: 768px) {
    .clients .accordion-title {
        font-size: 14px
    }

    .clients .accordion-title:not(:first-child) {
        width: auto;
        font-size: 12px
    }

    .clients .accordion-title .title {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .clients .accordion .icon__arrow {
        width: 20px
    }

    .clients .accordion__info .w-74 .dn,
    .clients .accordion .w-74 .dn {
        height: 20px
    }

    .clients .accordion .icon__arrow-right {
        width: 100%;
        height: 100%
    }

    .accordion__info .icon__raiting,
    .accordion .icon__raiting {
        width: 20px;
        height: 20px;
        padding: 0px
    }

    .clients .accordion-header,
    .clients .accordion_main-header {
        font-size: 14px
    }

    .clients .accordion .xx span,
    .clients .accordion .yy span {
        width: 8px;
        height: 8px;
        margin-left: 5px
    }

    .accordion .xx,
    .accordion .yy {
        font-size: 12px
    }

    .clients .accordion-header .minus .accordion-symbol,
    .clients .accordion-header .plus .accordion-symbol,
    .clients .accordion_main-header .minus .accordion-symbol,
    .clients .accordion_main-header .plus .accordion-symbol {
        position: relative;
        display: inline-block;
        left: 5px;
        top: -3px
    }

    .clients-01 .clients__main .text {
        padding-left: 15px
    }

    .clients-01 .clients__main-txt {
        font-size: 12px;
        line-height: 14px
    }

    .clients-01 .clients__main-info {
        font-size: 12px;
        line-height: 14px;
        min-width: 85px;
        max-width: 85px;
        width: 100%
    }

    .clients-01 .clients__main-icon {
        max-width: 35px;
        width: 100%
    }

    .clients-01 .clients__main .quantity {
        min-width: 90px;
        max-width: 90px;
        width: 100%
    }

    .clients-01 .clients__main .date {
        min-width: 85px;
        max-width: 85px;
        width: 100%
    }

    .clients-01 .clients__block-item {
        height: 70px
    }

    .clients-01 .clients__block-item .text {
        padding-left: 15px
    }

    .clients-01 .clients__block-item .quantity {
        min-width: 90px;
        max-width: 90px;
        width: 100%
    }

    .clients-01 .clients__block-item .date {
        min-width: 85px;
        max-width: 85px;
        width: 100%
    }

    .clients-01 .clients__block-info {
        min-width: 85px;
        max-width: 85px;
        width: 100%
    }

    .clients-01 .clients__block-txt {
        font-size: 12px;
        line-height: 14px
    }

    .clients-01 .clients__block-info {
        font-size: 12px;
        line-height: 14px
    }

    .clients-01 .clients__block-icon {
        max-width: 35px;
        width: 100%
    }

    .clients-01 .clients__block .clients-icon {
        width: 20px;
        height: 20px
    }

    .clients-01 .clients__block .icon-arrow {
        width: 10px;
        height: 14px
    }

    .clients-2 .clients__block-item {
        height: 60px
    }

    .clients-2 .clients__block .left__icon .left-icon-1,
    .clients-2 .clients__block .left__icon .left-icon-2,
    .clients-2 .clients__block .left__icon .left-icon-3,
    .clients-2 .clients__block .left__icon .left-icon-4,
    .clients-2 .clients__block .left__icon .left-icon-5,
    .clients-2 .clients__block .left__icon .left-icon-6 {
        width: 25px;
        height: 25px
    }

    .clients-2 .clients__block .clients-title {
        font-size: 16px;
        line-height: 18px
    }

    .clients-2 .clients__block .right__icon {
        min-width: 50px;
        max-width: 50px
    }

    .clients-2 .clients__block .right__icon .right-icon {
        width: 15px;
        height: 10px
    }
}

@media (min-width: 768px) and (max-width: 1020px) {

    .accordion-header h4,
    .accordion_main-header h4 {
        height: 50px
    }

    .clients .w-74 {
        min-width: 50px;
        height: 50px
    }

    /*     .clients .set__icon-1 {
        width: 20px;
        height: 24px
    }

    .clients .set__icon-2 {
        width: 15px;
        height: 24px
    }

    .clients .set__icon-3 {
        width: 12px;
        height: 20px
    }

    .clients .set__icon-4 {
        width: 24px;
        height: 20px
    }

    .clients .set__icon-5 {
        width: 20px;
        height: 20px
    } */

    .accordion-title {
        font-size: 16px
    }

    .accordion-icon {
        min-height: 50px
    }

    .accordion .icon__arrow {
        width: 25px;
        padding: 5px
    }

    .accordion .icon__arrow-right {
        height: 30px
    }

    .accordion__info .accordion-title,
    .accordion__info .accordion-header {
        padding-left: 20px
    }

    .accordion__info .icon__raiting {
        width: 35px;
        height: 35px;
        padding: 5px
    }

    .notification__main .left,
    .notification__main .right {
        width: 100%
    }

    .grafic__icon-2 .grafic-automatization,
    .grafic__icon-2 .grafic-share {
        font-size: 18px;
        line-height: 18px
    }

    .grafic__icon-2 .grafic__icon-block {
        margin-right: 20px
    }

    .clients-01 .clients__main .text {
        padding-left: 20px
    }

    .clients-01 .clients__main-txt {
        font-size: 16px;
        line-height: 18px
    }

    .clients-01 .clients__main-info {
        font-size: 16px;
        line-height: 18px
    }

    .clients-01 .clients__main-icon {
        max-width: 55px;
        width: 100%
    }

    .clients-01 .clients__block-item {
        height: 90px
    }

    .clients-01 .clients__block-item .text {
        padding-left: 25px
    }

    .clients-01 .clients__block-item .quantity {
        min-width: 127px;
        max-width: 127px;
        width: 100%
    }

    .clients-01 .clients__block-item .date {
        min-width: 110px;
        max-width: 110px;
        width: 100%
    }

    .clients-01 .clients__block-txt {
        font-size: 16px;
        line-height: 18px
    }

    .clients-01 .clients__block-info {
        font-size: 16px;
        line-height: 18px
    }

    .clients-01 .clients__block-icon {
        max-width: 55px;
        width: 100%
    }

    .clients-01 .clients__block .clients-icon {
        width: 30px;
        height: 30px
    }
}

@media (min-width: 320px) and (max-width: 576px) {

    .accordion-item .w-74:hover .icon__arrow,
    .accordion-item .w-74:hover .icon__arrow-right {
        background: transparent
    }

    .accordion__info .icon__raiting,
    .accordion .icon__raiting {
        padding: 0px
    }

    .clients__device-setting {
        height: 100px
    }

    .clients .set__icon-1,
    .clients .set__icon-2,
    .clients .set__icon-3,
    .clients .set__icon-4,
    .clients .set__icon-5 {
        width: 15px;
        height: 15px
    }

    .clients__device .db {
        border-top: 0
    }

    .clients__device-set,
    .clients__device-name-block {
        height: 50px;
        position: relative
    }

    .minus .accordion-symbol,
    .plus .accordion-symbol {
        left: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        position: absolute
    }

    .clients .minus .clients-minus,
    .clients .plus .clients-plus {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .accordion-sign {
        font-size: 10px
    }

    .clients .accordion-header .minus .accordion-symbol,
    .clients .accordion-header .plus .accordion-symbol,
    .clients .accordion_main-header .minus .accordion-symbol,
    .clients .accordion_main-header .plus .accordion-symbol {
        top: 30px;
        left: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        position: absolute
    }

    .clients .accordion-header .minus .accordion-symbol,
    .clients .accordion-header .plus .accordion-symbol,
    .clients .accordion-header .minus .accordion-symbol .accordion-sign,
    .clients .accordion-header .plus .accordion-symbol .accordion-sign,
    .clients .accordion_main-header .minus .accordion-symbol,
    .clients .accordion_main-header .plus .accordion-symbol,
    .clients .accordion_main-header .minus .accordion-symbol .accordion-sign,
    .clients .accordion_main-header .plus .accordion-symbol .accordion-sign {
        font-size: 9px
    }

    .clients__device-name-block {
        padding-left: 5px;
        border-bottom: 2px solid #d9eadd
    }

    .clients__device-name-block:last-child {
        border-bottom: 0
    }

    .clients .icon_2-14,
    .icon-2-41 {
        width: 20px;
        height: 24px
    }

    .clients__device-icon {
        margin-right: 5px
    }

    .device__left {
        margin-top: 30px
    }

    .device__left-txt {
        margin-left: 5px;
        font-size: 10px;
        line-height: 12px
    }

    .device__left-block {
        height: 40px
    }

    .device .img-2,
    .device__right-img {
        min-width: 30px;
        max-width: 30px;
        margin-right: 0;
        height: 30px;
    }

    .w-67 .img-2 {
        min-width: 25px;
        max-width: 30px;
    }

    .device__right-img {
        margin-left: 5px;
    }

    .device__left-block {
        padding-left: 5px;
    }

    .device-icon {
        width: 15px;
        height: 15px
    }

    .device .w-74 {
        min-width: 44px
    }

    .device .w-74:last-child {
        min-width: 75px;
        max-width: 75px;
        width: 100%
    }

    .device__active .device__left-span {
        width: 10px;
        height: 10px
    }

    .sub__device {
        height: 60px
    }

    .img-device {
        width: 25px;
        height: 25px;
    }

    .sub__device .device__left-txt {
        margin-left: 10px;
        font-size: 10px;
        line-height: 12px
    }

    .sub__device-icon {
        width: 15px;
        height: 15px
    }

    .temp .device-icon {
        width: 15px;
        height: 15px
    }

    .temp .device__active .device__left-txt::before {
        left: 25%
    }

    .w-128 {
        width: 70px
    }

    .device-input .checkbox-2 input+span {
        width: 30px;
        height: 18px
    }

    .device-input .checkbox-2 input+span::before {
        width: 15px;
        height: 15px
    }

    .device-input .checkbox-2 input:checked+span:before {
        left: 13px
    }

    .device__right-block .w-157 {
        width: 60%;
        padding-left: 5px
    }

    .device__right .w-157 {
        width: 60%;
        padding-left: 5px
    }

    .device__right .w-51,
    .device__right .w-67,
    .device__right .w-84,
    .device__right .w-78,
    .device__right .w-157 {
        font-size: 10px;
        line-height: 10px;
        min-width: 40px
    }

    .right-icon-link,
    .temp .device__active .device-link .device-icon {
        width: 10px;
        height: 10px
    }

    .device__right .w-51 {
        min-width: 30px
    }

    .device__right .w-157 {
        min-width: 50px
    }

    .device__right .w-84 {
        min-width: 45px
    }

    .device__right-block {
        height: 51px
    }

    .device__right .right-icon {
        width: 25px;
        height: 25px;
        padding: 5px
    }

    .device__right-block h4,
    .device__right-block p {
        font-size: 10px;
        line-height: 12px
    }

    .device__right-block .after .after-span {
        font-size: 8px;
        right: -10px
    }

    .device__right-block .before .before-span {
        font-size: 8px;
        right: -10px
    }

    .popup .db {
        display: block
    }
}

@media (min-width: 576px) and (max-width: 720px) {

    .device__setting .set__icon-1,
    .device__setting .set__icon-2,
    .device__setting .set__icon-3 {
        width: 25px;
        height: 20px
    }

    .device-set {
        font-size: 19px
    }

    .device__active {
        width: 276px
    }

    .temp .device__active .device__left-txt::before {
        left: 22%
    }
}

@media (min-width: 567px) and (max-width: 720px) {
    .logs__main-item .item {
        height: 90px;
        font-size: 16px;
        line-height: 16px;
        padding: 10px
    }
}

@media (min-width: 576px) and (max-width: 1020px) {
    .automatization__block-item {
        height: 62px;
        font-size: 18px
    }

    .automatization__block-item .item-block .item-txt {
        margin-left: 0
    }

    .automatization__block-item .item-block-button .item-icon {
        width: 15px;
        height: 15px
    }

    .automatization__schedules-title {
        font-size: 18px
    }

    .automatization__schedules-icon .icon-block {
        width: 50px;
        height: 60px
    }

    .automatization__schedules-block .item-block-info {
        width: 50px
    }

    .degre-btn {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .schedules .item-block {
        margin-left: 0
    }

    .schedules .time-block {
        height: 60px
    }

    .schedules .time-block .hours {
        width: 60px;
        height: 40px;
        font-size: 14px
    }

    .degre .block {
        height: 35px;
        width: 50px;
        height: 30px
    }

    .degre-block::before {
        font-size: 18px;
        right: -26px
    }

    .degre-btn .delete-icon {
        width: 15px;
        height: 15px
    }

    .degre-btn .delete {
        height: 50px
    }

    .degre-btn .delete-save {
        height: 50px;
        font-size: 16px
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .notification .automatization__block-item .degre-block {
        width: 100px;
        margin-right: 50px
    }
}

@media (min-width: 320px) and (max-width: 567px) {
    .admin-container {
        height: 60px
    }

    .mob-burger {
        width: 20px;
        height: 14px
    }

    .icon_1-2,
    .icon_1-15,
    .icon_check,
    .icon_1-6,
    .search,
    .w-47 {
        width: 20px;
        height: 20px
    }

    .exit-icon {
        width: 20px;
        height: 20px
    }

    .admin__title {
        font-size: 16px
    }

    .admin__block-list {
        font-size: 13px;
        top: -32px;
        height: 20px;
        line-height: 16px;
        padding-right: 0
    }

    .admin__block-card {
        margin-bottom: 50px
    }

    .admin-icon-mob {
        width: 20px;
        height: 14px
    }

    .clients-01 .clients__main .text {
        padding-left: 5px;
        padding-right: 0
    }

    .clients-01 .clients__main-txt {
        font-size: 8px;
        line-height: 12px
    }

    .clients-01 .clients__main .quantity,
    .clients-01 .clients__main .date {
        min-width: 50px;
        max-width: 50px;
        width: 100%
    }

    .clients-01 .clients__main-info {
        font-size: 8px;
        line-height: 12px;
        padding-left: 5px;
        padding-right: 5px;
        min-width: 50px;
        max-width: 50px;
        width: 100%
    }

    .clients-01 .clients__main-icon {
        min-width: auto;
        max-width: 35px;
        width: 100%
    }

    .clients-01 .clients__block-item {
        height: 50px
    }

    .clients-01 .clients__block-item .text {
        padding-left: 5px;
        padding-right: 0
    }

    .clients-01 .clients__block-txt {
        font-size: 8px;
        line-height: 12px
    }

    .clients-01 .clients__block-info {
        font-size: 8px;
        line-height: 12px;
        padding-left: 5px;
        padding-right: 5px;
        min-width: 50px;
        max-width: 50px;
        width: 100%
    }

    .clients-01 .clients__block .quantity,
    .clients-01 .clients__block .date {
        min-width: 50px;
        max-width: 50px;
        width: 100%
    }

    .clients-01 .clients__block-icon {
        min-width: auto;
        max-width: 35px;
        width: 100%
    }

    .clients-01 .clients__block .clients-icon {
        width: 15px;
        height: 15px
    }

    .clients-01 .clients__block .icon-arrow {
        width: 8px;
        height: 10px
    }

    .clients-2 .clients__block-item {
        height: 50px
    }

    .clients-2 .clients__block .left__icon .left-icon-1,
    .clients-2 .clients__block .left__icon .left-icon-2,
    .clients-2 .clients__block .left__icon .left-icon-3,
    .clients-2 .clients__block .left__icon .left-icon-4,
    .clients-2 .clients__block .left__icon .left-icon-5,
    .clients-2 .clients__block .left__icon .left-icon-6 {
        width: 20px;
        height: 20px
    }

    .clients-2 .clients__block .clients-title {
        font-size: 12px;
        line-height: 14px
    }

    .clients-2 .clients__block .right__icon {
        min-width: 50px;
        max-width: 50px
    }

    .clients-2 .clients__block .right__icon .right-icon {
        width: 10px;
        height: 10px
    }

    .container__uvedomlenia .auto__block .td-two {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (min-width: 320px) and (max-width: 568px) {
    .header {
        height: 100px
    }

    .header .header__logo {
        display: block;
        width: 200px;
        margin-left: auto;
        margin-right: auto
    }

    .login__input input {
        height: 40px
    }

    .login__input-icon {
        min-width: 35px;
        height: 20px
    }

    .login__input-icon .login-icon {
        width: 15px;
        height: 15px
    }

    .accordion-icon {
        margin-right: 6px
    }

    .clients .accordion .xx span,
    .clients .accordion .yy span {
        width: 5px;
        height: 5px
    }

    .grid {
        width: 100%;
    }

    .grid-2 {
        max-width: 100%;
    }

    .popup__container-grid {
        padding-right: 5px;
    }

    .popup__container-grid .p-24 {
        padding-left: 10px;
    }

    .popup__container-grid .grid .td:last-child {
        padding-left: 0;
    }

    .popup__container-grid .popup__block {
        padding-left: 10px;
        padding-right: 20px;
    }
}