* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Lato", sans-serif;
  --background-50: #f5d0b3;
  --background-800: #E8772E;
}

html,
body {
  height: auto;
  background-color: rgba(241, 241, 241, 0.16);
}

.snake_element {
  width: 100%;
  height: 3700px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../img/mdb-v2/snake.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset -1px -1px 20px 1px var(--background-50);
}

/****** CLASSES PADRÃO ******/


.center {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

.w50 {
  width: 50%;
}



.animated {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2.5s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 1s;
}

/* BOTÃO FIXO DONATE */
.botaoDonate a {
  width: 250px;
  height: auto;
  line-height: 50px;
  text-decoration: none;
  font-family: var(--font-primary);
  background-color: #4CAF50;
  color: white;
  font-size: 15px;
  font-weight: bolder;
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -10%);
  z-index: 1003;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.6s ease background-color;
}

.botaoDonate a:hover {
  background-color: #378539;
}

/* ALERTA DO BOTÃO COPIAR O PIX */



.alertCopied {
  display: none;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1009;
  position: relative;
}

.alertCopied p {
  width: 230px;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  font-variant: all-small-caps;
  background-color: #4CAF50;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 20px;
  position: fixed;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 1000;
  transition: 0.7s ease;
}


.alertCopied .alert_copied_span {
  width: 340px;
  height: auto;
  background-color: #f1a636;
  color: white;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  z-index: 1001;
  white-space: pre;
  position: fixed;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -58%);
  transition: 0.7s ease;
}

/* ALERTA DO BOTÃO COPIAR O PIX */


/* METODO DE PAGAMENTO */



section.payments {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 1004;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
}

div.close {
  width: 32px;
  height: 32px;
  font-weight: bolder;
  background-color: #666;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1005;
  cursor: pointer
}

div.close svg path {
  fill: white;
}


.container {
  background-color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  /* Adjust as needed */
}

#selectPrice {
  background-color: #147638 !important;
}

#selectPrice p {
  color: white;
}

div.logo img {
  display: block;
  width: 62px;
  height: 62px;
  background-color: transparent;
  margin: 0 auto 20px auto;
  text-align: center;
  border-radius: 50%;
}

div.paymentsQRCODE {
  width: 100%;
  height: 99vh;
  position: relative;
  top: 0;
  left: 0;
  background-color: white;
  border-radius: 25px;
  padding: 10px;
  margin: 5px 0;
  box-shadow: 0px 0px 20px 0px black;
  overflow: auto;

}

.main-content h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.main-content .description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
  /* Align section titles to left */
}

/* Donation Input Section */
.donation-input-section {
  margin-bottom: 30px;
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 15px;
}

.currency {
  font-size: 18px;
  font-weight: 700;
  color: #555;
  margin-right: 5px;
}

.donation-amount {
  width: 100%;
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-align: right;
  /* Align amount to the right */
}

.preset-amounts {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  margin-bottom: 15px;
}

.amount-btn {
  background-color: #fff;
  border: 1px solid #65D895;
  /*   */
  color: #65D895;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  flex: 1;
  /* Make buttons take equal width */
}

.amount-btn:hover {
  background-color: #65d895;
  color: #fff;
}

.min-donation {
  font-size: 18px;
  color: rgb(197, 15, 15);
  text-align: center;
}

/* Payment Method Section */
.payment-method-section {
  margin-bottom: 30px;
}

.payment-methods {
  display: flex;
  justify-content: flex-start;
  /* Align payment buttons to left */
}

.payment-btn {
  background-color: #e0f7e9;
  /* Light green */
  border: 1px solid #65d895;
  color: #65d895;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.payment-btn.active {
  background-color: #65d895;
  color: #fff;
}

.payment-btn i {
  font-size: 18px;
}

/* Boost Donation Section */
.boost-donation-section {
  margin-bottom: 30px;
}

.boost-donation-section .description {
  text-align: left;
  /* Align description to left */
  margin-bottom: 15px;
}

.info-icon {
  color: #65d895;
  font-size: 14px;
}

.boost-options {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  flex-wrap: wrap;
  /* Allow wrapping on smaller screens */
}

