#entryPopup {
  position: absolute;
  top: 0;
  left: 110vw;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1), left 0s cubic-bezier(0, 0.55, 0.45, 1) 0.4s, visibility 0s ease 0.4s;
}

#entryPopup.entryPopup--open {
  opacity: 1;
  left: 0;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
}

.entryPopup__close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

.entryPopup__content {
  width: 80%;
  max-width: 1010px;
  max-height: 100%;
  background-color: #000;
  box-shadow: 0 0 70px 0 rgb(157, 90, 33, 0.6);
  font-size: 40px;
  color: #fff;
  text-transform: none;
  overflow-y: auto;
  margin-top: 11vh;
}

.entryPopup__innerContent {
  width: 100%;
  padding: 0 22px 22px 22px;
  text-align: center;
}

.entryPopup__innerContent p {
  font-family: NewsGot-Dem, Arial, sans-serif;
  font-weight: 600;
  margin: 0;
}

.entryPopup__preamble p {
  font-family: NewsGot-Reg, Arial, sans-serif;
  font-size: 26px;
  max-width: 470px;
  margin: 12px auto 6px;
  font-weight: 400;
}

.entryPopup__innerContent .entryPopup__text p:last-of-type {
  margin-bottom: 0px;
}

.entryPopup__innerContent .entryPopup__text p:first-of-type {
  margin-top: 0;
}

.entryPopup__names {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  color: #DC9632;
  align-items: center;
  list-style: none;
  font-size: 22px;
  font-family: NewsGot-Reg;
  font-weight: 400;
}

.entryPopup__names li {
  padding: 10px;
  margin: 0;
  display: block;
}

.entryPopup__poster {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.entryPopup__actionsContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.entryPopup__action {
  padding: 29px 19px;
  flex: 1 1 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  font-family: NewsGot-Reg;
  font-weight: 400;
  color: #979190;
}

.entryPopup__action:after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  width: 1px;
  height: 43%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #DC9632;
}
.entryPopup__action:first-child:after {
  display: none;
}

.entryPopup__actionImage {
  height: 46px;
  width: auto;
  padding-bottom: 12px;
  max-width: 100%;
  object-fit: contain;
}

.entryPopup__actionText {
  /*display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
/*
.entryPopup__actionText span {
  flex: 1 1 auto;
}*/

.entryPopup__actionArrow {
  width: 46px;
  height: 14px;
  display: block;
  margin-left: 12px;
  transition: margin-left 0.4s ease;
  flex: 0 0 46px;
}

.entryPopup__action:hover .entryPopup__actionArrow {
  margin-left: 16px;
}

.entryPopup__buttonContainer {
  margin-top: 14px;
  display: block;
  width: 100%;
}

.entryPopup__button {
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  text-transform: none;
  border: 1px solid #979797;
  font-size: 16px;
  display: inline-block;
  transition: all 0.4s ease;
  margin: 10px 5px 0 5px;
}

.entryPopup__button:hover {
  background-color: #DC9632;
  border-color: #DC9632;
  color: #000;
}

.entryPopup__buttonTwo {
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  text-transform: none;
  border: 1px solid #979797;
  font-size: 16px;
  display: inline-block;
  transition: all 0.4s ease;
  margin: 10px 5px 0 5px;
}

.entryPopup__buttonTwo:hover {
  background-color: #DC9632;
  border-color: #DC9632;
  color: #000;
}

.entryPopup--multipleButtons .entryPopup__button, .entryPopup--multipleButtons .entryPopup__buttonTwo {
  min-width: 140px;
}

.entryPopup__countdown {
  padding: 0;
  margin: 20px 0 0 0;
}

@media (max-width: 767px) {
	.entryPopup__content {
    width: 100%;
    font-size: 26px;
    /* font-size: 5vw; */
  }
  /*#entryPopup {
    justify-content: center;
  }
  .entryPopup__content {
    margin-top: 0;
  }*/
  /*.entryPopup__action:hover .entryPopup__actionArrow {
    padding-left: 12px;
  }*/
  .entryPopup__innerContent {
    padding: 22px;
  }
  
  .entryPopup__action {
    font-size: 12px;
  }
  .entryPopup__actionArrow {
    height: 10px;
  }
  .entryPopup__button {
    padding: 8px 16px;
    font-size: 14px;
    display: inline-block;
    margin-top: 0;
  }
  .entryPopup__buttonTwo {
    padding: 8px 16px;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
  }
  .entryPopup__buttonContainer {
    margin-top: 10px;
  }
  .entryPopup__names {
    font-size: 14px;
  }
  .entryPopup__preamble p {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

@media (max-width: 375px) {
	.entryPopup__content {
    font-size: 22px;
    /* font-size: 5vw; */
  }
  .entryPopup__names {
    font-size: 13px;
  } 
}
@media (max-width: 370px) {
	.entryPopup__action {
    padding: 29px 18px;
  }
}

