.buttons-wrapper {
    margin-left: 14%;
    margin-right: 14%;
}

/* Banner Section */
.banner {
    background-image: url('/img/tmsbanner.jpg');
    background-size: cover;
    background-position: center;
    background-color: #000; /* Black background */
    margin-top: 0%; /* Remove all margins */
    padding: 20px; /* Add padding to create space inside the banner */
    width: 100%; /* Full width */
    height: auto; /* Ensure height adjusts dynamically */
    box-sizing: border-box; /* Include padding in width calculation */
}
  
.banner-title {
    font-family: 'industry';
    font-weight: 400;
    font-size: xxx-large;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    padding: 30px;
    margin-left: 14%;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: large; /* Smaller font size for mobile screens */
        padding: 15px; /* Further reduce padding */
        margin: 0%;
    }
}

/* Feature Navigation Section */
.feature-navigation {
    background-color: #000; /* Black background */
    display: flex; /* Flexbox for layout */
    justify-content: space-around; /* Distribute items evenly */
    align-items: center; /* Vertically center items */
    margin: 0; /* Remove all margins */
    padding: 10px; /* Add padding for spacing inside the navigation */
    width: 100%; /* Full width */
    height: auto; /* Ensure height adjusts dynamically */
    box-sizing: border-box; /* Include padding in width calculation */
    flex-wrap: wrap; /* Allow items to wrap if needed */
}

/* Individual Feature Item */
.feature-item {
    padding: 20px;
    width: 200px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    margin: 10px;
}

.feature-item:first-child {
    margin-left: 7%; /* Margin for the first feature item */
}

.feature-item:last-child {
    margin-right: 7%; /* Margin for the last feature item */
}

/* Feature Icon Styling */
.feature-icon {
    width: 60px;
    height: 60px;
}

/* Feature Title Styling */
.feature-title {
    font-family: 'industry';
    font-size: 16px;
    font-weight: bolder;
    text-transform: uppercase;
    margin: 10px 0;
}

.feature-title p {
    margin: auto;
}

/* Remove underline for feature-item links */
.feature-item-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Ensure it inherits the color from parent or specified styling */
}

.feature-item-link:hover {
    text-decoration: none; /* Ensure no underline on hover */
}

.read-more-button {
    background-color: #FFD700;
    color: #000;
    font-size: 12px;
    font-family: unset;
    font-weight: bolder;
    text-transform: uppercase;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: auto;
}

.read-more-button:hover {
    background-color: #FFC107;
}

@media (max-width: 768px) {
    .feature-navigation {
        display: flex;
        flex-wrap: wrap; /* Allow items to wrap into multiple rows */
        justify-content: center; /* Center items horizontally */
        align-items: stretch; /* Stretch items to match row height */
    }

    .feature-item {
        flex: 0 1 calc(50% - 20px); /* Ensure two items per row with spacing */
        margin: 10px; /* Consistent spacing between items */
        box-sizing: border-box; /* Include padding/margin in width calculations */
    }

    /* Remove extra margins for the first and last items */
    .feature-item:first-child,
    .feature-item:last-child {
        margin-left: 0%; /* Reset margin-left for smaller screens */
        margin-right: 0%; /* Reset margin-right for smaller screens */
    }

    /* Center the last feature-item in the third row */
    .feature-item:nth-child(5) {
        flex: 0 1 100%; /* Take up the full width */
        display: flex;
        justify-content: center; /* Center align the item */
    }

    /* Adjust Feature Icon Styling for smaller screens */
    .feature-icon {
        width: 40px; /* Smaller icon size */
        height: 40px;
        margin-bottom: 10px;
    }
}

.faq-section,
.customer-support-section {
    margin-left: 15.4%;
    margin-right: 17%;
}

@media (max-width: 768px) {
    .faq-section,
    .customer-support-section {
        margin-left: 2%;
        margin-right: 2%;
    }
}

.faq-section .faq-heading,
.customer-support-section .customer-support-heading {
    font-size: 40px;
    font-weight: 1000;
    font-family: 'industry';
    color: #000;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.customer-support-header-hr {
    border: none;
    height: 7px;
    background-color: #888888;
    width: 90%;
    margin-right: 10px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-top: 0;
}

