.slider {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.slider.current-5 .slide {
  transform: translateX(-500%);
  -webkit-transform: translateX(-500%);
  -moz-transform: translateX(-500%);
  -o-transform: translateX(-500%);
  -ms-transform: translateX(-500%);
}
.slider.current-5 .nav .current-5 {
  background: white;
}
.slider.current-4 .slide {
  transform: translateX(-400%);
  -webkit-transform: translateX(-400%);
  -moz-transform: translateX(-400%);
  -o-transform: translateX(-400%);
  -ms-transform: translateX(-400%);
}
.slider.current-4 .nav .current-4 {
  background: white;
}
.slider.current-3 .slide {
  transform: translateX(-300%);
  -webkit-transform: translateX(-300%);
  -moz-transform: translateX(-300%);
  -o-transform: translateX(-300%);
  -ms-transform: translateX(-300%);
}
.slider.current-3 .nav .current-3 {
  background: white;
}
.slider.current-2 .slide {
  transform: translateX(-200%);
  -webkit-transform: translateX(-200%);
  -moz-transform: translateX(-200%);
  -o-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
}
.slider.current-2 .nav .current-2 {
  background: white;
}
.slider.current-1 .slide {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
}
.slider.current-1 .nav .current-1 {
  background: white;
}
.slider.current-0 .slide {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -o-transform: translateX(0%);
  -ms-transform: translateX(0%);
}
.slider.current-0 .nav .current-0 {
  background: white;
}
.slider .slide {
  display: inline-block;
  -webkit-transition: -webkit-transform ease 0.4s;
  -moz-transition: -moz-transform ease 0.4s;
  -o-transition: -o-transform ease 0.4s;
  transition: transform ease 0.4s;
}
.slider .slide header {
  opacity: 0;
  transform: translateY(2em);
  -webkit-transform: translateY(2em);
  -moz-transform: translateY(2em);
  -o-transform: translateY(2em);
  -ms-transform: translateY(2em);
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
}
.slider .slide.current header {
  opacity: 1;
  transform: translateY(0em);
  -webkit-transform: translateY(0em);
  -moz-transform: translateY(0em);
  -o-transform: translateY(0em);
  -ms-transform: translateY(0em);

}
.slider .nav {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 1;
  margin: auto;
  font-size: 1rem;
  text-align: center;
}
.slider .nav .nav__current {
  cursor: pointer;
  display: none;
  margin: 0 .3em;
  width: .6em;
  height: .6em;
  border-radius: 3em;
  -webkit-border-radius: 3em;
  -moz-border-radius: 3em;
  -o-border-radius: 3em;
  -ms-border-radius: 3em;
  position: relative;
  bottom: 2em;
  border: solid 2px white;
  background: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 700px) {
  .slider .nav .nav__current {
    display: inline-block;
  }
}
.slider .nav .nav__prev,
.slider .nav .nav__next {
  width: 2em;
  height: 2em;
  position: absolute;
  bottom: calc(  50vw /  (382 / 150)  - 16px  );
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
}
.slider .nav .nav__prev:before,
.slider .nav .nav__next:before,
.slider .nav .nav__prev:after,
.slider .nav .nav__next:after {
  content: "";
  display: block;
  width: 40%;
  border-top: solid 2px white;
}
.slider .nav .nav__prev.disabled,
.slider .nav .nav__next.disabled {
  display: none;
}
@media screen and (min-width: 1437px) {
  .slider .nav .nav__prev,
  .slider .nav .nav__next {
    bottom: 221px;
  }
}
.slider .nav .nav__prev {
  left: 8%;
}
.slider .nav .nav__prev:before {
  transform: rotate(45deg) translate(19px, 8px);
  -webkit-transform: rotate(45deg) translate(19px, 8px);
  -moz-transform: rotate(45deg) translate(19px, 8px);
  -o-transform: rotate(45deg) translate(19px, 8px);
  -ms-transform: rotate(45deg) translate(19px, 8px);
}
.slider .nav .nav__prev:after {
  transform: rotate(-45deg) translate(-1px, 12px);
  -webkit-transform: rotate(-45deg) translate(-1px, 12px);
  -moz-transform: rotate(-45deg) translate(-1px, 12px);
  -o-transform: rotate(-45deg) translate(-1px, 12px);
  -ms-transform: rotate(-45deg) translate(-1px, 12px);
}
.slider .nav .nav__next {
  right: 8%;
}
.slider .nav .nav__next:before {
  transform: rotate(45deg) translate(16px, 1px);
  -webkit-transform: rotate(45deg) translate(16px, 1px);
  -moz-transform: rotate(45deg) translate(16px, 1px);
  -o-transform: rotate(45deg) translate(16px, 1px);
  -ms-transform: rotate(45deg) translate(16px, 1px);
}
.slider .nav .nav__next:after {
  transform: rotate(-45deg) translate(-5px, 20.5px);
  -webkit-transform: rotate(-45deg) translate(-5px, 20.5px);
  -moz-transform: rotate(-45deg) translate(-5px, 20.5px);
  -o-transform: rotate(-45deg) translate(-5px, 20.5px);
  -ms-transform: rotate(-45deg) translate(-5px, 20.5px);
}
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
._text-shadow {
  text-shadow: 0 0 1.25em rgba(0, 0, 0, 0.5);
}
body {
  margin: 0;
}
#repromotion-702 {
  font-family: 'Gotham A', 'Gotham B', sans-serif;
  font-weight: 100!important;
  overflow-x: hidden;
  color: #060300;
  background: #ffffff;
  /*
		sections
	*/
}
#repromotion-702 h1 {
  line-height: 1.2em;
  font-size: 1.8em;
  margin-bottom: 1.5em;
  font-weight: 100;
  text-transform: uppercase;
}
@media screen and (min-width: 480px) {
  #repromotion-702 h1 {
    font-size: 2.4em;
  }
}
#repromotion-702 h2 {
  line-height: 1.3em;
  font-size: 1.3em;
  margin-bottom: 1.8em;
  font-weight: 100;
  text-transform: uppercase;
}
@media screen and (min-width: 480px) {
  #repromotion-702 h2 {
    font-size: 1.3em;
  }
}
#repromotion-702 p {
  line-height: 1.4em;
  font-size: .8em;
  font-weight: 100;
  text-align: justify;
}
@media screen and (min-width: 480px) {
  #repromotion-702 p {
    font-size: 1em;
  }
}
#repromotion-702 header.header-right {
  white-space: normal;
  position: absolute;
  left: 8%;
  width: auto;
  text-align: left;
  bottom: 1em;
  top: auto;
  margin-left: 50%;
}
@media screen and (min-width: 480px) {
  #repromotion-702 header.header-right {
    left: calc(8% + 5em);
  }
}
@media screen and (min-width: 850px) {
  #repromotion-702 header.header-right {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 30%;
	margin-left: 45%;
  }
}
@media screen and (min-width: 1000px) {
  #repromotion-702 header.header-right {
    width: 28%;
	margin-left: 50%;
  }
}


