.quests-box .header{
    font-size:19px;
    font-weight: 400;
}

.quests-box .description{
    font-size:14px;
    opacity: 0.7;
    /* font-weight: 300; */
}

.quests-box{
    border-top: 2px solid #03a9f452;
    border-radius: 2px;
    height:100%;
}

.quests-box .quests-body{
    position: absolute;
    bottom:0px;
    width: 100%;
    padding: 1.3rem;
}

.quests-box .card-body{
    margin-bottom: 90px;
    padding: 1.3rem;
}

.quests-box .btn{
    margin-top:4px;
    width: 100%;
    margin-top: 15px;
}

.quests-box.daily-quests{
    border:1px solid #03a9f485;
}
.quests-box.lifetime-quests{
    border:1px solid #2ecc7086;
}

.quests-box.quests-claimed{
    border-top:2px solid #2ecc70b7;
    filter:blur(0.8px);
    opacity: 0.8;
    transition:0.2s all linear;
}
.quests-box.quests-claimed:hover{
    filter:none;
    opacity: 1;
}

.quests-box.quests-completed{
    border-top:2px solid #fd9644;
}

.quests-box .progress{
    height:0.4rem;
    border-radius: 0.5rem;
}

.quests-box .claim-btn{
    background:linear-gradient(45deg,#FFC312, #fd9644);
    color: #814905 !important;
}

.quests-box .reward-text{
    color:#FFC312;
    color:#2ecc71;
    margin-bottom: 4px;
}

.quests-box .claim-btn-incomplete{
    pointer-events: none;
}

.quests-box .claim-btn-claimed{
    color: #323c44 !important;
    background: #17b978;
    pointer-events: none;
    opacity: 0.7;
}

.quests-box .claim-btn.loading{
    pointer-events: none;
    opacity:0.6;
}

.quests-box .claim-btn:after {
    animation: shine 3s ease-in-out  infinite;
    animation-fill-mode: forwards;  
    content: "";
    position: absolute;
    top: -100%;
    left: -200%;
    width: 500px;
    height: 200px;
    opacity: 0;
    /* transform: rotate(30deg); */
    
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
      to right, 
      rgba(255, 255, 255, 0.13) 0%,
      rgba(255, 255, 255, 0.13) 77%,
      rgba(255, 255, 255, 0.5) 92%,
      rgba(255, 255, 255, 0.0) 100%
    );
}

@keyframes shine{
    70% {
      opacity: 1;
      left:-10%;
      transition-property: left, top, opacity;
      transition-duration: 0.7s, 0.7s, 0.15s;
      transition-timing-function: ease;
    }
    100% {
      opacity: 0;
      left: -10%;
      transition-property: left, top, opacity;
    }
}