/* Body */




/* Menu */

.menu {
  background: #23292b;
  left: -285px; /* прячем меню */
  height: 100%;
  position: fixed;
  width: 285px;
	z-index:9999;
}


/* Basic CSS */

.background {
  background-image: url(''); 
  height: 100%;
  width: 100%;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  
  line-height: 1.3;
padding: 8px 20px;
}



.menu a {
  color: #c2cfd4;
  font-size: 18px;
  text-decoration: none;
}

.menu a:hover {
  color: #fff;
}

.menu .current-menu-item a {
	font-weight:700;
	color: #BF0000;
}



.icon-close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 99991;
}

.icon-close:before {
  content:"";
	position:absolute;
	width: 20px;
    height: 20px;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    display: block;
    font-size: 50px;
    background-image: url(/wp-content/themes/dnk/design/icon-close-white.svg);
    background-size: cover;
}

.icon-menu {
    width: 30px;
    height: 30px;
    position: fixed;
    cursor: pointer;
    top: 40px;
    left: 40px;
    z-index: 999;
    background: #fff;
    padding: 10px;
    box-sizing: content-box;
    border-radius: 1px;
}

 
.icon-menu:before {
    content: "";
    background: url(/wp-content/themes/dnk/design/menu-icon.svg);
    background-size: cover;
    width: 30px;
    height: 23px;
    position: absolute;
    top: 13px;
    left: 10px;
}

@media screen and (max-width: 500px) {
	
	.icon-menu {
    top: 10px;
    left: 10px;
}
}