﻿.price {
    font-size: 1.5rem;
    color: black;
}

.programs {
    font-size: 1.5rem;
    font-weight: bolder;
    border-radius: 5px;
}

.features ul {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
}

label ul li::before {
    content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1rem; /* Also needed for space (tweak if needed) */
    font-size: 1.25rem;
}

figure {
    width: 10rem;
}

figure .product-image {
    width: 10rem;
    height: 10rem;
}

figure .product-image {
    background: white;
    transition: all .1s ease-in-out;
}

figure .product-image:hover {
    transform: scale(1.01);
    box-shadow: 0 0 0.3333rem black;
    cursor: pointer;
}

figure img {
    max-height: 100%;
    width: 10rem;
}

.training-package {
    border-top: 1px solid;
}

.course-page__header {
    margin-bottom: 0;
}

.course-page p {
    line-height: 1.5rem;
}

.course-page__drop-arrow {
    position: absolute;
    height: 100%;
    right: 1rem;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.course-page select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.product-option {
    background-color: #F8F8F8;
    box-shadow: 0 0 0.3333rem black;
}

.product-option:hover {
    transform: scale(1.01);
    box-shadow: 0 0 0.5rem black;
    cursor: pointer;
}

.product-option.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.modal {
    backdrop-filter: blur(4px);
}

@media (max-width: 991.98px) {
    #package button {
        width: 100%;
    }    
}

@media (max-width: 767.98px) {
    #package img {
        width: 100%;
    }
}
