*, *:before, *:after { -moz-box-sizing: border-box; box-sizing: border-box; }
html { font-size: 20px; } 
body { 
  font-family: Arial, Helvetica, sans-serif; 
  margin: 0px; padding: 0;
  overflow: auto; /* hidden; */
}
a { user-select: none; }

.allbody {
  background-color: white;
  position: relative ;
  height: 100vh;
  display: flex; flex-direction: column;
  /* justify-content: space-between; /* */
  scroll-snap-type: y mandatory; /* автоматическое выранивание границ дочерних блоков */
  /* mandatory/proximity определяет поведение когда пользователь прекращает прокрутку */
  scroll-padding: 3rem; /* */
  /* overflow: auto; /* */
}

.mayheader{ 
  display: inline-block;
  position: relative; 
  /* position: absolute; left:0; right:0; top:0; bottom: 0; */
  scroll-snap-align: start; /* автоматическое выранивание границы блока в родительском контейнере (.allbody) */
  /* 2height: 100%; /* */
  min-height: 24vh; /* */
  /* background-position: center center; background-attachment: scroll; 
  background-image: url('../images/zhku.png');background-size:cover;background-repeat:no-repeat; /* */
  background-color: #008000;
}
#headertitle {
  display: block;
  position: absolute; top:20%; left:15%;
  max-width: 60vw;
  z-index: 10;
  /* font: bold 2.4rem serif; /* */
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
}
.mayheader span {
  color: white; /* */
  user-select: none;
}

img.logo { height: 2rem; }
img.logoX { height: 2.9rem; }
img.phone { width:1.4rem; height:1.4rem; }

@keyframes fadeInFromNone {
  0% { display: none; opacity: 0; }
  1% { display: block; opacity: 0; }
  100% { display: block; opacity: 1; }
}
@keyframes fadeOutFromBlock {
  0% { display: inherit; opacity: 1; }
  99% { display: inherit; opacity: 0; }
  100% { display: none; opacity: 0; }
}

