﻿body
{
    background: #f2efe8;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.mainWrapper
{
    padding-top:30px;
    margin: 0 auto;    
    max-width:1100px;
    
}

.wrapper
{    
    margin: 0 auto;    
    height:auto;
    padding:30px 20px 40px 20px;
    background-color: #fff;    
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    border-radius: 2px;
}

.imgTienda
{
    background-image: url(../imgs/tienda.jpg);
    background-repeat: no-repeat;    
    background-position: center;    
    width: 100%;
    height: 400px;
    position: relative;   
    text-align: center;  
}

.imgTienda .contenido
{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);  
    transform: translate(-50%, -50%); 
    width: 560px;    
    max-width: 700px; 
    
}

#imgLogo
{
    background-image: url(../imgs/logoFlexi.png);
    background-repeat: no-repeat;
    background-size: 230px;
    background-position: center;    
    width: 100%;
    height: 180px;    
}

.imgTienda .contenido>h2
{    
    font-size: 40px;
    font-weight: 600;
    text-align: center;    
    height:48px;
    margin:10px 0 10px 0;
    line-height:1.2;
}

#h2tdas
{
    color: white;
    background-color:#fd905b;
}

#h2Flexi
{
    color: #fd905b;
    background-color:white;    
}

.secondaryWrapper
{    
}

#contenedorDropDownEstados
{
    padding-top:40px;    
}

#btnDDEstados
{
    font-size:20px;
}

#listadoDDEstados
{
    font-size:18px;
    min-width:277px;
    max-height:300px;
    overflow-y:scroll;
}

.dropdown-menu li a:hover
{
    background-color:Transparent;    
}

.dropdown-menu li a.selected:hover
{
    background-color:#fd905b;
    color:White;
}

#contenedorListadoTiendas
{
    padding-top:20px;
}

.contenedorListadoTiendas_fila, .contenedorListadoTiendas_fila_interna
{
    margin-top:20px;
}

.contenedorEstadoFila
{
    margin-top:25px;
    margin-bottom:35px;    
    width:100%;
    }

.nombreEstadoFila
{
    display: inline-block;
    text-align:center;
    vertical-align: middle;
    width:100%;
    font-size:30px;
    font-weight:bold;
    color:#d92231;
}

.contenedorInfoTienda
{
    float:left;
    border: solid 1px silver;
    background-color: White;
    max-width:340px;
    min-width:340px;
    height:250px;
    
    overflow: hidden;
    text-overflow: ellipsis;
}

.contenedorInfoTienda.addEspacio
{
    margin-right:15px;    
}

.subContenedorInfoTienda
{
    padding:30px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nombreTienda
{ 
    font-weight:bold;
    font-size:20px;
    color:#ff5a00;    
    margin-bottom:8px;
}

.calleTienda, .coloniaTienda, .municipioEstadoCPTienda
{
    color:Gray;
    font-size:18px;
}

.eCorreo
{
    color:#1b83b8;
    font-size:18px;
}

.nombreTienda, .calleTienda, .coloniaTienda, .municipioEstadoCPTienda
{
    text-transform:uppercase;
    overflow:hidden;        
}

.eCorreo
{
    text-transform:lowercase;
    overflow:hidden;        
}


#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

#button {
  display: inline-block;
  background-color: red;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;  
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #d92231;
  text-decoration: none;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}