body {
    background-color: #E5E5E5;
    color: black;
    font-family: 'Roboto Condensed';
    margin: 0px;
    height: 100vh;
}

.warning {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    justify-content: center;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    background-color: yellow;
}

.warning--active {
    display: grid;
}

.warning__text {
    margin-right: 30px;
}

.warning__read {
    display: block;
    margin-left: 15px;
}

.detailInfoItem {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 15px;
    border-width: 0.22px;
    border-bottom-width: 0.2px;
    border-bottom-color: grey;
    border-bottom-style: solid;
}

.DateTimePeriodPanel {
    display: grid;
    grid-template-columns: 45% 45%;
    grid-gap: 1rem;
    margin-bottom: 25px;
}

.docsTab {
    font-size: smaller;
    margin-top: 15px;
    margin: 0 auto;
}

.docsTab_Header {

}

.notTab {
    width: 100%;
}

    .notTab .tdNotifDT {
        display: table-cell;
        font-size: 1em;
    }

    .notTab .tdNotifAuth {
        display: table-cell;
        font-size: 1em;
    }

    .notTab .tdNotifMSG {
        display: table-cell;
        font-size: 1em;
    }

.resourcesTab {
    width: 95%;
}

    .resourcesTab .typeStor {
        display: table-cell;
        font-size: 1em;
    }

    .resourcesTab .codeStor {
        display: table-cell;
        font-size: 1em;
    }

    .resourcesTab .weightStor {
        display: table-cell;
        font-size: 1em;
    }

    .resourcesTab .statStor {
        display: table-cell;
        font-size: 1em;
    }

button a {
    color: black;
}

button i {
    color: #17a2b8 !important;
}

.labelDept {
    color: #dc3545;
    font-size: xx-large;
    margin-right: 20px;
    margin-top: 12px;
}

.btnDept {
    font-size: x-large;
    color: red;
}

.filterPanel {
    display: flex;
    font-size: smaller;
    margin-top: 10px;
    color: grey;
    align-items: center;
    width: 80%;
}

.inputFilterField {
    background-color: white;
    width: 80%;
    margin-top: 5px;
    font-size: 12px !important;
    color: gray !important;
}

.iconSortTable {
    font-size: small !important;
    color: gray !important;
    margin-left: 5px !important;
    cursor: pointer;
}

.iconFilterTable {
    font-size: x-small !important;
    color: gray !important;
    margin-left: 5px !important;
    cursor: pointer;
}

.popupWindow {
    display: none;
    z-index: 100;
    position: fixed;
    /*top: 50px;
    left: 80px;*/
    top: 8%;
    left: 5%;
    background-color: white;
    height: calc(90%);
    width: 90%;
    border: double;
}

    .popupWindow .btnLoadDoc {
        font-size: 18px;
        margin-bottom: 0px;
        background-color: inherit;
        border: none;
    }

    .popupWindow button {
        background-color: #d9d7d7;
        margin-bottom: 20px;
        margin-top: 0px;
    }
.popupWindow_CloseBTN {
    position: fixed;
    /*top: 60px;
    left: 94%;*/
    top: 10%;
    left: 93%;
    cursor: pointer;
}



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



.popupWindow_Body {
        justify-self: anchor-center;
        width: 95%;
        overflow-y: scroll;
        height: 89%;
        display: flex;
}

    .popupWindow_Body .treeView {
        width: 30%;
    }

.popupWindowStorage_Body {
    justify-self: anchor-center;
    width: 80%;
    overflow-y: scroll;
    height: 89%;
    margin-bottom: 10px;
}

.docTable {
    width: 70%;
    justify-self: anchor-center;
    overflow-y: scroll;
    display: block;
}

td button {
    margin-top: 0px;
    cursor: pointer;
    font-family: 'Roboto Condensed';
    font-size: 14px;
    border: 1px;
    border-style: outset;
    background-color: #d9d7d7;
    min-width: 125px;
    height: 46px;
    /*padding: 10px;*/
    border-radius: 15px;
}