#repromotion-702 header.header-left {
  white-space: normal;
  position: absolute;
  left: 2%;
  width: auto;
  text-align: left;
  bottom: 1em;
  top: auto;
}
@media screen and (min-width: 480px) {
  #repromotion-702 header.header-left {
    left: calc(2% + 5em);
  }
}
@media screen and (min-width: 700px) {
  #repromotion-702 header.header-left {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 30%;
  }
}
@media screen and (min-width: 1000px) {
  #repromotion-702 header.header-left {
    width: 28%;
  }
}


#repromotion-702 header h2 {
  margin: 16px 0;
}
#repromotion-702 header p {
  margin: 16px 0;
  padding: 0;
  opacity: 1;
  position: static;
  text-shadow: 0 0 1.25em rgba(0, 0, 0, 0.5);
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  display: none;
}
@media screen and (min-width: 700px) {
  #repromotion-702 header p {
    display: block;
  }
}
#repromotion-702 .nobreak {
  /* Silbentrennung */
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
}
#repromotion-702 .button.button--open,
#repromotion-702 .button.button--external {
  text-transform: uppercase;
  display: inline-block;
  left: 0;
  right: 0;
  margin: auto;
  padding: .7em 3em .6em 3em;
  color: white;
  background: #ca9b3c;
  border: solid 2px #ca9b3c;
  font-size: .8em;
  text-decoration: none;
  font-weight: 400;
  min-width: 8em;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#repromotion-702 .button.button--open:hover,
