.ngsb-shares_content {
    position: relative;
    margin-right: 8px;
}
.ngsb-shares_box-btn {
    cursor: pointer;
    user-select: none;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.ngsb-shares_box-btn:hover {
    color: #0089d1;
}
.ngsb-shares_icon {
    font-size: 1.8em;
    margin-top: 4px;
}
.ngsb-shares_icon:before {
    content: '\e975';
}
.ngsb-shares_box-list {
    position: absolute;
    top: 0;
    right: -35px;
    width: 100vw;
    max-width: 300px;
    min-width: 100%;
    display: block !important;
    height: auto !important;
    visibility: hidden;
    opacity: 0;
    background-color: #ffffff;
    z-index: 1;
    padding: 2.3em !important;
    padding-top: 2.6em !important;
    border-radius: 1.3em;
    box-shadow: 0 0 18px -10px #0089d1;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -moz-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}
.ngsb-shares_content.dropdown--open .ngsb-shares_box-list {
    visibility: visible;
    opacity: 1;
}
.ngsb-shares_box-list_close {
    position: absolute;
    right: 0.8em;
    top: 0.8em;
    font-size: 2em;
}

@media(max-width: 600px) {
    .ngsb-shares_box-list {
        transform: translateX(-57%);
        left: 50%;
    }
}