/**
 * Style of sharing modal
 */

 #modal_social_sharing {
    z-index: 999999999;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.modal_content_social_sharing {
    height: 250px;
    width: 500px;
    background-color: white;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
}
.div_social_sharing {
    width: 60%;
}
.div_close_social_modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: black;
    font-size: 1.2rem;
    cursor: pointer;
}
/* SOCIAL ICONS */
.div_social i,
.div_close_social_modal i {
    color: black;
    font-size: 1.5rem;
}
.social_icons_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: .5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: .5rem;
}
/* SOCIAL SHARE LINK */
.social_link_container {
    padding: .5rem;
}
.div_share_input_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: .5rem;
    position: relative;
}
.div_link {
    border: 1px solid black;
    width: 90%;
}
.share_link {
    border: none;
    padding: .8rem .5rem;
    width: 100%;
}
.div_btn {
    border: 1px solid black;
}
.share_link_button {
    cursor: pointer;
    border: none;
    padding: .8rem;
    width: 100%;
    height: 100%;
    background-color: black;
}
.copy_icon {
    color: white;
    font-size: 1rem;
}
.copy_span {
    padding: .5rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}