/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––

- Rounded user avatars
- Buttons
- Brand Styles

*/


/* Rounded avatars
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Disable this if you don't want rounded avatars for users */
.rounded-avatar {
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 0px 3px var(--button-background-color);
  box-shadow: 0px 0px 0px 3px var(--button-background-color);
  background-color: var(--button-background-color) !important;
  width: var(--image-width);
  height: var(--image-height);
}

@-webkit-keyframes rainbow {
  0% {
    background-position: 0% 82%
  }

  50% {
    background-position: 100% 19%
  }

  100% {
    background-position: 0% 82%
  }
}

@-moz-keyframes rainbow {
  0% {
    background-position: 0% 82%
  }

  50% {
    background-position: 100% 19%
  }

  100% {
    background-position: 0% 82%
  }
}

@-o-keyframes rainbow {
  0% {
    background-position: 0% 82%
  }

  50% {
    background-position: 100% 19%
  }

  100% {
    background-position: 0% 82%
  }
}

@keyframes rainbow {
  0% {
    background-position: 0% 82%
  }

  50% {
    background-position: 100% 19%
  }

  100% {
    background-position: 0% 82%
  }
}


.social-icon {
  font-size: 32px;
  padding: 10px;
}

.social-icon-div {
  padding-bottom: 30px;
}

.social-icon {
  color: #000;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1em;
  color: var(--button-text-color);
  min-height: 58px;
  line-height: 58px;
  cursor: pointer;

  color: var(--button-text-color);
  background-color: var(--button-background-color);
  width: 100%;
  max-width: 600px;
  border-radius: 14px;
  margin-bottom: 20px !important;
  font-weight: 350;
  /* letter-spacing: 0.3rem; */
}

.button {
  display: inline-block;
  transition-duration: 0.3s;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.button:hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Brand Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.icon {
  right: 10px;
  bottom: 2px;
  position: relative;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  filter: invert(1);
}

svg {
  filter: invert(0%) sepia(4%) saturate(5722%) hue-rotate(188deg) brightness(106%) contrast(103%);
}