.modal-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
    z-index: 1000;
}
.modal-screen .modal-container {
  width: 100%;
  max-width: 500px;
  min-height: 500px;
  max-height: 100vh;
  background-color: #ffffff;
  border-radius: 20px;
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (hover: none) {
  .modal-screen .modal-container {
    height: 100dvh;
    border-radius: 0;
  }
}
.modal-screen .modal-container::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.modal-screen .modal-container .top-banner {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.modal-screen .modal-container .slide-cards {
  padding-bottom: 55px;
}
.modal-screen .modal-container .slide-cards img {
  width: 100%;
  height: auto;
}
.modal-screen .modal-container .buttons {
  display: flex;
  gap: 10px;
  padding: 20px;
  position: sticky;
  bottom: 100px;
  z-index: 2;
}
.modal-screen .modal-container .buttons .tool-tip {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: calc(100% - 12px);
  background-color: #ff8e1f;
  color: #fff;
  font-size: 11.5px;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 1;
}
.modal-screen .modal-container .buttons .tool-tip::after {
  content: "";
  width: 15px;
  height: 14px;
  background-image: url("src/images/arrow_bottom_orange.svg");
  background-size: 15px 14px;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  top: calc(100% - 1px);
  left: 30px;
}
.modal-screen .modal-container .buttons a {
  width: 100%;
}
.modal-screen .modal-container .buttons .btn {
  width: 100%;
  padding: 15px 0;
  font-size: 0.9em;
}
@media (hover: none) {
  .modal-screen .modal-container .buttons .btn {
    font-size: 0.8em;
  }
}
.modal-screen .modal-container .buttons .gray {
  color: #777;
  text-align: center;
  font-weight: bold;
  letter-spacing: -0.84px;
  border-radius: 10px;
  border-top: 1px solid #c5c5c5;
  border-right: 1px solid #c5c5c5;
  border-bottom: 2px solid #c5c5c5;
  border-left: 1px solid #c5c5c5;
  background: linear-gradient(180deg, #f7f7f7 0%, #d6d3d3 85.42%, #e2dfdf 100%);
  position: relative;
}
.modal-screen .modal-container .buttons .blue {
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  border-top: 1px solid #289ee4;
  border-right: 1px solid #289ee4;
  border-bottom: 2px solid #289ee4;
  border-left: 1px solid #289ee4;
  background: linear-gradient(180deg, #5fc3ff 0%, #38b4fe 85.42%, #5fc3ff 100%);
  position: relative;
}
.modal-screen .modal-container .buttons .blue::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background-image: url("src/images/img_shining.svg");
  background-repeat: no-repeat;
  background-size: 10px;
}
.modal-screen .modal-container .buttons .blue span {
  color: #fff600;
  margin-right: 3px;
}
.modal-screen .modal-container .close-today-box {
  background-color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  border-top: 1px solid #e0e0e0;
}
.modal-screen .modal-container .close-today-box .link {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
}
.modal-screen .carousel .carousel-item {
  padding: 10px;
  padding-top: 0;
}
.modal-screen .carousel .carousel-indicators {
  display: flex;
  gap: 5px;
  z-index: 1 !important;
  bottom: -37px !important;
}
@media (hover: none) {
  .modal-screen .carousel .carousel-indicators {
    bottom: -37px !important;
  }
}
.modal-screen .carousel .carousel-indicators li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px !important;
  height: 24px !important;
  color: #fff !important;
  font-size: 11px;
  text-indent: 1px !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  background-color: #000 !important;
  border-top: 0 solid transparent !important;
  border-bottom: 0 solid transparent !important;
  border-radius: 100px;
}
.modal-screen .carousel .carousel-indicators li.active {
  opacity: 1 !important;
}
.modal-screen .carousel .carousel-control-prev {
  left: -20px !important;
  border: none !important;
  background-color: transparent !important;
}
.modal-screen .carousel .carousel-control-prev .carousel-control-prev-icon {
  border-radius: 100px;
  background-image: url("src/images/chevron-left.svg") !important;
  width: 34px !important;
  height: 34px !important;
}
.modal-screen .carousel .carousel-control-next {
  right: -20px !important;
    border: none !important;
    background-color: transparent !important;
}
.modal-screen .carousel .carousel-control-next .carousel-control-next-icon {
  border-radius: 100px;
  background-image: url("src/images/chevron-right.svg") !important;
  width: 34px !important;
  height: 34px !important;
}
.modal-screen .heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite both;
}
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}/*# sourceMappingURL=popup.css.map */