/* Меню PC */

a.hover-efekt {
    line-height: 1.5;
    display: inline-block;
    color:#6e6f7d;
    text-decoration:none;
    cursor: pointer;
}
a.hover-efekt:after {
    display: block;
    content: "";
    height: 2px;
    width: 0%;
    background-color:#6e6f7d;
    transition: width .4s ease-in-out;
}
a.hover-efekt:hover:after,
a.hover-efekt:focus:after {
    width: 100%;
}

a.hover-efekt:hover{
  color:#6e6f7d;
}


.menu {

		max-width: 1400px;
		margin: 0 auto;

		box-sizing: border-box;
		padding: 15px 0 15px;

		display: table;
    clear: both;

}


.text_menu {
	font-size: 17px;
	font-family: 'Open Sans', sans-serif;
  float: left;
}

.block_menu {
  width: 30px;
  padding-bottom: 10px;
  float: left;
  margin: 0 auto;

}



.show_menu_mob {
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
    padding-bottom: 15px;

}

.show_menu_pc {
    margin: 0 auto;
    display: none;

}


@media (min-width: 850px) {
    /* Для больших экранов */

    .show_menu_mob {
        margin: 0 auto;
        display: none;
        box-sizing: border-box;
        padding-bottom: 15px;

    }

    .show_menu_pc {
        margin: 0 auto;
        display: block;

    }
}



/* Новое мобильное меню */



body {

	-webkit-tap-highlight-color: transparent; /* Отключение синей подсветки при нажатии в смартфоне */ 
	
}


.image_button {
    
  width: 25px;
  height: 25px;
  cursor: pointer;

    
}



.menu_button_menu {
    display: flex;
    justify-content: flex-end;
    /* background-color: #F5DEB3; */
    /* border: 1px solid green; */
    margin: 10px;


}


.menu_button_krest {
    display: flex;
    justify-content: flex-start;
    /* background-color: #F5DEB3; */
    /* border: 1px solid green; */
    margin: 10px;


}




.links_box_menu {
    display: flex;
    flex-direction: column;
    align-items: end;
    /* background-color: #D8BFD8; */
    
    font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	
	/* border: 1px solid blue; */
	


    
}


.box_header_menu {
    
    display:none;

}


/* Стили ссылок меню */

a.menu_link:link{
	color:#6e6f7d; 
	text-decoration:none;
	font-weight:bold;	
}


a.menu_link:visited {
	color:#6e6f7d;
	text-decoration:none;
	font-weight:bold;	
}


a.menu_link:hover{
	color:#6e6f7d;
	text-decoration:none;
	font-weight:bold;	
}


a.menu_link:active{
	color:#6e6f7d;
	text-decoration:none;
	font-weight:bold;	
}


.menu_link_div {
   /*  border: 1px solid pink; */
    margin: 10px;
    
}



.hidden {
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

#hiddenBlock {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: LightGrey;
  padding: 10px;
  z-index: 9999;    /* div поверх всех элементов */
}


/*  Отмена прокрутки экрана при открытом меню */
.screen_locked {
    overflow: hidden;
    touch-action: none;
    
}


