/*
Theme Name: Ladies in the Lead BB Child Theme
Version: 1.0
Author: Fusion Forward
Author URI: https://www.fusionforward.com
template: bb-theme
*/


/******************************************************************************/
/******************************************************************************/
/* ADD CUSTOM FONTS ***********************************************************/
/******************************************************************************/
/******************************************************************************/

@font-face {
    font-family: 'Feeling Passionate';
    src: url('fonts/Feeling-Passionate.woff2') format('woff2'),
         url('fonts/Feeling-Passionate.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'League Spartan';
    src: url('fonts/LeagueSpartan-VariableFontwght.woff2') format('woff2'),
         url('fonts/LeagueSpartan-VariableFontwght.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


/******************************************************************************/
/******************************************************************************/
/* PAGE STYLES ****************************************************************/
/******************************************************************************/
/******************************************************************************/

/* forces transparent top & bottom border on menu items. needed since homepage menu links are IDs. */
.my-menu.my-menu.my-menu .uabb-creative-menu .menu li.current-menu-item a {
    border-color: rgba(242, 179, 199, 0);
}

/* forces pink top & bottom border on hover for menu items. needed since homepage menu links are IDs. */
.my-menu.my-menu.my-menu .uabb-creative-menu .menu li.current-menu-item a:hover {
    border-color: #f2b3c7;
}

/* forces pink top & bottom border on focus for menu items. needed since homepage menu links are IDs. */
.my-menu.my-menu.my-menu .uabb-creative-menu .menu li.current-menu-item.focus a {
    border-color: #f2b3c7;
}

/* size of social icon in header */
.header-socials .fl-icon i {
    width: 31.5px;
    height: 31.5px;
}

/* removes spacing around social icons in header */
.header-socials .fl-icon {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* removes padding on caption under photo of joan */
.fl-photo-caption {
    padding-bottom: 0px;
}

/* color of word required on contact form */
.my-form.my-form.my-form.my-form .gform_wrapper .gfield_required {
    color: #f2809e;
}

/* adds border and padding on form submit button */
.my-form.my-form.my-form.my-form .gform-footer input#gform_submit_button_1 {
    padding: 15px 40px;
    border: solid 1px #f2809e;
}

/* margin under text in footer */
.footer-text p {
    margin-bottom: 7px;
}


@media screen and (max-width: 1024px) {
    
    /* size of social icon in header */
    .header-socials .fl-icon i {
        width: 28.5px;
        height: 28.5px;
    }
    
    /* spacing between rows in contact form */
    .my-form.my-form.my-form.my-form .gform-theme--foundation .gform_fields {
        row-gap: 20px;
    }
    
    /* padding on form submit button */
    .my-form.my-form.my-form.my-form .gform-footer input#gform_submit_button_1 {
        padding: 10px 30px;
        margin-top: 10px;
    }
    
}


@media screen and (max-width: 748px) {
    
    /* reorders header items */
    .my-header-row .my-header-logo-container {
        order: 1;
    }
    .my-header-row .my-header-menu-container {
        order: 3;
    }
    .my-header-row .my-header-icon-container {
        order: 2;
    }
    
    /* size of social icon in header */
    .header-socials .fl-icon i {
        width: 27.5px;
        height: 27.5px;
    }
    
    
}



/******************************************************************************/
/******************************************************************************/
/* PODCAST STYLES *************************************************************/
/******************************************************************************/
/******************************************************************************/

/* font size for content excerpt */
.my-homepage-podcasts.my-homepage-podcasts.my-homepage-podcasts .cfm-episode-content {
    font-size: 18px;
}

/* sytles for listen button */
.my-homepage-podcasts.my-homepage-podcasts.my-homepage-podcasts .cfm-episode-link a {
    background: linear-gradient(to bottom,#ffffde 0%, #f1e3c0 100%);
    border: solid 1px #E7c980;
    padding: 4px 25px;
    font-family: "Feeling Passionate",Verdana,Arial,sans-serif;
    text-transform: lowercase;
    font-size: 18px;
    color: #f2809e;
    transition: 0.2s ease-in-out;
}

/* hover styles for listen button */
.my-homepage-podcasts.my-homepage-podcasts.my-homepage-podcasts .cfm-episode-link a:hover {
    background: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
}

/* padding around each podcast on archive page */
.my-podcasts.my-podcasts.my-podcasts .fl-post-feed-post {
    padding: 40px 0px 40px 10px;
}

/* removes padding on first in the list */
.my-podcasts.my-podcasts.my-podcasts .fl-post-feed-post:first-of-type {
    padding-top: 0px;
}

/* removes bottom border on the last in the list */
.my-podcasts.my-podcasts.my-podcasts .fl-post-feed-post:last-of-type {
    border-bottom-width: 0px;
}

/* margin below podcast date */
.my-podcasts.my-podcasts.my-podcasts .fl-post-feed-header {
    margin-bottom: 10px;
}

/* allow content to flex into 2 columns */
.my-podcasts.my-podcasts.my-podcasts .fl-post-feed-content {
    display: flex;
    flex-wrap: wrap;
}

/* podcast player column */
.my-podcasts.my-podcasts.my-podcasts .cfm-player-iframe {
    flex-basis: 50%;
    margin-bottom: 0px !important; /* needs to be important to override inline */
}

/* podcast content excerpt */
.my-podcasts.my-podcasts.my-podcasts p {
    flex-basis: 50%;
    padding-left: 40px;
}

/* read more button */
.my-podcasts.my-podcasts.my-podcasts a.fl-post-feed-more {
    background: linear-gradient(to bottom,#ffffde 0%, #f1e3c0 100%);
    border: solid 1px #E7c980;
    padding: 4px 25px;
    font-family: "Feeling Passionate",Verdana,Arial,sans-serif;
    text-transform: lowercase;
    font-size: 18px;
    color: #f2809e;
    transition: 0.2s ease-in-out;
    margin-left: calc(50% + 42px);
}

/* hover styles for read more button */
.my-podcasts.my-podcasts.my-podcasts a.fl-post-feed-more:hover {
    background: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
}

/* page number styles */
.my-podcasts.my-podcasts.my-podcasts .fl-builder-pagination {
    padding-bottom: 0px;
}

/* page number styles */
.my-podcasts.my-podcasts.my-podcasts .fl-builder-pagination li a.page-numbers,
.my-podcasts.my-podcasts.my-podcasts .fl-builder-pagination li span.page-numbers {
    line-height: 1;
    margin-bottom: 0px;
    padding: 10px 10px 5px;
    color: #f2809e;
}

/* current page number style */
.my-podcasts.my-podcasts.my-podcasts .fl-builder-pagination li span.current {
    background: linear-gradient(to bottom,#ffffde 0%, #f1e3c0 100%);
}



@media screen and (min-width: 768px) {
    
    /* forces podcast to be 3 columns */
    .my-homepage-podcasts.my-homepage-podcasts.my-homepage-podcasts .cfm-episodes-grid.cfm-episodes-cols-3 .cfm-episode-wrap {
        width: 33.33%;
        flex: 0 1 33.33%;
    }
    
}


@media screen and (max-width: 1024px) {
    
    /* sytles for listen button */
    .my-homepage-podcasts.my-homepage-podcasts.my-homepage-podcasts .cfm-episode-link a {
        font-size: 15px;
    }
    
    /* padding around each podcast on archive page */
    .my-podcasts.my-podcasts.my-podcasts .fl-post-feed-post {
        padding: 20px 0px 20px 10px;
    }
    
    /* podcast content excerpt */
    .my-podcasts.my-podcasts.my-podcasts p {
        padding-left: 20px;
    }
    
    /* read more button */
    .my-podcasts.my-podcasts.my-podcasts a.fl-post-feed-more {
        font-size: 15px;
        margin-left: calc(50% + 22px);
    }
    
    /* page number styles */
    .my-podcasts.my-podcasts.my-podcasts .fl-builder-pagination {
        padding-top: 20px;
    }
    
}

@media screen and (max-width: 748px) {
    
    /* padding around each podcast on archive page */
    .my-podcasts.my-podcasts.my-podcasts .fl-post-feed-post {
        padding-left: 2px;
    }
    
    /* podcast player column */
    .my-podcasts.my-podcasts.my-podcasts .cfm-player-iframe {
        flex-basis: 100%;
        margin-bottom: 20px !important; /* needs to be important to override inline */
    }
    
    /* podcast content excerpt */
    .my-podcasts.my-podcasts.my-podcasts p {
        flex-basis: 100%;
        padding-left: 0px;
    }
    
    /* read more button */
    .my-podcasts.my-podcasts.my-podcasts a.fl-post-feed-more {
        margin-left: 0px;
    }
    
    
}


/******************************************************************************/
/******************************************************************************/
/* MERCH STYLES ***************************************************************/
/******************************************************************************/
/******************************************************************************/

/* options button background for merch on homepage */
.homepage-product-grid.homepage-product-grid.homepage-product-grid .woopack-product-action a {
    background: linear-gradient(to bottom,#ffffde 0%, #f1e3c0 100%);
}

/* options button hoever background for merch on homepage */
.homepage-product-grid.homepage-product-grid.homepage-product-grid .woopack-product-action a:hover {
    background: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
}

/* categories heading font size */
.my-categories.my-categories.my-categories .widgettitle {
    font-size: 22px;
}

/* width of categories dropdown */
.my-categories.my-categories.my-categories .select2-container {
    width: 200px !important; /* must be important to override inline */
}

/* border for categories dropdown */
.my-categories.my-categories.my-categories .select2-container--default .select2-selection--single,
.select2-dropdown.select2-dropdown.select2-dropdown {
    border: 1px solid #e6e6e6;
    border-radius: 0px;
    height: auto;
}

/* padding around category options */
.my-categories.my-categories.my-categories .select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 5px;
    padding-bottom: 3px;
}

/* border around search field */
.select2-container--default.select2-container--default.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e6e6e6;
    border-radius: 0px;
}

/* padding around each category option */
.select2-results__option.select2-results__option.select2-results__option {
    padding: 7px 6px 5px;
    line-height: 1;
    margin-top: 3px;
}

/* background color for category selected */
.select2-container--default.select2-container--default.select2-container--default .select2-results__option--highlighted[aria-selected], 
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #f2b3c7;
}

/* border around sorting options */
.my-merch-archives.my-merch-archives.my-merch-archives select.orderby {
    border: 1px solid #e6e6e6;
    border-radius: 0px;
    height: 36px;
    padding-top: 3px;
}

/* styles for price */
.my-merch-archives.my-merch-archives.my-merch-archives span.price {
    font-size: 18px;
    margin-bottom: 0px;
}

/* select options button styles */
.my-merch-archives.my-merch-archives.my-merch-archives .fl-post-module-woo-button a {
    font-size: 18px;
    background: linear-gradient(to bottom,#ffffde 0%, #f1e3c0 100%);
    color: #f2809e;
    border: solid 1px #f1e3c0;
}

/* options button hover background  */
.my-merch-archives.my-merch-archives.my-merch-archives .fl-post-module-woo-button a:hover {
    background: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
}

/* hides sku number on single item page */
.my-item .my-item-details .product_meta span.sku_wrapper {
    display: none;
}

/* styles for categories on single item page */
.my-item .my-item-details .product_meta span.posted_in {
    margin-left: -2px;
    font-size: 18px;
    font-style: italic;
}

/* styles for price on on single item page */
.my-item .my-item-details .fl-module-fl-woo-product-price .price,
.my-item .my-item-details .single_variation_wrap .price {
    font-weight: bold;
    font-size: 28px;
}

/* styles for product description on single item page */
.my-item .my-item-details .fl-module-fl-woo-product-description {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* margin around options and cart button on single item page */
.woocommerce div.product form.cart, .woocommerce-page div.product form.cart {
    margin: 0px;
}

/* adds space to left of color and size in dropdowns on single item page */
.woocommerce div.product form.cart .variations select,
.woocommerce-page div.product form.cart .variations select {
    padding-left: 10px;
}

/* removes space between variation options and add to cart button */
.my-item.my-item.my-item .my-item-details form.cart .variations {
    margin: 0px;
}

/* styles for number box next to add to cart button */
.woocommerce .quantity input.qty, .woocommerce-page .quantity input.qty {
    border: solid 1px #e6e6e6;
    border-radius: 0px;
    height: 40px;
}

/* add to cart button styles */
.woocommerce-page button.button, .woocommerce-page button.button.alt {
    font-size: 18px;
    background: linear-gradient(to bottom, #ff9ebc 0%, #f2809e 100%);
    padding: 10px 25px;
}

/* add to cart button hover styles */
.woocommerce-page button.button, .woocommerce-page button.button.alt:hover {
    color: #f2809e;
    background: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
}

/* styles for notice when item has been added to cart */
.woocommerce-message.woocommerce-message.woocommerce-message,
.cart-empty.woocommerce-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1e3c0;
    border: 1px solid #e7c980;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.2;
}

/* styles for view cart button in notice */
.woocommerce-message.woocommerce-message.woocommerce-message a.button {
    background: linear-gradient(to bottom, #ff9ebc 0%, #f2809e 100%);
    font-size: 18px;
    margin-left: 20px;
    padding: 10px 25px;
}

/* hover styles for view cart button in notice */
.woocommerce-message.woocommerce-message.woocommerce-message a.button:hover {
    color: #f2809e;
    background: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
}

/* removes bottom padding on notices */
.fl-theme-builder-woo-notices.fl-theme-builder-woo-notices.fl-theme-builder-woo-notices {
    padding-bottom: 0px;
}

/* hides heading for cart totals section */
.my-cart-details.my-cart-details.my-cart-details .cart_totals h2 {
    display: none;
}

/* adds margin above cart totals section */
.my-cart-details.my-cart-details.my-cart-details .cart_totals table {
    margin-top: 30px;
}

/* styles for buttons on cart page */
.my-cart-details.my-cart-details.my-cart-details .woocommerce-cart-form__contents .button,
.my-cart-details.my-cart-details.my-cart-details .cart_totals a.button,
.my-cart-details.my-cart-details.my-cart-details .cart_totals .shipping-calculator-form .button,
.my-cart-details.my-cart-details.my-cart-details .return-to-shop .button {
    background: linear-gradient(to bottom, #ff9ebc 0%, #f2809e 100%);
}

/* styles for update cart & shipping buttons on cart page */
.my-cart-details.my-cart-details.my-cart-details .woocommerce-cart-form__contents .button,
.my-cart-details.my-cart-details.my-cart-details .cart_totals .shipping-calculator-form .button,
.my-cart-details.my-cart-details.my-cart-details .return-to-shop .button {
    font-size: 18px;
    padding: 10px 25px;
}

/* hover styles for buttons on cart page */
.my-cart-details.my-cart-details.my-cart-details .woocommerce-cart-form__contents .button:hover,
.my-cart-details.my-cart-details.my-cart-details .cart_totals a.button:hover,
.my-cart-details.my-cart-details.my-cart-details .cart_totals .shipping-calculator-form .button:hover,
.my-cart-details.my-cart-details.my-cart-details .return-to-shop .button:hover {
    background: linear-gradient(to bottom,#ffffff 0%, #ffffff 100%);
}

/* padding around proceed to checkout button on cart page */
.my-cart-details.my-cart-details.my-cart-details .cart_totals .wc-proceed-to-checkout {
    padding-top: 30px;
    padding-bottom: 0px;
}

/* margin below proceed to checkout button on cart page */
.my-cart-details.my-cart-details.my-cart-details .cart_totals a.button {
    margin-bottom: 0px;
}

/* spacing around each item in billing details */
.my-checkout-details.my-checkout-details.my-checkout-details .woocommerce form .form-row{
    padding: 0px;
    margin: 0px;
}

/* color of required asterisk on checkout page */
.my-checkout-details.my-checkout-details.my-checkout-details .woocommerce form .form-row .required {
    color: #f2809e;
}

/* unsets the height for billing detials input boxes */
.my-checkout-details.my-checkout-details.my-checkout-details .woocommerce form .form-row input.input-text,
.my-checkout-details.my-checkout-details.my-checkout-details .select2-container .select2-selection--single{
    height: auto;
}

/* unsets the height for billing detials input boxes */
.my-checkout-details.my-checkout-details.my-checkout-details .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.3;
}

/* adds padding above input labels on checkout page */
.my-checkout-details.my-checkout-details.my-checkout-details .form-row label {
    padding-top: 18px;
}

/* right aligns amounts column in order summary */
.my-checkout-details.my-checkout-details.my-checkout-details .woocommerce-checkout-review-order-table tbody td.product-total,
.my-checkout-details.my-checkout-details.my-checkout-details .woocommerce-checkout-review-order-table tfoot td {
    text-align: right;
}

/* adds space above personal data statement on checkout page */
.my-checkout-details.my-checkout-details.my-checkout-details .woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px;
}

/* right aligns subtotal heading */
.my-checkout-details.my-checkout-details.my-checkout-details th.product-total {
    text-align: right;
}

/* styles for top order received details */
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px dashed #cfc8d8;
    padding-left: 0px;
    border-radius: 0px;
}

/* styles for each line item in top order received details */
.woocommerce ul.order_details li {
    float: unset;
    margin-right: 0px;
    padding: 20px 15px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* border for each line item in top order received details */
.woocommerce ul.order_details li,
.woocommerce ul.order_details li:last-of-type {
    border: 1px dashed #cfc8d8;
}

/* font size for sub headings on order received page */
div.woocommerce .woocommerce-order-details h2,
div.woocommerce .woocommerce-columns--addresses h2 {
    font-size: 40px;
}

/* styles for product details on order received */
ul.wc-item-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-inline-start: 0px;
}

/* styles for each line item in product details on order received */
.woocommerce ul.wc-item-meta li {
    flex-basis: 1%;
    flex-grow: 1;
    display: flex;
    flex-wrap: no-wrap;
}

/* styles for each line item in product details on order received */
.woocommerce ul.wc-item-meta li:last-of-type {
    flex-grow: 5;
    border-right: none;
}

/* font size for product details on order received page */
.woocommerce-order-details .order_details .wc-item-meta li,
.woocommerce-order-details .order_details .wc-item-meta li strong {
    font-size: 18px;
}

/* aligns total label to the right */
td.woocommerce-table__product-total.product-total {
    text-align: right;
}

/* remvoes border around billing and shipping addresses */
.woocommerce .woocommerce-customer-details address {
    border: none;
}

/* hides the icon for phone and email in billing address */
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
    display: none;
}

/* removes padding on phone and email in billing address */
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email {
    padding-left: 0px;
}

/* removes margin under phone in billing address */
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
    margin-bottom: 0px;
}

/* add space above shipping address heading */
.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
    margin-top: 60px;
}



@media screen and (max-width: 1024px) {
    
    /* categories heading font size */
    .my-categories.my-categories.my-categories .widgettitle {
        font-size: 18px;
    }
    
    /* space below sorting options and merch items */
    .my-merch-archives.my-merch-archives.my-merch-archives .fl-post-module-woo-ordering {
        padding-bottom: 20px;
    }
    
    /* padding around item details */
    .my-merch-archives.my-merch-archives.my-merch-archives .fl-post-grid-text {
        padding: 20px 10px;
    }
    
    /* styles for price */
    .my-merch-archives.my-merch-archives.my-merch-archives span.price {
        font-size: 17px;
    }
    
    /* select options button styles */
    .my-merch-archives.my-merch-archives.my-merch-archives .fl-post-module-woo-button a {
        font-size: 15px;
    }
    
    /* styles for categories on single item page */
    .my-item .my-item-details .product_meta span.posted_in {
        font-size: 15px;
    }
    
    /* styles for price on on single item page */
    .my-item .my-item-details .fl-module-fl-woo-product-price .price,
    .my-item .my-item-details .single_variation_wrap .price {
        font-size: 22px;
    }
    
    /* styles for product description on single item page */
    .my-item .my-item-details .fl-module-fl-woo-product-description {
        font-size: 17px;
    }
    
    /* add to cart button styles */
    .woocommerce-page button.button, .woocommerce-page button.button.alt {
        font-size: 15px;
    }
    
    /* styles for number box next to add to cart button */
    .woocommerce .quantity input.qty, .woocommerce-page .quantity input.qty {
        height: 37px;
    }
    
    /* styles for notice when item has been added to cart */
    .woocommerce-message.woocommerce-message.woocommerce-message,
    .cart-empty.woocommerce-info {
        font-size: 17px;
    }
    
    /* styles for view cart button in notice */
    .woocommerce-message.woocommerce-message.woocommerce-message a.button {
        font-size: 15px;
    }
    
    /* adds margin above cart totals section */
    .my-cart-details.my-cart-details.my-cart-details .cart_totals table {
        margin-top: 20px;
    }
    
    /* styles for update cart & shipping buttons on cart page */
    .my-cart-details.my-cart-details.my-cart-details .woocommerce-cart-form__contents .button,
    .my-cart-details.my-cart-details.my-cart-details .cart_totals .shipping-calculator-form .button,
    .my-cart-details.my-cart-details.my-cart-details .return-to-shop .button {
        font-size: 15px;
    }
    
    /* font size for proceed button */
    .my-cart-details.my-cart-details.my-cart-details .cart_totals a.button {
        font-size: 18px;
    }
    
    /* adds padding above input labels on checkout page */
    .my-checkout-details.my-checkout-details.my-checkout-details .form-row label {
        padding-top: 10px;
    }
    
    /* font size for sub headings on order received page */
    div.woocommerce .woocommerce-order-details h2,
    div.woocommerce .woocommerce-columns--addresses h2 {
        font-size: 24px;
    }
    
    /* font size for product detials on order received page */
    .woocommerce-order-details .order_details .wc-item-meta li,
    .woocommerce-order-details .order_details .wc-item-meta li strong {
        font-size: 17px;
    }
    
    /* add space above shipping address heading */
    .woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
        margin-top: 40px;
    }

}

@media screen and (max-width: 767px) {
    
    /* tells remove button and image to float left and allow details to align to the right */
    .my-cart-details.my-cart-details.my-cart-details .cart_item .product-remove,
    .my-cart-details.my-cart-details.my-cart-details .cart_item .product-thumbnail {
        display: block;
        float: left;
        background-color: unset;
    }
    
    /* hides the colon associated with the thumbnail */
    .my-cart-details.my-cart-details.my-cart-details .cart_item .product-thumbnail:before {
        display: none;
    }
    
    /* removes float on labels so they align to the left of the detail */
    .woocommerce table.shop_table_responsive tr td::before, 
    .woocommerce-page table.shop_table_responsive tr td::before {
        float: none;
    }
    
    /* for products that have variations listed (magnets & stickers). allows those to align the same as other item details.  */
    .my-cart-details.my-cart-details.my-cart-details .woocommerce td.product-name dl.variation,
    .my-cart-details.my-cart-details.my-cart-details .cart_item .product-quantity {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    /* tells variations above label to start at 50% width */
    .woocommerce td.product-name dl.variation dt {
        flex-basis: 50%;
    }
    
    /* aligns the label quantity better with the box that contains the number */
    .my-cart-details.my-cart-details.my-cart-details .cart_item td.product-quantity::before {
        margin-top: 9px;
        margin-right: 5px;
    }
    
    /* removes top border for each item detail per product */
    .my-cart-details.my-cart-details.my-cart-details .woocommerce .woocommerce-cart-form table.shop_table.cart tbody tr:first-child td,
    .my-cart-details.my-cart-details.my-cart-details .cart_item td {
        border-top-width: 0px;
    }

    /* forces price to the right and full width, adjusts padding around the product price of each item */
    .my-cart-details.my-cart-details.my-cart-details .cart_item .product-price {
        display: block;
        padding: 0px 10px;
    }
    
    /* adjusts padding around the product quantity of each item */
    .my-cart-details.my-cart-details.my-cart-details .cart_item .product-quantity {
        padding-bottom: 0px;
    }
    
    /* aligns everything in the bottom box of totals and shipping to the right */
    .my-cart-details.my-cart-details.my-cart-details .woocommerce .cart-collaterals .cart_totals {
        float: right;
    }
    
    /* padding around each section in the cart totals box */
    .my-cart-details.my-cart-details.my-cart-details .woocommerce .cart-collaterals .cart_totals table td {
        padding: 10px;
    }

}


@media screen and (max-width: 748px) {
    
    /* styles for product description on single item page */
    .my-item .my-item-details .fl-module-fl-woo-product-description {
        font-size: 16px;
    }
    
    /* padding around notice for when item has been added to cart */
    .fl-theme-builder-woo-notices.fl-theme-builder-woo-notices.fl-theme-builder-woo-notices {
        padding: 20px 20px 0px;
    }
    
    /* styles for notice when item has been added to cart */
    .woocommerce-message.woocommerce-message.woocommerce-message,
    .cart-empty.woocommerce-info {
        font-size: 16px;
        padding: 15px !important;  /* must be important to override inline css */
    }
    
    /* styles for view cart button in notice */
    .woocommerce-message.woocommerce-message.woocommerce-message a.button {
        margin-bottom: 0px;
        margin-left: 10px;
        padding: 10px;
        min-width: fit-content;
    }
    
    /* removes right padding on remove button */
    .my-cart-details.my-cart-details.my-cart-details .cart_item .product-remove {
        padding-right: 0px;
    }
    
    /* font size for proceed button */
    .my-cart-details.my-cart-details.my-cart-details .cart_totals a.button {
        font-size: 16px;
    }
    
    /* styles for each line item in product details on order received */
    .woocommerce ul.wc-item-meta li {
        border-bottom: none;
        padding: 10px;
    }
    
}




