*{
    box-sizing: border-box;
}
html{
    font-family: Proxima Nova,-apple-system,Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    background: #c6c6c6;
}

*, *::before, *::after{
    box-sizing: inherit;
}
:root{
    --colorTexto:#49454567;
}
::before,
::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.tempinput{
    display: none;
}
.ocultar{
    display: none;
}
/*-------- DISEÑO DEL ENCABEZADO Y EL LOGO ---------- */
.encabezado{
    margin: 0px;
    padding-top: 3px;
    width: 100%;
    height: 46px;
    background: #ffffff;
    /*background-color:rgb(59, 59, 36);*/
}

.barramenu1{
    width: 100%;
    height: 46px;
    background: rgb(255, 238, 0);
/*    background-color:rgb(255, 251, 0);*/
    display: flex;
    float: left;
}
.logo{
    width: 230px;
    margin-left: 50px;
    margin-right: 50px;
    float: left;
}

.contebtnmenuprincipal{
    width: 120px;
    height: 20px;
    text-align: center;
    border-radius: 5px;
    margin-top: 8px;
    margin-left: 1000px;
    padding:5px;
    background: #ff0000;
}
.btnmenuprincipal{
    font-size: 16px;
    text-decoration: none;
    color: rgb(255, 255, 255);
}
.contebtnmenuprincipal:hover{
    background: #f59696;
    cursor: pointer;
}

/*---------------------- boton pausar y borrar -----------------------*/
.botones{
    display:block;
}
.btnpausarborrar{
    width: 360px;
    height: 35px;
    background: #ffffff;
    display: flex;
    margin-left: 30px;
    float: left;
}
.borrar .pausar{
    width: 160px;
    font-size: 10px;
    border-radius: 6px;
    border: hidden;
    color: #0077ff;
    background: rgb(255, 255, 255);
}
.borrar .pausar{
    margin-right: 15px;
}
/*---------------------- boton grabar -----------------------*/
.grabar{
    width:230px;
    height: 30px;
    background: rgb(255, 255, 255);
    margin-left: 60px;
    float: left;
}
.btnsubmit{
    width: 160px;
    margin: auto;
    padding: 10px;
    border-radius: 6px;
    border: hidden;
    color: rgb(255, 255, 255);
    background: rgb(1, 90, 255);
}
.btnsubmit:hover{
    background: rgb(56, 116, 230);
}
.mensaje{
    width:900px;
    height:20px;
    top:670px;
    text-align: center;
    margin: 0;
}
.mensajeerror{
    display: inline-block;
    color: #ff0000;
}


.form{
    width: 480px;
    height: 340px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}
.contedordatos{
    width: 450px;
    height:330px;
    background: #ffffff;
    margin: auto;
}
.titulobtncerrar{
    width: 100%;
    background: rgb(255, 255, 255);
    text-align: center;
}
.titulo{
    background: rgb(255, 255, 255);
    width: 95%;
    text-align: center;
    float: left;
}
h2{
    text-align: center;
    font-weight: 700;
    color: rgb(2, 132, 253);
}

/*-------------------cerrar ventana --------------*/
.btncerrar{
    width: 20px;
    height: 20px;
    margin: auto;
    float: right;
    position: relative;
    text-align: center;
    top: 5px;
    right: 5px;
}
.btncerrara{
    font-size: 16px;
    font: bold;
    text-decoration: none;
    transition: transform 0.5s;
}
.btncerrara:hover{
    transform: scale(1.5);
    color: red;
    display: block;
    cursor: pointer;
}


.subtitulo{
    margin-top: 10px;
    width: 100%;
    height: 30px;
    text-align: center;
}
.textosubtitulo{
    color: rgb(2, 132, 253);
    font-size: 14px;
    padding-top: 5px;
    text-align:justify;
}
.contenedorgrupos{
    width: 450px;
    height: 100px;
    margin-top: 80px;
    background: rgb(255, 255, 255);
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px;
}

