/* This is to style the Module Details block on the QB Archive page */

/* Html border removal on mobile */
@media (max-width: 767px) {
.elementor-widget-container.elementor-widget-container{
    border-style: none !important;
}
}
/* END Mobile border removal */

/* Module title styles */
.module-details-title.module-details-title{
    color: #333333;
    padding: 0px 30px 10px 30px;
}
/* Label styles */
.module-details__line-item--label{
    font-weight: 700;
}
/* line item details */
.module-details__line-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #BEBEBE;
    color: #333333;
}
/* Mobile element stacking */
@media (max-width: 767px) {
    .module-details__line-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        padding: 10px 0;
    }
}
/* END line item details */

/* Removing the last border in the list */
.module-details__line-item:last-child {
    border-bottom: none;
    width: 100%;
}
/* Disclaimer text styles */
.module-details__disclaimer{
    flex: 0 0 100%;
    text-align: left;
    margin-top: 5px;
    color: #BEBEBE;
}