/* Minification failed. Returning unminified contents.
(2,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,21): run-time error CSS1039: Token not allowed after unary operator: '-font'
(21,26): run-time error CSS1039: Token not allowed after unary operator: '-btn-primary'
(22,15): run-time error CSS1039: Token not allowed after unary operator: '-btn-primary-text'
(40,26): run-time error CSS1039: Token not allowed after unary operator: '-btn-primary-hover'
(80,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(122,21): run-time error CSS1039: Token not allowed after unary operator: '-font'
 */
:root {
  --font:  "Open Sans", "Roboto", Arial, "微軟正黑體", "Microsoft JhengHei", "新細明體", sans-serif;
  --anchor: #1F81B9;
  --anchor-hover:  #3899CF;

  --btn-primary: var(--anchor);
  --btn-primary-hover: var(--anchor-hover);
  --btn-primary-text: #FFF;
}


/* Default Button (Blue Background, White Text)
/*------------------------------------------------------------*/
.webpush .btn, 
.webpush a.btn:link,
.webpush a.btn:visited {
  width: auto;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  background-color: var(--btn-primary);
  color: var(--btn-primary-text);
  text-align: center;
  padding: 8px 16px;
  border-radius: 8px;
  border: 0;
  transition: all .3s ease-in-out;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  -webkit-appearance: none;
}

.webpush .btn:hover,
.webpush a.btn:hover {
  background-color: var(--btn-primary-hover);
}

.webpush .btn:focus {
  outline: none;
  box-shadow: none;
}

/* Button Size
/*------------------------------------------------------------*/
/* Large */
.webpush .btn--large,
.webpush a.btn--large:link {
  /* font-size: 16px; */
  font-weight: 600;
  min-height: 42px;
  padding: 8px 24px;
}

/* Button with Text Only e.g. Cancel button in modal dialog
/*------------------------------------------------------------*/
.webpush .btn--text,
.webpush a.btn--text:link,
.webpush a.btn--text:visited {
  color: #666;
  border: 0;
  background: transparent !important;
}

.webpush .btn--text:hover,
.webpush a.btn--text:hover {
  color: #888;
}

@media (min-width: 1200px) {
  .webpush .btn, .webpush a.btn:link {
    font-size: 15px;
  }
}
:root {
  --font:  "Open Sans", "Roboto", Arial, "微軟正黑體", "Microsoft JhengHei", "新細明體", sans-serif;
}

/* Web Push
/*------------------------------------------------------------*/
.webpush {
  width: 100%;
  height: fit-content;
  background-color: #FFF;
  color: #333;
  border: 1px solid #ddd;
  border-top: 0;
  padding: 20px;

  box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.2);
  
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;

  position: fixed;
  top: -200px;
  left: 49.5%;
  transform: translateX(-50%);
  /*z-index: 9999;*/
  z-index: 1000301;

  display: flex;
  flex-direction: column;
  gap: 5px;

  transition: top .35s ease-in-out;
}

.webpush.on {
  top: 0;
}

.webpush--logo {
  width: 60px;
}

.webpush--msg {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.webpush .action-btns {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 5px;
}

@media (min-width: 576px) {
  .webpush {
    width: 480px;
    height: 170px;
    padding: 24px;

    gap: unset;
  }

  .webpush--msg {
    /*font-size: unset;*/
    font-size: 16px;
    gap: 20px;
  }

  .webpush--logo {
    width: 80px;
  }
}
