/*--------------------------------------------------------------------------------------------------------------------------------
 Modal css for alerts that are common to all pages so they are placed here with the menu system which is common to all pages
--------------------------------------------------------------------------------------------------------------------------------*/

.modals {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1500;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.6);
    /* Black w/ opacity */
    overflow-x: auto;
    overflow-y: auto;
}

#modal-alert-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 300px;
    border-radius: 20px;
    background-color: White;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#modal-alert-title {
    border-radius: 20px 20px 0 0;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: brown;
    color: white;
    font-size: 30px;
    text-align: center;
}

#modal-alert-message {
    font-size: 20px;
    padding: 20px;
}

#modal-alert-nav {
    text-align: center;
    margin: 20px 0 20px 0;
}

#phone-landscape {
    display: none;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    font-size: 15px;
    background-color: white;
    width: 100%;
    height: 100%;
    text-align: center;
}


/* folowing CSS used for lesson selection to display the cards */
/* #cards {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-height: 85vh;
    padding-bottom: 20px;
}

.card {
    width: 300px;
    height: 400px;
    background-color: GhostWhite;
    text-align: center;
    margin: 5px 0 20px 0;
    border-radius: 5px;
    border-color: black;
}

.future-card {
    width: 300px;
    height: 400px;
    background-color: #dadada;
    text-align: center;
    margin: 5px 0 20px 0;
    border-radius: 5px;
    border-style: solid;
    border-color: black;
    border-width: 1px;
}

.card a {
    text-decoration: none;
}

.lesson-number {
    color: darkblue;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.lesson-grammar-points {
    color: brown;
    font-size: 18px;
    text-align: left;
    padding-left: 15px;
    font-family: artifika;
    margin-bottom: 20px;
}

.g-point {
    display: flex;
}

.title {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 25px;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: bold;
    color: #513a24;
    text-align: center;
} */