/* Animazione freccie */
.rz_rotate_on {
    cursor: pointer;
    transform: rotateZ(0deg) !important;
    transition: 1s !important;
}
.rz_rotate_off {
    cursor: pointer;
    transform: rotateZ(-45deg) !important;
    transition: 1s !important;
}
.rz_rotate_on_bike {
    cursor: pointer;
    transform: rotateZ(45deg) !important;
    transition: 1s !important;
}
.rz_rotate_off_bike {
    cursor: pointer;
    transform: rotateZ(0deg) !important;
    transition: 1s !important;
}
.rz_rotate_on_accordion {
    cursor: pointer;
    transform: rotateZ(-180deg) !important;
    transition: 1s !important;
}
.rz_rotate_off_accordion {
    cursor: pointer;
    transform: rotateZ(0deg) !important;
    transition: 1s !important;
}

/*Hover pulsanti */
.brxe-button {
    transition: 1s;
}
.brxe-button:hover {
    background-color: #11880f !important;
    color: #fff !important;
}

/* Custom prezzo base listing eBike */
.rz_prezzo_base_ebike {
    font-size: 1.8vw;
    padding-left: 0.5vw;
}
/** MOBILE **/
@media only screen and (max-width: 767px) {
    .rz_prezzo_base_ebike {
        font-size: 6vw;
        padding-left: 1vw;
    }
}

/* Custom accordion */
/*
#rz-accordion-container .accordion-item {
    position: relative;
    min-height: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
*/
#rz-accordion-container .accordion-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#rz-accordion-container .ti-arrow-down, #rz-accordion-container .ti-arrow-up {
    background-color: #C5EAC4;
    padding: 16px;
    border-radius: 100%;
    border: 30px solid #fff;
    position: absolute;
    top: -10px;
    right: -15px;
    font-weight: 900;
}
#rz-accordion-container .accordion-item.brx-open {
    background-color: #C5EAC4;
}
.ti-arrow-down {
    transition: 0.5s;
}
/** TABLET LANDSCAPE **/
@media only screen and (min-width: 1025px) and (max-width: 1366px) {
    #rz-accordion-container .ti-arrow-down, #rz-accordion-container .ti-arrow-up {
        border: 1.5vw solid #fff;
        right: -1.5vw;
    }
}
/** TABLET PORTRAIT **/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    #rz-accordion-container .ti-arrow-down, #rz-accordion-container .ti-arrow-up {
        border: 2vw solid #fff;
        right: -1.5vw;
    }
}
/** MOBILE **/
@media only screen and (max-width: 767px) {
    #rz-accordion-container { 
        gap: 5vw;
    }

    #rz-accordion-container .accordion-item {
        min-height: 10vw;
    }
    #rz-accordion-container .ti-arrow-down, #rz-accordion-container .ti-arrow-up {
        padding: 2.5vw;
        border: 4vw solid #fff;
        top: 0vw;
        right: -5vw;
    }
}

/* Custom Chi Siamo */
/** MOBILE **/
@media only screen and (max-width: 767px) {
    #rz-chi-siamo-titolo {
        width: 100%;
    }

    #rz-chi-siamo-pulsante {
        width: calc( 50% - 5vw );
        margin-left: auto;
    }
}
