/**
* 2007-2020 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2020 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.configuratore-radio label {
    margin: 0;
    padding: 0 0 0 25px;
    position: relative;
    font-size: 22px;
    line-height: normal;
    word-spacing: normal;
    cursor: pointer;
    color: var(--brown);
    font-weight: 600;
    text-align: left;
}

.configuratore-radio [type=radio] {
    display: none;
}

.configuratore-radio label:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    width: 23px;
    height: 23px;
    transform: translate(-50%, -50%);
    content: '';
    border-radius: 100%;
    border: 1px solid var(--brown);
    transition: .5s ease;
}

.configuratore-radio label:after {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    content: '\f00c';
    border-radius: 100%;
    font-weight: 600;
    color: white;
    font-size: 13px;
    font-family: 'Font Awesome 5 Free';
    display: flex;
    flex-flow: wrap row;
    justify-content: center;
    align-items: center;
    padding-top: 3px;
    transition: .5s ease;
}

.configuratore-radio [type=radio]:checked~label:before {
    background: var(--green);
    border-color: var(--green);
}

.configuratore-radio [type=radio]:checked~label:after {
    opacity: 1;
}

.configuratore-radio {
    padding: 5px 50px 15px 0;
    width: fit-content;
}

.configuratore-radio_group {
    display: flex;
    flex-flow: wrap row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 30px;
}

#submit-configuratore {
    background: var(--green);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 35px;
    margin: 50px 0;
    cursor: pointer;
    transition: 0.5s ease;
}

#submit-configuratore:hover {
    background: var(--blue);
}

.configuratore-title {
    color: var(--green);
    font-size: 30px;
    margin: 50px 0 25px 0;
    text-transform: unset;
}

#configuratore-form [type=text] {
    border: 1px solid var(--brown);
    padding: 10px;
    width: 400px;
    margin-left: 30px;
    color: var(--brown);
}

#configuratore-form [type=text]::placeholder {
    color: var(--brown);
}

.configuratore-page_title {
    color: var(--brown);
    text-align: center;
    line-height: normal;
    font-size: 45px;
    text-transform: unset;
    margin-bottom: 60px;
}

.configuratore-progression-container {
    width: 100%;
    padding: 25px 55px 20px;
    display: flex;
    flex-flow: wrap row;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
}

.configuratore-progression {
    margin: 0 auto 30px;
    max-width: 1100px;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    user-select: none;
    width: 100%;
}

.configuratore-progression:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    background: #dddddd;
    height: 20px;
}

.step {
    position: relative;
    width: fit-content;
    height: fit-content;
}

.numero {
    width: 40px;
    height: 40px;
    background: #bbb;
    color: white;
    font-weight: 600;
    font-size: 25px;
    display: flex;
    flex-flow: wrap row;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    transition: 0.75s linear;
}

.completed .numero {
    background: var(--green);
    filter: unset;
}

.active .numero {
    background: var(--orange);
}

.nome-step {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--brown);
    font-weight: 600;
    font-size: 21px;
    line-height: normal;
}

.configuratore-progressbar {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 0;
    background: var(--green);
    height: 15px;
    opacity: 0.5;
}

.form-step {
    filter: grayscale(1);
    opacity: 0.8;
    transition: .5s ease;
    user-select: none;
    pointer-events: none;
}

.form-step.revealed,
.form-step.active {
    filter: unset;
    opacity: 1;
    pointer-events: all;
}

.error~.configuratore-error_message {
    display: block;
}

.configuratore-error_message {
    display: none;
    margin-left: 30px;
    color: #ea5f5f;
    line-height: normal;
    position: absolute;
    font-weight: 500;
    margin-top: 5px;
}

#configuratore-form [type=text].error {
    border-color: #ea5f5f;
}

.result_product article.js-product-miniature {
    display: flex;
    flex-flow: wrap row;
    justify-content: flex-start;
    align-items: center;
}

.result_slider:after,
.acc_slider:after {
    content: '';
    background: white;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    position: absolute;
    z-index: 999;
}

.result_slider:before,
.acc_slider:before {
    content: '';
    background: white;
    top: 0;
    right: 0;
    width: 15px;
    height: 100%;
    position: absolute;
    z-index: 999;
}

.product_controllers .bootstrap-touchspin input.form-control,
.bootstrap-touchspin input.input-group {
    height: 48px;
    text-align: center;
}

.product_controllers .product-quantity .qty {
    margin: 0;
    display: flex;
    flex-flow: wrap column;
    justify-content: center;
    align-items: flex-start;
}

.product_controllers {
    flex: 1;
    display: flex;
    flex-flow: wrap row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
}

.result_slider .owl-nav>[class*=owl],
.acc_slider .owl-nav>[class*=owl] {
    position: absolute;
    top: calc(50% - 18px);
    transform: translate(-50%, -50%);
    border: 2px solid var(--orange);
    z-index: 9999;
    color: white;
    font-weight: 700;
    background: var(--orange);
    width: 50px;
    height: 50px;
    display: flex;
    flex-flow: wrap row;
    justify-content: center;
    align-items: center;
}

.result_slider .owl-nav>[class*=owl]:hover,
.acc_slider .owl-nav>[class*=owl]:hover {
    background: transparent;
    color: var(--orange);
}

.result_slider .owl-next,
.acc_slider .owl-next {
    left: calc(100% + 20px);
}

.result_slider .owl-prev,
.acc_slider .owl-prev {
    left: -20px;
}

.result_slider .owl-dots .owl-dot span,
.acc_slider .owl-dots .owl-dot span {
    border: 1px solid var(--orange);
}

.configuratore-section_title {
    color: var(--brown);
    font-size: 30px;
    margin: 50px 0 25px 0;
    text-transform: unset;
}

.configuratore-remove_product {
    width: 30px;
    height: 30px;
    display: flex;
    flex-flow: wrap row;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: transparent;
    font-weight: 800;
    padding-bottom: 2px;
    letter-spacing: 0;
    word-spacing: 0;
    line-height: 0;
    user-select: none;
    cursor: pointer;
    transition: .5s ease;
    color: white;
    position: absolute;
    top: 34px;
    right: -10px;
    z-index: 99;
    opacity: 0;
    background: var(--orange);
    opacity: 1;
}

/* .configuratore-result_slider_row:hover .configuratore-remove_product {
    background: var(--orange);
    opacity: 1;
} */

