.vcard-contact-advanced {
  position: absolute;
  width: 500px;
  max-width: 90%;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
  color: black;
}

.vcard-contact-advanced .lnk-wrapper
{
  box-shadow: 0 2rem 2rem -3rem rgb(0 45 64 / 68%), 0 0rem 8rem 0 rgba(0, 45, 64, 0.1);
  padding: 20px;
  border-radius: 30px;
}

@media (max-width: 767px) {
  .vcard-contact-advanced {
    top: 5%;
    transform: translate(-50%, 0);
    padding: 20px 5px;
  }
}
.vcard-contact-advanced .lnk-wrapper > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 5px;
}
.vcard-contact-advanced .lnk-wrapper > header .company-logo {
  width: 200px;
  height: 112.5px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.vcard-contact-advanced .lnk-wrapper > header .lnk-btn {
  height: fit-content;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.18);
  transition: 0.3s all;
  min-width: fit-content;
  margin: 15px 0;
}
.vcard-contact-advanced .lnk-wrapper > header .lnk-btn .lnk-img-white {
  display: none;
}
.vcard-contact-advanced .lnk-wrapper > header .lnk-btn:hover {
  background-color: #3395D1;
  color: #FFF;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.vcard-contact-advanced .lnk-wrapper > header .lnk-btn:hover .lnk-img-rose {
  display: none;
}
.vcard-contact-advanced .lnk-wrapper > header .lnk-btn:hover .lnk-img-white {
  display: block;
}
.vcard-contact-advanced .lnk-wrapper > header .lnk-btn span {
  color: black;
  font-weight: 600;
}
.vcard-contact-advanced .profile-card .pers-info {
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  height: 150px;
}
.vcard-contact-advanced .profile-card .pers-info__picture {
  width: 150px;
  height: inherit;
  background-size: cover;
  background-position: center;
}
@media (min-width: 576px) {
  .vcard-contact-advanced .profile-card .pers-info__picture {
    min-width: 150px;
  }
}
.vcard-contact-advanced .profile-card .pers-info .pers-info-details-wrapper {
  background-color: #3395D1;
  height: inherit;
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.vcard-contact-advanced .profile-card .pers-info__details {
  padding: 10px;
  flex-grow: 1;
  font-size: 1.2em;
  font-weight: 600;
}
.vcard-contact-advanced .profile-card .pers-info__details b,
.vcard-contact-advanced .profile-card .pers-info__details span,
.vcard-contact-advanced .profile-card .pers-info__details small {
  display: block;
}
.vcard-contact-advanced .profile-card .pers-info__details .company {
  color: white;
  font-size: 1.2em;
}
.vcard-contact-advanced .profile-card .pers-info__details .function {
  font-size: 0.9em;
}
.vcard-contact-advanced .profile-card .container {
  width: 400px;
  max-width: 100%;
  margin: auto;
  font-size: 1.2em;
}
.vcard-contact-advanced .profile-card .container .share-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0;
  margin: 10px 0;
}
.vcard-contact-advanced .profile-card .container .share-links img {
  width: 50px;
}
.vcard-contact-advanced .profile-card .container .share-links .lnk-btn-display-contact-form {
  cursor: pointer;
}
.vcard-contact-advanced .profile-card .container .description .label,
.vcard-contact-advanced .profile-card .container .custom-link .label {
  margin-bottom: 10px;
  display: block;
}
.vcard-contact-advanced .profile-card .container .custom-link {
  margin: 50px 0;
}
.vcard-contact-advanced .profile-card .container .custom-link__body {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.vcard-contact-advanced .profile-card .container .custom-link__body img {
  width: 60px;
  margin-right: 10px;
}
.vcard-contact-advanced .profile-card .container .social-media .label {
  margin-bottom: 15px;
  display: block;
}
.vcard-contact-advanced .profile-card .container .social-media__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  margin-left: -35px;
  margin-right: -35px;
}
.vcard-contact-advanced .profile-card .container .social-media__links .link {
  padding: 4px;
  display: block;
  margin: auto;
}
.vcard-contact-advanced .profile-card .container .social-media__links .link img {
  width: 45px;
}
.vcard-contact-advanced .share-dialog {
  position: absolute;
  top: 100px;
  left: 50%;
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-sizing: inherit;
  transform: translate(-50%, 0%);
  box-shadow: 0 1rem 7rem rgba(0, 0, 0, 0.3882352941);
  display: none;
  width: 450px;
}
.vcard-contact-advanced .share-dialog,
.vcard-contact-advanced .share-dialog .hidden {
  display: none;
}
.vcard-contact-advanced .share-dialog svg {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.vcard-contact-advanced .share-dialog button, .vcard-contact-advanced .share-dialog .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: capitalize;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 4px;
  border: 1px solid #ddd;
  cursor: pointer;
}
.vcard-contact-advanced .share-dialog button:hover, .vcard-contact-advanced .share-dialog .button:hover {
  border-color: #cdd;
}
.vcard-contact-advanced .share-dialog .share-button, .vcard-contact-advanced .share-dialog .copy-link {
  padding-left: 30px;
  padding-right: 30px;
}
.vcard-contact-advanced .share-dialog .share-button, .vcard-contact-advanced .share-dialog .share-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vcard-contact-advanced .share-dialog .share-dialog {
  display: none;
  width: 95%;
  max-width: 500px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: -1;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 4px;
  background-color: #fff;
}
.vcard-contact-advanced .share-dialog.is-open {
  display: block;
  z-index: 2;
}
.vcard-contact-advanced .share-dialog header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.vcard-contact-advanced .share-dialog .targets {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
}
.vcard-contact-advanced .share-dialog .close-button {
  background-color: transparent;
  border: none;
  padding: 0;
}
.vcard-contact-advanced .share-dialog .close-button svg {
  margin-right: 0;
}
.vcard-contact-advanced .share-dialog .link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  background-color: #eee;
}
.vcard-contact-advanced .share-dialog .pen-url {
  margin-right: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.vcard-contact-advanced .share-dialog .pen-url input {
  width: 100%;
  background-color: initial;
  border: none;
}

/* Start custom links */

.vcard-contact-advanced .lnk-custom-links-wrapper
{
  margin: 20px 0 40px;
  padding-left: 0;
  padding-right: 0;
}

.vcard-contact-advanced .profile.lnk-social-media-card .social-media-links
{
  display: flex;
  flex-direction: column;
  text-align: initial;
  padding: 0 20px;
  gap: 20px;
}

.vcard-contact-advanced .profile.lnk-social-media-card .social-media-links a
{
  display: flex;
  align-items: center;
  gap: 20px;
}

.vcard-contact-advanced .profile.lnk-social-media-card a img
{
  width: 25px
}

.vcard-contact-advanced .profile.lnk-social-media-card .lnk-label
{
  color: #5f5f5f;
  font-size: .96em;
}

/* End custom links */

/*# sourceMappingURL=advanced-vcard.css.map */

