.dso_Socials {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dso_Socials {
    position: fixed;
    z-index: 2;
    right: 25px;
    background-color: #ffffff;
    padding: 4px 4px;
    border-radius: 4px;
    top: 50%;
    transform: inherit;
    -webkit-box-shadow: 0px 7px 40px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 7px 40px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 1px 3px 2px rgba(0,0,0,0.25);
    opacity: 1;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.dso_Socials .dso_Socials_item {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(204,204,204,0.5);
    text-align: center;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.dso_Socials .dso_Socials_item:last-child {
    margin-bottom: 0px;
    border-bottom: none;
}

.dso_Socials .dso_Socials_item i {
    color: #2fb66a;
    font-size: 13px;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.dso_Socials .dso_Socials_item:hover i {
    color: #ffffff;
}
.dso_Socials .dso_Socials_item:hover {
    background-color: #2fb66a;
    border-bottom: 1px solid #2fb66a;
}
.dso_Socials .dso_Socials_item span {
    
    color: #2fb66a;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 39px;
    background-color: #ffffff;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    padding: 0px 10px;
    opacity: 0;
    pointer-events: none;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.dso_Socials img{
    width: 20px;
}

@media only screen and (max-width: 600px) {
    .dso_Socials{
        bottom: 0px;
        top: unset;
        display: table;
        table-layout: fixed;
        width: 100%;
        left: 0;
    }

    .dso_Socials #dso-social-close{
        display: none;
    }

    .dso_Socials .dso_Socials_item{
        border-left: 1px solid rgba(204,204,204,0.5);
        border-bottom: none;
        display: table-cell;

    }
}