.faq-header,
.customer-support-header,
.lmd-support-header {
    font-weight: 1000;
    font-family: 'industry';
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    text-align: left;
}

.faq-header {
    font-size: 20px;
    color: #000;
}

.faq-header:hover p {
    text-decoration: underline;
}

.customer-support-header,
.general-support-button,
.order-status-help-button,
.lrp-redemption-help-button,
.lmd-support-header  {
    color: #fff;
    background-color: blue;
    font-size: 15px;
}

.general-support-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 50px;
    padding-right: 50px;
}

.general-support-buttons:first-child {
    margin-top: 20px;
}

.general-support-buttons:last-child {
    margin-bottom: 40px;
}

.general-support-button,
.order-status-help-button,
.lrp-redemption-help-button {
    text-align: center;
    font-weight: 1000;
    font-family: 'industry';
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none !important;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 20px;
}

.cs-header-text,
.faq-header-text {
    width: 90%;
}

.customer-support-header,
.lmd-support-header {
    .header-button {
        padding: 5px;
        font-weight: 1000;
        font-family: 'industry';
        font-size: xx-large;
        vertical-align: middle;
        width: 10%;
        text-align: right;
        background-color: blue;
        border: none;
        color: #fff;
        cursor: pointer;
    }

    p {
        padding: 15px;
        margin-bottom: 0;
    }
}

.customer-support-header:hover,
.customer-support-header:hover .header-button,
.general-support-button:hover,
.lmd-support-header:hover,
.lmd-support-header:hover .header-button {
    background-color: rgb(2, 2, 190);
}

.faq-header .header-button {
    padding: 5px;
    font-weight: 1000;
    font-family: 'industry';
    font-size: xx-large;
    vertical-align: middle;
    width: 10%;
    text-align: right;
    background-color: #fff;
    border: none;
    color: #000;
    cursor: pointer;
}

.faq-inner,
.customer-support-inner,
.lmd-support-inner {
    display: none;
    font-size: 15px;
    font-family: 'industry';
    color: #000;
}

.customer-support-inner,
.lmd-support-inner {
    background-color: #ebebeb;
    width: 100%;
    margin-top: 0px;
}

.faq-inner.opened,
.customer-support-inner.opened,
.lmd-support-inner.opened {
    display: inline-block;
}

.customer-support-inner-contents,
.returns-inner-contents,
.lmd-inner-contents {
    padding: 15px;

    .ml-lg-3 {
        margin-left: 0 !important;
    }

    h1 {
        margin-top: 0;
        margin-bottom: 0.25rem;
    }

    p {
        margin-bottom: 0;
    }
}

.returns-inner-contents {
    p {
        padding: 0;
    }
}

.faq-button,
.customer-support-button,
.lmd-support-button,
.lmd-order-form-package-delivered {
    margin-bottom: 25px;
}

.sales-contact-info,
.billing-contact-info {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: repeat(2, 2fr);
    column-gap: 20px;
}

.wholesale-contact-info {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    grid-template-rows: repeat(1, 2fr);
    column-gap: 20px;
}

.customer-support-inner a:link,
.customer-support-inner a:visited {
    text-decoration: underline;
    color: #439aed;
}

.general-support-buttons a,
.general-support-buttons a:link,
.general-support-buttons a:visited,
.lmd-delivered-form a,
.lmd-delivered-form a:link,
.lmd-delivered-form a:visited {
    text-decoration: none;
    color: #fff !important;
    padding: 10px;
}

