.office-detail__info p {
	word-break: break-word;
	margin: 0 0 5px
}

.office-detail__info b {
	color: #505050;
	font-weight: bold;
}

.table {
	display: flex;
	gap: 10px;
	width: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.table div {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.table div span {
	padding: 10px;
}

th {
	border: 1px solid #4d3e33;
	padding: 5px;
}

td {
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #ddd !important;
}

#workdays {
	width: 100%;
}

table tr:nth-child(even) {
	background: #f9f9f9;
}

table th {
	border: 1px solid #c79b65;
}

.office-detail__buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
	.office-detail__buttons {
		grid-template-columns: repeat(1, 1fr);
	}
}