div#quest-interface {
    transform: translate(-50%, -50%) scale(1);    
    top: 50%;
    left: 50%;
    width: calc(100% - 60px);
    max-width: 375px;
}

div#quest-interface .ui-tabs-panel{
    display: block;
}

div#quest-interface .ui-tabs-nav {
    overflow-x: hidden;
}

div#quest-interface .ui-tabs-nav li a {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 5px;
}

div#quest-interface .ui-tabs-nav li.ui-state-active a {
    background: #f7189a;
}

div#quest-interface .quest-item-container {
    background: #FFF;
    box-shadow: 0 0 3px #000;
    border-radius: 7px;
    padding: 3px 7px 7px;
    margin-top: 12px;
}

div#quest-interface .quest-item-container label {
    color: #FFF;
    text-transform: uppercase;
    font-size: 10px;
    display: block;
    background: #535252;
    padding: 4px 6px;
    margin-top: 5px;
    width: auto;
    border-radius: 4px 4px 0 0;
}

div#quest-interface .quest-item-container div {
    background: #e9e9e9;
    padding: 7px 8px;
    width: calc(100% - 16px);
    border-radius: 0 0 4px 4px;
    border: none;
    outline: none;
    line-height: 1.3em;
    font-size: 14px;
}

#quest-interface-content button.general-green-button {
    width: 100%;
    margin: 5px 0 0 0;
}

div#quest-interface .ui-tabs-nav {
    margin-bottom: 0;
    padding-bottom: 0;
}

.no-quests-to-show {
    background: #FFF;
    box-shadow: 0 0 3px #000;
    border-radius: 7px;
    padding: 20px;
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
}

div#quest-interface .quest-tab {
    height: calc(100vh - 178px);
    max-height: 415px;
    overflow-y: scroll;
    padding-right: 10px;
    width: calc(100% - 22px);
    margin-top: 4px;
    padding-left: 11px;
    background: #dbdbdb;
    box-shadow: inset 0 0 3px #00000069;
    border-radius: 6px;
    padding-bottom: 12px;
}

div#quest-interface .quest-tab::-webkit-scrollbar-track {
    background-color: #a9a7a7;
    border-radius: 5px;
}

div#quest-interface .quest-tab::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 4px;
}

div#quest-interface .quest-tab::-webkit-scrollbar {
    width: 8px;
}

@media (max-width: 550px) {  
    div#quest-interface .ui-tabs-nav li a {
        font-size: 14px;
    }

    #quest-interface-content button.general-green-button {
        font-size: 14px;
    }
}

@media (max-width: 330px) {  
    div#quest-interface .ui-tabs-nav li a {
        font-size: 12px;
    }
}

/* QUEST HINTS */

div#quest-hint {
    width: 100%;
    max-width: 280px;
    transform: translate(-50%, 50%) scale(1);
    left: 50%;
    bottom: 50%;
    text-align: center;
}

img.quest-hint-img {
    border-radius: 4px;
    overflow: hidden;
}

.quest-hint-text {
    padding: 10px 0 16px;
    font-size: 14px;
}

button#quest-hint-proceed-button {
    display: block;
    width: 100%;
}