#repromotion-702 .button.button--external:hover {
  color: #ca9b3c;
  background: white;
  border: solid 2px #ca9b3c;
}
#repromotion-702 .button.button--close {
  position: absolute;
  right: 1em;
  top: 2em;
  width: 30px;
  height: 30px;
  background: #ffffff;
  color: #ca9b3c;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#repromotion-702 .button.button--close:hover {
  color: #c29a37;
  background: white;
}
#repromotion-702 .row {
  margin: auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#repromotion-702 .row.outer {
  max-width: 100%;
  width: 1437px;
}
#repromotion-702 .row.inner {
  max-width: 1160px;
  padding-top: .1px;
  padding-bottom: .1px;
}
#repromotion-702 .row.inner.hspace {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  padding-left: 2em;
  padding-right: 2em;
}
#repromotion-702 .row.inner.hspace.hread {
  max-width: 48em;
  width: 100%;
}
@media screen and (min-width: 700px) {
  #repromotion-702 .row.inner.hspace .col-1-3 {
    width: calc((100% / 3) - 2em);
  }
}
@media screen and (min-width: 700px) {
  #repromotion-702 .row.inner.hspace .col-2-3 {
    width: calc((100% / 3 * 2) - 2em);
  }
}
#repromotion-702 .row .col-flip {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
@media screen and (min-width: 700px) {
  #repromotion-702 .row .col-flip {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
}
#repromotion-702 .row .col-flip .col {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
@media screen and (min-width: 700px) {
  #repromotion-702 .row .col-flip .col {
    display: inline-block;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
}
#repromotion-702 .row .post-text--inline {
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
#repromotion-702 .row .post-text--inline.toggled {
  opacity: 1;
}
#repromotion-702 .row .post-text--inline p:first-child {
  margin-top: 0!important;
}
#repromotion-702 .col {
  vertical-align: top;
  white-space: normal;
  width: 100%;
  display: block;
}
@media screen and (min-width: 700px) {
  #repromotion-702 .col.col-1-3 {
    display: inline-block;
    width: calc(100% / 3);
  }
}
@media screen and (min-width: 700px) {
  #repromotion-702 .col.col-2-3 {
    display: inline-block;
    width: calc(100% / 3 * 2);
  }
}
#repromotion-702 .post-text {
  background: #02070d;
  overflow: hidden;
  height: 0;
  -webkit-transition: height ease 0.4s;
  -moz-transition: height ease 0.4s;
  -o-transition: height ease 0.4s;
  transition: height ease 0.4s;
}
#repromotion-702 .post-text .inner {
  position: relative;
  padding-top: .1px;
  padding-bottom: .1px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#repromotion-702 .post-text .inner p {
  width: calc(100% - 6em);
}
#repromotion-702 .post-text .inner p:first-of-type {
  margin-top: 2em;
}
#repromotion-702 .post-text .inner p:last-of-type {
  margin-bottom: 2em;
}
#repromotion-702 .product img {
  display: block;
}
@media screen and (min-width: 700px) {
  #repromotion-702 .product .row.outer:first-of-type {
    background-size: 100% auto;
    min-height: 0;
  }
}
@media screen and (min-width: 700px) {
  #repromotion-702 .product .row.outer:first-of-type:before {
    display: block;
    content: "";
    padding-top: 18.64996521%;
  }
}
@media screen and (min-width: 700px) {
  #repromotion-702 .product .row.outer:first-of-type .row.inner {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
  }
}
#repromotion-702 .product .inner h2 {
  text-align: center;
}
@media screen and (min-width: 700px) {
  #repromotion-702 .product .inner h2 {
    text-align: left;
  }
}
#repromotion-702 .product .inner p {
  margin: 1em 0;
  /* Silbentrennung */
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
#repromotion-702 .product .inner h2 {
  margin-top: 2em;
  margin-bottom: 1em;
}
@media screen and (min-width: 700px) {
  #repromotion-702 .product .inner h2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
#repromotion-702 .product .inner .col-1-3 {
  padding-top: .1px;
  text-align: center;
}
#repromotion-702 .product .inner .col-1-3 .button--open {
  margin-top: 2em;
  margin-bottom: 4em;
}
#repromotion-702 .product .inner .col-2-3 {
  text-align: center;
  position: relative;
}
#repromotion-702 .product .inner .col-2-3 img,
#repromotion-702 .product .inner .col-2-3 picture {
  margin-top: -1em;
  width: 100%;
}

#repromotion-702 #wsc-mood .row.outer {
  overflow: hidden;
  white-space: nowrap;
  font-size: 0;
}
#repromotion-702 #wsc-mood .row.slider .slide {
  font-size: 16px;
  width: 100%;
  color: #ffffff!important;
}
#repromotion-702 #wsc-mood .row.slider .slide img {
  display: block;
}
#repromotion-702 #wsc-mood .row.slider .slide p {
  /* Silbentrennung */
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
#repromotion-702 #wsc-mood .row.slider .nav {
  display: none;
}
@media screen and (min-width: 480px) {
  #repromotion-702 #wsc-mood .row.slider .nav {
    display: block;
  }
}
#repromotion-702 #wsc-mood .row.slider .nav .nav__current {
  display: none;
}
#repromotion-702 #wsc-mood .row.slider .nav .nav__prev,
#repromotion-702 #wsc-mood .row.slider .nav .nav__next {
  padding: .5em;
  border: solid 1px white;
  bottom: calc(  50vw / (1437 / 572) - 16px);
}
@media screen and (min-width: 1437px) {
  #repromotion-702 #wsc-mood .row.slider .nav .nav__prev,
  #repromotion-702 #wsc-mood .row.slider .nav .nav__next {
    bottom: 266px;
  }
}
#repromotion-702 #wsc-mood .row.slider .nav .nav__prev:before,
#repromotion-702 #wsc-mood .row.slider .nav .nav__next:before,
#repromotion-702 #wsc-mood .row.slider .nav .nav__prev:after,
#repromotion-702 #wsc-mood .row.slider .nav .nav__next:after {
  border-top-width: 1px;
}
#repromotion-702 #wsc-mood .row.slider .nav .nav__next:before {
  transform: rotate(45deg) translate(15px, 0px);
  -webkit-transform: rotate(45deg) translate(15px, 0px);
  -moz-transform: rotate(45deg) translate(15px, 0px);
  -o-transform: rotate(45deg) translate(15px, 0px);
  -ms-transform: rotate(45deg) translate(15px, 0px);
  width: 41%;
}
#repromotion-702 #cigarbackground {
  /*background: url("../img/bg-latehour-cigarbackground-1437x1768.jpg") center no-repeat;*/
  background-color: white;
  color: black;
}

