/*
// Added on 08 Aug 2024
*/

.c-offer-item {
    display: block;
    cursor: pointer;
    position: relative;
    margin-bottom: 1.875rem;
    padding: 1.25rem;
    border: 1px solid #e6eaee;
    border-radius: 4px;
    background-color: #fff;
}

.trending {
    background: linear-gradient(180deg, #fd9a1830, #f1691100);
    border: 1px solid #f16911;
}

.c-badge {
    padding: 0.1rem 0.5rem;
    font-weight: 500;
    text-transform: capitalize;
}

.c-chat-dialogue__btn {
    border-radius: 10px;
    width: 120px;
    height: 50px;
    background: #ffffff;
    color: #2ea1f8;
}

.c-chat-dialogue__body {
    bottom: 60px;
    width: 300px;
}

.c-toggle__btn {
    height: 30px;
    text-transform: none;
    margin-right: 5px;
    border-radius: 4px !important;
    padding: 0px 5px !important;
}
.c-toggle__btn.is-active {
    border-color: #1a91eb;
    background-color: #2ea1f8;
}

.c-switch.is-active:before {
    background-color: #2fa1f8;
}

/* 
// https://codepen.io/FlorinPop17/pen/drJJzK
*/
.blob {
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    height: 10px;
    width: 10px;
    transform: scale(1);
    animation: pulse-black 2s infinite;
}

@keyframes pulse-black {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.blob.green {
    background: #50cd89;
    box-shadow: 0 0 0 0 #50cd89;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}


/*
// Added before Aug 2024
*/

.c-modal {
    backdrop-filter: brightness(2.1);
}
.loader {
    width: 18%;
    height: 4px;
    border-radius: 30px;
    background-color: rgb(0 0 0 / 0.2);
    position: relative;
    margin-top: -70px;
    margin-bottom: 250px;
}
.brand {
    width: 225px;
}
@media only screen and (max-width: 800px) {
    .loader {
        width: 50%;
    }
    .brand {
        width: 200px;
    }
}
.loader::before {
    content: "";
    position: absolute;
    background: #18a0d2;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: moving 1s ease-in-out infinite;
}
@keyframes moving {
    50% {
        width: 100%;
    }
    100% {
        width: 0;
        right: 0;
        left: unset;
    }
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
}
