.share-this {
    color: #2E2E2E;
    font-size: 1.3em;
    display: inline-block;
    float: right;
    margin-top: 12px;
}
.share-this__notify {
    position: fixed;
    top: 20px;
    width: 300px;
    left: 50%;
    margin-left: -150px;
    box-shadow: 3px 8px 13px 6px rgb(46 46 46 / 25%);
    padding: 4px;
    background-color: #fff;
    border-radius: 4px;
    text-align: center;
    display: flex;
    z-index: 900;
    justify-content: space-around;
    align-items: center;
}
.share-this .share__btn {
    background-color: transparent;
    outline: none;
    border: none;
    border-radius: 4px;
    padding: 8px;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1;
    font-size: 16px;
    vertical-align: middle;
}
.share-this .share__btn i {
    font-size: 16px;
    margin-top: -3px;
}

#share-this__title {
    font-weight: bold;
}
#share-this-modal-close {
    top: 4px;
    right: 4px;
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 100%;
    border: none;
    background-color: rgb(46, 46, 46, 0.07);
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.share-this .share__modal {
    background-color: rgb(46, 46, 46, 0.3);
    z-index: 900;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
}
.share-this .share__modal.active {
    display: flex;
}
.share-this .share-modal__body {
    border-radius: 4px;
    position: relative;
    padding: 10px;
    background-color: #F2F1EF;
}
.share-this .share-modal__header {
    padding: 20px;
    text-align: center;
}
.share-this .share-modal__header b {
    margin-top: 8px;
    display: block;
}
.share-this .share-modal__share-methods {
    display: flex;
    flex-wrap: wrap;
    width: 295px;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.share-this .share-modal__share-methods .share-method {
    position: relative;
    background-color: #2e2e2e;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    max-width: 90%;
}

.share-this .share-modal__share-methods .facebook svg {
    position: absolute;
    bottom: -1px;
}
