﻿/*ACHIEVEMENTS*/

.achievementHolder {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 20px 0px 20px 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.achievement {
    margin: 0 auto;
    max-width: 600px;
    background-color: #343434;
    color: white;
    padding: 5px;
    
    border: solid 2px black;
    text-decoration: none;
    border-radius: 2px;
}

    .achievement:hover {
        border: solid 2px gold;
    }

.achievementHeader {
    padding: 4px 4px 4px 10px;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 0.7px;
    border-bottom: solid 1px gainsboro;
}

.aInnerWrap {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    color:white;
    cursor:pointer;
}

.achievementThumbnail {
    width: 60px;
    height: 60px;
    display: inline-block;
    box-shadow: 0px 0px 5px 0px #ffd700;
}

.aDetailsWrap {
    padding: 5px 5px 5px 10px;
    flex: 1;
}

.aTitle {
    font-weight: bold;
    max-height: 24px;
}

.aDetail {
    max-height: 48px;
    overflow: hidden;
    line-height: 16px;
    font-style: italic;
}

.aLinkDetails {
    color: deepskyblue;
    display: inline-block;
}

    .aLinkDetails:hover {
        background-color: gray;
        cursor: pointer;
    }

.achievementImgCorner {
    width: 45px;
}


/*BADGES*/
#achievementBadgeHolder {
    /*padding: 5px;*/
    background-color: white;
    border-top: solid 1px gainsboro;
    border-radius: 2px;
}

.achievementBadgesTitle {
    padding: 3px;
}

#achievementBadges {
}

    #achievementBadges a {
        display: inline-block;
        padding: 3px;
        margin: 0px;
        height: 30px;
        width: 30px;
    }

    #achievementBadges img {
        width: 30px;
        height: 30px;
    }

    #achievementBadges a:hover {
        background-color: gainsboro;
        cursor: pointer;
    }

/*ACHIVEMENTS PAGE*/
.achievementsPanel{
    max-width:900px;
    margin:0 auto;
}
.achievementLevelHeader {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-bottom: solid 1px gainsboro;
    padding: 8px;
}

.aProgress {
}

.incomplete {
    filter: grayscale(100%);
    background-color:gray;
}

.incomplete:hover {
    filter: none;
}

/*DISCLAIMER*/
.achievementDisclaimerHolder {
    text-align: center;
    padding: 5px 10px 15px 10px;
    margin: 0 auto;
    max-width: 600px;
    border: solid 1px gainsboro;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #343434;
    border-radius: 2px;
    color: white;
}

.aDisclaimerHeader {
    font-weight: bold;
    font-size: 18px;
    color: red;
    padding: 5px 5px 10px 5px;
    border-bottom: solid 1px gainsboro;
}

.aDisclaimerBody {
    padding: 0px 10px 0px 10px;
}


/*MOBILE*/
@media only screen and (max-width: 500px) {

    .achievementHolder {
        padding: 15px 0px 15px 0px;
    }
}