
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* end of reset */

a {
  text-decoration: none;
  color: #444;
}

a:hover {
  text-decoration: none;
  color: #2a4761;
}


body {
  margin: 0;
  background: #f8f8fe;
  font-family: 'Open Sans', sans-serif;
}


/* Overlay style */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #2990EA;
}

/* Overlay closing cross */
.overlay .overlay-close {
  width: 12%;
  height: 12%;
  position: absolute;
  left: 20px;
  top: 10px;
  overflow: hidden;
  border: none;
  background: url(../img/cross.png) no-repeat center center;
  text-indent: 200%;
  color: transparent;
  outline: none;
  z-index: 100;
}

/* Overlay search */
.overlay .overlay-search {

  position: absolute;
  right: 20px;
  top: 40px;
  overflow: hidden;
  border: none;
  color: #fff;
  z-index: 100;
}

.container-3{
  width: 300px;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
}

.container-3 input#search{
  width: 300px;
  height: 50px;
  background: #fff;
  border: none;
  font-size: 10pt;
  float: left;
  color: #262626;
  padding-left: 45px;
  padding-right: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #444;
}

.container-3 input#search

.container-3 input#search::-webkit-input-placeholder {
   color: #65737e;
}

.container-3 input#search:-moz-placeholder { /* Firefox 18- */
   color: #65737e;
}

.container-3 input#search::-moz-placeholder {  /* Firefox 19+ */
   color: #65737e;
}

.container-3 input#search:-ms-input-placeholder {
   color: #65737e;
}

.container-3 .icon{
  position: absolute;
  top: 50%;
  margin-left: 17px;
  margin-top: 17px;
  z-index: 1;
  color: #444;

  -webkit-transition: all .55s ease;
  -moz-transition: all .55s ease;
  -ms-transition: all .55s ease;
  -o-transition: all .55s ease;
  transition: all .55s ease;
}


@media screen and (max-width: 450px) {
  .container-3 input#search{
    width: 200px;
  }

  .overlay .overlay-search {
    width: 200px;
    top: 15px;
  }

  .overlay ul li {
    height: 17%;
  }
}

@media screen and (orientation:landscape) {
  .container-3 input#search{
    width: 200px;
    height: 40px;
  }

  .overlay .overlay-search {
    width: 200px;
    top: 10px;
    height: 40px;
  }

  .overlay ul li {
    height: 15%;
  }
}

/* Menu style */
.overlay nav {
  text-align: center;
  position: relative;
  top: 50%;
  height: 60%;
  font-size: 44px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  height: 100%;
  position: relative;
}

.overlay ul li {
  display: block;
  height: 20%;
  min-height: 54px;
}

.overlay ul li a {
  font-weight: 300;
  display: block;
  color: #fff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
  color: #000;
}

/* Effects */
.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.overlay-hugeinc nav {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.overlay-hugeinc nav ul {
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
}

@media screen and (max-width: 700px) {
  .overlay nav {
    height: 70%;
    font-size: 34px;
  }
  .overlay ul li {
    min-height: 24px;
  }
}

@media screen and (max-height: 30.5em) {
  .overlay nav {
    height: 70%;
    font-size: 34px;
  }
  .overlay ul li {
    min-height: 34px;
  }
}


#redeem {
  margin: 0 auto;
  width: 100%;
  position: fixed;
  background: #fff;
  text-align: left;
  border-bottom: 1px solid #ddd;
  height: 60px;
  padding-top: 10px;
  z-index: 1000;
  top: 0px;
}

#redeem .redeem_items {
  margin: 0 auto;
  width: 100%;
  background: #fff;
  text-align: left;
  border-bottom: 1px solid #ddd;
  height: 60px;
}

#redeem .menu {
  float: left;
  width: 36%;
  padding: 16px 0 0 10px;
  cursor: pointer;
  height: 34px;
}

#redeem .logo {
  float: left;
  width: 22%;
  text-align: center;
  height: 50px;
}

#redeem .logo img {
  width: 150px;
}

#redeem .navigation {
  float: right;
  text-align: right;
  padding: 12px 10px 0 0;
  font-size: 12px;
  width: 36%;
  height: 38px;
}

@media (max-width: 500px) {

  #redeem .menu { 
    width: 40px; 
  }

  #redeem .menu strong {
    display: none;
  }

  #redeem .logo img {
    width: 110px;
    padding-top: 7px;
  }

}


#redeem .navigation span {
  margin-left: 20px;
}



#header {
  margin: 0 auto;
  width: 100%;
  height: 660px;
}



.header-background {
  width: 100%;
  text-align: center;
  position: absolute;
  z-index: -1;
  height: 440px;
  overflow: hidden;
  top: 60px;
  background-color: #fff;
}

.header-background img {
  margin-top: -40px;
  width: 100%;
  min-width:900px;

}

.header-content {
  margin: 0 auto;
  width: 90%;
  z-index: 999;
}



.header-box {
  background-color: rgba(0,0,0,0.4);
  width: 65%;
  padding: 20px 0 40px 0;
  border-radius: 1px;
  position: absolute;
  top: 200px;
  left: 15%;
  z-index: 900;
}

.header-box-splash {
  background-color: rgba(0,0,0,0.4);
  width: 55%;
  padding: 20px 0 40px 0;
  border-radius: 1px;
  position: absolute;
  top: 200px;
  left: 23%;
  z-index: 900;
}

.header-slogan {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: 10px 0 20px 0;
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(51, 53, 55, 1);
}

.header-picker {
  margin: 0 auto;
  width: 90%;
  text-align: center;
  margin-top: 10px;
}

