div.intro {
	position: relative;
	width: 100%;
	font-size: clamp(var(--font-size-s), 4vw, 1.2rem);

    .background {
        position: absolute;
        top: 0;
        left: 0;

        height: 100%;
        width: 100%;
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: 100%;
        justify-items: center;
        column-gap: 1em;

        .image {
            height: 100%;
            width: 100%;
        }
        .image > img {
            width: 100%;
            max-height: 100%;
        }
        img.club_badge  {
            object-fit: contain;
            opacity: 0.2;
        }
        img.nationality_flag {
            object-fit: contain;
            opacity: 0.15;
        }
    }

    div.basic_info_holder {
    	position: relative;
    	margin: 0 auto;
    	max-width: 15em;
    }
    div.basic_info {
        white-space: nowrap;
    }

    div.name_div {
        position: relative;

        div.squad_number {
            position: absolute;
            left: -1.8em;
            top: 0.5em;

            font-size: var(--font-size-m);
            color: var(--primary-color);
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
            text-align: right;
        }
        div.firstname  {
            font-size: clamp(var(--font-size-m), 6vw, var(--font-size-l));
            color: var(--primary-color);
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
            line-height: 1.2em;
        }
        div.surname {
            font-size: clamp(var(--font-size-m), 8vw, var(--font-size-xl));
            font-weight: bold;
            text-transform: uppercase;
            line-height: 1.1em;
            margin-bottom: 0.1em;

            color: var(--primary-color);
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
        }
    }

    div.position {
        font-weight: bold;
    }
    div.dateofbirth {
        margin-top: 20px;
    }
    span.title {
        font-size: 0.8em;
        color: #333333;
    }

    div.stats {
        margin-top: 5px;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        column-gap: 1em;
        justify-content: center;
        align-content: space-around;

        div {
            flex-basis: 50%;
        }

        div.stat {
            line-height: 1.2em;
        }
    }
}

#BidMessage {
    text-align: center;
}
#BidFeedbackDiv {
    text-align: left;
}



.panel_wrapper {
    display: grid;
    grid-template-columns: 1fr;

    @media only screen and (min-width: 1250px) {
        grid-template-columns: minmax(790px, 1fr) 1fr;
    }

    &> div {
        max-width: 100vw;
    }
}


