#kbexit-modal-backdropDiv {
  z-index: 99999;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  top: 0;
}

.kbexit_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.kbexit_modal {
  position: relative;
  background: #fff;
  width: 100%;
  margin: 0 16px;
  border-radius: 10px;
  overflow: hidden;
}

.kbexit_modal .kbexit_modal_image {
  height: 150px;
  overflow: hidden;
  display: flex;
}

.kbexit_modal .kbexit_modal_image img {
  object-fit: cover;
  object-position: center 20%;
  width: 100%;
}

.kbexit_modal .kbexit_modal_content_section {
  width: 100%;
  padding: 24px 16px;
  background: #2abfc9;
}

.kbexit_modal .kbexit_modal_header,
.kbexit_modal .kbexit_modal_body {
  text-align: center;
}

.kbexit_modal .small-title {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.kbexit_modal .small-title-2 {
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}

.kbexit_modal .title-third {
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}

.kbexit_modal .large-title {
  color: #fff;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
}

.kbexit_modal #discount-info {
  margin-top: 4px;
}

.kbexit_modal #discount-amount {
  color: #fff;
  display: none;
  font-size: 88px;
  line-height: 0.9;
  font-weight: 800;
}

#buttons-wrappper {
  display: flex;
  gap: 0 16px;
  margin-top: 24px;
}

.btn-confirm,
.btn-continue {
  text-align: center;
  width: 100%;
  border: 0;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.15s ease-in-out;
}

.btn-confirm.kbexit_yes,
.btn-continue {
  background: #fff;
  color: #2abfc9;
  padding: 12.5px;
}

.btn-confirm.kbexit_yes:hover,
.btn-continue:hover {
  background: #f8f8f8;
}

.btn-confirm.kbexit_no {
  background: none;
  color: #fff;
  padding: 11.5px;
  border: 1px solid #fff;
}

.btn-confirm.kbexit_no:hover {
  box-shadow: inset 0 0 0 0.125rem #fff;
}

.close_exit_modal {
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
}

#email-input-wrappper,
#title-second,
#msg-box {
  display: none;
}

.email_field {
  position: relative;
  margin-top: 24px;
}

.kbexit_form_group .exit_form_control {
  width: 100%;
  background: #fff;
  height: 52px;
  min-height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #333 !important;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 8px;
  transition: all 0.15s ease-in-out;
}

.kbexit_form_group .form-floating .form-control {
  padding-left: 16px;
  padding-right: 16px;
}

.kbexit_form_group .form-floating > label {
  padding: 14px 16px;
}

.kbexit_form_group .exit_form_control.has-error {
  border: 1px solid rgb(237, 73, 8) !important;
}

.kbexit_form_group .exit_form_control::placeholder {
  color: #333;
}

.kbexit_form_group .exit_form_control:focus,
.kbexit_form_group .exit_form_control:focus-visible {
  /* border: 1px solid #231f20; */
  outline: 0;
}

.kbexit_form_group .exit_form_control:not(:placeholder-shown) {
  background: #fff;
}

#show-coupon {
  margin-top: 12px;
  margin-bottom: 4px;
  border: 1px solid #fff;
  padding: 8px 24px;
  font-size: 32px;
  line-height: 1.25;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  display: inline-block;
}

.copy_info {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}

.error_text {
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  display: none;
  margin-bottom: 4px;
  text-align: left;
  align-items: center;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

/* Bootstrap md - Medium devices (tablets, 768px and up) */

@media only screen and (min-width: 768px) {
  .kbexit_modal {
    width: 648px;
    height: 368px;
    display: flex;
  }

  .kbexit_modal .kbexit_modal_image {
    height: 100%;
    width: 216px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .kbexit_modal .kbexit_modal_content_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 16px 36px;
  }

  .kbexit_modal .small-title,
  .kbexit_modal .small-title-2 {
    font-size: 22px;
  }

  .kbexit_modal .large-title {
    font-size: 42px;
  }

  .kbexit_modal #discount-amount {
    font-size: 120px;
  }

  .kbexit_modal .title-third {
    font-size: 24px;
  }

  #buttons-wrappper {
    margin-top: 32px;
  }

  .copy_info {
    margin-bottom: 32px;
  }

  .btn-continue {
    padding: 13px;
  }

  .close_exit_modal {
    right: 24px;
    top: 24px;
  }

  #show-coupon {
    font-size: 40px;
  }
}
