/* LOCAL CSS UPDATES */

.landing-app-howto__wrapper { 
    max-width: 1920px; 
}

.swiper-buttons-navigation {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 1rem;
    width: 110px;
    position: absolute;
    bottom: -21px;
    right: 2rem;
}

.swiper-button-next, .swiper-button-prev {
    position: relative !important;
    color: #333 !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    margin-top: 0 !important;
    width: 44px !important;
    height: 44px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #B0A9A5;
}


.swiper-button-next:after, .swiper-button-prev:after {
content: '' !important;
width: 9px !important;
height: 16px !important;
background-image: url(../image/arrow.svg);
}


.swiper-button-next:after {
    transform: scaleX(-1);
}

@media only screen and (max-width: 761px) {
    .swiper-buttons-navigation {
        display: none;
    }
}