.social-icons {
    position: fixed;
    right: 30px;
    bottom: 140px;
    z-index: 999;
}

.social-widget-button {
    position: relative;
    width: 70px;
    height: 70px;
    bottom: 0px;
    background-color: #00BC52;
    border-radius: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 3px 4px 18px rgb(0 0 0 / 8%);
    z-index: 1;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(-8deg)
    }

    50% {
        transform: rotate(8deg)
    }

    100% {
        transform: rotate(-8deg)
    }
}

@-webkit-keyframes rotateIcon {
    0% {
        -webkit-transform: rotate(-8deg)
    }

    50% {
        -webkit-transform: rotate(8deg)
    }

    100% {
        -webkit-transform: rotate(-8deg)
    }
}

.social-widget-icon {
    height: 30px;
    animation-name: rotateIcon;
    -webkit-animation-name: rotateIcon;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.social-widget-close {
    display: none;
    height: 21px
}

.social-icons .social-icons-container {
    position: absolute;
    bottom: 120px;
  
    padding: 15px;
   
    transform: translateY(80px);
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
   
}

.social-icons .social-icons-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.social-widget-icon.hide-social-btn {
    display: none;
}

.social-widget-close.show-close-btn {
    display: block;
}

.social-link {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    align-items: center;
    color: #222;
}

.social-icons-block {
    position: relative;
}

.social-icons .social-icons-container:after {
    position: absolute;
    content: '';
    border-width: 10px 10px 0px 10px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    bottom: -10px;
    border-color: #fff transparent transparent transparent;
    height: 0;
    border-style: solid;
}

.social-icon-img img {
    transition: all .3s;
}

.social-icon-img img:hover {
    transform: scale(1.1);
}
.footer-social-icons .social-icons {
    display: flex;
    flex-direction: column; /* ставит в колонку */
    gap: 10px; /* расстояние между иконками */
}
.footer-social-icons .social-icons a {
    display: inline-block;
    width: 32px; /* или нужный размер */
    height: 32px;
}
.characteristics__flex-block {
    margin-top: 20px;
    margin-bottom: 40px;
    overflow-x: auto;
}

.characteristics__flex {
    min-width: 550px;
    width: 100%;
    padding-bottom: 10px;
    border-top: 1px solid #c1cad0;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
}
.characteristics__flex-tr {
    border-bottom: 1px solid #c1cad0;
}
.characteristics__flex-td {
    padding: 10px 5px;
}
