@import url(https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&family=Montserrat:wght@400;500&display=swap);
@font-face {
  font-family: "BrownhillScript";
  src: url("/fonts/BrownhillScript.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --primary-font: "Montserrat", sans-serif;
  --secondary-font: "Josefin Sans", sans-serif;
  --script-font: "BrownhillScript", script;
  --title-font-size: 3.125em;
  --green: #c1cb6e;
  --orange: #f0ae61;
  --blue-dark: #043357;
  --blue-mid: #0d676d;
  --blue-light: #69999f;
  --grey-darker: #d0d0d0;
  --grey-dark: #e8e8e8;
  --grey-light: #ededed;
  --grey-light-rgb: 237, 237, 237;
  --grey-lighter: #f6f6f6;
  --black: #222127;
  --black-rgb: 34, 33, 39;
  --grid-padding: 30px;
  --grid-gap: 15px;
  --inside-padding: 100px;
  --inside-padding-horiz: 20px;
}

@media screen and (max-width: 600px) {
  :root {
    --title-font-size: 2em;
  }
}
@media screen and (max-width: 400px) {
  :root {
    --grid-padding: 20px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* ::-moz-selection {
  background: var(--green);
  color: var(--black);
}
* ::selection {
  background: var(--green);
  color: var(--black);
}

html {
  font-family: var(--primary-font);
  font-size: 16px;
  height: 100%;
  color: var(--black);
  background: var(--grey-lighter);
  transition: background-color 1s;
}

#app {
  height: 100%;
  display: grid;
  grid-template-areas: "sidebar content";
  grid-template-columns: 225px 1fr;
}
@media screen and (max-width: 1800px) {
  #app .grid-main {
    grid-template-columns: 2fr 3fr !important;
  }
  #app .grid-dish-percentage {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (max-width: 1200px) {
  #app .grid-main {
    display: block;
  }
  #app .grid-list-resturants {
    margin-bottom: var(--grid-gap);
  }
  #app .grid-data-resturants {
    height: -moz-fit-content;
    height: fit-content;
  }
  #app .grid-data-outer {
    height: -moz-fit-content;
    height: fit-content;
  }
  #app .grid {
    gap: 2px !important;
  }
}
@media screen and (max-width: 924px) {
  #app {
    display: block;
  }
  #app .menu {
    width: 100%;
    height: 150px;
  }
}
@media screen and (max-width: 600px) {
  #app .grid-data-outer {
    display: block;
  }
  #app .grid-data-outer .grid {
    display: block;
  }
  #app .grid-data-outer .grid .grid-item, #app .grid-data-outer .grid .grid-item--percentage {
    margin-bottom: 2px;
  }
  #app .grid-data-outer .grid-data-resturants > .grid-item .grid:first-child, #app .grid-data-outer .grid-data-resturants > .grid-item--percentage .grid:first-child {
    display: grid;
  }
  #app .grid-list-resturants {
    margin-bottom: 2px;
  }
  #app .dashboard {
    padding-left: 2px;
    padding-right: 2px;
  }
  #app .content__inside, #app .content__inside--small {
    padding-left: 2px;
    padding-right: 2px;
  }
  #app .content__header {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 20px;
    display: block;
  }
  #app .notice {
    margin-top: 20px;
  }
  #app .menu-list {
    display: block;
    gap: 2px;
  }
  #app .menu-list .menu {
    margin-bottom: 2px;
    overflow: hidden;
  }
}
@media screen and (max-width: 400px) {
  #app .sidebar {
    width: 100%;
  }
  #app .grid-item__value {
    font-size: 3em;
  }
  #app .site-list li {
    display: block;
  }
  #app .site-list li p {
    text-align: left;
  }
  #app .site-list li > p {
    margin-left: 48px;
  }
  #app .site-list li:first-child {
    display: grid;
  }
  #app .site-list li:first-child h3:last-child {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  :root {
    --title-font-size: 2em;
  }
  .login form {
    width: 100%;
    padding: 20px;
  }
  .login input {
    width: 100% !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
  margin-bottom: 10px;
}

