.share-block-wrapper {
    background: rgba(0,0,0,.5);
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.share-block {
    background: #fff;
    bottom: 0;
    left: 0;
    padding: 16px;
    position: fixed;
    width: 100%;
    z-index: 101;
}

.share-block__content {
    display: flex;
    flex-direction: column;
}

.share-block__content-item {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    gap: 9px;
    margin-bottom: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
}

.share-block__content-item:last-child {
    margin-bottom: 16px;
}

.share-block__icon {
    align-items: center;
    display: inline-flex;
    vertical-align: top;
    color: #000;
}

.share-block__icon {
    color: #dadada;
    height: 20px;
    width: 20px;
}

.share-notify {
    background-color: #000;
    bottom: 44px;
    color: #fff;
    display: flex;
    font-size: 14px;
    left: 50%;
    padding: 12px 16px;
    position: fixed;
    transform: translateX(-50%);
    z-index: 999;
    min-width: 275.77px;
}

.share-notify .share-block__icon {
    margin-left: 16px;
    cursor: pointer;
}

@media (min-width: 992px) {
    .share-block-wrapper {
        background-color: transparent;
        box-shadow: 0 4px 15px rgba(0,0,0,.078);
        height: auto;
        left: 100%;
        max-width: 180px;
        overflow: auto;
        position: absolute;
        top: 30px;
        transform: translateX(-100%);
        width: auto;
    }

    .share-block {
        position: static;
        width: auto;
    }

    .share-block__content-item {
        font-size: 10px;
        margin-bottom: 9px;
    }

    .share-block__content-item:last-child {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1000px) {
    .share-block-wrapper {
        transform: translateX(-85%);
    }
}

@media screen and (min-width: 1400px) {
    .share-block-wrapper {
        transform: translateX(-80%);
    }
}

@media screen and (min-width: 1500px) {
    .share-block-wrapper {
        transform: translateX(-65%);
    }
}