/* ============================================= */
/* GET THE APP - STYLES                         */
/* Similar to Talk to Expert component          */
/* ============================================= */

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

/* Container */
.get-the-app-container {
    position: relative;
    display: inline-block;
}

/* Button */
.get-the-app-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}


.get-the-app-button-icon {
    width: 24px;
    height: 24px;
}

.get-the-app-button-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #0066ff;
    line-height: 18px;
}

/* Overlay */
.get-the-app-overlay {
    display: none;
}

/* Wrapper - Desktop Dropdown */
.get-the-app-wrapper {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1040;
    width: 650px;
}

.get-the-app-wrapper.active {
    opacity: 1;
    visibility: visible;
}

/* Arrow pointing up */
.get-the-app-arrow {
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}


/* Content */
.get-the-app-content {
    display: flex;
    align-items: center;
}

.get-the-app-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 360px;
}

.get-the-app-image-img {
    width: 100%;
    height: auto;
}

.get-the-app-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px ;
}

.get-the-app-text-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-download-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1c1d1f;
    line-height: 30px;
    text-align: center;
    margin: 0;
}

.app-name {
    color: #0066ff;
    font-weight: 600;
}

.app-description {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #45484D;
    line-height: 22px;
    margin: 0;
    text-align: center;
    padding: 0 8px;
}

.get-the-app-text-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
}

.get-the-app-qr-img {
    width: 144px;
    height: 144px;
}

.qr-instruction {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 18px;
    text-align: center;
}

.qr-instruction .store-icons {
    display: block;
    margin-top: 6px;
    width: 120px;
    height: auto;
}

.store-icons-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.store-icons{
    height: 28px;
    width: auto;
}

/* ============================================= */
/* TABLET (641px - 1024px)                      */
/* ============================================= */

@media (min-width: 641px) and (max-width: 1024px) {
    .app-download-title {
        font-size: 18px;
    }
}

