.appointment-area {
    position: relative;
    background-color: $title-color;
    max-width: 1720px;
    display: block;
    margin: auto;
    border-radius: 50px;
    z-index: 2;
    overflow: hidden;
}

.appointment-tabs {
    &.nav-tabs {
        border-bottom: none;
        display: grid;
        grid-template-columns: auto auto auto auto;
        gap: 24px;

        @include xl {
            grid-template-columns: auto auto auto;
        }

        @include md {
            grid-template-columns: auto auto;
        }

        @include sm {
            grid-template-columns: auto;
        }

        .nav-item.show .nav-link,
        .nav-link.active {
            color: var(--white-color);
            border-color: rgba(126, 158, 126, 0.2);
        }

        .nav-link:focus,
        .nav-link:hover {
            border-color: rgba(126, 158, 126, 0.2);
        }
    }

    .nav-link {
        position: relative;
        padding: 20px 40px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 22px;
        border: none;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(126, 158, 126, 0.2);
        border-radius: 50px;
        z-index: 2;
        transition: all 1.3s ease-in-out;

        .box-title {
            font-size: 22px;
            font-family: $title-font;
            font-weight: 500;
            color: $white-color;
            text-align: left;

            @include ml {
                font-size: 20px;
            }
        }

        span {
            display: block;
            font-weight: 400;
            font-size: 14px;
            line-height: 24px;
            color: #7E9E7E;
            margin-top: 5px;


        }

        @include sm {
            font-size: 20px;
        }

        @include vxs {
            font-size: 18px;
        }
    }

}

.guideline-item {
    position: relative;
    background-color: transparent;
    border-bottom: 1px solid $title-color;
    border-radius: 0px;
    padding: 14px 20px 14px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 512px;
    transition: all 0.4s ease-in-out;
    z-index: 2;

    @include lg {
        max-width: 100%;
    }

    &:before {
        content: "";
        position: absolute;
        inset: 0;
        top: -6px;
        right: 6px;
        bottom: 6px;
        background-color: transparent;
        border: 1px solid transparent;
        border-radius: 0px;
        z-index: -1;
        transition: all 0.4s ease-in-out;
    }

    .box-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        border-radius: 50px;
        font-family: $title-font;
        font-weight: 500;
        font-size: 22px;
        color: $white-color;
        background: $theme-color;
        border: 1px solid $title-color;

    }

    .box-title {
        font-size: 20px;
        font-weight: 500;
        margin: 0;
    }

    &:hover {
        background-color: $title-color;
        border-radius: 20px;
        padding: 14px 20px 25px 20px;
        margin-top: 20px;

        &:before {
            background-color: $white-color;
            border: 1px solid $title-color;
            border-radius: 20px;
        }
    }
}

.guideline-wrapp {
    @include lg {
        text-align: center;
    }
}