.MainTopButtons {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: 30% 60%;
    margin-bottom: 35px;
}

.mainBottomButtons button {
    height: 65px;
}

.RezervationButtons {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 35px;
    margin-right: 50px;
}

.block__header {
    font-size: x-large;
}

.baseTable {
    justify-self: anchor-center;
    width: 90%;
    overflow-y: scroll;
    height: 83%;
}

.panelReportDetail_Body {

}

/* tree view for reports panel*/
.treeReport {
    --spacing: 1.5rem;
    --radius: 10px;
    font-family: 'Roboto Condensed';
    /* font-size: 1rem; */
    /* font-weight: 400; */
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
    margin-top: 5px;
}

    .treeReport li {
        display: block;
        position: relative;
        padding-left: calc(2 * var(--spacing) - var(--radius) - 2px);
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .treeReport ul {
        margin-left: calc(var(--radius) - var(--spacing));
        padding-left: 0;
    }

        .treeReport ul li {
            border-left: 2px solid #ddd;
        }

            .treeReport ul li:last-child {
                border-color: transparent;
            }

            .treeReport ul li::before {
                content: '';
                display: block;
                position: absolute;
                top: calc(var(--spacing) / -2);
                left: -2px;
                width: calc(var(--spacing) + 2px);
                height: calc(var(--spacing) + 1px);
                border: solid #ddd;
                border-width: 0 0 2px 2px;
            }

    .treeReport summary {
        display: block;
        cursor: pointer;
    }

        .treeReport summary::marker,
        .treeReport summary::-webkit-details-marker {
            display: none;
        }

        .treeReport summary:focus {
            outline: none;
        }

        .treeReport summary:focus-visible {
            outline: 1px dotted #000;
        }

        .treeReport li::after,
        .treeReport summary::before {
            content: '';
            display: block;
            position: absolute;
            top: calc(var(--spacing) / 2 - var(--radius));
            left: calc(var(--spacing) - var(--radius) - 1px);
            width: calc(2 * var(--radius));
            height: calc(2 * var(--radius));
            border-radius: 50%;
            background: #ddd;
        }

        .treeReport summary::before {
            z-index: 1;
            background: #696 url('expand-collapse.svg') 0 0;
        }

    .treeReport details[open] > summary::before {
        background-position: calc(-2 * var(--radius)) 0;
    }

    /* tree view for reports panel */


.card {
    background-color: inherit;
    border: 0px
}
.btn-block {
    width: auto;
}
header {
    
    /*box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    flex-flow: row-reverse;
    position: fixed;
    z-index: 10;
    top: 0;
    overflow-x: hidden;
    background-color: whitesmoke;
    width: 100%;
    padding-right: 1%;*/
}
.logo {
    font-size: 10px;
}
.logoRotate {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    margin-top: 380%;
}
/*nav {
    font-size: 15px;
}
nav a{
    margin: 0 15px;
    padding-bottom: 5px;
}
nav a:hover{
    font-size: 30px;
}
nav a.active {
    border-bottom: 1px solid #dec489;
}
.acss {
    font-size: 12px;
}*/
.bodyContent {
    overflow: auto;
    max-height: 100vh;
    width: 100%;
}
footer {
    font-size: 15px;
    height: 50px;
    display:block;
    align-items:center;
    text-align: center;
    margin-top: 20px;
}
.content {
    max-width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    /*display: flex;*/
    padding-left: 0px;
    height: 100vh;
    margin-top: 30px;
}

.contentPage {
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    text-align: center;
}

.contentAdvertise {
    
    padding: 0 10px;
    margin: 0 auto;
    background-color: azure;
    color: black;
}

.Header {
    min-height: 100px;  
    margin-top: 60px;
}

.Left {
    width: 230px;
    position: absolute;
    left: auto;
}

.Right {
    width: 130px;
    position: absolute;
    right: auto;
}

.DivTitle {
    cursor: pointer;
    font-size: xx-large;
}
.CommonInfo {
    /*display: none;*/
}
.CowReproduction {
    /*display: none;*/
}
.GrowthYoung {
    /*display: none;*/
}
.RegenerationNetels {
    display: none;
}
.RepairStado {
    display: none;
}
.Healty {
    display: none;
}
.StructStado {
    display: none;
}

.body_content {
    min-height: calc(100vh - 110px);
    box-sizing: border-box;
}
button {
    font-family: 'Roboto Condensed';
    font-size: 17px;
    border: 0px;
    background-color: #FFFFFF;
    min-width: 114px;
    height: 53px;
    padding: 10px;
    border-radius: 7px;
}
h1 {
    margin: 0px;
    font-size: 30px;
    margin-bottom: 40px;
    margin-top: 10px;
}
h2 {
    font-size: 24px;
    margin: 0px;
}
.body_content {
    padding-top:60px;
}
section {
    background-color: whitesmoke;
    box-sizing: border-box;
    padding: 45px 40px;
}
p {
    /*margin-bottom: 40px;*/
}

section {
    background-color: inherit;
    box-sizing: border-box;
    padding: 20px 40px;
    font-size: 17px;
    font-family: SFProDisplay;
    font-size: 17px;
    line-height: 1.5;
}

ol {
    justify-content: flex-start;
    display: flex;
    padding: 0px;
    margin: 10px 0px;
}
    ol li {
        list-style: none;
          margin: 6px 10px;
          padding-bottom: 4px;
          padding-top: 4px;
      }

   ol li:first-child {
        margin-left: 0px;
    }

    ol li:last-child {
        margin-right: 0px;
    }
        ol li.complite a {
            color: #dec489;
        }
            ol li.complite img, ol li.complite a span{
                vertical-align: middle
            }
            ol li.complite img {
                margin-right: 5px;   
            }
        ol li.complite_active a {
            color: #dec489;
            border-bottom: 2px solid #dec489;
        }
            ol li.complite_active img, ol li.complite_active a span{
                vertical-align: middle
            }
            ol li.complite_active img {
                margin-right: 5px;   
            }
    ol li.active {
        border-bottom: 2px solid #dec489;
    }
ul {
    padding: 0px;
}
    ul li {
        list-style: none;
    }
    ul li:before {
        content: "";
        margin-right: 10px;
        width: 15px;
        height: 1px;
        /*background-color: white;*/
        display: inline-block;
        vertical-align: middle;
    }
button {
    margin-top: 20px;
    cursor: pointer;
}

.creditCard {
    border: 1px dashed #ccc;
    border-radius: 15px;
    width: 303px;
    height: 150px;
    justify-content: center;
    align-items: center;
    display: grid;
    align-content: center;
    padding: 20px;
    text-align: center;
    margin: 20px;
}

.labelCardAction {
    display: flex;
    contain: size;
    margin: auto;
    cursor: pointer;
}

div.content span {
    display: block;
}

div.content span enable{
    color: floralwhite;
}

div.content span disable{
    color: gainsboro;
}

div.content span complite{
    color: greenyellow;
}

div.NeedAction {
    display: block;
}

a.button_disable{
    background-color: dimgray;
    margin-top: 20px;
    font-family: SFProDisplay;
    font-size: 17px;
    border: 0px;
    min-width: 160px;
    padding: 10px;
    border-radius: 5px;
}

a.button {
    margin-top: 20px;
    font-family: SFProDisplay;
    font-size: 17px;
    border: 0px;
    background-color: #dec489;
    min-width: 160px;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

button.button_disable{
    background-color: dimgray;
    margin-top: 20px;
    font-family: SFProDisplay;
    font-size: 17px;
    border: 0px;
    min-width: 160px;
    padding: 10px;
    border-radius: 5px;
    pointer-events: none;
}

button.button {
    margin-top: 20px;
    font-family: SFProDisplay;
    font-size: 17px;
    border: 0px;
    background-color: #dec489;
    min-width: 160px;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

label.button {
    margin-top: 20px;
    font-family: SFProDisplay;
    font-size: 17px;
    border: 0px;
    background-color: #dec489;
    min-width: 160px;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

a.button_PopupMenu {
    margin-top: 20px;
    font-family: SFProDisplay;
    font-size: 17px;
    border: 0px;
    background-color: #dec489;
    min-width: 160px;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

a.button_error {
    background-color: red;
    padding: 5px;
}

h4 {
    padding: 30px;
}

.ActiveTab {
    background-color: white;
    border-radius: 5px;
    margin: 15px;
    padding: 5px;
    cursor: pointer;
}

.tabButton {
    background-color: darkgray;
    border-radius: 5px;
    margin: 15px;
    padding: 5px;
    cursor: pointer;
}

.tabButton1 {
    background-color: lightblue;
    border-radius: 5px;
    margin: 15px;
    padding: 5px;
    cursor: pointer;
}

.b-container{
    width:200px;
    height:150px;
    background-color: #ccc;
    margin:0px auto;
    padding:10px;
    font-size:30px;
    color: #fff;
}
.b-popup{
    max-width: inherit;
    padding: 50px;
    width:100%;
    min-height:100%;
    background-color: rgba(0,0,0,0.5);
    overflow:hidden;
    position:fixed;
    top:0px;
}
.b-popup .b-popup-content{
    margin:40px auto 0px auto;
    padding:10px;
    background-color: white;
    border-radius:5px;
    box-shadow: 0px 0px 10px #000;
}

div.PopupMenu label.UserMsg {
    text-align: right;
    width: 100%;
    padding-right: 15px;
    margin-bottom: 1px;
}

div.PopupMenu label.UserMsgTime {
    text-align: right;
    width: 100%;
    padding-right: 15px;
    color: darkgray;
    text-decoration-line: overline;
    font: small-caption;
    margin-top: 0px;
}

div.PopupMenu label.AnswerMsg {
    text-align: left;
    width: 100%;
    padding-left: 15px;
    margin-bottom: 1px;
}

div.PopupMenu label.AnswerMsgTime {
    text-align: left;
    width: 100%;
    padding-left: 15px;
    color: darkgray;
    text-decoration-line: overline;
    font: small-caption;
    margin-top: 0px;
}

div.PopupMenu div div{
    margin: 6px;
}

div.creditCard img {
    height: 100px;
}

.imgSearchUser {
    height:100px;
    margin: 10px;
}

.menu {
    display: block;
    background: #325f8f;
    position: relative;
    /* Дополнительные стили оформления меню */
    text-transform: uppercase;
    border-top-left-radius: 2px;
    -moz-border-top-left-radius: 2px;
    -webkit-border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -moz-border-top-right-radius: 2px;
    -webkit-border-top-right-radius: 2px;
}
.menu a {
    display: inline-block;
    padding: 1.5em;
    color: #fff;
    text-shadow: 0px 1px 3px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: 0.33s;
    text-transform: uppercase;
}
.menu a:hover {
    text-shadow: 0px 1px 3px rgba(0,0,0,0.2);
    color: #fff;
    background: rgba(0,0,0,0.2);
    transition: 0.33s;
}
.dropdownmenu {
    display: inline-block;
    color: #fff;
    text-shadow: 0px 1px 3px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: 0.33s;
    text-transform: uppercase;
}
.dropdownmenu:hover {
    text-shadow: 0px 1px 3px rgba(0,0,0,0.2);
    color: #fff;
    background: rgba(0,0,0,0.2);
}
.dropdownmenu:hover > div {
    display: block;
    margin-top: 0;
    transition: 0.33s;
}
.dropdownmenu > div {
    display: none;
    position: absolute;
    background: #384049;
    width: 250px;
    margin-top: -4.2em;
    z-index: 999999;
    transition: 0.33s;
    margin-top: -250px;
}
.dropdownmenu div > a {
    display: block;
    transition: 0.33s;
    font-size: 14px;
}
.dropdownmenu div > a:hover {
    background: #323a42;
}
.dropsubmenu:hover > div.dropsubmenulist {
    display: block;
}
.dropsubmenulist {
    display: none;
    position: absolute;
    margin-left: 250px;
    background: #384049;
    width: 250px;
    border-left: #576472 5px solid;
}

div.statusFinish {
    content: '\2714';
}

span.statusNotBegin {
    content: '\2718';
}

div.statusOnProgress {
    content: '\27A5';
}

.UserComment {
    color: red;
    font-size: large;
    text-transform: uppercase;
}


.tdName {
    display: none;
}
.tdExt {
    display: none;
}

.tdCowID {
    display: none;
}
.tdCowUniqueID {
    display: table-cell;
}
.tdCowBirthDay {
    display: table-cell;
}
.tdCowGrowth {
    display: none;
}
.tdCowWieght {
    display: table-cell;
}

#playerDiv {
    height: 22%;
    width: 100%;
}
#imgDiv_WallPaper {
    height: 88%;
    width: 100%;
    overflow: hidden;
}
.PlayerButton {
    width: 2%;
}
#divPlayerControl {
    width: 100%;
    display: grid;
    grid-gap: 1%;
    grid-template-columns: minmax(16px, max-content) minmax(16px, max-content) auto minmax(16px, max-content);
}
#divPlayerControl progress{
    width: 100%;
}

.tabEconomic {
    display: grid;
    grid-template-columns: 40% 58%;
    grid-gap: 2%;
        margin-top: 10px;
}

.calc {
    border-bottom: 0px;
}

table {
    border-collapse: collapse;
}

tr {
  border-bottom: 1pt solid black;
}

/*div h2, h4 {
    text-align: left;
}*/

.HeadOfGraphs {
    
}

.PeriodFilter {
    display: flex;
    width: 50%;
    margin: 0 auto;
}

.PeriodFilter button {
    margin: 0px;
}

.CommonGraphs {
    
}

.ForAllGroups {
    
}

.ForGroupSeparate {
    
}

.graphs {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-gap: 2%;
}

.graphsSeparate {
    display: grid;
    grid-template-columns: 99%;
    grid-gap: 1%;
}

h4 {
    cursor: pointer;
}

/* для демки */
.counterDemo {
    text-align: center;
    font-size: 60px;
    margin-top: 0px;
    padding: 10%;
    padding-top: 5%;
}

.h2 {
    text-align: center;padding-top: 5%;color: white;font-size: 60px;
}

.globalDiv {
    display: grid; grid-template-columns: 15% 70% 15%;
}

.logoDiv {
    margin-top: -20%;
}

.textLogoDiv {
    text-align: end; color: white; font-size: x-large;margin-top: -20%;
}

.logoImg {
    width: 80%;
}

.enterSectionSubs {
    display: grid; grid-template-columns: 10% 60% 20% 10%;
}

.divDig {
    font-size: 80px;
}

.divDescr {
    font-size: 30px;
}
.btnSubs {
    width: 100%;
    height: 100%;
    background-color: #998e78;
    border-radius: 10px;
    margin-top: 0px;
    font-size: larger;
    min-width: 129px;
}

.screenTop {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-gap: 1%;
    font-family: "Roboto Condensed";
    height: fit-content;
}

.TopData {
    text-align: left;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 8px 10px;
    margin-bottom: 5%;
    height: 135px;
}

.TopData label, .panelItem label {
    margin: 0px;
    font-weight: 400;
    font-size: 12px;
    text-align: left;
}

.TopData div {
    margin: 0px;
    font-weight: 700;
    font-size: 28px;
    height: 33px;
    display: grid;
    grid-template-columns: 30% 70%;
}

.TopData div label {
    margin: auto 0;
}

.TopData input {
    border-bottom: none;
    font-size: 24px;
    font-weight: 700;
    text-align: end;
}

.TopData input + .TopData input {
    border-left: 1px solid #AAAAAA;
}

.screenPart {
    /*display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    flex-flow: row wrap;
    margin-top: 0%; */
    font-family: "Roboto Condensed";
}

.Panel {
    flex: 50% 2;
    padding: 1%;
}

.Panel + .Panel {
    /*border-left: 1px solid #AAAAAA;*/
}

.panelData {
    display: flex;
    flex: 1 1 auto;
    flex-flow: row wrap;
    justify-content: space-between;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    padding-top: 5px;
    margin-top: 12px;
}

.panelTitle {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    padding: 0px 10px;
    margin-top: 37px;
}

form .panelItem {
    width: auto;
    min-width: 300px;
}

.panelItem {
    width: 210px;
    align-self: flex-end;
    margin-top: 11px;
    font-family: "Roboto Condensed";
}

.panelItem label {
    padding: 0px 10px;
    margin-bottom: 4px;
}

.itemValues {
    background-color: #CCECFF;
    border-radius: 10px;
    display: flex;
    padding: 7px 10px;
}

.onFocus {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}

*:focus {
    outline: none;
    
}

form .Fact {
    padding-right: 10px;
}

form .Fact, form .Plan {
    display: grid;
}

.Fact label, .Plan label {
    padding: 0px;
    font-size: 10px;
}

.Fact input, .Plan input {
    border-bottom: none;
    font-size: 18px;
    font-weight: 400;
}

form .Fact input, form .Plan input {
    border: none;
    font-size: 18px;
    font-weight: 400;
    background: none;
    border-bottom: 1px solid #AAAAAA;
}

.calc {
    background-color: #ededed/*#F4F4F4*/;
}



.Fact + .Plan {
    border-left: 1px solid #AAAAAA;
    padding-left: 10px;
}

.cowEatTab {
    margin-top: 1%;
}

hr {
    border: none; /* Убираем границу */
    background-color: #BEBEBE; /* Цвет линии */
    color: #BEBEBE; /* Цвет линии для IE6-7 */
    height: 1px; /* Толщина линии */
   }

/* MENU */
*{padding:0;margin:0;}
body{font:16px/1 sans-serif}


/*VERTICAL MENU*/
nav.vertical{
  position:relative;
  /*width:200px;*/
    height: 100%;
    background: #FFFFFF;
    color: #1D1D1D;
}

/* ALL UL */
nav.vertical ul{
  list-style: none;
    background: #FFFFFF;
    height: 100%;
    z-index: 999999;
}
/* ALL LI */
nav.vertical li{
  position:relative;
    background: #FFFFFF;
}
/* ALL A */
nav.vertical a{
  display:block;
  color:#1D1D1D;
  text-decoration:none;
  /*padding:10px 15px;*/
  background:#FFFFFF;
  transition:0.3s;
}
/* ALL A HOVER 
nav.vertical li:hover > a{
  background:#778;
}*/

/* INNER UL HIDE */
nav.vertical ul ul{
  position:absolute;
  left:0%;
  top:0;
  width:314px;
  visibility:hidden;
  opacity:0;
  transition: transform 0.3s;
  transform: translateX(314px);
    height: 100vh;
}
/* INNER UL SHOW */
nav.vertical li:hover > ul{
  left:100%;
  visibility:visible;
  opacity:1;
    transition: transform 0.2s;
  transform: translateX(0px);
}

.canvasjs-chart-credit {
    display: none;
}


@media screen and (min-width: 360px) and (max-width: 960px) {

    .MainTopButtons {
        display: grid;
        grid-gap: 2rem;
        grid-template-columns: 42% 52%;
        margin-bottom: 35px;
    }

    .RezervationButtons {
        display: block;
        margin-bottom: 15px;
        margin-right: 30px;
    }

    button {
        font-family: 'Roboto Condensed';
        font-size: 15px;
        border: 0px;
        background-color: #FFFFFF;
        min-width: 135px;
        height: 53px;
        padding: 10px;
        border-radius: 7px;
    }

    .mainBottomButtons button {
        font-family: 'Roboto Condensed';
        font-size: 15px;
        border: 0px;
        background-color: #FFFFFF;
        min-width: 80px;
        height: 53px;
        padding: 10px;
        border-radius: 7px;
    }

    .popupWindowStorage_Body {
        justify-self: anchor-center;
        width: 80%;
        overflow-y: scroll;
        height: 77%;
        margin-bottom: 10px;
        font-size: small;
    }

    .popupWindow_Body {
        justify-self: anchor-center;
        width: 95%;
        overflow-y: scroll;
        height: 85%;
        display: block;
    }

        .popupWindow_Body .treeView{
            width: 100%;
        }

    .docTable {
        width: 100%;
        
    }

.popupWindow_CloseBTN {
    left: 90%;
}

    h1 {
        padding-right: 20px;
        font-size: 25px;
    }

    .resourcesTab .typeStor {
        display: none;
    }

    .resourcesTab .codeStor {
        font-size: smaller;
    }

    .resourcesTab .weightStor {
        font-size: smaller;
    }

    .resourcesTab .statStor {
        font-size: smaller;
    }

    .notTab .tdNotifDT {
        font-size: smaller;
    }

    .notTab .tdNotifAuth {
        display: none;
    }

    .notTab .tdNotifMSG {
        font-size: smaller;
    }

    .counterDemo {
        text-align: center;
        font-size: 60px;
        margin-top: 0px;
        padding: 10%;
        padding-top: 5%;
    }

    .h2 {
        text-align: center;
        padding-top: 15%;
        color: white;
        font-size: 40px;
    }

    .globalDiv {
        display: block;
        margin-top: -30%;
    }

    .logoDiv {
        margin-top: -20%;
    }

    .textLogoDiv {
        display: none;
        text-align: end;
        color: white;
        font-size: x-large;
        margin-top: -20%;
    }

    .logoImg {
        width: 80%;
    }

    .enterSectionSubs {
        display: grid;
        grid-template-columns: 0% 60% 40% 0%;
    }

    .divDig {
        font-size: 40px;
    }

    .divDescr {
        font-size: 15px;
    }

    .btnSubs {
        width: 100%;
        height: 100%;
        background-color: #998e78;
        border-radius: 10px;
        margin-top: 0px;
        font-size: medium;
    }

    .tabEconomic {
        display: block;
    }

    .screenTop {
        overflow-x: auto;
        overflow-y: hidden;
        grid-template-columns: 49% 49% 49% 49% 49%;
    }

    .panelItem {
        width: 303px;
    }
}

@media screen and (min-width: 960px) {
    .tdName {
        display: table-cell;
    }
    .tdExt {
        display: table-cell;
    }
    .tdCowID {
        display: table-cell;
    }
    .tdCowGrowth {
        display: table-cell;
    }
    .tabEconomic {
        display: grid;
        grid-template-columns: 40% 58%;
        grid-gap: 2%;
    }
    
    .screenTop {
        overflow-x: hidden;
        overflow-y: hidden;
        grid-template-columns: 49% 49%;
    }
    
    .panelItem {
        width: 210px;
        
    }
    /* для демки */
    .counterDemo {
        text-align: center;
        font-size: 60px;
        margin-top: 0px;
        padding: 10%;
        padding-top: 5%;
    }

    .h2 {
        text-align: center;padding-top: 5%;color: white;font-size: 60px;
    }

    .globalDiv {
        display: grid; grid-template-columns: 15% 70% 15%;
        margin-top: 0px;
    }

    .logoDiv {
        margin-top: -20%;
    }

    .textLogoDiv {
        text-align: end; color: white; font-size: x-large;margin-top: -20%;
        display: block;
    }

    .logoImg {
        width: 80%;
    }

    .enterSectionSubs {
        display: grid; grid-template-columns: 10% 60% 20% 10%;
    }
    .divDig {
        font-size: 80px;
    }

    .divDescr {
        font-size: 30px;
    }
    .btnSubs {
        width: 100%;
        height: 100%;
        background-color: #998e78;
        border-radius: 10px;
        margin-top: 0px;
        font-size: larger;
    }
}