#weeklyCheckIn-floating-button {
    position: fixed;
    z-index: 200;
    bottom: 80px;
}

.pop-up-checkin-btn {
    position: absolute;
    top: 111%;
    left: 48%;
    transform: translate(-50%, -50%);
    background-color: #FF8C00;
    font-size: 18px;
    color: black;
}

.claimed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.claimed-overlay span {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.check-in-img {
    margin-top: 40px;
    width: 40%;
}

.my-card-body {
    background-color: lightyellow;
}

.today-claim {
    max-width: 400px;
}


.claim-now-button {

    background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000);

    animation: border-animation 50s linear infinite;
}
    
.claim-now-button:hover {
    background: linear-gradient(to bottom, #f2f2f2, #ffffff);
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    overflow:hidden;
}
    
.card-body {
    text-align: center;
}

.card-body img {
    width: 100%;
    height: auto;
}

/* HomePage */

.c-container img {
    max-width :100%
}

.img-wrapper-weekly-checkin {
  border: 2px solid yellow;
  padding: 10px;
  margin: 10px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 5px lightyellow;
  position: relative;

}

.img-wrapper-weekly-checkin figcaption {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: lightyellow;
    padding: 5px 5px;
    border-radius: 10px;
    font-size: 0.6em;
}


/* Daily check in title */

.divider {
    display: flex;

    &:before,
    &:after {
        content: "";
        flex: 1;
    }
}

.line {
    align-items: center;
    margin: 1em -1em;
}


.one-line {
    &:before,
    &:after {
        background: black;
    }
}

.razor {
    &:before,
    &:after {
        box-shadow: 1 0.5px 0 white; 
        border-bottom: 1.5px solid white; 
    }
}

.double-razor {
    &:before,
    &:after {
        height: 3px;
        box-shadow: 
            0 -0.5px 0 white,
            0 0.5px 0 white;
            border: solid white; 
        border-width: 1;
    }
}

.glow {
    &:before,
    &:after {
        height: 6px;
        -webkit-filter: blur(5px);
        border-radius: 5px;
    }

    &:before {
        background: linear-gradient(to right, blue, hotpink);
    }

    &:after {
        background: linear-gradient(to left, blue, hotpink);
    }
    }

    .gradient {
        align-items: stretch;
        margin: 1em 0;
        height: 2em;
        line-height: 2em;
        color: white;
        background: black;

    &:before {
        background: linear-gradient(to right, white, black);
    }

    &:after {
        background: linear-gradient(to left, white, black);
    }
}

.donotcross {
    overflow: hidden;
    align-items: center;
    background: hsl(50, 100%, 50%);
    color: black;
    height: 2em;
    line-height: 2em;
        
    &:before,
    &:after {
        background: white;
        padding: 50px 0;
        height: 0;
        transform: rotate(45deg);
    }
}
  


@media (max-width: 767px) {

    .c-container img {
        max-width: 200px;
        max-height: 100px;
    }

    .weekly-checkin-width {
        width: 100%;
        overflow-x: scroll;
    }

    .pop-up-checkin-btn {
        top: 125%;
        left: 47%;
    }
}

/* HomePage */
