body {
  font-family: Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  margin-top: 50px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bolder;
}

p {
  font-size: 1.25rem!important;
  font-weight: 300;
}
p span {
  background: none!important;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  margin-bottom: 30px;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr td:nth-child(2), tr td:nth-child(3) {
/* td:nth-of-type(2), td:nth-of-type(3) { */
  text-align: center;
}

tr:nth-child(even) {
  background-color: #f8f8f8;
}

/* #nav, .navbar { */
#nav {
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: inset 0 0 7px #000;
}

/* Mobile */
/* .navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.5);
    text-align: center;
    font-size: 30px;
} */


.vertical-align {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
}

.block {
  padding: 5px;
  /* background: rgba(0, 0, 0, 0.4); */
  width: 50%;
  height: 100vh;
  position: absolute;
  color: #efefef;
  text-align: center;
  top: 0;
}

.block[data-block-1] {
  left: 0;
  /* border-right: 1px solid #404040; */
}

.block[data-block-2] {
  right: 0;
}

.block .inner {
  /* padding: 30px;
  color: white;
  position: relative;
  border-radius: 4px; */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
}

.block button {
  /* background: rgba(108, 117, 125, 0.4); */
  color: white;
  font-weight: bolder;
}


@media only screen and (max-width: 500px) {
  .block {
    width: 100%;
    position: relative;
    height: auto;
    padding: 30px;
  }

  .block .inner {
    position: relative;
    top: 120px;
  }
}



.block a {
  color: white;
  border-radius: 2px;
  font-weight: bolder;
  border-color: transparent;
  background-image: linear-gradient(to bottom,#5cb85c 0,#419641 100%);
  padding: 10px 20px;
}



/* .block .inner a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
} */

.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -2;
  background-size: cover;
  background-position: center center;
}

.overlay {
  background: rgba(0,0,0,0.6);
  width: 100%;
  z-index: -1;
}

#close-up-overlay .overlay {
  z-index: 1;
  background: rgba(0,0,0,0.9);
}

#close-up-overlay img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
}

.bg-dark {
  background-color: #1b1b1b!important;
}

.white {
  color: white;
}

.black {
  color: black;
  /* text-shadow: 0 0 50px; */
}

.picture-wrapper img {
  margin: 13px 10px;
  cursor: pointer;
}

#close-up-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 111;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  background-color: white;
}

#close-up-overlay div[data-image] {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  margin: 0 auto;
  margin-top: 65px;
  z-index: 1;
  position: relative;
  background-position: center center;
}

.arrow {
  position: fixed;
  top: 50%;
  color: white;
  z-index: 11;
  background: rgba(34, 34, 34, 0.7);
  padding: 20px;
  margin-top: -20px;
  cursor: pointer;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

.arrow span {
  font-weight: bolder;
}

#close-overlay {
  position: fixed;
  top: 66px;
  right: 0;
  background: rgba(34, 34, 34, 0.9);
  font-weight: bolder;
  padding: 10px 20px;
  z-index: 11;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 85px;
  right: 20px;
  font-size: 20px;
}


.thumbnail {
  width: 200px;
  height: 200px;
  opacity: 0;
  display: inline-block;
  background-size: cover;
  cursor: pointer;
  margin: 10px;
}




.fade {
  -webkit-animation: fadein 1.5s forwards; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1.5s forwards; /* Firefox < 16 */
  -ms-animation: fadein 1.5s forwards; /* Internet Explorer */
  -o-animation: fadein 1.5s forwards; /* Opera < 12.1 */
  animation: fadein 1.5s forwards;
}


@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* overwrite */
a:hover {
  text-decoration: none;
}
.btn-secondary {
  border-color: transparent;
  background-image: linear-gradient(to bottom,#5cb85c 0,#419641 100%);
}





.traiteur-page td, .traiteur-page th {
  /* border: 1px solid #f5f5f5; */
  border: none;
  padding: 1px 0;
  border-bottom: 1px dashed #eaeaea;
}

.traiteur-page tr:nth-child(2n) {
  background: none;
}



#cart {
  position: fixed;
  top: 70px;
  right: 30px;
  cursor: pointer;
}

#cart img {
  width: auto;
  height: 70px;
  cursor: pointer;
  margin-top: 10px;
  margin-left: 0px;
}

#cart h3 {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  height: 30px;
  width: 40px;
  line-height: 30px;
  background: rgb(32, 29, 29);
  color: white;
  border-radius: 9%;
  font-size: 100%;
}

#order-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: rgba(239, 239, 239, 0.95);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}


#order-form {
  margin: 0 auto;
  text-align: left;
  max-width: 1000px;
  padding: 50px;
}

#order-form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 5px;
}

#order-form input {
  display: block;
  width: 100%;
  margin: 0 auto;
  /* max-width: 400px; */
  border: 1px solid #ddd;
  padding: 5px;
  outline: none;
  padding: 5px 10px;
}

#order-form textarea {
  border: 1px solid #ddd;
  width: 100%;
  outline: none;
  padding: 10px;
}



.nav-tabs .nav-link {
  color: black;
}

.nav-tabs .nav-link.active {
  color: #419641;
}


.notification {
  margin-top: 70px;
}


/* .shake-it {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  -webkit-animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}


@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
} */


.shake {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}



/* #close-overlay {
  position: absolute;
  top: 85px;
  right: 20px;
  font-size: 20px;
} */

#change-order {
  width: 100%;
  background: #e0e0e0;
  color: #222;
  margin-bottom: 2px;
  box-shadow: inset 0 0 4px;
}