/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 700px) {
  .mobile-links {
    height: auto !important;
  }
  .menu-link {
    display: none;
  }
  .fa {
    display: none;
  }
  #sharing {
    display: none;
  }
  .connect-title__link {
    display: none;
  }
}

.fat {
  display: inline-block;
  font-family: FontAwesome, Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-stack-1x {
  font-size: 42px;
}

.fa-circle {
  color: #0071bc;
}

.loader {
  border: 16px solid #a7a7a7;
  border-radius: 50%;
  border-top: 16px solid #0071bc;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  margin: auto;
}

.note {
  align-items: center;
  background-color: #eff0f2;
  border-radius: 12px;
  display: flex;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  padding: 0.25em;
}

.share-links {
  align-items: center;
  display: inline-flex;
  margin-left: 1em;
  padding-left: 0;
}

.share-links a {
  align-items: center;
  display: inline-flex;
  font-size: 0;
  justify-content: center;
  text-decoration: none;
}

.share-links a:hover {
  text-decoration: none;
}

.share-links svg,
.share-links div {
  background: white;
  border: 1px solid #0071bc;
  border-radius: 50%;
  box-sizing: content-box;
  color: #0071bc;
  font-size: 20px;
  height: 20px;
  margin: 5px 2px;
  padding: 4px;
  text-align: center;
  width: 20px;
}

.share-links svg:hover,
.share-links div:hover {
  opacity: 0.8;
  color: white;
  background: #0071bc;
}

.share-links svg:visited,
.share-links div:visited {
  color: #0071bc;
}