.lmd-delivered-form a {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.order-status-lookup-form,
.lrp-redemption-inner-contents,
.returns-lookup-form,
.lmd-lookup-form,
.unreceived-item-form,
.lmd-delivered-form  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    
    label {
        color: #000;
        font-weight: bold;
        font-size: 100%;
    }

    div {
        width: 100%;
        display: flex;
        gap: 10px;
        font-size: x-large;
        justify-content: center;

        label {
            width: 25rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        input,
        select {
            height: 2.5rem !important;
            font-size: x-large !important;
            text-transform: uppercase;
            font-family: 'industry';
            font-weight: bold;
            padding: 0;
            width: 75%;
        }

        @media (min-width: 1550px) {
            select {
                width: 36rem !important;
            }
        }

        select option:checked[disabled][selected] {
            color: gray;
        }
    }

    .order-status-form-email,
    .lrp-redemption-form-email,
    .order-status-form-order-number,
    .lrp-redemption-form-order-number,
    .lrp-redemption-form-password,
    .returns-form-order-number,
    .returns-form-email,
    .lmd-form-order-number,
    .lmd-form-email {
        width: 75%;
    }

    #lrp-redemption-form-password-input {
        text-transform: none !important;
    }

    .order-status-button,
    .lrp-redemption-button,
    .returns-button,
    .lmd-button {
        cursor: pointer;
        background-color: blue;
        color: #fff;
        text-transform: uppercase;
        font-family: 'industry';
        font-weight: bold;
        font-size: large;
        border: none;
        height: 2.5rem;
        width: 300px;
    }

    .order-status-button:hover,
    .lrp-redemption-button:hover,
    .returns-button:hover,
    .lmd-button:hover {
        background-color: rgb(2, 2, 190);
    }
}

.unreceived-item-form {
    input,
    select {
        width: 75% !important;
    }
}



[hidden] {
    display: none !important;
}

.order-status-error,
.lrp-redemption-error,
.returns-error,
.lmd-error,
.lmd-unreceived-error {
    display: flex;
    justify-content: center;
    margin: 15px 0 -35px 0;
    background-color: #ffcec6;
    text-transform: none;
    font-size: 15px !important;

    p {
        margin: 15px;
    }
}

.returns-error,
.lmd-error,
.lmd-unreceived-error {
    margin: 15px 0 0 0;
}

.lrp-redemption-error {
    text-transform: none;
    font-size: 15px !important;
}

.order-status-error.hidden,
.order-status-order.hidden,
.order-status-cancel.hidden,
.lrp-redemption-error.hidden,
.returns-error.hidden {
    display: none !important;
}

.order-status-order,
.order-status-cancel {
    display: flex;
    margin-top: 20px;
}

.order-status-cancel {
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: large;
    border: 1px solid #aaa;
}

.order-status-inner-contents,
.lrp-redemption-inner-contents,
.lmd-inner-contents,
.damaged-inner-contents,
.missing-inner-contents,
.stolen-inner-contents,
.unreceived-inner-contents {
    padding: 15px 30px 15px 30px;
}

.left-align {
    text-align: left;
}

.order-status-help-button,
.lrp-redemption-help-button {
    display: inline-block;
    margin-top: 50px;
}

a.order-status-help-button,
a.order-status-help-button:link,
a.lrp-redemption-help-button,
a.lrp-redemption-help-button:link {
    text-decoration: none !important;
    color: #fff !important;
}

.order-status-help-button:hover {
    background-color: rgb(2, 2, 190);
}

.order-status-cancel.calloutInfo {
    margin-top: 10px;
}

.lmd-unreceived-message {
    text-transform: none;
    margin-top: 20px;
    flex-direction: column;
}

@media (max-width: 550px) {
    .order-status-lookup-form,
    .lrp-redemption-inner-contents,
    .returns-inner-contents,
    .lmd-inner-contents {
        .order-status-form-order-number,
        .order-status-form-email,
        .order-status-form-button,
        .lrp-redemption-form-order-number,
        .lrp-redemption-form-email,
        .lrp-redemption-form-button,
        .lrp-redemption-form-password,
        .returns-form-order-number,
        .returns-form-email,
        .returns-form-button,
        .lmd-form-order-number,
        .lmd-form-email,
        .lmd-form-button,
        .mobile-shrink-input {
            width: 100%;
            font-size: large;

            input, select {
                width: 12rem !important;
            }
        }

        .mobile-shrink-input {
            display: grid;
            gap: 3px;
            column-gap: 5px;

            label {
                grid-column: 1;
                width: 7rem;
            }

            input, select {
                grid-column: 2;
            }
        }

        .radio-div {
            text-align: unset !important;
        }

        .lmd-order-form .lmd-button {
            width: 260px;
        }
    }
}