#repromotion-702 .quote {
  font-size: 0;
  /*background-image: url("../img/bg-damajagua-1846x975.jpg");*/
  background-size: auto 100%;
  background-repeat: repeat-x;
}
#repromotion-702 .quote img {
  width: 100%;
}
@media screen and (min-width: 700px) {
  #repromotion-702 .quote img[src$="748x553.jpg"] {
    width: 52.05288796%;
  }
  #repromotion-702 .quote img[src$="689x553.jpg"] {
    width: 47.94711204%;
  }
}
#repromotion-702 #cigars1,
#repromotion-702 #cigars2 {
  background-image: url("../img/bg-damajagua-1846x975.jpg");
  background-size: auto 100%;
  background-repeat: repeat-x;
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: center;
}
#repromotion-702 #cigars1 h2,
#repromotion-702 #cigars2 h2 {
  margin-top: .2em;
  margin-bottom: .5em;
}
#repromotion-702 #cigars1 .size,
#repromotion-702 #cigars2 .size {
  margin: 0;
  text-align: center;
}
#repromotion-702 #cigars1 .size .upper,
#repromotion-702 #cigars2 .size .upper {
  font-variant: super;
  position: relative;
  font-size: 80%;
}
#repromotion-702 .cigarStrength {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  text-align: center;
}

#repromotion-702 .cigarStrength .dot {
  position: relative;
  top: .1em;
  display: inline-block;
  margin: 0 .05em;
  width: .6em;
  height: .6em;
  border-radius: 3em;
  -webkit-border-radius: 3em;
  -moz-border-radius: 3em;
  -o-border-radius: 3em;
  -ms-border-radius: 3em;
  border: solid 1px #ffffff;
  background-color: transparent;
}

#repromotion-702 .cigarStrength .dot.filled {
  background: #ffffff;
}

#repromotion-702 .cigarStrength .dot.halved {
  background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 100%);
  background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#FFFFFF00',GradientType=1 );
}

#repromotion-702 #cigars1 img[src$="img-royalrelease5-cigar2-626x112.jpg"],
#repromotion-702 #cigars2 img[src$="img-royalrelease5-cigar2-626x112.jpg"] {
  margin-bottom: 1em;
}
#repromotion-702 #cigars1 img {
  max-width: 90%;
}
#repromotion-702 #cigars2 {
  padding-bottom: 4em;
}
#repromotion-702 #cigars2 img {
  max-width: 64%;
}
@media screen and (min-width: 700px) {
  #repromotion-702 #lighter img {
    width: 90%;
  }
}
#repromotion-702 #lighter {
  background: url("../img/bg-latehour-02-1437x949.jpg");
  background-size: cover;
  background-position: center top;
}
#repromotion-702 #ashtray {
  background: url("../img/bg-latehour-1437x949.jpg");
  background-size: cover;
  background-position: center top;
}
#repromotion-702 #ashtray .inner {
  white-space: nowrap;
}
#repromotion-702 #ashtray {
  overflow: hidden;
}
#repromotion-702 #ashtray .col-flip {
  position: relative;
  top: -20vw;
  margin-bottom: -20vw;
  margin-top:-10%;
}  
#repromotion-702 #lighter .col-flip {
  margin-top:20%;
	margin-bottom: 10%;
}
@media screen and (min-width: 700px) {
  #repromotion-702 #ashtray .col-flip {
    position: static;
    margin-bottom: inherit;
  }
}

@media screen and (max-width: 699px) {
  #repromotion-702 #ashtray .col-flip {
	margin-top:30%;
  }
}
#repromotion-702 #ashtray img {
  position: relative;
  width: 110%;
  margin-top: -3em;
}
@media screen and (min-width: 700px) {
  #repromotion-702 #ashtray img {
    left: 2em;
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  #repromotion-702 #ashtray img {
    left: 5em;
    width: 100%;
  }
}
#repromotion-702 #outro {
  position: relative;
  text-align: center;
  background-image: url("../img/img-latehour-outro-1437x10.jpg");
  background-size: auto 100%;
  background-repeat: repeat-x;
  font-size: 0;
}
#repromotion-702 #outro img {
  display: block;
}
#repromotion-702 #outro .button--external {
  position: absolute;
  bottom: 2vw;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  max-width: none;
  white-space: nowrap;
}
@media screen and (min-width: 700px) {
  #repromotion-702 #outro .button--external {
    bottom: 4vw;
  }
}
@media screen and (min-width: 1437px) {
  #repromotion-702 #outro .button--external {
    bottom: 50px;
  }
}

#repromotion-702 #otherprod {
    position: relative;
	text-align: center;
	z-index: 1;
  }

#repromotion-702 #otherprod p {
	text-align: center;
  }

#repromotion-702 #otherprod a {
	text-align: center;
	color: #8d7040;
	text-decoration: none;
  }

#repromotion-702 #otherprod a:visited {
	text-align: center;
	color: #8d7040;
	text-decoration: none;
  }

#repromotion-702 .indivprod {
    float:left;
	width: 33%;
  }

