html, body, .container{
	min-width:300px !important;
 /* background: #f4f3f2 */
}

.primary-buttons{
  background-image: url("../images/Eq.svg"), url("../images/_3.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.disabled .btnSub{

  background: #e0e0e0 !important; 
  color: #616161 !important;

}
#btnEnviar{
border: none;

border-radius: 50px;

width: 178px;

height: 57px;

color: #fff;

background: #629ff4;

text-transform: uppercase;

font-family: Open Sans,sans-serif;

font-weight: 600;


}

/*Estilo para el Scrollbar*/
  
::-webkit-scrollbar { width: 3px; height: 3px }
::-webkit-scrollbar-track { background: #ccc }
::-webkit-scrollbar-thumb { background: #ccc }

/*Fin Estilo de scrollbar*/



@font-face {
    font-family: "Open Sans Condensed";
    src:url(../fonts/OpenSans-CondBold.ttf) format("truetype");
}


.table>tbody>tr>td{
	border-top:none;
}

.jumbotron {
  margin-bottom: 0px;
  margin-top: 20px;
  background-color: #f4f3f2
}

.jumbotron-l {
  margin-bottom: 0px;
  background-color: #FFF
}

@media screen and (min-width: 768px){
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 38px;
  }
}

.navbar {
  background-color: #f4f3f2
}


/* boton voice /*
/* Make it looks good on CodePen */

/* Prevent scrollbars to appear when waves go out of bound */
.sonar-wrapper {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 8rem 0;
}

/* The circle */
.sonar-emitter {
  position: relative;
  margin: 0 auto;
  width: 275px;
  height: 275px;
  border-radius: 9999px;
  background-color: HSL(45,100%,50%);
}

/* the 'wave', same shape and size as its parent */
.sonar-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: HSL(45,100%,50%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

/*
  Animate!
  NOTE: add browser prefixes where needed.
*/
.sonar-wave {
  animation: sonarWave 2s linear infinite;
}

@keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(3);
    opacity: 0;
  }
}


#toast {
    visibility: hidden;
    max-width: 50px;
    height: 50px;
    /*margin-left: -125px;*/
    margin: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;

    position: fixed;
    z-index: 1;
    left: 0;right:0;
    bottom: 30px;
    font-size: 17px;
    white-space: nowrap;
}
#toast #img{
  width: 50px;
  height: 50px;
    
    float: left;
    
    padding-top: 16px;
    padding-bottom: 16px;
    
    box-sizing: border-box;

    
    background-color: #111;
    color: #fff;
}
#toast #desc{

    
    color: #fff;
   
    padding: 16px;
    
    overflow: hidden;
  white-space: nowrap;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, expand 0.5s 0.5s,stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes expand {
    from {min-width: 50px} 
    to {min-width: 350px}
}

@keyframes expand {
    from {min-width: 50px}
    to {min-width: 350px}
}
@-webkit-keyframes stay {
    from {min-width: 350px} 
    to {min-width: 350px}
}

@keyframes stay {
    from {min-width: 350px}
    to {min-width: 350px}
}
@-webkit-keyframes shrink {
    from {min-width: 350px;} 
    to {min-width: 50px;}
}

@keyframes shrink {
    from {min-width: 350px;} 
    to {min-width: 50px;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 60px; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 60px; opacity: 0;}
}
