/**************************************************************
***************************************************************
**                                                           **
**               Table of Contents: Data Flute               **
**                     //1. Base Styles                      **
**                     //2. Brands Nav Bar                   **
**                     //3. Main Navigation                  **
**                     //4. Custom Classes                   **
**                     //5. Product Page Styles              **
**                     //6. Footer                           **
**                     //7. Forms and Inputs                 **
**                     //8. System Pages                     **
**                     //9. Media Queries                    **
**                                                           **
**                      Devloper: Cody                       **
**                                                           **
***************************************************************
**************************************************************/

/**************************************************************
***************************************************************
**                                                           **
**                      //1. Base Styles                     **
**                                                           **
***************************************************************
**************************************************************/

/*CSS Sheet Imports */
@import url(cart.css);
@import url(hc-assist.css);
@import url(search.css?v=1.05);

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/*Page reset*/
body {
    margin: 0;
    padding: 0 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #5B5B5B;
    overflow-x: hidden;
    margin-top: 145px;
}

.wrapper {
    padding: 0 20px;
}

a {
    text-decoration: none;
}

li {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/**************************************************************
***************************************************************
**                                                           **
**                      //2. Brand Nav Bar                   **
**                                                           **
***************************************************************
**************************************************************/

.brands-wrapper {
    display: none;
}

.right-half {
    display: none;
}

@media screen and (min-width: 768px) {
    .brand-banner-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 20px;
    }

    .brands-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 480px;
    }

    .right-half {
        display: flex;
    }

    .vert-line {
        height: 30px;
        width: 2px;
        background-color: black;
        opacity: .4;
    }
}

/**************************************************************
***************************************************************
**                                                           **
**                      //3. Main navigation                 **
**                                                           **
***************************************************************
**************************************************************/

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 15px;
}

.disable-hover .mega-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.hc-assist-btn,
button[type="submit"],
.search-btn {
    background-color: #3a8dde;
    color: #fff;
    padding: 15px 30px;
    border-radius: 3px;
    border: #3a8dde;
    margin: 10px 0;
    cursor: pointer;
    transition: all .15s linear;
    font-weight: bold;
}

.hc-assist-btn:hover,
.search-btn:hover {
    background-color: #404041;
    border-color: #404041;
    color: #fff;
    text-decoration: none;
    transform: scale(1.05);
}

.btn-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

nav img {
    margin-top: 10px;
    width: 300px;
}

.show-cart-mobile {
    width: 38px;
}

.nav-container {
    max-width: 2560px;
    margin: 0 auto;
    padding: 0 10px;
    box-shadow: 0 5px 10px rgba(154, 161, 177, .1);
    position: fixed;
    background: #fff;
    width: 95%;
    top: 0;
    z-index: 9;
}

.mobile-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

.nav-items {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    transition: all .15s linear;
}

.nav-links {
    display: flex;
    flex-direction: column;
}

.nav-links li {
    padding: 0px 15px;
}

.nav-links li a {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    transition: all .15s linear;
    position: relative;
}

.nav-items.active {
    display: flex;
}

.toggle-button {
    margin-top: 10px;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: #000000;
    border-radius: 10px;
}

.search-container {
    display: none;
    align-items: center;
    padding: 5px 15px;
    border-radius: 15px;
    border: 4px solid #38adde;
    /* Dark red border color */
}

.search-container input[type="text"] {
    flex-grow: 1;
    padding: 0px;
    border: none;
    outline: none;
    color: #5b5b5b;
    background-color: transparent;
    box-shadow: none;
    font-size: 16px;
    margin-bottom: 0;
    padding: 0;
    font-family: Poppins;
    font-weight: unset;
}

.search-container input[type="text"]::placeholder {
    color: #38adde;
    /* Placeholder text color matches border */
}

