:root {
    --color-primary: #00468f;
    --hb-black: #212529;
    --hb-gray: #6A7C92;
    --hb-light-gray: #EFF2F9;
    --hb-red: #ff334c;
    --hb-light-blue: #006ef7;
    --hb-green: #1ed35a;
    --hb-link-hover-transition: all 0.3s ease-out 0s;
    --hb-black-and-light-blue-gradient: linear-gradient(0deg, rgba(0, 70, 143, 1) 0%, rgba(0, 88, 191, 1) 31%, rgba(0, 105, 235, 1) 83%, rgba(0, 105, 235, 1) 100%);
    --hb-body-padding: 30px;
    --hb-body-padding-md: 75px;
    --hb-body-padding-lg: 125px;
    --hb-body-padding-xl: 145px;
    --hb-cb-brand-container-width: 380px;
    --hb-cb-brand-container-width-sticky: 250px;

    --hb-cb-brand-container-width-1369: 330px;
    --hb-cb-brand-container-width-sticky-1369: 250px;
    --hb-cb-brand-container-width-991: 220px;
    --hb-cb-brand-container-width-sticky-991: 220px;
    --hb-cb-brand-container-width-767: 175px;
    --hb-cb-brand-container-width-sticky-767: 175px;
  
    --hb-blue-and-red-gradient: linear-gradient(90deg, rgba(0, 83, 171, 1) 0%, rgba(0, 91, 196, 1) 39%, rgba(0, 91, 196, 1) 58%, rgba(216, 54, 65, 1) 100%);
    --hb-blue-30px-and-white-gradient: linear-gradient(to bottom, #0063dc 0px, #0063dc 36px, #ffffff 36px, #ffffff 100%);
}

.color-primary {
    color: var(--color-primary);
}

.color-black {
    color: var(--hb-black);
}

.color-green {
    color: var(--hb-green);
}

.bg-hb-blue {
    background-color: var(--hb-light-blue);
}

.bg-white {
    background-color: #ffffff;
}

.bg-hb-blue-30px-and-white-gradient {
    background: var(--hb-blue-30px-and-white-gradient);
}

.bg-hb-blue-and-red-gradient {
    background: #0053ab;
    background: var(--hb-blue-and-red-gradient);
}

.bg-hb-blue-gradient {
    background: var(--hb-light-blue);
    background: var(--hb-black-and-light-blue-gradient);
}

.bg-hb-light-gray {
    background-color: var(--hb-light-gray);
}

.body-bg {
    background-color: #0069eb;
}

.pt-100px {
    padding-top: 100px;
}

#cb-nav {
    transition: transform 0.8s ease, box-shadow 0.8s ease;
}

#cb-area .cb-fixed .navbar.cb-card {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-radius: 8px;
}

.cb-fixed {
    position: fixed;
    top: 97px;
    left: 0;
    right: 0;
    z-index: 1050;
    transform: translateY(-10px); /* slide-effect */
}

@media (min-width: 992px){
    #cb-area .cb-fixed .navbar.cb-card a {
        font-size: 16px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 991px){
    /* #cb-area .navbar-area .navbar {
        padding-top: 10px!important;
        padding-bottom: 10px!important;
    } */

    #cb-area .navbar-area.sticky .navbar {
        padding-top: 0!important;
        padding-bottom: 0!important;
    }
}

body #cb-area {
    padding-top: var(--hb-body-padding-xl);
}

.hb-navbar-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 1369px){
    body #cb-area {
        padding-top: var(--hb-body-padding-lg);
    }

    #cb-area .navbar.cb-card {
        padding-top: 0!important;
        padding-bottom: 0!important;
    }

    .hb-navbar-container {
        padding-top: 1.3rem;
        padding-bottom: 1.3rem;
    }

    #cb-area .navbar.cb-card a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 991px){
    body #cb-area {
        padding-top: var(--hb-body-padding-md);
    }

    .hb-navbar-container {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 767px){
    body #cb-area {
        padding-top: var(--hb-body-padding);
    }
}

#cb-area .navbar a{
    font-size: 20px;
    margin-right: 2rem;
    color: var(--hb-black);
}

#cb-area .navbar .dropdown-menu {
    margin: 0;
}

