.btn.btn-primary {
    background: #000;
    border-radius: 0.8rem;
}

header .app-logo,
footer .app-logo {
    max-width: 96px;
    max-height: 96px;
}/* Fix size 96*/

header .dropdown-menu {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0px;
}

footer .container {
    border-top: 1px solid #E6E6E6;
}

.min-height-device {
    min-height: calc(100dvh - 125px);
}

.wyswig-content a {
    text-decoration: underline;
}

#home-hero .hero-images {
    min-height: calc(100dvh - 200px);
}

@media(min-width: 1024px) {
    #home-hero .hero-images {
        max-height: calc(100dvh - 145px);
    }
}


#home-hero .swiper-horizontal>.swiper-pagination-bullets,
#home-hero .swiper-pagination-bullets.swiper-pagination-horizontal,
#home-hero .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 5rem
}

#home-hero .swiper-pagination .swiper-pagination-bullet {
    width: 2.4rem;
    height: 2.4rem;
    background: #fff;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.25s ease-in-out;
}

#home-hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 9rem;
    border-radius: 20px;
    transition: all 0.25s ease-in-out;
}

#home-hero .swiper-actions > .swiper-button-prev,
#home-hero .swiper-actions > .swiper-button-next {
    padding: 15px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    opacity: 1;
    text-align: center;
    color: var(--bs-primary);
}

#home-hero .swiper-actions > .swiper-button-prev:after,
#home-hero .swiper-actions > .swiper-button-next:after {
    font-size: 24px;
    line-height: 24px;
}

#home-posts .wyswig-content {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#home-posts .post-item-image {
    aspect-ratio: 624 / 410;
}

#auth-multi-form .form-background-register {
    background: #F7F7F7;
}

#post-article .post-fw-image {
    aspect-ratio: 1280 / 720;
    max-height: 720px;
}

#post-article .post-hw-image {
    aspect-ratio: 624 / 436;
    max-height: 436px;
}

#primary-menu .menu-item {
    position: relative;
}

#primary-menu .menu-item a {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}

#primary-menu .menu-item > .sub-menu {
    position: absolute;
    top: calc( 100% + 25px );
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: var(--bs-white);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

#primary-menu .menu-item > .sub-menu:before {
    content: '\A0';
    position: absolute;
    left: 0px;
    bottom: 100%;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
}

#primary-menu .menu-item:hover > .sub-menu {
    opacity: 1;
    pointer-events: all;
}


.btn.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn.btn-primary span {
    display: inline-block;
    transition: 0.15s ease-in-out;

}

.btn.btn-primary span:hover {

    transform: translateY(-100%);
    transition: 0.15s ease-in-out;
}
 .btn.btn-primary span:before {
     content: attr(data-label);
     position: absolute;
     color: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     transform: translateY(100%);
     transition: 0.1s ease-in-out;
     z-index: 15;
}


#dashboard-hero .custom-border {
    border: 1px solid #E0E0E0
}

#dashboard-hero .table-responsive tr:not(:last-of-type) {
    border-bottom: 1px solid #E0E0E0;
}

.hidden {
    display: none !important;
}
