/* ========= INFORMATION ============================

	- document:  Fake Notifications - creating effective herd effects
	- author:    Wow-Company @ Codecanyon
	- profile:   https://codecanyon.net/user/wow-company
	- version:   1.1
	- email:     wow@wow-company.com

==================================================== */

.notification {
  padding: 10px;
  z-index: 9999999999;
  position: fixed;
  font-size: 12px;
  font-family: Verdana, sans-serif;
  display: none;
  border-style: solid;
}
.notification-block {
  position: relative;
  width: 100%;
  float: left;
  min-height: 1px;
  white-space: normal;
}
.notification-img,
.notification-text-block {
  float: left;
  min-height: 1px;
  white-space: normal;
  display: inline-block;
  vertical-align: middle;
}
.notification-img {
  height: 60px;
  width: 60px;
  text-align: center;
  font-size: 40px !important;
  line-height: 40px;
}
.notification-img img {
  width: 100%;
  height: auto;
}
.notification-text-block {
  width: 200px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1.3;
}
.notification-title {
  font-weight: bold;
}

/* Media Queries for Smaller Devices */
@media (max-width: 600px) {
  .notification {
    font-size: 10px;
    padding: 8px;
  }
  .notification-img {
    height: 40px;
    width: 40px;
    font-size: 30px !important;
    line-height: 30px;
  }
  .notification-text-block {
    width: 150px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (max-width: 400px) {
  .notification {
    font-size: 8px;
    padding: 5px;
  }
  .notification-img {
    height: 30px;
    width: 30px;
    font-size: 20px !important;
    line-height: 20px;
  }
  .notification-text-block {
    width: 120px;
    padding-left: 3px;
    padding-right: 3px;
  }
}
