html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sectioning */
body {
  margin: 0;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
}

/* Grouping content */
h1 {
  font-size: 2em;
}

ul {
  padding-left: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
}

a {
  background-color: transparent;
}

img {
  border-style: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* Đặt giá trị cho margin-bottom */
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}

/* Đặt giá trị cho margin-top */
.mt-1 {
  margin-top: 1rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}

/* Đặt giá trị cho padding-left và padding-right */
.px-1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-2 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.px-3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.px-4 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}
.px-5 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

/* Đặt giá trị cho padding-top và padding-bottom */
.py-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.text-13 {
  font-size: 0.813rem;
}
.text-14 {
  font-size: 0.875rem;
}
.text-16 {
  font-size: 1rem;
}
.text-18 {
  font-size: 1.125rem;
}
.text-20 {
  font-size: 1.25rem;
}
.text-24 {
  font-size: 1.5rem;
}
.text-34 {
  font-size: 2.125rem;
}
.text-40 {
  font-size: 2.5rem;
}
.text-47 {
  font-size: 2.938rem;
}
.text-50 {
  font-size: 3.125rem;
}

.parallax-mirror {
  /* background-image: url("../images/images-header-bg.jpg"); */
  background: linear-gradient(
      to top,
      rgba(80, 80, 80, 1),
      rgba(240, 240, 240, 0.02)
    ),
    url("../images/images-header-bg.jpg");
  height: 100vh;
  color: white;

  background-attachment: fixed;
  background-position: center -5%;
  background-repeat: no-repeat;
  background-size: cover;
}

.loading-screen {
  background-color: white;
  display: flex;
  gap: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Đảm bảo nằm trên các phần khác */
}

.heart {
  animation: bounce 0.6s infinite;
}

.heart:nth-child(1) {
  animation-delay: 0s;
}

.heart:nth-child(2) {
  animation-delay: 0.1s;
}

.heart:nth-child(3) {
  animation-delay: 0.2s;
}

.heart:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.loading-screen {
  animation: fadeOut 1.5s forwards;
}

.header-title {
  height: 100vh;
  padding-bottom: 80px;
}

.header-title h1 {
  font-family: "Amatic SC";
  font-weight: 700;
  font-size: 150px;
}

.banner-date {
  padding: 8px 3rem;
}
.banner-locate {
  padding: 8px 3rem;
}
.banner-name {
  padding: 8px 3rem;
  display: flex;
  font-size: 50px;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.introduce-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-location {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.broomInfor {
  display: flex;
  gap: 3rem;
  text-align: end;
  align-items: center;
}
.brideInfor {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.speach {
  text-align: justify;
}

.person-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section {
  padding-top: 5em;
  padding-bottom: 5em;
}

.container {
  padding-left: 50px;
  padding-right: 50px;
}

.nameText {
  font-size: 24px;
  margin-bottom: 20px;
}

.font-greateVibe {
  font-family: "Great Vibes", cursive;
}

.font-amatic {
  font-family: "Amatic SC";
}

.fa-heartbeat {
  animation: beat 0.9s infinite;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }
  /* 20% {
    transform: scale(1.1);
  } */
  40% {
    transform: scale(1.2);
  }
}
.open-invite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 1s infinite; /* Thêm hiệu ứng nhảy */
}

.text-open {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  text-align: center;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

#countDown {
  color: white;
  /* background-image: url("../images/images-countdown-bg.jpg"); */
  background: linear-gradient(
      to top,
      rgb(99, 90, 90),
      rgba(240, 240, 240, 0.02)
    ),
    url("../images/images-countdown-bg.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.count-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.cd-message {
  margin-bottom: 8rem;
}

.heading-span {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
}

.date-span {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.count-bg-mobile {
  display: none;
}

h3 {
  font-weight: 500;
  font-size: 24px;
}
#location {
  background-color: #e9e9e9;
}

.section-map {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.section-map:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.section-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* gallery css */
#gallery {
  background-color: #e9e9e9;
}
.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 8px;
}

.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 8px;
}

.column img {
  margin-top: 16px;
  vertical-align: middle;
  width: 100%;
}

.static-invite {
  display: none;
}

.album-mobile {
  display: none;
}
/*  */
.qrBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 20px;
}