@media (min-width: 992px) {
    #cb-area .navbar .dropdown-menu {
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

/* opzionale: se vuoi che il sottomenu scorri più fluido */
#cb-area .navbar .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

#cb-area .navbar .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
}

#cb-area .navbar .dropdown-menu li a{
    padding-left: 1rem;
    padding-right: 1rem;
    border-top: 1.5px solid #e4e7ed;
    width: 100%;
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
}

#cb-area .navbar .dropdown-menu li a:hover {
    color: var(--hb-light-blue);
    background-color: #EFF2F9;
}

#cb-area .navbar .dropdown-menu li:first-child a{
    border-top: none;
}

#cb-area .navbar-brand {
    width: initial;
    max-width: 100%;
}

#cb-area .brand-container {
    width: var(--hb-cb-brand-container-width);
    max-width: 100%;
    transition: width 0.8s ease;
}

#cb-area .navbar-brand .hubix-logo-container {
    width: 50%;
    max-width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

#cb-area .navbar-brand .cashback-logo-container {
    width: 38%;
    max-width: 100%;
    height: auto;
    transition: 
    transform 0.8s ease,
    opacity 0.8s ease;
}

#cb-area .brand-container .vertical-separator {
    height: 85px;
    border-left: 1px solid var(--color-primary);
    transition: height 0.8s ease, transform 0.8s ease;
    margin-left: 6%;
    margin-right: 6%;
}

#cb-area .navbar-brand img.hubix-logo,
#cb-area .navbar-brand img.cashback-logo {
    width: 100%;
    height: auto;
}

#cb-area a.cb-nav-login {
    border: 4px solid var(--color-primary);
    border-radius: 4rem;
    margin: 0;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 24px;
    padding: 9px 39px;
}

#cb-area span.cb-nav-login {
    margin: 0;
    font-weight: 400;
    color: var(--color-primary);
    font-size: 21px;
    transition: font-size 0.8s ease, line-height 0.25s ease;
    line-height: 1.2;
}

#cb-area a.cb-nav-login:hover {
    border: 4px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #ffffff;
}

#cb-area .navbar.cb-card {
    z-index: 12;
}

.cb-page-title {
    color: #ffffff;
    font-size: 36px;
}

/*SUBMENU*/

#cb-area .dropdown-toggle::after {
    display: none!important;
}

#cb-area .navbar-toggler.collapsed .navbar-toggler-icon {
    display: inline-block;
}

#cb-area .navbar-toggler.collapsed .toggler-x {
    display: none;
}

#cb-area .toggler-x {
    display: none;
}

#cb-area .navbar-toggler.open .toggler-x {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
}

#cb-area .navbar-toggler.open .toggler-x::before,
#cb-area .navbar-toggler.open .toggler-x::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 2px;
    background: #000;
}

#cb-area .navbar-toggler.open .toggler-x::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
#cb-area .navbar-toggler.open .toggler-x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#cb-area .navbar-toggler.open .navbar-toggler-icon {
    display: none;
}
 
#cb-area .dropdown-submenu {
    position: relative;
}

#cb-area .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
}

#cb-area .dropdown-submenu.show > .dropdown-menu {
    display: block;
}

/* freccia chiusa: a destra */
#cb-area .toggle-icon,
#cb-area .submenu-icon {
    transition: transform .2s;
}

/* freccia aperta: verso il basso */
#cb-area .dropdown-open .toggle-icon,
#cb-area .submenu-open .submenu-icon {
    transform: rotate(90deg);
}


/* icona sottomenu */
#cb-area .submenu-icon {
    transition: transform .2s;
}

#cb-area .submenu-open .submenu-icon {
    transform: rotate(90deg);
}


/*NAVBAR STICKY START*/
#cb-area .navbar-area.sticky .brand-container {
    width: var(--hb-cb-brand-container-width-sticky);
}

#cb-area .navbar-area.sticky span.cb-nav-login {
    font-size: 17px;
    line-height: 1.1;
}

#cb-area .navbar-area.sticky .navbar a:not(.navbar-brand) {
    font-size: 18px;
}