.icon-question-sign {
    display: inline-block;
    background-position: -96px -96px;
    width: 14px !important;
    height: 14px !important;
    vertical-align: text-bottom;
}

.rm-btn-red {
    color: blue;
}

#order-table table td {
    background-color: #fff;
}

#order-status-order-cancel-modal {
    font-weight: bold;
    font-family: 'industry';
    color: #000;
    text-transform: uppercase;
    border-color: blue;
    background-color: #ebebeb;

    h2,
    select {
        margin-bottom: 15px;
        font-weight: bold;
    }

    button {
        cursor: pointer;
        background-color: blue;
        color: #fff;
        text-transform: uppercase;
        font-family: 'industry';
        font-weight: bold;
        font-size: large;
        border: none;
        height: 2.5rem;
        width: 10rem;
    }

    button:disabled {
        background-color: #666;
        cursor: auto;
    }

    #order-status-order-cancel-error-box {
        background-color: #ffcec6;
        margin-bottom: 5px;
        
        p {
            padding: 5px;
        }
    }
}

.lmd-order-form {
    text-align: center;
    margin-top: 30px;

    h1 {
        font-weight: bold !important;
        margin-bottom: 15px;
    }

    .package-delivered-label,
    .package-damaged-label,
    .package-missing-label,
    .damaged-resolution-label,
    .missing-resolution-label {
        font-size: 1.5rem;
        color: #000;
        font-weight: normal;
    }
    
    .two-radio-div {
        display: grid;
        column-gap: 40px;

        .first-radio-div {
            grid-column: 1;
            text-align: right;
        }

        .second-radio-div {
            grid-column: 2;
            text-align: left;
        }
    }

    input[type='radio'],
    input[type='checkbox'] {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: white;
        outline: 2px solid black;
        border: 3px solid white;
        width: 16px;
        height: 16px;
        cursor: pointer;
        transform: none;
    }

    input[type='radio']:checked,
    input[type='checkbox']:checked {
        background: blue;
    }

    #damaged-radio-div,
    #missing-radio-div {
        margin-bottom: 20px;
    }

    .resolution-header {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 1260px) {
    #order-table .responsive td {
        display: block;
        float: right;
        width: 50%;
        position: relative;
    }

    #order-table thead {
        display: none;
    }

    .orderModifyTMS #order-table .responsive td {
        display: block;
        float: right;
        width: 100%;
        position: relative;
        padding: 1em;
    }
}


@media only screen and (max-width: 1260px) {
    .mobile-status {
        display: inline-block !important;
        font-weight: 600;
    }
}

@media only screen and (max-width: 360px) {
    #order-table .responsive td::before {
        font-size: 1.1em;
    }

}

.qty_tf {
    text-align: center;
}

.grayFade {
    border-radius: 5px 5px 0 0;
    position: relative;
    background-size: 100% 800px !important;
    background: #e0e0e0;
    background: -moz-linear-gradient(top, #e0e0e0 0%, #fff 22%, #fff 43%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e0e0e0), color-stop(22%, #fff), color-stop(43%, #fff));
    background: -webkit-linear-gradient(top, #e0e0e0 0%, #fff 22%, #fff 43%);
    background: -o-linear-gradient(top, #e0e0e0 0%, #fff 22%, #fff 43%);
    background: -ms-linear-gradient(top, #e0e0e0 0%, #fff 22%, #fff 43%);
    background: linear-gradient(to bottom, #e0e0e0 0%, #fff 22%, #fff 43%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e0e0e0', endColorstr='#ffffff', GradientType=0);
    background-repeat: no-repeat;
}

.drkHead {
    color: #fff !important;
    font-size: 1.2em;
    padding: 0.3472em 0.69441em;
    border-bottom: 1px solid #3e3e3e;
    font-weight: bold;
    display: block;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to bottom, rgba(47, 47, 47, 1) 0%, rgba(58, 58, 58, 1) 15%, rgba(58, 58, 58, 1) 16%, rgba(95, 95, 95, 1) 72%);
}

#order-table table th {
    white-space: nowrap;
}

.drkSubHead {
    border-top: 1px solid #939393;
    padding: 0.5em;
    border-bottom: 1px solid #797979;
    background: linear-gradient(to bottom, rgba(211, 211, 211, 1) 22%, rgba(155, 155, 155, 1) 100%);
    font-size: 1em;
    overflow: hidden;
}
#order-table th {
    display: table-cell;
    vertical-align: inherit;
    font-weight: bold;
    text-align: center;
}
#order-table table .desc {
    text-align: left;
}

#order-table table td {
    padding: 5px;
    border: 1px solid #ccc;
    vertical-align: middle;
}

