.tq-fixed-contact {
    position: fixed;
    right: 24px;
	  top: auto;
  bottom: 50px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    width: 70px;
    overflow: hidden;
    border: 1px solid #ece7dc;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
}

.tq-fixed-contact__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 72px;
    padding: 5px;
    border-bottom: 1px solid #ececec;
    color: #222;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tq-fixed-contact__item:last-child {
    border-bottom: 0;
}

.tq-fixed-contact__item:hover {
    background: #fff7f7;
    color: #b12121;
    transform: translateY(-1px);
}

.tq-fixed-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
}

.tq-fixed-contact__icon img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tq-fixed-contact__label {
    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;
}

 @media only screen and (max-width: 767px) {
	.tq-fixed-contact {
		right: 5px;
		width: 50px;
	}
	 
	 .tq-fixed-contact__item {
    gap: 4px;
    min-height: 55px;
    padding: 5px;
}

    .tq-fixed-contact__icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .tq-fixed-contact__icon img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .tq-fixed-contact__label {
        font-size: 8px;
        line-height: 1.15;
    }
}
