/* ==========================================
   SHARE BUTTON
   ========================================== */

.share-wrapper {
    position: relative;
    display: inline-block;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 24px;

    border: 0;
    border-radius: 30px;

    background: #1f176f;
    color: #fff;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    transition: all 0.25s ease;
}

.share-btn i {
    font-size: 15px;
}

.share-btn:hover {
    background: #15104f;
}


/* ==========================================
   SHARE MENU
   ========================================== */

.share-menu {
    position: absolute;
    right: -7em;
    top: calc(75% + 5px);
    width: 220px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.share-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ==========================================
   TITLE
   ========================================== */

.share-title {
    padding: 8px 10px 12px;

    font-size: 14px;
    font-weight: 600;

    color: #333;

    border-bottom: 1px solid #eee;

    margin-bottom: 6px;
}


/* ==========================================
   SHARE OPTIONS
   ========================================== */

.share-option {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 10px;

    border: 0;
    border-radius: 9px;

    background: transparent;

    color: #333;

    font-family: inherit;
    font-size: 14px;

    text-decoration: none;

    cursor: pointer;

    box-sizing: border-box;

    transition: background 0.2s ease;
}

.share-option:hover {
    background: #f4f4f4;
}


/* ==========================================
   FONT AWESOME ICON
   ========================================== */

.share-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    flex-shrink: 0;
}

.share-icon i {
    font-size: 16px;
}


/* ==========================================
   SOCIAL MEDIA ICON COLOURS
   ========================================== */

.whatsapp .share-icon {
    background: #25d366;
    color: #fff;
}

.facebook .share-icon {
    background: #1877f2;
    color: #fff;
}

.twitter .share-icon {
    background: #000;
    color: #fff;
}

.linkedin .share-icon {
    background: #0a66c2;
    color: #fff;
}

.email .share-icon {
    background: #555;
    color: #fff;
}

.copy-link .share-icon {
    background: #1f176f;
    color: #fff;
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 600px) {

    .share-menu {
        right: auto;
        left: 0;
        width: 210px;
    }

}