.service-appointment {
    .service-form-new {
        h4, h3 {
            font-weight: 400;
        }

        .step-heading {
            border-bottom: 2px solid #1c3273;
            margin: 20px 0 20px 0;
            line-height: 30px;
        }

        select {
            width: auto !important;
        }
    }

    .service-appointment-form {
        margin-top: 2rem;
        max-width: 65rem;

        .service-appointment-form-select {
            max-width: 40rem;

            .current {
                overflow: hidden;
                display: block;
                text-overflow: ellipsis;
            }
        }

        .nice-select-dropdown {
            width: 100%;

            .list {
                .option {
                    &::before {
                        content: '';
                    }
                }
            }
        }
    }

    .label-service {
        display: block;
        font-size: 1rem;
        font-weight: 400;
    }

    .nav-tabs-service {
        font-size: 1.25rem;
        line-height: 1.875rem;
        width: 100%;
        margin: 1.25rem 0 1.25rem;
        display: flex;
        gap: 0.5rem;

        a {
            text-decoration: none !important;

            &:hover {
                background-color: transparent !important;
                color: #1c3273;
            }
        }

        li {
            border-bottom: solid 3px #7c7c7c;
            display: inline-block;
            width: 24%;
            @media (max-width: 360px) {
                display: inline;
            }

            &.disabled {
                color: #7c7c7c;
                pointer-events: none;
            }

            &.active {
                color: #1c3273;
                border-bottom-color: #1c3273;
            }

            &::before {
                content: '';
            }
        }
    }

    .nav-tabs-justified > .active > a {
        border: none !important;
    }

    .tab-content {
        display: block;

        & > .active {
            opacity: 1;
            transition: opacity 0.5s linear;
            pointer-events: auto;
            position: static;
        }

        .tab-pane:not(.active) {
            opacity: 0;
            pointer-events: none;
            position: absolute;
        }

        .tab-content-wrap {
            display: flex;
            flex-direction: column;
        }

        .tab-content-col {
            display: grid;
            @media (min-width: 768px) {
                grid-template-columns: repeat(2, 1fr);
                column-gap: 1rem;
            }
        }

        .list-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;

            .list-group-item {
                display: block;
                padding: 0.625rem 1rem;
                background-color: #fff;
                border: 1px solid #ddd;
                cursor: pointer;

                &:hover {
                    color: #555;
                    background-color: #f5f5f5;
                }

                &.active {
                    color: #ffffff;
                    background-color: #1c3273;
                    border-color: #1c3273;
                }
            }
        }

        .form-button-wrap {
            display: flex;
            justify-content: end;
        }
    }

    .service-consultants {
        display: grid;
        gap: 1rem;
        margin-bottom: 1rem;
        @media (min-width: 768px) {
            grid-template-columns: repeat(2, 1fr);
        }
        @media (min-width: 979px) {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    input[type="date"] {
        max-width: 20rem;
    }

    .custom-phone-input-label {
        left: 2.75rem !important;
    }

    .custom-phone-input {
        display: flex;
        align-items: center;
        border: 2px solid #676767;
        height: 3.75rem;
        overflow: hidden;

        .input-group-addon {
            background-color: #eee;
            height: 3.75rem;
            display: flex;
            align-items: center;
            padding-inline: 0.375rem;
        }

        input {
            border: none !important;
        }
    }
}
.article-bolded {
    font-weight: 700;
}