@charset "utf-8";
/* CSS Document */


.ios-safari-prompt {
  position: fixed !important;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #D5FF4F;
  padding: 25px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  z-index: 999 !important;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.ios-chrome-prompt {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  background: #363636;
  color: #D5FF4F;
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  z-index: 999 !important;
  display: none;
  animation: slideDown 0.3s ease-out;
}

.ios-prompt.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.ios-prompt-content {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ios-prompt-icon {
  font-size: 2em;
  flex-shrink: 0;
}

.ios-prompt-text {
  flex: 1;
}

.ios-prompt-text h3 {
  margin: 0 0 5px 0;
  font-size: 1em;
	text-align: center;
}

.ios-prompt-text p {
  margin: 0;
  font-size: 0.8em;
  color: white;
	text-align: center;
}

.ios-prompt-safari-close {
  position: fixed;
  bottom: 2px;
  right: 5px;
  background: none;
  border: none;
  color: #D5FF4F;
  font-size: 1.5em;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}

.ios-prompt-chrome-close {
  position: fixed;
  top: 0px;
  right: 5px;
  background: none;
  border: none;
  color: #D5FF4F;
  font-size: 1.5em;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}

/* Android Prompt */
.android-prompt {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #D5FF4F;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.android-prompt.show {
  display: block;
}

.android-prompt-content {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.android-install-btn {
  background: #D5FF4F;
  color: #333;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1em;
}

.android-prompt-close {
  background: none;
  border: none;
  color: #D5FF4F;
  font-size: 1.5em;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}

.share-icon {
  display: inline-block;
  background: #D5FF4F;
  color: #333;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
}


/*OFFLINE POP UP*/

.offline-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.offline-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.offline-popup-content {
    background: black;
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offline-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offline-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.offline-message h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.offline-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.offline-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.offline-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* LANDSCAPE MOBILE/TABLET (480px to 1099px wide) */
@media only screen and (min-width: 480px) and (orientation: landscape) and (max-width: 1099px) {
	
	
.ios-prompt-safari-close,
.ios-prompt-chrome-close {
	bottom: 5vh;
	right: 5vw;
}	
	
}