/*
Plugin Name: Ads-Z
Description: Plugin for displaying different types of ads.
Version: 1.0
Author: Truyện Béo - 0911202404
Author URI: https://www.facebook.com/BQ.Truyen
*/

#ads-z-popup-box-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0; /* Start with 0 opacity */
  animation: fadeFromTop 0.5s ease-in-out forwards; /* Apply animation */
	width: 100%;
    max-width: 550px;
}
div#ads-z-popup-box-center .ads-z-close {
    background: red!important;
}
@keyframes fadeFromTop {
  0% {
    opacity: 0; /* Start with 0 opacity */
    transform: translate(-50%, -70%); /* Start position above the viewport */
  }
  100% {
    opacity: 1; /* End with 1 opacity */
    transform: translate(-50%, -50%); /* End position at the center of the viewport */
  }
}


.ads-z-close {
    position: absolute;
    top: 0;
    padding: 0px;
  margin-left: -30px;
    height: 10px;
    width: 30px;
    background-color: #eab100;
    border: none;
    cursor: pointer;
    color: white;
    line-height: 0;
}

#ads-z-top-fixed,
#ads-z-bottom-fixed {
  position: fixed;
  width: 100%;
  text-align: center;

  z-index: 9999;
}
div#ads-z-top-fixed {
    top: 15px;
  
}
#ads-z-bottom-fixed { bottom: 15px;}

#ads-z-float-right-fixed,
#ads-z-float-left-fixed {
  position: fixed;
 bottom: 15px;

  z-index: 9999;
}

#ads-z-float-right-fixed {
  right: 0;
}

#ads-z-float-left-fixed {
  left: 0;
}
@media (max-width: 767px) {
#ads-z-popup-box-center {
	width: 100%;
    max-width: 360px;
}
}

@media (max-width: 767px) {
  #ads-z-float-right-fixed {
    display: none;
  }
}


@media (max-width: 767px) {
  #ads-z-float-left-fixed {
    display: none;
  }
}
