html,
body {
  margin: 0;
  font-family: Roboto;
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  width: 100vw;
  box-sizing: border-box;
}

iframe {
  display: none;
}
@media (min-width: 768px) {
  .body-wrapper {
    width: 768px;
    margin: 50px 0;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px #00000045;
    overflow: hidden;
    position: relative;
  }
  .video-container {
    width: 768px !important;
    height: 437px !important;
  }
  .content,
  .ticket-box {
    padding: 40px !important;
  }
  .bottom-button {
    width: 700px !important;
  }
  .coin {
    width: 245px !important;
    margin-right: 38px !important;
  }
}

h1 {
  color: black;
}
h2 {
  font-weight: 300;
  font-size: 20px;
}
h3 {
  color: white;
}
.content {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.coin {
  position: absolute;
  width: 32%;
  right: 0;
  transform: translateY(-68%);
  margin-right: 5%;
  z-index: 1000;
  opacity: 1;
}

.text {
  color: black;
  opacity: 0.5;
}

.ticket-box {
  display: flex;
  gap: 10px;
  flex-direction: column;
  background-color: rgb(241, 241, 241);
  background: linear-gradient(52deg, #1929ff, #ff28e3);

  padding: 20px;
  box-sizing: border-box;
  padding-bottom: 40px;
}
.header-tickets {
  font-weight: 300;
  color: white;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.486);
  padding-bottom: 20px;
  margin-bottom: 0;
}
.arrow {
  height: 30px;
}
.ticket-container {
  background-color: white;
  color: black;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 1px 2px 3px 0px #00000029;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.pictures-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 20px;
}
.picture {
  width: 100%;
  border-radius: 5px;
}
.text-more {
  display: none;
}
.read-more-section {
  width: 100%;
}
.read-mode {
  padding-bottom: 20px;
}
.ticket-container:active {
  background-color: black;
  color: white;
}
.ticket-container--soldout {
  background-color: black;
  color: white;
}
.ticket-date {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 3px;
}
.ticket-time {
  opacity: 0.5;
}
.ticket-time-after {
  opacity: 0.5;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-top: 100px;
  box-sizing: border-box;
  background: linear-gradient(0deg, white 30%, transparent);
  transition: 0.25s;
  pointer-events: none;
}
.bottom-bar--hidden {
  opacity: 0;
  margin-bottom: -50px;
}
.bottom-button {
  background-color: black;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 100%;
  padding: 0 50px;
  border-radius: 70px;
  background: linear-gradient(194deg, #3a64ff, #ef17fe);
  font-weight: 600;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  pointer-events: all !important;
}
.bottom-button:active {
  background: linear-gradient(38deg, #486aff, #ff5196);
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  appearance: none; /* or -webkit-appearance: none; and -moz-appearance: none; for better compatibility */
  box-shadow: none;
  text-align: left; /* For IE/Edge defaults */
  line-height: inherit; /* For Opera defaults */
  text-transform: none; /* Reset potential uppercase transforms */
}

.video-container {
  position: relative;
  width: 100vw;
  height: 70vw;
  overflow: hidden;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  z-index: 100;
}
