.plan-content {
    min-height: 300px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .plan-content {
        min-height: 400px;
    }
}

/* ================================ */

/* ========= NAVIGATION =========== */

/* ================================ */

#main_navigation .navbar {
    grid-template-areas: "logo nav cta";
    grid-template-columns: 1fr auto 1fr;
    display: grid;
    width: 100%;
}

#main_navigation .navbar .mobile-cta-btns,
.dashboard-nav-item {
    display: none;
}

#main_navigation .navbar #mobile-menu-button {
    background: transparent;
    border: none;
    color: #252930;
    display: none;
    padding: 3px 8px;
}

#main_navigation .navbar #mobile-menu-button.active {
    color: #4550E6;
}

#main_navigation .navbar #mobile-menu-button svg {
    height: 1.1rem;
    width: auto;
}

/* Make the dropdowns start where there parent start as well */

#main_navigation .navbar .nav .dropdown-menu {
    margin: 0;
}

@media screen and (max-width: 576px) {
    #main_navigation .navbar {
        display: flex;
        justify-content: space-between;
    }
    /* Make the nav fixed and closed by default */
    #main_navigation .navbar .nav {
        background-color: #FFFFFF;
        box-shadow: 0 -3px 1px 3px rgb(255, 255, 255), 0 12px 24px -6px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        padding-bottom: 1rem;
        position: fixed;
        left: 0;
        top: 69px;
        /* Size of the header */
        width: 100%;
    }
    #main_navigation .navbar.show .nav {
        display: flex;
    }
    /* Add some spacing between the items */
    #main_navigation .navbar .nav .nav-item {
        padding: 1rem 0;
    }
    /* Make the dropdowns shift the content beneath them */
    #main_navigation .navbar .nav .dropdown-menu {
        position: relative;
        width: 100%;
    }
    /* Main ctas buttons are shown inside the nav */
    #main_navigation .navbar .cta-btns {
        display: none;
    }
    #main_navigation .navbar .mobile-cta-btns {
        display: flex;
        justify-content: center;
    }
    /* Show the toggle button */
    #main_navigation .navbar #mobile-menu-button {
        display: block;
    }
    .dashboard-nav-item {
        display: block;
    }
}

#main_navigation .navbar .site-logo {
    grid-area: logo;
    justify-self: start;
}

#main_navigation .navbar .nav {
    grid-area: nav;
}

#main_navigation .navbar .cta-btns {
    grid-area: cta;
    justify-self: end;
}

#main_navigation .navbar .nav-link.active {
    color: #4550E6;
    font-weight: 600;
}

/* Remove the arrows from the menu items dropdowns */

#main_navigation .navbar ul.dropdown-menu::before {
    content: none;
}

#main_navigation .navbar ul.dropdown-menu::after {
    content: none;
}

/* ========= END NAVIGATION =========== */

/* ================================ */

/* ========= BREADCRUMBS =========== */

/* ================================ */

.breadcrumb {
    background-color: #FFFFFF;
    padding-left: 0;
    padding-bottom: 0;
}

.breadcrumb-item a {
    color: #252930;
}

.breadcrumb-item.active {
    color: #4550E6;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #252930;
    content: "â†’";
}

/* ========= END BREADCRUMBS =========== */

/* Add some padding to the items of the unstyled list */

.list-unstyled li {
    padding: .5rem 0;
}

.text-black {
    color: #252930;
}

/* Make the content of the page to cover the minimum size required in order for the footer to show on the bottom */

.main-content {
    min-height: 60vh;
}

/* Tabs styling */

.tab-content {
    background-color: white;
    padding: 1rem;
}

/* Free plan styling */

.plans-section .plan-header.plan-grey {
    background-color: #EEEEEE;
}

.plans-section .plan-header.plan-grey a.btn-light {
    background-color: #EEEEEE;
}

/* Add spacing for the recommendation badge */

.plans-section .plan-header {
    padding-top: 53px;
    /* 37px + 16px */
    position: relative;
}

/* The recommendation badge */

.plans-section .plan-header .plan-recommendation-badge {
    align-items: center;
    background-color: #4550E6;
    color: #FFFFFF;
    display: flex;
    height: 37px;
    width: 100%;
    left: 0;
    top: 0;
    padding: .4rem;
    position: absolute;
    justify-content: center;
}

.plans-section .plan-header .plan-recommendation-badge p {
    font-size: 14px;
}

.results-wrapper table {
    max-height: 50vh;
}