.configuratore-remove_product:hover {
    transform: scale(1.25);
}

.configuratore-result_slider_row {
    position: relative;
}

.configuratore-result_slider_row.row_hidden {
    display: none;
}

.configuratore-save_from_doom_product {
    display: none;
}

.configuratore-result_slider_row.row_hidden~.configuratore-save_from_doom_product {
    display: flex;
    flex-flow: wrap column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background: #ef472640;
    margin-top: 50px;
    border-radius: 6px;
    font-size: 30px;
    line-height: normal;
    color: var(--brown);
    text-align: center;
}

span[data-row] {
    background: #ef472680;
    padding: 10px 30px;
    margin: 10px 0;
    border-radius: 6px;
    transition: .2s ease;
    color: white;
    cursor: pointer;
    user-select: none;
}

span[data-row]:hover {
    background: var(--orange);
}

.result_product .js-product-miniature .product_desc .manufacturer.actually_category a {
    font-size: 20px;
}

.result_product .js-product-miniature .product_desc h3 {
    font-size: 30px;
}

.result_product .product-price-and-shipping {
    font-size: 20px;
}

.product_controllers .product-quantity .qty .qty_label {
    font-size: 20px;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 10px;
    display: block;
    text-align: left;
    width: 100%;
    line-height: normal;
}

.sorry_no_prods {
    display: flex;
    flex-flow: wrap column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background: #ef472640;
    margin: 50px 0;
    border-radius: 6px;
    font-size: 30px;
    line-height: normal;
    color: var(--brown);
    text-align: center;
}

.acc_slider .product_controllers {
    display: flex;
    flex-flow: wrap row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px 15px 15px;
}