/*
.form{
    margin: auto;
}
form .grupo{
    position: relative;
    margin-top: 30px;
}
input{
    background: none;
    color: #c6c6c6;
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 95%;
    border: none;
    border-bottom: 1px solid var(--colorTexto);
}
input:focus{
    outline: none;
    color: #5e5d5d;
}
label{
    color:var(--colorTextos);
    font-size: 16px;
    position: absolute;
    left: 5px;
    top: 10px;
    transition: 0.5s ease-in-out all;
    pointer-events: none;
}
input:focus~label,
input:valid~label{
    top:-14px;
    font-size: 12px;
    color: #2196f3;
}
.barra{
    position: relative;
    display: block;
    width: 100%;
}
*/
/*
.barra::before{
    content: "";
    height: 2px;
    width: 0%;
    bottom: 0;
    position: absolute;
    background:linear-gradient(to right, #2196f3, #2196f3);
    transition: 01s ease width;
    left: 0;

}
input:focus~.barra::before{
    width:100%;
}
button{
    font-family: roboto;
    border: none;
    display: block;
    width: 150px;
    border-radius: 10px;
    margin: 15px auto;
    color: rgb(255, 255, 255);
    background: rgb(2, 132, 253);
    height: 40px;
    font-size: 16px;
    cursor: pointer;
}
button:hover{
    background: rgb(94, 168, 238);
}
@media screen and(max-width:500px){
    .form{
        width: 80%;
    }
}

.mensajeerror{
    width: 100%;
    text-align: center;
    font-size: 14px;
    margin: auto;
    color: #ff0000;
    margin-top: 20px;
}

.iniciasesion:hover{
    cursor: pointer;
}
*/
/*------------------ CONDICIONES -------------------*/
/*
.contenedorolvidaestecontraseña{
    width: 90%;
    height: 30px;
    background: rgb(255, 255, 255);
    margin: auto;
    display: flex;
}

.contolvidocontraseña{
    text-align:right;
}

.olvidocontraseña{
    font-size: 14px;
    text-decoration: none;
    color: rgb(0, 132, 255);
}
*/
/*---------------------- titulo de la pagina vender modificar-------------*/
.titulovender{
    width: 100%;
    text-align: center;
    margin: auto;
    position: relative;
}
.textotitulo{
    font-size: 25px;
    color: #ff0000;
    background: #ffffff;
}
.btncerrar{
    width: 20px;
    height: 20px;
    background: rgb(255, 255, 255);
    float: right;
    margin: 10px 10px 0 0;
    text-align: center;
}
.btncerrara{
    text-decoration: none;
    margin-top: 10px;
    padding-right: 20px;
    color: darkgrey;
    transition: 0.3s ease all;
}
.btncerrara:hover{
    color: rgb(0, 0, 0);
}

.contdatosimagenes{
    width: 100%;
    height: 515px;
    border-radius: 10px;
    margin:0px auto;
    justify-content: center;
    background: #ffffff;
    top:-20px;
    position: relative;
}
.contdatosimagenes .contenidodatos{
    background: #ffffff;
    box-shadow: 0px 0px 10px rgb(0,0,0, .50);
}
.contdatosimagenes .contenidoimagenes{
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}


.contenidogeneral{
    width: 80%;
    height: 680px;
    border-radius: 10px;
    display: flex;
    margin:5px auto;
    background: #ffffff;
    border: 1px solid rgb(255,255,255, .4);
    padding: 0;
}
.formulario{
    width: 99%;
    height: 630px;
    border-radius: 10px;
    margin:2px auto;
    background: #ffffff;
    padding: 0px;
}

.btncerrar{
    width: 20px;
    height: 20px;
    background: rgb(255, 255, 255);
    float: right;
    margin: 10px 10px 0 0;
    text-align: center;
}
.btncerrara{
    text-decoration: none;
    margin-top: 10px;
    padding-right: 20px;
    color: darkgrey;
    transition: 0.3s ease all;
}
.btncerrara:hover{
    color: rgb(0, 0, 0);
}

