#roster-player {
	position: relative;
	margin-bottom: -3rem;
	overflow: hidden;
}

#roster-player .player-photo  {
    position: absolute;
    bottom: -1rem;
    right: -3rem;
    width: 450px;
}

#roster-player .player-photo img {
	position: relative;
    z-index: 2;
}

#roster-player .top-section {
    position: relative;
    background: #fff;
    min-height: 450px;
    display: flex;
    padding-left: 20px;
}

#roster-player .top-section .info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
}

#roster-player .top-section .info .sub-info label {
	display: block;
	font-size: 1.5em;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

#roster-player .top-section .info .sub-info span {
	font-size: 3em;
}

#roster-player .top-section .info .sub-info span.cm {
	font-size: 1.5em;
}

#roster-player .top-section .info .name {
	font-size: 5em;
	line-height: 1;
	margin-bottom: 3rem;
}

#roster-player .top-section .number-section {
	display: flex;
    justify-content: end;
	align-items: start;
    margin-top: 5rem;
    position: relative;
    z-index: 3;
    color: #121625;
}

#roster-player .top-section span.hash {
	font-size: 3em;
	font-family: 'Josefin Sans', sans-serif;
}

#roster-player .top-section span.number {
	font-size: 10em;
	line-height: 1;
	font-family: 'Josefin Sans', sans-serif;
}

#roster-player .top-section .player-photo img {
	position: absolute;
    z-index: 2;
    top: 1rem;
    bottom: 0;
    right: -3rem;
}

#roster-player .top-section .second-player-photo > div  {
	position: absolute;
    bottom: 1rem;
    right: 2rem;
    border: 3px solid #000;
    background: #fff;
    z-index: 2;
}

#roster-player .top-section .second-player-photo > div img {
	height: 350px;
    width: auto;
}

#roster-player .bottom-section {
	background: #b7bbc2; 
	min-height: 280px;
	position: relative;
    padding: 20px;
    display: flex;
    justify-content: left;
    align-items: start;
}

#roster-player .bottom-section .info {
	font-size: 1.5rem;
}

#roster-player .bottom-section .info .line {
	border-bottom: 2px solid #a5a5a5;
	margin-bottom: 1rem;
	position: relative;
    z-index: 1;
}

#roster-player .bottom-section .info .line .title {
	text-transform: uppercase;
}

#roster-player .bottom-section .info .line .value {
	font-family: 'Montserrat', sans-serif;
}

#roster-player .bottom-section .info .social-icon-container {
	margin-top: 2rem;
}

#roster-player .bottom-section .info .social-icon-container .player-social-icon {
	padding: 10px 20px;
    border: 2px solid #000;
    border-radius: 100px;
    display: inline-flex;
    width: 30px;
    margin: 5px;
    justify-content: center;
    background: #000000;
    cursor: pointer;
    z-index: 1;
    position: relative;
}

#roster-player .bottom-section .info .social-icon-container .player-social-icon i {
	color: #fff;
}

#roster-player .logo {
	position: absolute;
	top: 0;
	width: 100%; /* Set the width of the logo, adjust as needed */
	height: 100%; /* Take the full height of the parent */
	background-image: url('/templates/paokbc/images/thumbnail_PAOKBC_LOGO.png'); /* Replace 'path/to/your/logo.png' with the path to your logo image */
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center center;
	filter: grayscale(100%);
    opacity: 0.2;
	z-index: 1
}


/* mobile */
@media only screen and (max-width: 480px) {
	#roster-player .logo {
		display: none;
	}

	#roster-player .top-section .info {
    	justify-content: start;
	}

	#roster-player .top-section .info .name {
	    font-size: 3em;
	}

	#roster-player .top-section .number-section {
	    margin-top: 0;
	    position: absolute;
	    right: 0;
	}

	#roster-player .top-section span.hash {
	    font-size: 2em;
	}

	#roster-player .top-section span.number {
	    font-size: 5em;
	}

	#roster-player .top-section .sub-info {
		width: auto;
	}

	#roster-player .top-section .sub-info:nth-child(2) {
	    position: absolute;
    	right: 10px;
    	text-align: right;
	}

	#roster-player .top-section .info .sub-info label {
		font-size: 1em;
	}

	#roster-player .top-section .info .sub-info span {
		font-size: 1.2em;
	}

	#roster-player .top-section .second-player-photo > div {
    	right: 50%;
    	transform: translateX(50%);
	}

	#roster-player .top-section .second-player-photo > div img {
	    height: 240px;
	}

	#roster-player .bottom-section {
		padding: 20px;
	}

	#roster-player .player-photo {
		width: 100%;
	    top: -20px;
	    left: 0;
	}

	#roster-player .player-photo img {
	    transform: scale(0.6);
	}
	
}

/* mobile landscape */
@media only screen and (min-device-width: 375px) 
					and (max-device-width: 844px) 
					and (-webkit-min-device-pixel-ratio: 3)
					and (orientation: landscape) {

   	#roster-player .top-section .number-section {
	    margin-top: 2rem;
	    position: absolute;
	    right: 0;
	}

	#roster-player .top-section span.hash {
	    font-size: 3m;
	}

	#roster-player .top-section span.number {
	    font-size: 10em;
	}

}