#cb-area .navbar-area.sticky .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 992px) {
    #cb-area .navbar-area.sticky .hubix-logo-container,
    #cb-area .navbar-area.sticky .cashback-logo-container {
        transform: scale(0.85);
    }

    #cb-area .navbar-area.sticky .brand-container .vertical-separator {
        height: 35px;
        transform: scaleY(0.85);
    }
}

/*NAVBAR STICKY END*/

#cb-area .cb-card {
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    padding: 3rem 4rem;

}

#cb-area .bg-rb {
    background-size: 84%;
    background-position: calc(100% + 225px) calc(100% + 95px);
    background-repeat: no-repeat;
    width: 100%;
}

#cb-area .cb-card h1 {
    font-size: 56px;
    font-weight: 700;
    font-weight: 800;
    color: var(--color-primary);
}

#cb-area .cb-card h2 {
    font-size: 36px;
    font-weight: 700;
    font-weight: 800;
    color: var(--hb-light-blue);
}

#cb-area .cb-card ul.bullet-list li {
    position: relative;
    font-size: 24px;
    font-weight: 400;
    font-weight: 300;
    color: var(--hb-black);
    padding-left: 30px;
    margin-bottom: 30px;
}

#cb-area .cb-card ul.bullet-list li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 17px;
    width: 10px;
    height: 10px;
    background-color: var(--hb-light-blue);
    border-radius: 50%;
}

#cb-area .cb-card img.hubix-logo-nopo {
    display: block;
    position: relative;
    width: 150px;
    max-width: 100%;
    height: auto;
    margin: auto;
}

#cb-area .cb-card img.cashback-logo{
    display: block;
    position: relative;
    width: 240px;
    max-width: 100%;
    height: auto;
    margin: auto;
}

#cb-area a.cb-cta {
    background-color: var(--hb-red);
    border: 2px solid var(--hb-red);
    color: #ffffff;
    font-size: 21px;
    font-weight: 400;
    font-weight: 600;
    font-weight: 500;
    border-radius: 4rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    width: 385px;
    max-width: 100%;
    text-align: center;
    transition: var(--hb-link-hover-transition);

    /* box-shadow: 0 1rem 2rem rgba(255, 255, 255, .575);
    border: 4px solid #0055de; */
}

#cb-area a.cb-cta:hover {
    color: var(--hb-red);
    background-color: #ffffff;
    cursor: pointer;
}

footer.footer {
    z-index: 0;
}

#cb-offers-items h3 {
    font-size: 36px;
}

#cb-offers-items p {
    font-size: 18px;
    color: #444444;
}

@media (max-width: 991px) {
    #cb-area .cb-card h1 {
        font-size: 38px;
        line-height: 1.35;
    }

    #cb-area .cb-card h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    #cb-area .cb-card ul.bullet-list li {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 21px;
    }

    #cb-offers-items h3 {
        font-size: 32px;
    }
}

@media (max-width: 414px) {
    #cb-area .cb-card h1 {
        font-size: 26px;
        line-height: 1.5;
    }
}

/*CB-OFFERS-CAROUSEL START*/
#carousel-section .carousel-container {
    max-width: 1440px;
}

#carousel-section .intro.container p {
    font-size: 36px;
    color: var(--hb-black);
}

#carousel-section h3 {
    font-size: 72px;
    color: var(--hb-light-blue);
    font-weight: 700;
    font-weight: 800;
}

.cb-carousel.swiper {
    padding-left: 27px;
    padding-right: 27px;
}

.cb-carousel .swiper-slide {
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin:auto;
}

.cb-carousel .swiper-wrapper {
    width: calc(100% - 25px);
}

.cb-carousel-item {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: auto;
}

#carousel-section .cb-carousel .cb-carousel-item .img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: auto;
    max-width: 100%;
    background: #ffffff;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    overflow: hidden;
}

.cb-carousel .cb-carousel-item .img-container img{
    padding: 15px;
    height: 100%;
    max-height: 43%;
    width: auto;
}

.cb-carousel .cb-carousel-item h4 {
    font-size: 21px;
    font-weight: 700;
}

#cb-area .cb-carousel .cb-carousel-item a.cb-cta {
    font-size: 21px;
    line-height: 1.25;
    /* box-shadow: none; */
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

#cb-area .cb-carousel .cb-carousel-item span {
    color: var(--hb-black);
    font-size: 18px;
}