.logouter a {
  font-size: 12px;
  border-bottom: 1px dotted #2990EA;
  padding-bottom: 1px;
  color: #2990EA;
  text-transform: capitalize;
}

.logouter strong {
  font-weight: 300;
}

@media (max-width: 768px) {
  .logouter { display: none; }
}


.picker-splash {
  float: left;
  text-align: left;
  overflow: hidden;
  padding: 0;
  margin: 0 0px 0 50px;
  width: 39%;
  border-radius: 5px;
  border: 4px solid #2e6da4;
  padding: 0.3em 0.3em;
  background: white url(../img/formelements-select.png) no-repeat bottom right;
}

.picker-splash select {
  text-align: left;
  font-size: 16px;
  background-color: transparent;
  background-image: none;
  -webkit-appearance: none;
  border: none;
  box-shadow: none;
  padding: 0.3em 0.3em;
}


.btn {
  display: inline-block;
  padding: 6px 8px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn-primary {

  width: 20%;
  color: #fff;
  background-color: #2990ea;
  border-color: #2481d2;
  font-size: 16px;
  padding: 10px 16px;
}

.btn-primary a {

  color: #fff;
}

.btn-voucher {
  color: #fff;
  background-color: #2990EA;
}

.btn-filter {
  color: #fff;
  background-color: #2990EA;
  margin-right:10px;
}

.form-filter {
  right: 0px;
}

.btn-whatsapp-span {
  float: left;
  display: none; 
  margin-right: 20px;
}
.btn-whatsapp {
   background-color: #60b82d;
   font-size: 11px;
   color: #fff;
}

.btn-more {
  width: 50%;
  color: #fff;
  background-color: #2990EA;
}

div.picker {
    float: left;
    text-align: left;
    overflow:hidden;
    padding:0;
    margin:0 0px 0 10px;
    width:33%;
    border-radius:5px;
    border: 4px solid #2e6da4;
    padding:0.3em 0.3em;
    background: white url(../img/formelements-select.png) no-repeat bottom right;
}

div.picker select {
    text-align: left;
    font-size:16px;
    background-color:transparent;
    background-image:none;
    -webkit-appearance: none;
    border:none;
    box-shadow:none;
    padding:0.3em 0.3em;
    width: 100%;
}

.header-promo {
  margin: 0 auto;
  text-align: center;
  width: 90%;
  overflow: hidden;
  padding: 30px 0;
  margin-top: 430px;
  z-index: 990;
  position: absolute;
}

.header-promo-box {
  margin: 0 auto;
  max-width: 900px;
}

.header-promo li {
  float: left;
  width: 33.333%;
  text-align: center;
}


.promo-item {
  margin: 0 auto;
  width: 80%;
  text-align: center;
}


.promo-icon {
  margin: 0 auto;
  background: #7ec440;
  padding-top: 15px;
  font-size: 40px;
  color: #fff;
  width: 70px;
  height: 55px;
  border-radius: 60px;
  border: 5px solid #fff;
}

.promo-title {
  margin-top: 10px;
  font-size: 20px;
}

.promo-txt {
  margin-top: 10px;
  font-size: 12px;
  line-height: 15px;
}

#sub-header {
  clear: both;
  margin: 0 auto;
  width: 100%;
  font-size: 1.95em;
  line-height: 1.2em;
  font-family: "Helvetica Neue","Helvetica",Arial,sans-serif;
  font-weight: 300;
  color: #444;
  padding: 20px 0;
  text-align: center;
  margin: 20px 0 20px 0;
}

#sub-header p {
  max-width: 800px;
  margin: 0 auto;

}
#sub-header strong {
  font-weight: 600;
}
#content {
  margin: 0 auto;
  max-width:960px;
}

.offers {
  margin: 0 auto;
  width: 100%;
  max-width: 890px;
  overflow: hidden;
}

.offers ul {
  overflow: hidden;
}

.offers li {
  float: left;
  width: 31%;
  margin: 0 1% 20px 1%;
  display: block;
}

.offers .each {
  margin: 0px ;
  float: left;
}

.each_img {
  width: 100%;
  max-height: 150px;
  background: gray;
  overflow: hidden;
  margin-bottom: 0px;
}

.each_img img {
  width: 130%;
  background: gray;
}

.each_title {
  padding: 15px 20px 15px 10px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #2990EA;
  opacity: .8;
}

.each_des {
  padding: 15px 20px 15px 10px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #444;
  border: 1px solid #ddd;
  border-top: 0;
}

.offers .each  li {
box-shadow: none;
  width: 89.1%;
  float: left;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  padding: 5%;
  margin: 0;
  border: 1px solid #ddd;
  border-top: 0;
}
.each_listing li:hover {
  background: #7ec440;
  padding-left: 0 20px;
  color: #fff;
  border-radius: 0px;

}
.each_listing li:hover a {
  background: #7ec440;
  padding-left: 0 20px;
  color: #fff;
  border-radius: 0px;

}
.each_listing a {
  color: #444;
  font-size: 13px;
  line-height: 22px;
  padding: 5px;

}

.each_listing p {
  color: #ccc;
  margin-left: 20px;
}

.each_listing li:hover p {
  color: #fff;
  margin-left: 20px;
}

.each_listing strong {
  float: right;
  font-weight: 700;
  color: #0094c1;
  font-size: 11px;
  line-height: 25px;
}

.view_more {
  clear: both;   text-align: left; padding: 10px 0 0 0; width: 100%; display: none;
}


.pre-footer {
  clear: both;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  overflow: hidden;
}

.pre-footer-box {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 1.95em;
  line-height: 1.2em;
  font-family: "Helvetica Neue","Helvetica",Arial,sans-serif;
  font-weight: 300;
  color: #444;
  padding: 20px 0;
  text-align: center;
}

