
#currency_container >img{
    height: 30px;
}

#progress_content_container{
    width: 30%;
    margin: auto;
}

#progress_content_container>h1{
    color: white;
    font-family: montserrat_bold;
    text-align: center;
    margin-bottom: 20px;
}

#info_button_container{
    display: flex;
    align-items: center;
    justify-content: right;
    margin-bottom: 20px;
}

#currency_container{
    display: flex;
    align-items: center;
    color: white;
    margin-right: auto;
    
}
#info_button{
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 3px solid white;
    border-radius: 50%;
    color: white;
    font-size: large;
}

#progress_details_container{
    display: grid;
    grid-template-rows: 1fr 1fr;
}

#progress_details_container>img{
    width: 30px;
    height: 30px;
    margin: auto;
    margin-bottom: 5px;
}

#progress_container{
    display: flex;
    position: relative;
}

#progress_container>img{
    z-index: 2;
    position: absolute;
}

#progress_star_icon{
    width: 70px!important;
    height: 70px!important;
    top: calc(50% - 35px);
    left: -30px;
}
#progress_box_icon{
    width: 50px!important;
    height: 50px!important;
    top: calc(50% - 30px);
    right: -10px;
}


#progress_label{
    position: relative;
    margin: auto;
    width: 100%;
    display: flex;
    align-items: center;
    
}
#progress_label>p{
    position: absolute;
    left: calc(50% - 100px);
    top: calc(50% - 15px);
    width: 200px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: montserrat_bold;
}

#juantask_progress::-webkit-progress-bar {
    background-color: gray; 
    border-radius: 10px;
} 

#juantask_progress::-webkit-progress-value {
    background-color: var(--primary);
    border-radius: 10px;
}

#juantask_progress{
    background-color: var(--primary);
    width: 100%;
    height: 30px;
    border: 5px solid white;
    border-radius: 10px;
}


#juantask_rewards_list_container{
    width: 100%;

}

#juantask_rewards_list{
    width: 100%;
    padding-top: 10px;
}

.juantask_reward_item{
    width: 100%;
    height: 60px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.247);
    border-radius: 10px;
    margin-top: 10px;
    background-color: var(--primary);
    display: grid;
    grid-template-columns: 70px 1fr 85px;
    align-items: center;
    justify-content: center;
}

.jri_star_icon_container{
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: auto;
}
.jri_star_icon_container>img{
    width: 40px;
    height: 40px;
}

.jri_reward_text_container{
    display: grid;
    grid-template-rows: 1fr 1fr;
}
.jri_reward_text_container>p{
    color: white;
    font-size: smaller;
    margin-left: 10px;
}

.claim_button{
    width: 70px;
    height: 30px;
    border:none;
    border-radius: 10px;
    background-color: var(--primary-dark);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.247);
    color: white;
    font-size: x-small;
}

#footer_container{
    
    display: none;
}

#top_left_image{
    display: none;
}

#no_available_rewards_text{
    color: white;
    text-align: center;
}

.expires_text{
    color: lightgray !important;
}

.expired_button{
    background-color: gray;
}