#contact-info-block {}

#contact-info-block .contact__table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid var(--bg-primary-stroke);
    border-radius: 15px;
    overflow: hidden;
}

#contact-info-block .contact__table tr td {
    padding: 20px 40px;
    width: 50%;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--text-primary-main);
    border: 1px solid var(--bg-primary-stroke);
    height: 60px;
}

#contact-info-block .contact__table tr td a:hover {
    color: var(--hover-main);
}

/* Убираем двойные границы между ячейками */
#contact-info-block .contact__table tr:first-child td {
    border-top: none;
}

#contact-info-block .contact__table tr td:first-child {
    border-left: none;
}

#contact-info-block .contact__table tr td:last-child {
    border-right: none;
}

#contact-info-block .contact__table tr:last-child td {
    border-bottom: none;
}

#contact-info-block .contact__table tr:nth-child(even) td {
    background: var(--bg-primary-second);
}

#contact-info-block .contact__table tr:nth-child(odd) td {
    background: var(--bg-primary-main);
}

@media (max-width: 1024px) {}

@media (max-width: 768px) {
    #contact-info-block .contact__table tr td {
        padding: 10px 20px;
    }
}

@media (max-width: 550px) {
    #contact-info-block .contact__table {
/*         min-width: 600px; */
    }
	#contact-info-block .contact__table tr{
		display: flex;
		flex-direction: column;
	}
	#contact-info-block .contact__table tr td:first-child{
		background: var(--bg-primary-second) !important;
	}
	
	#contact-info-block .contact__table tr:nth-child(even) td {
		background: unset;
	}
	#contact-info-block .contact__table tr:nth-child(odd) td {
		background: unset;
	}
	
	#contact-info-block .contact__table tr td {
        width: 100%;
		height: auto;
    }

    #contact-info-block .contact__table-wrapper {
/*         overflow-x: auto; */
    }

}

/*# sourceMappingURL=block.css.map */