.pre-footer-box p {
  margin: 20px 0;

}

.pre-footer-promo {
  margin: 0 auto;
  max-width: 800px;
  overflow: hidden;
  margin-bottom: 40px;
  margin-top: 40px;
}

.pre-footer-promo li {
  float: left;
  width: 33.333%;
  text-align: center;
}


.pre-footer-promo .promo-item {
  margin: 0 auto;
  width: 90%;
  text-align: center;
}

.pre-footer-promo p {
  margin: 0;
  padding: 0;
}

.small {

  font-size: 18px;
  line-height: 26px;
}

.medium {
  font-size: 22px;
}

.pre-footer-promo .promo-icon {
  margin: 0 auto;
  background: orange;
  padding-top: 15px;
  font-size: 40px;
  color: #fff;
  width: 70px;
  height: 55px;
  border-radius: 20px;
  border: 5px solid #fff;
}

.pre-footer-promo .promo-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.pre-footer-promo .promo-txt {
  margin-top: 5px;
  font-size: 14px;
  line-height: 19px;
}


#footer {
  clear: both;
  margin: 0 auto;
  width: 100%;
  background: #2990EA;
  border-top: 1px solid #ddd;
  overflow: hidden;
}

.footer-box {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}



#footer li {
  float: left;
  width: 33%;
  color: #fff;
}

#footer .each {
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 26px;
}

#footer strong {
  color: #fff;
  padding-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 550px) {
  #footer li {
    float: left;
    width: 100%;
    color: #fff;
  }

  #footer .each { padding: 10px; margin: 10px;}
}

@media (min-width: 551px) and (max-width: 768px) {
  #footer li {
    float: left;
    width: 49%;
    color: #fff;
  }
}


#footer a {
  color: #fff;
}

#footer .legales {
  clear: both;
  border-top: 1px solid #63b0f3;
  padding: 20px 0;
  margin-bottom: 40px;
}

#footer .legales strong {
  color: #fff;
  padding-bottom: 8px;
    font-size: 16px;
}












.share {
  margin: 5% 0 0 0;
  overflow: hidden;
}





.content-background {
  padding-top: 70px;
  position: absolute;
  z-index: -1;
  height: 100%;;
  max-height: 500px;
  overflow: hidden;
  width: 100%;
}

.content-background img {
  width: 100%;
}

.content-wrapper {


}

.view-item-head {
  margin: 0 auto;
  width: 90%;
  display:block;
  max-width: 940px;
  padding: 2% 0 1% 4%;
  padding-top: 90px;
}

.listing-head {
  margin: 0 auto;
  width: 90%;
  display:block;
  max-width: 940px;
  padding: 2% 0;
  padding-top: 90px;
}

.listing-head h2 {
  font-size: 34px;
  color: #fff;
  font-weight: 300;
  margin: 2% 0 0 0;
}

.listing-head h2 strong {
  padding: 1% 2%;
  background: #7ec440;
}

.listing-head h2 a {
  color: #fff;
}

.content-head h2 {
  font-size: 34px;
  color: #7ec440;
  font-weight: 300;
  margin: 1% 0 20px 0;

}

.listing-head p {
  margin-top: 30px;
  font-size: 26px;
  line-height: 32px;
  color: #fff;
  font-weight: 300;
  padding: 2%;
  background: #7ec440;
  width: 63%;
}

@media screen and (max-width: 768px) {
  .listing-head p { display: none; }
  .content-head p { display: none; }
}

.content-head p {
  font-size: 18px;
  line-height: 22px;
  color: #444;
  font-weight: 300;
  margin: 0 0 20px 0;
}

#content-main {
  clear: both;
  padding-left: 15px;
  padding-right: 15px;
  clear: both;
  margin: 0 auto;
  width: 90%;
  display:block;
  max-width: 992px;
  min-height: 500px;
  overflow: hidden;
  z-index: 1;
  background: #fff;
}



#sub-headernav{
  padding: 10px 0 10px 0;
  margin: 0 auto;
  max-width: 940px;
  clear:both;
  overflow: hidden;
  clear: both;
  padding: 1.5% 5%;
  clear: both;
  margin: 0 auto;
  width: 100%;
  display:block;
  overflow: hidden;
  z-index: 1;
}




.breadcrumb_nav {
  margin: 0 auto;
  float: left;
  overflow: hidden;
}

.breadcrumb {
  list-style:none;
  text-align: left;
  font-size: 1.4em;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  text-shadow: 1px 1px #000;
}


.breadcrumb>li {
  display:inline-block;
}

.breadcrumb>li a {
  color: #fff;
}

.breadcrumb>li+li:before {
  padding:0 5px;
  color:#fff;
  content:"/\00a0";
}

.breadcrumb>.active {
  color:#fff;
}




.column-left {
  float: left;
  width: 24%;
  margin-top: 1.5%;
}

.column-right {
  float: right;
  width: 75%;
  margin-top: 1.5%;
}

.listing-title {
  width: 100%;
  margin: 0 0 20px 0;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  padding: 0 0 20px 0;
}

.listing-results {
  float: left;
  font-weight: 300;
  font-size: 1em;
}

.ordenar {
  float: right;
  font-size: .8em;
  color: #666;
}


.filtersexp {
  width: 80%;
  line-height: 1.8;
  border: 1px solid #ddd;
  margin-bottom: 8.5%;
  padding:5%;
  font-size: 0.8em;
  color: #666;
  font-family: 'Open Sans', sans-serif;
}

.filtersexp h2 {
  font-weight: 300;
  font-size: 1.2em;
  padding-bottom: 5%;
  color: #7f7f7f;
}