.qrImg {
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qrImg img {
  width: 100%;
  height: auto;
  display: block;
}

/* footer  */

#footer {
  color: white;
  height: 100vh;
  background-image: url("../images/images-footer-desktop.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.text-footer {
  font-size: 24px;
}

.text-box-footer {
  margin-top: 350px;
}

.inviteStaticImg {
  width: 80%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 800px) {
  .container {
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
  }
  .banner-date {
    padding: 16px;
  }
  .banner-name {
    padding: 24px;
    font-size: 40px;
  }
  .banner-locate {
    padding: 16px;
  }
  .broomInfor {
    flex-direction: column;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .brideInfor {
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-align: center;
  }

  .invite-flip {
    display: none;
  }

  .album-desktop {
    display: none;
  }

  .static-invite {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .album-mobile {
    display: flex;
  }

  .open-invite {
    display: none;
  }

  .inviteStaticImg {
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .map-location {
    flex-direction: column;
  }

  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }

  .count-bg-mobile {
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }

  .count-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }

  .img-count-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #countDown {
    position: relative;
    color: white;
    /* background-image: url("../images/images-countdown-bg.jpg"); */
    background: linear-gradient(
        to top,
        rgb(99, 90, 90),
        rgba(240, 240, 240, 0.02)
      ),
      url("./assets/images/bienMobile.JPG");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .text-box-footer {
    margin-top: 270px;
  }

  #footer {
    color: white;
    height: 100vh;
    background-image: url("../images/images-footerImg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media screen and (min-width: 801px) {
  .static-invite {
    display: flex; /* Hiển thị theo hàng ngang */
    justify-content: center; /* Căn giữa các phần tử */
    align-items: center;
    gap: 2%; /* Khoảng cách giữa các ảnh linh hoạt hơn */
    padding: 0 5%; /* Giảm padding tổng thể */
  }

  .static-invite video {
    max-width: 100%; /* Ảnh chiếm tối đa 15% chiều rộng container */
    height: auto; /* Tự động giữ tỉ lệ gốc */
    border-radius: 8px; /* Bo góc mềm mại */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Bóng cho ảnh */
    transition: transform 0.3s ease; /* Hiệu ứng khi hover */
  }
}

@media screen and (max-width: 600px) {
  .parallax-mirror {
    /* background-image: url("../images/images-header-bg.jpg"); */
    background: linear-gradient(
        to top,
        rgba(80, 80, 80, 1),
        rgba(240, 240, 240, 0.02)
      ),
      url("../images/images-mobileBanner.jpg");
    height: 100vh;
    color: white;

    background-attachment: scroll;
    background-position: 48% center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .header-title h1 {
    font-size: 50px;
  }
  section {
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .banner-date {
    padding: 16px;
    font-size: 18px;
  }
  .banner-name {
    padding: 16px;
    font-size: 32px;
    flex-direction: column;
    gap: 0px;
  }

  .banner-locate {
    padding: 16px;
    font-size: 18px;
  }

  .introduce-info {
    flex-direction: column;
  }
  .person-info {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .broomInfor {
    flex-direction: column;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .brideInfor {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }

  .count-box {
    flex-direction: column;
    gap: 16px;
  }

  .qrBox {
    flex-direction: column;
    gap: 24px;
  }

  #footer {
    background-position: 55% center;
  }
  .mobile-hide {
    display: none;
  }
}

@media screen and (max-width: 390px) {
  .banner-name {
    font-size: 28px;
  }
}

/* time Line */
.timeline {
  position: relative;
  margin: 40 auto;
  /* padding: 40px 0; */
  width: 1000px;
  box-sizing: border-box;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #c5c5c5;
}
.timeline ul {
  padding: 0;
  margin: 0;
}
.timeline ul li {
  list-style: none;
  position: relative;
  width: 50%;
  padding: 12px 40px;
  box-sizing: border-box;
}
.timeline ul li:nth-child(odd) {
  float: left;
  text-align: right;
  clear: both;
}
.timeline ul li:nth-child(even) {
  float: right;
  text-align: left;
  clear: both;
}
.content {
  padding-bottom: 20px;
}
.timeline ul li:nth-child(odd):before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 24px;
  right: -6px;
  background: rgba(233, 33, 99, 1);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(233, 33, 99, 0.2);
}
.timeline ul li:nth-child(even):before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 24px;
  left: -4px;
  background: rgba(233, 33, 99, 1);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(233, 33, 99, 0.2);
}
.timeImg {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 350px;
  height: 350px;
  margin-top: 20px;
  border-radius: 20px;
  object-fit: cover;
}
.firstmeet {
  object-position: 0 -2px;
}
.marry {
  object-position: 0 -40px;
}
.timeline ul li h3 {
  font-family: "Great Vibes", cursive;
  font-size: 32px;
  padding: 0;
  margin: 0;
  color: rgb(0, 0, 0);
  font-weight: 200;
}
.timeline ul li p {
  margin: 10px 0 0;
  padding: 0;
}
.timeline ul li .time h4 {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.timeline ul li:nth-child(odd) .time {
  position: absolute;
  top: 12px;
  right: -165px;
  margin: 0;
  padding: 8px 16px;
  background: rgba(233, 33, 99, 1);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 0 0 3px rgba(233, 33, 99, 0.3);
}
.timeline ul li:nth-child(even) .time {
  position: absolute;
  top: 12px;
  left: -165px;
  margin: 0;
  padding: 8px 16px;
  background: rgba(233, 33, 99, 1);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 0 0 3px rgba(233, 33, 99, 0.3);
}
@media (max-width: 1000px) {
  .timeline {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .timeImg {
    width: 280px;
    height: 280px;
  }
  .timeline {
    width: 100%;
    padding-bottom: 0;
  }
  h1 {
    font-size: 40px;
    text-align: center;
  }
  .timeline:before {
    left: 20px;
    height: 100%;
  }
  .timeline ul li:nth-child(odd),
  .timeline ul li:nth-child(even) {
    width: 100%;
    text-align: left;
    padding-left: 50px;
    padding-bottom: 50px;
  }
  .timeline ul li:nth-child(odd):before,
  .timeline ul li:nth-child(even):before {
    top: -18px;
    left: 16px;
  }
  .timeline ul li:nth-child(odd) .time,
  .timeline ul li:nth-child(even) .time {
    top: -30px;
    left: 50px;
    right: inherit;
  }
}

.album {
  display: flex;
  align-items: center;
  justify-content: center;
}

.book {
  width: 450px;
  /* height: 550px; */
  position: relative;
  transition-duration: 1s;
  perspective: 1500;
}

input {
  display: none;
}

.cover,
.back-cover {
  background-color: white;
  width: 430px;
  height: 636px;
  /* border-radius: 0 15px 15px 0; */
  /* box-shadow: 0 0 5px rgb(41, 41, 41); */
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center left;
  z-index: -1;
}

.cover {
  position: absolute;
  z-index: 16;
  transition: transform 1.5s;
  width: 430px;
  height: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  transform-style: preserve-3d;
  transform-origin: center left;
}

.cover .front-page {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover .back-page {
  transform: rotateY(180deg);
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cover label {
  width: 100%;
  height: 100%;
  cursor: pointer;
  box-sizing: border-box;
}

.back-cover img {
  width: 100%;
  height: auto;
  object-fit: contain;
  box-sizing: border-box;
}

.cover .cover-image {
  width: 100%; /* Make the cover image take up 100% of the container's width */
  height: auto; /* Make the cover image take up 100% of the container's height */
  object-fit: contain; /* Ensures the image covers the entire area without stretching */
  /* border-radius: 0 15px 15px 0; */
  box-sizing: border-box;
}

.back-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white; /* Màu nền */
  width: 430px; /* Kích thước cố định */
  height: 636px; /* Đảm bảo giữ kích thước tương tự hình ảnh */
  padding: 0.5rem;
  box-sizing: border-box;
  transform-style: preserve-3d;
  transform-origin: center left;
  transition: transform 1.5s;
  border-radius: 10px; /* Bo góc nếu cần */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Tạo bóng */
}
.cover-text {
  font-family: "Amatic SC", cursive; /* Phông chữ trang trí */
  font-size: 4rem; /* Kích thước lớn */
  font-weight: bold;
  color: #333; /* Màu chữ */
  text-align: center;
  letter-spacing: 0.1em; /* Khoảng cách giữa các ký tự */
}

.page {
  position: absolute;
  background-color: white;
  width: 430px;
  height: 100%;
  /* border-radius: 0 15px 15px 0; */
  /* margin-top: 10px; */
  transform-origin: left;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition-duration: 1.5s;
  cursor: pointer;
}

.page img {
  width: 100%; /* Make the page images take up 100% of the container's width */
  height: auto; /* Make the page images take up 100% of the container's height */
  /* border-radius: 15px 0 0 15px; */
}

.front-page {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  box-sizing: border-box;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-page {
  transform: rotateY(180deg);
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  z-index: 99;
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

#page1 {
  z-index: 14;
}

#page2 {
  z-index: 13;
}

#page3 {
  z-index: 12;
}
#page4 {
  z-index: 11;
}
#page5 {
  z-index: 10;
}
#page6 {
  z-index: 9;
}
#page7 {
  z-index: 8;
}
#page8 {
  z-index: 7;
}
#page9 {
  z-index: 6;
}
#page10 {
  z-index: 5;
}

