@charset "utf-8";
/* CSS Document */

.at-floating-card {
  z-index: 999999;
  position: fixed;
  bottom: 20px;
 left: 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
  background: #ffffff;
  max-width: 440px;
  border: 1px solid #eeeeee;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  margin: 0 0 0 20px;
  padding: 30px 20px;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.at-floating-card__thumbnail {
  width: 90px;
  max-width: 90px;
  min-width: 90px;
  
  border-radius: 100%;
  margin: 0 20px 0 0;
  padding: 4px;
  box-sizing: border-box;
  overflow: hidden;
}
.at-floating-card__thumbnail img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 100%;
}
.at-floating-card__title {
  margin: 0 0 6px;
  padding: 0;
  color: #444444;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1;
}
.at-floating-card__sub-title {
  margin: 0 0 6px;
  padding: 0;
  color: #999999;
  font-size: 12px !important;
  font-weight: 600;
}
.at-floating-card__sub-title a {
  color: #cccccc;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.at-floating-card__description {
  margin: 0 0 6px;
  padding: 0;
  color: #999999;
  font-size: 12px;
  line-height: 20px;
}
.at-floating-card__footer {
  color: #666666;
  font-size: 12px;
  font-weight: 600;
}
.at-floating-card__footer span {
  margin: 0 4px;
}
.at-floating-card__footer a {
  color: inherit;
  font-size: 10px;
  text-decoration: none;
}
.at-floating-card__footer a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .at-floating-card {
    flex-direction: column;
    text-align: center;
  }
  .at-floating-card__thumbnail {
    margin: 0 0 20px;
  }
}