.popup {
  display: flex;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.popup-content {
  width: 100%;
  padding: 40px 20px;
  border-radius: 5px;
  background-color: #fefefe;
  text-align: center;
  position: relative;
}

.popup-content .close {
  background-color: transparent !important;
  color: #aaaaaa !important;
  font-size: 30px !important;
  font-weight: bold !important;

  width: 30px !important;
  height: 30px !important;
  align-content: center !important;

  position: absolute;
  top: 15px !important;
  right: 15px !important;
  left: auto !important;
}

#cp_div {
  display: grid;
  min-width: 300px;
  min-height: 250px;
  width: 100%;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


.no-scroll {
  overflow: hidden;
  height: 100%;
}

.floating-box {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  text-align: center;
  z-index: 2;
}

.floating-btn {
  width: 100%;
  font-size: 1.5rem;
  line-height: 6rem;
  background-color: var(--point-color);
  color: var(--txt-color);
  font-weight: bold;
}

.floating-box .inner {
  text-align: center;
  background-color: #fff;
}

@media (min-width: 1200px) {
  .floating-btn {
    width: 22rem;
    margin: 0 auto;
  }
}
