/* Price Styles */
.priceline {
  font-size: 16px;
}
.regular_price {
  text-decoration: line-through;
}
/* .discount_price {
  font-weight: bold;
  color: #ffa500;
}
.priceline a:link {
  color: #ffa500;
} */

/* Left Column */
.pic_column_text {
  text-align: center;
  margin-top: 10px;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  color: #bd150b;
}
.display_month {
  font-size: 40px;
  position:relative;
  margin: 0;
  padding: 0;
}
.display_date {
  font-size: 60px;
  position:relative;
  top: -20px;
  padding: 0;
}

/* Container */
.postcards_container {
  /* border:#b4aec3 2px solid;   */
  padding-left: 5%;
  padding-right: 5%; 
}
.dark {
  background: rgba(0, 0, 0, 0);
}
a,
a:hover {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
#pageHeaderTitle {
  margin: 2rem 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.5rem;
}

/* Cards */
.postcard {
  flex-wrap: wrap;
  display: flex;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
  color: #ffffff;
}
.postcard.dark {
  background-color: #18151f;
}
.postcard .t-dark {
  color: #18151f;
}
.postcard a a:link{
	color: #ffa500;
}
.register_btn{
  color: #ffffff;
}
.postcard h1,
.postcard .h1 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.postcard .small {
  font-size: 80%;
}
.postcard .postcard__title {
  font-size: 1.75rem;
  margin-top: 0px;
}
.postcard .postcard__img {
  max-height: 180px;
  width: 100%;
  object-fit: cover;
  position: relative;
}
.postcard .postcard__img_link {
  display: contents;
}
.postcard .postcard__bar {
  width: 50px;
  height: 10px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}
.postcard .postcard__text {
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.postcard .postcard__preview-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  }
.postcard .postcard__tagbox {
  display: flex;
  flex-flow: row wrap;
  font-size: 14px;
  margin: 20px 0 0 0;
  padding: 0;
  justify-content: center;
}
.postcard .postcard__tagbox .tag__item {
  display: inline-block;
  background: rgba(83, 83, 83, 0.4);
  border-radius: 3px;
  padding: 2.5px 10px;
  margin: 0 5px 5px 0;
  cursor: default;
  user-select: none;
  transition: background-color 0.3s;
}
.postcard .postcard__tagbox .tag__item:hover {
  background: rgba(83, 83, 83, 0.8);
}
.postcard:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
  opacity: 1;
  border-radius: 10px;
}
.postcard:hover .postcard__bar {
  width: 100px;
}

@media screen and (min-width: 769px) {
  .postcard {
    flex-wrap: inherit;
  }
  .postcard .postcard__title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" ;
    font-size: 2rem;
  }
  .postcard .postcard__tagbox {
    justify-content: start;
  }
  .postcard .postcard__img {
    max-width: 400px;
    max-height: 300px;
    border-radius: 10px; 
  }
  .postcard .postcard__text {
    /* padding: 3rem; */
    width: 100%;
  }
  .postcard .media.postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    background: #18151f;
    top: -20%;
    height: 130%;
  }
  .postcard:hover .postcard__img {
    transform: scale(1.05);
    transform-origin: right bottom;
    transition: transform 0.3s ease;
  }
}

@media screen and (min-width: 1024px) {
  .postcard__text {
    padding: 2rem 3.5rem;
  }
  .postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    top: -20%;
    height: 130%;
  }
  .postcard.dark .postcard__text:before {
    background: #18151f;
  }
  .postcard.light .postcard__text:before {
    background: #e1e5ea;
  }
}

/* COLORS */
.postcard .postcard__tagbox .red.play:hover {
  background: #339933;
}
.postcard .postcard__tagbox .red.play:hover a{
    color:#ffffff;
    font-weight: bold;
    font-size: 16px;
}
.postcard .postcard__tagbox .red.play {
  background: #bd150b;
}
.postcard .postcard__tagbox .red.play a{
  color:#e1e5ea;
  font-weight: bold;
  font-size: 16px;
}
.red .postcard__bar {
  background-color: #bd150b;
}
.red::before {
  background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}