.popup_1{
    color: rgb(0, 0, 0) !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}
.popup_2{
    font-size: calc(1.25625rem + 0.075vw) !important;
}
.popup_3{
    font-size: calc(1.2890625rem + 0.46875vw) !important;;
}
.popup_4{
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
    font-size: calc(1.2890625rem + 0.46875vw) !important;
}
.popup_5{
    font-size: 0.9375rem !important;
    margin-top: 1.6rem !important;
}
.popup_btn{
    padding: 8px 16px 8px !important;
    margin-bottom: 0px !important;
}
.round-button {
border: 1px solid #000000;
border-radius: 0 50px 50px 0;
background-color: #ff5722;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
}
input.round-input {
border: 1px solid #000000;
background-color: #ffffff;
border-radius: 50px 0 0 50px;
padding: 10px;
width: 250px;
font-size: 16px;
}
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(0%, -50%);

  animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translate(0%, -50%) scale(1);
  }
}