.tm select {
	height: 40px;
}

.tm__filter {
	background-color: #fff;
	padding: 1.4rem .8em;
	box-shadow: rgba(0, 0, 0, 0.06) 0 6px 20px;
}

.tm__filter legend {
	display: block;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 1em;
}

.tm__filter label,
.tm__filter .label {
	margin: 1em 0;
	font-weight: bold;
	display: block;
}

.tm__filter__alphabetic-search {
	padding-top: 1em;
}

.tm__filter__alphabetic-search ul {
	list-style: none;
}

.tm__filter__alphabetic-search ul li {
	display: inline-table;
	border: 1px solid #e4e6eb;
}

.tm__filter__alphabetic-search ul li:last-of-type {
	display: none;
	margin: 1em 0 0;
}

.tm__filter__alphabetic-search ul li:last-of-type label {
	width: 8em;
}

.tm__filter__alphabetic-search ul input {
	visibility: hidden;
	position: absolute;
}

.tm__filter__alphabetic-search ul label {
	margin: 1px;
	cursor: pointer;
	width: 3em;
	height: 3em;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.tm__filter__alphabetic-search ul input:checked + label {
	background-color: #e4e6eb;
	color: #fff;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.tm__filter__alphabetic-search ul li:hover {
	background-color: #e4e6eb;
	color: #fff;
}


#tm-section{
	background-color: #e4e6eb;
	padding: 30px 0;
}

.tm__results .tm-accordion__item {
	border-bottom: 1px solid #fff;
}

.tm__results .tm-accordion__item:before, .tm__results .tm-accordion__item:after {
	content: '';
	display: table;
	clear: both;
}

.tm__results .tm-accordion__item:first-child {
	margin-top: 2em;
	border-top: 1px solid #fff;
}

.tm__results .tm-accordion__button {
	cursor: pointer;
	padding: 1em 0;
	width: 100%;
	display: flex;
}

.tm__results .tm-accordion__button:hover {
	cursor: pointer;
}

.tm__results .tm-accordion__button:hover .tm-accordion__button__icon {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

.tm__results .tm-accordion__button .wrapper {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.tm__results .tm-accordion__button__label {
	display: table-cell;
	font-weight: bold;
}

.tm__results .tm-accordion__button__icon {
	background-image: url("../img/arrrow_top.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 50px;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: 300ms linear all;
	transition: 300ms linear all;
	width: 50px;
}

.tm__results .tm-accordion__panel {
	display: none;
	float: left;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
	width: 100%;
}

.tm__results .tm-accordion__panel .wrapper {
	display: -moz-box;
	display: -ms-flexbox;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	width: 100%;
	gap: 1rem;
}


.tm__results .tm-accordion .open .tm-accordion__button__icon {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}

.tm__results .tm-accordion .open .tm-accordion__button:hover .tm-accordion__button__icon {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.tm__results .tm-accordion .open .tm-accordion__panel {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	display: inline-block;
	padding: 0 0 2rem 0;
}

.tm__results .tm-accordion .v-card {
	background-color: #fff;
	border-radius: 2px;
	padding: 1em;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.06) 0 6px 20px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=33)";
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	min-height: 200px;
}

.tm__results .tm-accordion .v-card__datas {
	display: table-cell;
	list-style: none;
	padding-left: 5px;
}
.tm__results .tm-accordion .v-card__actions {
	list-style: none;
	display: inline-block;
}

.tm__results .tm-accordion .v-card__datas li:first-of-type {
	font-weight: bold;
}

.tm__results .tm-accordion .v-card__datas li:last-of-type li {
	position: absolute;
	bottom: 0;
	left: 20px;
}

.tm__results .tm-accordion .v-card__datas li:last-of-type li:last-of-type {
	left: -webkit-calc(50px + 2em);
	left: calc(50px + 2em);
}

.tm__results .tm-accordion .v-card__datas li:last-of-type .icon span {
	background-size: contain;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	display: none;
}

.tm__results .tm-accordion .v-card__datas li:last-of-type .icon--at span:first-of-type {
	background-image: url("../img/at_icon.svg");
}

.tm__results .tm-accordion .v-card__datas li:last-of-type .icon--at span:last-of-type {
	display: inline-block;
	background-image: url("../img/at_icon_grey.svg");
}

.tm__results .tm-accordion .v-card__datas li:last-of-type .icon--phone span:first-of-type {
	background-image: url("../img/phone_icon.svg");
}

.tm__results .tm-accordion .v-card__datas li:last-of-type .icon--phone span:last-of-type {
	display: inline-block;
	background-image: url("../img/phone_icon_grey.svg");
}

.tm__results .tm-accordion .v-card__strips {
	background-image: url("../img/strips.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 53px;
	position: absolute;
	right: 0;
	top: 0;
	width: 18px;
}

.tm__results .tm-accordion .v-card--ok.v-card--in-text-search,
.tm__results .tm-accordion .v-card:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.tm__results .tm-accordion .v-card--ok.v-card--in-text-search .icon--at span:first-of-type, .tm__results .tm-accordion .v-card--ok.v-card--in-text-search .icon--phone span:first-of-type,
.tm__results .tm-accordion .v-card:hover .icon--at span:first-of-type,
.tm__results .tm-accordion .v-card:hover .icon--phone span:first-of-type {
	display: inline-block;
}

.tm__results .tm-accordion .v-card--ok.v-card--in-text-search .icon--at span:last-of-type, .tm__results .tm-accordion .v-card--ok.v-card--in-text-search .icon--phone span:last-of-type,
.tm__results .tm-accordion .v-card:hover .icon--at span:last-of-type,
.tm__results .tm-accordion .v-card:hover .icon--phone span:last-of-type {
	display: none !important;
}


@media only screen and (min-width: 725px) {
	.tm .tm__filter fieldset > div {
		display: inline-block;
		padding: 1em;
	}

	.tm .tm__filter fieldset .tm__filter__text-search {
		width: 45%;
	}

	.tm .tm__filter fieldset .tm__filter__select-section {
		width: 35%;
	}

	.tm .tm__filter__alphabetic-search ul li:last-of-type {
		margin: 0 1.5em;
	}

	.tm__results .tm-accordion .v-card__datas li:last-of-type .icon--phone {
		display: none;
	}
}

@media only screen and (min-width: 1000px) {
	.tm__results .tm-accordion__item {
		display: block;
		width: 100%;
	}

	.tm__results .tm-accordion__button__label {
		display: inline-block;
	}

	.tm__results .tm-accordion__panel .wrapper .v-card:nth-of-type(even) {
		margin-left: 0;
	}

	.tm__results .tm-accordion .open .tm-accordion__panel {
		width: 100%;
		display: grid;
		vertical-align: top;
		float: none;
	}
}

@media only screen and (max-width: 1024px) {
	.tm__results .tm-accordion__panel .wrapper {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 640px) {
	.tm__results .tm-accordion__panel .wrapper {
		grid-template-columns: 1fr;
	}
}

