@import url('demo.css');

/* Entypo Icon Font */
@font-face {
  font-family: 'entypo-selected';
  src: url("../fonts/entypo-selected.eot");
  src: 
    url("../fonts/entypo-selected.eot?#iefix") format('embedded-opentype'), 
    url("../fonts/entypo-selected.woff") format('woff'), 
    url("../fonts/entypo-selected.ttf") format('truetype'), 
    url("../fonts/entypo-selected.svg#entypo-selected") format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Gamma Gallery Style */

.gamma-container {
  min-height: 200px;
}

.gamma-gallery {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
}

/* http://nicolasgallagher.com/micro-clearfix-hack/ */
.gamma-gallery:before,
.gamma-gallery:after {
    content: " ";
    display: table;
}

.gamma-gallery:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
.gamma-gallery {
    *zoom: 1;
}
 */

.gamma-gallery li {
  display: block;
  position: relative;
  cursor: pointer;
  float: left;
  padding: 4px;
}

.gamma-gallery li img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.gamma-description {
  background: #fff;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 20px;
  right: 20px;
  text-align: center;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.no-touch .gamma-gallery li:hover .gamma-description {
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  opacity: 1;
}
 
.gamma-description:before {
  content: '';
  height: 100%;
}

.gamma-description:before,
.gamma-description h3 {
  display: inline-block;
  vertical-align: middle;
}

.gamma-description h3 {
  width: 100%;
  padding: 0 20px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
}

.gamma-buttons {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10001;
}

.gamma-buttons button {
  float: left;
  background: #333;
  color: #fff;
  display: block;
  width: 30px;
  height: 30px;
  font-size: 14px;
  margin-left: 5px;
  cursor: pointer;
  border: none;
  outline: none;
}

.gamma-buttons button:before,
.gamma-nav span:before {
  font-family: 'entypo-selected';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: block;
  text-align: center;
  opacity: 0.7;
  outline: none;
}

.no-touch .gamma-buttons button:hover {
  background: #666;
}

button.gamma-btn-close:before {
  content: '\2715';
}

button.gamma-btn-ssplay:before {
  content: '\25b6';
}

button.gamma-btn-sspause:before {
  content: '\2389';
}

.gamma-single-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  z-index: 10000;
  text-align: center;
  display:none;
}

.gamma-overlay {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: none;
  z-index: 9999;
}

.gamma-single-view img {
  position: absolute;
  cursor: pointer;
}

.gamma-description-wrapper {
  background: rgba(0,0,0,0.7);
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 10;
  padding: 5px 0;
}

.gamma-single-view .gamma-description {
  background: transparent;
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  top: auto;
}

.gamma-single-view .gamma-description h3 {
  font-size: 15px;
  padding: 5px 0;
  color: #fff;
}

.gamma-nav span {
  position: absolute;
  display: block;
  width: 20px;
  height: 38px;
  top: 50%;
  margin-top: -19px;
  left: 20px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gamma-nav span.gamma-next {
  left: auto;
  right: 20px;
}

.gamma-nav span:before {
  color: #fff;
  opacity: 0.7;
  font-size: 40px;
}

.gamma-nav span:hover:before {
  opacity: 1;
}

.gamma-nav span:before {
  display: block;
  margin: 0;
  width: auto;
}

.gamma-nav span.gamma-prev:before {
  content: '\e75d';
}

.gamma-nav span.gamma-next:before {
  content: '\e75e';
}

.gamma-img-fly {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
}

/* Loaders */

.gamma-loading {
  background: transparent url(../img/loader_light.gif) no-repeat center center;
}

.gamma-single-view.gamma-loading {
  background: transparent url(../img/loader_dark.gif) no-repeat center center;
}


/* Make some things unselectable. Remove where selection is needed: */

.gamma-container img,
.gamma-nav span,
.gamma-buttons button,
.gamma-description-wrapper,
.gamma-description,
.gamma-description h3 {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (max-width: 750px) {

  .gamma-description {
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
  }

  .gamma-description h3 {
    font-size: 14px;
    padding: 0 5px;
  }

}

@media screen and (max-width: 500px) {

  .gamma-buttons {
    float: left;
    clear: both;
  }

}
.img-thumbnail-2,
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
  width: 100%;
}
button .navbar-toggle {
  background-color: rgb(66, 139, 202);
}
.dropdown-menu>li>a,
a,
b {
  color: #000000;
}
p.msg-center {
  font-size: 120%; 
  padding: 20px;

}
button.navbar-toggle {
  background-color: grey;
}
.icon-bar{
  background-color: white;
}
.socials li a i {
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 20px;
  font-size: 25px;
  text-align: center;
  padding: 0;
  padding-top: 15%;
  margin-top:5px;
}
.fa-facebook {
  background:#3b5998
} 
.fa-twitter {
  background:#00aced
}
.fa-instagram {
  background:#80320E;
}
.promocion {
  margin: 0;
  padding: 0;
}
.promocion-text {
  font-size: 14px;
}
.promocion-2 {
  min-width: 237px;
  margin: 0px 2px 3px 2px;
}
.panel-footer {
  border-bottom: 0;
  border-top: 0;
  padding: 1px 1px;
}
.panel-footer b {
  color:white;
}
.navbar-default {
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.53);
  border-radius:6px;
  margin-bottom:4px;
  border-bottom: rgba(0, 0, 0, 0.53) 3px solid;
}
footer {
  background-color: #EEE;
  padding: 20px;
}
.grow:hover {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.panel-head-promociones-1,
.panel-head-promociones-2,
.panel-head-promociones-3,
.panel-head-promociones-4 {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  color: white;
}
.panel-promociones-1,
.panel-promociones-2, 
.panel-promociones-3, 
.panel-promociones-4 {
  border-width: 3px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.thumbnail-nar,
.panel-head-promociones-1 {
  background-color: #f55213;
  border-color: #f55213;
}
.panel-promociones-1 {
  border-color: #f55213;
}
.icon-promociones-1 {
  color: #f55213;
}
.thumbnail-ver,
.panel-head-promociones-2 {
  background-color: #93c30a;
  border-color: #93c30a;
}
.panel-promociones-2 {
  border-color: #93c30a;
}
.icon-promociones-2 {
  color: #93c30a;
}
.thumbnail-azu,
.panel-head-promociones-3 {
  background-color: #000685;
  border-color: #000685;
}
.panel-promociones-3 {
  border-color: #000685;
}
.panel-title-promociones {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.icon-promociones-3 {
  color: #000685;
}
.thumbnail-mar,
.panel-head-promociones-4 {
  background-color: #972a00;
  border-color: #972a00;
}
.panel-promociones-4 {
  border-color: #972a00;
}
.icon-promociones-4 {
  color: #972a00;
}
.icon-promociones-especial {
  color: red;
}
.thumbnail-nar,
.thumbnail-ver,
.thumbnail-azu,
.thumbnail-mar {
  display: inline;
  margin-bottom: 0px;
  padding: 2px;
  border-radius: 4px;
}
.google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.panel-title-contacto {
  font-size: 16px;
  color: inherit;
  font-family:'Jura', 'sans-serif';
}
.preguntas {
  border: 1px solid;  
}