/* Contact sticky */
.contact-sticky-box {
    position: fixed;
    background-color: rgba(0,0,0,0.78);
    right: 26px;
    max-width: 300px;
    bottom: 40px;
    border-radius: 20px;
    width: calc(100% - 32px);
    min-height: 70px;
    z-index: 999;
    box-shadow: 0 2px 12px #0000001a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-sticky-box__item {
    width: calc(100%/3);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    cursor: pointer;
    text-decoration: none;
    flex-grow: 1;
}
.contact-sticky-box__item:not(:last-child) {
    border-right: solid 2px rgba(255,255,255,.2);
}
.contact-sticky-box .contact-sticky-box__item img {
    width: 20px;
    height: 20px;
    margin-bottom: 6px;
}
.contact-sticky-box .contact-sticky-box__item:hover {
    background-image: none !important;
    background-size: 0 !important;
}
.contact-sticky-box a:hover {
    color:#ffffff;
}
@media (max-width: 768px) {
    .contact-sticky-box {
    right: 15px;
    max-width: 300px;
    width: 220px;
    min-height: 50px;
    padding: 8px 0;
    }
    .contact-sticky-box__item {
    font-size: 12px;
    }
    .contact-sticky-box .contact-sticky-box__item img {
    height: 15px;
    }
}