.overflow-hidden {
  overflow: hidden;
}

.check-bonus{
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  cursor: pointer;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: none;
  cursor: pointer;
  overflow: auto;
}

.popup--active {
  display: block;
  animation: showPopup 0.6s;
}

.popup__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.popup__wrapper {
  cursor: auto;
  height: auto;
  margin-top: 1.725rem;
  margin-bottom: 1.725rem;
  box-shadow: rgb(0 0 0 / 16%) 0px 15px 25px 0px;
  position: relative;
  display: flex;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.popup__wrapper--left {
  width: 50%;
  padding: 50px 35px 50px 40px;
  text-align: center;
  background-color: #fff;
}
.popup__wrapper--right {
  width: 50%;
}
.popup__close {
  position: absolute;
  top: 0;
  right: -50px;
  cursor: pointer;
  background-color: transparent;
  box-shadow: none;
  border: none;
  outline: none;
}
@keyframes showPopup {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 776px) {
  .popup__wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 0;
    border-radius: 0;
    display: block;
    top: 50%;
    margin-top: 60px;
    transform: translate(-50%, -50%);
  }
  .popup__wrapper--left {
    width: 100%;
    padding: 50px 35px 50px 40px;
  }
  .popup__wrapper--right {
    width: 100%;
    padding: 0;
  }
  .popup__close{
    top: -50px;
    right: 0;
  }
}

@media screen and (min-width: 777px) and (max-width: 1205px) {
  .popup__wrapper{
    width: 100%;
  }
  .popup .container{
    max-width: 100% !important;
  }
}