
/* body{
    font-family: "Newsreader", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
} */

.post-by-img{
    width: 50px;
    height: 50px;
}

.border-15px{
    border-radius: 15px;
}

.navbar .pet-search-icon{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background: transparent;
}

.navbar .pet-search{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-left: unset;
    padding-left:0;
}
.navbar .pet-search:focus{
    /* border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-left: unset; */
    border-color:#E1E3EA;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.masonry-page a{
    background: #f1416c !important;
    color: #fff !important;
}

.navbar-nav .show > .nav-link, .navbar-nav .nav-link.active{
    color: var(--bs-text-danger) !important;
}

/* .flow-gallery .flow-menu.fixed{
    position: static;
    width: 100% !important;
    box-shadow: unset;
} */

.flow-gallery .flow-menu{
    background-color: transparent;
    color: #f1416c;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
}

.flow-gallery .flow-menu a{
    color: #f1416c;
}
.flow-gallery .add-items {
    background: #f1416c;
}

.br20px{
    border-radius: 20px;
}

.br-unset{
    border: unset;
}

.progress-bar{
     background: linear-gradient(to right, #FFD700, #FF4500);
}
.progress{
    background: #ffcbcb;
}

 .modal-dialog {
     max-width: 500px;
 }

.grid {
    display: flex;
    margin: 0 auto;
}

.grid-sizer{
    width: 100%;
    padding: 2px;
}
.grid-item {
    width: 30%;
    /* Adjust based on columns */
}

.case-timelne::before {
    content: "";
    width: 350px;
    height: 350px;
    /* display: block; */
    background: #ffe7e7;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: -5%;
    z-index: -9;
}

@media (max-width: 992px) {

    .grid-sizer,
    .grid-item {
        width: 48%;
    }

    .case-timelne::before {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 600px) {

    .grid-sizer,
    .grid-item {
        width: 100%;
    }
}


.fs-7px{
    font-size: 7px;
}


:root {
    --plyr-color-main: #f1416c;
}



.timeline-slider.style-3 .timeline-item .timeline-time {
    place-content: center !important;
    display: block !important;
    margin: 5px 50px;
}


.panel-danger{
    background: #ffe7e7;
}

.timeline-wrapper {
    position: relative;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-30%);
    background: #f1416c;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.arrow-left {
    left: -10%;
}

.arrow-right {
    right: -10%;
}

#case-time-line {
    position: relative;
    display: flex;
    /* justify-content: flex-start; */
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0;
}

#case-time-line .casetimeline-border {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center the contents horizontally */
}



#case-time-line .casetimeline-border .case-border {
    width: 200px;
    height: 5px;
    background: #f1416c;
    margin-top: 10px;
    transform: translateY(15px);
    position: relative;
    z-index: -99;
    /* space between circle and border */
}

#case-time-line .casetimeline-border::after {
    content: "";
    width: 25px;
    height: 25px;
    background: #f1416c;
    border-radius: 50%;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


#case-time-line .casetimeline-border::before {
    content: attr(data-date);
    color: #f1416c;
    text-align: center;
    font-weight: bold;
}


#case-time-line .casetimeline-border.active::after {
    width: 30px;
    height: 30px;
    animation: rippleWave 1.5s infinite;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Ripple animation using transform */
@keyframes rippleWave {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 65, 108, 0.4);
        /* red with opacity */
    }

    50% {
        box-shadow: 0 0 0 15px rgba(241, 65, 108, 0);
        /* transparent red */
    }

    100% {
        box-shadow: 0 0 0 0 rgba(241, 65, 108, 0);
    }
}


#case-time-line .casetimeline-border .case-border::before {
    content: attr(data-date);
    color: black;
    text-align: center;
    font-weight: bold;
    position: relative;
    top: 25px;
    display: block;
}

#case-time-line .casetimeline-border .case-border::after {
    content: attr(data-event);
    color: gray;
    text-align: center;
    font-weight: bold;
    position: relative;
    top: 25px;
    display: block;

    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.timeline-wrapper #case-evdience{
    position: relative;
    top: 100px;
}

@media (max-width: 600px) {
    /* .arrow-btn {
        transform: translateY(-20%);
    } */
    .arrow-left {
        left: -25%;
    }

    .arrow-right {
        right: -25%;
    }
    .arrow-btn{
        width: 40px;
        height: 40px;
        padding: 0 !important;
    }
}
