body {
    background-color: #404040;
    color: #dbffaf;
    /*font-family: 'Open Sans', sans-serif;*/
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    background-attachment: fixed;
    font-family: Roboto, sans-serif;
}

p {
    margin-top: 0.1em; /* Отступ сверху */
    margin-bottom: 0.1em; /* Отступ снизу */
}

.btn {
    /*padding: 5px 10px 5px;*/
    margin-left: 5px;
    font-size: 20px;
    border-style: solid;
    border-width: 1px;
    display: block;
    /*width: 200px;*/
    width: 97%;
    height: 35px;
    color: #5cff17;
    border-color: #404040;
    border-radius: 4px;
    cursor: pointer;
    /*background-color: Teal;*/
    background-image: -moz-linear-gradient(top, #404040, #404041);
    background-image: -webkit-linear-gradient(top, #404040, #404041);
    /*box-shadow: 6px 6px 2px 1px rgba(128, 0, 30, 0.2);*/
    -webkit-transition: width 0.5s, height 0.5s, background-image 0.5s, transform 0.5s, color 0.5s, border-color 0.5s, box-shadow 0.5s;
    transition: width 0.5s, height 0.5s, background-image 0.5s, transform 0.5s, color 0.5s, border-color 0.5s, box-shadow 0.5s
}

.btn:hover {
    color: #fff;
    border-color: #454545;
    background-image: -moz-linear-gradient(top, #454545, #404041);
    background-image: -webkit-linear-gradient(top, #454545, #404041);
    border-radius: 4px;
    /*box-shadow: 6px 6px 2px 1px rgba(128, 0, 30, 0.1);*/
}

.mini_btn {
    /*padding: 4px 10px 4px;*/
    /*font-size: 20px;*/
    border-style: solid;
    border-width: 1px;
    /*display: block;*/
    width: 100%;
    height: 20px;
    color: #fff;
    border-color: #04040;
    border-radius: 4px;
    cursor: pointer;
    /*background-color: Teal;*/
    background-image: -moz-linear-gradient(top, #404040, #404041);
    background-image: -webkit-linear-gradient(top, #404040, #404041);
    /*box-shadow: 6px 6px 2px 1px rgba(128, 0, 30, 0.2);*/
    -webkit-transition: width 0.5s, height 0.5s, background-image 0.5s, transform 0.5s, color 0.5s, border-color 0.5s, box-shadow 0.5s;
    transition: width 0.5s, height 0.5s, background-image 0.5s, transform 0.5s, color 0.5s, border-color 0.5s, box-shadow 0.5s
}

.mini_btn:hover {
    color: #fff;
    border-color: #454545;
    background-image: -moz-linear-gradient(top, #454545, #404041);
    background-image: -webkit-linear-gradient(top, #454545, #404041);
    border-radius: 4px;
    /*box-shadow: 6px 6px 2px 1px rgba(128, 0, 30, 0.1);*/
}

.inp{
    color: #dbffaf;
    margin: 5px;
    outline: none;
    width: 97%;
    /*width: 40px;*/
    height: 36px;
    padding: 6px 12px;
    background-color: #585858;
    background-image: none;
    border: none;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    /*box-shadow: inset 0 1px 1px rgba(0,0,0,.075);*/
    -webkit-transition: border-color .9s ease-in-out,box-shadow .9s ease-in-out;
    -webkit-transition: border-color .9s ease-in-out,-webkit-box-shadow .9s ease-in-out;
    transition: border-color .9s ease-in-out,-webkit-box-shadow .9s ease-in-out;
    transition: border-color .9s ease-in-out,box-shadow .9s ease-in-out;
    transition: border-color .9s ease-in-out,box-shadow .9s ease-in-out,-webkit-box-shadow .9s ease-in-out;
    transition: border linear 0.9s,box-shadow linear 0.9s;
}

.inp50{
    color: #dbffaf;
    margin: 0px;
    outline: none;
    width: 47%;
    /*width: 110px;*/
    height: 36px;
    padding: 6px 12px;
    background-color: #585858;
    background-image: none;
    border: none;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    /*box-shadow: inset 0 1px 1px rgba(0,0,0,.075);*/
    -webkit-transition: border-color .9s ease-in-out,box-shadow .9s ease-in-out;
    -webkit-transition: border-color .9s ease-in-out,-webkit-box-shadow .9s ease-in-out;
    transition: border-color .9s ease-in-out,-webkit-box-shadow .9s ease-in-out;
    transition: border-color .9s ease-in-out,box-shadow .9s ease-in-out;
    transition: border-color .9s ease-in-out,box-shadow .9s ease-in-out,-webkit-box-shadow .9s ease-in-out;
    transition: border linear 0.9s,box-shadow linear 0.9s;
}
.inp-cont{
    padding-left: 5px;
}

.inp-cont:focus{
    /*border: 1px solid white;*/
    box-shadow: 0 0 10px rgba(219, 255, 175, 1);
}

.inp:focus{
    /*border: 1px solid white;*/
    box-shadow: 0 0 10px rgba(219, 255, 175, 1);
}

.inp50:focus{
    /*border: 1px solid white;*/
    box-shadow: 0 0 10px rgba(219, 255, 175, 1);
}

.moexp-header {
  min-width: 1400px;
  padding: 5px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  /*flex-wrap: nowrap;*/
  /*background-color: LightGrey;*/
  align-content: stretch;
  border-bottom: 2px solid 797979;
  box-shadow: 0px 5px 5px 797979;
  background: linear-gradient(#797979, #404040);
  border-radius: 4px;
}
.header-label{
    margin: auto;
    padding: 5px;
    flex-grow: 0; /* занять всё пространство по flex-direction 0 значит что это не флекс элемент */
}
.header-name{
    margin: auto;
    padding: 5px;
    /*background-color: LightGrey;*/
    flex-grow: 10; /* занять всё пространство по flex-direction чем больше цифра тем наглее но гибче элемент*/
    text-align:center;
    color: #ffa0a0;
    /*font: 25px Roboto, sans-serif;*/
}
.header-name h1{
    font: 25px Roboto, sans-serif;
    color: white;
}


.header-contacts{
    margin: auto;
    padding: 5px;
    /*background-color: LightGrey;*/
    flex-grow: 1; /* занять всё пространство по flex-direction */
}
.main_conteiner{
    min-width: 1400px;
    padding: 5px;
    /*background-color: LightGrey;*/
    height: 80%;
    display: flex;
    align-content: stretch;
    background: linear-gradient(#797979, #404040);
    /*box-shadow: 0px 5px 5px DarkGrey;*/
    border-radius: 4px;
}

.moexp-content{
    
    flex: 1;
    padding: 5px;
    display: flex;
    flex-direction: row;
    align-content: stretch;
}

.moexp-controls{
    flex-grow: 0;
    min-width: 325px;
    max-width: 325px;
    /*width: 20%;*/
    padding: 5px;
}

.moexp-table{
    /*width: 80%;*/
    flex-grow: 1;
/*  padding: 5px;
    padding-left: 15px;
    margin-left: 10px;*/
    align-content: stretch;
    display: flex;
    flex-direction: column;
}

.moexp-table-top{
    margin: 5px;
}

.moexp-table-bottom{
    margin: 5px;
    overflow: auto;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    width: 40%;
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 50%;
    left: 170px;
    right: 0;
}
.autocomplete-items div {
    width: 100%;
    padding: 10px;
    cursor: pointer;
    background-color: #797979;
    border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
    width: 100%;
    /*when hovering an item:*/
    background-color: #454545; /* rgba(206, 167, 217, 0.4);*/
}
.autocomplete-active {
    width: 100%;
    /*when navigating through the items using the arrow keys:*/
    background-color: #dbffaf !important;
    color: #000;
}

a {
    color: #5cff17;
    text-decoration: none;
}

a:hover {
    color: white;
}

.footer {
   position: fixed;
   left: 25vw;
   bottom: 0;
   width: 50%;
   height: 3vh;
   min-height: 20px;
   background-color: rgba(219, 255, 175, 0.4);
   color: white;
   border-radius: 5px;
   display: flex;
   align-items: center;
   justify-content: center;
}
.link {
    color: white;
    font-size: 12px;
}


.pwhite{
    color:white;
}

::selection {
    color: white;
    background: dbffaf;
}

p.p3::selection {
	color: red;
}

.g-recaptcha iframe, body > div[style]:last-of-type {
    transform: scale(1.05);
    transform-origin: left top;
}

.msg1{
    font-weight: bold;
    font-style: normal;
    color: #ffa0a0;
    /*text-decoration: underline;*/

}

.msg{
    font-weight: bold;
    font-style: normal;
}

.msg-box{
    margin: 35px;
    padding: 10px;
    background-color: #797979;
    border-radius: 4px;
    box-shadow: 5px 5px 5px DarkGrey;
}