@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');

:root { /* New font */
    --font-agrandir: 'Agrandir Wide', 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}

body {
    font-family: var(--font-agrandir) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-agrandir) !important;
}



/* Desktop */
@media (min-width: 769px) {
    .desktop-nav {
        display: flex;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.35);
    }

    /* Hide the mobile navbars on desktop devices */
    .mobile-nav {
        display: none;
    }

    .mobile-navbar-top {
        display: none !important;
    }

    /* Hide the mobile settings on desktop devices */
    #mobile-settings-wrapper {
        display: none
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }


    /* Hide the desktop navbar on mobile devices */
    .desktop-nav {
        display: none;
    }

    /* Mobile Top Navbar: Logo + Bell */
    .mobile-navbar-top {
        display: flex !important;
    
    }

    .navbar-logo-text {
    height: 40px;
     width: auto;
}

.mobile-navbar-top .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-navbar-logo img {
    height: 32px;
    width: auto;
    display: block;
}



    /* Mobile Bottom Nav styling */
    .mobile-nav {
        display: flex;
        position: fixed;
        justify-content: space-between;

        bottom: 0;
        left: 0;
        right: 0;

        /* Keep on top */
        z-index: 1050; 

        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.35);
    }

    .mobile-nav-item {
        width: 19%;
        text-align: center;
        text-decoration: none;
        color: var(--bs-secondary);
    }

.mobile-nav-item.active {
    color: white;
}


    .mobile-nav-item i {
        font-size: 1.7rem;
        margin-top: 2px;
    }

    .mobile-nav-item small {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.7rem;
        margin-top: 2px;
    }

    /* wrapper handles toggling settings panel & backdrop visibility */
    #mobile-settings-wrapper {
        position: fixed;
        inset: 0;

        /* keep on top (but below nav) */
        z-index: 1040; 

        /* Hidden off screen */
        transform: translateX(100%); 
        transition: transform 0.3s ease;
    }

    /* When visible */
    #mobile-settings-wrapper.open {
        transform: translateX(0);
    }

    #mobile-settings-panel {
        position: absolute;
        top: 0;
        right: 0;
        
        width: 80vw;
        height: 100%;

        background-color: var(--bs-body-bg);
        box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);

        padding: 1rem;

        /* prevent content being hidden behind mobile navbar */
        padding-bottom: 80px; 

        display: flex;
        flex-direction: column;
    }

    #mobile-settings-backdrop {
        position: absolute;
        inset: 0;
    }

    #mobile-settings-panel .btn {
        text-align: left !important;
    }

    #mobile-settings-panel .settings-btn {
        width: 100%;
        font-size: 1.2rem;
        padding: 0.65rem 1rem;

        display: flex;
        align-items: center;
        gap: 0.75rem;

        text-align: left !important;              /* <-- add this */

        border-radius: 12px;
        border: none;
    }

    /* Push account section to the bottom */
    .settings-spacer {
        flex-grow: 1;
    }

    .settings-section {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        margin-bottom: 1rem;
    }

    .settings-account {
        margin-bottom: 0;
    }

    main {
        /* prevent content being hidden behind mobile navbar */
        padding-bottom: 60px; 
    }
}

/* Promptlee Green - #8fcd84 */
/* Promptlee Grey - #464646 */
/* new brand palette */
:root {

  --brand-teal: #1B7C7C;
  --brand-green: #2D9D78;
  --brand-light-green: #4CAF7A;
}

/* Buttons */
.btn-primary {
  --bs-btn-bg: var(--brand-teal);
  --bs-btn-border-color: var(--brand-teal);
  --bs-btn-hover-bg: var(--brand-light-green);
  --bs-btn-hover-border-color: var(--brand-light-green);
  --bs-btn-active-bg: var(--brand-light-green);
  --bs-btn-active-border-color: var(--brand-light-green);
}