.filtersexp h3 {
  padding-bottom: 3%;
}

.filtersexp .selectable_category {
  font-size: .9em;
  margin: 0px 0 20px 0px;
}





.item-list {
  overflow:hidden;
  margin-bottom: 30px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 0 0 20px 0;
}

.imagen {
  width: 20%;
  overflow: hidden;
  float: left;
  margin: 0;
}

.imagen img {
  width: 100%;
}

.item_content {
  float: left;
  width: 54%;
  padding: 0 3%;
  color:#4a4a4a;
}

.item-list h2 {

  width: 100%;
  font-weight: 600;
  font-size: 1.3em;
  color: #3a3a32;
  text-align: left;
}

.item-list h2 a {
  color: #444;
}



.item-list-text {
  width: 95%;
  line-height: 1.6em;
  padding: 1% 0 10px 0;
  font-size: 0.75em;
  color: #7D7873;
  display: none;
}

.item-list-reviews {
  color: #3a3a32;
  width: 100%;
  float: left;
  padding: 2.5% 0 2.5% 0;
  margin-bottom: 10px;
  overflow: hidden;
}

.item-list-reviews p {
  color: #3a3a32;
  font-size: 1em;
  font-weight: 600;
  color: #2990EA;
   overflow: hidden;
}

.item-list-reviews .toggleit {
  color: #3a3a32;
  font-size: .6em;
  font-weight: 300;
  color: #999;
  cursor: pointer;
}

.mara {
  width: 93%;
  margin: 10px 0;
  background: #eee;

}

.mara p {
  width: 95%;
  padding: 2%;
  font-size: .8em;
  line-height: 1.4em;
  font-weight: 400;
  color: #444;
}


a.tooltips {
  position: relative;
  display: inline;
}
a.tooltips span {
  position: absolute;
  width:400px;
  color: #FFFFFF;
  background: #000000;
  height: 30px;
  line-height: 30px;
  text-align: center;
  visibility: hidden;
  border-radius: 6px;
}
a.tooltips span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #000000;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
a:hover.tooltips span {
  visibility: visible;
  opacity: 0.8;
  bottom: 30px;
  left: 50%;
  margin-left: -76px;
  z-index: 999;
}


.item-list-loc {
  color: #999;
  font-size: .65em;
}

.item-list-loc strong {
  font-weight: 600;
}

.item-list-user {
  width: 90%;
  color: #999;
  font-size: .65em;
  margin: 0 0 0 5%;
}

.item-list-user img {
  width: 15px;
}

.item-list-userloc {
  width: 90%;
}

.item-list-loc1 {
  float: left;
  width: 65%;
  font-size: .8em;
  margin: 2.5% 0 0 0%;
}

.item-list-loc1 strong {
  font-weight: bold;
}

.item-list-user1 {
  float: left;
  width: 30%;
  font-size: .8em;
  margin: 1.5% 0.5% 0 0;
}

.item-list-user1 img {
  width: 15px;
}

.item_price {
  float: right;
  width: 20%;
  text-align: left;
}

.item-list-price {
  font-weight: 300;
  font-size: 1.5em;
  color: #444;
  margin: 0 0 0 0;

  /* z-index: 998; */
}
.item-list-price strong {
  font-weight: 400;
  padding: 1% 7%;

}
.item-list-price strike {
  font-weight: 300;
  font-size: 0.7em;
  color: #999;
  line-height: 2em;
}

.item-list-button {
  clear: both;
  width: 70%;
  background-color: #2990ea;
  margin: 10px 0 10px 0;
  height: 6%;
  border-radius: 3px;
  border: 0px none transparent;
}

.item-list-button p {
  text-align: center;
  font-size: 12px;
  color: #fff;
  padding: 7%;
}


button { cursor: pointer; }


#content-view {
  margin: 0 auto;
  width: 90%;
  max-width: 900px;
}



.view-header {
  width: 100%;
  overflow: hidden;
}


#content-view h1 {

  width: 100%;
  padding: 0% 0 2.5% 0;
  font-size: 44px;
    line-height: 50px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
  color: #7ec440;
}

@media (max-width: 450px) {
  #content-view h1 {
    font-size: 24px;
    line-height: 30px;
  }
}


.view-image {
  clear: both;
  width: 100%;
  overflow: hidden;
  margin: 40px 0 20px 0;
}

.view-image img {
  width: 31%;
  float: left;
  margin: 0 2.2% 2% 0;
}

.view-middle {
  width: 55%;
  float: left;
  overflow: hidden;
  background: #fff;
  padding: 4%;
  margin-top: 5px;
}

.wraper-middle {
  padding: 0%;
  overflow: hidden;
}


.middle-top-foto {
  margin-bottom: 3%;
}

.middle-top-foto img {
  width: 100%;
}

.view-text {
  width: 90%;
  line-height: 1.5em;
  padding: 1.5% 0 3% 0;
}

#content-view .item-list-loc {
  color: #444;
  font-size: .85em;
  margin: 0;
}

#content-view .item-list-loc strong {
  font-weight: 600;
}

#content-view .item-list-user {
  color: #444;
  font-size: .85em;
  margin: 0 0 0 5%;
}

.hide-view-item {
  display: none;
}


.view-right {
  float: right;
  width: 35%;
  max-width:300px;
  text-align: left;
  overflow: hidden;
}


.view-price {
  width: 94%;
  max-width:300px;
  text-align: left;
  overflow: hidden;
  background: #fff;
  margin: 30px 0 40px 0;
  border: 8px solid #d9eaf8;
}


.view-price  h2 {
  text-transform: none;
  line-height: 1.2;
  margin: 10px;
  color: #002C45;
  font-size: 20px;
  font-weight: 600;

  margin: 5% 0 2% 5%;
}