@media screen and (max-width: 849px) {
  #repromotion-702 header.header-left,
  #repromotion-702 header.header-right {
    position: relative;
    left: 0;
    margin: 2em;
  }

  #repromotion-702 header.header-left p,
  #repromotion-702 header.header-right p {
    text-align: center;
  }
}

@media screen and (max-width: 699px) {
  #repromotion-702 #otherprod .indivprod {
	  width: 100%;
	  float: none;
  }
}

@media screen and (min-width: 850px){
  #repromotion-702 header.header-left {
    width: 50%;
    left: 2%;
  }

  #repromotion-702 header.header-right {
    width: 40%;
    margin-left: 38%;
  }
}

@media screen and (min-width: 1000px){
  #repromotion-702 header.header-left {
    left: calc( 2% + 5em) ;
    width: 28%;
  }
}

#repromotion-702 .reverse .cigarStrength .dot {
  border-color: #000000;
}

#repromotion-702 .reverse .cigarStrength .dot.filled {
  background: #000000;
}

#repromotion-702 .reverse .cigarStrength .dot.halved {
  background: -moz-linear-gradient(left,  rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(left,  rgba(0,0,0,1) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to right,  rgba(0,0,0,1) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 );
}

#repromotion-702 #cigars1 .description,
#repromotion-702 #cigars2 .description {
  text-align: center;
}

#repromotion-702 #cigars1 .category,
#repromotion-702 #cigars2 .category {
  text-align: center;
  text-transform: uppercase;
}

#repromotion-702 #cigars1 .disclaimer,
#repromotion-702 #cigars2 .disclaimer {
  text-align: center;
  text-transform: uppercase;
  /*font-weight: bold;*/
  color: #97845B;
}

#repromotion-702 #cigars1 .enjoy,
#repromotion-702 #cigars2 .enjoy {
  text-align: center;
}

.video-presentation .video {
  width: 100%;
}

.video-presentation .video .video-media {
  width: 100%;
  height: 220px;
}

#repromotion-702 #wsc-mood.video-presentation h2,
#repromotion-702 #wsc-mood.video-presentation .video-description {
  text-align: center;
}

.comp-img div,
.comp-img {
  white-space: normal;
}

#quote1.quote .row.outer.slider .slide.current .comp-img .quotation {
  text-align: center;
  font-size: 12px;
}

#quote1.quote .row.outer.slider .slide.current .comp-img .header-quotation {
  margin-left: 10px;
  width: calc(50% - 15px);
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 25%;
  position: absolute;
  top: 22.3%;

  font-style: italic;
}

#wsc-mood.video-presentation .row.outer.slider .slide.current header.video {
  width: auto;
  left: 0;
}

@media screen and (min-width: 700px){
  #wsc-mood .half-right {
    width: 50%;
    margin-left: 50%;
  }

  #wsc-mood .half-left {
    width: 50%;
    margin-right: 50%;
  }

  .cigar-2col {
    width: 49%;
    display: inline-block;
    vertical-align: top;
  }

  .cigar-2col #cigars1 {
    height: 480px;
  }

  .title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 120px
  }

  .comp-img {
    white-space: nowrap;
    display: inline-block;
    width: 50%;
  }

  .comp-img div,
  .comp-img-vert div {
    display: inline-block;
  }

  .comp-img-vert {
    display: inline-block;
    height: 50%;
  }

  #quote1.quote .row.outer.slider .slide.current .comp-img .header-quotation {
    margin-left: 10px;
    width: calc(25% - 15px);
    left: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: none;
    height: 50%;

    position: absolute;
    white-space: normal;
    top: 50%;
  }

  #quote1.quote .row.outer.slider .slide.current .comp-img .quotation {
    font-size: 14px;
  }

  #wsc-mood.video-presentation .row.outer.slider .slide.current header.video {
    width: 45%;
    left: 5%;
  }
}

@media screen and (min-width: 850px) {
  #repromotion-702 .row.outer.slider .slide.current header.header-right {
    width: 46%;
    padding: 1%;
    margin-left: 52%;
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    /*
    width: auto;
    padding: 15px;
    margin-left: 38%;
    */
  }
}

@media screen and (min-width: 700px) and (max-width: 900px) {
  #repromotion-702 header p
  {
    margin: 12px 0;
    font-size: 1em;
  }
}

@media screen and (min-width: 900px) {
  #repromotion-702 header p
  {
    margin: 16px 0;
    font-size: 1em;
  }
}

.edition-title {
  border: solid transparent;
  border-width: 0px 0px 2px 0px;

  padding-top: 25px;
  padding-bottom: 5px;

  text-align: center;
  text-transform: uppercase;

  font-size: 24px;

  -webkit-border-image: 
    -webkit-linear-gradient(left,  rgba(0,0,0,0.0) 10%, rgba(0,0,0,0.25) 25%,rgba(0,0,0,1) 50%,rgba(0,0,0,0.25) 75%, rgba(0,0,0,0.0) 90%);
  -moz-border-image:
    -moz-linear-gradient(left,  rgba(0,0,0,0.0) 10%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.25) 75%, rgba(0,0,0,0.0) 90%);
  border-image:
    linear-gradient(to right,  rgba(0,0,0,0.0) 10%, rgba(0,0,0,0.25) 25%,rgba(0,0,0,1) 50%,rgba(0,0,0,0.25) 75%, rgba(0,0,0,0.0) 90%);

  border-image-slice: 1;
}

