
/* POPUP 2 */
.popup_overlay_2 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* BOX */
.popup_preventivo_box_2 {
    background: #fff;
    width: 95%;
    max-width: 1200px;
    border-radius: 14px;
    padding: 0 40px 0px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    animation: popupShow 0.25s ease;
    font-family: Figtree, sans-serif;
}

/* HEADER POPUP */
.popup_header_fjd_2 {
    background: #1a1a1a;
    padding: 30px 50px;
    border-radius: 10px 10px 0 0;
    margin: 0 -40px 10px;
    position: relative;
}

/* Contenitore FLEX logo + titolo */
.popup_header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.popup_header_logo {
    width: 220px;
    height: auto;
}

/* Titolo */
.popup_header_title {
    color: white;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin: 0;
    text-align: right;
    flex: 1;
}

/* Pulsante X */
.popup_close_2 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: white;
    z-index: 10;
}

/* SEZIONE  */

.in-the-box-product-section {
    display: flex;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    justify-content: center;
}



/* WRAPPER:*/

.in-the-box-product-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* COLONNA SINISTRA: fissa a 630px per l’immagine */

.box-col-left {
    width: 100%;
    max-width: 630px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;
    box-sizing: border-box;
}

/* COLONNA DESTRA: flex:1, si adatta allo spazio rimanente */

.box-col-right {
    width: 100%;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    box-sizing: border-box;
}

/* TITOLO: REACH RS3 (55px), 24px sotto */

.box-reachrs3-title {
    font-size: 50px;
    line-height: 58px;
    font-weight: 600;
    color: #000;
    padding-bottom: 38px;
    margin-block-end: 0px !important;
    margin-block-start: 0px !important;
}

/* BLOCCO DESCRIZIONE: “Nella confezione:” + elenco (22px) */

.box-reachrs3-desc-block {
    color: #000;
    margin-block-end: 0px !important;
    margin-block-start: 0px !important;
}

.box-reachrs3-desc-title {
    font-size: 22px;
    line-height: 28px;
    color: #000;
    padding-bottom: 38px;
    margin-block-end: 0px !important;
    margin-block-start: 0px !important;
    padding-bottom: 20px;
    margin-block-end: 0px !important;
    margin-block-start: 0px !important;
}

/* Responsive DESCRIZIONE "NELLA CONFEZIONE" */

.box-reachrs3-bullet {
    margin-block-start: 0px !important;
    margin-block-end: 0px !important;
    padding-inline-start: 20px;
    font-size: 18px;
    line-height: 24px;
}

/* PULSANTE PREVENTIVO */

