
/* 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);
}


#avatar {
  transform: translatex(-50%);
  position: absolute;
  top: -4.5rem;
  z-index: 1000;
}

.social-icon {
  font-size: 32px;
  padding: 10px;
}
.social-icon-div {
  padding-bottom: 30px;
}
.social-icon{color:var(--title-color);}

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

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1em;
  min-height: 58px;
  line-height: 58px;
  cursor: pointer;
  width: 100%;
  max-width: 600px;
  border-radius: 14px;
  margin-bottom: 13px;

    color: #ffffff;
    background-color:rgba(83,134,139, 0.2);
    box-shadow: 0 0 7px -5px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);

  }
.button:hover {
  color: #fff;
}

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

.icon {
  right: 10px;
  bottom: 2px;
  position: relative;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

svg {
  color: white !important;
}