/* Support #527781 - Sticky Contact Us Button */

.closet-fixed-contact {
    position: fixed !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 52px !important;
    height: 145px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    visibility: visible !important;
    opacity: 1 !important;

    z-index: 2147483647 !important;

    background: #222 !important;
    color: #fff !important;

    /* Rounded toward site content, flat against right edge */
    border-radius: 16px 0 0 16px !important;

    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.closet-fixed-contact span {
    display: block !important;
    white-space: nowrap !important;

    transform: rotate(-90deg) !important;

    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.closet-fixed-contact:hover,
.closet-fixed-contact:focus {
    background: #000 !important;
    color: #fff !important;
    text-decoration: none !important;
}


/* Mobile */
@media only screen and (max-width: 767px) {

    .closet-fixed-contact {
        position: fixed !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;

        width: 46px !important;
        height: 125px !important;

        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;

        border-radius: 14px 0 0 14px !important;

        z-index: 2147483647 !important;
    }

    .closet-fixed-contact span {
        font-size: 15px !important;
    }
}

/* End of Support #527781 - Sticky Contact Us Button */