/* --------------------------------

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none !important;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  min-width: 350px;
  /*background: #e63d3d;*/
  background: -webkit-linear-gradient(left, #f8505f , #e63d3d); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #f8505f, #e63d3d); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #f8505f, #e63d3d); /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #f8505f , #e63d3d); /* Standard syntax (must be last) */
  color: #fff;
  font-size: 100%;
  font-family: 'Montserrat', sans-serif;
}

body, html {
  height: 100%;
}

body:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

a {
  color: #3e3947;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/* --------------------------------

Main components

-------------------------------- */

.cd-section {
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  width: 100%;
  position: relative;
  display: table;
  z-index: 4;
  padding: 2em 0;
}

/*.cd-section:nth-of-type(odd) {
  background-color: #e63d3d;
}
.cd-section:nth-of-type(odd) p {
  color: #898099;
}
.cd-section:nth-of-type(even) {
  background-color: #e63d3d;
}
.cd-section:nth-of-type(even) p {
  color: #bda3ad;
}
.cd-section h1, .cd-section p {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 768px;
  text-align: center;
}*/
.cd-section h1 {
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
}
.cd-section p {
  line-height: 1.4;
}

.cd-section p:nth-child(2) {
  margin-top: 40px;
}

@media only screen and (min-width: 768px) {
  .cd-section p {
    color: #fff;
    font-size: 14px;
  }
}

#section1 .cd-scroll-down {
  position: absolute;
  left: 50%;
  right: auto;
  z-index: 10;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  width: 38px;
  height: 44px;
  background: url("../img/cd-icon-arrow-desktop.svg") no-repeat center center;
  fill: #fff;
}

/* No Touch devices */
.cd-nav-trigger {
  display: none;
}

.no-touch #cd-vertical-nav {
  position: fixed;
  right: 40px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}
.no-touch #cd-vertical-nav li {
  text-align: right;
}
.no-touch #cd-vertical-nav a {
  display: inline-block;
  /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.no-touch #cd-vertical-nav a:after {
  content: "";
  display: table;
  clear: both;
}
.no-touch #cd-vertical-nav a span {
  float: right;
  display: inline-block;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
}
.no-touch #cd-vertical-nav a:hover span {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.no-touch #cd-vertical-nav a:hover .cd-label {
  opacity: 1;
  padding: 5px;
}

.no-touch #cd-vertical-nav a.is-selected .cd-dot {
  background-color: white;
}
.no-touch #cd-vertical-nav .cd-dot {
  position: relative;
  /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
  top: 8px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
  -moz-transition: -moz-transform 0.2s, background-color 0.5s;
  transition: transform 0.2s, background-color 0.5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.no-touch #cd-vertical-nav .cd-label {
  position: relative;
  margin-right: 10px;
  padding: .4em .5em;
  color: white;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

/* Touch devices */
.touch .cd-nav-trigger {
  display: block;
  z-index: 2;
  position: fixed;
  bottom: 30px;
  right: 5%;
  height: 44px;
  width: 44px;
  border-radius: 0.25em;
  background: rgba(255, 255, 255, 0.9);
}
.touch .cd-nav-trigger span {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #3e3947;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.touch .cd-nav-trigger span::before, .touch .cd-nav-trigger span::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
}
.touch .cd-nav-trigger span::before {
  top: -9px;
}
.touch .cd-nav-trigger span::after {
  bottom: -9px;
}

.touch #cd-vertical-nav {
  position: fixed;
  z-index: 1000;
  right: 5%;
  bottom: 30px;
  width: 90%;
  max-width: 400px;
  max-height: 90%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  border-radius: 0.25em;
  background-color: rgba(255, 255, 255, 0.9);
}
.touch #cd-vertical-nav a {
  display: block;
  padding: 1em;
  border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}