.boost-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  width: calc(33% - 15px);
  /* Three items per row with gap */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.boost-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.boost-item img {
  width: 60px;
  /* Adjust image size */
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.boost-item p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.boost-item .boost-price {
  font-weight: 700;
  color: #65d895;
  margin-top: 5px;
}

/* Summary Section */
.summary-section {
  margin-top: 20px;
  margin-bottom: 30px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
  color: #555;
}

.summary-row.total-row {
  font-weight: 700;
  font-size: 18px;
  color: #333;
  border-top: 1px dashed #eee;
  padding-top: 10px;
  margin-top: 15px;
}

/* Contribute Button */
.contribute-btn {
  background-color: #65d895;
  color: #fff;
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contribute-btn:hover {
  background-color: #00a850;
}


/* QR CODE PIX  */

#ValorREAL {
  font-weight: bolder;
}

section.qrcodePIX {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 1006;
}

div.overlayQRCODE {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgb(231, 231, 231);
  z-index: 1005;
}

.pix_qr_cola {
  width: 600px;
  height: 80vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  background-color: white;
  border-radius: 25px;
  padding: 60px 10px 10px 10px;
  z-index: 1007;
}

.pix_qr_cola .imgQRCODE h3 {
  font-size: 42px;
  font-weight: bolder;
  text-align: center;
  font-variant: all-small-caps;
}

div.pix_qr_cola .imgQRCODE p {
  margin: 40px 0 10px 0;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.pix_qr_cola .copiaecola h3 {
  font-size: 42px;
  font-weight: bolder;
  text-align: center;
  font-variant: all-small-caps;
}

div.pix_qr_cola .copiaecola p {
  margin: 40px 0 10px 0;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

div.pix_qr_cola .imgQRCODE img {
  display: block;
  margin: 0 auto;
  text-align: center;
}

div.pix_qr_cola .PIXBUTTON p {
  display: block;
  width: 140px;
  height: 35px;
  line-height: 35px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  color: white;
  background-color: #4CAF50;
  border: 0;
  margin: 20px auto 10px auto;
  cursor: pointer;
  transition: 0.6s ease;
}

div.pix_qr_cola .copiaecola button:hover {
  background-color: #378539;
}

/* QR CODE PIX  */

/* METODO DE PAGAMENTO */


/****** CLASSES PADRÃO ******/



/****** HEADER ******/

.header_mdb_v2 {
  display: inline-block;
  width: 100%;
  height: auto;
  margin: 20px 0;
  position: relative;
}

.header_mdb_v2 img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 26px;
  margin: 0 auto;
}

/****** HEADER ******/

/****** SESSÃO INICIAL ******/

section.inicio {
  display: block;
  width: 100%;
  height: 580px;
  position: relative;
  padding: 10px;
}

section.inicio .image {
  width: 60%;
  height: 400px;
  border-radius: 20px;
  background-image: url("../../img/mdb-v2/inicial.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

section.inicio .campanha_texto {
  width: 40%;
  height: 400px;
  padding: 0 20px;
  text-align: center;
}

section.inicio .campanha_texto h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  color: #333333;
  margin: -10px 0 20px 0;
  line-height: 25px;
}

section.inicio .campanha_texto p {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: #555555;
  line-height: 19px;
}

section.inicio .campanha_texto p:nth-of-type(2) {
  font-size: 17px;
  color: black;
  line-height: 19px;
  margin: 10px 0;
  font-weight: bold;
}

section.inicio .campanha_texto .pixcopiaecolar {
  display: inline-block;
  width: 400px;
  height: 40px;
  background-color: var(--background-50);
  margin: 10px 0;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

section.inicio .campanha_texto .pixcopiaecolar:hover {
  background-color: rgba(212, 113, 43, 0.404);
}

section.inicio .campanha_texto .pixcopiaecolar p {
  display: block;
  line-height: 40px;
  color: white;
  font-size: 13px;
  margin-left: 15px;
  text-align: left;
}

section.inicio .campanha_texto .pixcopiaecolar span {
  display: block;
  width: 90px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 25px;
  color: white;
  background-color: #4CAF50;
  position: absolute;
  top: 5px;
  right: 5px;

}


section.inicio .campanha_texto p:nth-of-type(3) {
  color: black;
  font-size: 19px;
  font-weight: bold;
  line-height: 19px;
  margin: 10px 0;
}



/****** SESSÃO INICIAL ******/

/****** SESSÃO HELP PAGAMENT ******/

section.help_pagment {
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
  z-index: 1;
  position: relative;
}

section.help_pagment>div.center>div.flex {
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}


section.help_pagment div.element_value {
  display: flex;
  width: 300px;
  height: 60px;
  background-color: var(--background-50);
  border-radius: 10px;
  margin: 15px 5px;
}

section.help_pagment div.element_value h3 {
  display: inline-block;
  height: 25px;
  font-size: 20px;
  line-height: 25px;
  background-color: var(--background-800);
  color: white;
  margin: 0 10px;
  position: relative;
  top: 15px;
  border-radius: 5px;
  white-space: pre;
  padding: 0 5px;
}

section.help_pagment div.element_value p {
  display: inline-block;
  font-size: 15px;
  text-align: left;
  position: relative;
  padding: 5px;
}

/****** SESSÃO HELP PAGAMENT ******/


/****** SESSÃO BEFORE AND AFTER ******/

section.before_and_after {
  display: block;
  width: 100%;
  height: 1020px;
  margin: 60px 0 0 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

section.before_and_after div.container_after_before {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

section.before_and_after div.container_after_before .element_before {
  width: auto;
  margin: 10px;
}

section.before_and_after div.container_after_before .element_before h3,
section.before_and_after div.container_after_before .element_after h3 {
  width: 130px;
  color: white;
  font-size: 22px;
  font-weight: bolder;
  text-transform: uppercase;
  position: absolute;
  margin-top: 20px;
  margin-left: 15px;
  border-radius: 10px;
}

section.before_and_after div.container_after_before .element_before img,
section.before_and_after div.container_after_before .element_after img {
  border-radius: 20px;
}


.description_before_after_dog {
  width: 70%;
  margin: 20px auto 0 auto;
  font-family: var(--font-secondary);
  font-size: 16px;
  color: #555555;
  line-height: 22px;
  text-align: center;
}

.slick-dots {
  position: relative;
}

.slick-dots li {
  display: inline-block;
  position: relative;
  padding: 5px;
  margin: 15px 5px;
}

.slick-dots li button {
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: white;
  border-radius: 50%;
  background-color: var(--background-800);
  border: none;
  cursor: pointer;
  transition: 0.4s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
  background-color: #f1a636;
  border: 2px solid white;
}



.slick-next,
.slick-prev {
  display: none !important;
}

/****** SESSÃO BEFORE AND AFTER ******/

/****** SESSÃO DEPOIMENTOS ******/

section.depoimentos {
  display: block;
  width: 100%;
  height: auto;
  margin: 100px 0 0 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.personal_depoimentos {
  width: 80%;
  margin: 0 auto;
  font-family: var(--font-secondary);
  font-size: 16px;
  color: #555555;
  line-height: 22px;
  text-align: center;
}

.personal_depoimentos img {
  display: block;
  width: 100%;
  max-width: 80px;
  text-align: center;
  margin: 10px auto;
  border-radius: 5px;
}


.personal_depoimentos h2 {
  font-size: 22px;
  font-weight: bolder;
  text-transform: uppercase;
  color: #f1a636;
}

/****** SESSÃO DEPOIMENTOS ******/


/****** SESSÃO HELP ME ******/

section.help_me {
  display: block;
  width: 100%;
  height: auto;
  margin: 100px 0 0 0;
  position: relative;
  z-index: 1;
}


section.help_me .help_me_texto {
  width: 100%;
  margin: 0 auto;
  font-family: var(--font-secondary);
  font-size: 16px;
  color: #555555;
  position: relative;
  padding: 0 20px;
}


section.help_me .help_me_texto span {
  padding: 10px;
  font-size: 22px;
  background-color: #4CAF50;
  color: white;
  text-transform: uppercase;
  border-radius: 25px;
}

section.help_me .help_me_texto h2 {
  width: 480px;
  font-size: 42px;
  font-weight: bolder;
  margin: 10px 0;
  color: black;
}

section.help_me .help_me_texto p {
  width: 60%;
  font-size: 15px;
  margin: 10px 0;
  line-height: 22px;
}

section.help_me .help_me_texto a {
  display: inline-block;
  width: 200px;
  height: 40px;
  background-color: var(--background-800);
  text-align: center;
  font-weight: bolder;
  margin: 20px 0;
  font-size: 18px;
  line-height: 40px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  transition: background-color 0.6s ease;
  position: absolute;
  top: 0;
  right: 20px;
}

section.help_me .help_me_texto a:hover {
  background-color: #f1a636;
}

div.nav_help {
  display: flex;
  position: relative;
  top: 80px;
  padding: 0 20px;
}

div.nav_help .element_name_help_texto {
  width: 60%;
  font-family: var(--font-secondary);
}

div.nav_help .element_name_help_texto .element_name_help_children {
  width: 100%;
  height: 70px;
  background-color: whitesmoke;
  color: black;
  text-align: left;
  margin: 50px 0;
  line-height: 70px;
  border-radius: 35px;
  padding: 0 30px;
  position: relative;
  top: 50px;
  cursor: pointer;
  transition: background-color 0.6s ease, width 0.6s ease;
}

.element_name_help_children[target='activeWIDTH'] {
  width: 120% !important;
  background-color: #e9e9e9 !important;
}

div.nav_help .element_name_help_texto .element_name_help_children:hover {
  background-color: #e9e9e9;
}


div.nav_help .element_name_help_img {
  width: 100%;
  height: 100%;
  background-color: #e9e9e9;
  margin: 50px 0 0 20px;
  padding: 50px;
  border-radius: 25px;
  transition: 0.6s ease;
}

div.nav_help .element_name_help_img div img {
  display: block;
  width: 85%;
  margin: 0 auto;
  border-radius: 10px;
}

div.nav_help .element_name_help_img div[content="0"] {
  display: none;
  opacity: 0;
}

div.nav_help .element_name_help_img div[content="1"] {
  display: block;
  opacity: 1;
}

div.nav_help .element_name_help_img div[content="1"] p {
  font-size: 16px;
  color: #E8772E;
  text-align: center;
  font-weight: bolder;
}

/****** SESSÃO HELP ME ******/

/****** SESSÃO FOOTER RODAPE  ******/

.footer_mdb_v2 {
  width: 100%;
  height: 100px;
  padding: 15px;
  position: relative;
  top: 220px;
  text-align: center;
}

.footer_mdb_v2 .logo h3 {
  font-family: var(--font-primary);
  font-size: 28px;
  color: #333333;
  margin: 0;
  line-height: 25px;
  padding: 10px 0;
}

.footer_mdb_v2 .logo img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 26px;
  margin: 0 auto;
}

.direitos {
  margin: 10px 0;
  font-size: 13px;
  color: black;
}

.termos_politica {
  font-size: 16px;
  color: #555555;
}

.termos_politica a {
  display: inline-block;
  padding: 10px 5px;
  color: black;
  font-size: 15px;
}

/****** SESSÃO FOOTER RODAPE  ******/


/**** MEDIA SCREEN TABLET/NOTEBOOK  *****/


@media screen and (max-width:1140px) {
  .element_name_help_children {
    margin: 10px 0 !important;
  }

  .element_name_help_texto {
    width: 50% !important;
  }

  .element_name_help_texto h2 {
    font-size: 18px;
  }

}


@media screen and (max-width:1080px) {

  .snake_element {
    height: 3999px;
  }


  section.inicio {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 30px 10px;

  }

  section.inicio .image {
    float: none;
    width: 100%;
    height: 400px;
    margin: 0 auto;
  }

  section.inicio .campanha_texto {
    width: 100%;
    height: 400px;
    float: none;
    margin: 70px auto 0 auto;
  }

  .element_name_help_texto h2 {
    font-size: 13px;
  }

  div.paymentsQRCODE {
    width: 100%;
    height: 100%;
    box-shadow: none;
  }


}

@media screen and (max-width: 748px) {


  section.before_and_after {
    height: auto !important;
  }

  section.before_and_after div.container_after_before .element_before h3,
  section.before_and_after div.container_after_before .element_after h3 {
    margin-top: 10px;
    bottom: inherit !important;
  }

  .btn_doar_ajuda {
    top: inherit !important;
    right: inherit !important;
  }

  .nav_help {
    display: block !important;
  }

  .element_name_help_texto {
    display: block;
    width: 80% !important;
    margin: 20px auto;
    text-align: center;
    padding: 25px;
  }

  .element_name_help_img {
    display: block;
    margin: 0px !important;
  }

  .snake_element {
    height: 5462px;
  }



  .payments {
    overflow: scroll;
  }
}


@media screen and (max-width:670px) {
  section.help_me .help_me_texto h2 {
    width: 100%;
  }

  section.inicio .image {
    height: 300px;
  }



  section.inicio .campanha_texto .pixcopiaecolar {
    width: 100%;
  }

  .section.inicio .campanha_texto .pixcopiaecolar p {
    font-size: 11px;
    margin-left: 10px;
  }

  section.inicio .campanha_texto .pixcopiaecolar span {
    width: 60px;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
    top: 10px;
  }

  .element_after,
  .element_before {
    width: 100%;
    padding: 25px;
  }

  .element_after img,
  .element_before img {
    width: 100%;
  }

  section.inicio .campanha_texto .pixcopiaecolar p {
    word-break: break-all;
  }

  .alertCopied .alert_copied_span {
    width: 90%;
    white-space: inherit;
  }

  .pix_qr_cola {
    width: 100%;
    overflow: auto;
    height: 100vh;
  }

  .preset-amounts {
    flex-direction: column;
  }


}

@media screen and (max-width:500px) {
  section.inicio .image {
    height: 200px;
  }
}

/**** MEDIA SCREEN TABLET/NOTEBOOK  *****/

/***** BOUNCE IN LEFT *****/
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    opacity: 0.8;
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
    opacity: 1;
  }
}

/***** BOUNCE IN LEFT *****/


/***** BOUNCE IN RIGHT *****/
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    opacity: 0.8;
    transform: translate3d(-5px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/***** BOUNCE IN RIGHT *****/