/*Player card*/
        .bg {
          animation:slide 3s ease-in-out infinite alternate;
          background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
          bottom:0;
          left:-50%;
          opacity:.5;
          position:fixed;
          right:-50%;
          top:0;
          z-index:-1;
        }

        .bg2 {
          animation-direction:alternate-reverse;
          animation-duration:4s;
        }

        .bg3 {
          animation-duration:5s;
        }

        .content_player_card {
		  height: 450px;
		  width: 320px;
          background-color:#000;
          border-radius:.5em;
          
          position:relative;
          text-align:center;
          transform:translate(-1%, -1%);
          z-index: 5;
          overflow: hidden;
        }

        @keyframes slide {
          0% {
            transform:translateX(-25%);
          }
          100% {
            transform:translateX(25%);
          }
        }

        .fut-card {
            width: 100%;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .fut-background {
            width: 100%;
            height: 100%;
        }

        .fut-profile {			
            text-align: center;
        }

        .player-image {
			height: 150px;
			width: 150px;
			padding: 5px !important;
			
        }

        .fut-content {
            text-align: center;
            padding: 20px;
            color: #fff; /* Text color for player information */
        }

        .player-name {
            font-size: 20px;
            font-weight: bold;
            margin: 0;
        }

        .player-club {
            font-size: 14px;
            margin: 5px 0;
        }

		
		/*
			FLIP CARD - Account recap
			*/
			
			::selection {
				color: #fff;
				background: #1cc7d0;
			}

			.wrapper {
				height: 450px;
				width: 320px;
				position: relative;
				text-align:center;
				transform-style: preserve-3d;
				perspective: 1000px;
			}

			.wrapper .card {
				position: absolute;
				height: 100%;
				width: 100%;
				padding: 5px;
				background: #efdaef;
				border-radius: 0.5em;
				transform: translateY(0deg);
				transform-style: preserve-3d;
				backface-visibility: hidden;
				box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
				transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
			}

			.wrapper:hover>.front-face {
				transform: rotateY(-180deg);
			}

			.wrapper .card img {
				height: 100%;
				width: 100%;
				max-height:250px;
				object-fit: cover;
				border-radius: 10px;
			}

			.wrapper .back-face {
				display: flex;
				align-items: center;
				justify-content: space-evenly;
				flex-direction: column;
				transform: rotateY(180deg);
			}

			.wrapper:hover>.back-face {
				transform: rotateY(0deg);
			}

			.wrapper .back-face img {
				
			}
			.back_face_img{
				height: 150px !important;
				width: 150px !important;
				padding: 5px;
				border-radius: 50% !important;
				background: linear-gradient(375deg, #1cc7d0, #2ede98);
			}

			.wrapper .back-face .info {
				text-align: center;
			}

			.back-face .info .title {
				font-size: 20px;
				font-weight: 500;
			}

			.back-face ul {
				display: flex;
			}

			.back-face ul a {
				display: block;
				height: 40px;
				width: 40px;
				color: #fff;
				text-align: center;
				margin: 0 5px;
				line-height: 38px;
				border: 2px solid transparent;
				border-radius: 50%;
				background: linear-gradient(375deg, #1cc7d0, #2ede98);
				transition: all 0.5s ease;
			}

			.back-face ul a:hover {
				color: #1cc7d0;
				border-color: #1cc7d0;
				background: linear-gradient(375deg, transparent, transparent);
			}
		
        /*End of player card*/