.touch #cd-vertical-nav a span:first-child {
  display: none;
}
.touch #cd-vertical-nav a.is-selected span:last-child {
  color: #d88683;
}
.touch #cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger {
  background-color: transparent;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: rgba(62, 57, 71, 0);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before, .touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  background-color: #3e3947;
  height: 3px;
  width: 20px;
  border-radius: 0;
  left: -8px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0;
}
.touch #cd-vertical-nav li:last-child a {
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  .touch .cd-nav-trigger, .touch #cd-vertical-nav {
    bottom: 40px;
  }
}

@media (max-width: 768px) {
  /* No Touch devices */
  .cd-nav-trigger,
  .no-touch #cd-vertical-nav,
  .no-touch #cd-vertical-nav ul,
  .no-touch #cd-vertical-nav ul li,
  .no-touch #cd-vertical-nav ul li a,
  .no-touch #cd-vertical-nav ul li a .cd-label,
  .no-touch #cd-vertical-nav ul li a .cd-dot {
    display: none !important;
  }

  .no-touch #cd-vertical-nav a:hover .cd-label {
    opacity: 1;
    padding: 5px;
  }

  /* Touch devices */
  .touch #cd-vertical-nav,
  .touch #cd-vertical-nav ul,
  .touch #cd-vertical-nav a,
  .touch .cd-nav-trigger,
  .touch .cd-nav-trigger span,
  .touch .cd-nav-trigger span::before,
  .touch .cd-nav-trigger span::after {
    display: none !important;
  }

}

/* =========================

CUSTOM CSS

==========================*/

strong {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.row {
  margin: 0;
}

.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

.list-inline {
  margin-top: 15px;
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 10px;
  padding-left: 10px;
}

.col {
  position: relative;
  min-height: 1px;
  float: left;
  padding-right: 15px;
  padding-left: 15px;
}

.col-4 {
  width: 33.33333333%;
}

.col-8 {
  width: 66.66666667%;
  margin: auto 0;
}

@media (max-width: 767px) {
  .col {
    width: 100%;
  }
}

.main-logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  padding: 15px;
  text-align: center;
background: -webkit-linear-gradient(left, #f8505f , #e63d3d); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #f8505f, #e63d3d); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #f8505f, #e63d3d); /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #f8505f , #e63d3d); /* Standard syntax (must be last) */
}

.main-logo img{
  width: 200px;
  margin: 0 auto;
}

.container {
  padding-right:15px;
  padding-left:15px;
  margin-right:auto;
  margin-left:auto}
}

@media (min-width:768px) {
  .container {
    width:750px;
  }
}

@media (min-width:992px) {
  .container {
    width:970px;
  }
}

@media (min-width:1200px) {
  .container {
    width:980px;
  }
}

@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 35px;
  }
}

.cd-section .main-content {
  position: relative;
  z-index: 5;
  display: table-cell;
  vertical-align: middle;
  overflow: hidden;
}

#section1 .main-content {
  text-align: center;
}

#section1 .main-content img {
  width: 50%;
  margin: 0 auto;
}

#section1 .main-content #main-title {
  min-width: 250px;
}


#section2 .main-content p{
  font-size: 18px;
}

.cd-section .main-content > .container > span {
  color: #FFF;
  font-family: 'Abril Fatface', cursive;
  font-size: 22px;
}

.cd-section .main-content > .container > h3 {
  margin: 15px 0;
  color: #e3a716;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
}

#section8 .main-content > .container .col-8 {
  padding: 50px 0;
}

#section8 .main-content > .container  span {
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

#section8 .main-content > .container  h2 {
  margin: 10px 0;
  color: #e3a716;
  font-family: 'Abril Fatface', cursive;
  font-size: 38px;
  text-transform: uppercase;
}

#section8 .main-content > .container p.combination {
  margin-top: 30px;
}

#section8 .main-content > .container p.combination strong{
  font-size: 16px;
}

#section2 .btn,
#section8 .btn {
  display: inline-block;
  padding: 8px 15px;
  border: 2px solid #fff;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 0;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.42857143;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#section2 .btn-big,
#section8 .btn-big {
  padding: 15px 30px;
  border: 2px solid #fff;
  font-size: 20px;
}

#section2 .btn {
  margin-top: 30px;
}

#section2 .main-content > .container > img {
  display: block;
  margin: 0px auto;
}

