#hint-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: white;
}
#hint-screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background/hint.png');
    background-position: center;
    background-repeat: repeat;
    opacity: 0.6; 
    z-index: -1; 
}
.hint-disabled {
    opacity: 0.42;
}
#hints-screen-label {
    text-align: center;
    font-size: 25px;
    padding-bottom: 6px;
}
#hints-screen-label-desc {
    font-size: 18px;
    padding-bottom: 30px;
    color: #444444;
}
#tblHints {
    width: 50%;
    margin-bottom: 50px;
}
#category-select-hint-screen{
    width: 60%;
    margin-bottom: 30px;
}
#hint-element-1,#hint-element-2 {
    width: 100%;
    cursor: pointer;
    max-width: 140px;
    border-radius: 30px;
}
#hint-element-result{
    cursor: pointer;
    border-radius: 45px;
}
#hint-element-plus{
    width: 46%;
    max-width: 80px;
}
#hint-element-equals{
    width: 33%;
    min-width: 110px;
}
#hints-count {
    position: relative;
    right: 17px;
    top: 11px;
    background-color: white;
    padding: 8px;
    border-radius: 99px;
    min-width: 15px;
    text-align: center;
    border: 2px solid gray;
    font-size: 13px;
    font-weight: bold;
    transition: all 1s;
}
#number-of-hints-in-hints-screen {
    display: inline-block;
    background-color: white;
    padding: 8px;
    border-radius: 99px;
    min-width: 30px;
    text-align: center;
    border: 2px solid gray;
    font-size: 25px;
    font-weight: bold;
}
#next-hint-cost {
    display: inline-block;
    background-color: rgb(255, 182, 26);
    padding: 8px;
    border-radius: 99px;
    min-width: 30px;
    text-align: center;
    border: 2px solid gray;
    font-size: 25px;
    font-weight: bold;
}

@media (orientation: portrait) {
    #tblHints {
        width: 70%;
    }
    #hints-count {
        padding: 4px;
        font-size: 12px;
        min-width: 16px;
        right: 15px;
    }
    #hint-element-result{
        width: 150px;
        border-radius: 35px;
    }
}