.search-button {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.search-button svg {
    fill: #38adde;
    /* Ensures the SVG icon is white to match your design */
    display: block;
    /* Improves alignment */
}

.search-button svg {
    width: 38px;
    height: 30px;
    margin-top: 10px;
}

.search-collapse {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.search-collapse .search-container {
    display: flex;
}

.search-icon {
    display: inline-block;
}

.nav-item .search img {
    max-width: 288px;
    min-width: 288px;
    height: 44px;
}


.search-and-hamburger {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.searchBar {
    display: flex;
}

.searchBar button {
    border: none;
    background-color: #f4f4f4;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
}

.searchBar #partNumber {
    margin: 0px;
    border-radius: 0px 10px 10px 0px;
}

/*Mega Menu*/
.mega-menu {
    display: none;
}

.nav-links>li:hover>a {
    color: #3a8dde;
}

.nav-links>li:hover>a::after {
    transform: scaleX(1);
}

.sub-menu-links {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.sub-menu-item {
    padding: 3px 0;
}

@media screen and (min-width: 993px) {

    nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    nav img {
        width: 400px;
        margin-top: 10px;
    }

    .toggle-button {
        display: none;
    }

    .nav-links {
        flex-direction: row;
    }

    .nav-items {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: flex-end;
        padding: 0;
    }

    .nav-links li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 100%;
        background-color: #3a8dde;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease-in-out;
    }

    .nav-links>li:hover>a {
        color: #3a8dde;
    }

    .nav-links>li:hover>a::after {
        transform: scaleX(1);
    }

    .nav-container {
        padding: 0 50px;
    }

    /*mobile search*/
    .search-container {
        display: flex;
    }

    .search-button-collapse,
    .search-collapse {
        display: none;
    }

    .search-button svg {
        margin: unset;
        height: 25px;
    }

    .search-container {
        max-width: 250px;
        min-width: 250px;
        max-height: 20px;
    }


    /*Mega Menu*/
    .mega-menu {
        display: block;
        background-color: #fff;
        left: 0;
        opacity: 0;
        position: fixed;
        top: 112px;
        transform: translateY(3px);
        transition: all .2s ease-in-out;
        visibility: hidden;
        width: 100%;
    }

    .mega-menu-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        margin: 0 auto;
        max-width: 2560px;
        padding: 32px 0;
    }

    .mega-menu-item h3 {
        text-align: center;
        min-height: 58px;
    }

    .nav-item:hover .mega-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .nav-links>li:hover>a {
        color: #3a8dde;
    }

    .nav-links>li:hover>a::after {
        transform: scaleX(1);
    }

}

/**************************************************************
***************************************************************
**                                                           **
**                      //4. Custom Classes                  **
**                                                           **
***************************************************************
**************************************************************/

/*Main container class*/
.container {
    max-width: 2560px;
    margin: 0 auto;
    padding: 0 3%;
}

.category-container {
    text-align: center;
}

.tool-btn {
    padding: 8px 10px;
    max-width: 110px;
    background-color: #3a8dde;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: all .15s linear;
    border-radius: 5px;
    font-weight: 500;
}

.tool-btn:hover {
    scale: 1.05;
}

.product-button-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.product-button-row .tool-btn:nth-child(1) {
    margin-right: 10px;
}

/*Hero that is on every product page*/
.page-hero {
    background-image: url('../images/dd-hero.png');
    padding: 80px 0px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

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

.four-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 80px;
    width: 100%;
}

.four-card-container .card {
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    width: 335px;
    margin-top: 2%;
}

.four-card-container .card h3 {
    background-color: #3a8dde;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    padding: 10px 0;
    min-height: 133px;
}

.four-card-container .card .card-body {
    padding: 10px 10px;
    font-size: 16px;
}

.four-card-container .card .card-body p {
    margin-bottom: 5px;
    font-weight: 500;
}

.four-card-container .card .card-body ul {
    padding-left: 15px;
}

.four-card-container .card .card-body ul li a {
    color: #3a8dde;
}

.four-card-container .card .card-body ul li a:hover {
    text-decoration: underline;
}

.disabled-link {
    pointer-events: none;
    color: gray !important;
    text-decoration: none;
}

.page-hero h1 {
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 2.8rem;
}

/*HC Assist*/
.hc-banner {
    text-align: center;
    margin: 0 auto;
    padding: 30px 0;
    background-color: #f4f4f4;
}

.hc-banner h2 {
    font-size: 45px;
    font-weight: bold;
    margin: 15px;
    color: #3a8dde;
}

.hc-banner p {
    max-width: 720px;
    margin: 0 auto;
}

.table-container {
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 50px;
}

.table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    border-radius: 10px;
}

