/*
This is your custom Style Sheet. It's the last css resource loaded so you can
easily overwrite css selectors from other style sheets.
*/

.share-profile {
position: relative;
display: inline-block;
}

.share-profile .share-btn, 
.share-profile .share-option {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-profile .share-btn {
  color: var(--brand-base);
  cursor: pointer;
}

.share-profile .share-modal {
    position: absolute;
    top: 150%;
    display: none;
    gap: .25rem;
    padding: .5rem;
    background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
    border-radius: 8px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.share-profile .share-modal:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: -5px;
    left: 50%;
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    background: var(--color-white-dark-5, rgb(242.25, 242.25, 242.25));
}

.share-profile .share-modal.open { 
  display:flex; }

.share-profile .share-option {
  width:28px; height:28px;
  border-radius:50%;
  font-weight:bold;
  font-size:14px;
  cursor:pointer;
  color:#fff;
}

.profile-share-links {
    width: 32px;
    height: 32px;
    border-radius: 3px;
    display: flex;
    text-align: center;
    line-height: 25px;
    transition: .2s ease-in-out;
    margin-right: 1px;
    border: 1px solid #ccc;
    background: white;
    color: var(--neutral-base);
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

a.profile-share-links:hover {
    background: var(--highlight-base);
    text-decoration: none;
}

a.profile-share-links .svg-twitter {
    fill: var(--neutral-base); 
}

a.profile-share-links:hover .svg-twitter {
    fill: white;
}
