.share-icon {
    width: 20px;
    height: 20px;
    padding: 0 7px 2px 0;
    vertical-align: middle;
    filter: grayscale(1) brightness(0) invert(1);
}

.sharediv {
    position: absolute;
    top: 26px;
    right: 27px;
    z-index: 4;
    padding: 0;
}

.sharebutton,
sharebutton {
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #f4f1ed;
    background: rgba(17, 17, 18, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 3px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.sharebutton:hover,
.sharebutton:focus,
sharebutton:hover,
sharebutton:focus {
    color: #ffc07b;
    background: rgba(34, 29, 25, 0.92);
    border-color: rgba(255, 192, 123, 0.58);
    transform: translateY(-2px);
}

.toastdiv {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toastbox {
    position: fixed;
    top: 105%;
    z-index: 20;
    width: min(320px, calc(100vw - 32px));
    padding: 12px 14px;
    color: #f4f1ed;
    background: rgba(10, 10, 11, 0.94);
    border: 1px solid rgba(255, 192, 123, 0.35);
    border-radius: 3px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.52);
    text-align: center;
    transition: transform 0.3s ease;
}

.toastbox.toast-tox--active {
    transform: translateY(-150px);
}

@media (min-width: 600px) {
    .sharebutton,
    sharebutton {
        width: 112px;
    }
}

@media (max-width: 560px) {
    .sharediv {
        top: 17px;
        right: 17px;
    }

    .sharebutton-mb {
        display: none;
    }

    .sharebutton-img {
        position: relative;
        left: 3px;
        margin: auto;
    }
}
