/* ========== ESTILOS DE LA PLANTILLA DE PRODUCTOS =========== */

.contenedor_product_individual {
  max-width: 86%;
  margin: auto;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 1px 1px 3px var(--color-neutro);
}

.title_product {
  margin-top: 2px;
  margin-bottom: 15px;
  font-family: var(--fuente-titulos);
}

.span_datos {
  margin-bottom: 8px;
  font-family: var(--fuente-parrafos);
}

.p_datos {
  margin-bottom: 4px;
  text-align: justify;
}

/* ======================================================== Accesorios */
.contenedor_accesorios {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0px 0px;
  padding: 13px 14px;
  box-sizing: border-box;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  transition: 0.3s ease all;
}

.contenedor_accesorios:hover {
  box-shadow: none;
}

.contenedor_accesorios > span {
  margin-right: 10px;
  font-family: var(--fuente-parrafos);
}

.ver_accesorio {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: var(--fuente-parrafos);
  text-decoration: none;
  color: var(--color-neutro);
}

.icono_ver_accesorio {
  margin-left: 5px;
}

.icono_ver_accesorio:hover {
  fill: var(--color-azul);
}

.contenedor_plantilla_producto {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.plantilla_producto_datos {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.plantilla_producto_img {
  width: 60%;
  height: 500px;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.plantilla_producto_img_container {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.img_plantilla_product {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  object-fit: contain;
}

.description_product {
  width: 100%;
  margin: 26px 0px 0px;
  padding: 0px;
  box-sizing: border-box;
}

.description_product_title {
  margin-bottom: 10px;
  font-family: var(--fuente-titulos);
}

.description_product > p {
  padding: 0px 10px;
  font-family: var(--fuente-parrafos);
  text-align: justify;
  text-wrap: pretty;
  line-height: 22px;
}

/* ================================== DESCRIPCION TECNICA */
.description_tecnica_product {
  width: 100%;
  margin: 35px 0px 0px;
  padding: 0px;
  box-sizing: border-box;
}

.description_tecnica_product_title {
  margin-bottom: 10px;
  font-family: var(--fuente-titulos);
}

.description_tecnica_product > div {
  font-family: var(--fuente-parrafos);
  text-align: justify;
  text-wrap: pretty;
}

.tabla_description_tecnica {
  width: 100%;
  font-family: var(--fuente-parrafos);
}

.bodyTableForQuote {
  width: 100%;
  border-collapse: collapse;
}

.bodyTableForQuote tr {
  border-bottom: 1px solid #ddd;
}

.bodyTableForQuote tr:nth-child(even) {
  background-color: #f2f2f2;
}

.bodyTableForQuote tr:hover {
  background-color: #e9e9e9;
}

.bodyTableForQuote td {
  padding: 8px;
  font-size: 17px;
  text-align: left;
}

.bodyTableForQuote td:first-child {
  font-weight: bold;
}

/* ================================== MODAL ACCESORIOS */
.contenedor_modal_accesorios {
  position: fixed;
  top: 0%;
  left: 0%;
  display: none;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal_accesorios {
  position: fixed;
  top: 10%;
  left: 32%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 400px;
  height: 460px;
  margin: 0px;
  padding: 16px;
  border: 1px solid var(--color-neutro);
  background-color: var(--color-secundario);
  animation: showModalAccesories 0.6s ease-in-out 1;
  overflow-y: scroll;
}

@keyframes showModalAccesories {
  from {
    transform: scale(0, 0);
  }
  to {
    transform: scale(1, 1);
  }
}

.contenedor_close_icon {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.close_modal_accesorios {
  transition: 0.3s ease all;
}

.close_modal_accesorios:hover {
  fill: var(--color-terciario);
  cursor: pointer;
}

.img_modal_accesorios_container {
  width: 300px;
  height: 300px;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.img_modal_accesorios {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  object-fit: contain;
}

.contenedor_datos_accesorios {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 15px;
}

.span_accesorio {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--fuente-parrafos);
}

/* ========================================= Media Queries */
@media (max-width: 550px) {
  .contenedor_plantilla_producto {
    flex-direction: column;
  }

  .plantilla_producto_datos {
    width: 100%;
  }

  .plantilla_producto_img {
    width: 100%;
  }
}