/* Scss Document */
.notification {
  transition: all 2000ms ease-out;
  position: fixed;
  cursor: pointer;
  z-index: 1000000000001;
  bottom: -50vh;
  right: 100px;
  width: 490px;
  padding: 50px;
  border-width: 1px;
  border-style: solid;
  border-color: #53047D;
  border-radius: 10px;
  background-image:linear-gradient(76.8deg, rgba(121,45,129,1) 3.6%, rgba(36,31,98,1) 90.4%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#53047d', endColorstr='#0e047d', GradientType=0 ); }
  .notification.active {
    bottom: 20px; }
  .notification.minimize {
    padding: 0 0 15px; }
  .notification * {
    transition: all 1000ms ease-out; }
  .notification .content {
    text-align: center;
	margin-bottom: 25px;	}
    .notification .content h1 {
      font-family: "FPTBold", Helvetica, Arial, "Microsoft JhengHei", sans-serif;
      font-size: 1em;
      color: #FFFFFF; }
    .notification .content p {
      opacity: 1;
      font-size: 0.750em;
      color: #FFFFFF; }
  .notification .actions {
    opacity: 1;
    width: 320px;
    margin: 0 auto; }
    .notification .actions a {
      margin: 0 20px; }
    .notification .actions a.btn {
      font-family: "FPTBold", Helvetica, Arial, "Microsoft JhengHei", sans-serif;
      border-color: #FFFFFF;
      border-style: solid;
      border-width: 1px;
      border-radius: 50px;
      color: #FFFFFF;
      font-size: 0.750em;
      padding: 12px 40px;
	  text-align: center;	  }
    .notification .actions a.learnMore {
      border-color: transparent;
	  box-shadow: inset 0px -10px 10px -5px rgb(255 200 0);
      background-image: linear-gradient(109.6deg, rgba(255,194,48,0.8) 11.2%, rgba(255,124,0,0.8) 100.2%); }

@media (max-width: 540px) {
  .notification {
    width: calc( 100% - 40px);
    margin: 0 20px;
    right: 0;
    left: 0;
    padding: 30px 15px; }
    .notification .actions {
      width: inherit; }
      .notification .actions a {
        margin-left: auto;
        margin-right: auto; }
        .notification .actions a {
          margin-left: auto;
          margin-right: auto;
          margin-bottom: 15px; }
        .notification .actions a.btn {
          width: calc( 80% - 20px);
          display: block; } }