.content__inside, .content__inside--small {
  padding: var(--inside-padding) var(--inside-padding-horiz);
  max-width: 1800px;
  margin: 0 auto;
}
.content__inside--small {
  max-width: 1200px;
}
.content__header {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.content__header h1 {
  font-size: var(--title-font-size);
  font-family: var(--secondary-font);
  font-weight: 700;
}
.content__header p {
  color: var(--black);
  opacity: 0.5;
}

a {
  color: currentColor;
  text-decoration: none;
  transition: all 0.3s ease;
}

input,
select,
textarea,
button {
  font-family: var(--primary-font);
}

.button, .button--danger, .button--disabled, .button--bordered, button,
input[type=submit] {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px;
  background: var(--green);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1em;
  border: 1px solid var(--green);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.button:hover, .button--danger:hover, .button--disabled:hover, .button--bordered:hover, button:hover,
input[type=submit]:hover {
  filter: brightness(0.9);
}
.button__text {
  transition: 0.3s opacity ease;
}
.button__loading, .button__complete, .button__error {
  transition: 0.3s ease;
}
.button__loading, .button__complete, .button__error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  opacity: 0;
}
.button__loading svg, .button__complete svg, .button__error svg {
  animation: loading 1.2s infinite linear;
}
.button__complete svg, .button__error svg {
  transform: scale(0) rotate(-180deg);
  animation: none;
  transition: 0.3s ease;
}
@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.button.loading, .loading.button--danger, .loading.button--disabled, .loading.button--bordered, button.loading,
input.loading[type=submit] {
  pointer-events: none;
}
.button.loading .button__loading, .loading.button--danger .button__loading, .loading.button--disabled .button__loading, .loading.button--bordered .button__loading, button.loading .button__loading,
input.loading[type=submit] .button__loading {
  opacity: 1;
}
.button.loading .button__text, .loading.button--danger .button__text, .loading.button--disabled .button__text, .loading.button--bordered .button__text, button.loading .button__text,
input.loading[type=submit] .button__text {
  opacity: 0;
}
.button.loading .button__complete, .loading.button--danger .button__complete, .loading.button--disabled .button__complete, .loading.button--bordered .button__complete, button.loading .button__complete,
input.loading[type=submit] .button__complete {
  opacity: 0;
}
.button.complete, .complete.button--danger, .complete.button--disabled, .complete.button--bordered, button.complete,
input.complete[type=submit] {
  pointer-events: none;
}
.button.complete .button__loading, .complete.button--danger .button__loading, .complete.button--disabled .button__loading, .complete.button--bordered .button__loading, button.complete .button__loading,
input.complete[type=submit] .button__loading {
  opacity: 0;
}
.button.complete .button__text, .complete.button--danger .button__text, .complete.button--disabled .button__text, .complete.button--bordered .button__text, button.complete .button__text,
input.complete[type=submit] .button__text {
  opacity: 0;
}
.button.complete .button__complete, .complete.button--danger .button__complete, .complete.button--disabled .button__complete, .complete.button--bordered .button__complete, button.complete .button__complete,
input.complete[type=submit] .button__complete {
  opacity: 1;
}
.button.complete .button__complete svg, .complete.button--danger .button__complete svg, .complete.button--disabled .button__complete svg, .complete.button--bordered .button__complete svg, button.complete .button__complete svg,
input.complete[type=submit] .button__complete svg {
  transform: scale(1);
}
.button.error, .error.button--danger, .error.button--disabled, .error.button--bordered, button.error,
input.error[type=submit] {
  pointer-events: none;
  background: var(--orange);
  border: 1px solid var(--orange);
  animation: 0.5s shakeX;
}
.button.error .button__loading, .error.button--danger .button__loading, .error.button--disabled .button__loading, .error.button--bordered .button__loading, button.error .button__loading,
input.error[type=submit] .button__loading {
  opacity: 0;
}
.button.error .button__text, .error.button--danger .button__text, .error.button--disabled .button__text, .error.button--bordered .button__text, button.error .button__text,
input.error[type=submit] .button__text {
  opacity: 0;
}
.button.error .button__error, .error.button--danger .button__error, .error.button--disabled .button__error, .error.button--bordered .button__error, button.error .button__error,
input.error[type=submit] .button__error {
  opacity: 1;
}
.button.error .button__error svg, .error.button--danger .button__error svg, .error.button--disabled .button__error svg, .error.button--bordered .button__error svg, button.error .button__error svg,
input.error[type=submit] .button__error svg {
  transform: scale(1);
}

@keyframes shakeX {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-2px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(2px, 0, 0);
  }
}
.button--bordered {
  background: transparent;
}
.button--bordered:hover {
  background: var(--green);
}

.button--disabled {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.5;
}
.button--disabled .button__text {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.button--danger {
  background: var(--orange);
  border: 1px solid var(--orange);
}

input,
textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: solid 1px #e5e5e5;
  outline: 0;
  font-family: var(--primary-font);
  font-size: 1em;
  width: 100%;
  background: #ffffff;
  box-sizing: border-box;
}

textarea {
  width: 100%;
  height: 150px;
  line-height: 150%;
}

input:hover,
textarea:hover,
input:focus,
textarea:focus {
  border-color: #c9c9c9;
}

label {
  margin-left: 0px;
  color: #999999;
}

