.main-container {
  width: 260px;
  height: 310px;
  position: relative;
  margin: auto;
}

.poster-container {
  width: 160px;
  position: relative;
  top: 0;
  margin: auto;
  z-index: 99;
}

.poster {
  width: 100%;
  box-shadow: 0 5px 20px 3px rgba(0, 0, 0, 0.6);
}

.ticket-container {
  background: #fff;
  width: 260px;
  height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 20px 3px rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.ticket-container1 {
  background: #fff;
  width: 260px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 20px 3px rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.ticket__content {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
}

.ticket__movie-title {
  margin-bottom: 5px;
  color: #000d16;
  font-size: 14px;
}

.ticket__buy-btn {
  width: 100%;
  background: #3ba3b5;
  color: #000d16;
  padding: 15px 0;
  font-size: 10px;
  border: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.ticket__buy-btn_1 {
  width: 100%;
  background: #000d16;
  color: #3ba3b5;
  padding: 15px 0;
  font-size: 10px;
  border: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media (max-width: 400px) {
  .ticket-container,
  .ticket-container1 {
    width: 100% ;
    min-width: 0 ;
    max-width: 100vw ;
    box-sizing: border-box ;
    left: 50% ;
    transform: translateX(-50%) ;
    margin: 0 auto ;
  }
  .ticket__movie-title, .ticket__buy-btn {
    font-size: 11px ;
  }
}