#page11 {
  z-index: 4;
}

#page12 {
  z-index: 3;
}

#page13 {
  z-index: 2;
}

#page14 {
  z-index: 1;
}

#checkbox-cover:checked ~ .book {
  transform: translateX(200px);
}

#checkbox-cover:checked ~ .book .cover {
  transition: transform 1.5s, z-index 0.5s 0.5s;
  transform: rotateY(-180deg);
  z-index: 1;
}

#checkbox-cover:checked ~ .book .page {
  box-shadow: 0 0 3px rgb(99, 98, 98);
}

#checkbox-page1:checked ~ .book #page1 {
  transform: rotateY(-180deg);
  z-index: 2;
}

#checkbox-page2:checked ~ .book #page2 {
  transform: rotateY(-180deg);
  z-index: 3;
}

#checkbox-page3:checked ~ .book #page3 {
  transform: rotateY(-180deg);
  z-index: 4;
}

#checkbox-page4:checked ~ .book #page4 {
  transform: rotateY(-180deg);
  z-index: 5;
}

#checkbox-page5:checked ~ .book #page5 {
  transform: rotateY(-180deg);
  z-index: 6;
}

#checkbox-page6:checked ~ .book #page6 {
  transform: rotateY(-180deg);
  z-index: 7;
}

#checkbox-page7:checked ~ .book #page7 {
  transform: rotateY(-180deg);
  z-index: 8;
}