.cb-carousel-btn.swiper-button-prev,
.cb-carousel-btn.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0)!important;
    color: var(--hb-light-blue)!important
}

.cb-carousel-btn.swiper-button-next, 
.cb-carousel-btn.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0)!important;
    color: var(--hb-light-blue)!important
}

.cb-carousel .swiper-button-prev:hover,
.cb-carousel .swiper-rtl .swiper-button-next:hover,
.cb-carousel .swiper-button-next:hover, 
.cb-carousel .swiper-rtl .swiper-button-prev:hover {
    color: var(--hb-light-blue)!important
}

@media (max-width:991px) {
    .cb-carousel-btn.swiper-button-prev,
    .cb-carousel-btn.swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset, -15px)!important;
    }

    .cb-carousel-btn.swiper-button-next, .cb-carousel .swiper-rtl .cb-carousel-btn.swiper-button-prev{
        right: var(--swiper-navigation-sides-offset, -15px)!important;
    }
}

@media (max-width:525px) {
    .cb-carousel-btn.swiper-button-prev,
    .cb-carousel-btn.swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset, -10px)!important;
    }

    .cb-carousel-btn.swiper-button-next, .cb-carousel .swiper-rtl .cb-carousel-btn.swiper-button-prev{
        right: var(--swiper-navigation-sides-offset, -10px)!important;
    }
}
/*CB-OFFERS-CAROUSEL END*/

/*CB-OFFERS-GRID START*/
#cb-offers-items .cb-carousel-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    text-align: center;
    overflow: hidden;
    border: 1.5px solid #e4e7ed;
    height: 100%;
}

#cb-offers-items .cb-carousel-item .offer-prev-container {
    display: block;
    position: relative;
    width: 100%;
    height: 150px;
    padding-top: 18px;
    padding-bottom: 18px;
    /* padding: 15% 10% 0 10%; */
}

#cb-offers-items .cb-carousel-item .offer-prev {
    display: block;
    position: relative;
    width: 100%;
    max-width: 185px;
    margin: auto;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
}

#cb-offers-items .content {
    padding: 1rem 1rem;
    background-color: #EFF2F9;
    border-top: 1.5px solid #e4e7ed;
    height: 100%;
}

#cb-offers-items .content .img-container img{
    width: auto;
    height: 30px;
}

#cb-offers-items .cb-carousel-item span {
    color: var(--hb-black);
    font-size: 18px;
}

#cb-offers-items a.cb-carousel-item span.cb-cta {
    background-color: var(--hb-red);
    border: 2px solid var(--hb-red);
    color: #ffffff;
    font-size: 24px;
    border-radius: 4rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    width: 385px;
    max-width: 100%;
    text-align: center;
    transition: var(--hb-link-hover-transition);
    font-weight: 400;
    font-size: 18px;
}

#cb-offers-items a.cb-carousel-item span.cb-cta b {
    font-weight: 700;
}

#cb-area a.cb-carousel-item:hover span.cb-cta {
    color: var(--hb-red);
    background-color: #ffffff;
    cursor: pointer;
}

#cb-area a.cb-carousel-item .offer-name {
    font-size: 15px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: uppercase;
}
/*CB-OFFERS-GRID END*/

/*CB-PROGRAM DETAILS START*/
/* #details .cb-program-info {
    display: flex;
    align-items: center;
} */

#details .cb-program-info img {
    display: block;
    position: relative;
    width: 100%;
    max-width: 200px;
    height: auto;
    border: 1.5px solid #e4e7ed;
    border-radius: 18px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

#details .cb-program-metadata h1 {
    font-size: 27px;
    text-transform: uppercase;
}

/* #details .cb-program-metadata .metadata {
    margin-top: 18px;
    margin-bottom: 10px;
}
 */
#details .cb-program-metadata .metadata h2 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--hb-black);
    letter-spacing: 0.015em;
}

#details .cb-program-metadata .metadata p {
    font-size: 15px;
    color: var(--hb-black);
}

#details p.cb-value b {
    font-size: 27px;
    text-transform: uppercase;
    color: #555555;
}

.active-bullet,
.not-active-bullet {
    position: relative;
    padding-left: 15px;
}

.active-bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: green;
    animation: blink 5s infinite;
}

