
/*------------ carousel ---------------- */
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px;
}

.sw-auto .swiper-slide {
    width: auto;
}

.sw-dots {
    display: flex;
    gap: 8px;
}
.sw-dots.swiper-pagination-bullets .swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sw-dots .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}
.sw-dots .swiper-pagination-bullet:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: #000;
    transition: 0.3s;
}
.sw-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(0, 0, 0, 0.16);
}
.sw-dots.style-2 span::before {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.16);
}
.sw-dots.style-2 span.swiper-pagination-bullet-active {
    background-color: transparent;
    border: 2px solid #000;
}
.sw-dots.style-2 span.swiper-pagination-bullet-active::before {
    background-color: #000;
}
.sw-dots.dots-white span::before {
    background-color: rgba(255, 255, 255, 0.2);
}
.sw-dots.dots-white span.swiper-pagination-bullet-active {
    background-color: transparent;
    border: 2px solid #fff;
}
.sw-dots.dots-white span.swiper-pagination-bullet-active::before {
    background-color: #fff;
}
.sw-dots.line-pagination span {
    width: 6px;
    height: 6px;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
}
.sw-dots.line-pagination span::before {
    content: none;
}
.sw-dots.line-pagination span.swiper-pagination-bullet-active {
    background-color: rgb(0, 0, 0);
    opacity: 1;
    width: 22px;
    border-radius: 9999px;
}
.sw-dots.rectangle-pagination span {
    width: 30px;
    height: 2px;
    background-color: #000 !important;
    opacity: 0.4;
    border-radius: 0;
    border: 0;
}
.sw-dots.rectangle-pagination span::before {
    content: none;
}
.sw-dots.rectangle-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
}
.sw-dots.rectangle-pagination.rectangle-white span {
    background-color: #fff !important;
}
.sw-dots.line-white-pagination span {
    background-color: rgb(255, 255, 255);
    opacity: 0.4;
    width: 10px;
    height: 10px;
}
.sw-dots.line-white-pagination span::before {
    content: none;
}
.sw-dots.line-white-pagination span.swiper-pagination-bullet-active {
    background-color: rgb(255, 255, 255);
    opacity: 1;
    width: 28px;
    border-radius: 9999px;
}
.sw-dots.dots-fill-white .swiper-pagination-bullet::before {
    background-color: #fff;
}
.sw-dots.dots-fill-white .swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 0.1607843137);
}
.sw-dots:not(.swiper-pagination-lock) {
    margin-top: 15px;
}
.sw-dots.medium span {
    width: 20px;
    height: 20px;
    border-width: 1px !important;
}
.sw-dots.medium span::before {
    width: 6px;
    height: 6px;
}
.sw-dots.medium span.swiper-pagination-bullet-active::before {
    width: 4px;
    height: 4px;
}
.sw-dots.small span {
    width: 16px;
    height: 16px;
    border-width: 1px !important;
}
.sw-dots.small span::before {
    width: 6px;
    height: 6px;
}
.sw-dots.small span.swiper-pagination-bullet-active::before {
    width: 4px;
    height: 4px;
}
.sw-dots.absolute-dots {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 10px;
    z-index: 10;
}
.sw-dots.large .swiper-pagination-bullet::before {
    width: 8px;
    height: 8px;
}

.box-sw-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-sw {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #000;
    border: 1px solid #000;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
    cursor: pointer;
}
.nav-sw.swiper-button-disabled {
    border-color: rgba(0, 0, 0, 0.14);
    color: rgba(0, 0, 0, 0.4);
}
.nav-sw:hover:not(.swiper-button-disabled) {
    background-color: #000;
    color: #fff;
}
.nav-sw.lg {
    width: 46px;
    height: 46px;
    font-size: 12px;
}
.nav-sw.square {
    width: 30px;
    height: 30px;
    border-radius: 3px;
}
.nav-sw.round {
    border-radius: 999px;
}
.nav-sw.style-not-line {
    border-color: transparent;
}
.nav-sw.style-not-line.swiper-button-disabled {
    background-color: rgba(255, 255, 255, 0.4);
    color: rgb(0, 0, 0);
}
.nav-sw.line-white {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}
.nav-sw.line-white:hover:not(.swiper-button-disabled) {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}
.nav-sw.line-white.swiper-button-disabled {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.4);
}
.nav-sw.disable-line.swiper-button-disabled {
    border-color: transparent;
    background-color: rgba(255, 255, 255, 0.4);
    color: rgb(0, 0, 0);
}
.nav-sw.style-blue {
    border-color: #1c355e;
    background-color: #1c355e;
}
.nav-sw.style-blue .icon {
    color: #fff;
}
.nav-sw.style-blue:hover:not(.swiper-button-disabled) {
    border-color: #fff;
    background-color: #fff;
}
.nav-sw.style-blue:hover:not(.swiper-button-disabled) .icon {
    color: #1c355e;
}
.nav-sw.style-blue.swiper-button-disabled {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.4);
}
.nav-sw.style-blue.swiper-button-disabled .icon {
    color: #1c355e;
}
.nav-sw.style-white {
    background-color: #fff;
    border: 0;
}
.nav-sw.style-white-line {
    background-color: #fff;
}
.nav-sw.style-disabled-dark.swiper-button-disabled {
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-sw-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}
.nav-sw-arrow:hover {
    color: var(--primary);
}
.nav-sw-arrow.swiper-button-disabled {
    color: rgba(0, 0, 0, 0.4);
}
.nav-sw-arrow.type-white {
    color: #fff;
}
.nav-sw-arrow.type-white:hover {
    color: var(--primary);
}

