/*Estilos para el menu.php*/

:root{
  --color-terciario-background: linear-gradient(135deg, #2c2c2c, #3a3a3a, #4a4a4a);
  --color-primario-background: #800020;
  --color-secundario-background: #9f152d;
}

/*Estilo inicial del Nav */

#menu {
  padding: 40px 0;
}

#menu .posicion-add {
  z-index: 2000;
  position: absolute;
  top: 100px;
  right: 10px;
}

.navbar {
  background: var(--color-primario-background);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  min-height: 90px;
}

.navbar-collapse {
  margin-top: 25px;
}

/*Quitar simbolos a las etiquetas <li>*/

ul li {
  list-style: none;
}

/*Estilos de las etiquetas <a>*/

.nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  padding: 0 15px;
  min-width: 104px;
  height: 60px;
  line-height: 60px;
  font-weight: 500;
  font-family: Roboto, Arial, sans-serif;
}

#ul li:hover .nav-link {
  background: #fff !important;
  color: #9f152d;
  border-top: 4px solid rgba(224, 47, 47, 0.815);
}

.nav-link:focus {
  background: #fff !important;
  color: #9f152d;
  border-top: 4px solid white;
}

/*Estilo del icono*/

.logo-brand {
  max-height: 90px;
}

/*Estilo para el icono del menu responsive*/

.navbar-toggler {
  font-size: 20px;
}

.navbar-toggler:focus {
  outline: none;
}

/*Estilos para el boton de Whatsapp*/

.form-dark {
  background-color: #fff;
  width: auto;
  min-height: 170px;
  position: fixed;
  bottom: 65px;
  right: 65px;
  z-index: 3000;
  display: none;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.form-header {
  background: var(--color-primario-background);
  width: 100%;
  display: inline-block;
  padding: 15px 15px 15px 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.image {
  float: right;
  padding-right: 36px;
}

.style-support {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

.contenido {
  float: right;
  padding-right: 36px;
  padding-top: 15px;
}

.contenido p {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
}

.chat-content {
  background: #f7f7f7;
  border-radius: 32px;
  margin: 36px;
}

.message {
  position: relative;
  background: #eee;
  border-radius: 32px;
  padding: 16px 24px;
}

.message p {
  text-align: left;
  color: #444;
  font-weight: 600;
  margin-bottom: 0;
}

.message:before {
  content: "";
  position: absolute;
  top: -6px;
  right: 24px;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  background-color: #eee;
}

.style-footer {
  text-align: right;
  padding: 20px 10px;
}

.mostraryocultar {
  display: block;
}

.btn-fine {
  background: rgb(0 149 255 / 76%) 40%;
  color: #fff;
}

.respuesta {
  position: relative;
}

.respuesta input {
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  padding: 20px 56px 20px 36px;
  margin: 0;
  color: #4e4e4e;
  background-color: #ffffff;
  border: none;
  width: 100%;
  min-height: 59px;
  border-top: 1px solid #e6e6e6;
  outline: none;
}

#submit {
  cursor: pointer;
}

.style-send {
  position: absolute;
  top: 50%;
  right: 40px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 0;
}

.apiwhatsapp {
  bottom: 20px;
  right: 26px;
  width: 60px;
  z-index: 1000;
  position: fixed;
  cursor: pointer;
}

.apiwhatsapp:active {
  transform: scale(0.9);
}

.apiwhatsapp img {
  width: 100%;
  height: auto;
}

/*Estilos para el toast*/

#menu .toast {
  background-color: #f93154 !important;
}

#menu .posicion-add {
  z-index: 2000;
  position: absolute;
  right: 10px;
}

#menu .toast:not(:last-child) {
  margin-bottom: -2rem;
}

/*Mediaquerys para ajustar elementos al responsive*/

@media (max-width: 575.98px) {
  #menu {
    margin-left: 2rem !important;
  }

  #menu .posicion-add {
    z-index: 2000;
    position: absolute;
    top: 5px;
    right: 10px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  
  #menu .posicion-add {
    z-index: 2000;
    position: absolute;
    top: 5px;
    right: 10px;
  }
}
