* {
  margin: 0;
  padding: 0;
}
body, html {
  min-height: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
body.no-scroll {
  overflow: hidden;
}

.hidden {
  visibility: hidden;
}

body strong {
  font-weight: 500;
}

/* ================GERAIS */
button {
  cursor: pointer;
}
p, span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/* ================END GERAIS */


/* ================HEADER */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

#masthead .topbar {
  background-color: #ffffff;
  margin: 0;
  height: 6rem;
  max-width: none;
}
/* ================END HEADER */

/* ================CONTENT HEADER */

header.hud {
  z-index: 9;
  position: absolute;
  width: 100%;
  max-width: 500px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100px;
  top: 30px;
}

header.hud .lead {
  color: #3f929d;
  font-weight: 400;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.2em;
  margin: 12px auto;
  max-width: 15em;
  -webkit-transition: opacity 0.7s;
  transition: opacity 0.7s;
  -webkit-transition-timing-function: steps(3, end);
          transition-timing-function: steps(3, end);
}

header.hud .logo {
  display: none;
  height: 54px;
  width: auto;
  margin: 0 auto;
}

header.hud.positive .logo-positive:not(.logo-small) {
  display: block;
}
header.hud.negative .logo-negative:not(.logo-small) {
  display: block;
}


header.hud .lives.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}

header.hud .lives .life {
  visibility: hidden;
  opacity: 0;
  padding: 0;
  margin: 0;
  background-image: url('../img/lives-sprite.png');
  background-size: 21px;
  background-position: top left;
  width: 21px;
  height: 18px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-transition-timing-function: steps(1, end);
          transition-timing-function: steps(1, end);
}
header.hud .lives .life.hurt {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: hurt;
  animation-name: hurt;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps(1);
          animation-timing-function: steps(1);
}
header.hud .lives .life.off {
  background-position: bottom left;
}
header.hud .lives .life#l1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s
}
header.hud .lives .life#l2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s
}

header.hud .lives.visible .life {
  visibility: visible;
  opacity: 1;
}

@media (max-height: 500px) {
  header.hud {
    height: 70px;
  }

  header.hud .logo:not(.logo-small) {
    display: none !important;
  }

  header.hud.positive .logo-positive.logo-small {
    display: block !important;
  }
  header.hud.negative .logo-negative.logo-small {
    display: block !important;
  }

  header.hud .logo {
    height: 24px;
  }

  header.hud .lives.visible {
    margin-top: 12px;
  }

}

/* ================END CONTENT HEADER */

/* ================GENERAL SECTIONS */
html,
body {
  overflow-y: hidden;
}
html.scroll,
body.scroll {
  overflow-y: auto;
  overflow-x: hidden;
}
article {
  height: 100vh;
  padding-top: 15px;
  position: relative;
}

article section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 100vh;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 145px;
  -webkit-transition: top 1s, background-color 1s;
  transition: top 1s, background-color 1s;
  -webkit-transition-timing-function: steps(12, end), steps(3, end);
          transition-timing-function: steps(12, end), steps(3, end);
  padding-bottom: 50px;
}

article section.paused {
  -webkit-transition: none;
  transition: none;
}

section.visible {
  top: 0;
}

section.intro {
    background-color: #bfe0ea;
}

section .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 500px;
  max-height: 450px;
  padding: 0 15px;
}

@media (max-height: 500px) {
  article section {
    padding-top: 80px;
  }
}