#order-table table.responsive td {
    text-align: center;
}

#order-table img {
    float: left;
    margin: 0 5px 0.2em 0;
    border: 1px solid #ccc;
    width: 30%;
    height: auto;
    max-width: 100%;
}
table#order-table {
    border-spacing: 4px;
    border-collapse: collapse;

    border-spacing: 0;
    border-collapse: separate;
    text-indent: initial;
    border-spacing: 2px;
}

.active-button {
    background-color: #0058a4;
    border-right: 3px solid;
    border-top: 3px solid;
    color: #fff;
    display: inline-block;
    font-size: 16px !important;
    padding-top: 5px;
    padding: 2px 11px;
    text-align: center;
    text-decoration: none;
    width: 33.333%;
}

.inactive-button {
    background-color:  #403f3f;
    border-right: 3px solid;
    border-top: 3px solid;
    color: #fff;
    display: inline-block;
    font-size: 16px !important;
    padding-top: 5px;
    padding: 2px 11px;
    text-align: center;
    text-decoration: none;
    width: 33.333%;
}

.calloutInfo.respondBox {
    font-size: larger;
    border: solid 1px #0058a4;
    color: #000;
}

table.ordersummarytable {
    width: 100%;
}

.ordersummarytable .labels, .ordersummarytable .num_rt {
    text-align: right;
}

.delItem:hover {
    color: #f00;
}

.lrg-span {

    color : #fd7e14;
}

.lrg-self-serve {


    text-align: center;
}

.ma-page-wrapper {
    display: block;
}

.my-account.order-detail {
    display: block;
}

/* Main container for the information section */
.information-section {
    padding: 20px 0;
    margin-left: 14%;
    margin-right: 14%;
}

/* Top Heading Styling for INFORMATION */
.information-section .topHeading {
    background-color: blue;/* Blue background */
    color: #fff; /* White text */
    font-size: 27px;
    font-weight: 825;
    font-family: 'industry';
    text-transform: uppercase;
    text-align: left; /* Align heading to the left */
    display: inline-block;
    margin-left: 2%; /* Slight left margin to align with content below */
    margin-top: 30px;
    margin-bottom: 10px; /* Space below heading */
    padding: 10px 15px; /* Padding inside the heading */
    border-radius: 4px; /* Rounded corners for the heading */
}

/* Flexbox layout for the information columns */
.information {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 2%; /* Align columns with top heading */
    margin-right: 2%;
}

/* Styling for the Support Center (left column) */
.info-column.left {
    width: 48%;
    color: #333;
}

/* Styling for Support Center heading */
.info-column.left h3 {
    font-size: 24px;
    color: #000; /* Black color for "SUPPORT CENTER HOURS OF OPERATION" */
    font-weight: 700;
    font-family: 'industry';
    text-transform: uppercase;
    margin-top: 20px;
}

/* Styling for "MONDAY - FRIDAY" text in Support Center */
.info-column.left .monday-friday {
    color: #007bff; /* Blue color for "MONDAY - FRIDAY" */
    text-transform: uppercase;
}

/* Styling for the Hours of Operation (right column) */
.info-column.right {
    width: 48%;
    text-align: left; /* Ensures text aligns left within the right column */
}

/* Styling for Hours of Operation heading */
.info-column.right h3 {
    font-size: 24px;
    color: #000; /* Black color for "HOURS OF OPERATION" */
    font-weight: 700;
    font-family: 'industry';
    text-transform: uppercase;
}

/* Styling for "SATURDAY - SUNDAY" text in Hours of Operation */
.info-column.right .saturday-sunday {
    color: #007bff; /* Blue color for "SATURDAY - SUNDAY" */
    font-weight: bold;
    text-transform: uppercase;
}