.btn-blu {
    width: 300px;
    height: 54px;
    background-color: #008bee;
    border: 0px;
    border-radius: 30px;
    font-family: Inter;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.btn-blu:hover {
    background-color: #0067b0;
    color: #fff !important;
}

/* INFO AGGIUNTIVE */

.rs3-info-black {
    font-family: Inter;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    text-align: left;
    margin-bottom: 24px;
}

/* PULSANTI CONTATTO */

.rs3-buttons-black {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.btn-outline-black {
    border: 2px solid #000 !important;
    border-radius: 30px;
    border-color: #000 !important;
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: 20px;
    display: inline-block;
}

.btn-text-scrivici-black {
    color: #000 !important;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-family: Inter;
}

.btn-text-scrivici-black:hover {
    background-color: #000 !important;
    color: #fff !important;
}

.bi-telephone-fill {
    color: #000;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
}



.bi-telephone-fill {
    color: #000;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
}

.icona-cel-black {
    padding-right: 10px;
}

/* MEDIA QUERIES */

/* CAMBIO DI DIREZIONE DELLE COLONNE DA VICINE A UNA SOTTO L'ALTRA*/

@media (max-width: 699px) {
    .in-the-box-product-wrapper {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* MEDIA SPAZI DX e SX COLONNA DI SINISTRA (1)*/

@media (max-width: 699px) {
    .box-col-left, .box-col-right {
        padding-right: 0px;
        width: 100%!important;
        max-width: 100%!important;
    }
}

@media (min-width: 700px) and (max-width: 768px) {
    .box-col-left {
        padding-right: 25px;
    }
    .box-col-right {
        padding-left: 25px;
    }
}

@media (min-width: 769px) and (max-width: 777px) {
    .box-col-left {
        padding-right: 30px;
    }
    .box-col-right {
        padding-left: 30px;
    }
}

/* RESPONSIVE COLONNE UNA SOTTO L'ALTRA A 699PX */

@media (max-width: 699px) {
    .box-col-right {
        width: 100%;
        max-width: 600px;
        padding-left: 0px;
    }
    .box-col-left {
        width: 100%;
        max-width: 600px;
        padding-bottom: 30px;
        display: none;
    }
}

@media (max-width: 790px) {
    .popup_header_logo {
        display: none;
    }

       .popup_header_title {
        text-align: left;
    }
}

/* RESPONSIVE COLONNE UNA VICINO L'ALTRA */

@media (max-width: 1285px) {
    .box-col-right, .box-col-left {
        width: 50%;
        max-width: 618px;
    }

}

/* RESPONSIVE TITOLO */

@media (max-width: 369px) {
    .box-reachrs3-title {
        font-size: 31px;
        line-height: 40px;
    }
}

@media (min-width: 370px) and (max-width: 375px) {
    .box-reachrs3-title {
        font-size: 32px;
        line-height: 41px;
    }
}

@media (min-width: 376px) and (max-width: 409px) {
    .box-reachrs3-title {
        font-size: 33px;
        line-height: 40px;
    }
}

@media (min-width: 410px) and (max-width: 414px) {
    .box-reachrs3-title {
        font-size: 32.5px;
        line-height: 40px;
    }
}

@media (min-width: 415px) and (max-width: 430px) {
    .box-reachrs3-title {
        font-size: 34px;
        line-height: 41px;
    }
}

@media (min-width: 431px) and (max-width: 791px) {
    .box-reachrs3-title {
        font-size: 35px;
        line-height: 42px;
    }
}

@media (min-width: 792px) and (max-width: 810px) {
    .box-reachrs3-title {
        font-size: 36px;
        line-height: 43px;
    }
}

@media (min-width: 811px) and (max-width: 830px) {
    .box-reachrs3-title {
        font-size: 37px;
        line-height: 44px;
    }
}

@media (min-width: 831px) and (max-width: 849px) {
    .box-reachrs3-title {
        font-size: 38px;
        line-height: 45px;
    }
}

@media (min-width: 850px) and (max-width: 887px) {
    .box-reachrs3-title {
        font-size: 39px;
        line-height: 46px;
    }
}

@media (min-width: 888px) and (max-width: 964px) {
    .box-reachrs3-title {
        font-size: 41px;
        line-height: 48px;
    }
}

@media (min-width: 965px) and (max-width: 1066px) {
    .box-reachrs3-title {
        line-height: 51px;
        font-size: 43px;
    }
}

@media (min-width: 1067px) and (max-width: 1231px) {
    .box-reachrs3-title {
        line-height: 54px;
        font-size: 46px;
    }
}

/* RESPONSIVE DESCRIZIONE "NELLA CONFEZIONE" */

@media (max-width: 1066px) {
    .box-reachrs3-desc-title {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (min-width: 1067px) and (max-width: 1231px) {
    .box-reachrs3-desc-title {
        font-size: 20px;
        line-height: 26px;
    }
}

/* RESPONSIVE PUNTO ELENCO" */

@media (max-width: 1231px) {
    .box-reachrs3-bullet {
        font-size: 16px;
        line-height: 22px;
    }
}

/* PULSANTE PREVENTIVO */

@media (max-width: 369px) {
    .btn-blu {
        width: 100%;
        max-width: 280px;
        font-size: 18px;
        line-height: 20px;
    }
}

@media (max-width: 349px) {
    .btn-blu {
        font-size: 17px;
        line-height: 19px;
    }
}

/* INFO AGGIUNTIVE */

@media (max-width: 402px) {
    .rs3-info-black {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 852px) {
    .rs3-info-black {
        font-size: 15px;
        line-height: 19px;
    }
}

@media (max-width: 369px) {
    .rs3-info-black {
        text-align: center;
    }
}

/* PULSANTI CONTATTO */

@media (max-width: 575.98px) {
    .rs3-buttons-black {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-outline-black {
        margin-bottom: 15px;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (min-width:700px) and (max-width:751px) {
    .btn-outline-black {
        padding-left: 18px;
        padding-right: 18px;
        margin-right: 10px;
    }
}

@media (min-width:751px) and (max-width: 1066px) {
    .btn-outline-black {
        padding-left: 20px;
        padding-right: 20px;
        margin-right: 10px;
    }
}

@media (max-width: 890px) {
    .bi-telephone-fill {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 801px) {
    .bi-telephone-fill {
        font-size: 15px;
        line-height: 21px;
    }
}

@media (max-width: 890px) {
    .bi-telephone-fill {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 801px) {
    .bi-telephone-fill {
        font-size: 15px;
        line-height: 21px;
    }
}


/* MEDIA QUERIES */
/* TITOLO POPUP */
@media (max-width: 1066px) {
   .popup_header_title {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (min-width: 1067px) and (max-width: 1231px) {
   .popup_header_title {
        font-size: 20px;
        line-height: 26px;
    }
}

@media (max-width: 699px) {
    .box-reachrs3-bullet {
        padding-bottom: 20px;
        padding-top: 10px;
    }
}