.float-popup {
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: fixed;
  bottom: 40px;
  min-width: 720px;
  z-index: 3;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 8px 20px 4px rgba(5, 33, 52, 0.12);
  column-gap: 1.5rem;
}
.float-popup .btn {
  background-color: #e2e2e2;
  padding: 6px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: -11px;
  right: -11px;
}
.float-popup .btn svg {
  transform: translateY(-10px);
}
.float-popup .btn:hover,
.open-button:hover {
  background-color: #e9e9e9;
}
.float-popup .popup-title {
  font-size: 24px;
  color: var(--blue);
  line-height: 24px;
}
.float-popup a {
  padding: 6px 12px;
  margin: 0;
  font-size: 16px;
  background-color: var(--light-blue);
}
.float-popup a:hover {
  background: #1884b9;
}

.popup-bottom,
.popup-top {
  padding: 12px 34px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.popup-top {
  justify-content: left;
  column-gap: 8px;
}

.popup-bottom {
}

.popup-top {
  background: #EAF5FB;
  font-size: 14px;
}

.popup-top .percentage {
  font-size: 21px;
  font-weight: 800;
  color: var(--light-blue);
  margin-right: 4px;
}

@media screen and (max-width: 768px){
  .float-popup {
    width: calc(100vw - 3rem);
    min-width: calc(100vw - 3rem);
    bottom: 180px;
    flex-direction: column;
    padding: 16px;
    row-gap: 15px;
  }
  .popup-bottom {
    justify-content: center;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #D7DBDF;
    text-align: center;
  }
  .popup-top {
    background: transparent;
    padding: 0;
    order: 2;
    flex-direction: column;
    text-align: center;
  }
}
