img {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
/* Box-sizing for consistent box model behavior */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin and padding from common elements */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Basic body styles */
body {
  line-height: 1;
  /* position: fixed;
  overflow: hidden; */
  /* overscroll-behavior-y: contain; */
  width: 100%;
  height: 100%;
}
html,
body {
  height: 100%;
  margin: 0;
  /* overflow: hidden; */
  /* overscroll-behavior-y: none; */
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Remove default list styles */
ol,
ul {
  list-style: none;
}

/* Ensure blockquotes and quotes have no default quotes */
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

body,
.container,
.wrapper {
  width: inherit;
  height: inherit;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

button {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit; /* Inherit font from parent */
  color: inherit; /* Inherit color from parent */
  cursor: pointer;
  /* Add other properties as needed */
}

.button {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 3px 3px 5px #fd9584;
  box-shadow: 3px 3px 5px #fd9584;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.button.like svg {
  width: 50px;
  height: 50px;
}
.button svg {
  width: 35px;
  height: 35px;
}
.button.like {
  width: 90px;
  height: 90px;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

button {
  width: inherit;
  height: inherit;
}
.button__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 70vw;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  position: relative;
  top: -45px;
  max-height: 90px;
}

@media (max-width: 380px) {
  .button__container {
    gap: 5px;
  }
}

.middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
html {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;

  width: 100%;
  height: 100%;
}

.bottom {
  padding: 0 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.name {
  font-size: 34px;
}
.extra-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
  font-weight: 300;
}

.text {
  font-size: 18px;
  opacity: 0.7;
  font-weight: 300;
}

.title {
  font-size: 24px;
  margin-bottom: 15px;
}

.interests,
.about {
  margin-top: 20px;
}

.interests__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.badge {
  padding: 10px 15px;
  min-width: 20vw;
  text-align: center;
  border-radius: 25px;
  background: rgba(253, 149, 132, 0.4);
  opacity: 0.7;
}

.top {
  min-height: 50vh;
  max-height: 50vh;
  overflow: hidden;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.occupation {
  max-width: 70%;
}

.girls__list {
  height: 100%;
  /* --webkit-overflow-scrolling: touch; */
}

.girls__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  background: #fff;
}

.heart-fountain {
  position: fixed;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1000;
  font-size: 20px;
  opacity: 0;
  will-change: transform, opacity;
  -webkit-animation-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
  animation-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

@-webkit-keyframes heart-float {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg) scale(0.6);
    transform: translate(0, 0) rotate(0deg) scale(0.6);
    opacity: 1;
  }
  30% {
    -webkit-transform: translate(var(--random-x1), -30px)
      rotate(var(--random-rot1)) scale(1);
    transform: translate(var(--random-x1), -30px) rotate(var(--random-rot1))
      scale(1);
    opacity: 0.9;
  }
  60% {
    -webkit-transform: translate(var(--random-x2), -80px)
      rotate(var(--random-rot2)) scale(1.2);
    transform: translate(var(--random-x2), -80px) rotate(var(--random-rot2))
      scale(1.2);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(var(--random-x3), -180px)
      rotate(var(--random-rot3)) scale(0.4);
    transform: translate(var(--random-x3), -180px) rotate(var(--random-rot3))
      scale(0.4);
    opacity: 0;
  }
}

@keyframes heart-float {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg) scale(0.6);
    transform: translate(0, 0) rotate(0deg) scale(0.6);
    opacity: 1;
  }
  30% {
    -webkit-transform: translate(var(--random-x1), -30px)
      rotate(var(--random-rot1)) scale(1);
    transform: translate(var(--random-x1), -30px) rotate(var(--random-rot1))
      scale(1);
    opacity: 0.9;
  }
  60% {
    -webkit-transform: translate(var(--random-x2), -80px)
      rotate(var(--random-rot2)) scale(1.2);
    transform: translate(var(--random-x2), -80px) rotate(var(--random-rot2))
      scale(1.2);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(var(--random-x3), -180px)
      rotate(var(--random-rot3)) scale(0.4);
    transform: translate(var(--random-x3), -180px) rotate(var(--random-rot3))
      scale(0.4);
    opacity: 0;
  }
}

.heart-btn.active {
  -webkit-transform: scale(0.88) translateY(1px);
  -ms-transform: scale(0.88) translateY(1px);
  transform: scale(0.88) translateY(1px);
  -webkit-transition: -webkit-transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  -o-transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
    -webkit-transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-filter: brightness(1.1) saturate(1.2);
  filter: brightness(1.1) saturate(1.2);
}

.button.like.active {
  background-color: #fd9584;
}

.button.like.active button svg path {
  fill: #fff;
}

.heart-btn {
  position: relative;
  overflow: visible;
  z-index: 1000;
}

.swiper {
  width: 100%;
  height: 100%;
}

button {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@supports (-webkit-touch-callout: none) {
  button {
    -webkit-tap-highlight-color: transparent;
  }
}
