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

- Rounded user avatars
- Social icons
- Buttons
- Brand Styles

*/


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

/* Disable this if you don't want rounded avatars for users */
.rounded-avatar {
  border-radius: 50%;
}


/* Social icon
–––––––––––––––––––––––––––––––––––––––––––––––––– */

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


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

.button,
button {
  display: inline-block;
  text-decoration: none;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  width: 300px;
  font-weight: 700;
  line-height: 20px;
  padding: 14px 12px 12px 12px;
  letter-spacing: 0.1px;
  white-space: wrap;
  outline: none;
  border-radius: 8px;
  cursor: pointer;
 }
button:hover,
.button:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary {
  color: #FFF;
  filter: brightness(90%) }
.button.button-primary:hover,
.button.button-primary:focus {
  color: #FFF;
  filter: brightness(90%) }


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

.icon {
  padding: 0px 8px 3.5px 0px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}


/* Brand Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* custom link button*/
.button.button-custom {
  color: #FFFFFF;
  background-color: #FFFFFF;
  background-image: linear-gradient(
    -135deg,
    #0f0c29,
    #302b63,
    #24243e
  );
}
.button.button-custom:hover,
.button.button-custom:focus {
  filter: brightness(90%);
}

/* Default (this is great for your own brand color!) */
.button.button-default {
  color: #FFFFFF;
  background-color: #0085FF;
}
.button.button-default:hover,
.button.button-default:focus {
  filter: brightness(90%);
}

/* LittleLink Custom */
.button.button-littlelink-custom {
  color: #FFFFFF;
  background-image: linear-gradient(
    20deg,
    #F70FFF,
    #896FF0,
    #12D6DF
  );
}
.button.button-littlelink-custom:hover,
.button.button-littlelink-custom:focus {
  filter: brightness(90%);
}

/* Website */
.button.button-website {
  color: #ffffff;
  background-color: #000000;
}

/* Custom Website */
.button.button-custom_website {
  color: #ffffff;
  background-color: #000000;
}

.button.button-web:hover,
.button.button-web:focus {
  filter: brightness(90%);
}