input[type=checkbox] {
  min-width: 20px;
  width: 20px;
  min-height: 20px;
  height: 20px;
  accent-color: var(--green);
  margin: 0 10px 0 0;
  opacity: 0.3;
}
input[type=checkbox]:checked {
  opacity: 1;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--grey-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--secondary-font);
  transition: all 0.5s;
}
@media screen and (max-width: 924px) {
  .sidebar {
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    overflow: hidden;
    position: fixed;
    z-index: 11;
    opacity: 0;
    padding-top: 80px;
  }
  .sidebar.active {
    left: 0;
    opacity: 1;
    transition: all 0.5s;
  }
  .sidebar .sidebar__logo {
    display: none;
  }
}
.sidebar__logo {
  margin-top: 50px;
  padding: 30px;
  width: 100%;
  height: auto;
}
.sidebar__nav {
  width: 100%;
  height: auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sidebar__nav a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 30px;
  text-decoration: none;
  color: rgba(var(--black-rgb), 0.5);
  border-left: 5px solid var(--grey-light);
  font-family: var(--secondary-font);
  letter-spacing: 2px;
  margin: 20px 0;
  transition: all 0.3s ease;
}
.sidebar__nav a svg {
  min-width: 25px;
  max-width: 25px;
  margin-right: 20px;
}
.sidebar__nav a:hover, .sidebar__nav a.router-link-active {
  color: var(--black);
  border-left: 5px solid currentColor;
}
.sidebar__user {
  padding: 10px 30px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sidebar__user img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin-right: 10px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  background-image: url(/images/favicon.png?27f2072e2613a141ff5bdc2a705a46a1);
  background-size: cover;
}
.sidebar__logout {
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.sidebar__logout svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.sidebar__logout:hover {
  transform: scale(0.95);
  opacity: 0.8;
}

.developed-by {
  padding: 30px;
  font-size: 13px;
}

.hamburger {
  width: 50px;
  height: 50px;
  display: none;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
  margin: 15px 20px;
  z-index: 100;
  position: fixed;
  cursor: pointer;
  transition: all 0.5s;
}
.hamburger .line {
  width: 100%;
  height: 2px;
  background-color: var(--black);
  opacity: 0.5;
  transition: opacity 0.5s;
}
@media screen and (max-width: 924px) {
  .hamburger {
    display: flex;
  }
}

.hamburger:hover .line {
  opacity: 1;
}

.topbar {
  width: 100%;
  background-color: var(--grey-light);
  display: none;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  z-index: 99;
  height: 80px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.topbar.active {
  box-shadow: none;
}
.topbar .logo-container {
  margin-right: 20px;
}
.topbar .logo-container .logo-top {
  width: auto;
  height: 40px;
  opacity: 0.5;
}
@media screen and (max-width: 924px) {
  .topbar {
    display: flex;
  }
}

.login {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.login:before {
  content: "";
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--black);
  opacity: 0.85;
}
.login img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.login .login-form {
  max-width: 450px;
}
@media (max-width: 924px) {
  .login .login-form {
    width: 100%;
    padding: 0 20px;
  }
}
.login .login-form > svg {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
@media (max-width: 924px) {
  .login .login-form > svg {
    width: 250px;
    margin: 0 auto 30px;
    display: block;
  }
}
.login .login-form label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.login .login-form input {
  width: 450px;
  padding: 5px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.login .login-form button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 10px;
  border: 1px solid #fff;
  background: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.login .login-form button:hover {
  background: #fff;
  color: #000;
}
.login__field {
  margin-bottom: 50px;
}

.grid-item, .grid-item--percentage {
  background: #fff;
  padding: var(--grid-padding);
  overflow: auto;
}
.grid-item--percentage {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  overflow: hidden;
}
.grid-item--percentage__copy {
  text-align: center;
}
.grid-item__value {
  font-size: 5em;
  font-family: var(--secondary-font);
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-list {
  list-style: none;
}
.site-list li {
  display: grid;
  align-items: center;
  grid-template-areas: "site updated";
  grid-gap: 20px;
  padding: 10px 0;
}
.site-list li .site {
  display: flex;
  align-items: center;
}
.site-list li .site img {
  margin-right: var(--grid-gap);
  width: 32px;
  height: 32px;
}
.site-list li :last-child {
  text-align: right;
}

.link-add {
  cursor: pointer;
  transition: 0.3s ease;
}
.link-add span {
  color: var(--green);
  display: inline-block;
  transition: 0.3s ease;
}
.link-add:hover span {
  transform: scale(1.1);
}

.handle {
  width: 20px;
  cursor: grab;
}

.sortable-chosen .handle {
  cursor: grabbing;
}

.sortable-ghost {
  opacity: 0.1;
}

.toggle-collapse {
  padding: 10px;
  cursor: pointer;
  transform: none;
  transform-origin: center;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}
.toggle-collapse.collapsed {
  transform: rotate(-90deg);
}
.toggle-collapse svg {
  width: 15px;
  height: 15px;
  transition: 0.3s ease;
}
.toggle-collapse:hover svg {
  transform: scale(1.1);
}

.can-edit {
  cursor: pointer;
  transition: 0.3s ease;
}
.can-edit:hover {
  opacity: 0.5;
}

.flex {
  display: flex;
  align-items: center;
}