.productcode {
  width: 100%;
  font-size: .8em;
  margin: 2% 0 3% 5%;
  color: #666;
}

.buy-as-gift {
  clear: both;
  border-top: 1px solid #ddd;
  padding: 5% 0 0 0;
  width: 80%;
  margin: 5% 5% 0 5%;
}

.view-buttons .small {
  clear: both;
  font-size: .65em;
  color: #999;
  margin-left: 3%;
  line-height: 1.6em;
}

.item-payments {
  clear: both;
  border-top: 1px solid #ddd;
  padding: 5%;
  width: 80%;
  margin: 5% 5% 0 5%;
}

.item-payments img {
  width: 100%;
}

.price-items {
  width: 100%;
  color: #999;
  font-size: .9em;
  margin: 0 0 0 5%;
}

.price-items li {
  list-style: square;
  padding: 5px 0 0 0;
  margin-left: 20px;
}

.price-date {
  width: 100%;
  color: #999;
  font-size: .9em;
  margin: 2% 0 0 5%;
}

.price-tip {
  color: #999;
  font-size: .8em;
  margin: 5%;
}

.view-list-price {
  font-weight: bold;
  font-size: 1.5em;
  color: #1C75BC;
  margin: 5%;
}

.view-list-price .original {
  font-weight: 300;
  font-size: .8em;
  color: #999;

  margin: 0% 5% 0% 0%;
}

.view-list-price .current {
  font-weight: 600;
  font-size: 1.5em;
  color: #000;
  /* z-index: 998; */
}

.view-buttons {
  clear: both;
  width: 100%;
  overflow: hidden;
  margin-top: 8%;
}

.view-buttons input{
  width: 73%;
  height: 30px;
  background: #fafafa;
  border: 1px solid #ddd;
  font-size: 10pt;
  float: left;
  color: #262626;
  margin: 2% 2% 3% 5%;
  padding-left: 15px;
  padding-right: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #444;

}


.buy-button {
  width: 80%;
  float: left;
  background-color: #2990EA;
  margin: 0 5% 5% 5%;
  border-radius: 7px;
  overflow: hidden;
  border: 4px solid #2990EA;
}

.buy-button p {
  text-align: center;
  font-size: .95em;
  color: #fff;
  padding: 6% 0%;
  text-transform: uppercase;
}

.gift-button {
  width: 60%;
  float: left;
  background-color: #7ec440;
  margin: 0px 5% 5% 0%;
  border-radius: 7px;
  overflow: hidden;
  border: 4px solid #7ec440;
}

.gift-button p {
  text-align: center;
  font-size: 0.9em;
  color: #fff;
  padding: 6% 17%;
}

/* Css tabs */

.contenedor{
  width: 100%;
  float: left;
  color: #4a4a4a;
  margin:3% 0 10% 0;
}


#pestanas {
  float: top;
  font-size: 13px;
  font-weight: 400;
  width: 100%;
  overflow: hidden;
}

#pestanas ul{
  margin-left: 0px;
}

#pestanas li{
  width: 31%;
  float: left;
  margin: 0 2.2% 15px 0;
  list-style-type: none;
  float: left;
  text-align: center;
  padding: 15px 0px 13px 0px;
  text-transform: uppercase;
  background: #2990EA;
}

#pestanas li:hover {
  background: #2990EA;
  color: #fff;

}

#pestanas a:link{
  text-decoration: none;
  color: #fff;
}

#contenidopestanas{
  clear: both;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

#contenidopestanas p {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: .9em;
  line-height: 1.6em;
  margin: 0% 2% 3% 0;
}
#contenidopestanas ul {
  padding: 0.5% 0% 2% 0%;
}

#contenidopestanas li {
  list-style: disc;
  font-family: 'Open Sans', sans-serif;
  color: #666;
  font-size: .9em;
  line-height: 1.6em;
  padding: 0% 2% 0% 0px;
  margin-left: 35px;
}

#contenidopestanas strong {
  font-weight:bold;

}

#contenidopestanas .titulo_exp {
  font-weight:300;
  font-size:1.6em;
  padding: 0% 1% 1% 0;
}

#contenidopestanas h3 {
  padding: 30px 2% 1% 0;
  font-weight: 300;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
}







/* AYUDA */

#ayuda_interior {
  font-size: 14px;
  line-height: 19px;
  padding: 0 20px;
}

#ayuda_interior h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 19px;
  margin: 20px 0;
}

#ayuda_interior h3 {
  margin: 20px 0 5px 0;
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
}

#ayuda_interior p {
  margin: 10px 0 5px 20px;
}

#ayuda_interior strong {
  font-weight: 600;
}

#ayuda_interior ol, #ayuda_interior ul {
  margin: 10px 0 5px 20px;
}

#ayuda_interior li, #ayuda_interior li {
  margin: 15px 0 15px 20px;  
  list-style-type: disc;
}


ul.ayuda_faq {
  border: 1px solid #ddd;

}
ul.ayuda_faq li {
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  padding: 20px 10px;
}

ul.ayuda_faq li a {
  color: #2990EA;
}

ul.ayuda_faq li:last-child {
  border-bottom: 0px solid #ddd;
}

.hide_options_menu {
display: none;
float: left;
text-align: left;
overflow:hidden;
padding:0;
margin:0 0px 20px 10px;
width:95%;
padding: 0;
background: white url(../img/formelements-select.png) no-repeat bottom right;
}
.hide_options_menu select {
  width: 100%;text-align: left;
    font-size:16px;
    background-color:transparent;
    background-image:none;
    -webkit-appearance: none;
    border:1px solid #ddd;
    box-shadow:none;
    padding:0.5em 0.3em;
}






