#spinningSquaresG{
	position:relative;
	width:72px;
	height:9px;
	margin:auto;
}

.spinningSquaresG{
	position:absolute;
	top:0;
	background-color:rgb(0,0,0);
	width:9px;
	height:9px;
	animation-name:bounce_spinningSquaresG;
		-o-animation-name:bounce_spinningSquaresG;
		-ms-animation-name:bounce_spinningSquaresG;
		-webkit-animation-name:bounce_spinningSquaresG;
		-moz-animation-name:bounce_spinningSquaresG;
	animation-duration:1.5s;
		-o-animation-duration:1.5s;
		-ms-animation-duration:1.5s;
		-webkit-animation-duration:1.5s;
		-moz-animation-duration:1.5s;
	animation-iteration-count:infinite;
		-o-animation-iteration-count:infinite;
		-ms-animation-iteration-count:infinite;
		-webkit-animation-iteration-count:infinite;
		-moz-animation-iteration-count:infinite;
	animation-direction:normal;
		-o-animation-direction:normal;
		-ms-animation-direction:normal;
		-webkit-animation-direction:normal;
		-moz-animation-direction:normal;
	transform:scale(.3);
		-o-transform:scale(.3);
		-ms-transform:scale(.3);
		-webkit-transform:scale(.3);
		-moz-transform:scale(.3);
}

#spinningSquaresG_1{
	left:0;
	animation-delay:0.6s;
		-o-animation-delay:0.6s;
		-ms-animation-delay:0.6s;
		-webkit-animation-delay:0.6s;
		-moz-animation-delay:0.6s;
}

#spinningSquaresG_2{
	left:9px;
	animation-delay:0.75s;
		-o-animation-delay:0.75s;
		-ms-animation-delay:0.75s;
		-webkit-animation-delay:0.75s;
		-moz-animation-delay:0.75s;
}

#spinningSquaresG_3{
	left:18px;
	animation-delay:0.9s;
		-o-animation-delay:0.9s;
		-ms-animation-delay:0.9s;
		-webkit-animation-delay:0.9s;
		-moz-animation-delay:0.9s;
}

#spinningSquaresG_4{
	left:27px;
	animation-delay:1.05s;
		-o-animation-delay:1.05s;
		-ms-animation-delay:1.05s;
		-webkit-animation-delay:1.05s;
		-moz-animation-delay:1.05s;
}

#spinningSquaresG_5{
	left:36px;
	animation-delay:1.2s;
		-o-animation-delay:1.2s;
		-ms-animation-delay:1.2s;
		-webkit-animation-delay:1.2s;
		-moz-animation-delay:1.2s;
}

#spinningSquaresG_6{
	left:45px;
	animation-delay:1.35s;
		-o-animation-delay:1.35s;
		-ms-animation-delay:1.35s;
		-webkit-animation-delay:1.35s;
		-moz-animation-delay:1.35s;
}

#spinningSquaresG_7{
	left:54px;
	animation-delay:1.5s;
		-o-animation-delay:1.5s;
		-ms-animation-delay:1.5s;
		-webkit-animation-delay:1.5s;
		-moz-animation-delay:1.5s;
}

#spinningSquaresG_8{
	left:63px;
	animation-delay:1.64s;
		-o-animation-delay:1.64s;
		-ms-animation-delay:1.64s;
		-webkit-animation-delay:1.64s;
		-moz-animation-delay:1.64s;
}



@keyframes bounce_spinningSquaresG{
	0%{
		transform:scale(1);
		background-color:rgb(0,0,0);
	}

	100%{
		transform:scale(.3) rotate(90deg);
		background-color:rgb(255,255,255);
	}
}

@-o-keyframes bounce_spinningSquaresG{
	0%{
		-o-transform:scale(1);
		background-color:rgb(0,0,0);
	}

	100%{
		-o-transform:scale(.3) rotate(90deg);
		background-color:rgb(255,255,255);
	}
}

@-ms-keyframes bounce_spinningSquaresG{
	0%{
		-ms-transform:scale(1);
		background-color:rgb(0,0,0);
	}

	100%{
		-ms-transform:scale(.3) rotate(90deg);
		background-color:rgb(255,255,255);
	}
}

@-webkit-keyframes bounce_spinningSquaresG{
	0%{
		-webkit-transform:scale(1);
		background-color:rgb(0,0,0);
	}

	100%{
		-webkit-transform:scale(.3) rotate(90deg);
		background-color:rgb(255,255,255);
	}
}