.configuratore-timer {
    width: 65px;
    height: 65px;
    display: flex;
    flex-flow: wrap row;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: relative;
}

.configuratore-timer:after {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    content: '';
    border-radius: 100%;
    border: none;
    border-left: 3px solid var(--orange);
    animation: gira 1s cubic-bezier(0.46, 0.03, 0.52, 0.96) infinite;
}

@keyframes gira {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

#configuratore-add_to_cart {
    background: var(--orange);
    border: none;
    border-radius: 30px;
    padding: 10px 40px;
    font-weight: 600;
    color: white;
    font-size: 22px;
    line-height: normal;
    display: block;
    margin: 50px 0 0 auto;
    cursor: pointer;
    transition: .5s ease;
}

#configuratore-add_to_cart:hover {
    background: var(--green);
}

.result_slider .owl-nav>[class*=owl]:before,
.acc_slider .owl-nav>[class*=owl]:before {
    font-size: 30px;
}

.result_slider .owl-dots .owl-dot span {
    width: 40px;
    border-radius: 0;
    height: 12px;
}

@media screen and (max-width: 768px) {
    .nome-step {
        display: none;
    }

    .configuratore-radio {
        width: 50%;
    }

    #configuratore-form [type=text] {
        width: 275px;
    }

    #configuratore-add_to_cart {
        margin: 50px auto;
    }
}

.sistema_misura-container {
    display: flex;
    flex-flow: wrap row;
    justify-content: flex-start;
    align-items: stretch;
}

#configuratore-form .sistema_misura-container [type=text] {
    border: 1px solid var(--green);
    padding: 10px;
    width: 400px;
    margin-left: 30px;
    color: var(--brown);
    border-radius: 10px 0 0 10px;
    max-width: calc(100% - 90px);
}

.sistema_misura {
    display: flex;
    flex-flow: wrap row;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    border-radius: 0 10px 10px 0;
    background-color: var(--green);
    color: white;
}

.configuratore-result_slider_row .js-product-miniature .img_block .first-image {
    width: auto;
    max-height: 150px;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .configuratore-progression-container {
        padding: 10px;
    }

    .configuratore-progression {
        margin: 0;
    }

    .product_controllers {
        flex-flow: wrap row;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
    }

    .result_product .img_block {
        width: 100%;
        display: flex;
        flex-flow: wrap row;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {
    .numero {
        width: 30px;
        height: 30px;
        font-size: 1.2em;
    }

    .name_category .section-title {
        font-size: 2em;
    }
}

#module-configuratore-elaborate .breadcrumb_container .name_category .section-title,
#module-configuratore-show .breadcrumb_container .name_category .section-title {
    color: white;
    z-index: 1;
}

#module-configuratore-elaborate .breadcrumb_container:before,
#module-configuratore-show .breadcrumb_container:before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #00000040;
    z-index: 0;
}

.configuratore-sidebar {
    border: 2px solid var(--green);
    margin-right: 40px;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .configuratore-sidebar {
        margin: 0;
    }
}


.sidebar-header {
    color: white;
    padding: 10px 20px;
    background: var(--green);
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 500;
    line-height: normal;
}

.choice-container {
    font-size: 20px;
    padding: 10px 20px;
}

.choice-label {
    font-weight: 400;
    padding-right: 5px;
    color: var(--brown);
}

.choice {
    font-weight: 700;
    color: var(--orange);
}

.backtoconf a {
    background: var(--orange);
    border: none;
    border-radius: 30px;
    padding: 10px 40px;
    font-weight: 600;
    color: white;
    font-size: 18px;
    line-height: normal;
    display: block;
    cursor: pointer;
    transition: .5s ease;
    text-align: center;
    width: fit-content;
    margin: 20px auto 10px;
}

.backtoconf a:hover {
    background: var(--green);
    color: white;
}

.configuratore-description {
    padding-bottom: 30px;
}

.configuratore-description p {
    margin-bottom: 10px;
    text-align: justify;
}