/*Css for NET Nutrition Tool */

body {
  font-family: Avenir !important;
  margin: 0;
  max-width: calc(100vw - 34px);
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  padding: 0px 13px;
}

.demo-iframe-holder {
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  max-width: calc(100vw - 34px);
}


#main-body {
	margin-top: 1vh;
	overflow-y: visible;
	margin-bottom: 1vh;
}

p.author {
	font-weight: bold
}
#main-body div {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  margin-top: 50px;
  border-width: 1px;
  width: 100%;
  padding-bottom: 50px; 
}

.navbar {
  background-color: #000;
  font-family: Arial;
  width: 100%;
  position: fixed;
  top: 0;
  max-width: calc(100vw - 34px);
}

.top-nav {
	width: 100%;
	display: flex;
  justify-content: center;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {

    overflow-y: visible;
}

.dropdown .dropbtn {
    cursor: pointer;
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;

}

.navbar a:hover, .dropdown:hover .dropbtn {
    /*background-color: red;*/
}

.intro-image {
	box-shadow: none !important;
    margin-top: 0 !important;
    width: auto !important;
    padding: 0 !important;
    border-width: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important ;
}


.intro-image img {
	width: 50vw;
    margin: 10px;
	max-width: 100%;
	min-width: 80px;
	height: 15vh;
}

.saved-image{
	width: 90vw;
}
.dropdown-content {
    display: none;
    position: fixed;
    background-color: #716d6d;
    opacity: 0.9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    overflow-y:scroll;
    max-height: 60vh;
    top: 45px;
}

.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #000;
}

.show {
    display: block;
}