.not-active-bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--hb-red);
    animation: blink 5s infinite;
}

/* animazione lampeggio */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.4;
    }
}

#details .cb-program-metadata .vertical-separator {
    width: 1px;
    background-color: #c0c0c0;
    height: 40px;
}

#details h2.description-title {
   font-size: 21px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--hb-black);
    color: #555555;
    /* color: var(--hb-light-blue); */
    letter-spacing: 0.015em; 
}

#details a.cb-cta,
#details button.cb-cta {
    background-color: var(--hb-red);
    border: 2px solid var(--hb-red);
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    border-radius: 4rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    width: 385px;
    max-width: 100%;
    text-align: center;
    transition: var(--hb-link-hover-transition);
    font-weight: 400;
    font-weight: 600;
    text-transform: uppercase;
}

#details a.cb-cta:hover,
#details button.cb-cta:hover {
    color: var(--hb-red);
    background-color: #ffffff;
    cursor: pointer;
}

#details .description div, 
#details p.description ,
#details .description p,
#details .description span {
    font-size: 15px!important;
    color: var(--hb-black)!important;
    width: auto !important;
    font-family: "Poppins", sans-serif!important;
    margin-top: 15px!important;
    margin-bottom: 15px!important;
    line-height: 1.75!important;
}

#details .description div font{
    color: var(--hb-black)!important;
}


/*CB-PROGRAM DETAILS END*/

/*START CB-STRIPE*/
#cb-stripe .container-abs {
    position: absolute;
    /* top: -54px; */
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

#cb-stripe .img-container img {
    width: auto;
    height: 115%;
    position: absolute;
    top: -11%;
    right: 1%;
    padding-left: 3%;
    padding-right: 3%;
}

#cb-stripe .img-height {
    height: 500px;
}

#cb-stripe h2 {
    font-weight: 400;
    font-size: 45px;
    color: #ffffff;
    line-height: 1.35;
}

@media (max-width:991px) {
    #cb-stripe h2 {
        font-size: 42px;
    }
}

@media (max-width:767px) {
    #cb-stripe h2 {
        font-size: 32px;
    }
}
/*END CB-STRIPE*/

/*START CB-STRIPE-INVITE-FRIEND*/
#cb-stripe.cb-stripe-invite-friend .img-container img {
    width: auto;
    height: 100%;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 10%;
    padding-left: 3%;
    padding-right: 3%;
}

@media only screen and (max-width: 1215px) {
    #cb-stripe.cb-stripe-invite-friend .img-container {
        display: flex;
        height: 100%;
        align-items: end;
        justify-content: end;
    }
    #cb-stripe.cb-stripe-invite-friend .img-container img  {
        position: relative;
        width: auto;
        max-width: 390px;
        height: auto;
        top: 0;
        right: 0;
    }
}
/*END CB-STRIPE-INVITE-FRIEND*/

/*START CATEGORY BLOCK*/
#category-block h3 {
    font-size: 36px;
    color: var(--color-primary);
    font-weight: 700;
}

#category-block h4 {
    font-size: 16px;
    font-weight: 400;
    font-weight: 500;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--color-primary);
    transition: var(--hb-link-hover-transition);
}

#category-block ul a,
#category-block ul a {
    color: var(--hb-gray);
}

#category-block ul li {
    font-size: 21px;
    font-weight: 400;list-style: disc;
    margin-left: 21px;
    margin-bottom: 1.75rem;
}

#category-block ul a:hover,
#category-block a h4:hover {
    color: var(--hb-light-blue);
    transition: var(--hb-link-hover-transition);
}
/*END CATEGORY BLOCK*/

/*START SUBCATEGORY BLOCK*/

#subcategory-block h1 {
    color: var(--hb-light-blue);
    text-transform: uppercase;
    font-weight: 400;
    font-weight: 700;
    /* font-size: 72px; */
    font-size: 36px;
}

#subcategory-block p.intro {
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1.6;
}

#subcategory-block .metadata p {
    font-size: 18px;
}

#subcategory-block .metadata p b {
    font-weight: 700;
}

#subcategory-block .metadata input {
    font-size: 21px;
    border-radius: 12px;
    padding: 8px 10px;
}

#subcategory-block .cb-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    text-align: center;
    overflow: hidden;
}