.table th,
.table td {
    text-align: left;
    padding: 15px;
}

.table td a {
    text-decoration: none;
    color: #5B5B5B;
    text-decoration: underline;
}

.table td {
    display: block;
    text-align: right;
}

.table td::before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold;
}

.table td:last-child {
    border-bottom: 0;
}

/* Alternating row colors */
.table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table tr:nth-child(odd) {
    background-color: #e9e9e9;
}

.table thead {
    display: none;
}

/*End of HC Assist*/

.bread-crumbs {
    padding-top: 25px;
}

.bread-crumbs a {
    text-decoration: none;
    color: #3a8dde;
}

.product-extras {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #f4f4f4;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.product-extras a {
    text-decoration: none;
    color: #3a8dde;
}

.extra {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px 0;
}

.extra h3 {
    margin: 0;
}


/* For larger screens */
@media screen and (min-width: 601px) {
    .table-container {
        width: 90%;
        margin: 0 auto 50px;
    }

    .table {
        width: 100%;
    }

    .table th,
    .table td {
        display: table-cell;
        text-align: left;
    }

    .table td::before {
        content: none;
    }

    .table thead {
        display: table-header-group;

    }

    .table th {
        background-color: #3a8dde;
        color: #ffffff;
    }

}

/* End HC Assist Styling */

.full-width {
    margin: 0 -20px;
    /* counteract the parent's padding */
    width: calc(100% + 40px);
    /* compensate for the negative margins */
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 15px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #3a8dde;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #555;
}


/**************************************************************
***************************************************************
**                                                           **
**                      //5. Product Page Styles             **
**                                                           **
***************************************************************
**************************************************************/

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.products-card {
    min-width: 300px;
    max-width: 550px;
    margin: 2%;
    align-self: stretch;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.products-card.products-cb {
    flex-direction: column;
    max-width: 400px;
}

.products-cb .product-button-row {
    justify-content: center;
}

.products-card a {
    display: flex;
    align-items: center;
    flex-direction: row;
    color: #5B5B5B;
}

.products-card-body {
    display: flex;
    flex-direction: column;
    height: 412px;
    width: 400px;
    padding: 40px;
}

.products-card-body .view-tool {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
    color: #3a8dde;
}

.products-card img {
    height: 190px;
    /*width: 50px;*/
    margin-right: 15px;
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: auto;
}

.card-subtitle-container {
    height: 156px;
    margin-bottom: 10px;
}

.products-card h1,
.products-card h2 {
    font-size: 22px;
    font-weight: bold;
    color: #3a8dde;
    margin: 0;
}

.products-cb h1 {
    text-align: center;
}

.products-card h2 {
    font-weight: unset;
    font-size: 18px;
    text-align: center;
}

.products-card p {
    margin: 0;
    font-size: 14px;
}

.products-cb-image-container {
    display: flex;
    justify-content: center;
}

.product-wrapper {
    margin-top: 3%;
}

.product-wrapper .product-image {
    max-width: 350px;
    max-height: 400px;
    margin: 10px 0px;
}

.product-wrapper h3 {
    color: #3a8dde;
    font-size: 28px;
    margin: 0;
}

.product-wrapper p {
    margin: 0;
    font-size: 16px;
    color: #5a5a5a;
    font-weight: 500;
}

.dimensions {
    font-style: italic;
    color: #5a5a5a;
    font-weight: 500;
    border: none !important;
}


.product-information {
    display: flex;
    margin: 15px 0;
    flex-direction: column;
}

.product-information p {
    margin-bottom: 10px;
}

.product-information ul li {
    list-style: inside;
}

.product-information ul li::marker {
    color: #3a8dde;
    font-size: 16px;
}

.product-information-text {
    display: flex;
    flex-direction: column;
}

.searchResults h3 {
    font-size: 24px;
    font-weight: 500;
}

.advancedSearch {
    display: flex;
    text-align: left;
    flex-wrap: wrap;
    justify-content: center;
}

.advancedSearch .form-group {
    width: 10%;
    min-width: 140px;
}

.categorySearch .form-group {
    min-width: 170px;
}

.advancedSearch .form-group input {
    width: 80px;
}


.product-table,
.search-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3%;
}

