.educations-accordion {
    details {
        @apply border border-solid border-gray overflow-auto border-b-0;

        &:last-child {
            @apply border-b;
        }

        .wrapper {
            @apply cursor-pointer list-none p-4 pb-3 flex justify-between text-left w-full;

            h4.heading {
                @apply font-semibold m-0;
            }
        }

        summary {
            & > * {
                @apply inline;
            }

            .icon {
                @apply mt-1 ml-4;
            }

            .icon-plus {
                @apply inline;
            }

            .icon-minus {
                @apply hidden;
            }

            &:focus {
                outline: 0 !important;
                box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
            }
        }

        .card-body {
            @apply p-4 pt-0;

            .link {
                @apply my-4;
            }
        }

        &[open] {
            summary {
                .icon-plus {
                    @apply hidden;
                }

                .icon-minus {
                    @apply inline;
                }
            }
        }
    }
}