@media (min-height: 600px) {
  header.hud {
    top: calc(50vh - 225px);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

  article section {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
  }

  section .content {
    height: 450px;
    -ms-flex-item-align: center;
        align-self: center;
    margin-top: 165px;
    position: relative;
  }
}

/* ================END GENERAL SECTIONS */

/* ================INTRO */
.btn-start {
  width: 129px;
  height: 39px;
  background-image: url(../img/btn-start-sprite.png);
  background-color: transparent;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border: none;
  margin: 0.5em auto 0 auto;
  outline: none;
}
.btn-start:active {
  background-position: bottom center;
}

.btn-start span {
  visibility: hidden;
}

.intro .content {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

img.intro-img,
img.intro-img-small {
  width: 500px;
  max-width: none;
}


.intro-img-small {
  display: none;
}

@media (max-height: 500px) {
  .intro-img-small {
    display: block;
  }
  .intro-img {
    display: none;
  }
}

/* ================END INTRO */

/* ================QUESTION */
section.question {
  background-color: #e7ebb3;
}
section.question[data-question="1"] {
  background-color: #fdd9be;
}
section.question[data-question="2"] {
  background-color: #d3c3da;
}

/* background */
.question:before {
  /* content: ''; */
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 115px;
  top: 0;
  left: 0;
  background-image: url('../img/bkg-sky-0b.png');
  background-position: center bottom;
  background-repeat: repeat;
  background-size: 500px;
  -webkit-transition: background-image 1s, opacity 1s;
  transition: background-image 1s, opacity 1s;
  -webkit-transition-timing-function: steps(3, end);
          transition-timing-function: steps(3, end);
  -webkit-animation-name: moveClouds;
          animation-name: moveClouds;
  -webkit-animation-duration: 1000s;
          animation-duration: 1000s;
  -webkit-animation-timing-function: steps(500, end);
          animation-timing-function: steps(500, end);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.question.clouded:before {
  opacity: 1;
}
.question[data-question="1"]:before {
  background-image: url('../img/bkg-sky-1b.png');
}
.question[data-question="2"]:before {
  background-image: url('../img/bkg-sky-2b.png');
}

.question:after {
  content: '';
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 115px;
  top: 0;
  left: 0;
  background-image: url('../img/bkg-sky-0.png');
  background-position: center bottom;
  background-repeat: repeat;
  background-size: 500px;
  -webkit-transition: background-image 1s, opacity 1s;
  transition: background-image 1s, opacity 1s;
  -webkit-transition-timing-function: steps(3, end);
          transition-timing-function: steps(3, end);
  -webkit-animation-name: moveClouds;
          animation-name: moveClouds;
  -webkit-animation-duration: 400s;
          animation-duration: 400s;
  -webkit-animation-timing-function: steps(200, end);
          animation-timing-function: steps(200, end);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.question.clouded:after {
  opacity: 1;
}
.question[data-question="1"]:after {
  background-image: url('../img/bkg-sky-1.png');
}
.question[data-question="2"]:after {
  background-image: url('../img/bkg-sky-2.png');
}


/* base+q0 */
section.question .balloon {
  position: relative;
  width: 90%;
  font-size: 1.2rem;
  line-height: 1.4em;
  -o-border-image: url('../img/bkg-balloon-0.png') 24 42 66 43 repeat;
     border-image: url('../img/bkg-balloon-0.png') 24 42 66 43 repeat;
  border-top: 12px solid;
  border-right: 21px solid;
  border-bottom: 33px solid;
  border-left: 21px solid;
  margin: 0 auto;
  -webkit-transition: border-image 1s;
  transition: border-image 1s;
  transition: border-image 1s, -o-border-image 1s;
  -webkit-transition-timing-function: steps(3, end);
          transition-timing-function: steps(3, end);
}
/* q1 */
section.question[data-question="1"] .balloon {
  -o-border-image: url('../img/bkg-balloon-1.png') 24 42 66 43 repeat;
     border-image: url('../img/bkg-balloon-1.png') 24 42 66 43 repeat;
}
/* q2 */
section.question[data-question="2"] .balloon {
  -o-border-image: url('../img/bkg-balloon-2.png') 24 42 66 43 repeat;
     border-image: url('../img/bkg-balloon-2.png') 24 42 66 43 repeat;
}

.balloon p {
  background-color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.2em;
}

.alternatives {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  -webkit-transition-timing-function: steps(3, end);
          transition-timing-function: steps(3, end);
  margin: auto 0;
}
.alternatives.lock {
  pointer-events: none;
}

section.question.answered .alternatives {
  display: none;
}

.player {
  min-width: 48px;
  height: 99px;
  margin: 0 auto 20px auto;
  background-position: center top;
  background-size: 48px;
  background-repeat: no-repeat;
  cursor: pointer;
  position: relative;
}
section.question[data-question="1"] .player {
  background-position: center center;
}
section.question[data-question="2"] .player {
  background-position: center bottom;
}
section.question .player:active {
  background-color: #e7ebb3;
  background-blend-mode: multiply;
}
section.question[data-question="1"] .player:active {
  background-color: #fdd9be;
}
section.question[data-question="2"] .player:active {
  background-color: #d3c3da;
}

.player .label {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 100px;
}

section.question .feedback {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  -webkit-transition-timing-function: steps(3, end);
          transition-timing-function: steps(3, end);
  background-image: url(../img/bkg-question-0.gif);
  background-size: 150px;
  background-position: center top;
  background-repeat: no-repeat;
  margin: auto;
}
section.question.answered .feedback {
  display: block;
}
section.question[data-question="1"] .feedback {
  background-image: url('../img/bkg-question-1.gif');
}
section.question[data-question="2"] .feedback {
  background-image: url('../img/bkg-question-2.gif');
}

.feedback .player .label {
  position: absolute;
  width: 100%;
}

.feedback .feedback-answer {
  height: 22px;
  margin: 40px auto 0 auto;
}

.question .cta-choose {
  display: none;
}

@media (min-height: 600px) {
  .question:after {
    height: calc(50vh - 175px);
  }
  .question:before {
    height: calc(50vh - 175px);
  }

  .question .cta-choose {
    display: block;
    width: 142px;
    -webkit-box-flex: 36px;
        -ms-flex: 36px 0 0px;
            flex: 36px 0 0;
    margin: auto;
    background-image: url(../img/cta-choose.png);
    background-size: 142px;
    background-position: top center;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    -webkit-transition-timing-function: steps(3, end);
            transition-timing-function: steps(3, end);
  }
  .question[data-question="1"] .cta-choose {
    background-position: 50% center;
  }
  .question[data-question="2"] .cta-choose {
    background-position: bottom center;
  }
  section.question.answered .cta-choose {
    display: none;
  }

  .balloon p {
    font-size: 1.8rem;
    line-height: 1.4em;
  }

}

/* ================END QUESTION */

/* ================ANSWER */
section.answer {
  background-color: #fdd66f;
  background: url(../img/gradient-answer-alpha.png) center calc(50vh + 125px) repeat-x/250px, linear-gradient(to bottom, rgba(253,214,111,1) calc(50vh + 400px),rgba(247,193,91,1) calc(50vh + 475px),rgba(247,193,91,1) 100%);
}

.answer img {
  width: auto;
  height: 105px;
  margin: 0 auto;
}

.answer h3, .answer p {
  font-family: 'Flama', sans-serif;
  color: #4b2f1c;
  margin: 0;
  line-height: 1.1em;
}

.answer p.text {
  text-align: center;
  margin: 5px 0 20px 0;
}

.chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.chart .labels,
.chart .bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.chart p {
  font-weight: 600;
  font-size: 1.2rem;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
}

.chart .labels {
  -webkit-box-flex: 50%;
      -ms-flex: 50% 1 1;
          flex: 50% 1 1;
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.chart .bars {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 3em;
  -webkit-box-flex: 50%;
      -ms-flex: 50% 1 0px;
          flex: 50% 1 0;
}

.bar {
  width: 0;
  -webkit-box-flex: 15px;
      -ms-flex: 15px 0 0px;
          flex: 15px 0 0;
  -o-border-image: url('../img/bkg-bar-answer.png') 6 6 12 6 repeat;
     border-image: url('../img/bkg-bar-answer.png') 6 6 12 6 repeat;
  border-top: 3px solid;
  border-right: 3px solid;
  border-bottom: 6px solid;
  border-left: 3px solid;
  -webkit-transition: width 2s steps(6, end);
  transition: width 2s steps(6, end);
  -webkit-box-shadow: inset 0 0 0 20px #ffffff;
          box-shadow: inset 0 0 0 20px #ffffff;
  position: relative;
  top: 2px;
}

.bar span {
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  top: -60%;
  right: -3.2em;
  width: 2.5em;
  line-height: 1em;
}
.bar span:after {
  content: '%';
}

.answer .btn-next {
  display: none;
}

.answer .btn-next {
  width: 33px;
  height: 33px;
  background-image: url('../img/btn-next-sprite.png');
  background-color: transparent;
  background-size: 33px;
  background-position: top center;
  background-repeat: no-repeat;
  border: none;
  margin: 1em auto;
  outline: none;
}

.answer .btn-ending {
  width: 177px;
  height: 33px;
  background-image: url('../img/btn-ending-sprite.png');
  background-color: transparent;
  background-size: 177px;
  background-position: top center;
  background-repeat: no-repeat;
  border: none;
  margin: 1em auto;
  outline: none;
}

.answer .btn-next:active,
.answer .btn-ending:active {
  background-position: bottom center;
}

/* ================END ANSWER */


/* ================THE END */
section.the-end {
  background-color: #42b86a;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 100px;
  background-image: url('../img/gradient-ending-alpha.png');
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 303px;
}

.the-end .content {
  -webkit-box-flex: 100vh;
      -ms-flex: 100vh 1 0px;
          flex: 100vh 1 0;
  max-height: none;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

section.the-end h2 {
  margin: 0;
}

.the-end .content .img-prize {
  width: auto;
  height: 230px;
  margin: 0 auto 12px auto;
}

.the-end .content .img-title {
  height: 24px;
  width: auto;
  margin: 0 auto 12px auto;
}

.the-end .btn-arrow-down {
  width: 21px;
  height: 27px;
  background: url(../img/btn-arrow-down-sprite.png) no-repeat top center;
  background-size: 21px;
  border: none;
  margin: 12px auto;
  outline: none;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: moveArrowDown;
  animation-name: moveArrowDown;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps(2);
          animation-timing-function: steps(2);
}
.the-end .btn-arrow-down:active {
  background-position: bottom center;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.the-end p,
.the-end span {
  color: #ffffff;
}

.the-end p.lead {
  margin: 24px 0;
  font-weight: 500;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.3em;
  color: #266a34;
}

.the-end .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 45px 15px 15px 15px;
  max-width: 500px;
  -ms-flex-item-align: center;
      align-self: center;
}

.the-end .card {
  margin: 24px 0;
}

.the-end .card img {
  height: 87px;
  width: auto;
  margin: 0 auto;
}

.the-end .card h3 {
  font-family: 'Flama', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #ffffff;
  margin: 12px auto;
}

.the-end .card p.text {
  line-height: 1.2;
  text-align: center;
  margin: 12px 0 24px 0;
}

.the-end .bar {
  -o-border-image: url('../img/bkg-bar-ending.png') 6 6 12 6 repeat;
     border-image: url('../img/bkg-bar-ending.png') 6 6 12 6 repeat;
  -webkit-box-shadow: inset 0 0 0 20px #fdd66f;
          box-shadow: inset 0 0 0 20px #fdd66f;
}

.the-end footer p.credits {
  padding-top: 70px;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.4em;
  text-align: center;
}
.the-end footer p.credits:before {
  content: '';
  position: absolute;
  width: 60px;
  height: 51px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url('../img/cavalo.png');
  background-position: center top;
  background-size: 60px;
  background-repeat: no-repeat;
}

.the-end footer p.team,
.the-end footer p.team span,
.the-end footer h4 {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4em;
  color: #256b34;
}

.the-end footer h4 {
  text-align: center;
  margin-top: 2em;
}

.the-end footer .notes {
  font-size: 1.2rem;
  line-height: 1.2em;
  color: #256b34;
  margin-top: 3em;
}


hr {
  width: 15px;
  height: 0;
  border-top: 3px dotted #319446;
  background-color: transparent;
  margin: 24px auto;
}

@media (min-height: 600px) {
  .the-end .content {
    -webkit-box-flex: calc(100vh - 165px) 1 0;
        -ms-flex: calc(100vh - 165px) 1 0;
            flex: calc(100vh - 165px) 1 0;
    max-height: none;
    padding-top: calc(50vh - 225px);
  }
}

/* ================END THE END */

/* ================SHARE */

.the-end .btn-share {
  width: 175px;
  height: 46px;
  background: url(../img/bkg-share.png) no-repeat top center;
  background-size: 175px;
  border: none;
  margin: 12px auto;
  outline: none;
}
.the-end .btn-share:active {
  background-position: bottom center;
}

button.btn_share {
  position: absolute;
  width: 2em;
  height: 2em;
  right: 15px;
  top: 15px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #006194;
  color: rgb(0, 97, 148);
  cursor: pointer;
}
button.btn_share {
  top: calc(2em + 20px);
}
button.btn_share:hover {
    background: #dee8ed;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38,50,56,.75);
  z-index: 2;
  z-index: 1001;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
}

.overlay.show {
  display: flex;
}

.modal {
  position: relative;
  width: 28.8rem;
  align-self: center;
  justify-content: flex-end;
  border-image: url(../img/bkg-modal.png) 14 20 22 14 repeat;
  border-top: 7px solid;
  border-right: 10px solid;
  border-bottom: 11px solid;
  border-left: 7px solid;
}

.modal .footer{
  position: absolute;
  bottom: -66px;
  width: 100%;
  height: 39px;
  display: flex;
}

.modal .modal-content {
  background-color: #ffffff;
  padding: 24px 12px 12px 12px;
}

.modal .social {
  width: 100%;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.modal a[role=button]{
  width: 50px;
  height: 45px;
  background:#ffffff;
  margin: 0;
  border-bottom: 0;
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  background-size: 50px;
}
.the-end .modal .facebook {
  background-image: url(../img/share-fb.png);
}
.the-end .modal .whatsapp {
  background-image: url(../img/share-wp.png);
}
.the-end .modal .twitter {
  background-image: url(../img/share-tw.png);
}

.modal button,
.modal input[type=text] {
  outline: none;
}
.modal button.close {
  width: 33px;
  height: 39px;
  border: none;
  margin: auto;
  cursor: pointer;
  background-image: url(../img/close-btn.png);
  background-size: 33px;
  background-color: transparent;
}

.modal hr {
  border-top-color: #e6e7e8;
  margin-top: 28px;
}

.modal .clipboard {
  background: #fff;
  padding: 0 15px;
  position: relative;
}

.modal .clipboard #clipboard-text {
  letter-spacing: .033em;
  color: #000000;
  font-size: 1.2rem!important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 3.5rem;
  width: 100%;
  border: 0;
  padding: 0;
  font-family: Flama,sans-serif;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.modal .clipboard button {
  width: auto;
  padding: 0 0.7em;
  position: absolute;
  margin: 0;
  min-width: auto!important;
  cursor: pointer;
  top: 0;
  right: 15px;
  border-image: url(../img/bkg-btn-copy.png) 8 8 14 8 repeat;
  border-top: 4px solid;
  border-right: 4px solid;
  border-bottom: 7px solid;
  border-left: 4px solid;
  box-shadow: inset 0 0 0 90px #f1f1f2;
  background-color: transparent;
}
.clipboard button::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: -10.4rem;
  bottom: 0;
  width: 10rem;
  background: -webkit-gradient(linear,left top,right top,from(rgba(255,255,255,0)),to(white));
  background: -webkit-linear-gradient(left,rgba(255,255,255,0),#fff);
  background: linear-gradient(to right,rgba(255,255,255,0),#fff);
  pointer-events: none;
}

.clipboard button span {
  letter-spacing: .033em;
  color: #78909c;
  font-size: 1.2rem!important;
  white-space: nowrap;
}

.clipboard label {
    font-size: 1.3rem;
}

.screen-reader {
  position: absolute!important;
  margin: -1px;
  border: 0;
  padding: 0!important;
  width: 1px!important;
  height: 1px!important;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

@media (min-width: 769px) {
  /* .modal a[role=button].whatsapp{
    display: none;
  } */
}
/* ================END SHARE */



/* ================TRANSITIONS AND ANIMATIONS */
@-webkit-keyframes hurt {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes hurt {
  from,
  50%,
  to {
    background-position: bottom center;
  }

  25%,
  75% {
    background-position: top center;
  }
}

@-webkit-keyframes moveClouds {
	from {
    background-position-x: 50%;
	}
	to {
    background-position-x: calc(50% + 500px);
	}
}

@keyframes moveClouds {
	from {
    background-position-x: 50%;
	}
	to {
    background-position-x: calc(50% + 500px);
	}
}

@-webkit-keyframes moveArrowDown {
	from, to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
	}
	50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
	}
}

@keyframes moveArrowDown {
  from, to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
	}
	50% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
	}
}
