/* Email Popup */



.modal-header{
  background: #124b71;
}


.modal-header .close {
  color: #fff;
  text-shadow: 0 1px 0 #000;
}
.modal-title{
  color: #fff;
}
.modal-footer{
  background: #124b71;
}
.dontshow{
  display: none;
}


#ship-warn-popup, .custom-popup {
position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lato";
    z-index: 10000;
    opacity: 0;
    transform: translateY(-150px);
    transition opacity transform 0.5s;
}
#ship-warn-popup.open,
.custom-popup.open{
  opacity: 1;
   transform: translateY(0px);
}

#ship-warn-popup .bg,
.custom-popup .bg{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
#ship-warn-popup .inner,
.custom-popup .inner {
  width: 80%;
  max-width: 500px;
  min-height: 100px;
  position: relative;
  padding: 2rem;
  background: #124b71;
  color: #fff;
  border: 3px solid #000;
  text-align: center;

}
#ship-warn-popup .inner a,
.custom-popup .inner a {
  color: #fff;
  text-decoration: none !important;
}
#ship-warn-popup .inner a img,
.custom-popup .inner a img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  border: 1px solid #000;
}
#ship-warn-popup .amazon-link{
  max-width:80%;
  margin: 0 auto;
}
#ship-warn-popup .amazon-link span {
  background: #e0a80c;
  display: block;
  text-align: center;
  padding: 15px;
  color: #333;
  transition: all 0.5s;
}
#ship-warn-popup .amazon-link:hover span {
  background: #fcbd0f;
}
#ship-warn-popup .close,
.custom-popup .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 100%;
  border: 3px solid #000;
  transform: translate(50%, -50%);
}
#ship-warn-popup .close:before,
#ship-warn-popup .close:after,
.custom-popup .close:before,
.custom-popup .close:after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#ship-warn-popup .close:after ,
.custom-popup .close:after {
  transform: translate(-50%, -50%) rotate(135deg);
}