/* General */
body{
  color: #f9f6f6 !important;
  background-color: #0D0D0D;
  min-height: 100vh; 
  background-image: url(../imgs/13.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Karla", sans-serif;
}
i{
  cursor: pointer;
}
.loading-screen{
  z-index: 999;
  display: flex;
}
.inner-loading-screen{
  position: absolute;
  z-index: 9;
  background-color: #0D0D0D;
  display: flex;
}
.loader {
  position: relative;
  height: 40px;
  width: 6px;
  color: #FFF;
  animation: paddles 0.75s ease-out infinite;
}
.loader:before {
  content: "";
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 15px;
  width: 12px;
  height: 12px;
  background-color: #de3500;
  border-radius: 50%;
  animation: ballbounce 0.6s ease-out infinite;
}
@keyframes paddles {
  0% { box-shadow: -25px -10px, 25px 10px}
  50% { box-shadow: -25px 8px, 25px -10px }
  100% { box-shadow: -25px -10px, 25px 10px}
}
@keyframes ballbounce {
  0% { transform: translateX(-20px) scale(1, 1.2) }
  25% { transform: scale(1.2, 1) }
  50% { transform: translateX(15px) scale(1, 1.2) }
  75% { transform: scale(1.2, 1) }
  100% { transform: translateX(-20px) }
}
/* Aside Menu */
.side-nav-menu {
  z-index: 99;
}
.side-nav-menu .links{
  cursor: pointer;
}
.nav-tab{
  background-color: #0D0D0D;
}
.logo{
  width: 50px;
}
.icons a i {
  font-size: 20px;
}
.links li {
  transition: color 0.3s;
}
.links li:hover {
  color: #c5ab38;
}
.icons a ,
.footer a {
  color: #fff;
  text-decoration: none;
}
.icons a:hover , 
.footer a:hover {
  color: #c5ab38;
}

/* Meals */
.meal-layer{
  width: 100%;
  height: 100%;
  background-color: rgba(249, 246, 246, 0.5);
  top: 100%;
  transition: .5s;
}
.meal:hover .meal-layer{
  top: 0;
}
.alert{
  width: fit-content;
}
.main-meals .areas {
  background: linear-gradient(100deg,rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

/* Inputs */
.search input::placeholder {
  color: #fff;
}
.form-control {
  border: solid 0.3px #ffea32e1;
}
.form-control:focus {
  box-shadow: 0 0 10px #ffea32e1; 
  outline: none; 
  border: 1px solid transparent;
}

/* Contact */
.contact-inputs {
  background: linear-gradient(100deg,rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(4px);
  cursor: pointer;
}