.form-cat {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    flex-wrap: wrap; /* Allows wrapping on small screens */
}

/* Form Fields Section */
.form-fields {
    flex: 1;
    padding-right: 20px;
}

/* Input Fields */
.form-cat input[type="text"],
.form-cat input[type="email"],
.form-cat select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
   /* background-color: #f1f1f1; */
    font-size: 16px;
}

.form-cat input#imei {
    width: 100%;
    margin-right: 0;
}

/* Name and Surname Fields */
.name-surname {
    display: flex;
    justify-content: space-between;
}

.name-surname input[type="text"] {
    width: 90%;
}

.name-surname2 input[type="text"] {
    width: 100%;
}

/* Labels */
.form-cat label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Send Form Button */
.form-cat button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #004a84;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.form-cat button[type="submit"]:hover {
    background-color: #003f73;
}

/* Divider */
hr {
    border: none;
    border-left: 1px solid #ccc;
    height: auto;
    margin: 0 20px;
}

/* Right Section */
.right-section {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Price Information */
.price-info {
    text-align: right;
    font-size: 14px;
	align-content: flex-end;
	margin-right: 1.5rem;
}

.price-info .full-price {
    font-size: 24px;
    font-weight: bold;
    color: #4caeff;
}

.price-info .details span {
    display: block;
}

/* Product Image */
.product-image {
    text-align: center;
    margin-top: 20px;
	padding-left: 1.5rem;
}

.product-image img {
    max-width: 200px !important;
    height: 180px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.price-container {
    font-size: 24px;
    color: #1a73e8; /* Color azul oscuro para el texto */
}

.price-container .price-label {
    font-weight: bold;
}

.price-container .price-value {
    background-color: #85d7ff; /* Color de fondo azul claro */
    color: #fff; /* Color del texto del precio */
    padding: 2px 8px;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
}

.label-fuerte {
    font-weight: 700;
}

.marg-bt {
    margin-bottom: 20px; /* Espacio debajo del elemento */
}

/* Responsive Styles */

/* For tablets and small desktops */
@media (max-width: 1024px) {
    .form-cat {
        flex-direction: column;
    }

    .form-fields {
        padding-right: 0;
    }

    .right-section {
        width: 100%;
        margin-top: 20px;
        order: -1; /* Move the right section to the top */
    }

    hr {
        display: none; /* Hide the divider on smaller screens */
    }

    .price-info {
        text-align: center; /* Center align text */
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .form-cat {
        max-width: 100%;
        padding: 10px;
    }

    .form-fields, .right-section {
        padding-right: 0;
        width: 100%;
    }

    .form-cat input[type="text"],
    .form-cat input[type="email"],
    .form-cat select,
    .form-cat button[type="submit"] {
        padding: 10px;
        font-size: 14px;
    }

    .price-info {
        font-size: 12px;
        text-align: right;
        width: 100%;
        margin-top: -7rem;
        margin-bottom: 1rem;
        padding-right: 0.5rem;
    }

    .price-info .full-price {
        font-size: 20px;
    }

    .price-container {
        font-size: 20px;
    }

    .right-section {
        order: -1; /* Move the right section to the top */
    }

    .product-image {
        padding-left: 0.5rem;
        width: 50%;
    }
}



.right-section {
    position: relative;
}





#loading-bar {
	display: none;
    text-align: center;
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    width: 100%;
    height: 100%; /* Asegurar que ocupe todo el div */
}

#loading-bar img {
	max-height: 30px; /* Ajustar según sea necesario */
    object-fit: contain; /* Asegurar que la imagen se ajuste sin deformarse */
}




#model , #network {
    appearance: none; /* Oculta la flecha predeterminada */
    -webkit-appearance: none;
    -moz-appearance: none;
    
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat;
    background-position: right 15px center; /* Mueve la flecha más a la izquierda */
    background-size: 18px;
    
    padding-right: 35px; /* Ajusta el espacio entre el texto y la flecha */
    
    border: 1px solid #ccc; /* Ajuste opcional para el borde */
    border-radius: 5px; /* Ajuste opcional para esquinas redondeadas */
}






.hidden-section {
    display: none;
}


.form2-fields {
    padding: 1.5rem;
    width: 100%;
}