/* Minification failed. Returning unminified contents.
(21,26): run-time error CSS1039: Token not allowed after unary operator: '-brand-pale-white'
(22,32): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
(25,15): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(61,15): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(72,43): run-time error CSS1039: Token not allowed after unary operator: '-brand-white'
(73,30): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
(84,30): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(85,26): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(87,15): run-time error CSS1039: Token not allowed after unary operator: '-brand-white'
(91,30): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(139,15): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
(140,43): run-time error CSS1039: Token not allowed after unary operator: '-brand-white'
(141,30): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
(203,43): run-time error CSS1039: Token not allowed after unary operator: '-brand-white'
(204,30): run-time error CSS1039: Token not allowed after unary operator: '-brand-gray'
 */
/* ------------ PUSH LAYOUT CONTAINER ---------- */
.pushLayoutContainer { z-index: 1021; }

/* ------------ TOP PUSH CONTAINER ---------- */
#push {
  width: 18rem;
  left: calc(50% - 9rem);
  top: -15.75rem;
  z-index: 999999999999;
  position: fixed;
  animation-name: slideDownEnter;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: .4s;
  animation-fill-mode: forwards;
  animation-play-state: paused;
  animation-delay: 3s;
}

#pushinner {
  background-color: var(--brand-pale-white);
  box-shadow: 0px 0px 8px var(--brand-gray);
  padding: 1.25rem;
  line-height: 1.4rem;
  color: var(--brand-off-black);
  border: none;
  border-radius: 0.25rem;
  display: grid;
}

#pushinner .push-text-container {
  display: flex;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

#pushinner .push-text-container img {
  width: 2.5rem;
  height: 2.5rem;
}

#pushinner .push-text-container h2 {
  text-align: left;
  color: #6F6F6F;
  font-weight: 600;
  font-size: 1.1rem;
}

#pushinner .push-inner-btns {
  display: flex;
  justify-content: end;
  grid-gap: 2rem;
}

#pushinner .push-inner-btns .primary-btn {
  width: fit-content;
  padding: 0.5rem 1.25rem;
}

.push-button {
  color: var(--brand-purple);
  cursor: pointer;
}
/* ------------ END TOP PUSH CONTAINER ---------- */

/* ------------ PUSH INFO CONTAINER // SUBSCRIBED / UNSUBSCRIBED / DENIED ---------- */
.push-container {
  margin-left: 80px;
  opacity: 0;
  width: 20rem;
  left: -75px;
  background-image: linear-gradient( var(--brand-white), #FFEFD1);
  box-shadow: 0 0 8px 0 var(--brand-gray);
  position: relative;
  border-radius: 0.25rem;
}

.push-container form p { padding-bottom: 0.5rem; }

.push-container form .push-button {
  box-sizing: border-box;
  width: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 8px var(--brand-purple);
  background-color: var(--brand-purple);
  border: 1px solid #3D1E5B;
  color: var(--brand-white);
}

.push-container form .push-button:hover {
  box-shadow: 0 2px 8px var(--brand-purple);
  background-color: #3D1E5B;
}

.push-info-subscribed {
  height: 158px;
  top: -232px;
}

.push-info-unsubscribed {
  height: 230px;
  top: -304px;
}

.push-info-subscribed form,
.push-info-unsubscribed form {
  display: grid;
  gap: 0.5rem;
}

.push-info-denied { top: -162px; }
/* ------------ END PUSH INFO CONTAINER // SUBSCRIBED / UNSUBSCRIBED / DENIED ---------- */

/* ------------ PUSH STATUS TEXT---------- */
.push-status {
  margin-left: 4.5rem;
  opacity: 0;
  position: relative;
}

#PushStatusBoxSubscribed .PushStatusText { bottom: 1rem; }

#PushStatusBoxRecentlySubscribed,
#PushStatusBoxRecentlyUnsubscribed,
#PushStatusBoxRecentlyDenied,
#PushStatusBoxRecentlyGranted {
  position: absolute;
  left: 0;
  bottom: 0;
}
/* ------------ END PUSH STATUS TEXT---------- */

