.triangle-up {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid #0b2c51;
}

/* MARK: invalid-feedback
*/
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip,
.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip {
    display: block;
}

/* MARK: breadcrumb
*/
.breadCrumbs {
    /* @apply mt-5; */
}

.breadcrumb {
    @apply flex py-2;

    &-item {
        &+.breadcrumb-item {
            @apply ml-2 lg:ml-4 pl-4 lg:pl-6 relative;
        }

        &+.breadcrumb-item::before {
            @apply content-['/'] absolute left-0 text-black text-xs lg:text-base;
        }

        a {
            @apply text-black text-sm lg:text-base line-clamp-2;
            /* span {} */
        }

        /* &.active {
            a {
                span {
                }
            }
        } */
    }
}

/* MARK: pagination
*/
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-link {
    @apply text-cmain;
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;

    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    @apply text-cmain;
    z-index: 2;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
    @apply bg-cmain border-cmain text-white;
    z-index: 3;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

/* MARK: form-control
*/


/* MARK: form-yeucau
*/
.form-yeucau {
    .form-control {
        @apply !bg-cmain outline-none outline-0 rounded-full text-white placeholder:text-white/80;

        &:focus {
            @apply bg-cmain text-white shadow-none;
        }
    }
}

/* MARK: scroll-container
*/
.scroll-container {
    &::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        border-radius: 8px;
        background-color: rgba(0, 0, 0, 0.08);
    }

    &::-webkit-scrollbar-thumb {
        border-radius: 8px;
        background-color: rgba(0, 0, 0, 0.16);
    }

    &::-webkit-scrollbar-thumb:hover {
        background-color: rgba(0, 0, 0, 0.24);
    }
}

/* MARK: swiper-news
*/
.swiper-news-button-prev.swiper-button-disabled,
.swiper-news-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}