/* CUSTOM */

#repromotion-702 .mobile-img {
  display: none;
}

#repromotion-702 .desktop-img {
  /*display: inline-block;*/
  display: inherit;
}

#story {
  position: relative;
}

#banner img,
#story img {
  display: block;
  width: 100%;
}

#story .story-copy {
  position: absolute;

  max-width: 960px;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;

  margin: auto;

  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;

  color: #FFFFFF;
  text-shadow: 0px 0px 40px #000000;
  text-align: center;
  text-transform: uppercase;
}

#story .story-copy h1 {
  margin-bottom: 40px;
  margin-top: 0;
  font-weight: bold;
}

#story .story-copy p {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

#story .story-copy-main {
  position: relative;
  top: 33%;
  transform: translateY(-33%);
}

#story .story-note {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: .8em;
}

#collection.row.outer {
  margin-bottom: 100px;
}

#collection h1 {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

#collection .collection-cigars {
  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

#collection .collection-cigars .collection-row {
  width: 100%;

  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

#repromotion-702 .collection-cigar .img-wrap {
  height: 450px;
  position: relative;
}

#repromotion-702 .collection-cigars .collection-row:nth-of-type(2) .img-wrap {
  height: 470px;
}

#repromotion-702 .collection-cigar .img-wrap img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /*margin: auto;*/
  margin-right: auto;
  margin-left: auto;
  margin-top: auto;

  display: block;
}

#repromotion-702 .collection-cigar .img-wrap img.new-cigar {
  left: 30px;
}

#repromotion-702 .collection-info {
  text-align: center;
  margin-top: 15px;
}

#repromotion-702 .collection-info > div {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

#repromotion-702 .collection-info > div span.inchSize {
  vertical-align: top;
  font-size: 10px;
}

#repromotion-702 .collection-info a.button {
  margin-top: 10px;
}

#collection .collection-cigars .collection-row:nth-of-type(1) .collection-cigar:nth-of-type(1) .img-wrap img {
  height: 249px;
}

#collection .collection-cigars .collection-row:nth-of-type(1) .collection-cigar:nth-of-type(2) .img-wrap img {
  height: 335px;
}

#collection .collection-cigars .collection-row:nth-of-type(1) .collection-cigar:nth-of-type(3) .img-wrap img {
  height: 365px;
}

#collection .collection-cigars .collection-row:nth-of-type(1) .collection-cigar:nth-of-type(4) .img-wrap img {
  height: 338px;
}

#collection .collection-cigars .collection-row:nth-of-type(2) .collection-cigar:nth-of-type(1) .img-wrap img {
  height: 376px;
}

#collection .collection-cigars .collection-row:nth-of-type(2) .collection-cigar:nth-of-type(2) .img-wrap img {
  height: 404px;
}

#collection .collection-cigars .collection-row:nth-of-type(2) .collection-cigar:nth-of-type(3) .img-wrap img {
  height: 405px;
}

#collection .collection-cigars .collection-row:nth-of-type(2) .collection-cigar:nth-of-type(4) .img-wrap img {
  height: 463px;
}

#portrait img:nth-of-type(1) {
  width: 52.1032504%;
}

#portrait img:nth-of-type(2) {
  width: 47.8967495%;
}

#repromotion-702 .origin {
  max-width: 980px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

#repromotion-702 .origin-description {
  width: calc(50% - 15px);
  
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 15px;

  display: inline-block;
}

#repromotion-702 .origin-description p {
  text-align: left;
}

#repromotion-702 .origin-description.decorative img {
  width: 100%;
}

#repromotion-702 .origin-map {
  width: calc(50% - 15px);

  margin-left: 5px;
  margin-right: 5px;
  margin-top: 15px;

  display: inline-block;
  vertical-align: top;
}

#repromotion-702 .origin-map img {
  width: 100%;
  margin-top: 16px;
}

#repromotion-702 .origin-recipe-row {
  display: block;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

#repromotion-702 .origin-row {
  display: block;
  text-align: center;
}

#repromotion-702 .origin-thumb {
  display: inline-block;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
	text-transform: uppercase;
	font-size: 0.8em;
	color: #666;
  width: 60px;
  vertical-align: top;
}

#repromotion-702 .origin-thumb > div:first-child {
  height: 60px;

  margin-bottom: 6px;

  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;

  justify-content: center;
}

#repromotion-702 .origin-thumb img {
  width: 50px;
  margin-top: auto;
  align-self: flex-end;
	/*padding-bottom: 6px;*/
}

#repromotion-702 .origin-rate {
  margin: auto;
  margin-top: 70px;

  text-align: center;
}

#repromotion-702 .origin-rate-wrap {
  width: 25%;
  display: inline-block;
  margin-left: 18px;
  margin-right: 18px;
  vertical-align: top;
}

#repromotion-702 .origin-rate-wrap > div {
  margin-top: 15px;
}