/* ------------ PUSH TEXT---------- */
.push-text {
  border-radius: 0.25rem;
  margin: 0;
  padding: 1.25rem;
  text-align: left;
  color: var(--brand-gray);
  background-image: linear-gradient( var(--brand-white), #FFEFD1);
  box-shadow: 0 0 8px 0 var(--brand-gray);
}

.PushInfoText.push-text {
  background-color: transparent;
  box-shadow: none;
}

#PushInfoSubscribed .push-text form { margin-top: 20px; }
/* ------------ END PUSH TEXT---------- */

/* ------------ PUSH ARROW ---------- */
/*.push-arrow {
    width: 0;
    height: 0;
    margin-top: 21px;
    position: absolute;
}

.arrow-left {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent; 
    border-right: 10px solid var(--brand-yellow);
    left: -10px;
}

.arrow-bottom {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent; 
    border-top: 10px solid var(--brand-yellow);
    bottom: -10px;
    left: 14px; 
}

#PushStatusBoxRecentlyUnsubscribed .PushStatusArrow {
    margin-top: 18px;
}*/
/* ------------ END PUSH ARROW ---------- */

/* ------------ PUSH BELL ---------- */
.push-bell {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  height: 60px;
  vertical-align: middle;
  background-color: transparent;
  border: none;
  pointer-events: none;
}

.push-bell img {
  pointer-events: all;
  cursor: pointer;
}

.push-bell-icon {
  width: 3rem;
  height: 3rem;
  float: left;
  padding: 0.5rem;
  background-image: linear-gradient( var(--brand-white), #FFEFD1);
  box-shadow: 0 0 8px 0 var(--brand-gray);
  border-radius: 50%;
  animation: ring 4s .7s ease-in-out infinite;
}
/* ------------ END PUSH BELL ---------- */

/* ------------ CLOSE BUITTON IN PUSH CONTAINER ---------- */
.PushInfoClose {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  width: 1.1rem;
  height: 1.1rem;
  background: url("/assets/img/icons/close-btn-blk.svg") no-repeat;
  background-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}


.PushInfoClose:hover { background-image: url("/assets/img/icons/close-btn-ylw.svg"); }
/* ------------ END CLOSE BUITTON IN PUSH CONTAINER ---------- */

/*  ------------ KEY FRAME ANIMATIONS ----------  */
@keyframes ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(30deg); }
  3% { transform: rotate(-28deg); }
  5% { transform: rotate(34deg); }
  7% { transform: rotate(-32deg); }
  9% { transform: rotate(30deg); }
  11% { transform: rotate(-28deg); }
  13% { transform: rotate(26deg); }
  15% { transform: rotate(-24deg); }
  17% { transform: rotate(22deg); }
  19% { transform: rotate(-20deg); }
  21% { transform: rotate(18deg); }
  23% { transform: rotate(-16deg); }
  25% { transform: rotate(14deg); }
  27% { transform: rotate(-12deg); }
  29% { transform: rotate(10deg); }
  31% { transform: rotate(-8deg); }
  33% { transform: rotate(6deg); }
  35% { transform: rotate(-4deg); }
  37% { transform: rotate(2deg); }
  39% { transform: rotate(-1deg); }
  41% { transform: rotate(1deg); }
  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

@keyframes slideDownEnter {
  from { top: -15.75rem; }
  to { top: 3rem; }
}

@keyframes pushStatusShow {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes pushStatusShowThenHide {
  0% { opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes pushStatusHide {
  from { opacity: 1; }
  to { opacity: 0; }
}

@media only screen and (min-width: 27.5rem) {

  #push {
    width: 22rem;
    left: calc(50% - 11rem);
  }

  #pushinner .push-text-container img {
    width: 3.25rem;
    height: 3.25rem;
  }
}

@media only screen and (min-width: 40rem) {

  #push {
    width: 26rem;
    left: calc(50% - 13rem);
  }

  #pushinner .push-text-container img {
    width: 4rem;
    height: 4rem;
  }
}