#subcategory-block a.cb-cta {
    width: 310px;
}

#subcategory-block .cb-card .left .img-container {
    width: auto;
    max-width: 170px;
    height: auto
}

#subcategory-block .cb-card .left .img-container img {
    width: 100%;
    height: auto;
}

#subcategory-block p.description {
    text-transform: uppercase;
    font-size: 24px;
    text-align: left;
    font-weight: 400;
    font-weight: 600;
}

#subcategory-block p.info {
    color: var(--hb-red);
    font-size: 24px;
    font-weight: 700;
}

#subcategory-block .right i {
    font-size: 27px;
}

@media only screen and (max-width: 767px) {
    #subcategory-block .metadata p {
        font-size: 16px;
    }

    #subcategory-block .metadata input {
        font-size: 18px;
    }
}

/*END SUBCATEGORY BLOCK*/

/*START CB-SLIDER*/
#cb-slider .swiper {
  width: 100%;
  height: 100%;
}

#cb-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cb-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#cb-slider .swiper-slide {
    position: relative;
}

#cb-slider .swiper-content {
    display: block;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
}

#cb-slider .swiper-content .orverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
}

#cb-slider .cb-slider-content {
    display: flex;
    justify-content: start;
    align-items: end;
    width: 100%;
    height: 100%;
}


#cb-slider .cb-slider-content .cb-card{
    display: block;
    position: relative;
    width: 100%;
    max-width: 50%;
    height: auto;
    padding: 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

#cb-slider .cb-slider-content .cb-card .cb-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background-color: var(--hb-red);
    color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    padding: 0.15rem 1rem;
    font-size: 15px;
    font-weight: 700;
    font-weight: 600;
    letter-spacing: 0.03em;
    z-index: 2;
}

#cb-slider .cb-card-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1rem 2rem .25rem 2rem;
}

#cb-slider .cb-slider-content .cb-card img {
    display: block;
    position: relative;
    width: 100%;
    max-width: 150px;
    height: auto;
    max-height: 56px;
}

#cb-slider .cb-slider-content .cb-card h4{
    text-transform: uppercase;
    font-size: 21px;
}

#cb-slider .cb-slider-content .cb-card p{
    color: var(--hb-red);
    font-size: 21px;
    font-weight: 700;
    text-align: left;
    line-height: 1.25;
}

.cb-card-footer {
    color:#ffffff;
    background-color: var(--hb-light-blue);
    padding: .75rem 2rem;
    text-align: left;
}

#cb-slider .cb-slider-content a:hover .cb-card-footer {
    background-color: var(--hb-red);
    cursor: pointer;
}

#cb-slider .swiper-button-prev,
#cb-slider .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 25px)!important;
    color: rgba(255, 255, 255, .65)!important
}

#cb-slider .swiper-button-next, 
#cb-slider .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,25px)!important;
    color: rgba(255, 255, 255, .65)!important
}

#cb-slider .swiper-button-prev:hover,
#cb-slider .swiper-rtl .swiper-button-next:hover,
#cb-slider .swiper-button-next:hover, 
#cb-slider .swiper-rtl .swiper-button-prev:hover {
    color: rgba(255, 255, 255, 1)!important
}

@media only screen and (max-width:991px) {
    #cb-slider .cb-slider-content .cb-card {
        max-width: 85%;
    }

    #cb-slider .swiper-content {
        height: 500px;
        background-size: auto;
    }
}

@media only screen and (max-width:767px) {
    #cb-slider .cb-slider-content .cb-card {
        max-width: 100%;
    }

    /* #cb-slider .swiper-button-prev,
    #cb-slider .swiper-button-next {
        color: rgba(0, 70, 143, 1)!important;
    }

    #cb-slider .swiper-button-prev:hover,
    #cb-slider .swiper-button-next:hover {
        color: rgba(0, 70, 143, 1)!important;
    } */

    #cb-slider .cb-slider-content .cb-card .cb-badge {
        top: 6px;
        right: 6px;
        font-size: 13px;
    }

    #cb-slider .swiper-button-next, #cb-slider .swiper-rtl .swiper-button-prev {
        right: var(--swiper-navigation-sides-offset, 15px)!important;
    }

    #cb-slider .swiper-button-prev, #cb-slider .swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset, 15px)!important;
    }

    /* #cb-slider .cb-slider-content .cb-card .cb-badge {
        font-size: 13px;
    } */
}