@media (max-width: 768px) {



  .item-list .imagen {
   float: none;
   width: 100%;
  }

  .item_content {
    width: 100%;
  }

  .item_content h2 {
    margin: 20px 0 0 0;
  }

  .item_price {
    margin-top: 20px;
    clear: both;
    float: left;
      width: 100%;
      text-align: left;
    }

    #sub-header {
      margin: 0 auto;
      width: 90%;
    }

    .item-list-price strike {
      display: none;
    }

  .item-list-button {
    width: 100%;
  }

  .column-left {
    display:none;
  }

  .hide_options_menu {
    display: block;
  }

  .column-right {
    width: 98%;
  }

  .listing-head h2 {
    width: 90%;
    font-size: 24px;
  }
  .listing-head p {
    font-size: 24px;
    line-height: 30px;
    width: 90%;
  }

  .listing-results {
    float: left;
    width: 100%;
  }
  .ordenar {
    margin: 20px 0 0 0;
    float: left;
    width: 100%;
    font-size: 15px;
  }


  .header-box {
    width: 90%;
    top: 110px;
    left: 5%;
  }
  .inside-box {
    width: 90%;
  }

  .header-slogan {
    line-height: 40px;
    padding: 10px 0 10px 0;
  }

  .picker {
    padding: 0.6em 0.6em;
    margin: 20px 0px 20px 20px;
    clear: both;
    float: left;
    width: 190px;
    min-width: 100%;
    border: 0;
  }

  .inside-box .btn {
    clear: both;
    width: 100%;
    margin: 5% 0 0 4%;
  }

}



}/*/mediaquery*/




@media screen and (max-width: 768px) {
  .offers li {
    width: 47%;
    display: block;
    overflow: hidden;
  }





  .view-middle {
    width: 95%;
  }

  .view-right {
    width: 95%;
  }
  .view-price {
    float: left;
    width: 97%;
    max-width: 700px;
    overflow: hidden;
    background: #fff;
    margin-top: 10px;
  }






  .header-background img {
    margin: -20px 0 0 -150px;
    width: 100%;
    min-width:900px;

  }


  .hide_options_menu {
    display: block;
  }
}/*/mediaquery*/

@media screen and (max-width: 668px) {

  .logouter {
    display: none;
  }

  .offers {
    width: 95%;
  }

  .offers li {
    display: block;
    width: 97%;
  }

  #header {
    height: 620px;
  }

  .header-promo .promo-txt {
    display: none;
  }

  .each_img {
    max-height: 300px;
    overflow: hidden;
  }
  .each_img img {
    width: 100%;
  }

  .hide_options_menu {
    display: block;
  }


  .breadcrumb {
    list-style:none;
    text-align: left;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    /* text-shadow: 0 0 4px #000; */
  }

.promo-title {
  font-size: 16px;
}

  .view-middle {
    width: 95%;
    float: left;
    overflow: hidden;
    background: #fff;
    padding: 4%;
    margin-top: 5px;
  }

  .hide-view-item {
    display: block;
    margin: 5% 5% 0 0;
    overflow: hidden;
    border: 1px solid #ddd;
  }

  .hide-view-item  .view-price {
    float: left;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    background: #fff;
    margin-top: 10px;
    border: 0;
    padding: 0;
  }


  .btn-whatsapp-span {
    display: block;
  }

  .middle-top-foto img {
    width: 97%;
  }

  .view-right {
    float: left;
    width: 97%;
    max-width: 700px;
    overflow: hidden;
    background: #fff;
    margin-top: 10px;
  }


  .view-price {
    float: left;
    width: 97%;
    max-width: 700px;
    overflow: hidden;
    background: #fff;
    margin-top: 10px;
  }



}/*/mediaquery*/


.regalos-empresariales {
  clear: both;
  margin: 0 auto;
  width: 100%;
  font-size: 1.6em;
  border-top: 1px solid #ddd;
  font-family: "Helvetica Neue","Helvetica",Arial,sans-serif;
  font-weight: 300;
  padding: 25px 0;
  text-align: center;
  background: #f9f9f9;
}

.btn-empresariales {

  color: #fff;
  background-color: #2990EA;
  font-size: 16px;
  padding: 8px 16px;
  margin-top: 20px;
}

.regalos-empresariales p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.3em;
}

.calificaciones {
  clear:both;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px dotted #ddd;
}


.comentarios-recuadro  {
  clear: both;
  list-style: none;
  margin: 20px 0 0 0;
  border-bottom: 1px solid #ddd;
  padding: 0px 0 20px 0;
}

.comentarios-gente ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.comentario-avatar {
 float: left;
 background: #87cb8c;
 border-radius: 60px;
 width: 20px;
 height: 20px;
 padding: 15px;
 font-size: 19px;
 margin: 0 10px 10px 0;
 color: #fff;
 text-align: center;
}

.comentario-name {
  padding: 5px 0 5px 40px;
  font-size: 19px;
}

.comentario-txt {
  clear:both;
  font-size: 13px;
  line-height: 18px;

  overflow: hidden;
}

.comentario-review {
  color: #2990EA;
  margin: 0px 0 10px 40px;
  overflow: hidden;
}

.comentarios-fecha {
  margin: 10px 0 0 0;
  color: #999;
  font-size: 12px;
}

.ver-mas-comentarios {
  margin: 20px 0;
  font-size: 14px;
}

.ver-mas-comentarios a {
  color: #2990EA;
}
.corpo {
  margin-top: 20px;
  font-size: 18px;
}

.corpo a {
  color: #2990EA;
  border-bottom: 1px dashed #2990EA;
  padding-bottom: 3px;
}

