/*
    DEMO STYLE
*/

.modal {
    padding: 0!important;
}

.bg-verde {
    background: #179978;
}

.bg-gris {
    background: #f5f6fa;
}

.txt-verde {
    color: #179978;
}

.txt-gris {
    color: #8a8a8a;
}

/*============= MODAL TABLA IMAGEN =============*/
#modal_producto {
    font-size: .8rem;
}

.modal-img-container {
    width: 100%;
    height: 17rem;
    position: relative;
}

.modal-img-container img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.carrito-img-container {
    width: 100%;
    height: 6rem;
    position: relative;
}

.carrito-img-container img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.carousel-control-prev-icon {
 background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23179978' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23179978' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}


/*============= NAVIGATION =============*/
.navbar-brand img {
   height: 1.3rem;
   margin: 1rem 0;
}
.navbar{
   font-weight: 700;
   letter-spacing: .1rem;
   font-size: 1.3rem;
   transition: background-color .5s ease;
   background: url('../img/camuflaje.jpg') no-repeat;
   background-size: cover !important;
}
.navbar-nav li {
   padding-right: .8rem;
}
.navbar-nav .nav-link {
   color: white;
   padding-top: .8rem;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
   color: #ffd43b;
}
.custom-toggler-icon {
   color: white;
   font-size: 1.6rem;
}
.navbar .navbar-outer {
   padding: .7rem 1rem;
   background-color: rgba(0, 0, 0, .8);
}

.carrito-card {
  border-radius: 1rem;
  border: 1px solid #d9d9d9;
}

.cantidad-producto {
  width: 5rem;
}

.btn-eliminar-carrito {
  font-size: 2rem;
  color: #d9d9d9;
  transition: 0.5s;
}

.btn-eliminar-carrito:hover {
  color: red;
}

.btn-no-style {
  background: none;
  border: none;
  padding: 0;
}

.btn-no-style:focus {
  outline: 0;
}

.input-group button {
    border-top-right-radius: 50rem !important;
    border-bottom-right-radius: 50rem !important;

}

.input-group .form-control {
    border-top-left-radius: 50rem !important;
    border-bottom-left-radius: 50rem !important;

}

/*============= SNACKBAR =============*/

.snackbar {
    visibility: hidden;
    z-index: 9999;
    bottom: 40px;
    color: white;
    font-size: 1.5rem
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
    animation: fadein 0.5s, fadeout 0.5s 3.5s;
}

#exito i {
  font-size: 6rem;
}

/*============= CAPTCHA =============*/
.g-recaptcha > div {
    margin: 0 auto;
}

small.alerta, .alert {
    display: none;
}

.alert {
    padding: .25rem .5rem !important;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 40px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 40px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 40px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 40px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}