/* ARTICLE SHARING */
.share-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

#article-share-btn-row {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

/* Dropdown Button */
.article-share-btn {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    width: 26px;
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
    background-color: #222;
    border: none;
    border-radius: 10%;
    cursor: pointer;
}

.article-share-btn svg {
    fill: white;
}

/* Sharing Links */
#share-dropdown-content a {
    color: black;
    padding: 10px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
}

.oaw-share-post {
    cursor: pointer;
}

.oaw-share-btns {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.oaw-share-btns li {
    margin: 0;
    padding: 0;
}

.oaw-share-btns li+li {
    border-top: solid #eee 1px;
}

.oaw-share-post svg {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    fill: black;
}

/* Dropdown Box */
#share-article {
    position: relative;
    display: inline-block;
}

#share-dropdown {
    display: none;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    max-height: 100vh;
    margin: 0;
    filter: drop-shadow(1px 1px 1px #111);
    animation: slideInFromBottom 0.2s ease-out;
    z-index: 3000;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.arrow-up {
    display: none;
}

#share-dropdown-top {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px 5px;
}

.share-text {
    font-weight: bold;
}

#close-share-dropdown-btn {
    all: unset;
    cursor: pointer;
    height: 16px;
    width: 16px;
    fill: black;
}

#close-share-dropdown-btn svg {
    height: 16px;
    width: 16px;
}

#share-dropdown-content {
    background-color: white;
    z-index: 2000;
    font-family: 'Source Sans 3', sans-serif;
}

@media only screen and (min-width: 576px) {
    #share-dropdown {
        width: auto;
        position: absolute;
        right: auto;
        left: auto;
        bottom: auto;
        animation: none;
    }

    #close-share-dropdown-btn {
        display: none;
    }

    #share-dropdown-content {
        min-width: 160px;
    }

    #share-dropdown-content a:hover {
        background-color: #eee;
    }

    .arrow-up {
        display: block;
        width: 0;
        height: 0;
        margin-left: 5px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid white;
    }
}