p {
  margin: 0 !important;
}

.film_info_wrapper {
  width: fit-content;
  display: flex;
  justify-content: space-between;
}

.ticket-link {
  text-decoration: underline;
  color: var(--ticket-color) !important;
  font-size: var(--text-md);
}

.ticket-link:hover {
  text-decoration: underline;
}

.movie_poster {
  display: flex;
  width: 211px;
  height: 315px;
  margin-right: 25px;
}

.movie_poster * {
  max-width: 100%;
  max-height: 100%;
}

.film_infos {
  position: relative;
  width: 500px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.film_info_left_side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.film_info_icons,
.film_info_desc_icons {
  width: 50px;
  height: 50px;
}

.film_info_icons {
  display: none;
}

.film_info_icons *,
.film_info_desc_icons * {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.film_infos_title {
  text-transform: uppercase;
  overflow: hidden;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--text-color);
  font-size: var(--text-xl);
  font-family: var(--roboto-bold);
  margin-bottom: 15px;
}

.film_infos_short_info {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 15px;
}

.film_infos_short_info * {
  color: var(--text-color);
  font-size: var(--text-md);
  font-family: var(--roboto-regular);
  opacity: 0.85;
}

.film_infos_description {
  /* overflow: hidden;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; */
  color: var(--text-color);
  font-size: var(--text-md);
  font-family: var(--roboto-regular);
  opacity: 0.85;
}

.film_info_desc_icons {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (min-width: 1024px) {
	.film_infos {
		width: 500px;
		max-width: 500px;
	}
}

@media (max-width: 1024px) {
  .film_info_desc_icons {
    display: none;
  }
}

@media (max-width: 640px) {
  .film_info_wrapper {
    padding: 0px;
    padding-right: 20px;
    max-width: 100%;
  }

  .film_info_desc_icons {
    display: none;
  }

  .film_infos_genre {
    display: none;
  }

  .film_info_icons {
    display: block;
    margin-top: 15px;
  }

  .movie_poster {
    width: 150px;
    height: auto;
  }

  .film_infos_short_info *,
  .film_infos_description,
  .ticket-link {
    font-size: var(--text-sm);
  }

  .film_infos_title {
    font-size: var(--text-md);
  }

  #tifilminfo-placeholder .movie_poster {
    height: 100%;
  }

  .film_info_desc_icon_placeholder {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .film_infos_length {
    display: none;
  }
}