#section2 .main-content > .container > p {
  display: block;
  margin: 30px auto;
}

#section8 .btn i{
  margin-left: 10px;
}

#section2 .result-button p,
#section8 .result-button p {
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

#section8 .result-button img {
  display: block;
  margin: 30px auto;
}

#section8 #share {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 15px;
}
#section8 #share p {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

#section8 #share li a {
  font-size: 28px;
  color: #fff;
}

.disabled{
  opacity: 50% !important;
  cursor: not-allowed !important;
}
#resultado1,
#resultado2,
#resultado3,
#resultado4 {
  display: none;
}
.numbers {
  margin-top: 10px;
}

#section8 .main-content > .container .fa-stack {
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.6em;
}

#section8 .main-content > .container .fa-stack .fa-stack-2x {
  color: #f5f5f5;
  font-size: 1.6em;
}

#section8 .main-content > .container .fa-stack .fa-inverse {
  color: #333;
  font-weight: 900;
  letter-spacing: 0;
}

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -125px;
  padding: 15px;
  width: 250px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #333;
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  white-space: normal;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

@media(max-width: 767px) {

  body {
    overflow: scroll;
    min-width: 320px;
  }

  body, html {
    height: 100%;
  }

  .cd-section {
    min-height: initial;
    min-width: initial;
    height: auto;
    width: 100%;
    position: relative;
    display: block;
    z-index: 4;
    padding: 2em 0;
  }

  .cd-section .main-content {
    position: relative;
    display: block;
    padding-top: 30px;
  }

  #section1 {
    min-height: 100%;
    min-width: 100%;
    height: 100%;
    width: 100%;
    position: relative;
    display: table;
  }
  #section1 .main-content {
    display: table-cell;
    vertical-align: middle;
    padding-top: 0;
  }

  #section1 .main-content #main-title {
    min-width: 250px;
  }

  .main-logo img {
    width: 120px;
  }

  #section1 .cd-scroll-down {
    position: absolute;
    left: 50%;
    right: auto;
    z-index: 10;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 10px;
    width: 25px;
    height: 29px;
    background: url("../img/cd-icon-arrow-desktop.svg") no-repeat center center;
    fill: #fff;
  }

  #section2 img {
    width: 60px;
  }

  #section2 .main-content p {
    font-size: 14px;
  }

  #section2 .btn-big, #section8 .btn-big {
    padding: 15px;
    border: 2px solid #fff;
    font-size: 13px;
  }

  .cd-section .main-content > .container > span {
    color: #FFF;
    font-family: 'Abril Fatface', cursive;
    font-size: 16px;
  }

  .cd-section .main-content > .container > h3 {
    font-size: 16px;
    margin-bottom: 0;
  }

  #section8 .main-content > .container span {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
  }

  #section8 .main-content > .container h2 {
    margin: 10px 0;
    color: #e3a716;
    font-family: 'Abril Fatface', cursive;
    font-size: 26px;
    text-transform: uppercase;
  }

  .cd-section {
    height: auto;
    width: 100%;
    position: relative;
    display: block;
    z-index: 4;
    padding: 2em 0;
  }

  .cd-section .main-content {
    display: block;
  }

  .cd-section p {
    font-size: 14px;
    line-height: 1.4;
  }

  #section8 .main-content > .container .col-4 {
    display: none;
  }

  #section8 .main-content > .container p.combination {
    margin-top: 20px;
  }

  #section2 .btn {
    margin-top: 0;
  }

  #section2 .result-button p,
  #section8 .result-button p {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
  }

  #section8 .result-button img {
      margin: 15px auto;
  }

  #section8 #share {
    position: relative;
    right: 0;
    bottom: 0px;
    left: 0px;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
  }

  #section8 .main-content > .container .fa-stack {
    width: 1.4em;
    height: 1.4em;
    line-height: 1.4em;
  }

  #section8 .main-content > .container .fa-stack .fa-stack-2x {
    font-size: 1.4em;
  }

  #diamond {
    display: none !important;
  }

}