#checkbox-page8:checked ~ .book #page8 {
  transform: rotateY(-180deg);
  z-index: 9;
}

#checkbox-page9:checked ~ .book #page9 {
  transform: rotateY(-180deg);
  z-index: 10;
}

#checkbox-page10:checked ~ .book #page10 {
  transform: rotateY(-180deg);
  z-index: 11;
}

#checkbox-page11:checked ~ .book #page11 {
  transform: rotateY(-180deg);
  z-index: 12;
}

#checkbox-page12:checked ~ .book #page12 {
  transform: rotateY(-180deg);
  z-index: 13;
}

#checkbox-page13:checked ~ .book #page13 {
  transform: rotateY(-180deg);
  z-index: 14;
}

#checkbox-page14:checked ~ .book #page14 {
  transform: rotateY(-180deg);
  z-index: 15;
}

#swiper {
  /* height: 60vh; */
  width: 70vw;
  aspect-ratio: 2 / 3;
  perspective: 1000px;
  perspective-origin: center 50%;
  transform-style: preserve-3d;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.card {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(calc(-2px * var(--i))) translateY(calc(-2px * var(--i)))
    rotate(calc(-1deg * var(--i)));
  filter: drop-shadow(2px 2px 20px rgba(113, 110, 110, 0.5));
  cursor: pointer;
  user-select: none;
  transition: transform 0.5s;

  display: flex;
  align-items: center;
  justify-content: center;
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#like,
#dislike {
  font-size: 16vh;
  border-radius: 50%;
  padding: 20px;
  position: relative;
  z-index: 1;
  animation-name: animation1;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  /* don't run animation at the beginning */
  animation-play-state: paused;
}

#like.trigger,
#dislike.trigger {
  animation-name: animation2;
}

#like {
  color: red;
  background-color: rgba(255, 255, 255, 0.5);
}

#dislike {
  color: #ccc;
  background-color: rgba(0, 0, 0, 0.5);
}

@keyframes animation1 {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

@keyframes animation2 {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

body.swiper-active {
  overflow: hidden;
}

.card {
  will-change: transform;
  backface-visibility: hidden;
}
/* audio {
  display: none;
} */
