
.popup-box ul {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
  list-style-type: none !important;
	list-style: none !important;
}

.box-buttons li {
	margin: 0;
	padding: 0;
  list-style-type: none !important;
	list-style: none !important;
}

.popup-box a {
  font-family: Tahoma, sans-serif;
  color: #37a886;
  text-decoration: none;
}

.popup-box form#popup_box_form {

  margin:  0px 0px 20px 10px;
  padding: 0px 0px 0px 0px;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  text-align: left;
  
}

.popup-box form#popup_box_form_unsub {

  margin:  0px 0px 20px 10px;
  padding: 0px 0px 0px 0px;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  text-align: center;
  
}

.popup-box input {
  margin: 0;
  padding: 5px 5px 5px 5px;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  border: 1 px solid rgb(0,51,0);
  width: 200px;
  
}

.popup-box-wrapper {
  
  display: none;  
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(175, 195, 198, 0.85);
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 9999;
}

.popup-box-wrapper.is-visible {
  
  display: inline;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}


.popup-box {

  position: relative;

  margin: 10em auto;
  width: 90%;
  max-width: 350px;
  background: #FFF;
  border-radius: .3em .3em .5em .5em;
  text-align: center;
  box-shadow: 0 0 20px rgba(10, 10, 10, 0.2);  

 
}

.popup-box.anim {

  animation-name: anim;
  -webkit-animation-name: anim;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;

}

@keyframes anim {
    0% {  transform: rotate(0deg) scaleY(0.7); }
    20% { transform: rotate(-2deg) scaleY(1.1); }
    35% { transform: rotate(2deg) scaleY(1); }
    50% { transform: rotate(-2deg); }
    65% { transform: rotate(1deg); }
    80% { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
}
@-webkit-keyframes anim {
    0% {  -webkit-transform: rotate(0deg) scaleY(0.7); }
    20% { -webkit-transform: rotate(-2deg) scaleY(1.1); }
    35% { -webkit-transform: rotate(2deg) scaleY(1); }
    50% { -webkit-transform: rotate(-2deg); }
    65% { -webkit-transform: rotate(1deg); }
    80% { -webkit-transform: rotate(-1deg); }
    100% { -webkit-transform: rotate(0deg); }
}

.popup-box p {
  padding: 2em 0 0 0;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
}
.popup-box .box-buttons:after {
  content: "";
  display: table;
  clear: both;
}
.popup-box .box-buttons li {
  float: left;
  width: 50%;
}
.popup-box .box-buttons a {
  display: block;
  color: #FFF;
  text-transform: uppercase;
  height: 55px;
  line-height: 55px;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.popup-box .box-buttons li:first-child a {
  background: #69a4fc;
  border-radius: 0 0 0 .3em;
}

.popup-box .box-buttons li:last-child a {
  background: #b5bdcd;
  border-radius: 0 0 .3em 0;
}

/*********** CLOSE BUTTON ****************/
.txt-none {
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
}

.popup-box .popup-box-close {
  position: absolute;
  top: 8px;
  right: 0px;
  width: 36px;
  height: 36px;
}
.popup-box .popup-box-close::before, .popup-box .popup-box-close::after {
  position: absolute;
  top: 12px;
  width: 20px;
  height: 3px;
  content: '';
  background-color: #8f9cb5;
}
.popup-box .popup-box-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}
.popup-box .popup-box-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 8px;
}

.tbl_wrapper {
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
}
.tbl_wrapper td {
  font-family: Tahoma, sans-serif;
  font-size: 14px;
}



.popup-box-wrapper-unsub {
  
  display: none;  
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(175, 195, 198, 0.85);
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 9999;
}

.popup-box-wrapper-unsub.is-visible {
  
  display: inline;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.button_newsletter {
	display: inline-block;
	font-size: 16px;
	vertical-align: middle;
	white-space: nowrap;
	-webkit-border-radius: .3em .3em .3em .3em;
  border-radius: .3em .3em .3em .3em;
  height: 35px;
  background-color: #EEEEEE;
  color: #444444;
  box-shadow: 0 0 20px rgba(80, 80, 80, 0.3);  
}


