/**
 *
 *      OClass packages styling
 *
 */

.ocw-package-detail-container > .ocw-col {
    margin-bottom: 20px;
}

.ocw-package-detail-container h3 {
    font-size: var(--ocw-p3-size) !important;
    font-weight: 600;
}

.ocw-package-detail-container h4{
    padding-top: 10px;
}

.pack-features {
    padding: 0px;
    display: flex;
    column-gap: 40px;
    list-style: none;
}

.pack-features i{
    margin-right: 6px;
}

.pack-features li {
    font-size: 14px;
}

.pack-price{
    font-size: var(--ocw-p4-size);
    font-weight: 600;
    margin-top: 15px;
}

.pack-description,
.pack-description p{
    color: black;
}

.pack-description a{
    color: var(--ocw-pri-color) !important;
}

.pack-image{
    margin-bottom: 20px;
}

.no-package-image{
    min-height: 200px;
    width: 100%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
}

.add-to-cart-package {
    display: inline-block !important;
    padding: 8px 15px;
    border: none;
    background: var(--ocw-cta-bg-color) !important;
    color: var(--ocw-cta-color) !important;
    text-align: center;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    min-width: 130px;
}

.add-to-cart-package:hover,
.add-to-cart-package:focus {
    background: var(--ocw-cta-bg-color) !important;
    color: var(--ocw-cta-color) !important;
}

.plan-date-picker{
    font-size: 14px;
    margin-top: 30px;
}
.plan-date-picker input{
    margin: 10px 0;
    font-size: 14px;
    background: none;
    width: 100%;
    padding: 8px 15px 8px 35px !important;
}

.plan-start-date-div{
    max-width: 300px;
    position: relative;
}

.plan-start-date-div::after {
    content: '\f073'; /* Unicode for the calendar icon in Font Awesome */
    font-family: 'Font Awesome 5 Free' !important; /* Use Font Awesome font */
    font-weight: 900; /* Make sure the icon appears */
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.plan-date-picker h5{
    font-size: 16px;
    margin: 4px 0px;
}

.plan-date-picker h5 i{
    font-size: 14px !important;
    margin-right: 4px;
}

.error-message{
    display: none;
    color: #ed0000;
}

@media (max-width: 767px) {
    .ocw-package-detail-container > .ocw-row{
        display: block;
        margin-bottom: 30px;
    }

    .ocw-package-detail-container h3{
        font-size: 18px !important;
    }

    .pack-features{
        display: block;
    }
}