/*CSS onglet mon profil*/
#liens-profil ul {
	display : flex;
	flex-direction : row;
	gap : 10px;
	flex-wrap : wrap;
	list-style-type : none;
	padding : 0;
}
#liens-profil a {
	display : block;
	border-radius : 8px;
	background-color : #ffffff;
	color : #163447;
	padding : 10px;
	border : 2px solid #163447;
}
#liens-profil a:hover {
	display : block;
	border-radius : 8px;
	background-color : #163447;
	color : #ffffff;
	padding : 10px;
	border : 2px solid #163447;
}

/*CSS tuile dans onglet "mes bases" dans mon compte*/
.kbm-base-tile {
    display: flex;
    flex-direction: row;
	gap : 20px;
    width: 100%;
	flex-wrap : wrap;
}
.kbm-base-tile .tile {
	display: flex;
	flex-direction: column;
    width: 45%;
    border: 1px solid #e7e6e6;
    border-radius: 8px;
}
.kbm-base-tile h4 {
    padding: 10px;
    margin: 0;
    text-align: center;
}
.kbm-base-tile br, .kbm-base-tile p {
	display : none;
}
.kbm-base-tile .p-tile {
	display : block;
    padding: 0 10px 0 10px;
    text-align: center;
}
.kbm-base-tile .tile img {
	border-radius : 5px 5px 0 0;
	height : 150px;
	object-fit: cover;
  	object-position: center;
  	display: block;
	width : 100%;
}
.kbm-base-tile .lien-detail-base a {
	display : block;
	background-color : #e7e6e6;
	padding : 8px;
	border-radius : 8px;
	width : 100%;
}
.kbm-base-tile .lien-detail-base {
	margin-bottom : 10px;
}

/*CSS détail base*/
#kbm-download-list ul {
	display : flex;
	flex-direction : row;
	gap : 10px;
	flex-wrap : wrap;
	list-style-type : none;
	padding : 0;
}
#kbm-download-list a {
	display : block;
	border-radius : 8px;
	background-color : #ffffff;
	padding : 10px;
	color : #882533;
	border : 2px solid #882533;
}
#kbm-download-list a:hover {
	display : block;
	border-radius : 8px;
	background-color : #882533;
	padding : 10px;
	color : #ffffff;
	border : 2px solid #882533;
}
.h3-detail-base {
	margin-top : 40px;
}