.contdatosimagenes{
    width: 100%;
    height: 515px;
    border-radius: 10px;
    margin:0px auto;
    justify-content: center;
    background: #ffffff;
    top:-20px;
    position: relative;
}
.contdatosimagenes .contenidodatos{
    background: #ffffff;
    box-shadow: 0px 0px 10px rgb(0,0,0, .50);
}
.contdatosimagenes .contenidoimagenes{
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/*-------------------- contenedor contenido datos -------------------*/
.contenidodatos{
    width: 66%;
    height: 540px;
    border-radius: 10px;
    float: left;
    margin:5px 23px;
    background: #ffffff;
    padding-left: 10px;
}

.titulocontenidodatos{
    width: 300px;
    font-size: 18px;
    border-radius: 6px;
    color: #ffffff;
    background: #0077ff;
    text-align: center;
    justify-content:space-around;
    margin: 0 auto;
}
/*----------------------- nombre comercial --------------------*/
.articuloavender, .contpalabrasclaves, .contdireccion, .conttelefonos, .contcorreos, .conthorario, .contpaginaweb{
	width: 100%;
	height: 30px;
    padding-left:8px;
    margin-bottom: 3px;
    display: flex;
}
.textoarticulo{
	font-size: 16px;
    line-height: 22px;
    color: rgb(0, 110, 255);
    display: inline-block;
    padding: 3px;
    margin-left: 80px;
}
.narticulo{
	width: 70%;
	padding: 5px 0;
	box-sizing:border-box;
	text-indent: 2px;
	border-width: 1px;
    border: 1px solid #ccc;
	font-size: 16px;
    float: left;
}
/*-------------------------- CATEGORIAS --------------------*/
.contcategorias{
    width: 100%;
    height: 30px;
    padding-left:8px;
    margin-bottom: 3px;
    display: flex;
}
.ncategorias{
    position: relative;
    display: block;
    width: 67%;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    float: left;
}
.categorias{
    position: relative;
    width: 9px;
    padding: 5px;
    font-size: 16px;
    float: left;
}
.textoct{
    display: block;
    color: #0099ff;
    font-size: 18px;
    padding: 3px;
    margin-left: 118px;
}
/*----------------------PALABRAS CLAVES--------------------*/
.textopalabrasclaves{
	font-size: 16px;
    line-height: 22px;
    color: rgb(0, 110, 255);
    display: inline-block;
    padding: 3px;
}
.palabrasclaves{
	width: 70%;
	padding: 5px 0;
	box-sizing:border-box;
	text-indent: 2px;
	border-width: 1px;
    border: 1px solid #ccc;
	font-size: 16px;
}
/*---------------------- DIRECCION COMERCIAL --------------------*/
.textodireccion{
	font-size: 16px;
    line-height: 22px;
    color: rgb(0, 110, 255);
    display: inline-block;
    padding: 3px;
    margin-left: 71px;
}
.direccion{
	width: 70%;
	padding: 5px 0;
	box-sizing:border-box;
	text-indent: 2px;
	border-width: 1px;
    border: 1px solid #ccc;
	font-size: 16px;
}
/*---------------------- TELEFONOS --------------------*/
.textotelefonos{
	font-size: 16px;
    line-height: 22px;
    color: rgb(0, 110, 255);
    display: inline-block;
    padding: 3px;
    margin-left: 142px;
}
.telefonos{
	width: 70%;
	padding: 5px 0;
	box-sizing:border-box;
	text-indent: 2px;
	border-width: 1px;
    border: 1px solid #ccc;
	font-size: 16px;
}
/*---------------------- CORREOS --------------------*/
.textocorreos{
	font-size: 16px;
    line-height: 22px;
    color: rgb(0, 110, 255);
    display: inline-block;
    padding: 3px;
    margin-left: 154px;
}
.correos{
	width: 70%;
	padding: 5px 0;
	box-sizing:border-box;
	text-indent: 2px;
	border-width: 1px;
    border: 1px solid #ccc;
	font-size: 16px;
}
/*---------------------- HORARIO DE ATENCION AL PUBLICO --------------------*/
.textohorario{
	font-size: 16px;
    line-height: 22px;
    color: rgb(0, 110, 255);
    display: inline-block;
    padding: 3px;
    margin-left: 70px;
}
.horario{
	width: 70%;
	padding: 5px 0;
	box-sizing:border-box;
	text-indent: 2px;
	border-width: 1px;
    border: 1px solid #ccc;
	font-size: 16px;
}
/*---------------------- TIENES PAGINA WEB --------------------*/
.textopaginaweb{
	font-size: 16px;
    line-height: 22px;
    color: rgb(0, 110, 255);
    display: inline-block;
    padding: 3px;
    margin-left: 74px;
}
.paginaweb{
	width: 70%;
	padding: 5px 0;
	box-sizing:border-box;
	text-indent: 2px;
	border-width: 1px;
    border: 1px solid #ccc;
	font-size: 16px;
}
/*---------------------- CONTENDOR DOMICILIOS Y DESPACHOS--------------------*/
.contdomiciliosdespachos{
    width: 70%;
    height: 20px;
    margin-left: 225px;
    margin-bottom: 8px;
}
.domicilios, .despachos{
    font-size: 16px;
    line-height: 22px;
    color: rgb(0, 110, 255);
    display: inline-block;
}
.domicilios:hover, .despachos:hover{
    font-size: 20px;
}
.despachos{
    margin-left: 30px;
}
/*-------------------------- departamentos y municipios --------------------*/
.contdepartamentos{
    width: 100%;
    height: 30px;
    padding-left:8px;
    margin-bottom: 5px;
    display: flex;
}
.ndepartamento{
    position: relative;
    display: block;
    width: 67%;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    float: left;
}
.nmunicipio{
    position: relative;
    display: block;
    width: 67%;
    padding: 5px;
    font-size: 16px;
    float: left;
}
.departamentos{
    position: relative;
    width: 9px;
    padding: 5px;
    font-size: 16px;
    float: left;
}
.contmunicipios{
    width: 100%;
    height: 30px;
    padding-left:8px;
    margin-bottom: 3px;
    display: flex;
}
.municipios{
    position: relative;
    width: 9px;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    float: left;
}
.municipios:hover{
    cursor: pointer;
}
.foninput{
    display: block;
    padding: 5px 0;
	box-sizing:border-box;
	text-indent: 2px;
	border-width: 1px;
	font-size: 16px;
    border: 1px solid #ccc;
}
.textodp{
    display: block;
    color: #0099ff;
    font-size: 18px;
    padding: 3px;
    margin-left: 92px;
}
.textomp{
    display: block;
    color: #0099ff;
    font-size: 18px;
    padding: 3px;
    margin-left: 130px;
}
/*----------------------------DESCRIPCION GENERAL ------------------*/
.contdescripcion{
    width: 97%;
    height: 110px;
    background: rgb(255, 255, 255);
    margin: auto;
    text-align: center;
}
.textodescripcion{
    color: #0099ff;
    font-size: 18px;
}
.textoarea{
    border: 1px solid #ccc;
}
/*---------------------- boton grabar -----------------------*/
.grabar{
    width:100%;
    height: 40px;
    background: rgb(255, 255, 255);
    margin: 0px;
    position: relative;
    display: flex;
}
.btnsubmit{
    width: 160px;
    margin: 0px auto;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    border: hidden;
    color: rgb(255, 255, 255);
    background: rgb(1, 90, 255);
}
.btnsubmit:hover{
    background: rgb(56, 116, 230);
}
/*---------------------- CONTENEDOR DE IMAGENES -----------*/
.contenidoimagenes{
    width: 26%;
    height: 500px;
    border-radius: 10px;
    float: left;
    margin:10px 20px;
    background: #ffffff;
}
.titulocontenidoimagenes{
    width: 290px;
    font-size: 18px;
    border-radius: 6px;
    color: #ffffff;
    background: #0077ff;
    text-align: center;
    justify-content:space-around;
    margin: 0 auto;
 }
.subtitulocontenidoimagenes{
    width: 300px;
    font-size: 12px;
    color: #0077ff;
    text-align: center;
    justify-content:space-around;
    margin: 0 auto;
}

 .mostrarimagen0{
	background:rgb(186, 206, 98);
	width: 200px;
	height: 350px;
	float: left;
	height: auto;
	/*margin: auto;*/
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 10px;
	/*padding: 20PX 20PX 20PX 20PX;*/
	border-radius: 10px;
    border: 1px solid;
	overflow: hidden;
}


/*-------------- configuracion de las imagenes del articulo ----------*/
.contenedorimagenes{
    width: 310px;
    height: 400px;
    padding: 0;
    background: rgb(255, 255, 255);
    display: flex;
    flex-wrap: wrap;
}
.mostrarimagen{
    float: left;
}
.subirimagen{
    width: 100px;
    height: 118px;
    background: rgb(255, 255, 255);
    margin: 5px 25px;
    padding: 2px;
    justify-content:center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    position:relative;
}
.inputimagen{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 90%;
    height: 90%;
    opacity: 0;
    background: #0077ff;
    cursor: pointer;
}

.subirimagen img{
	width: 100px;
	height: 105px;
	object-fit: contain;
    margin: auto;
}
.imagenpreview0{
	width: 100px;
	height:105px;
    background: rgb(255, 255, 255);
    object-fit: contain;
    margin: auto;
}
.fotonumero{
    font-size: 10px;
    color: #0077ff;
}
.subirimagen .borrarimagen{
	font-size: 10px;
    top: -6x;
	border-radius: 3px;
	border: 1px solid;
	float: right;
}
.borrarimagen:hover{
	background: rgb(253, 1, 1);
    cursor: pointer;
}


/*---------------------- boton grabar -----------------------*/
.grabar{
    width:100%;
    height: 40px;
    background: rgb(255, 255, 255);
    margin: 0px;
    position: relative;
    display: flex;
}
.btnsubmit{
    width: 160px;
    margin: 0px auto;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    border: hidden;
    color: rgb(255, 255, 255);
    background: rgb(1, 90, 255);
}
.btnsubmit:hover{
    background: rgb(56, 116, 230);
}