.product-table td,
.search-table td {
    border: 1px solid #ddd;
    padding: 8px;
    display: block;
    text-align: right;
}

.product-table td::before,
.search-table td::before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold;
}

.product-table td:first-child,
.search-table td:first-child {
    background-color: #5b5b5b;
    color: white;
}

.product-table td:first-child a,
.search-table td:first-child a {
    color: white;
}

.product-table td:last-child,
.search-table td:last-child {
    margin-bottom: 50px;
}

.product-table th,
.search-table th {
    display: none;
}

.product-details {
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    margin: 3% auto;
}

.custom-cartridge-container {
    padding-left: 0px;
    padding-right: 0px;
}

.product-details.identification {
    background-color: unset;
}

.product-details h3,
.product-section-heading {
    color: #3a8dde;
    font-size: 30px;
    margin: 0;
}

.product-details .part-wrapper p {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    padding: 10px 0;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    width: 400px;
    height: 360px;
}

.gallery-buttons-container {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.gallery-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 338px;
}

.gallery-prev, .gallery-next {
    background: #3A8DDE;
    border: solid 0.5px #3A8DDE;
    border-radius: 3px;
    color: white;
}

.part-wrapper .product-image {
    max-width: 350px;
}

.adj-tool-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
    width: 300px;
    text-align: center;
}

.adj-tool-card>p {
    min-height: 50px;
}

.adj-tool-image {
    justify-content: center;
    display: flex;
}
.adj-tool-text {
    text-align: center;
    margin-top: 10px;
}

.adj-tool-image>img {
    max-height: 200px;
    max-width: 300px;
    min-height: 200px;
}

#partResult,
.add-to-list-container,
#cartridgeCartMessage,
#coolantCartMessage,
#miscCartMessage,
#hwCartMessage {
    display: flex;
    justify-content: flex-start;
}

.op-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.op-row .op-icon {
    color: #539be2;
    padding: 5px 10px;
    background-color: #f4f4f4;
    border-radius: 10px;
}

.operations {
    display: flex;
    margin-top: 10px;
    width: 300px;
    justify-content: space-between;
}

.order-info {
    background-color: #3a8dde;
    color: #ffffff;
    padding: 20px;
    margin-top: 2%;
}

.order-info button {
    border: none;
    padding: 15px 10px;
    width: 100%;
    background-color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    color: #5B5B5B;
    transition: all .15s linear;
    margin-bottom: 5px;
}

.order-info button:hover {
    background-color: #f4f4f4;
    color: #3a8dde;
    scale: 1.05;
}

.order-info p {
    margin-top: 0;
}

.print-btn {
    margin-bottom: 3%
}

.tableSearchRow {
    display: none;
}

.desktopTableSearch {
    display: none;
}


@media (min-width: 850px) {
    .mobileAdvancedSearchContainer {
        display: none;
    }

    .desktopTableSearch {
        display: block;
    }

    .tableSearchRow {
        display: table-row;
    }

    .tableSearchInput {
        border: 0 !important;
    }

    .tableSearchInput input {
        margin-bottom: 0 !important;
        padding: 5px 0px !important;
        border: 1px solid #ccc !important;
    }

    .product-wrapper {
        flex-direction: row;
        margin: 3% auto;
    }

    .product-wrapper .product-image {
        /*height: 150px;*/
    }

    .product-information {
        display: flex;
        margin: 20px auto;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        max-width: 85%;
    }

    .product-information img {
        margin-top: 10px;
    }

    .product-information-text {
        max-width: 400px;
        padding: 10px;
    }

    .product-information-text h3 {
        color: #3a8dde;
        font-weight: 500;
        font-size: 24px;
    }

    .product-table td:first-child,
    .search-table td:first-child {
        text-align: left;
        background-color: unset;
        color: #5b5b5b;
    }

    .product-table td:first-child a,
    .search-table td:first-child a {
        color: revert;
    }

    .product-table td,
    .search-table td {
        display: table-cell;
        text-align: center;
    }

    .product-table td::before,
    .search-table td::before {
        display: none;
    }

    .product-table th,
    .search-table th {
        display: table-cell;
        padding: 8px;
        background-color: #3a8dde;
        color: white;
        border: 1px solid #ddd;
    }

    .edp-a,
    .edp-s {
        min-width: 85px;
    }

    .order-info {
        height: 100%;
        margin: 0;
    }

    .part-details {
        padding: 10px;
    }
}


