/* Fonts */
.montserrat-regular {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;  
}
.montserrat-bold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.oswald-regular {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Body */
#playerInfo {
    position: absolute;
    margin-top: 20px;
    margin-left: 10%;
    margin-right: 10%;
    font-size: large;
}

.optionalInfo {
    display: none;
}

#playerName {
    font-size: xx-large;
}

#recruitingProfileSubheader {
    font-size: x-large;
    margin-bottom: 5px;
}

.playerInfoSubheader {
    font-size: x-large;
    padding-top: 8px;
}

#seasonStatsWrapper {
    display: none;
}

#seasonStatsSelectWrapper, #videoSelectWrapper, #videoSelectWrapperWide {
    display: none;
    align-items: center;
}

#videoSelectWrapper, #videoSelectWrapperWide {
    margin-bottom: 5px;
}

#seasonStatsSelect, #videoSelectWide {
    margin-left: 5px;
    margin-top: 2px;
}

.seasonStats, .seasonStatsStat {
    display: none;
}

.seasonStatsHittingList {
    margin-top: 5px;
    padding-left: 20px;
    margin-bottom: 0px;
}

.profilePhotoWrapper {
    position: absolute;
    right: 10%;
    margin-top: 20px;
    display: flex;
    width: 320px;
    height: 400px;
    justify-content: center;
    align-items: center;
}

#profilePhotoWrapper1 {
    z-index: 1;
}
#profilePhotoWrapper2 {
    z-index: 0;
}

.profilePhoto {
    max-height: 400px;
    max-width: 100%;
    width: auto;
    opacity: 0;
    transition: all 2s ease-in-out;
}

.profilePhotoActive {
    opacity: 1;
}

#videoWrapperWide {
    display: unset;
    position: absolute;
    right: 10%;
    top: 420px;
    width: 500px;
    margin-top: 12px;
}

#videoWrapper {
    display: none;
}

.videoPlayer {
    width: 100%;
    margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
    .profilePhotoWrapper {
        right: 50%;
        -webkit-transform: translateX(160px);
        transform: translateX(160px);
    }

    #playerInfo {
        top: 420px;
        width: 320px;
        right: 50%;
        -webkit-transform: translateX(160px);
        transform: translateX(160px);
        margin-left: unset;
        margin-right: unset;
        font-size: medium;
    }

    #videoWrapperWide {
        display: none;
    }

    #videoWrapper {
        display: unset;
    }
}