/*
========================================================
Custom CSS
========================================================
*/

/* index.html */


.bgFull{
  background-image: url("../img/bg_full.jpg");
  background-color: #cccccc;
}

.divisor{
  width: 192px;
  height: 2px;
  background: #fff;
}

.max-w-60px{
  max-width: 60px;
}

.text-title{font-size: 34px;}

@media screen and (min-width: 768px){
  .text-title{font-size: 55px;}
}


/* league.html CSS */
.dd-select {
	border-radius: 2px;
	position: relative;
	cursor: pointer;
}

.dd-desc {
	overflow: hidden;
}

.dd-selected {
	overflow: hidden;
	font-weight: bold;
}



.dd-options {
	list-style: none;
	display: none;
	position: absolute;
	z-index: 2000;
	margin: 0;
	padding: 0;
	overflow: auto;
}

.dd-option {
	overflow: hidden;
  text-decoration: none;
	cursor: pointer;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
}

.dd-option label, .dd-selected label{
  cursor: pointer;
}

.dd-options>li:last-child>.dd-option {
	border-bottom: none;
}



.dd-selected-description-truncated {
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dd-container {
	position: relative;
}




.topHeader {
	flex-direction: column;
	align-items: center;
	gap: 15px;
 }
 @media (min-width: 768px) {
	.topHeader {
	   flex-direction: row;
	}
 }
 .divDonate {
	display: flex;
	align-items: center;
	gap: 5px;
 }
 .divDonate span {
	color: #FFF;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	padding-right: 5px;
 }
 .divDonate img {
	display: block;
	width: 80px;
 }