/*SCROLL*/
::-webkit-scrollbar {
  width: 7px; }

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
  -webkit-transition: 200ms;
  transition: 200ms; }
  ::-webkit-scrollbar-track:hover {
    background: rgba(255, 255, 255, 0.1);
    width: 15px; }

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px; }
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5); }

::-webkit-scrollbar-button {
  color: red;
  width: 100px; }

::-moz-selection {
  background: orange; }

::selection {
  background: orange; }

@font-face {
  src: url("../fonts/Engine-Regular.otf");
  font-family: Engine; }
html {
  font-family: Calibri, sans-serif; }

body {
  overflow: hidden;
  font-family: Calibri, sans-serif; }

#container {
  background: url("../pics/pizza.jpeg"), #071019;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 100vh;
  overflow: hidden;
  font-size: 20px; }

/*MENU-NAV*/
#menu-nav {
  position: fixed;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 70px;
  width: 300px;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: 200ms ease;
  transition: 200ms ease; }
  #menu-nav .social {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 50px;
    left: -70px;
    width: 70px;
    height: 70px; }
  #menu-nav #facebook {
    background-image: url("../pics/fb.png");
    background-position: center;
    background-size: contain; }
  #menu-nav #logo {
    width: 90%;
    margin: 30px auto;
    display: block;
    -webkit-filter: drop-shadow(0 0 10px white);
            filter: drop-shadow(0 0 10px white); }
  #menu-nav ul {
    list-style-type: none;
    padding: 0;
    width: 100%;
    margin-top: -20px; }
    #menu-nav ul li {
      width: 100%;
      text-align: center;
      padding: 10px 0;
      color: white; }
      #menu-nav ul li a {
        display: inline-block;
        text-decoration: none;
        color: white;
        font-size: 1.3em;
        cursor: pointer;
        -webkit-transition: 100ms;
        transition: 100ms; }
        #menu-nav ul li a:visited {
          color: white; }
  #menu-nav #menu li a:hover {
    text-shadow: 0 0 7px white;
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  #menu-nav hr {
    width: 60%;
    margin: 0 auto;
    border: none;
    background-color: white;
    height: 1px;
    border-radius: 1px; }
  #menu-nav .contact {
    margin-top: 20px; }

/*CONTENT*/
#content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 400px;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  width: auto;
  overflow: auto;
  padding: 10px;
  color: white;
  text-shadow: 1px 1px 2px black;
  border-radius: 10px 0 0 10px;
  -webkit-transition: 200ms ease;
  transition: 200ms ease; }
  #content h2 {
    font-weight: normal;
    margin: 0; }

/*CLASSES*/
.small {
  font-size: 0.7em; }

.hidden-980 {
  display: none; }

.no-wrap {
  white-space: nowrap; }

.phone-order {
  width: 80%;
  margin: 50px auto;
  padding: 10px 50px 10px 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("../pics/phone.png");
  background-position: 20px;
  background-size: 80px;
  background-repeat: no-repeat;
  text-align: right;
  border: 1px solid white; }

/*MEDIA 1100PX LANDSCAPE*/
@media screen and (max-width: 1100px) {
  /*MENU-NAV*/
  #menu-nav {
    left: 0;
    background: rgba(0, 0, 0, 0.9); }

  /*CONTENT*/
  #content {
    left: 300px;
    border-radius: 0; } }
/*MEDIA 980 LANDSCAPE*/
@media screen and (max-width: 980px) and (orientation: landscape) {
  /*MENU-NAV*/
  #menu-nav {
    width: 250px;
    overflow: auto; }

  /*CONTENT*/
  #content {
    left: 250px; } }
/*MEDIA 860 LANDSCAPE*/
@media screen and (max-width: 880px) and (orientation: landscape) {
  /*MENU-NAV*/
  #menu-nav {
    width: 200px; }
    #menu-nav ul li a {
      font-size: 1.5em; }

  /*CONTENT*/
  #content {
    left: 200px; } }
/*MOBILE 980PX PORTRAIT*/
@media screen and (max-width: 980px) and (orientation: portrait) {
  #container {
    font-size: 17px; }

  /*MENU-NAV*/
  #menu-nav {
    width: 250px;
    font-size: 0.8em;
    -webkit-transform: translate(-250px);
            transform: translate(-250px);
    -webkit-transition: 200ms ease;
    transition: 200ms ease; }
    #menu-nav:hover {
      -webkit-transform: translate(0);
              transform: translate(0); }
      #menu-nav:hover #label {
        opacity: 0;
        -webkit-transform: translate(-50px);
                transform: translate(-50px); }
    #menu-nav #label {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 250px;
      width: 50px;
      background: url("../pics/label.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      background-color: rgba(0, 0, 0, 0.9);
      -webkit-transition: 200ms;
      transition: 200ms; }
    #menu-nav #logo {
      margin: 10px auto 30px; }
    #menu-nav hr {
      margin: 10px auto; }

  /*CONTENT*/
  #content {
    top: 0;
    left: 50px;
    padding-right: 10px;
    margin-top: 0;
    border-radius: 0px; }

  /*CLASSES*/
  .hidden-980 {
    display: block; } }
/*iPad*/
@media screen and (width: 768px) and (height: 1024px) {
  #container {
    font-size: 25px; }

  #menu-nav #logo {
    margin: 70px auto; } }
/*iPad Pro*/
@media screen and (width: 1024px) and (height: 1366px) {
  #container {
    font-size: 27px; }

  #menu-nav {
    left: 0;
    width: 300px;
    -webkit-transform: translate(0);
            transform: translate(0); }
    #menu-nav #label {
      width: 70px; }
    #menu-nav #logo {
      margin: 100px auto; }
    #menu-nav ul {
      margin-top: 20px; }

  #content {
    left: 300px; }

  /*CLASSESS*/
  .hidden-980 {
    display: none; } }
@media screen and (max-width: 500px) {
  /*CLASSES*/
  .phone-order {
    background: none;
    padding: 10px;
    text-align: center; } }
