/*
Theme Name: First-A
Author: Elliot Louveau
Description: First-A
Version: 1.2
Tags: First-A
*/

#loading {
  position: fixed;
  z-index: 100;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(100, 100, 100, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
#icon {
  width: 60px;
  height: 60px;
  border: 10px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 25px 2px transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(180deg);
    opacity: 1;
  }
  to {
    transform: rotate(360deg);
    opacity: 0.2;
  }
}

/*------------------------------------------------------------------------------------
*----------------------------- Footer ------------------------------------
------------------------------------------------------------------------------------*/
/* line 176, ../sass/partials/_website.scss */
footer {
  padding: 20px;
  color: white !important;
}
footer * {
  list-style: none;
  text-decoration: none;
  font-size: 1rem !important;
}
footer .container {
  max-width: 1260px;
  padding: 0;
  width: 100%;
}
footer .container div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  footer .container div {
    justify-content: flex-start;
  }
}
footer .container div:last-child {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  footer .container div:last-child {
    flex-direction: row;
    justify-content: space-between;
  }
}
/* line 188, ../sass/partials/_website.scss */
footer .logo-footer {
  display: inline-block;
  height: 30px;
}
/* line 189, ../sass/partials/_website.scss */
footer .logo-footer img,
footer .logo-footer svg {
  max-height: 100%;
  min-width: 90px;
  min-height: 30px;
}
footer .editor {
  display: flex;
  align-items: center;
}
footer #nav-footer {
  align-self: flex-start;
}
footer #nav-footer ul {
  display: flex;
  padding: 0;
  margin: 0;
}
footer #nav-footer ul li:last-child {
  margin: 0 0 0 20px;
}
footer .logo-guide {
  height: 44px;
  margin: 0 0 0 20px;
}
footer .link-guide,
footer .link-guide * {
  font-size: 1.2rem !important;
  margin: 0 0 20px 0;
}

footer span {
  color: white !important;
}

footer svg {
  fill: white !important;
}
