/* GENERALES */

#configurator {
    box-sizing: border-box;
    overflow: inherit;
}

.config_bloque {
    background-color: #fff;
}

.configurator-header {
    background-color: #000;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}

.configurator-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-left: 20px;
}

.btn-infoproducto {
    max-width: 40px;
}

/* ESTILOS RESUMEN */
.summary-configurator {
    background-color: #fff;
    position: sticky;
    top: 5px;
    margin-bottom: 10px;
    height: 160px;
    -webkit-box-shadow: 0px 6px 15px -1px #000000;
    box-shadow: 0px 6px 15px -1px #000000;
}

.summary-content {
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.summary-price {
    height: 50px;
    width: 40%;
    background-color: #F6D817;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;

}

.summary-price .show-price {
    font-weight: 600;
    display: inline-block;
    width: 100%;
    text-align: center;
    vertical-align: sub;
}

.summary-price .show-iva {
    display: inline-block;
    font-size: 10px;
    width: 100%;
    text-align: center;
    vertical-align: super;
}

.summary-content p {
    display: none;
}

.summary-button {
    width: 100%;
}

/* ESTILOS BOTON */

.btn-summary {
    width: 100%;
    background-color: #F6D817;
}

/* ESTILOS COMPONENTES */
.config_componente {
    padding: 5px;
    display: flex;
    flex-direction: row;
}

.componente-icon {
    display: none;
}

.componente-select {
    margin-top: 5px;
    width: 100%;
}

.componente-name {
    color: #F6D817;
    font-size: 14px;
    font-weight: 600;
}

.componente-info {
    display: none;
}

@media (min-width: 768px) {
    .componente-icon {
        width: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .componente-icon img {
        width: 60px;
        height: 60px;
    }

    .componente-name {
        font-size: 12px;
    }

    .componente-info {
        width: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .summary-content {
        padding: 15px;
        align-content: space-evenly;
    }

    .summary-content p {
        display: inline-block;
        width: 15%;
    }

    .summary-price {
        width: 18%;
    }

    .summary-button {
        width: 25%;
        margin-left: 15px;
    }

    .btn-summary {
        height: 50px;
    }
}

/* MODAL */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s ease;
    z-index: -1;
    background: #000;
}

.overlay.active-info {
    opacity: 0.5;
    z-index: 999;
}

.modal-info {
    background: #fff;
    max-height: calc(100% - 100px);
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 80%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
    overflow-y: scroll;
}

.modal-info.active-info {
    visibility: visible;
    z-index: 999;
    opacity: 1;
    width: 90%;
}

.description-modal {
    padding: 15px;
}

.description-modal img {
    width: 100% !important;
}

/* SELECCIÓN VISUAL */

.componente-radio {
    display: flex;
    overflow: hidden;
    overflow-x: scroll;
}

.componente-radio::-webkit-scrollbar {
    -webkit-appearance: none;
}

.componente-radio::-webkit-scrollbar:vertical {
    width: 10px;
}

.componente-radio::-webkit-scrollbar-button:increment, .componente-radio::-webkit-scrollbar-button {
    display: none;
}

.componente-radio::-webkit-scrollbar:horizontal {
    height: 10px;
}

.componente-radio::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.componente-radio::-webkit-scrollbar-track {
    border-radius: 10px;
}

.configurator-product {
    text-align: center;
    margin-bottom: 10px;
}

.configurator-product_img {
    max-width: 100px;
}

.configurator-product_radio {
    width: 100%;
}

.configurator-product_price {
    width: 100%;
}

/* ESTILOS COMPATIBILIDAD */

.not-supported {
    color: #FF0000;
}