/*  General  */
video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}


body {
  max-height: 100vh;
  max-width: 100vw;
  background-color: rgba(23, 23, 23, 0.106);
}

html {
  font-family: "Fredoka One", cursive, sans-serif;
  font-size: 130%;
}

/* logo */

#base {
  float: right;
  display: inline-flex;
}
#btn-base {
  color: red;
  text-decoration: none;

  margin: 30% 10%;
}

#btn-panier {
  margin-left: 2px;
  color: #fff;
  text-decoration: none;
  margin: 30% 10%;
}

/* navbar */

.container nav {
  position: relative;
  text-align: center;
  display: flex;
  align-items: left;
  justify-content: center;
}

.container ul {
  margin-top: 20px;
}
.container ul .nav-link {
  color: rgb(255, 255, 255);
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Fredoka One", cursive, sans-serif;
}

.tab-content {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: end;
}

.btn-order {
  color: #ffffff;
}
.btn-order:hover {
  color: #ff0505;
}

.logo {
  position: relative;
  font-family: "Fredoka One", cursive, sans-serif;
  color: white;
  text-transform: uppercase;
  max-width: 80vw;
}
.logo .logo-head {
  font-size: 3vw;
  text-align: left;
  word-wrap: none;
  width: 50vw;
}
.logo .logo-head img {
  max-width: 10vw;
}

.img-thumbnail {
  position: relative;
  margin-bottom: 20px;
}
.img-thumbnail img {
  background: #ffd501;
  width: 100%;
}
.img-thumbnail .price {
  background: #5cb85c;
  box-shadow: 0 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-shadow: 2px 2px #333;
  position: absolute;
  right: -10px;
  top: 16px;
  padding: 5px 10px;
  font-size: 20px;
  border-radius: 3px;
}
.img-thumbnail .price:before {
  border: 4px solid transparent;
  border-bottom: 4px solid #4a934a;
  border-left: 4px solid #4a934a;
  content: "";
  position: absolute;
  right: 1px;
  top: -8px;
}
.img-thumbnail .caption {
  padding: 9px;
}
.img-thumbnail .caption h4 {
  color: #e7480f;
  font-size: 20px;
  font-weight: bold;
}
.img-thumbnail .caption p {
  font-size: 22px;
  font-weight: 500;
}
.img-thumbnail .btn-order {
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  background-color: #e7480f;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}
.img-thumbnail .btn-order:hover,
.img-thumbnail .btn-order:focus {
  color: #fff;
  background-color: #c13c0d;
  transform: scale(1.1);
}

/* __________ Admin ______________*/

#admin {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  font-size: 14sp;
  padding: 50px;
}
#admin .heading h3 {
  text-align: center;
  margin: 5px;
}
#admin .heading a {
  margin-left: 60%;
  margin: 5px;
}
#admin table{
  text-align: center;
}


/*_____View___*/

#admin_view {
  background-color: #fff;
  padding: 0px;
  border-radius: 10px;
  position: relative;
  font-size: 14sp;
}
.view {
  font-family: "Fredoka One", cursive, sans-serif;
  font-size: 18sp;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
}
.view-item {
  color: #c13c0d;
}

/*_____Insert____*/

#add {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.help {
  font-family: "Fredoka One", cursive, sans-serif;
  color: #c13c0d;
}

.delete .form-actions {
  padding: 50px;
  border-radius: 10px;
  position: relative;
  font-size: 14sp;
}

/* ___________ Panier_________  */
.panier {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  position: relative;
}
.input-sm {
  width: 3em;
}
.text-right {
  margin-left: 77%;
  font-size: 1rem;
  font-weight: 800;
}

.container-payment {
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  position: relative;
  font-size: 14sp;
}

.payment {
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  position: relative;
  width: 60%;
}
.payment form input {
  width: 100%;
  margin-left: 50%;
  margin-bottom: 10px;
}
.payment form label {
  width: 100%;
  margin-left: 50%;
  font-weight: bold;
}

/*  screen   */

@media screen and (max-width: 992px) {
  .container ul .nav-link {
    font-weight: 100;
    font-size: 70%;
    font-family: "Fredoka One", cursive, sans-serif;
  }
  .img-thumbnail .caption p {
    font-size: 18px;
    font-weight: 500;
  }
}