.btn-outline-primary {
  color: var(--brand-teal);
  --bs-btn-border-color: var(--brand-teal);
  --bs-btn-hover-bg: var(--brand-light-green);
  --bs-btn-hover-border-color: var(--brand-light-green);
  --bs-btn-active-bg: var(--brand-light-green);
  --bs-btn-active-border-color: var(--brand-light-green);
}

/* Text & backgrounds */
.text-primary { color: var(--brand-teal) !important; }
.bg-primary { background-color: var(--brand-teal) !important; }
.text-bg-primary { background-color: var(--brand-teal) !important; }

/* hero video */
.video {
  position:relative;
  display:block;
  width:100%;
}

.page-link{
  color: var(--text-body) !important;
}

/* Forms */
.form-control, .form-select {
  width: 100%;
}

/* Form Switches */
/* Chunkier switch */
.form-switch .form-check-input {
    transform: scale(1.5);
}

/* Brand colour when active */
.form-check-input:checked {
    background-color: var(--brand-teal);
    border-color: var(--brand-teal);
}

/* Smooth animation */
.form-check-input {
    transition: all 0.2s ease-in-out;
}

/* Sign up Page Tabs */
#sign-up-tabs .nav-link {
    color:  var(--bs-body-color);              
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    font-weight: 500;
}

#sign-up-tabs .nav-link:hover {
    background-color: var(--bs-secondary-bg);
}

#sign-up-tabs .nav-link.active { 
    background-color:  var(--bs-secondary-bg); 
    color:  var(--bs-body-color) !important;  
    border-bottom: none;
}

#sign-up-tabs {
    border-bottom: none;
}

#sign-up-tab-content {
    background-color:  var(--bs-secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-top: none;
}


/* Navbar Logo */
.navbar-logo {
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.02);
}

/* Glowing Navigation Items */
.nav-item-glow {
    position: relative;
    padding: 0.5rem 1rem !important;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .nav-item-glow {
    color: white !important;
}

[data-bs-theme="light"] .nav-item-glow {
    color:white !important;
}

.nav-item-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-item-glow:hover::before {
    opacity: 1;
    box-shadow: 0 0 20px rgba(27, 124, 124, 0.8), 0 0 40px rgba(45, 157, 120, 0.5);
}

.nav-item-glow:hover {
    border-color: var(--brand-teal);
}

/* Notifications */
.notification-bell {
    position: relative;
}

.notification-bubble {
    position: absolute;
    top: 1px;
    right: 1px;

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

    min-width: 16px;
    height: 16px;
    padding: 0 4px;

    color: white;
    background-color: red;
    border-radius: 50%;

    font-size: 0.7rem;
    line-height: 1;
}

.notification-wrapper {
    position: relative;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;

    width: min(350px, 90vw);
    overflow-y: auto;

    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    z-index: 2000;

    padding: 5px;
}

[data-bs-theme="light"] .notification-dropdown {
    border: 1px solid #ddd;
}

[data-bs-theme="dark"] .notification-dropdown {
    border: 1px solid #4e4e4e;
}

.notification-empty {
    padding: 15px;
    border-bottom: 1px solid rgba(108,117,125,0.25);
}

.notification-item {
    display: flex;
    gap: 10px;
    align-items: center;

    padding: 15px;

    text-decoration: none;
    color: inherit;

    border-bottom: 1px solid rgba(108,117,125,0.25);
}

.notification-item:hover {
    background-color: rgba(128,128,128,0.15);
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.notification-dot.unread {
    background-color: red;
}

.notification-title {
    font-size: 0.9rem;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notification-timestamp {
    color: #6c757d;
    font-size: 0.75rem;
}

.notification-footer {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.notification-footer > * {
    flex: 1;
}

@media (max-width: 768px) {
    .notification-footer {
        flex-direction: column;
    }
}

/* Icon Button */
.icon-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 999px;

    background: var(--bs-secondary-bg);
    color: var(--bs-body-color);

    cursor: pointer;

    transition: all 0.15s ease;
}

.icon-button:hover {
    background: var(--bs-tertiary-bg);
    transform: translateY(-1px);
}

.icon-button.primary {
    background: var(--brand-green);
    color: white;
}

.icon-button.primary:hover {
    background: var(--brand-light-green);
}

.icon-button:active {
    transform: translateY(0px) scale(0.95);
}

.icon-button:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}


/* Messages */
#chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;

    font-size: 1.7rem; 

    width: 60px;
    height: 60px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#chat-overlay {
    width: 800px;

    position: fixed;
    top: 20px;
    bottom: 20px;
    right: 60px;
    max-width: 600px;
    z-index: 10000;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    padding: 10px;

    display: flex;
    flex-direction: column;
}

#chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 16px;
    border-bottom: 1px solid rgba(108,117,125,0.25);
}