.alucinante {
  font-family: 'Open Sans', helvetica, sans-serif;
  border-top: 1px dotted #ddd;
  margin-top: 40px;
  padding-top: 40px;
  font-size: 40px;
  font-weight: 300;
  color: #444;
}

.extras {
  margin-top: 40px;
}

.extras-button {
  width: 80%;
  background-color: #f9f9f9;
  margin: 0 5% 5% 5%;
  border-radius: 2px;
  overflow: hidden;
  border: 2px solid #ccc;
}

.extras-button p {
  text-align: left;
  font-size: .95em;
  color: #999;
  padding: 6% 10%;
}

.extras-text {
  margin-top: 40px;
  width: 80%;
  margin: 0 5% 5% 5%;
  font-size: .75em;
  line-height: 1.4em;
  color: #999;
}




/* Register */


.register-right {
  float:left;
  font-size: 14px;
  line-height: 19px;
  padding: 0 20px;
  width: 50%;
}

.register-right h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 19px;
  margin: 20px 0;
  color: #545454;
}

.register-right small {
  font-size: .85em;
  line-height: 12px;
  margin: 20px 0;
  color: #545454;
}

.register-right input[type="text"],
.register-right input[type="password"] {
  width: 100%;
  height: 30px;
  background: #fafafa;
  border: 1px solid #ddd;
  font-size: 10pt;
  /* float: left; */
  color: #262626;
  margin: 2% 2% 3% 5%;
  padding-left: 15px;
  padding-right: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #444;

}
.register-checkbox {
  width: 40%;
  height: 30px;
  float: left;
  padding: 2% 0 0 3%;
  color: #999;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.register-checkbox2 {
  width: 100%;
  /*
    height: 30px;
    float: left;
  */
  padding: 2% 0 4% 1%;
  color: #999;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: .85em;
}

.register-right input[type="checkbox"]{
  float: left;
  margin: 2% 2% 3% 5%;
  padding-left: 15px;
  padding-right: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;

}


.register-right select {
    width: 100%;
    background: #fafafa;
    border: 1px solid #ddd;
    font-size: 10pt;
    float: left;
    color: #262626;
    margin: 2% 2% 3% 5%;
    padding-left: 15px;
    padding-right: 7px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #999;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    height: 32px;
}


.register-right input[type="date"]{
    background: #fafafa;
    border: 1px solid #ddd;
    font-size: 10pt;
    float: left;
    margin: 2% 2% 6% 5%;
    padding-left: 15px;
    padding-right: 7px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #999;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    height: 32px;
    width: 48%;

}



/* Ends Register */


/* LOGIN */

.login-wrapper {
  display: none;
}

@media (max-width: 768px) {

  .login-wrapper {
    display: block;
  }

}

.access-left {
  float:left;
  width: 75%;
  overflow: hidden;
  margin-top: 1%;
  padding: 0 20px;
  /* border-right: 1px solid #ddd; */
}

.access-left h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 19px;
  margin: 20px 0;
  color: #545454;
}

.access-left p {
  font-size: 16px;
  padding-top: 12px;
}

.access-left a {
  width: 80%;
  font-size: 0.85em;
  color: #2990EA;
}

.access-left input {
  width: 90%;
  height: 30px;
  background: #fafafa;
  border: 1px solid #ddd;
  font-size: 10pt;
  float: left;
  color: #262626;
  /*margin: 2% 2% 7% 1%;*/
  margin: 10px 10px 10px 0px;
  padding-left: 15px;
  padding-right: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #444;

}

.filter-search-results input {
  width: 73%;
  height: 30px;
  background: #fafafa;
  border: 1px solid #ddd;
  font-size: 10pt;
  float: left;
  color: #262626;
  margin: 2% 2% 7% 1%;
  padding-left: 15px;
  padding-right: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #444;
}

.filter-search-results td{
  vertical-align: top;
}

.filter-labels{
  padding-top: 10px;
  padding-right: 2px;
}

.view-login h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 19px;
  margin: 20px 0;
  color: #545454;
}

.view-login p {
  font-size: 16px;
  padding-top: 12px;
}

.view-login a {
  width: 80%;
  font-size: 0.85em;
  color: #2990EA;
}

.view-login  input {
  width: 73%;
  height: 30px;
  background: #fafafa;
  border: 1px solid #ddd;
  font-size: 10pt;
  float: left;
  color: #262626;
  margin: 2% 2% 7% 1%;
  padding-left: 15px;
  padding-right: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #444;

}

.login-button {
  /*width: 83%;*/
  display: inline-block;
  margin: 3% 0% 3% 0%;
  border-radius: 7px;
  overflow: hidden;
  background-color:#2990EA;
  border: 4px solid #2990EA;

}

.login-button p {
  text-align: center;
  font-size: 1.1em;
  color: #fff;
  /*padding: 8% 0%;*/
  padding: 10px;
  text-transform: uppercase;
}


.access-right {
  float:left;
  font-size: 14px;
  line-height: 19px;
  padding: 0 20px;
}

.access-right h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 19px;
  margin: 20px 0;
  color: #545454;
}

.access-right p {
  font-size: 16px;
  color: #545454;
  padding-top:4%;
}


.access-button {
  /*width: 70%;*/
  display: inline-block;
  margin: 3% 0% 3% 0%;
  border-radius: 7px;
  overflow: hidden;
  /*
  background-color:#7ec440;
  border: 4px solid #7ec440;
  */
  background-color: #2990ea;
  border: 1px solid #2990ea;
}

.access-button p {
  text-align: center;
  font-size: 1.1em;
  color: #fff;
  /*padding: 6% 0%;*/
  padding: 10px 20px 10px 20px;
  text-transform: uppercase;
}

