.card {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

#serialInput.form-control {
    max-width: 300px;
    display: inline-block;
}
#idOtp.form-control {
    max-width: 300px;
    display: inline-block;
}

.subscription-section {
    /* display: none; Initially hidden */
}

.subscription-container {
    background-image: url("../images/customer/brush.svg");
    background-repeat: no-repeat;
}

.custom-under-line {
    display: inline-block;
    position: relative;
}

.custom-under-line::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    background-image: url(../images/yellow-underline-img.svg);
    height: 10px;
    display: block;
    background-size: cover;
}

#serialInput:focus,
.form-select:focus {
    box-shadow: none !important;
}

.whats-new {
    background-image: url(../images/customer/curb.svg);
}

.step-card {
    position: relative;
    /* background: #f8f9fa;*/
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    /* overflow: hidden; */
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* .step-image {
  max-width: 100px;
  margin: 0 auto 15px;
} */
.step-card img {
    width: 100%;
    height: auto;
    /* Maintains aspect ratio */
    display: block;
    /* Removes extra space below the image */
    object-fit: cover;
    /* Ensures the image covers the area properly */
}

.cross-bg {
    background-image: url(../images/customer/cross-bg.svg);
    background-position: right;
    background-repeat: no-repeat;
}

/* side bar  */

.sidebar-list-item {
    padding: 8px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-gray);
}

.sidebar-list-item:hover,
.sidebar-list-item:focus-visible,
.sidebar-list-item:focus {
    text-decoration: none;
    background-color: var(--color-off-white);
}

.menu-item {
    cursor: pointer;
}

.menu-item.active {
    background-color: var(--color-light-blue);
    color: var(--color-white) !important;
}

/* side bar */
.sidebar-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-white);
    overflow-x: hidden;
    transition: 0.4s;
    display: none;
    z-index: 1050;
    padding-top: 25px;
    color: var(--color-shadded-black);
    height: 88vh;
}

.sidebar-menu .menu-content {
    padding: 20px;
}

.sidebar-menu a {
    color: var(--color-shadded-black);
    text-decoration: none;
    display: block;
    padding: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.sidebar-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.close-btn {
    position: absolute;
    top: 10px;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-shadded-black);
}

/* sub nav head */
.custom-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background: #fffae4;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

/* When navbar is fixed */
.custom-nav.fixed {
    position: fixed;
    top: 55px;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-nav-item {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.custom-nav-item.selected {
    /* background-color: var(--color-light-blue); */
    /* color: white; */
    padding: 0 10px;
    border-radius: 5px;
}

.custom-nav-item.selected::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-light-blue);
}

.underLineImg {
    background: url('/wp-content/themes/tally/assets/images/yellow-underline-img.svg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.underLineImg {
    height: 3rem;
}

@media (min-width: 576px) {
    .underLineImg {
        height: 4rem;
    }
}

@media (min-width: 1024px) {
    .underLineImg {
        height: 3rem;
        background-position-y: 2.4rem;
    }
}

@media (min-width: 1200px) {
    .underLineImg {
        height: 3.5rem;
        background-position-y: 3rem;
    }
}

@media (min-width: 1920px) {
    .underLineImg {
        height: 3.5rem;
        background-position-y: 3rem;
    }
}
