#contact-panel{
    position: fixed;
    top: 53%;
    right: 0;
    height: 144px;
    width: 48px;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    border: solid 1px #e2e2e2;
    border-radius: 0 0 0 3px;
    background-color: #ffffff;
    box-sizing: content-box;
    border-top: solid 5px var(--primary);
}
#contact-panel div{
    width: 100%;
    text-align: center;
    height: 48px;
    width: 48px;
}
#contact-panel div a{
    height: 48px;
    width: 48px;
}
#contact-panel div i{
    margin-top: 12px;
    fill: #666;
}
@media (max-width: 767px) {
    #contact-panel{
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        height: 48px;
        width: auto;
        flex-wrap: wrap;
        border-radius: 0;
        justify-content: space-around;
    }
    #contact-panel div{
        width: 100%;
        text-align: center;
        height: 48px;
        width: 48px;
    }
    #contact-panel div a{
        height: 48px;
        width: 48px;
    }
    #contact-panel div svg{
        height: 22px;
        width: 22px;
        margin-top: 13px;
        fill: #666;
    }
}