@-moz-keyframes bounce_spinningSquaresG{
	0%{
		-moz-transform:scale(1);
		background-color:rgb(0,0,0);
	}

	100%{
		-moz-transform:scale(.3) rotate(90deg);
		background-color:rgb(255,255,255);
	}
}

.content{
    display: flex;
	width:360px; 
	height:40px;
	overflow-x: scroll; 
	margin: 5px 5px;
              
}
.content::-webkit-scrollbar { 
                display: none; 
            } 

.img-content{
 display:  inline-block;
 width:32px; 
 height:32px;
 margin-right:5px;
}


.imgbtn {
width:38px;
}


.imgsubmit {
	border: none;
	background-color:transparent;
	width:38px;
	margin: 0px;
}
.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}
.circle {
   border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 5px;

    background: #fff;
    border: 2px solid #666;
    color: #666;
    text-align: center;

    font: 12px Arial, sans-serif;
	font-weight: bold;
	float: left;
	margin-top:-2px;
	margin-left:4px;
}

.recibo {
  position: fixed; /* Sit on top of the page content */
   /*display: none; Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0px; 
  left: 0px;
  right: 0px;

 visibility: hidden;
 background-color: #fff;
 
  z-index: 2; 
}

.product-filter {
  display: flex;
 
}


.product-filter-select option{
	color:black;
}

.sort {
  display: flex;
}
.collection-sort {
  display: flex;
  flex-direction: column;
  padding:10px;

}

.product-filter-select option{
	color:black;
}

.product-card {
  
  background-color:#ffffff;
  border-style: solid;
  border-width: 1px;
  border-color:#c8c8c8;
  margin:5px;
}

.fijo {
  position: fixed;
  top: 0;
  width: 100%
}

.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}


.search-box{
    position: absolute;
	width: 300px;
    height: 50px;

	background-color: #e9ecef;
    box-sizing: border-box;
    border-radius: 25px;
    border: 4px solid white;
    padding: 5px;
}

.search-box input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 42.5px;
    line-height: 30px;
    outline: 0;
    border: 0;
    font-size: 1em;
    border-radius: 20px;
    padding: 0 20px;
	background-color: #e9ecef;
}


.search-box button{

	border:none;
    padding: 10px;
    width: 42.5px;
    height: 42.5px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    color: #07051a;
    text-align: center;
    font-size: 1.2em;
    transition: all 1s;
}



.search-box:hover button,
.search-box:valid button{
    background: #07051a;
    color: white;
}

.filter-box{
    position: absolute;
    width: 300px;
    height: 50px;
	background-color: #e9ecef;
    box-sizing: border-box;
    border-radius: 25px;
    border: 4px solid white;
    padding: 5px;
	display:none;
}
.filter-button{
	
	margin-left:344px;

 
}

.filter-button  button{
	border:none;
    padding: 10px;
    width: 42.5px;
    height: 42.5px;
    border-radius: 50%;
    color: #07051a;
    text-align: center;
    font-size: 1.2em;
    transition: all 1s;
}

.filter-button button:hover  {
    background: #07051a;
    color: white;
	
}

.filter-box-show {
	display:block;
}

 

.lista-articulos {
  display: flex;
  flex-wrap: wrap;
}

.articulo {
  flex: 1 0 21%; 
  margin: 5px;
  height: 140px;
 
}
.articulo-info {
  margin-top: auto;
  line-height: .9;

}
.articulo-titulo {
 width: 100%;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;

}

@media screen and (max-width: 600px) {
  .articulo-titulo {
 width: 100px;
 

}
}

.lista-articulos img{
	width:64px;
	height:64px;
}

.box-backcolor{
	background-color:#EBEBEB ;
}

.datepicker-wrapper {
    position: relative;
    display: inline-block;
  }
  input[type="text"] {
    padding: 8px;
    width: 150px;
    cursor: pointer;
  }
  .calendar {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 10px;
    z-index: 100;
  }
  .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }
  .calendar-header button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
  }
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 30px);
    gap: 2px;
    text-align: center;
  }
  .calendar-grid div {
    padding: 5px;
    cursor: pointer;
  }
  .calendar-grid div:hover {
    background: #eee;
  }
  .calendar-grid .day-name {
    font-weight: bold;
    cursor: default;
  }
   .calendar-grid .available {
    background: #00e6ac;
    border-radius: 4px;
  }
  .calendar-grid .selected {
    background: #007BFF;
    color: white;
    border-radius: 4px;
  }
  .calendar-grid .disabled {
    background: #c2f0f0;
    border-radius: 4px;
  }