/*----------------------------*/
/*-------- CLUB LOGOS --------*/
/*----------------------------*/
#mobile-lineup-menu {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0px 0px 10px -2px black;
}
#mobile-lineup-menu span {
    padding-bottom: 5px;
    color: var(--tln-white);
    font-family: 'Montserrat';
    font-weight: 600;   
}
.lineup-arrow {
  border: solid var(--tln-white);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
div#mobile-lineup-menu:hover span {
    color: var(--secondary);
}
div#mobile-lineup-menu:hover #mobile-icon {
    border: solid var(--secondary) !important;
    border-width: 0 3px 3px 0 !important;
}

#lineup {
    width: 100%;
    max-width: 100vw !important;
    margin: auto; 
    position: relative;
    background: var(--tln-white);
    overflow: hidden;
    display: none;
}
#team-logos {
    width: calc(100% - 40px);
    padding: 20px 0px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
}
#team-logos a {
    display: flex;
    overflow: hidden;
    height: 3.8vw;
    min-width: calc((100% / 21));
    width: fit-content;
    justify-content: center;
}
#team-logos a:hover .logo {
    height: 3.8vw !important;
}
.logo {
    object-fit: contain;
    margin: auto;
    height: 3.2vw;
    min-width: fit-content;
}
a#Venezia .logo {
    padding: 2px;
}
@media screen and (max-width: 1100px) {
    #mobile-lineup-menu {
  	display: none;
    }
    #lineup {
        overflow: hidden;
        max-height: 0; /* Initially hidden */
        transition: max-height 0.5s ease-out; /* Adjust the timing function as needed */
    }
    #lineup.show {
        max-height: 1000px; /* Arbitrary large value to ensure it fits content */
    }
    #team-logos {
	padding: 40px 0px;
        width: calc(100% - 20px);
        gap: 40px 5px;
    }
    #team-logos a {
        width: calc(25% - 5px);
        height: fit-content;
    }
    .logo {
        height: 8.6vw;
	max-width: 80px;
    }
    #team-logos a:hover .logo {
	height: 8.6vw !important;
    }

}
@media screen and (max-width: 580px) {
    #team-logos {
	padding: 20px 0px;
        gap: 20px 5px;
    }
    .logo {
        margin: auto;
        height: 10vw;
    }
    #team-logos a:hover .logo {
	height: 10vw !important;
    }

}
