/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

#myForm {
  display: none;
}

.startup-message {
  display: none;

}

.alternative-message {
  display: none;

}


.pop-up-content {
  margin-top: 10px;

}

.close-window {
  color: black;AX
  font-size: 12px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;

}

.exit-intent-pop-up-wrapper {
  /*  display: none; /* Initially hidden */
  position: fixed; /* Will cover the whole viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999; /* Make sure it's above other elements */
  background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent black background */
}

.exit-intent-pop-up-main {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: white;
  padding: 35px;
  border-radius: 25px;
}


.pop-up-message {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding: 0 5% 0 5%;
}

.pop-up-message p {
  margin: 0;

}

.pop-up-buttons {
  display: flex;
  justify-content: space-evenly;
  flex-wrap:wrap;

}

button.pop-up-button {
  -webkit-text-size-adjust: 100%;
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
  font-family: Ubuntu,Roboto;
  visibility: visible;
  box-sizing: border-box;
  outline: none;
  border: 2px solid;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .05px;
  line-height: 1;
  text-decoration: none!important;
  touch-action: manipulation;
  transition: .2s ease;
  user-select: none;
  vertical-align: middle;
  white-space: normal;
  font-size: 1.25rem;
  padding: .9375rem 1.875rem;
  background: #05abb3!important;
  border-color: #05abb3;
  color: #fff!important;
  fill: #fff;
  border-radius: 50px!important;
  display: inline-block;
  text-align: center;

}


button.pop-up-button:hover {
  -webkit-text-size-adjust: 100%;
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
  font-family: Ubuntu,Roboto;
  visibility: visible;
  box-sizing: border-box;
  border: 2px solid;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .05px;
  line-height: 1;
  text-decoration: none!important;
  touch-action: manipulation;
  transition: .2s ease;
  user-select: none;
  vertical-align: middle;
  white-space: normal;
  font-size: 1.25rem;
  padding: .9375rem 1.875rem;
  color: #fff!important;
  fill: #fff;
  border-radius: 50px!important;
  display: inline-block;
  text-align: center;
  -webkit-transform: translateY(-3px);
  background: #125373!important;
  border-color: #125373;
}

.exit-popup__box.exit-intent-pop-up-main {
  max-width: 550px;
  position:relative;
  overflow: hidden;
  background-color: #e6f6f7;
}

.exit-popup__box:before {
  background: #d9f0f2;
  border-radius: 50%;
  content: "";
  height: 450px;
  left: -160px;
  position: absolute;
  top: -214px;
  width: 450px;
  z-index: -1; 
}

.exit-popup__box h3 span {
  color: #333;
}

.exit-popup__box h3 {
  font-size: 30px;
  color: #000;
}

.close-window img {
    max-height: 12px;
}

.close-window img:hover {
    opacity: 0.6;
}

@media (max-width: 767px){
  .exit-popup__box.exit-intent-pop-up-main {
    max-width: 460px;   
    padding-inline: 20px;
  }
  .exit-popup__box h3 {
    font-size: 26px;  
  }
  .pop-up-message {
    padding: 0;
  }
  .exit-popup__box .pop-up-buttons > div {
    margin: 5px;
  }
}

@media (max-width: 480px){
.exit-popup__box.exit-intent-pop-up-main {
    max-width: 94%;   
  }
}