/**************************************************************/
/*                  Subscription Templates table
/**************************************************************/

table.list.subscription_templates tbody td { vertical-align: top; }
table.list.subscription_templates tbody td.text { text-align: left; }

form.new_subscription_template p.min-width select {
  min-width: 150px;
}

.temporaryNotification {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #444;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
  opacity: 0;
  transition: opacity 0.6s, visibility 0.6s;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.temporaryNotification.visible {
  visibility: visible;
  opacity: 1;
  animation: fadeOut 1s 2s forwards; /* start fading out after 2s, fade out over 1s */
}
