body
{
  width: 100%;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0px;
  margin: 0px;
  background-color: #FFFFFF;
}




.header1
{
  width: 100%;
  min-height: 60px;
  min-width: 400px;
  padding-top: 10px;
  display: inline-block;
  background-color: #FFFFFF;
  font-size: 38px;
  color: hsl(0, 0%, 23%);
  border: 0px solid #000000;
}


.header1_img
{
  width: 60px;
  margin-bottom: -10 px;
}


.header2
{
  width: 100%;
  min-height: 60px;
  background-color: #FFFFFF;
  font-size: 24px;
  color: #007b5f;
  border-top: 5px solid #ee7203;
  border-bottom: 5px solid #ee7203;
}


.theme
{
  padding: 20px;
  display: table-cell;
  text-align: justify;

}


.main
{
  display: table-cell;
  background-color: #FFFFFF;
  width: 60%;
  min-width: 750px;
  height: 600px;
  vertical-align: middle;
  border: 0px solid #007b5f;

}


.sidebar
{
  display: table-cell;
  background-color: #FFFFFF;
  vertical-align: middle;
  width: 40%;
  min-width: 300px;
  border: 0px solid #000000;
}


.menu
{ 
  border: 3px solid rgb(0, 123, 95); 
  background-color: rgb(255, 255, 255);
  width: 90%;
  font-size: 16px;
  padding-left: 2px;
  margin: 10px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  /*box-shadow: 2px 2px 10px rgb(0, 123, 95);*/
  transition: all 0.2s ease-in-out;
    
}

.menu:hover
{
    width: 95%;
    background: linear-gradient(0deg, rgb(0, 123, 95), #009673);
    color: white;
}

.menu:hover div
{
     color: white;
}



.menutype
{
  border: 0px solid #e5e3dd; 
  margin: 2px;
  padding: 2px; 
  height: 100px;
  display: table-cell;
  vertical-align: middle;
  color: #007b5f;
  

}

.footer
{
  display: inline-block;
  width: 100%;
  height: 68px;
  background-color: #FFFFFF;
  font-size: 18px;
  color: #007b5f;
  text-align: center;
  padding: 2px;
  position: fixed;  /* подвал прилипает к низу */
  bottom: 0;        /* подвал прилипае к низу */
  
}


.footer_img
{
  width: 50%;
  float: left;
  margin-left: 10px;
}



/* запретить выделение текста и изображений */
img, body, div
{
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}


.context_img
{
  width: 32px;
  cursor: pointer;
  display:block;
  margin-left:auto;
  margin-right:auto;
  transition: all 0.1s ease-in-out;
}


.context_img:hover
{
  width: 40px;
}



.play_btn
{
  width: 36px;
  transition: all 0.1s ease-in-out;
}


.play_btn:hover
{
width: 54px;
}


.footer .txt{
  padding-top: 25px;
}


.mainlink
{
  text-decoration: none;
  display: table-cell;
  height: 100px;
}


.center {   
 
  display:block;
  margin-left:auto;
  margin-right:auto;
}


.button
{
  font-size: 16px;
  text-align: center;
 
  width: 200px;
  height: 20px;

  display: inline-block;
  
  border: 3px solid rgb(0, 123, 95); 
  background-color: rgb(255, 255, 255);

  padding: 4px;
  margin: 2px;
  
  border-radius: 10px;
 /* box-shadow: 2px 2px 10px rgb(0, 123, 95);*/

  transition: all 0.2s ease-in-out;

  cursor: pointer;
  
  position: relative;
  top: -5px;

}

.button:hover
{
  background-color: rgb(0, 123, 95);
  color: white;
  position: relative;
  top: -5px;
  background: linear-gradient(0deg, rgb(0, 123, 95), #009673);
}




.mytitle
{
font-size: 24px;
color: #007b5f;
}






.wrongdisplay
{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
  
  color: #FFFFFF;
  padding: 24px;
  font-size: 24px;


}

.wrongdisplay.active
{
  display: flex;
  justify-content: center;
  align-items: center;

}