#repromotion-702 .origin-rate-wrap img {
  width: 85%;
}

#repromotion-702 .origin-rate-wrap p {
  text-align: center;
}

#repromotion-702 .origin-rate-wrap .rate-title {
  text-transform: uppercase;
}

#late-hour h1 {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

#late-hour .collection-cigars {
  width: 980px;
}

#late-hour .collection-cigar .img-wrap {
  height: 475px;
}

#late-hour .collection-wrap {
  width: 100%;
  background-image: url("../img/wsc-repromotion-black-background.png");
  background-position: center;
  background-size: cover;
}

#late-hour .collection-cigars {
  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;

  margin-left: auto;
  margin-right: auto;

  max-width: 960px;
  width: auto;

  color: white;
}

#late-hour .collection-cigar {
  margin-top: 100px;
  margin-bottom: 100px;
}

#late-hour .collection-cigars .collection-cigar:nth-of-type(1) .img-wrap img {
  height: 475px;
}

#late-hour .collection-cigars .collection-cigar:nth-of-type(2) .img-wrap img {
  height: 422px;
}

#late-hour .collection-cigars .collection-cigar:nth-of-type(3) .img-wrap img {
  height: 380px;
}

/*#late-hour .origin-thumb {
  width: 85px;
}*/

#late-hour .origin-rate {
  width: 90%;
}

#late-hour .origin-rate .rate-wrap {
  position: relative;
}

#late-hour .origin-rate .origin-rate-wrap:nth-of-type(1) img {
  width: 155%;

  transform: translateX(-25%);

  margin: auto;
}

#late-hour .origin-rate .origin-rate-wrap:nth-of-type(1) {
  margin-right: 40px;
}

#information.row.outer {
  margin-bottom: 60px;
}

#information .info-tile {
  width: 33.3333%;
  height: 100%;
  display: inline-block;
}

#information .info-tile img {
  width: 100%;
}

#information .info-tile {
  text-align: center;
  vertical-align: top;
}

#information .info-tile-text {
  padding-left: 10%;
  padding-right: 10%;
}

#information .info-tile-text h2 {
  margin-bottom: 0.8em;
}

#information .info-tile p {
  text-align: center;
}

#interactive-accessories {
  position: relative;
}

#interactive-accessories img {
  width: 100%;
}

#interactive-accessories a.img-link {
  position: absolute;

  width: 14px;
  height: 14px;

  margin: 0;
  border-radius: 100%;

  /*border: 4px solid rgba(0,0,0,0.15);*/
  -webkit-box-shadow: 0 0 0 4px rgba(255,255,255,0.5);
  -moz-box-shadow: 0 0 0 4px rgba(255,255,255,0.5);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.5);

  background-color: rgba(255,255,255,0.85);

}

#interactive-accessories a.img-link.r702 {
  -webkit-box-shadow: 0 0 0 4px rgba(206,161,80,0.5);
  -moz-box-shadow: 0 0 0 4px rgba(206,161,80,0.5);
  box-shadow: 0 0 0 4px rgba(206,161,80,0.5);

  background-color: rgba(206,161,80,0.85);
}

#interactive-accessories a.img-link.revealed {
  left: 0;
  right: 0;
  margin: auto;
  padding: .7em 3em .6em 3em;
  color: white;
  background: #ca9b3c;
  border: solid 3px rgba(255,255,255,0.75);
  font-size: .8em;
  text-decoration: none;
  font-weight: 400;
  min-width: 8em;
  text-align: center;
  
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;

  transform: translateX(-40%);

  margin: 0;
  border-radius: 0;
}

#interactive-accessories a.img-link.revealed:hover {
  color:  #ca9b3c;
  background: white;
  border-color:  #ca9b3c;

  -webkit-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  -moz-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  -o-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;

  /*-webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;*/
}

#interactive-accessories a.img-link span {
  display: none;
  visibility: hidden;
  opacity: 0;
  
  text-transform: uppercase;
}

#interactive-accessories a.img-link.revealed span {
  display: inline-block;
  visibility: visible;
  opacity: 1;
}

#interactive-accessories a.img-link:nth-of-type(1) {
  top: 92%;
  left: 21%;
}

#interactive-accessories a.img-link:nth-of-type(2) {
  top: 36%;
  left: 54.5%;
}

#interactive-accessories a.img-link:nth-of-type(3) {
  top: 33%;
  left: 69%;
}

#interactive-accessories a.img-link:nth-of-type(4) {
  top: 12%;
  left: 84%;
}

#interactive-accessories a.img-link:nth-of-type(5) {
  top: 92%;
  left: 62%;
}


#interactive-accessories a.img-link.img-link-demo {
  right: 0;
  margin: auto;
  padding: .7em 3em .6em 3em;
  color: white;
  background: #ca9b3c;
  border: solid 3px rgba(255,255,255,0.75);
  font-size: .8em;
  text-decoration: none;
  font-weight: 400;
  min-width: 8em;
  text-align: center;

  transform: translateX(-40%);

  margin: 0;
  border-radius: 0;
}

