@import url('https://fonts.googleapis.com/css?family=B612');

* {
  font-family: 'B612', sans-serif;
  font-display: swap;
}
html{
  scroll-behavior: smooth;
}

body {
  width: auto;
  height: 100vh;
}

/*--SLIDE OUT--*/
.slideout-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 256px;
  /*overflow-y: scroll;*/
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  will-change: transform;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

/**/
/*.panel:before {
  content: '';
  display: block;
  background-color: rgba(0,0,0,0);
  transition: background-color 0.5s ease-in-out;
}

.panel-open:before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 99;
}*/

/*--DESLIZAME--*/
.deslizame {
  line-height: 19px;
  display: inline-block;
  /*background: #343a40;*/
  padding: 5px 15px 5px 15px;
  border-radius: 5px;
  position: relative;
  /*left: 50px;*/
  animation: pulse 2s infinite;
}
.deslizame:before {
  content: '';
  display: inline-block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #007bff;
  position: absolute;
  top: 50%;
  left: -7px;
  margin-top: -6px;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, 1);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 123, 255, 1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 1);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

/*--Loader--*/
.loader {
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.loader-container{
  position: fixed;
  height: 100%;
  width: 100%;
  top: 50%;
}
.bouncing-loader {
  display: flex;
  justify-content: center;
}
.bouncing-loader > div {
  width: 1rem;
  height: 1rem;
  margin: 3rem 0.2rem;
  background: #007bff;
  border-radius: 50%;
  animation: bouncing-loader 0.6s infinite alternate;
}
.bouncing-loader > div:nth-child(2) {
  animation-delay: 0.2s;
}
.bouncing-loader > div:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes bouncing-loader {
  to {
    opacity: 0.1;
    transform: translate3d(0, -1rem, 0);
  }
}

/*--Progress Bar--*/
.progress {
  position: fixed !important;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 5px;
  border-radius: 0;
  z-index: 500;
}

/*--Aside--*/
aside a .card:hover{
  border: 1px solid #007bff;
  opacity: 0.8;
}

/*--Register and Login--*/
#signup{
  background-color: #007bff /*#17a2b8*/;
}
#signin{
  background-color: #28a745;
}
#signup:hover, #signin:hover{
  opacity: 0.8;
  transition: 0.2s;
}

/*--View source on GitHub--*/
.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}
@keyframes octocat-wave{
  0%,100%{transform:rotate(0)}
  20%,60%{transform:rotate(-25deg)}
  40%,80%{transform:rotate(10deg)}
}
@media (max-width:500px){
  .github-corner:hover .octo-arm{animation:none}
  .github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}
}

/*--Footer--*/
.panel-footer {
  margin: 10px auto 20px;
}
.panel-footer p{
  margin: 0%;
}
.heart {
  font-style: normal;
  font-weight: 500;
  color: #c0392b;
  text-decoration: none;
}

/*--Cookie Container--*/
#cookie-container {
  position: fixed;
  z-index: 99999;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #333;
  border-radius: 0px;
  border: none;
  box-shadow: none;
}

#cookie-text {
  position: relative;
}

.icon {
	height: 30px;
	/*margin-bottom: -10px*/
}

#close-cookie-bar {
  opacity: 0.8;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

#close-cookie-bar:hover {
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

#cookie-text span {
  display: inline-block;
  color: #fff;
  width: 90%;
  text-align: left;
  line-height: 2.6;
}

#cookie-text span a {
  color: #fff;
  text-decoration: underline;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

#cookie-text span a:hover {
  opacity: 0.7;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

/*--Boton Carrito--*/
.botonCarrito {
  position: fixed !important;
  border-radius: 50%;
  padding: 15px;
  text-decoration: none;
  /*box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);*/
  bottom: 25px;
  right: 30px;
  transition: all .2s ease-in-out;
  z-index: 9999999;
}

.botonCarrito span {
  position: absolute !important;
  padding: 6px 10px;
  /*background-color: #f0ad4e;*/
  background-color: #c9302c;
  color: white;
  border-radius: 50%;
  top: -5px;
  right: -10px;
  border: 1px solid #fff;
}
.botonCarrito:hover{
  transition: 0.5s;
  background-color: #28a745 !important;
  color: white;
}
.botonCarritoUI{
  position: fixed !important;
  padding: 15px;
  text-decoration: none;
  width: 60px;
  height: 60px;
  padding: 0 !important;
  bottom: 25px;
  right: 30px;
  transition: all .2s ease-in-out;
  z-index: 9999999;
}
.botonCarritoUI > div{
  border-radius: 50% !important;
  width: 60px;
  height: 60px;
}
.botonCarritoUI .visible{
  position: absolute !important;
  margin: 0;
  padding: 0;
  color: white;
  padding-top: 6px;
  margin-right: 14px !important;
}
.botonCarritoUI .hidden{
  color: white;
}
.botonCarritoUI > div:hover{
  background-color: #28a745 !important;
  transition: 0.4s;
}

/*--Boton Comprar--*/
.botonComprar{
  width: 100%;
}
.botonComprar:hover{
  background-color: #28a745 !important;
  transition: 0.4s;
}
.botonComprar:active{
  background-color: #28a745 !important;
  transition: 0.4s;
}

/*--Buscador--*/
.buscador input{
  padding: 0 !important;
  padding-left: 10px !important;
  height: 40px !important;
}
.buscador .button{
  height: 40px !important;
}
.buscador .button:hover{
  background-color: #28a745 !important;
  transition: 0.4s;
}

/**/
#panel{
  background-color: rgba(255,255,255,1);
}
#openSlide{
  border-radius:0px;
  z-index: 1000;
}
.clear{
  content:"";
  height: 25px;
}