﻿/*------------------------------------------------------------------
[ mensajes ]*/

.toast {
	position: absolute;
	position: fixed;
	top: 0;
	right: 0;
	padding: 0.5rem 1rem;
	border-radius: 10px;
	top: 15px;
	right: 25px;
	z-index: 1;
	box-shadow: 29px 25px 22px -9px rgba(140,140,140,0.8);
	-webkit-box-shadow: 29px 25px 22px -9px rgba(140,140,140,0.8);
	-moz-box-shadow: 29px 25px 22px -9px rgba(140,140,140,0.8);
}

.toast-header {
    color: black;
    background-color: rgba(137, 194, 86, 0);
}

.toast-body {
	color: black;
}

.exito {
    background-color: rgba(137, 194, 86, 0.59);
}

.notificacion {
    background-color: rgba(72, 150, 239, 0.59);
}

.advertencia {
    background-color: rgba(252, 157, 3, 0.59)
}

.fallo {
    background-color: rgba(194, 87, 94, 0.59);
}
/*------------------------------------------------------------------
[ checkboxes ]*/

.checkbox-round {
    width: 1.3em;
    height: 1.3em;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

    .checkbox-round:checked {
        background-color: #219EBC;
    }

/*------------------------------------------------------------------
[ Selector de imagenes ]*/
.container-img-select {
	width: 150px;
	height: 150px;
	display: block;
	margin: 0 auto;
}

.outer {
	width: 100% !important;
	height: 100% !important;
	max-width: 150px !important; /* any size */
	max-height: 150px !important; /* any size */
	background-size: cover;
	background-position: center;
	margin: auto;
	background-color: #cbcaca;
	border-radius: 100%;
	position: relative;
}

.inner {
	background-color: #219EBC;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
}

.inner:hover {
	background-color: #8ECAE6;
}

.inputfile {
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: 1;
	width: 50px;
	height: 50px;
}

.inputfile + label {
	font-size: 1.25rem;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
	overflow: hidden;
	width: 50px;
	height: 50px;
	pointer-events: none;
	cursor: pointer;
	line-height: 50px;
	text-align: center;
}

.inputfile + label svg {
	fill: #fff;
}

/*------------------------------------------------------------------
[ Passwords ]*/
.invalido {
	background: url(../images/invalid.png) no-repeat 0 50%;
	padding-left: 22px;
	line-height: 24px;
	color: #ec3f41;
}

.valido {
	background: url(../images/valid.png) no-repeat 0 50%;
	padding-left: 22px;
	line-height: 24px;
	color: #3a7d34;
}

#pswd_info {
	display: none;
}

.sobrepuesto {
	z-index: 1;
}

.detras {
	z-index: -1;
}

/*------------------------------------------------------------------
[ Fuente de codigo de barras y botón flotante de crear producto ]*/
.btn-flotante {
	color: #219EBC; /* Color del texto */
	border-radius: 100%; /* Borde del boton */
	background-color: transparent; /* Color de fondo */
	position: fixed;
	bottom: 90px;
	right: 40px;
	transition: all 300ms ease 0ms;
	z-index: 99;
	border: none;
}

	.btn-flotante:hover {
		background-color: transparent; /* Color de fondo al pasar el cursor */
		color: #126782; /* Color del texto */
		transform: translateY(-7px);
	}

@media only screen and (max-width: 600px) {
	.btn-flotante {
		font-size: 14px;
		padding: 12px 20px;
		bottom: 20px;
		right: 20px;
	}
}