@charset "utf-8";
/* CSS Document */
.activo{
	color: #FF7F00 !important;
}

.cancelado{
	cursor: no-drop;
}

.error{
	border: solid #f33333;
}

.hidden {
  display: none !important;
}

.texto-negro{
	color:#000 !important;
}

.baila{
	position: absolute;
	margin: 4px auto auto;
	left: 0;
	right: 0;
	width: 54px;
	z-index: 9;
	-webkit-animation: 1.2s infinite wobble;
	animation: 1.2s infinite wobble;
}

.baila2{
	-webkit-animation: 1.2s 4 wobble;
	animation: 1.2s 4 wobble;
}

#whatsappContacto{
	position: fixed; 
	right: 10px; 
	bottom: 10px; 
	width: 100%; 
	max-width: 60px;
	z-index: 1001;
	cursor: pointer;
	transition:all 300ms ease;
}

@font-face {
    font-family: 'Sf-Pro-Bold';
    src: url('../_fonts/SFPRODISPLAYBOLD.OTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sf-Pro-Medium';
    src: url('../_fonts/SFPRODISPLAYMEDIUM.OTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@media screen and (max-width: 1200px) {
  .TXTPortada {
    display: none !important;
  }
}

/***CSS espaciales solo para ésta tienda***/
/************************/
.checkbox-inline-wrap {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}
.checkbox-inline-wrap input[type="checkbox"] {
	vertical-align: middle;
	margin-right: 6px;
}
.checkbox-inline-wrap label {
	display: inline;
	vertical-align: middle;
	margin: 0;
}


/************************/

/* Estilos para loader*/
/* From Uiverse.io by kemal_5002 */ 
.loader {
  width: 48px;
  height: 48px;
  display: block;
  margin: 15px auto;
  position: relative;
  color: #6ebeff;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  text-align: center;
}
.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  background-color: #6ebeff;
  border-radius: 50%;
  animation: scale50 1s infinite ease-in-out;
}
.loader::before {
  top: auto;
  bottom: 0;
  background-color: #337ab7;
  animation-delay: 0.5s;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scale50 {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}


/* Estilos login*/
.formulario-login {
  display: none;
}

.formulario-login.active {
  display: block;
}