.hover-sw-nav {
    position: relative;
}
.hover-sw-nav .nav-sw {
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    visibility: hidden;
    background-color: #fff;
    border-color: transparent;
}
.hover-sw-nav .nav-sw.nav-next-slider {
    margin-left: 20px;
    left: 13px;
}
.hover-sw-nav .nav-sw.nav-prev-slider {
    right: 13px;
    margin-right: 20px;
}
.hover-sw-nav .nav-sw.w_46 .icon {
    font-size: 12px;
}
.hover-sw-nav .nav-sw.swiper-button-disabled {
    background-color: rgba(0, 0, 0, 0.2);
}
.hover-sw-nav .nav-sw:hover:not(.swiper-button-disabled) {
    background-color: #000;
    color: #fff;
}
.hover-sw-nav .nav-sw.style-2.swiper-button-disabled {
    opacity: 0.4;
    background-color: #fff;
}
.hover-sw-nav.view-default .nav-sw, .hover-sw-nav:hover .nav-sw {
    margin: 0;
    visibility: visible;
}
.hover-sw-nav.hover-sw-2 .nav-sw {
    top: 37%;
}
.hover-sw-nav.hover-sw-3 .nav-sw {
    top: 40%;
}
.hover-sw-nav.hover-sw-4 .nav-sw {
    top: 35%;
}
.hover-sw-nav.hover-sw-5 .nav-sw {
    top: 32%;
}

.button-style-arrow {
    width: 46px;
    height: 46px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.button-style-arrow::after {
    font-size: 11px;
    color: #000;
    font-weight: 700;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.button-style-arrow:hover {
    background-color: var(--primary);
}
.button-style-arrow:hover::after {
    color: #fff;
}

.wrap-carousel {
    position: relative;
}
.wrap-carousel .nav-sw {
    z-index: 20;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.wrap-carousel .nav-next-slider {
    left: -84px;
}
.wrap-carousel .nav-prev-slider {
    right: -84px;
}
.wrap-carousel .sw-dots {
    display: none;
}
.wrap-carousel.wrap-sw-2 .nav-sw {
    top: 37%;
}
.wrap-carousel.wrap-sw-3 .nav-sw {
    top: 46%;
}

.sw-wrapper-right {
    margin-right: -15px;
}

.navigation-sw-dot {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background-color: #fff;
}
.navigation-sw-dot span {
    width: 9px;
    height: 9px;
    background-color: #000;
    border-radius: 50%;
}
.navigation-sw-dot::after, .navigation-sw-dot::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 9999px;
    animation: ripple 3s infinite;
}
.navigation-sw-dot::after {
    animation-delay: 0.5s;
}
.navigation-sw-dot::before {
    animation-delay: 0.9s;
}
.navigation-sw-dot.swiper-button-disabled {
    width: 36px;
    height: 36px;
}
.navigation-sw-dot.swiper-button-disabled span {
    width: 12px;
    height: 12px;
}
.navigation-sw-dot.type-black::after, .navigation-sw-dot.type-black::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 9999px;
    animation: ripple_black 3s infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
@keyframes ripple_black {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
.swiper-button-disabled {
    cursor: auto !important;
}

.box-nav-pagination {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    min-width: 70px;
    background-color: #fff;
    padding: 8px;
    line-height: 0;
    border-radius: 999px;
}
.box-nav-pagination .dots-default {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.nav-arr-default.swiper-button-disabled {
    opacity: 0.35;
}

.dots-default .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #000;
}

.tf-sw-brand .sw-dots:not(.swiper-pagination-lock) {
    margin-top: 35px;
}