/* Basic text styling for hours */
.info-column p {
    color: #666;
    font-size: 18px;
    font-family: 'industry';
    margin-top: 10px;
}

/* Styling for strong elements in both columns */
.info-column .hours strong {
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .information {
        flex-direction: column;
        margin-left: 2%; /* Auto left and right margins to center content */
        margin-right: 2%;
    }
    .info-column {
        width: 100% !important; /* Ensure full width */
    }

    .information-section {
        margin-left: 2%;
        margin-right:2%;
    }
}



/* Styling for the Questions section */
.questions-section {
    padding: 20px;
    margin-left: 14%;
    margin-right: 14%;
}

/* Heading Styling */
.questions-heading {
    font-size: 27px;
    font-weight: 825;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: left;
    font-family: 'industry';
    margin-top: 0px;
}

/* Custom color for "HAVE QUESTIONS ABOUT" */
.questions-heading .black-text {
    color: #000;
}

/* Custom color for "YOUR ORDER?" */
.questions-heading .red-text {
    color: #007bff; /* Blue color */
}

/* Flexbox container for paragraphs */
.questions-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Paragraph blocks */
.order-ques {
    width: 48%; /* Each paragraph takes up half of the available space */
}

/* Styling for text inside paragraphs */
.order-ques p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    font-family: 'industry';
}

/* Strong text styling for emphasis */
.order-ques p strong {
    font-weight: bold;
}

/* Link styling */
.order-ques a {
    color: #ADD8E6; /* Blue color for links */
    text-decoration: none;
    font-weight: bold;
}

.highlight-blue {
    color: #ADD8E6; /* Blue color */
    font-weight: bold;
}

.order-ques a:hover {
    text-decoration: underline; /* Adds underline on hover */
}

/* Horizontal line styling */
.questions-section hr {
    border: none;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .questions-section {
        margin-left: 2%;
        margin-right: 2%;
    }

    .questions-content {
        flex-direction: column;
    }
    .order-ques {
        width: 100%; /* Full width for each paragraph on smaller screens */
    }
}

/* Wholesale Inquiries Section */
.inquiries-section {
    padding: 20px;
    text-align: left;
    margin-left: 14%;
    margin-right: 14%;
}

/* Section Heading Styling */
.inquiries-heading {
    font-size: 27px;
    font-weight:825;
    font-family: 'industry';
    text-align: left;
    margin-bottom: 20px;
}

.inquiries-heading .black-text {
    color: #000; /* Black color for "WHOLESALE" */
}

.inquiries-heading .red-text {
    color: #007bff; /* Red color for "INQUIRIES" */
}

/* Flex container for paragraphs */
.inquiries-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Left Paragraph Styling */
.inquiries-left, .inquiries-right {
    width: 48%; /* Each paragraph takes up half of the available space */
    font-size: 18px;
    font-family: 'industry';
    color: #333;
    line-height: 1.6;
}

/* Strong emphasis for contact information */
.inquiries-right strong {
    font-weight: bold;
}

/* Centered Button Styling */
.button-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.inquiries-button {
    background-color: #007bff; /* Red background */
    color: #fff; /* White text */
    font-size: 16px;
    font-family: unset;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bolder;
    border-radius: 4px;
}

.inquiries-button:hover {
    background-color: #007bff; /* Darker red on hover */
}

/* Horizontal Line Styling */
.inquiries-section hr {
    border: none;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .inquiries-section {
        margin-left: 2%;
        margin-right: 2%;
    }
    .inquiries-content {
        flex-direction: column;
    }
    .inquiries-left, .inquiries-right {
        width: 100%;
    }
}

/* CTA Section Styling */
.cta-section {
    background-color: #000; /* Black background */
    color: #fff; /* White text for heading */
    padding: 30px;
    text-align: center;
    width: 100%; /* Full-width to match the footer */
    margin-top: 40px; /* Remove any default margin that may push it away from the footer */
    box-sizing: border-box; /* Ensures padding does not affect width */
}