#chat-title {
    font-weight: bold;
    font-size: 1.4rem;
}

#chat-close-btn {
    width: 36px;
    height: 36px;

    border: none;
    border-radius: 999px;

    background: transparent;
    color: #6b7280;

    cursor: pointer;

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

    transition: all 0.15s ease;
}

#chat-close-btn:hover {
    background: rgba(0,0,0,0.05);
    color: #111827;
}

#message-send-form {
    margin: 5px;
    padding: 12px;
    gap: 5px;
    border-top: 1px solid rgba(108,117,125,0.25);

    display: flex;
    gap: 0.5rem;
}

#chat-messages-container {
    overflow-y: auto;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
}

.chat-message {
    position: relative;
    display: flex;
    flex-direction: column;

    align-self: flex-start;

    max-width: 400px;
    padding: 12px 16px;
    margin: 12px;
    border-radius: 16px;
    border-bottom-left-radius: 0px;
    background: var(--bs-secondary-bg);
}

.chat-message.is-sender {
    align-self: flex-end;
    background: var(--brand-light-green);

    border-radius: 16px;
    border-bottom-right-radius: 0px;
}

.message-timestamp {
    color: var(--bs-secondary);
    font-size: 0.8rem;
    align-self: flex-end;
}

.message-sender {
    font-weight: bold;
}

@media (max-width: 768px) {
    #chat-toggle {
        bottom: 90px;
    }

    #chat-overlay {
        width: 80vw;
    }
}



/* Gradient Utilities */
.bg-gradient-teal-green {
    background: linear-gradient(90deg, var(--brand-teal) 0%, var(--brand-green) 100%) !important;
}

.bg-gradient-teal-green-light {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-light-green) 100%) !important;
}

/* Modern Card Styling */
.modern-card {
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.modern-card-header {
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.modern-card-header i {
    font-size: 3rem;
    color: var(--brand-teal);
}

.modern-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-body-color);
    margin: 0;
}

/* Built For Section */
.built-for-section {
    padding: 2.5rem 1.5rem 2.5rem 2.5rem;
    color: white;
}

.built-for-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.built-for-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.built-for-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 1.5rem 2.5rem 2.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    height: 100%;
}

.built-for-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.built-for-card i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.built-for-card-text {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    margin-top: -3rem !important;
    margin-bottom: 0;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Hero Button Glow Effects */
.hero-btn-glow {
    position: relative;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.hero-btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    opacity: 0;
    z-index: -1;
    border-radius: inherit;
    box-shadow: 0 0 20px rgba(27, 124, 124, 0.4), 0 0 40px rgba(45, 157, 120, 0.2);
    transition: all 0.3s ease;
}

.hero-btn-glow:hover::before {
    opacity: 1;
    box-shadow: 0 0 30px rgba(27, 124, 124, 0.8), 0 0 60px rgba(45, 157, 120, 0.5);
}

.hero-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

/* Primary gradient button */
.hero-btn-glow.btn-primary {
    border-color: var(--brand-teal) !important;
}

.hero-btn-glow.btn-primary:hover {
    border-color: var(--brand-light-green) !important;
}

/* Secondary outline button */
.hero-btn-glow.btn-outline-light {
    border-color: white !important;
}

.hero-btn-glow.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.1) !important;
}

/* Section Headers */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bs-body-color);
}

.section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

