.subscription_card {
    position: relative;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    width: 14rem;
    min-width: 150px;
    margin: 20px;
    border-radius: 20px;
    border: 1px solid #2c2f3f;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.subscription_coming_soon {
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.subscription_coming_soon::after {
    /*add white overlay*/
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);

}

.subscription .card-body {
    margin: 20px;
}

.subscription_card .logo {
    overflow: hidden;
}

.subsription_best_seller {
    width: 150px;
    max-width: 75%;
    margin: 10px;
}

.subsription_best_seller_img {
    vertical-align: middle;
}

.pilot-advice-container {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif !important;
}

.pilot-advice-container .image-container {
    position: relative;
    flex: 0 0 150px;
    min-height: 100%;
    background-image: url('../images/pilot-advice.jpg');
    background-size: cover;
    background-position: right;
}

.pilot-advice-container .image-container .quote {
    position: absolute;
    top: -10vh;
    right: 10px;
    font-size: 25vh;
    color: white;
    font-family: "Noto Sans HK", sans-serif;
    background: transparent;
    color: var(--var-text-color-quote);
}

.pilot-advice-container div {
    background-color: var(--vpt-background-color-advice);
    padding: 30px;
    color: var(--vpt-text-important);
    flex-grow: 1;
}

.pilot-advice-container div h3 {
    font-size: 20px;
    font-weight: bold;
    color: inherit;
    text-indent: 0;
    margin-top: 0;
}

.pilot-advice-container div .key-points {
    margin: 1em 0 0 0;
    font-weight: bold;
    border-radius: 20px;
    padding: 20px 15px;
    background-color: var(--vpt-background-color-advice-key);
}

.pilot-advice-container div .key-points p {
    margin-bottom: 0;
    text-indent: 0;
}

.pilot-advice-container em {
    font-weight: bold;
    font-style: normal;
    color: var(--vpt-text-important);
}

@media (max-width: 600px) {
    .pilot-advice-container {
        flex-direction: column;
        /* This will stack the image and text vertically */
    }

    .pilot-advice-container .image-container {
        flex: 0 0 20vh;
        /* This will make the image container 20% of the viewport height */
        width: 100%;
        /* This will make the image container take up the full width */
    }
}


/**
STORE MODAL
*/
.subscription-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
    cursor: pointer;
}

.subscription-button {
    width: 100%;
    padding: 20px;
    text-align: center;
    font-size: 1.5em;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    margin-bottom: 5px;
    position: relative;
    transition: background-color 0.3s;
}

.subscription-button.subscription-yearly {
    background-color: #28a745;
}

.subscription-button:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}

.subscription-button.subscription-yearly:hover {
    background-color: #218838; /* Darker shade for hover effect */
}

.subscription-price {
    font-size: 1.2em;
    margin-top: 10px;
}

.subscription-discount {
    font-size: 1em;
    color: white;
    background-color: red;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: 0px;
    right: -10px;
    transform: rotate(-15deg);
}

.subscription-price sub,
.subscription-discount sub {
    font-size: 0.6em;
}

.footnote {
    font-size: 0.9em;
    color: #6c757d;
    margin-top: 20px;
}

.modal-title {
    font-size: 1.5em;
    font-weight: bold;
}

.modal-body p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

#loginForm .form-label {
    font-size: 1em;
}

#loginForm .form-control {
    font-size: 1em;
}

#loginForm .btn {
    font-size: 1em;
}


