/* =============================================================================
// PLUGIN-STYLES.CSS
// -----------------------------------------------------------------------------
// Total Notify styles.
// ========================================================================== */

/* Main Styles
// ========================================================================== */

.total-notify .tnbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 10px 0 12px;
  border-bottom: 3px solid #7cd2ff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .4);
  color: #fff;
  background-color: #3ba1d6; /* blue by default */
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, .4);
          box-shadow: 0 0 7px rgba(0, 0, 0, .4);
}

.total-notify .tnbar-stub {
  position: fixed;
  top: -10px;
  left: 0;
  width: 100%;
  height: 19px;
  z-index: 200;
  padding: 7px 0 5px;
  text-align: center;
}

.total-notify .tnbar-link {
  padding: 2px 8px;
  margin-left: 10px;
  text-shadow: none;
  text-decoration: none;
  color: #08c;
  background: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}

.total-notify .tnbar-link:hover {
  color: #F90;
}

.total-notify .close-notify {
  position: absolute;
  top: 9px;
  right: 22px;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  text-decoration: none;
  color: #fff;
  background: url("../img/tn-close.png") 0 0 no-repeat;
  cursor:pointer;
  overflow: hidden;
}

.total-notify .show-notify {
  background: #3ba1d6 url("../img/tn-down-arrow.png") 10px 10px no-repeat;
  border: 3px solid #7cd2ff;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, .4);
          box-shadow: 0 0 7px rgba(0, 0, 0, .4);
  float: right;
  margin-right: 10px;
  color: #fff;
  width: 35px;
  height: 33px;
  text-decoration: none;
  cursor:pointer;
  overflow: hidden;
  text-indent: -9999px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
}



/* Colors
// ========================================================================== */

/*
// Black
*/

.total-notify.black .tnbar {
  background-color: #2f2f2f;
  border-bottom: 3px solid #555;
}

.total-notify.black .show-notify {
  background-color: #2f2f2f;
  border: 3px solid #555;
}


/*
// Red
*/

.total-notify.red .tnbar {
  background-color: #d54421;
  border-bottom: 3px solid #fe5129;
}

.total-notify.red .show-notify {
  background-color: #d54421;
  border: 3px solid #fe5129;
}


/*
// Green
*/

.total-notify.green .tnbar {
  background-color: #87c50e;
  border-bottom: 3px solid #a8e531;
}

.total-notify.green .show-notify {
  background-color: #87c50e;
  border: 3px solid #a8e531;
}


/*
// Orange
*/

.total-notify.orange .tnbar {
  background-color: #f5b303;
  border-bottom: 3px solid #ffcf4c;
}

.total-notify.orange .show-notify {
  background-color: #f5b303;
  border: 3px solid #ffcf4c;
}


/*
// Brown
*/

.total-notify.brown .tnbar {
  background-color: #765a32;
  border-bottom: 3px solid #a17c46;
}

.total-notify.brown .show-notify {
  background-color: #765a32;
  border: 3px solid #a17c46;
}


/*
// Gray
*/

.total-notify.gray .tnbar {
  background-color: #555555;
  border-bottom: 3px solid #858585;
}

.total-notify.gray .show-notify {
  background-color: #555555;
  border: 3px solid #858585;
}


/*
// Pink
*/

.total-notify.pink .tnbar {
  background-color: #e25f96;
  border-bottom: 3px solid #ff87c2;
}

.total-notify.pink .show-notify {
  background-color: #e25f96;
  border: 3px solid #ff87c2;
}