
 @font-face { /* Импорт шрифта Ubuntu-Bold */
  font-family: 'Ubuntu-B';
  src: local(ubuntu-b), url('../../css/standart/fonts/Ubuntu-B.ttf');
 }

 @font-face { /* Импорт шрифта Ubuntu-Regular */
  font-family: 'Ubuntu-R';
  src: local(ubuntu-r), url('../../css/standart/fonts/Ubuntu-R.ttf');
 }

 /* Глобальні параметри */
 body {
  font-style: normal;
  font-family: Ubuntu-R;
  font-stretch: ultra-expanded;
  white-space: nowrap;
  background: #EFF2FF;
  font-size: 12px;
  color: #967272;
  padding: 0px;
  margin: 0px;
 }

 div.header {
  display: grid;
  overflow: hidden;
  background: #0086E6;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  background-image: url('../../img/scheme/default/_classic/head_ukr.png');
  background-repeat: no-repeat;
  height: 110px;
  padding: 0px;
  gap: 0px;
 }

 div.footer {
  display: block;
  background-color: #0086E6;
  color: white;
  font-size: 10px;
  text-align: center;
  font-family: Ubuntu-B;
  font-weight: bold;
  height: auto;
  width: calc(100% - 10px);
  padding: 5px;
  margin: 0px;
 }

 div.global {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  padding: 10px 10px 0px 10px;
  gap: 10px;
 }

 div.column {
/*  overflow-wrap: break-word; *** */
  grid-column: span 1;
  white-space: wrap;
  text-align: left;
  padding: 0px;
 }

 a {
  color: #0086E6;
  text-decoration: none;
 }

 a:hover {
  color: blue;
 }

 form {
  padding: 0px;
  margin: 0px;
 }

 input, select {
  border: 1px solid #e0e0e0;
  background: white;
  font-size: 10px;
  color: #777777;
  outline: none;
  padding: 4px;
  margin: 0px;
  width: 100%;
 }

 input.file[type=file] {
  margin: 0px 5px 0px 0px;
  padding: 2px;
/*  width: 80%; */
 }

 input.file[type=submit] {
  padding: 0px;
/*  width: calc(20% - 5px); */
 }

 input.password[type=password] {
  width: 100%;
 }

 input.password[type=button] {
  width: 100%;
 }

 input:hover {
  background: #f9f9f9;
  color: #0086e6;
 }

 select:hover {
  background-color: rgba(205, 205, 205, 0.3);
/*  color: #0086e6; */
 }

 a.cancel {
  display: block;
  outline: none;
  width: 100%;
  text-align: center;
  border: 1px solid #f0f0f0;
  background: white;
  border-spacing: 1px;
  font-size: 10px;
  padding: 3px 6px 4px 6px;
  margin: 0px;
 }

 a.cancel:hover {
  background: #f9f9f9;
  color: blue;
 }

 p {
  padding: 0px;
  margin: 0px;
 }

 form.login {
  padding: 12px;
 }

 input.login {
  border: 1px solid #7788FF;
  background: #EEEEEE;
  margin: 2px 0px;
 }

 div.login {
  color: white;
  font-size: 10px;
  padding: 0px 0px 5px 0px;
 }
