/* css navigation akonline photo gallery */

* {
  box-sizing: border-box;
}

body {
  margin: 0px;

}

.nav {
  height: 60px;
  width: 100%;
  background-color: rgba(0,0,0,0);
  position: relative;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
 /* font-size: 16px; */
  color: #ccc;
  padding: 2px 0px 10px 6px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 19px 15px 5px 12px;  /* top right bottom left "12px" distance menu-text from left - mobile */
  text-decoration: none;
  color: #ddd;
}

.nav > .nav-links > a:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #ff3333;
}

.nav > #nav-check {
  display: none;
}

/* mobile and desktop */

@media (max-width:2000px) {
		
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 60px;
    padding: 13px;
	padding-top: 20px;

  }
  .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0);
	color: ff3333;
  }
  
  
  
  /*
  .nav > .nav-btn > label > span {  /* ham-nav 
    display: block;
    width: 23px;
    height: 8px;
    border-top: 2px solid #eee;  /* ham line thinkness 
  }
  */
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
	background-color: rgba(0,0,0,0.5); /* background drop down curtain */
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 60px;
    left: 0px;
	padding-left: 0px;
  }
  
  .navbar {
	background-color: rgba(0,0,0,0.5);  /* top bar background mobile */
  }
  
  .nav > .nav-links > a {
    display: block;
    width: 100%;
	letter-spacing: 2px;
	text-align: center;
	font-size: 18px;

	}
	
  .nav > #nav-check:not(:checked) ~ .nav-links {
     height: calc(100vh - 50px);
    overflow-y: auto;                            /*  height: 0px; before ka*/
	
  }
 
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
	
  }
  
}