#interactive-accessories a.img-link.img-link-demo span {
  display: inline-block;
  visibility: visible;
  opacity: 1;
}

#interactive-accessories a.img-link {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#repromotion-702 .cigar-components {
  text-align: center;
  margin-top: 15px;
  color: #666;
  font-size: 0.8em;
}

#repromotion-702 span.cigar-component {
  display: inline-block;
  margin: 0 10px;
  text-transform: uppercase;
  border-bottom: 5px solid #D1D1D1;
  cursor: pointer;
}

#repromotion-702 span.cigar-component.selected {
  border-bottom-color: #ca9b3c;
}

@media screen and (max-width: 699px) {
  #repromotion-702 .mobile-img {
    /*display: inline-block;*/
    display: inherit;
  }

  #repromotion-702 .desktop-img {
    display: none;
  }

  #banner img {
    width: 100%;
  }
  
  #story .story-copy-main {
    position: relative;
    top: 25%;
    transform: translateY(-25%);
  }

  #story .story-copy h1 {
    margin-bottom: 20px;
    /*font-size: 1.4em;*/
    font-size: 6.5vw;
  }

  #story .story-copy p {
    line-height: 1.2em;
    margin: .5em 10px;
  }

  #collection.row.outer {
    margin: auto;
    margin-bottom: 50px;
  }

  #portrait img:nth-of-type(1),
  #portrait img:nth-of-type(2),
  #portrait img {
    width: 100%;
    display: block;
  }

  #repromotion-702 .origin {
    margin-bottom: 40px;
    margin-top: 40px;
  }

  #repromotion-702 .origin-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap-reverse;
  }
  
  #repromotion-702 .origin-row > div {
    width: auto;
    margin: 0 15px;
  }

  #repromotion-702 .origin-recipe-row {
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;

    justify-content: space-around;
  }

  #repromotion-702 .origin-thumb {
    width: 55px;
    margin-left: 7px;
    margin-right: 7px;
    font-size: .7em;
  }
  
  #repromotion-702 .origin-thumb img {
    width: 50px;
  }

  #repromotion-702 .origin-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
  }
  
  #repromotion-702 .origin-map .cigar-components {
    margin-top: 0;
    margin-bottom: 15px;
  }

  #repromotion-702 .origin-rate {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
  }

  #late-hour .origin-rate .origin-rate-wrap:nth-of-type(1) img {
    width: 150px;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    transform: translateX(0);
    margin-right: 15px;
  }
  
  #late-hour .origin-rate .origin-rate-wrap:nth-of-type(1) {
    margin-right: 18px;
  }

  #repromotion-702 .origin-rate-wrap {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    margin-bottom: 5px;
    margin-top: 5px;
  }
  
  #repromotion-702 .origin-rate-wrap > div {
    align-self: center;
  }
  
  #repromotion-702 .origin-rate-wrap img {
    width: 150px;
    margin-right: 15px;
    align-self: center;
  }

  #late-hour .collection-cigars {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  #late-hour .collection-cigar {
    margin-top: 0;
    margin-bottom: 0;
  }

  #information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
  }

  #information.row.outer {
    margin-bottom: 40px;
  }

  #information .info-tile {
    width: auto;
    margin-bottom: 15px;
  }
  
  #information .info-tile h2 {
    margin-bottom: 5px;
    margin-top: 5px;
  }
  
  #information .info-tile-text {
    padding-left: 15px;
    padding-right: 15px;
  }

  #interactive-accessories a.img-link:nth-of-type(1) {
    top: 43%;
    left: 46%;
  }

  #interactive-accessories a.img-link:nth-of-type(2) {
    top: 68%;
    left: 78%;
  }

  #interactive-accessories a.img-link:nth-of-type(3) {
    top: 93%;
    left: 13%;
  }

  #interactive-accessories a.img-link:nth-of-type(4) {
    top: 93%;
    left: 78%;
  }

  #interactive-accessories a.img-link:nth-of-type(5) {
    top: 79%;
    left: 29%;
  }

  #repromotion-702 .origin-row > div {
    width: 100%;
  }

  #repromotion-702 .origin-map-img-wrapper {
    height: 100%;
  }
}

@media screen and (max-width: 479px) {
  #repromotion-702 .collection-cigars {
    display: block;
  }

  #repromotion-702 .collection-cigar .img-wrap,
  #repromotion-702 .collection-cigars .collection-row:nth-of-type(2) .img-wrap
  {
    height: 100%;
  }

  #repromotion-702 .collection-cigar .img-wrap img {
    position: relative;
    margin-top: 50px;
    margin-bottom: 5px;
  }
  
  #repromotion-702 .collection-cigar {
    align-self: flex-end;
  }
}

@media screen and (max-width: 849px) {
  #wsc-mood .row.outer.slider .slide.current header.header-right {
    width: auto;
    margin: 15px;
    margin-top: 55px;
  }

  #repromotion-702 #wsc-mood .row.slider .slide p {
    display: block;
    color: black;
    text-shadow: none;
    font-size: 1em;
  }
}

/*# sourceMappingURL=dav-special-royalrelease.css.map */