.login-redes {
  margin: 4% 0% 4% 0;
  height: 40px;
}

.login-redes img {
  width: 40px;
  height: 40px;
  padding: 5% 1% 2% 1%;
}

/* End LOGIN */


/* view4 */

.ask-button {
  width: 83%;
  float: left;
  background-color: #ff0000;
  margin: 5% 5% 5% 5%;
  border-radius: 7px;
  overflow: hidden;
  border: 0px none transparent;
}

.ask-button p {
  text-align: center;
  font-size: .95em;
  color: #fff;
  padding: 6% 0%;
  text-transform: uppercase;
}

/* ends view4 */






/* Estilo cantidad de paginas que estoy viendo, la que estÃ¡ debajo de la lista de Search Results*/
.resultados-busqueda-footer {
  float: left;
  margin: 10px;
}

/* Google Map */
.gmap {
  box-shadow: 7px 7px 5px #888888;
  width: 95%; /* Para dejarle lugar a la sombra */
}

/* Collapsable components */
.collapsable {
  display: none;
}

/* Bootstrap Pagination */

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0px 0;
  border-radius: 4px;
  float: right;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 3;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #dddddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.clearfix:before,
.clearfix:after,
/*.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,*/
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
/*.container:after,
.container-fluid:after,*/
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}

/*
.fb_iframe_widget,
*/
.fb-like { display: none !important; }

/* Customer Account */

/* personalInfo */
.user-row {
    margin-bottom: 14px;
}

.user-row:last-child {
    margin-bottom: 0;
}

.dropdown-user {
    margin: 13px 0;
    padding: 5px;
    height: 100%;
}

.dropdown-user:hover {
    cursor: pointer;
}

.table-user-information > tbody > tr {
    border-top: 1px solid rgb(221, 221, 221);
}

.table-user-information > tbody > tr:first-child {
    border-top: 0;
}


.table-user-information > tbody > tr > td {
    border-top: 0;
}
.toppad {
    margin-top:20px;
}


/* Bootstrap Table */

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table .table {
  background-color: #ffffff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

.error .small { color: red; }

input[type="button"]:disabled,
button:disabled {
    background-color: gray;
    border-color: gray;
    cursor: not-allowed;
}

@media (max-width: 450px) {
  #lista li a {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .hide-768 {
    display: none;
  }
}

@media (max-width: 400px) {
  .hide-400 {
    display: none;
  }
}

.content-header {
  padding-top: 70px;
  height: 100%;
  max-height: 500px;
  overflow: hidden;
  margin: 0 auto;
  width: 90%;
  display:block;
  max-width: 900px;
  overflow: hidden;
  z-index: 1;
  background: #fff;
}

.content-header img {
  width: 100%;
}

.content-left {
  float: left;
  width: 65%;
  font-size: 14px;
}
.content-right {
  float: right;
  width: 32%;
}

.content-right img { width: 100%; }

@media (max-width: 768px) {
  .content-left { width: 100%; }
  .content-right { display: none; }
}

.content-left .btn-primary {
  width: auto;
}

input.error {
  border: 1px solid red;
}
label.error {
  color: red;
}

button.btn-primary:hover {
  color: #fff;
  background-color: #2481d2 !important;
  border-color: #2073bb;
  font-size: 16px;
  padding: 10px 16px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

@media screen and (max-width: 450px) {
  .register-checkbox {
    width: 100%;
  }

  .access-button p {
    font-size: 1em;
  }
}

@media screen and (max-width: 668px) {
  .fb-share-button {
    transform: scale(1.5);
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform-origin: top left;
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -webkit-transform-origin: top left;
  }
}

.activate-voucher-btn {
  width: 100px;
  height: 30px;
  font-family: 'Open Sans', sans-serif;
}

@media screen and (max-width: 450px) {
  .activate-voucher-btn {
    height: 40px;
    
  }

  .activate-voucher-btn p {
    font-size: 120%;
  }
}

.label-hand-cursor {
  cursor: pointer;
}


















.row {
/*
  margin-left: -15px;
  margin-right: -15px;
  */
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
/*  
  padding-left: 15px;
  padding-right: 15px;
*/  
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}


.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.control-label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    line-height: 28px;
    height: 34px;
}

.flip-content-delivery-method-selection {
  font-size: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding-bottom: 50px !important;
}

.flip-experience-delivery-method-selection {
}

.flip-delivery-method-option {
    padding: 7px 0 7px 0;
}

.flip-delivery-method-option img {
  width: 100%;
  max-width: 130px;
}

@media (min-width: 992px) {
  .flip-delivery-method-option {
    text-align: center;
  }
  .flip-delivery-method-option img {
    padding: 10px 0 10px 0;
  }
}

.flip-content-delivery-method-selection .flip-order {
  width: 330px;
}

.flip-content-delivery-method-selection .flip-order h3 {
  font-size: 18px;
  height: 25px;
}

.flip-content-delivery-method-selection .flip-order img {
  float: left;
  width: 130px;
  height: 87px;
}

.flip-content-delivery-method-selection .flip-order-quantity {
  float: left;
  width: 170px;
  padding: 5px 15px 5px 15px;
}

.flip-content-delivery-method-selection .flip-order-quantity label {
  float: left;
  padding: 0 10px 0 0;
}

.flip-content-delivery-method-selection .flip-order-quantity select {
  float: left;
  width: 80px;
}

.flip-content-delivery-method-selection .flip-order-total-amount {
  float: left;
  width: 170px;
  padding: 5px 15px 5px 15px;
  font-size: 18px;
  text-align: center;
}
