#hp-calendar {
  position: relative;
  z-index: 1;
  padding-bottom: 3.5rem;
  background-color: var(--black);
}

#hp-calendar:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, color-stop(-0.07%, rgba(239, 217, 171, 0)), color-stop(50.75%, #EFD9AB), to(rgba(239, 217, 171, 0)));
  background: linear-gradient(270deg, rgba(239, 217, 171, 0) -0.07%, #EFD9AB 50.75%, rgba(239, 217, 171, 0) 100%);
}

@media (min-width: 768px) {
  #hp-calendar:before {
    -webkit-transform: translateY(7.5rem);
            transform: translateY(7.5rem);
  }
}

@media (max-width: 767px) {
  #hp-calendar:before {
    bottom: 0;
  }
}

.hp-calendar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1430px;
  margin: 0 auto;
}

.hp-calendar-container span {
  display: block;
}

.hp-calendar-container .hp-calendar-item {
  padding: 0 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .hp-calendar-container .hp-calendar-item {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hp-calendar-container .hp-calendar-item:nth-child(1), .hp-calendar-container .hp-calendar-item:nth-child(3) {
    display: none;
  }
  .hp-calendar-container .hp-calendar-item:nth-child(2) {
    width: 100%;
    height: 240px;
    padding: 0 1.5rem;
  }
  .hp-calendar-container .hp-calendar-item:nth-child(2) .hp-calendar-item-image {
    bottom: -3.5rem;
  }
  .hp-calendar-container .hp-calendar-item:nth-child(2) .hp-calendar-item-image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hp-calendar-container .hp-calendar-item:nth-child(2) .hp-calendar-content .hp-calendar-dated span {
    padding: 0.5rem 0;
  }
  .hp-calendar-container .hp-calendar-item:nth-child(2) .hp-calendar-content .hp-calendar-desc {
    max-width: 100%;
    color: var(--light-gold);
  }
}

.hp-calendar-container .hp-calendar-item .hp-calendar-item-image {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 6.5rem;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hp-calendar-container .hp-calendar-item .hp-calendar-item-image img {
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: invert(17%);
          filter: invert(17%);
}

@media (max-width: 767px) {
  .hp-calendar-container .hp-calendar-item .hp-calendar-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.hp-calendar-container .hp-calendar-item .hp-calendar-content .hp-calendar-dated {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 6rem;
  font-family: var(--Cinzel);
  font-size: 1.125rem;
  color: var(--light-gold);
}

.hp-calendar-container .hp-calendar-item .hp-calendar-content .hp-calendar-dated span {
  color: var(--white);
}

.hp-calendar-container .hp-calendar-item .hp-calendar-content .hp-calendar-desc {
  max-width: 294px;
  padding: .5rem 0;
  margin: 0 auto;
  font-size: .875rem;
  color: var(--grey);
}

.hp-calendar-container .hp-calendar-item .animated-bullet {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3rem;
}

@media (max-width: 767px) {
  .hp-calendar-container .hp-calendar-item .animated-bullet {
    position: absolute;
    bottom: -4rem;
  }
}

.hp-calendar-container .hp-calendar-item .animated-bullet:before {
  content: '\6b';
  position: absolute;
  z-index: 1;
  font-family: "sabaton" !important;
  font-size: 1.125rem;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  color: var(--black);
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}

@media (max-width: 767px) {
  .hp-calendar-container .hp-calendar-item .animated-bullet:before {
    opacity: 1;
  }
}

.hp-calendar-container .hp-calendar-item .animated-bullet:after {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  background-color: var(--gold);
}

.hp-calendar-container .hp-calendar-item:first-child .animated-bullet:after, .hp-calendar-container .hp-calendar-item:last-child .animated-bullet:after {
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.hp-calendar-container .hp-calendar-item:first-child .hp-calendar-item-image, .hp-calendar-container .hp-calendar-item:last-child .hp-calendar-item-image {
  display: none;
}

.hp-calendar-container .hp-calendar-item:hover .hp-calendar-dated span, .hp-calendar-container .hp-calendar-item:focus .hp-calendar-dated span, .hp-calendar-container .hp-calendar-item:active .hp-calendar-dated span {
  color: var(--gold);
}

.hp-calendar-container .hp-calendar-item:hover .animated-bullet:before, .hp-calendar-container .hp-calendar-item:focus .animated-bullet:before, .hp-calendar-container .hp-calendar-item:active .animated-bullet:before {
  opacity: 1;
}

.hp-calendar-container .hp-calendar-item:hover .animated-bullet:after, .hp-calendar-container .hp-calendar-item:focus .animated-bullet:after, .hp-calendar-container .hp-calendar-item:active .animated-bullet:after {
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

@media (min-width: 768px) {
  .hp-calendar-container .hp-calendar-item:nth-child(2) .animated-bullet:after {
    background-image: url(../../images/battle-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.hp-calendar-container .hp-calendar-item:nth-child(2):hover .animated-bullet:after, .hp-calendar-container .hp-calendar-item:nth-child(2):focus .animated-bullet:after, .hp-calendar-container .hp-calendar-item:nth-child(2):active .animated-bullet:after {
  background: var(--gold);
}
/*# sourceMappingURL=history-calendar.css.map */