.socials_block-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    transform: translateY(500px);
    transition: all 2s cubic-bezier(0,0,.2,1);
    padding: 16px;
    border-radius: 5px;
    margin: 8px;
    max-width: 400px;
    min-height: 150px;
    min-width: 280px;
    z-index: 2;
    box-shadow: 0 3px 5px -1px rgb(0 0 0 / 20%), 0 6px 10px 0 rgb(0 0 0 / 14%), 0 1px 18px 0 rgb(0 0 0 / 12%);
}
.socials_block-wrapper .title {
    margin-bottom: 8px;
    font-size: 15px;
    text-align: center;
}
.socials_block-wrapper .content{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.socials_block-wrapper .item {
    border-radius: 4px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 5px 0;
    padding: 5px;
    transition: .4s;
    width: calc(33% - 5px);
    background-color: #fc0;
}
.socials_block-wrapper .item img {
    max-width: 120%;
}
.socials_block-wrapper .item:hover {
    background-color: #f5c403;
}
.socials_block-wrapper.show {
    transform: translateY(0);
}

.socials_block-wrapper .close_btn {
    right: 0;
    padding: 10px;
    font-size: 20px;
    position: absolute;
    top: 0;
    background-color: #fff;
    border: none;
    cursor: pointer
}
@media screen and (max-width: 600px) {
    .socials_block-wrapper {
        right: calc((100vw - 400px) / 2);
    }
}
@media screen and (max-width: 425px) {
    .socials_block-wrapper {
        left: 8px;
        right: 8px;
    }
}