[data-bs-theme="light"] .section-subtitle {
    color: var(--bs-secondary);
}

[data-bs-theme="dark"] .section-subtitle {
    color: white;
}

.section-description {
    margin-bottom: 2rem;
}

[data-bs-theme="light"] .section-description {
    color: var(--bs-secondary);
}

[data-bs-theme="dark"] .section-description {
    color: white;
}

/* Beneficial Section */
.benefit-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin:auto
}
[data-bs-theme="dark"] .benefit-card {
    background: #2d2d2d;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .benefit-card h3 {
    color: var(--bs-body-color);
}
 



.benefit-card > h3,
.benefit-card > p,
.benefit-card > a {
    padding: 0 2rem;
}

.benefit-card > h3 {
    padding-top: 1.5rem;

}

.benefit-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-teal);
    transform: translateY(-4px);
}

.benefit-card h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card h3 i {
    color: var(--brand-light-green);
}



.benefit-card ul li {
    color: var(--bs-body-color);
    font-weight: 500;
    line-height: 2;
    padding-left: 1rem;
}

.benefit-card ul li i {
    color: var(--brand-green);
    font-weight: 700;
}

/* Get Started Cards */
.getstarted-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    border: var(--brand-light-green) solid 1px;
    border-radius: 16px;
}

.getstarted-card h3  {
    text-align: left;
    margin: 1.5rem 2rem 1rem 2rem;
    color: var(--bs-body-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.getstarted-card p {
    padding: 0 2rem;
    text-align: left;
    margin: 0;
}

.card-image-placeholder {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    overflow: hidden;
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bs-body-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.button-wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 0 2rem 2rem 2rem;
    margin-top: auto;
}

.signup-btn {
    padding: 0.6rem 1.5rem !important;
    font-weight: 600 !important;
    border-radius: 28px !important;
    
}


/* Contact Form Section */
.contact-section {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .contact-section {
    background: #2d2d2d;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-section .section-title {
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .contact-section .section-title {
    color: white;
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 0.2rem rgba(27, 124, 124, 0.15);
}

.contact-section button {
    animation: hop 2s infinite;
}

@keyframes hop {
    0%, 10% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-15px);
    }
    35%, 45% {
        transform: translateY(0);
    }
    55% {
        transform: translateY(-8px);
    }
    70%, 100% {
        transform: translateY(0);
    }
}

.calendly-inline-widget{
    border-left: 1px solid var(--brand-teal);
    margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-body-color);
}

.how-it-works-flow {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-green);
    margin: 1.5rem 0;
}

/* Steps Timeline */
.steps-timeline {
    position: relative;
    padding: 2rem 0;
    margin: 3rem 0;
}

.steps-container {
    position: relative;
    z-index: 1;
}

.steps-row {
    display: flex;
    gap: 4rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    align-items: flex-start;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    flex: 0 1 auto;
    min-width: auto;
    text-align: center;
}

.step-item::after {
    content: '→';
    position: absolute;
    right: -2.5rem;
    top: 50%;
    transform: translateY(-0%);
    font-size: 2rem;
    color: var(--brand-green);
    font-weight: 300;
}

.step-item:last-child::after {
    display: none;
}

.step-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.step-circle i {
    font-size: 1.5rem;
}

.step-content h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.step-content p {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.help-backdrop {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition: opacity .3s ease;

    z-index: 9998;
}

.help-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.help-sidebar {
    z-index: 9999;
}


.iti {
    width: 100%;
}

#ios-install-instructions {
    position: fixed;
    
    height: 80vh;
    width: 90vw;

    /* Centre of screen */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    z-index: 2000;

    padding: 10px;
}

#ios-instructions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(108,117,125,0.25);
}

#ios-instructions-close-btn {
    width: 36px;
    height: 36px;

    border: none;
    border-radius: 999px;

    background: transparent;
    color: #6b7280;

    cursor: pointer;

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

    transition: all 0.15s ease;
}

#ios-instructions-close-btn:hover {
    background: rgba(0,0,0,0.05);
    color: #111827;
}