/* Main Heading Styling */
.cta-heading {
    font-size: 30px;
    font-weight: bolder;
    font-family: 'industry';
    margin-bottom: 20px;
    color: #fff; /* White text for heading */
}

/* Button Container Styling */
.cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%; /* Set a max width to match the footer layout if needed */
    margin: auto; /* Center buttons within the CTA section */
}

/* Button Styling */
.cta-button {
    background-color: #FFC107; /* Red background */
    color: #000; /* White text */
    font-size: 20px;
    font-family: unset;
    padding: 15px 0;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    flex: 1; /* Make buttons take equal width */
    text-align: center;
}

.cta-button:hover {
    background-color: #FFC107; /* Darker red on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .section-divider {
        margin-left: 0%; /* Adjusts margins for smaller screens */
        margin-right: 0%;
    }

    .section-divider-container {
        margin-left: 0%; /* Adjusts container margin for smaller screens */
        margin-right: 0%;
    }
}


h3.supportcenter-heading {
    border-bottom:none;
}

h3.hoursofoperation-heading {
    border-bottom:none;
}

h2.questions-heading,
h2.inquiries-heading,
h2.cta-heading,
h2.faq-heading,
h2.customer-support-heading {
    border-bottom: none;
}

.contact-us {
    margin: 0;
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
}

.container-fluid {
    margin: 0;
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden;
}

.container.main-footer {
    overflow: hidden;
}

body {
    overflow-x: hidden;
}

.section-divider {
    border: none; /* Removes default border */
    height: 2px; /* Adjust thickness */
    background-color: #000; /* Adjust color */
    width: 80%; /* Adjust width */
    margin-left: 20px;
    margin-right: 10px; /* Centers the line */
}

.section-divider-container {
    display: flex;
    align-items: center; /* Aligns the line and icon vertically */
    gap: 2px; /* Adds a small space between the line and the icon */
    margin: 0; /* Adjusts spacing above and below the section */
    margin-left: 14%;
    margin-right: 14%;
}


.icon {
    width: 60px !important; /* Forces the icon to be 18px wide */
    height: 60px !important; /* Forces the icon to be 18px high */
    object-fit: contain; /* Ensures the icon maintains its aspect ratio */
    max-width: 60px; /* Ensures the icon cannot grow beyond 18px */
    max-height: 60px; /* Ensures the icon cannot grow beyond 18px */
}

.call-wrapper {
	position: relative;
	text-align: center;
}

.call-wrapper .call-tooltip {
	background: blue; /* #FFC107; */
	cursor: pointer;
	bottom: 100%;
	color: #fff;
	display: none;
	margin-bottom: 15px;
	opacity: 0;
	padding: 20px;
	position: absolute;
	width: 100%;
	-webkit-transform: translateY(10px);
	  -moz-transform: translateY(10px);
	  -ms-transform: translateY(10px);
	   -o-transform: translateY(10px);
		transform: translateY(10px);
	-webkit-transition: all .25s ease-out;
	  -moz-transition: all .25s ease-out;
	  -ms-transition: all .25s ease-out;
	   -o-transition: all .25s ease-out;
		transition: all .25s ease-out;
	-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	   -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
		box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

/* This bridges the gap so you can mouse into the tooltip without it disappearing */
.call-wrapper .call-tooltip:before {
	bottom: -20px;
	content: " ";
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	width: 100%;
}

.call-wrapper .call-tooltip:after {
	border-left: solid transparent 10px;
	border-right: solid transparent 10px;
	border-top: solid blue 10px;
	bottom: -10px;
	content: " ";
	height: 0;
	left: 50%;
	margin-left: -13px;
	position: absolute;
	width: 0;
}

.call-wrapper:hover .call-tooltip {
    display: block;
	opacity: 1;
	-webkit-transform: translateY(0px);
	  -moz-transform: translateY(0px);
	  -ms-transform: translateY(0px);
	   -o-transform: translateY(0px);
		transform: translateY(0px);
}

.call-wrapper:hover .cta-button {
	background-color: #b12727;
}

/* IE can just show/hide with no transition */
.lte8 .call-wrapper .call-tooltip {
	display: none;
}

.lte8 .call-wrapper:hover .call-tooltip {
	display: block;
}
