#cb_popup_center {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111111;
    width: 30%;
    height: auto;
    overflow: auto;
    padding: 50px 20px 30px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
}


#cb_popup_content {
  min-width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

#cb_popup_close {
    opacity: 1;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9;
}

.cb_popup_animation {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
  }
}
@keyframes pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
  }
}
#cb_popup_close:hover {
  opacity: 0.7;
}

#cb_popup_wrap {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


#cb_popup_content form button[type=submit] {
        width: 150px;
    height: 40px;
    color: var(--heading-color);
    background-color: var(--bg-color);
    cursor: pointer;
        text-align: center;
    display: block;
    margin: 0 auto;
}    

#cb_popup_content h2 {
   font-size: 30px;
    text-align: center;
}

#cb_popup_content input, #cb_popup_content textarea {
    color: #fff;
    border: 1px solid #e7e7e75c;
}

#cb_popup_content .form-input textarea::placeholder,
#cb_popup_content .form-input input::placeholder {
  font-size: 16px;
  color: #fff;
}

#cb_popup_content #error_data{
  color: red;
}

@media screen and (max-width: 767px) {
    #cb_popup_center {
    width: 90%;
}
#cb_popup_content h2 {
   font-size: 24px;
}
}