.d-mob-none {
    display: block;
}

@media (max-width: 767px) {
    .d-mob-none {
        display: none;
    }
}

/* Category Card Animated Border */
.closeIn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.closeIn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #d50011;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.closeIn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.closeIn .card-body {
    position: relative;
    z-index: 1;
}


.closeIn .card-img-top {
    transition: transform 0.4s ease;
}
.title-fiyat {
    position: relative;
    display: inline-block;
}

.title-fiyat::after {
    content: "";
    position: absolute;
    border: 0;
    width: 50px;
    height: 3px;
    background: #d50011;
    z-index: 1;
    margin-left: 0;
    left: 0;
    bottom: -15px;
}

.form-label .text-primary {
    color: var(--primary) !important;
}

.required-star {
    color: var(--primary) !important;
}
