/*******************************************************************
** [+] EXIT INTENT STYLE
********************************************************************/

/** PAGE OVERLAY STYLE **/
.bg-popContainer {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  position: fixed;
  top: 0;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 99999;
}

/** POP-UP BOX STYLE **/
.pop-box {
  max-width: 500px;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  border-radius: 5px;
  text-align: center;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

.pop-box h3{
	font-family: "Noto Sans Regular", sans-serif;/*BR assets update*/
  font-style: normal;
  font-weight: 400;
  line-height: 1.42;
  font-size: 24px;
}

/** CLOSE ICON STYLE **/
.pop-box .closer {
  position: absolute;
  top: 0;
  right: 14px;
  font-size: 32px;
  transform: rotate(45deg);
  cursor: pointer;
  font-weight: 300;
}

.pop-box .closer:hover {
  color: #004585; /*BR assets update*/
}


/** BUTTON STYLE **/
.button-wrapper{
  /*margin-top: 25px;*/
  margin-bottom: 5px;
}

.pop-box .btn-outlined{
  font-family: "Noto Sans Bold", sans-serif; /*BR assets update*/
    font-style: normal;
    font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  background-color: #ffffff;
  color: #0084FF; /*BR assets update*/
  border: 2px solid #0084FF; /*BR assets update*/
  border-radius: 5px;
  margin: 25px 5px 0px;
  padding: 15px 10px;
  cursor: pointer;
  min-width: 180px;
  display: inline-block;
}
.pop-box .btn-outlined:hover{
  text-decoration: none;
  background-color: #004585;/*BR assets update*/
  color: #ffffff;
  border: 2px solid #004585; /*BR assets update*/
}

.pop-box .btn-blue{
  font-family: "Noto Sans Bold", sans-serif; /*BR assets update*/
    font-style: normal;
    font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  background-color:#0084FF; /*BR assets update*/
  color: #ffffff;
  border: 2px solid #0084FF; /*BR assets update*/
  border-radius: 5px;
  margin: 25px 5px 0px;
  padding: 15px 10px;
  cursor: pointer;
  min-width: 180px;
  display: inline-block;
}
.pop-box .btn-blue:hover{
  text-decoration: none;
  background-color: #ffffff;
  color: #004585; /*BR assets update*/
  border: 2px solid #004585; /*BR assets update*/
}

@media (max-width: 650px) {
  .pop-box {
    width: 100%;
    height: auto;
    margin: 0 10px;
  }

  .pop-box h3 {
    line-height: 24px;
    font-size: 20px;
  }  

  .pop-box .btn-outlined{
    margin: 15px 5px 0px;
  }

  .pop-box .btn-blue{
    margin: 15px 5px 0px;
  }
}
/*******************************************************************
** [-] EXIT INTENT STYLE
********************************************************************/
