
.toman-events-grid {
    /* display: grid;  */
    grid-template-columns: 150px 1fr 1fr 1fr 100px;
    gap: 0;
    padding: 0;
}

.toman-event-row {
    contents: none; /* oude hack uitzetten */
    /*display: contents;  /*laat elke <div> binnen een grid-rij vallen denk ik  */
	display: table;
	clear: both;
	width: 100%;
}


.toman-event-row div {
    padding: 0;
    white-space: nowrap;
    
	
	
    text-overflow: ellipsis;
	display: table-cell;
	width: 100%;
	position: relative;
}

@media (min-width: 601px) {
.toman-event-row > div {
	border-bottom: 1px solid #455b5a;
	padding-top: 13px;
    padding-bottom: 10px;
}
.toman-event-row > div:first-child { /* Datum */
	 width: 20%;
}
.toman-event-row > div:nth-child(2) { /* Event */
  width: 35%;
}
.toman-event-row > div:nth-child(3) { /* Stad */
  width: 25%;
}
.toman-event-row > div:nth-child(4) { /* Land */
  width: 5%;
}
.toman-event-row > div:nth-child(5) { /* Tickets */
  width: 15%;
  text-align: right;
}
}


@media (max-width: 600px) {
    .toman-events-grid {
        display: block;
    }

    .toman-event-row {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .toman-event-row > div {
        padding: 4px 0;
    }
}

.toman-event-row > div p { display: block; }


.tooltip {
    position: relative;
    cursor: pointer;
	z-index: 10;
	display: block;
}

.tooltip::after {
	z-index: 10;
    content: attr(data-tooltip);
    position: absolute;
	display: block;
    left: 0;
    top: -4px; 
    background: #102222;
    color: #fff;
    padding: 4px 8px 4px 8px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
    visibility: hidden ; /* hidden */
    opacity: 0; /* 0 */
    transition: opacity 0.3s ease-in-out;
}

.tooltip:hover::after {
    visibility: visible;
    opacity: 1;
}