#achievement-found {
    display: none;
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#achievement-found-title,#achievement-found-name {
    color:white;
    font-size: 42px;
    font-weight: bold;
    max-width: 90%;
    text-align: center;
    margin-bottom: 20px;
    text-shadow:
    -2px -2px 0 black,
    2px -2px 0 black,
   -2px  2px 0 black,
    2px  2px 0 black,
   -2px  0px 0 black,
    2px  0px 0 black,
    0px -2px 0 black,
    0px  2px 0 black;
}
#achievement-found-name {
    font-size: 30px;
    margin-bottom: 100px;
}
#achievement-found-image{
    width:200px;
}
#achievement-found-bonus-container {
    background-color: white;
    width: 100%;
    text-align: center;
    padding: 20px 0px;
    box-shadow: 
        0 -8px 16px -4px rgba(0, 0, 0, 0.3),  /* stronger shadow above */
        0  8px 16px -4px rgba(0, 0, 0, 0.3);  /* stronger shadow below */
}
#achievement-found-bonus-table {
    margin: auto;
}
#achievement-found-bonus-value {
    font-size: 60px;
    font-weight: bold;
    color: #008ac3;
}
.achievement-success-text {
    font-weight: bold;
    color: green;
    text-decoration: line-through;
}
#tbl-achievements-wrapper {
    overflow: auto;
    height: 86%;

}
#tbl-achievements {
    margin: auto;
}

@media (orientation: landscape) {

    .num-of-hints-gained{
        margin-left: 14px;
    }

    .num-of-hints-gained-icon{
        width: 30px;
        
    }

    .img-achievement{
        width: 60px;
    
    }
    .achievement-name{
        margin-left: 14px;
    }

}

@media (orientation: portrait) {
    #achievements {
        width: 86%;
        height: 78%;
        position: absolute;
        top: 51%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 10px;
    }
    .num-of-hints-gained{
        margin-left: 5px;
        font-size: 14px;
        font-weight: bold;
    }
    
    .num-of-hints-gained-icon{
        width: 30px;
    }
    
    .img-achievement{
        width: 50px;
    }

    .achievement-name{
        margin-left: 6px;
        font-size: 14px;
    }
}