/* MENU ================================================================================= */
/* nav { display: block; width: 100%; } */
.mainmenu {
  display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-around; align-items: center; /* flex-flow: row nowrap; */
  position: sticky; top:0; /* */
  font: bold 1.1rem sans-serif;
  color: #209040; background-color: #ffffff;
  width: 100%; /* height: 3rem; /* */
  border-bottom: 1px solid #d0d0d0;
  text-align: center;
  z-index: 1000;
  /* box-shadow: 0px 4px 6px 0px #808080 ; /* <сдвиг по x> <сдвиг по y> <радиус размытия> <растяжение> <цвет> */
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.2) !important;  
}
.mainmenuItems { white-space: nowrap; }
.mainmenu ul {
  position: relative; 
  padding:0; margin:0;
  list-style: none;
}
/* применяем inline-block позиционирование к элементам навигации */
.mainmenu ul li {
  /* display:inline-block; /* */
  height: 3rem; /* */
  margin: 0; /* -1px */
  background-color: #FFFFFF;
  text-align: left;
  /* overflow: hidden; /*все блоки вне видимой области будут скрыты*/
  /* padding: 0.9rem 0.5rem 0.9rem 0.5rem; /* */
}
.mainmenu a {
  display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center; /* flex-flow: row nowrap; */
  /* display: inline-block; /* */
  user-select: none; text-decoration: none;
  white-space: nowrap;
  height: 3rem; /* */
  min-width: 4rem;
  padding: 0 0.5rem;
  /* padding: 0.9rem 0.5rem; /* */
  /* vertical-align: middle; /* */
  color: #209040;
}
.mainmenu a:hover, .mainmenu a:focus, .mainmenu a:active { color: red; }
.mainmenu ul ul {
  /* display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: space-around; align-items: center; /* flex-flow: row nowrap; */  
  display: none; opacity: 0;
  position: absolute;
  top: 100%; left:0;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2) !important; 
  /* animation: fadeOutFromBlock 0.4s ease-in-out; /* */
  z-index: 1010;
}
.mainmenu ul ul a {
  min-width: 6rem;
  width: 100%; /* растягиваем на ширину li */
}
/* отображаем выпадающий список при наведении */
.mainmenu ul li:hover > ul, .mainmenu ul li:focus-within > ul {
  display:inherit; opacity: 1; animation: fadeInFromNone 0.4s ease-in-out; /* */
}
/* первый уровень выпадающего списка */
.mainmenu ul ul li {
  position: relative;
  min-width: 8rem; /* */
  float:none;
  border-left: 1px solid #c0d0c0;
  border-right: 1px solid #c0d0c0;
}
.mainmenu ul ul > li:first-child {border-top: 1px solid #c0d0c0;}
.mainmenu ul ul > li:last-child {border-bottom: 1px solid #c0d0c0;}
.mainmenu li > a:after { content:  ' ▼'; }
.mainmenu li > a:only-child:after { content: ''; }
/* второй, третий и последующие уровни * смещаем 2 и 3 уровни влево * на значение длины первого уровня. */
.mainmenu ul ul ul {
  position: absolute;
  top:0;
  left:100%;
}
.mainmenu ul ul ul li {
  position: relative;
  min-width: 9rem; /* */
  float:none;
  border-left: 1px solid #c0d0c0;
  border-right: 1px solid #c0d0c0;
}
.mainmenu li li > a:after { content:  '  ►'; }
.mainmenu li li > a:only-child:after { content: ''; }
.mainmenu a img.bigimg, .img_btn img.bigimg { width:2.8rem; height:2.8rem; } /* */
.mainmenu a:hover img.bigimg, 
.mainmenu a:focus img.bigimg, 
.img_btn:hover img.bigimg, 
.img_btn:focus img.bigimg { content: url('../images/plus-green-x80.png'); }
.bigchar { color: #008000; font-size: 1.2rem;}
/* End MENU ================================================================================= */

/* кнопка поиска  -------------------------------------------- */
input.search {
    display: inline-block;
    width: 7rem; height: 2rem;
    border-radius: 0; border-top-left-radius: 1rem; border-bottom-left-radius: 1rem;
    outline: none;
    box-sizing: border-box;
    border: 2px solid green;
    /* border-color: hsl(var(--base-color), 80%, 17%); */
    font-size: 1rem;
    color: green;
    /* color: hsl(var(--base-color),80%, 20%); */
    background-color: #FFFFF4;
    /* background-image: url('../images/search_green.png'); background-size: 1.1rem; 
    background-position: 0.4rem 0.4rem; background-repeat: no-repeat; */
    /* padding: 0.3rem 0.3rem 0.3rem 0.8rem; */
    padding-left: 0.8rem;
    /* -webkit-transition: width 0.4s ease-in-out; transition: all 0.4s; */
    /* letter-spacing: 0.1em; /* */
    /* margin-top: 0.1rem; */
}
input.search::-webkit-input-placeholder {
    font-weight: bold;
    color: green; /* #50b058 */
    opacity: 0.7;
}
input.search:focus {
    /* width: 100%; /* */
    outline: none !important;
    color: #005000;
    border-color: #006000;
}
input.search:focus::-webkit-input-placeholder {
   content:  '';
}
button.search {
    display: inline-block;
    cursor: pointer;
    width: 2rem; height: 2rem;
    border: 0;
    border-radius: 0;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    outline: none;
    box-sizing: border-box;
    font-size: 1rem;
    /* color: green; */
    color: white; /* hsl(var(--base-color),80%, 20%); */
    background: green;
    /* background-image: url('../images/search_green.png'); background-size: 1.1rem; 
    background-repeat: no-repeat; background-position: 0.2rem 0.4rem; */ 
    padding: 0.3rem 0.5rem 0.3rem 0.3rem;
    /* margin-top: 0.1rem; */
    /* -webkit-transition: width 0.4s ease-in-out;
    transition: all 0.4s; */
    /* letter-spacing: 0.1em; /* */
}
button.search:before {
  content: "\f002"; font-family: FontAwesome;
  font-size: 1rem;
  color: #F8FFF8;
}
/* ------------------------------------------------- */

/* Лента сайта ******************************************************************** */
.maycontent {
  width: 100%; /* min-height: 70vh; /* */
  position: relative;
  display: flex; flex-flow: column; justify-content: center; align-items: center; align-content: space-around; /* */ 
  scroll-snap-align: start; /* автоматическое выранивание границы блока в родительском контейнере (.allbody) */
  /* padding: 2rem 0; /* */
  color: #805060; 
  /* background-color: #d2f0c2; /* #d1f0c2 #d9edad #E8E0E8; #E8E8E0 */ 
  background: linear-gradient(to left, #a0e0a0 0%, #d2f0c2 25%, #f8fff0 50%, #fefffe 100%); /* */ 
  /* overflow: auto; /* */
}

.page {
  position: relative;
  width: 80%; min-height: 52vh;
  padding: 0; margin: 2rem auto 0 auto; /* */
  border: 1px solid #e0e0e0; border-radius: 6px;
  background-color: white;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2) !important;
  overflow: hidden; 
}
.page:last-child { margin: 2rem auto; /* */ }
.pageheader {
  width: 100%; min-height: 2rem;
  border-radius: 6px 6px 0 0;
  padding: 0.5rem;
  /* font-family: 'Arial Black', Gadget, sans-serif; /* */
  font-family: Verdana, Geneva, sans-serif;
  font-weight: bold; /* */
  background-color: #60a050; color: white;
  overflow: hidden; 
}

.textblocks {
  width: 100%; height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  padding: 1.5rem;
}

.textblocks img {
  margin: 0.2rem;
}

.button { 
  /* display: block; /* */
  white-space: nowrap;
  height: 1.9rem;  
  font: bold 0.9rem sans-serif;
  text-decoration: none;
  border-radius: 1rem;
  border: 1px solid #b0b0b0;
  margin: 0 0.5rem;
  padding: 0.1rem 0.7rem 0rem 0.7rem; /* */
  cursor: pointer;
  color: #705070;
}
.mediumbutton { 
  display: block; /* */
  max-height: 3rem;  
  white-space: nowrap;
  font: bold 1rem sans-serif;
  text-decoration: none;
  border-radius: 1.5rem;
  border: 1px solid #b0b0b0;
  margin: 0.5rem !important;
  padding: 0.2rem 0.7rem !important; /* */
  cursor: pointer;
  color: #705070;
}
.maycontent .button, .may_images > button{ /* большая зеленая кнопка */
  /* height: 2rem; */ 
  background-color: green; color: white;
  padding: 0.7rem 1rem !important; /* */
  /* margin: 1rem 0; /* */
}
.maycontent .button span { height: 2rem; text-align: center; }
.maycontent .button:focus {
  /* border: 1px solid #0080D0; /* */
}
.button:hover, .button:active, .mediumbutton:hover, .mediumbutton:active {
  background-color: blue; color: white;
}

.mayfooter{
  /* display: block; /* */
  /* position: fixed; bottom: 0; left: 0; /* */ 
  width:100%; height: 1rem; /* */
  /* scroll-snap-align: start; /* */
  
  background-color: white;
  border-top: 1px solid #e0e0e0; /* */
  z-index: 10;
}
.mayfooter span{ color: darkgray; font: bold italic 0.6rem sans-serif; padding: 0 0 0.2rem 0; /* */}
/* ================================================================================= */

.fullarea { position: relative; width: 100%; height: 100%; }
.rowChild { display: flex; flex-flow: row; justify-content: space-around; align-items: center; align-content: space-around; }
.middleChild { display: flex; flex-flow: column; justify-content: center; align-items: center; align-content: space-around; }
.middleLeftChild { display: flex; flex-flow: column; justify-content: space-around; align-items: start; align-content: space-around; }


/* MODAL window **************************************************************************************** */
.modalblockX { /* Затемненная область для модальных окон */
  position: fixed; top:0; right:0; height:100%; width:100%;
  padding: 0; margin: 0; border: 0; 
  background-color:rgba(0, 0, 0, 0.1);
  z-index: 1200; 
  overflow: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch;
  display: flex; flex-flow: column nowrap; justify-content: center; align-items: center; /* */
  display: none; /* */ 
}
.modalblock { /* Затемненная область для модальных окон */
  display: none; 
  position: fixed; top:0; right:0; height:100%; width:100%;
  padding: 0; margin: 0; border: 0; 
  background-color:rgba(0, 0, 0, 0.1);
  z-index: 1200; 
  overflow: hidden;
}
/* область окна */
.dlgwindow {
  /* display: block; /* */
  /* display: flex; flex-direction: column; justify-content: space-between; align-items: center; /* */
  /* display: table-cell; /* */
  display: grid;  
  grid-template-columns: 100%; /* 1 столбцы */ 
  grid-template-rows:  2rem auto 2.7rem; /* 3 строки */
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; /* выравнивем по центру */ 
  /* top:5rem; right:2rem; height:190px; width:250px; /* */
  max-width: 100%; 
  min-height:10rem; min-width:15rem;
  /* z-index: 1200; /* */
  padding: 2px; 
  background: #EBEAE0;
  /* border: 1px solid #ECF1F2; /* */ 
  border-radius: 6px;
  /* box-shadow: 0px 4px 6px 0px #707070 ; /* <сдвиг по x> <сдвиг по y> <радиус размытия> <растяжение> <цвет> */
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.4) !important;
  opacity: 1;
  overflow: hidden;
  animation: showcontent 300ms;
}
.dlgtitle {
  position: relative; /* position: absolute; top:2px; left:2px; right:2px; */
  height: 100%; width: 100%; 
  background: #809830;
  /* cursor: pointer; /* */ 
  padding: 0.5rem 0.5rem 0.5rem 1rem; 
  border-radius: 4px 4px 0px 0px;
  user-select: none;
  /* background: linear-gradient(to bottom, #408040, #50a050); /* */
  background: radial-gradient( #50a050, #408040); /* первый цвет от центра к краям */
  text-align: left;
}
.dlgtitle span {
  font-weight: bold; font-size: 1rem; 
  color: white; 
}
.close-icon {
  position: absolute; top:0.5rem; right:0.5rem; /* absolute */
  display: flex; flex-direction: row; justify-content: center; align-items: baseline; /* */
  /* height: 1.2rem; width: 1.2rem; font-size: 0.8125rem; /* */
  padding: 0; 
  height: 1.2rem; width: 1.2rem; font-size: 0.8rem; /* */
  color: white; 
  /* background-color: #E02020; /* */
  background: radial-gradient(farthest-side ellipse at top left, #FF8080, #D01010); /* градиент образующий выпуклость */
  user-select: none; text-decoration: none;
  border-radius: 3px;
  box-shadow: 0px 1px 3px #555;
  /* text-align: center; /* */
}
.close-iconX:after { content: "✖"; }
.close-icon:hover, .close-icon:focus {
  /* background: radial-gradient(circle at 20% 15%, #FF8080, red); /* */
  background: radial-gradient(farthest-side ellipse at top left, #FF8080, red);
  }
.close-icon:active {
  background: radial-gradient(farthest-side ellipse at bottom right, #FF8080, red);
  box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset;
  }
.dlgwinbody {
  position: relative; /* position: absolute; top:2.1rem; left:2px; right:2px; /*  */
  display: flex; flex-flow: column nowrap; align-items: center; justify-content: center;
  /* flex-shrink: 0; flex-grow: 0; margin: auto; /* */
  height:100%; width: 100%; /* */ 
  font-size: 1rem; 
  color: #805040; background-color: white;
  /* border: 1px solid #ECF1F2; /* */
  text-align: left;
  font-style: normal;
  overflow: hidden; /* */
}
.dlgField {
  position: relative; height: 100%; width:100%; /* */
  display: grid; grid-template-columns: 1fr;
  /* display: flex; flex-flow: column; justify-content: space-around; /* align-items: center; /* */
  padding: 0.625rem; /* */
  overflow: auto; /* */
}
.dlgField .dlgLine {
  /* display: flex; align-items: center; /* */
  display: flex; flex-direction: row; justify-content: space-between; align-items: center; /* */
  flex-shrink: 0; flex-grow: 0;
}
.dlgwindow label { 
  user-select: none; /* align-self: center; /* */ 
}
.dlgwindow input[type="text"], .dlgwindow input[type="password"], select {
  display: inline-block;
  width: 100%; /* */
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #bdbdbd;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.dlgwindow input[type="checkbox"], .dlgwindow input[type=radio] {
  width: 1.5rem; height: 1.5rem; /* */
  vertical-align: middle;
  position: relative;
  bottom: 1px;
}
.dlgwindow input[type="checkbox"] {
  border-radius: 0.25rem;
}
.dlgwindow input:disabled {
  background-color: #eee;
}
.dlgwindow input[type="button"], .dlgwindow button { 
  white-space: nowrap;
  height: 1.8rem;  
  font: bold 0.9rem sans-serif;
  text-decoration: none;
  border-radius: 1rem;
  border: 1px solid #d0d0d0;
  margin: 0 0.5rem;
  padding: 0.1rem 0.7rem 0rem 0.7rem; /* */
  cursor: pointer;
  color: #705070; text-shadow: 0 1px 0 #FFF; 
  background: linear-gradient(to top, #D0D0D0, #FFFFFF);
  box-shadow: 1px 2px 3px rgb(0,0,0,0.7);
}
.dlgwindow button, .dlgwindow input[type="button"] { margin: 0 0.5rem; /* vertical-align: middle; /* */ }
.dlgwindow button:hover, .dlgwindow input[type="button"]:hover {
  color: red; background: linear-gradient(to top, #90D0FF, #F0FDFF);
}
.dlgwindow button:focus, .dlgwindow input[type="button"]:focus {
  color: red; background: linear-gradient(to top, #90D0FF, #F0FDFF);
}
.dlgwindow button:active, .dlgwindow input[type="button"]:active {
  color: red; background: linear-gradient(to bottom, #90D0FF, #F0FDFF); box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset;
}
.dlgwinfoot {
  position: relative;  /* position: absolute; bottom:2px; left:2px; right:2px; /* */
  display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: center; align-items: center;
  /* height: 4rem; /* */
  width: 100%; /* padding: 0.5rem; /* 0.625rem; */
  /* text-align: center; /* */  
  background: #EaF0Ea;
  color: #805040;
  /* border: 1px solid #ECF1F2; /* */
  border-radius: 0px 0px 4px 4px;
}
/* End MODAL window ----------------------------------------------------------------- */

/* Spiner Loading */
.mySpiner {  /*spin container*/
    display: none;  
    position: fixed; top: 0px; bottom: 0px;
    width: 100%; height: 100%;
    margin: 0; overflow: hidden;
    text-align: center;
    z-index:9500;
    /* opacity: 0; visibility: hidden; transition: opacity 700ms; /* */
}
.mySpiner:target {
  visibility: visible; opacity: 1; /* */
}
/* .mySpiner:hover > .spinVeil { background-color: #00fd00; } /* */
.mySpiner:hover + .allbody .mainmenu ul ul { display: none; opacity: 0; } /* */
.spinVeil { /* полупрозрачная завеса над содержимом */
    position: fixed; top: 0px; right:0px;
    width: 100%; height: 100%;
    background-color: #d0f0d0;
    opacity:.2; /* */
    margin: 0; padding: 0;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    border: 0px;
    z-index:9500;
}
.spincontentgif { /* окошко для Spiner-а */
    /* display: block; /* */
    /* position: fixed; 
    top:40%; left: 45%;
    padding: 2.1429rem;
    border: 1px solid #a0a0a0;
    border-radius:0.8571rem;
    background-color: #fcfcfc;
    box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.4), -3px -3px 10px rgba(0, 0, 0, 0.17);
    overflow: hidden;
    z-index:9501; /* */
}
.spincontent { /* блок с картинкой */
    /* display: block; /* */
    position: fixed; /* relative; /* */
    top:40%; left: 40%;
    width: 12.1429rem; /* 170px; */
    height: 9.2857rem; /* 130px; */
    border: 0px solid #a0a0a0;
    border-radius:0.8571rem;
    /* background-color: #fcfcfc; /* */
    /* box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.4), -3px -3px 10px rgba(0, 0, 0, 0.17); /* */
    overflow: hidden;
    z-index:9501;
    /* transition: all 1s ease-in-out; /* */
    animation: showcontent 400ms;
}
.spincontent .whiteblock {
    border: 1px solid #a0a0a0;
    background-color: #fcfcfc; /* */
    box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.4), -3px -3px 10px rgba(0, 0, 0, 0.17); /* */
}
.spincontent img { margin: 2rem auto 0 auto;}
.spinMessage { margin: 1rem 0; font-size: 0.7rem;}
@keyframes showcontent {
  0%{
    transform: scale(0.2);
  }
  100%{
    transform: scale(1);
  }
}
/* End Spiner ------------------ */

/* ******************************************************************************* */
/* Окно Выбор файла */
.pft-table { font-style: normal; border-collapse: collapse; /* border-spacing: 0px; /* */ 
  -ms-user-select: none;  -moz-user-select: none;  -khtml-user-select: none;  -webkit-user-select: none; user-select: none; /* */ 
}
.pft-table th { background-color: #F8F8F8; white-space: nowrap; cursor: pointer; font-size: 1rem;}
.pft-table thead th { 
  border: 1px solid #a0a0a0; /* border-bottom: 1px solid #a0a0a0; border-right: 1px solid #a0a0a0; border-top: 1px solid #FFFFFF; border-left: 1px solid #FFFFFF; /* */
  padding: 0.05rem 0.263rem; /* 1px 5px */
  position: -webkit-sticky; position: -moz-sticky; position: -ms-sticky; position: -o-sticky; position: sticky; top: 0px;
}
.pft-table thead th:hover { color: blue; }
.pft-table tbody tr { cursor: default; }
.pft-table tbody tr:hover { background-color: #F0F8FF;}
.pft-table tbody tr:focus, .pft-table tbody tr:active { background-color: green; color: white;} /* #D0E0FF */
.pft-table tbody td {
	font-family: Sans-serif;
    font-style: normal;
	font-size: 0.9rem;
    padding: 0.05rem 0.263rem; /* 1px 5px */
    letter-spacing: 0.05rem;
    white-space: nowrap;
}
.pft-table tbody td a { color: #000000;	text-decoration: none; }
.pft-table tbody td a:hover { text-decoration: underline; }
.pft-table .tableimg { margin: 0 0.263rem; }
.pft-table .tablebtn, .tablebtn { margin: 0 0.263rem; }
.pft-table thead th:before { content: "  "; }
.pft-table thead .desc:before { content: "▲ "; color: lightgray; }
.pft-table thead .asc:before { content: "▼ "; color: lightgray; }
.pft-table tfoot th {   
  border: 1px solid #a0a0a0; /* border-bottom: 1px solid #a0a0a0; border-right: 1px solid #a0a0a0; border-top: 1px solid #FFFFFF; border-left: 1px solid #FFFFFF; /* */
  padding: 0.05rem 0.263rem; /* 1px 5px */
  position: -webkit-sticky; position: -moz-sticky; position: -ms-sticky; position: -o-sticky; position: sticky; bottom: 0px;
}


/* **************************************************************************************** */
@media all and (orientation:portrait) {
  .mayheader{ background-position: center top; /* background-image: url('../images/P1030006_mob.jpg');*/ }
  img.phone { width: 1.4rem; height:1.4rem; }
}
@media all and (orientation:landscape) {
}

/* если ширина области просмотра больше 1199 /* */ 
@media screen and (max-width: 1199px){
  html { font-size: 18px; }
  .mayheader{background-attachment:scroll;} /* min-height: 758px; */
}
@media screen and (max-width: 959px){
  html { font-size: 16px; }
  img.logo { height: 0rem; }
  .maycontent { padding: 1rem 1rem 2rem 1rem; }
}
@media screen and (max-width: 639px){
  html { font-size: 14px; }
  img.logo { height: 0rem; }
  .katalog_link { font: italic 0.9rem sans-serif; }
  .maycontent { padding: 1rem 1rem 2rem 1rem; }
}
@media screen and (max-width: 479px){
  html { font-size: 12px; }
  img.logo { height: 0rem; }
  .katalog_link { font: italic 0.8rem sans-serif; }
  .maycontent { padding: 1rem 1rem 2rem 1rem; }
}
@media screen and (max-width: 359px){
  html { font-size: 10px; }
  img.logo { height: 0rem; }
  .katalog_link { font: italic 0.8rem sans-serif; }
  .maycontent { padding: 1rem 1rem 2rem 1rem; }
}
/* */