/*END CB-SLIDER*/

/*START CB-LOGOS-SLIDER*/

#cb-logos-carousel .swiper-slide .content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;      /* slider height */
    overflow: hidden;
}

#cb-logos-carousel .swiper-slide .content a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: auto;
}

#cb-logos-carousel .swiper-slide .content img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

#cb-logos-carousel .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

#cb-logos-carousel .swiper-button-prev,
#cb-logos-carousel .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 25px)!important;
    color: rgba(0, 0, 0, .65)!important
}

#cb-logos-carousel .swiper-button-next, 
#cb-logos-carousel .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,25px)!important;
    color: rgba(0, 0, 0, .65)!important
}

#cb-logos-carousel .swiper-button-prev:hover,
#cb-logos-carousel .swiper-rtl .swiper-button-next:hover,
#cb-logos-carousel .swiper-button-next:hover, 
#cb-logos-carousel .swiper-rtl .swiper-button-prev:hover {
    color: rgba(0, 0, 0, .9)!important
}

#cb-logos-carousel .swiper-button-ico {
    font-size: 24px;
}
/*END CB-LOGOS-SLIDER*/

/*START ALL SLIDER*/
.swiper-button-ico {
    font-size: 36px;
    color: var(--hb-light-blue);
    transition: var(--hb-link-hover-transition);
}

.swiper-button-ico:hover {
    opacity: .85;
    transition: var(--hb-link-hover-transition);
}

#cb-area #cb-nav-and-slider .navbar.cb-card {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
}

#cb-area .cb-fixed .navbar.cb-card {
    border-bottom-left-radius: 8px!important;
    border-bottom-right-radius: 8px!important;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .072)!important;
}

.cb-rounded {
    border-top-left-radius: 8px!important;
    border-top-right-radius: 8px!important;
}

#cb-area .cb-slider {
    transition: border-radius 0.5s ease;
}

@media(min-width:992px)
{
    #cb-area #cb-nav-and-slider {
        padding-top: 3rem;
    }

    #cb-nav-and-slider .cb-card:not(.navbar, .cb-slider-card) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

@media(max-width:1369px)
{
    #cb-area #cb-nav-and-slider {
        padding-top: 1.3rem;
    }
}

@media(max-width:991px)
{
    #cb-area #cb-nav-and-slider {
        padding-top: 1.25rem;
    }
}


.swiper-button-next:after, 
.swiper-button-prev:after {
    content:''!important;
}

/*END ALL SLIDER*/

/* MEDIA QUERY */

@media only screen and (max-width: 1680px) {
    #cb-stripe .img-container img {
        height: 100%;
        position: absolute;
        top: 0%;
        right: 1%;
        padding-left: 3%;
        padding-right: 3%;
    }
}

@media only screen and (max-width: 1428px) {
    #cb-stripe .img-container img {
        height: 75%;
        top: 10%;
    }
}

@media only screen and (max-width: 1369px) {
    /* #cb-area .bg-rb {
        background-position: calc(100% + 205px) calc(100%);
    }

    #cb-stripe .container-abs {
        position: relative;
    }

    #cb-stripe .img-container img {
        position: relative;
         width: 100%;
    }

    #cb-area .navbar.cb-card {
        position: absolute;
        background: transparent;
        box-shadow: none;
    } */

    #cb-area .brand-container {
    width: var(--hb-cb-brand-container-width-1369);
    }

    #cb-area .navbar-area.sticky .brand-container {
        width: var(--hb-cb-brand-container-width-sticky-1369);
    }

    /* #cb-area .navbar, #cb-area .navbar-area.sticky {
        padding-top: 0;
    }

    #cb-area .brand-container .vertical-separator {
        height: 40px;
    } */
}


@media only screen and (max-width: 1215px) {
    #cb-stripe .img-container img {
        height: 52%;
        top: 20%;
    }
}

