:root {
  --primary-color: #981f25;
  --secondary-color: #130606;
}

html,
body {
  position: relative;
  font-size: 16px;
}

body {
  background: #fff;
  color: #fff;
  margin: 0;
  padding: 0;
}
body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  z-index: -1;
}

.floating {
  position: fixed;
  right: 10px;
  bottom: 60px;
  z-index: 9999;
}
.floating li a {
  display: flex;
  padding: 15px 13px 10px;
  font-size: 22px;
  color: #fff;
  font-weight: 900;
  transition: all ease 0.5s;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2em;
  filter: brightness(1);
  text-decoration: none;
}
.floating li a:hover, .floating li a:active, .floating li a:focus {
  filter: brightness(1.2);
  text-decoration: none;
}
.floating li.order a {
  background: url(../images/floating.png) center no-repeat;
  background-size: 100%;
  width: 110px;
  height: 110px;
}
.floating li.fb a {
  background: url(../images/button_fb.png) center no-repeat;
  background-size: 100%;
  width: 105px;
  height: 105px;
  margin-left: 3px;
}

.mobile-button {
  display: none;
}/*# sourceMappingURL=style.css.map */