main #package-options .package-header .feature-header {
    margin: 0 !important;
    border-radius: 0 !important;
}

main #package-options .package-services li.package-features {
    display: flex; 
    align-items: stretch; 
    justify-content: flex-start;
}

main #package-options .package-services li.package-price {
    border-bottom: none !important;
}

main #package-options .package-header .feature {
    width: 55% !important;
}

main #package-options .package-services .feature {
    padding: 11px 0 10px !important;
    width: 55% !important;
}

main #package-options .package-services .feature-price {
    border-bottom: 1px dotted #246698;
}

main #package-options .package-services .price-type {
    margin: 0;
    padding-right: 10px !important;
    background-color: #ffffff;
}

.select-package-label {
    text-align: center;
    margin-bottom: 160px;
}

.feature-info-link,
.feature-info-link:visited,
.feature-info-link:link,
.feature-info-link:active {
    color: #000000;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.feature-info-link:hover,
.feature-info-link-active {
    color: #246698 !important;
    text-decoration: none !important;
    outline: none;
}

.feature-info-link:focus {
    /* outline:#000000; */
}

.feature-info-link img {
    flex-basis: 17px;
    margin-right: 5px;
}

.feature-title {
    flex-basis: calc(100% - 22px);
    padding-right: 10px;
}

.feature-description {
    padding-left: 28px !important;
    padding-right: 10px !important;
    display: flex;
    opacity: 0;
    height: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transition: opacity 250ms, margin-top 250ms, margin-bottom 250ms, height 250ms ease-in;
}

.open-feature-description {
    opacity: 1;
    height: auto;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    transition: opacity 250ms, margin-top 250ms, margin-bottom 250ms, height 250ms ease-out;
}

.checkmark-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    margin: 0 !important;
}

.checkmark-container span {
    position: relative;
    background-image: none !important;
}

.checkmark-container span::after {
    content: ' ';
    width: 20px;
    height: 20px;
    background-color: #7C7C7C;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    color: #ffffff;
}

.checkmark-container.selected span::after {
    background-color: #246698;
}

.checkmark-container span.nodot::after{
    display: none;
}

.selected-feature {
    height: auto; 
    width: 100%;
}

.desktop-packages {
    display: block;
}

.mobile-packages {
    display: none;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
}

.mobile-packages {
    display: none;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.package-slider-btn {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    z-index: 101;
    border-width: 4px 4px 0 0;
    border-color: #999999;
    border-style: solid;
    border-radius: 3px;
}

.package-slider-btn:hover {
    border-color: #246698;
}

.package-slider-btn-previous {
    left: -20px;
    top: calc(50% - 15px);
    transform: rotate(225deg) translateY(-50%);
}

.package-slider-btn-next {
    right: -20px;
    transform: rotate(45deg) translateY(-50%);
}

.mobile-packages::after {

}

.package-services-mobile {
    flex-basis: 33%;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100vh;
    max-height: 500px;
}

.package-services-mobile .package-features {
    flex-direction: row;
    width: calc(100% - 5px);
}

.package-services-mobile .package-features .feature {
    flex-basis: calc(80% - 10px);
}

.package-services-mobile .package-features .checkmark-container {
    flex-basis: 20%;
}

main #package-options .package-container .package-services-mobile li:before,
main #package-options .package-container .package-services-mobile li:after {
    display: none;
    visibility: hidden;
}

.packages-slider {
    width: 303%;
    display: flex;
    flex-direction: row;
}

.package-info-bubble-mobile {
}

.package-info-bubble-content-mobile {
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    padding: 20px;
    width: calc(100% - 40px);
    max-height: calc(100vh - 40px);
    z-index: 100;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 2.25rem;
    color: #333333;
}

.package-info {
    display: flex;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    position: relative;
}

.package-info::before {
    content: ' ';
    position: absolute;
    width: 16px;
    height: 4px;
    background-color: #246698;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: 0.25s ease-in-out;
}

.package-info::after {
    content: ' ';
    position: absolute;
    width: 16px;
    height: 4px;
    background-color: #246698;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg) ;
    transition: 0.25s ease-in-out;
}

.open-package-info::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.open-package-info::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.package-info-close-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1em;
    font-size: 1em;
    font-weight: 700;
    text-decoration: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(25%, -25%);
    z-index: 10;
    background-color: #e5f2fa;
    color: #246698 !important;
    text-align: center;
    border: 2px solid #246698;
    line-height: 1.25em;
}

.package-info-close-btn:hover {
    text-decoration: none;
    background-color: #246698;
    color: #ffffff !important;
}

.disabled {
    color: #cccccc !important;
    border-color: #cccccc !important;
}

.package-slider-btn {
    display: none;
}


/* Entity Stuff */
.entity-responsive-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 25px;
}

.entity-responsive-nav label {
    font-weight: bold;
    color: #246698;
    font-size: 16px;
}

.entity-responsive-nav select {
    font-size: 16px !important;
}

.alpha-menu-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.page-links-mobile {
    display: none;
    margin-top: 10px;
}

.page-links-desktop {
    visibility: visible;
}

main #package-options .package-container .footer .incorporate-now-button {
    width: auto;
}

.border-bottom-2 {
    border-color: #246698 !important;
    border-width: 0 0 3px !important;
    border-style: solid !important;
}

.border-top-2 {
    border-color: #246698 !important;
    border-width: 3px 0 0 !important;
    border-style: solid !important;
}

@media screen and (max-width: 960px) {
    .page-links-mobile {
        display: block;
    }
    
    .page-links-desktop {
        visibility: hidden;
        height: 0;
        margin: 0;
        padding: 0 0;
    }
}

@media screen and (max-width:768px) {
    #content .container {
        width: calc(100% - 40px) !important;
        margin: 0 auto !important;
        padding: 0 0 40px;
    }

    #content  .package-header-container .container {
        padding: 0 !important;
    }

    #content .container.features-wrapper {
        width: 100% !important;
    }

    #package-options .package-container {
        width: 100% !important;
        margin: 0 auto !important;
    }

    main #package-options .package-services .feature {
        padding-left: 10px !important;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .checkmark-container.economy span::before,
    .checkmark-container.standard span::before,
    .checkmark-container.premium span::before {
        width: 18px;
        height: 18px;
        background-color: transparent;
        border-radius: 9px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 300;
        font-size: 1.1rem;
        text-transform:uppercase;
    }

    .checkmark-container.economy span::before {
        content: 'e';
    }

    .checkmark-container.standard span::before {
        content: 's';
    }

    .checkmark-container.premium span::before {
        content: 'p';
    }

    .checkmark-container span.nodot::before {
        display: none;
    }

    /* Entity Stuff */
    .entity-responsive-nav {
        display: flex;
    }
}