.titlu{
     font-size: 0.95em;
    position: absolute;
    bottom: 2px;
    left: 2px;
    right: 2px;
    z-index: 2;
    color:#fff!important;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 70%);
    padding: 1em;
    min-width: 0;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #635d5b;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    color: #2a6496;
    background-color: #eee;
    border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #3f51b5;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
/* ./end BS3 Pagination*/ 
.form__gallery {
  position: relative;
  width: 100%;
  height: 44px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 16px;
}
.form__gallery input {
  position: absolute;
  left: -9999px;
  opacity: 0;
  z-index: 1;
}
.form__gallery label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 44px;
  color: #e0e0e0;
  padding: 0 60px 0 20px;
  background-color: #151f30;
  margin: 0;
  width: 100%;
  font-size: 14px;
  cursor: pointer;
  transition: 0.5s;
}
.form__gallery label:before {
  content: '';
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 0;
  height: 44px;
  width: 20px;
  background: url("../admin/img/img.svg") no-repeat center center;
  background-size: 20px auto;
}
.form__gallery label:hover {
  color: #fff;
}
.movie_cover {
  width:192px;
  height:270px;
  object-fit: cover;
}
/*==============================
	Card
==============================*/
.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.card--big {
  flex-direction: row;
  align-items: stretch;
  background-color: #151f30;
  border-radius: 16px;
}
.card--big .card__cover {
  width: 140px;
  border-radius: 16px 0 0 16px;
}
.card--big .card__rating {
  right: calc(100% - 130px);
}
.card--big .card__rating2 {
  right: calc(100% - 130px);
}
.card--favorites .card__add {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.card--favorites .card__add svg {
  fill: #ffc312;
}
.card--favorites .card__add:hover svg {
  fill: #2f80ed;
}
.card__cover {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.card__cover img {
  width: 100%;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.card__cover svg {
  position: absolute;
  display: block;
  stroke: #fff;
  width: 46px;
  height: auto;
  transition: 0.5s;
  z-index: 3;
  transform: scale(0.8);
  opacity: 0;
}
.card__cover:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 75%, rgba(0,0,0,0.9) 100%);
  opacity: 0.1;
  transition: 0.5s;
}
.card__add {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transform: scale(0.8);
}
.card__add svg {
  width: 16px;
  height: auto;
  fill: #f7f7f7;
  transition: 0.5s;
}
.card__add:hover svg,
.card__add.active svg {
  fill: #ffc312;
}
.card__rating {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  transition: 0.5s;
  pointer-events: none;
  height: 30px;
  width: auto;
  padding: 0 10px;
  transform: scale(0.8);
  border-radius: 10px;
  background-color: rgba(21,31,48,0.75);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  cursor: default;
}
.card__rating2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  transition: 0.5s;
  pointer-events: none;
  height: 30px;
  width: auto;
  padding: 0 10px;
  transform: scale(0.8);
  border-radius: 10px;
  background-color: rgba(21,31,48,0.75);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  cursor: default;
}

.card__rating svg {
  width: 16px;
  height: auto;
  fill: #f9f9f9;
  transition: fill 0.5s;
  margin-right: 5px;
}
.card__rating2 svg {
  width: 16px;
  height: auto;
  fill: #f9f9f9;
  transition: fill 0.5s;
  margin-right: 5px;
}
.card__title {
  font-family: Poppins,sans-serif !important;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 5px;
  transition: 0.5s;
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.card__title a {
  color: #fff;
}
.card__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.card__list li {
  font-size: 12px;
  color: #e0e0e0;
  margin-right: 15px;
  white-space: nowrap;
}
.card__list li:last-child {
  margin-right: 0;
}
.card__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 10px;
}
.card__info li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 12px;
  color: #fff;
}
.card__info li a {
  color: #fff;
}
.card__info li a:hover {
  color: #2f80ed;
}
.card__info li span:first-child {
  margin-right: 5px;
  color: #e0e0e0;
}
.card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(100% - 140px);
  padding: 5px 15px 15px 20px;
  position: relative;
  overflow: hidden;
}
.card__tagline {
  font-size: 14px;
  line-height: 21px;
  color: #e0e0e0;
  margin-bottom: 0;
  overflow: hidden;
  margin-top: auto;
  font-family: Poppins,sans-serif !important;
  font-style: italic;
}
.card:hover .card__cover:before {
  opacity: 0.7;
}
.card:hover .card__cover img {
  transform: scale(1.06);
  filter: blur(4px);
  -webkit-filter: blur(4px);
}
.card:hover .card__cover svg {
  opacity: 1;
  transform: scale(1);
}
.card:hover .card__title {
  color: #2f80ed;
}
.card:hover .card__title a {
  color: #2f80ed;
}
.card:hover .card__add {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.card:hover .card__rating {
  opacity: 1;
  transform: scale(1);
}
.card:hover .card__rating2 {
  opacity: 1;
  transform: scale(1);
}
@media (min-width: 576px) {
  .card--big .card__cover {
    width: 160px;
  }
  .card--big .card__rating {
    right: calc(100% - 150px);
  }
    .card--big .card__rating2 {
    right: calc(100% - 150px);
  }
  .card__content {
    width: calc(100% - 160px);
  }
}
@media (min-width: 768px) {
  .card {
    margin-top: 10px;
  }
  .card--big .card__rating {
    right: calc(100% - 140px);
  }
    .card--big .card__rating2 {
    right: calc(100% - 140px);
  }
  .card__title {
    margin-top: 15px;
    font-size: 17px;
  }
  .card__cover svg {
    width: 56px;
  }
  .card__add {
    top: 15px;
    left: 15px;
  }
  .card__add svg {
    width: 18px;
  }

  .card__rating svg {
    width: 18px;
    margin-bottom: 1px;
  }
    .card__rating2 svg {
    width: 18px;
    margin-bottom: 1px;
  }
  .card__content {
    padding: 0 15px 15px 20px;
  }
}
@media (min-width: 1200px) {
  .card--big .card__title {
    white-space: normal;
    font-size: 18px;
  }
  .card__title--subs {
    text-align: center;
  }
  .card__list--subs {
    justify-content: center;
  }
  .card__list--subs li {
    text-align: center;
  }
  .card__content {
    padding: 0 20px 20px;
  }
}
@media (min-width: 1440px) {
  .card--big .card__title {
    margin-top: 17px;
  }
  .card--big .card__cover {
    width: 190px;
  }
  .card--big .card__rating {
    right: calc(100% - 170px);
  }
    .card--big .card__rating2 {
    right: calc(100% - 170px);
  }
  .card__content {
    width: calc(100% - 190px);
    padding: 0 20px 20px;
  }
} 