/**************************************************************
***************************************************************
**                                                           **
**                      //6. Footer                          **
**                                                           **
***************************************************************
**************************************************************/

footer {
    color: #fff;
    background-color: #1e1e1e;
    display: flex;
    flex-direction: column;
    padding: 30px 40px;
}

.copy-right {
    text-align: center;
}

.left-footer .linkedin {
    height: 50px;
    width: 50px;
    margin-bottom: 20px;
}

.right-footer ul li {
    padding: 5px 0;
}

.right-footer ul li a {
    color: #fff;

}

.brands-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
}

.brands-menu img {
    padding: 10px 0;
}

.address-container a {
    text-decoration: none;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .main-container {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: flex-start;
    }

    .right-footer {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    .right-footer .menu {
        margin-right: 25px;
    }

    .right-footer .brands-menu {
        margin-left: 25px;
    }
}

/**************************************************************
***************************************************************
**                                                           **
**                      //7. Forms and Inputs                **
**                                                           **
***************************************************************
**************************************************************/

/*HC Assist*/
.label-container {
    display: flex;
    flex-direction: column;
    max-width: 720px;
    margin: 25px auto;
    align-items: flex-start;
    justify-content: center;
}

.label-container button {
    margin: 0 auto;
}

.label-container label {
    font-weight: bold;
    font-size: 24px;
    color: #3a8dde;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.product-identification > select {
    border: none;
    font-weight: bold;
    height: auto;
    outline: 0;
    padding: 15px;
    width: 100%;
    background-color: #f4f4f4;
    color: #5B5B5B;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
    margin-bottom: 30px;
}

input[type="text"] {
    border: none;
    font-size: 20px;
    font-weight: bold;
    height: auto;
    outline: 0;
    padding: 15px;
    width: 100%;
    background-color: #f4f4f4;
    color: #5b5b5b;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
    margin-bottom: 30px;
}


/**************************************************************
***************************************************************
**                                                           **
**                      //8. System Pages                    **
**                                                           **
***************************************************************
**************************************************************/

.error-container {
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px;
}

.error-content {
    text-align: center;
}

.error-content h1 {
    font-size: 5em;
    margin-bottom: 0;
    color: #3a8dde;
}

.error-content h2 {
    font-size: 3em;
    margin-top: 0;
}

.error-content p {
    font-size: 1.5em;
    margin: 2em 0;
}

.btn-back {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.product-error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px;
    min-height: 300px;
}

.product-error-content {
    text-align: center;
}

.error-content h2 {
    font-size: 3em;
    margin-top: 0;
    color: #3a8dde;
}

.error-content p {
    font-size: 1.5em;
    margin: 2em 0;
}

.btn-back {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/**************************************************************
***************************************************************
**                                                           **
**                      //9. Media Queries                   **
**                                                           **
***************************************************************
**************************************************************/

@media (min-width: 1200px) {
    .product-information-text {
        max-width: 50%;
        padding: 10px;
    }
}

@media (max-width: 930px) {
    .part-wrapper {
        width: 100%;
        margin: 0 auto;
    }

    .part-wrapper img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .part-wrapper img {
        max-width: 525px;
        max-height: 120px;
        margin: 10px auto;
    }

    .product-wrapper .product-image {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 930px) {
    .product-details-container {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }

    .fits-with-container {
        justify-content: flex-start;
    }

    .part-wrapper img {
        width: 90%;
        height: auto;
    }

    .product-identification {
        margin-right: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

