/*--------------------------------------------------*/
/*FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/*--------------------------------------------------*/



/*--------------------------------------------------*/
/*VARS*/
:root{
  --color1: #00DAC4;
  --color2: #00DAC4;

  --white: #ffffff;

  --gray1: #F0F1F2;
  --gray2: #D7D8D9;
  --gray3: #A4A5A6;
  --gray4: #6F7073;
  --gray5: #212226;
}
/*--------------------------------------------------*/



/*--------------------------------------------------*/
body{
  background-color: var(--white);
  font-family: 'Roboto', sans-serif;
  line-height: 1.2;
  color: var(--gray5);
  padding-top: 3.5rem;
}

img{
  max-width: 100%;
  height: auto;
}

button{
  border: 0;
  color: inherit;

}
button:focus{
  outline: none;
}
/*--------------------------------------------------*/



/*--------------------------------------------------*/
.form-group {
  margin-bottom: .75rem;
}
.modal-header .close{
  color: var(--white);
  opacity: 1;
}
.input-group-text {
  min-width: 2.9rem;
  justify-content: center;
}
.btn{
  display: inline-flex;
  align-items: center;
}
/*--------------------------------------------------*/



/*--------------------------------------------------*/
.header{
  background-color: var(--color1);
  box-shadow: 0 5px 5px 0px rgba(60, 60, 60, .5);
  /*position: relative;*/
}
.header__container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.5rem;
  margin: 0 0 0 1rem;
}
.header__title{
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--white);
  margin: 0;
}
.header__nav{
  display: flex;
  height: 100%;
}
.header__nav-link{
  border-left: 2px solid var(--gray1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem .5rem;
  min-width: 3.5rem;
  color: var(--white);
}
.header__nav-link:hover{
  color: var(--color2);
  text-decoration: none;
}

.badge-pill{
  padding: .25em .4em;
}
.badge-secondary {
  color: var(--color1);
  background-color: var(--white);
}
/*--------------------------------------------------*/



/*--------------------------------------------------*/
.banner{}
.banner__img{
  object-fit: cover;
  min-height: 150px;
}
/*--------------------------------------------------*/



/*--------------------------------------------------*/
/*.accordion{

}
.accordion__button{
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  border-bottom: 2px solid var(--gray2);
}*/
.accordion{
padding: 0 10px;
}
.accordion__button{
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  /*padding: .75rem 1rem;*/
  border-bottom: 2px solid var(--gray2);
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 1px var(--gray3);
}
.accordion__button img{
  border-radius: 10px 0 0 10px;
  margin-right: 15px;
  width: 150px;
}
.accordion__button.collapsed{
  background-color: var(--white);
  color: var(--gray4);
}
.accordion__button,
.accordion__button:hover{
  background-color: var(--color1);
  color: var(--white);
}
.accordion__button > *{
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
}
.accordion__body{
  background-color: var(--gray1);
  padding: .5rem 0;
}
/*--------------------------------------------------*/



/*--------------------------------------------------*/
.product-list{
  padding: 0 1rem;
  margin-bottom: 0;
}
.product-list__item{
  display: flex;
  justify-content: space-between;
  padding: .5rem 0 .5rem;
  color: var(--gray4);
}
.product-list__item:hover{
  text-decoration: none;
  color: var(--gray5);
}
.product-list__item:not(:last-child){
  border-bottom: 2px solid var(--gray2);
}
.product-list__item:last-child{
  padding-bottom: .75rem;
}
.product-list__text{
  
}
.product-list__name{
  font-weight: bold;
  line-height: 1.3;
}
.product-list__description{
  font-size: .75rem;
}
.product-list__precio{
  font-weight: bold;
  font-size: .9rem;
}
/*--------------------------------------------------*/



/*--------------------------------------------------*/
.login{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*text-align: center;*/
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  overflow: auto;
}
.login:before{
  content: "";
  background-image: url("../img/bg-login.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* filter: blur(8px);
  -webkit-filter: blur(8px); */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.login:after{
  content: "";
  /*background-color: #000;*/
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.login__content{
  width: 100%;
  max-width: 40rem;
  min-height: 15rem;
  padding: 3rem 2rem 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.45rem;
  display: flex;
  align-items: center;

}
.login__content:before{
  content: "";
  background-color: #00DAC4;
  /*background-color: #DEDC00;*/
  /*background-color: #00A5D3;*/
  opacity: .4;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* filter: blur(8px);*/
  -webkit-filter: blur(8px); 
  mix-blend-mode:multiply;
}

.login__form{
  width: 100%;
  max-width: 22rem;
}

.login__logo img{
  max-height: 3.5rem;
}
.login__text{
  color: var(--white);
  position: absolute;
  top: 100%;
  font-size: 0.7rem;
  margin-top: -1.5rem;

}
.login__input{
  padding: .375rem 0;
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  border: 0;
  border-bottom: 1px solid;
  background-color: transparent;
  color: #fff;
}

.login__input::placeholder {
  color: currentColor;

}
.login__input:focus-visible{
  outline: none;
}

@media(min-width: 576px){
  .login{
    padding: 2rem;
  }
  .login__content{
    padding: 5rem 2rem 4rem;
  }
  .login__logo img {
    max-height: 4rem;
  }
}
/*--------------------------------------------------*/

 .btn-info {
    color: #fff;
    background-color: #003366;
    border-color:#003366;

}
 .btn-info:hover {
    background-color: #003366;
}

.btn-secondary {
    color: #fff;
    background-color: #94999c;
    border-color: #94999c;
}


.bg-info {
    background-color:#00DAC4!important;
}


.table-info tbody+tbody, .table-info td, .table-info th, .table-info thead th {
    border-color: #003366;
}
.table-info, .table-info>td, .table-info>th {
    background-color:#003366;
}