@media only screen and (max-width: 991px) {
    #cb-area .bg-rb {
        background-position: calc(100% + 205px) calc(100%);
    }

    #cb-stripe .container-abs {
        position: relative;
    }

    #cb-stripe .img-container img {
        position: relative;
         width: 100%;
    }

    #cb-area .navbar.cb-card {
        position: absolute;
        background: transparent;
        box-shadow: none;
    }

    #cb-area .brand-container {
    width: var(--hb-cb-brand-container-width-991);
    }

    #cb-area .navbar-area.sticky .brand-container {
        width: var(--hb-cb-brand-container-width-sticky-991);
    }

    #cb-area .navbar, #cb-area .navbar-area.sticky {
        padding-top: 0;
    }

    #cb-area .brand-container .vertical-separator {
        height: 40px;
    }
}

@media only screen and (max-width: 767px) {
    #cb-area .bg-rb {
        background-size: 150%;
    }

    #cb-area .cb-card {
        padding: 3rem 2rem;
    }

    #cb-area .brand-container {
    width: var(--hb-cb-brand-container-width-767);
    }

    #cb-area .navbar-area.sticky .brand-container {
        width: var(--hb-cb-brand-container-width-sticky-767);
    }

    #cb-area .brand-container .vertical-separator {
        height: 30px;
    }

    #cb-area .navbar-collapse {
        top: 58px;
    }
}

/* HOW IT WORKS */
/* #how-it-works h1{
    font-size: 41px;
    color: var(--color-primary);
    font-weight: 700;
} */

#how-it-works h1 {
    color: var(--hb-light-blue);
    text-transform: uppercase;
    font-weight: 400;
    font-weight: 700;
    /* font-size: 72px; */
    font-size: 36px;
}

#how-it-works h2 {
    /* color: var(--hb-light-blue); */
    color: var(--color-primary);
    font-weight: 400;
    font-weight: 700;
    font-size: 27px;
}

#how-it-works h3 {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 700;
}

#how-it-works p {
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1.6;
}

#how-it-works ol {
  list-style-type: decimal;
  padding-left: 15px;
}

#how-it-works ol li::marker {
    margin-left: 15px;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-primary);
}

#how-it-works .how-it-works-text ul li {
    font-size: 18px;
    color: var(--color-primary);
    font-style: italic;
    font-weight: 600;
}

#how-it-works img {
    width: 100%;
    height: auto;
}

.floating {
  animation: floating 6s ease-in-out infinite;
  will-change: transform;
}

.floating-a,
.floating-b {
  animation-duration: 7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform;
}

.floating-a {
  animation-name: floatA;
}

.floating-b {
  animation-name: floatB;
}

@keyframes floatA {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(4px, -6px) rotate(1deg); }
  50%  { transform: translate(0, -10px) rotate(0deg); }
  75%  { transform: translate(-4px, -6px) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatB {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(-4px, -6px) rotate(-1deg); }
  50%  { transform: translate(0, -10px) rotate(0deg); }
  75%  { transform: translate(4px, -6px) rotate(1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatCircle {
  0%   { transform: translate(0px, 0px); }
  25%  { transform: translate(4px, -6px); }
  50%  { transform: translate(0px, -10px); }
  75%  { transform: translate(-4px, -6px); }
  100% { transform: translate(0px, 0px); }
}

@keyframes floating {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}


/*TRANSACTIONS PAGE*/
#transactions h1 {
    color: var(--hb-light-blue);
    text-transform: uppercase;
    font-weight: 400;
    font-weight: 700;
    /* font-size: 72px; */
    font-size: 36px;
}

#transactions p.intro {
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1.6;
}

#transactions .img-container {
    width: 170px;       /* larghezza massima */
    height: 120px;      /* altezza massima */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;   /* evita che l'immagine esca dal container */
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px
}

#transactions .img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* mantiene proporzioni e adatta all'interno del container */
}

#transactions p.description {
    text-transform: uppercase;
    font-size: 24px;
    text-align: left;
    font-weight: 400;
    font-weight: 600;
}

#transactions span.info-title {
    color: var(--hb-black);
    font-size: 18px;
}

#transactions span.info-description {
    color: var(--hb-black);
    font-size: 18px;
    font-weight: 700;
    font-weight: 600;
}

#transactions span.info-date {
    color: var(--hb-black);
    font-size: 17px;
}

#transactions span.info-status {
    color: var(--hb-light-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

