/* Старт стиль для ховеров*/

.uc-custom-hover {
transition-property: background-color, border-radius;
transition-duration: 0.4s;
cursor: pointer;
}
.uc-custom-hover:hover {
border-radius: 10px;
background-color: #44936920;
}
 /* конец стилей для ховеров*/
 
 /* ------------------------------------------------ */
 
 /* Начало стилей для списка всех контактов */
 
.uc-contact-table .t431__table {
    display: block!important;
}

.uc-contact-table .t431__thead,
.uc-contact-table .t431__thead tr {
    display: flex!important;
    align-items: center;
    justify-content: center;
}

.uc-contact-table .t431__th { 
    display: none; 
}

.uc-contact-table .t431__th.t-title {
    display: flex!important;
    flex-grow: 1;
    text-align: center;
    text-transform: uppercase;
}


.uc-contact-table .t431__tbody {
    display: grid!important;
    gap: 12px;
    padding: 24px;
    border-radius: 8px;
    background-color: #d8f7e8;
}

.uc-contact-table .t431__tbody .t431__evenrow,
.uc-contact-table .t431__tbody .t431__oddrow {
    display: flex!important;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    padding: 24px;
    transition: 0.4s background-color;
    cursor: default;
}

.uc-contact-table .t431__tbody .t431__evenrow:hover,
.uc-contact-table .t431__tbody .t431__oddrow:hover {
    background-color: #376049!important;
}

.uc-contact-table .t431__tbody .t431__evenrow:hover td,
.uc-contact-table .t431__tbody .t431__oddrow:hover td {
    color: #FFF!important;
}

@media(max-width: 1200px) {
    .uc-contact-table .t431__tbody .t431__evenrow,
    .uc-contact-table .t431__tbody .t431__oddrow {
        display: block!important;
        
    }
}

.uc-contact-table .t431__tbody .t431__td {
    display: block!important;
    padding: 0!important;
    transition: 0.4s color;
}

.uc-contact-table .t431__tbody .t431__evenrow > :first-child,
.uc-contact-table .t431__tbody .t431__oddrow > :first-child{
    flex-basis: 300px;
}

.uc-contact-table .t431__tbody .t431__evenrow > :nth-child(2),
.uc-contact-table .t431__tbody .t431__oddrow > :nth-child(2) {
    flex-grow: 1;
}
 /* Конец стилей для списка всех контактов */
    
