/**
* Template Name: Medilab
* Template URL: https://bootstrapmade.com/medilab-free-medical-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Verdana", sans-serif;
    --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2c4964;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #4509d3;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #2c4964;
    /* The default color of the main navmenu links */
    --nav-hover-color: #4509d3;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #2c4964;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #4509d3;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
#mobileshow {
    display: none;
}

.light-background {
    --background-color: #ffffff;
    --surface-color: #ffffff;
}

.results-bottom {
    position: inherit;
    margin: 20px 0 15px;
    text-align: right;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.results-pagination ul {
    line-height: 1;
    text-align: center;
}

.results-pagination li {
    display: inline-block;
}

.selected a {
    background: #F1892B !important;
}

.results-pagination li a {
    display: inline-block;
    padding: 7px;
    font-size: 11px;
    color: #fff;
    background: #4a93e4;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

.inline-block button {
    padding-top: 9px;
    padding-bottom: 9px;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

.save-search-btn a:hover {
    color: #FFF !important;
    background: #000 !important;
}

.search a:hover {
    color: #FFF !important;
    background: #000 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.info .row {
    width: auto;
}

.photo {
    width: auto;
}

.photo img {
    width: auto;
}

.specs {
    float: left;
    width: auto;
    padding: 0 5px;
}

.specs table th,
td {
    font-size: 12px;

}

.quote-details {
    float: left;
    padding: 0 5px;
    width: auto;
}

/* Pulsating Play Button
------------------------------*/
.nav-tabs li {
    margin-bottom: 5px;
}

.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

#dropdownMenuButton1 {
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
    background-color: inherit;
    color: white;
    padding: 3px;
    border: none;
    outline: none;
}

#dropdownMenuButton1 a {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0% !important;
    color: var(--tag-color);
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

.header .topbar {
    background-color: var(--nav-color) !important;
    height: auto;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}

.header .topbar .contact-info i {
    font-style: normal;
    color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}

.branding {}

.header .branding {

    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #4509d3;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 0px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

#menu6 {
    padding: 0;
}

.tab-pane {
    padding: 0;
}

.category-area:nth-child(4) {
    margin-right: 0px !important;
    float: right;
}

.category-area:nth-child(8) {
    margin-right: 0px !important;
    float: right;
}

.category-area:nth-child(12) {
    margin-right: 0px !important;
    float: right;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: #4509d3 !important;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--theme-color), transparent 20%) !important;
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 72px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 60px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: calc(100vh - 112px);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .container {
    z-index: 3;
}

.hero .welcome h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}

.hero .welcome p {
    font-size: 24px;
    margin: 0;
}

.hero .content {
    margin-top: 40px;
}

.hero .content .why-box {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 30px;
    border-radius: 4px;
}

.hero .content .why-box h3 {
    color: var(--contrast-color);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.hero .content .why-box p {
    margin-bottom: 30px;
}

.hero .content .why-box .more-btn {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--contrast-color), transparent 80%);
    display: inline-block;
    padding: 6px 30px 8px 30px;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.hero .content .why-box .more-btn i {
    font-size: 14px;
}

.hero .content .why-box .more-btn:hover {
    background: var(--surface-color);
    color: var(--accent-color);
}

.hero .content .icon-box {
    text-align: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--surface-color), transparent 20%);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
}

.hero .content .icon-box i {
    font-size: 40px;
    color: var(--accent-color);
}

.hero .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 20px 0;
}

.hero .content .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
}

.about .content ul i {
    flex-shrink: 0;
    font-size: 48px;
    color: var(--accent-color);
    margin-right: 20px;
}

.about .content ul h5 {
    font-size: 18px;
    font-weight: 700;
}

.about .content ul p {
    font-size: 15px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
    /*  color: var(--contrast-color);
  background-color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;*/
}

.stats .stats-item {
    background-color: var(--surface-color);
    margin-top: -27px;
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 0;
}

.stats .stats-item span {
    font-size: 32px;
    display: block;
    margin: 10px 0;
    font-weight: 700;
    color: var(--heading-color);
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    height: 100%;
}

.services .service-item .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--accent-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
    transform-style: preserve-3d;
}

.services .service-item .icon i {
    color: var(--contrast-color);
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.services .service-item:hover .icon {
    background: var(--surface-color);
}

.services .service-item:hover .icon i {
    color: var(--accent-color);
}

.services .service-item:hover .icon::before {
    background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
    color: var(--contrast-color);
}


#list-content .results {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#list-content .results-pagination ul {
    line-height: 1;
    text-align: center;
}

#list-content .results-bottom {
    padding-bottom: 12px;
}

#list-content .results-bottom {
    position: relative;
    margin: 20px 0 15px;
    text-align: right;
}

#list-content .results-pagination ul {
    line-height: 1;
    text-align: center;
}

#list-content .results-pagination li {
    display: inline-block;
}

#list-content .results .selected a {
    background: #F1892B;
}

#list-content .results-pagination li a {
    display: inline-block;
    padding: 7px;
    font-size: 11px;
    color: #fff;
    background: #4a93e4;
}

#list-content .results-bottom .results-items {
    position: absolute;
    top: 0;
    right: 0;
}

#list-content .results-items {
    display: inline-block;
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
    width: 100%;
}

.appointment .php-email-form .form-group {
    padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
    color: var(--default-color);
    background-color: transparent;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
    border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
    height: 44px;
}

.appointment .php-email-form textarea {
    padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
    background: var(--accent-color);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments {
    overflow: hidden;
}

.departments .nav-tabs {
    border: 0;
}

.departments .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: var(--default-color);
    border-radius: 0;
    border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    font-weight: 600;
    font-size: 15px;
}

.departments .nav-link:hover {
    color: var(--accent-color);
}

.departments .nav-link.active {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: var(--background-color);
}

.departments .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.departments .details p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.departments .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .departments .nav-link {
        border: 0;
        padding: 15px;
    }

    .departments .nav-link.active {
        color: var(--accent-color);
        background: var(--accent-color);
    }
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .team-member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    transition: 0.5s;
    padding: 30px;
    height: 100%;
}

@media (max-width: 468px) {
    .doctors .team-member {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }
}

.doctors .team-member .pic {
    overflow: hidden;
    width: 150px;
    border-radius: 50%;
    flex-shrink: 0;
}

.doctors .team-member .pic img {
    transition: ease-in-out 0.3s;
}

.doctors .team-member:hover {
    transform: translateY(-10px);
}

.doctors .team-member .member-info {
    padding-left: 30px;
}

@media (max-width: 468px) {
    .doctors .team-member .member-info {
        padding: 30px 0 0 0;
        text-align: center;
    }
}

.doctors .team-member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.doctors .team-member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.doctors .team-member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    bottom: 0;
    left: 0;
}

@media (max-width: 468px) {
    .doctors .team-member span::after {
        left: calc(50% - 25px);
    }
}

.doctors .team-member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.doctors .team-member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

@media (max-width: 468px) {
    .doctors .team-member .social {
        justify-content: center;
    }
}

.doctors .team-member .social a {
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 36px;
    height: 36px;
}

.doctors .team-member .social a i {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    margin: 0 2px;
}

.doctors .team-member .social a:hover {
    background: var(--accent-color);
}

.doctors .team-member .social a:hover i {
    color: var(--contrast-color);
}

.doctors .team-member .social a+a {
    margin-left: 8px;
}

.fserch {
    display: none;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
#stats {
    padding-bottom: 0px;
}

#faq {
    padding-top: 0px;
}

.faq .faq-container .faq-item {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #393939;


    /*  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 5px;*/
    overflow: hidden;
    float: left;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.fmarg {}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active {
    padding: 15px;
    background-color: #fff;
    border-color: var(--accent-color);
    color: #000;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
    color: #000;
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(180deg);
    color: #000 !important;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info h3 {
    font-weight: 700;
    font-size: 32px;
}

.testimonials .swiper {
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
    background-color: var(--surface-color);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 200px;
    position: relative;
    margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    margin-right: 10px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
    border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (max-width: 767px) {

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        margin: 15px;
    }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
    margin-top: 40px;
}

.contact .info-item i {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 36px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

.remarks ul {
    padding-left: 0 !important;
}

:root {
    --theme-color: #4509d3;
    --primary-color: #ffffff;
    --nav-color: #393939;
    --tag-color: #4509d3;
    --font-size: 11px;
    --font-size1: 17px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}




/* \\\\\\\\\\\\\\\Haeder///////////// */




.container {
    height: max-content;
    width: 100%;
    /* padding: 1px; */
}

.main_head {
    position: fixed;
    top: 0;
    left: 0;

}

.main_bar {
    width: 100%;
    height: auto;
    background-color: var(--nav-color);
    padding-left: 0%;
}

.main_ul {
    padding-top: 10px !important;
    display: inline-block;
    padding-left: 0;
}

.main_li {
    padding: 10px 3px;
    display: inline;
    list-style: none;
    font-size: 11px;
    color: white;
}

.main_li span {
    font-weight: 600;
    font-size: 15px;
}

.main_li a {
    color: white;
    text-decoration: none;
}



/* \\\\\\\\\\\\\\\ NAVBAR ///////////// */





.main_nav {
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    padding-left: 4%;
    background: #fff;
    padding-right: 4%;
    justify-content: space-between;
}

.main_nav1 {
    width: 100%;
    height: 6vh;
    background: #fff;
    border-bottom: 8px solid;
}

.nav_span {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0%;
    color: var(--tag-color);
}

.nav_span1 {
    margin-left: 27%;
}

.main_logo {
    width: 23%;
}

img {
    width: 100%;
}

.main_input {
    width: 60%;
    height: 40px;
    border-radius: 20px;
    padding: 20px;
    font-size: 1em;
    border: none;
    outline: none;
    color: white;
    background-color: #5DB8E3;
}

.se_glass {
    position: absolute;
    right: 26.5%;
    color: white;
}

.main_input::placeholder {
    color: white;
}

.mian_pera {
    margin-right: 5px;
    color: #4509d3;
    font-size: 15px;
    margin-bottom: 3px;
}


.main_parent {
    width: 92%;
    height: max-content;
    margin-left: 4%;
    display: flex;
    margin-top: 80px;
    /* border: 1px solid; */
    justify-content: space-between;
}

.main_child {
    width: 100%;
    height: max-content;
}

.main_child3 {
    width: 100%;
}

.main_child2 {
    width: 100%;
}



/* \\\\\\\\\\\\\\\ Left Side Bar ///////////// */



.main_box {
    width: 100%;
    height: 20vh;
    padding: 10px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    margin-bottom: 20px;
}

.prnt_head {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--tag-color);
}

.prnt_title {
    color: white;
    margin-bottom: 0;
    font-size: 15px;
}

.prnt_ul {
    padding: 10px;
}

.parent_li {
    list-style: none;
    height: 35px;
    color: #767676;
    display: flex;
    align-items: center;
}

.prnt_img {
    width: 30px;
}

.prnt_img1 {
    width: 20px;
}

.prnt_img2 {
    width: 30px;
    border: 1px solid lightgray;
}

.fa-dollar-sign {
    font-size: 15px;
}



.prnt_anker {
    font-size: 12px;
    margin-left: 5%;
    color: #767676;
    text-decoration: none;
}

.prnt_anker:hover {
    text-decoration: underline;
    color: #4509d3;
}



/* \\\\\\\\\\\\\\\Footer///////////// */
.specification tr {
    float: left;
}

.specification tr td {
    width: 171px;
}

.footer {
    width: 100%;
    height: max-content;
    padding: 1px;
    background-color: var(--nav-color);
}

.foot_prnt {
    width: 100%;
    margin-left: 0%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.footer_button {
    width: 35px;
    height: 30px;
    background-color: white;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--nav-color);
    font-size: var(--font-size1);
}


.foot_logo {
    width: 22%;
}

.fotr_line {
    border-color: #000 !important;
    width: 100%;
    margin-left: 0%;
    margin-top: 30px;
    border: 1px solid;
}

.footer_parent {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 30px;
}

.fotr_child {
    width: max-content;
    height: max-content;
}

.fotr_title {
    color: tomato;
    margin-top: 20px;
    font-size: 13px;
}

.fotr_ul {
    padding: 5px;
    color: #FFF;
}

.fotr_li {
    list-style: disc;
    margin-left: 13px;
    font-size: 12px;
}

.fotr_li a {
    color: white;
    text-decoration: none;
}







/* \\\\\\\\\\\\\\\ CENTER ///////////// */





#search-cars-area {
    color: #ffffff;
    background: #4509d3;
    position: relative;
}

#search-cars-area h2 {
    font-size: 14px;
    font-weight: bold;
    padding: 15px 0px 6px 5px;
    margin: 0 15px 5px 15px;
    text-align: left;
    font-style: normal;
    color: #fff;
}

#search-cars-area h2:before {
    content: "";
    position: absolute;
    top: 36px;
    height: 3px;
    background-color: #fff;
    right: 15px;
    width: 85%;
    opacity: 0.6;
    color: #fff;
}

#search-cars-area .icon-search {
    margin-right: 2px;
    color: #fff;
}

#search-cars-area h2:after {
    content: "";
    position: absolute;
    top: 36px;
    height: 3px;
    color: #fff;
    background-color: #fff;
    left: 15px;
    width: 165px;
}

#search {
    margin: 0 0 10px;
    padding: 14px 10px 15px 10px;
    color: #ffffff;
    background: #4509d3;
}

.main-select {
    padding: 0 3px;
}

#search form {
    display: block;
}

#search-cars-area .search-cars-items {
    overflow: hidden;
}

table {
    border-spacing: 0;
    border-collapse: collapse;

}

tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}


#search-cars-area #search td.cars-items {
    width: 30%;
    padding-top: 10px;
}

#search-cars-area .search-cars-items .cars-items-name {
    width: 70px;
    padding-left: 10px;
    background-color: transparent;
    font-size: 14px;
}

#search-cars-area .cars-items-make select {
    width: 100%;
    padding: 3px 3px;
    font-size: 12px;
}

#search-cars-area .cars-items-model select {
    width: 100%;
    padding: 3px 3px;
    font-size: 12px;
}

#price {
    width: 98%;
    padding: 3px 3px !important;
    font-size: 12px;
}

#search-cars-area .search-cars-items .cars-items-year .from-to {
    width: 43%;
    padding: 3px 3px;
    font-size: 12px;
}

#search-cars-area .search-cars-items .cars-items-year .tilde {
    width: 5%;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}

#search-button {
    margin: 0 0 0 24px;
    text-align: center;
    font-size: 14px;
    background: #222222 !important;
}

.left {
    background: #222222;
    color: white;
    width: 100%;
    padding: 10px 20px;
}

#mgt #search-button a {
    display: block;
    padding: 9px 0;
    color: #fff;
    background: #222222 !important;
    font-weight: bold;
}

#search-cars-area .cars-items-type select {
    width: 100%;
    padding: 3px 3px;
    font-size: 12px;
}

#search-cars-area .cars-items-steering select {
    width: 100%;
    padding: 3px 3px;
    font-size: 12px;
}

#search-cars-area .search-cars-items .cars-items-prices select {
    width: 98%;
    padding: 3px 3px;
    font-size: 12px;
}

.cen_box {
    width: 100%;
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
}

.main_box1 {
    width: 19%;
    height: 16vh;
    border: 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#tab-content {
    padding-top: 1rem !important;
}

.cen_btns {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.cen_btnss {
    width: auto;
}

.nav-tabs {
    border: 0;
}

.nav-item a:hover {
    border: 0 !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    /*	border:0 !important;*/
}

.btn_clr {
    width: auto;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    font-size: 13px;
    transition: all .34s linear;
    padding: 0 20px;
}

.btn_clr:hover {
    background-color: var(--theme-color);
    color: var(--primary-color);

    width: auto;
    height: 40px;
    border: 1px solid var(--theme-color);
    font-size: 13px;
    transition: none;
    /*transition: all .34s linear;*/
    padding: 0 20px;
}

.btn_clr1 {
    color: white;
    background: var(--theme-color);
}

.cen_prt {
    width: 100%;
    height: max-content;
    margin-top: 20px;
    display: block;
    flex-wrap: wrap;
    padding: 1px;
    justify-content: space-between;
    float: left;
}


.cen_chld {
    width: 13%;
    margin-bottom: 20px;
    height: max-content;
    cursor: pointer;
    float: left;
    margin-right: 10px;
}


/* word-wrap: break-word; */

.cen_ankr {
    color: #1e57d9;
    text-decoration: none;
    font-size: 13px;
    word-wrap: break-word;
    font-weight: 600;
}

.cen_ankr:hover {
    text-decoration: underline;
}

.cen_pera {
    color: #333333;
    font-size: 12px;
    margin-top: 5px;
}

.cen_title {
    color: green;
    font-size: 12px;
    margin-top: 5px;
}

.cen_title1 {
    color: #de1c17;
    font-size: 12px;
    margin-top: 5px;
}

.cen_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cen_div {
    width: 100%;
    margin-top: 50px;
    border-bottom: 2px solid #393939;
}

.cen_title2 {
    color: #333333;
    font-size: 15px;
}

.cen_div1 {
    width: 94%;
    margin-left: 3%;
    margin-top: 20px;
    border-bottom: 2px solid #de1c17;
}

.cen_title3 {
    margin-left: 10px;
    color: #333333;
    font-size: 13px;
}

.cen_prt1 {
    width: 94%;
    margin-left: 3%;
    justify-content: space-between;
    margin-top: 20px;
    display: flex;
}

.cen_chld1 {
    width: 48%;
}

.bigbars {
    width: 100% !important;
}

.tttl {
    font-size: 20px;
}

.cen_li {
    font-size: 13px;
}

.cen_li1 {
    list-style: none;
    font-size: 13px;
    color: var(--theme-color);
    padding: 5px;
    padding-left: 15px;
}

.cen_li2 {
    font-size: 13px;
    padding: 5px;
    color: var(--theme-color);
}

.cen_prt2 {
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
    display: flex;
    margin-bottom: 50px;
}

.cen_div2 {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #393939;
}

.cen_div2 span {
    color: #333333;
    font-size: 15px;
}

.cen_icon {
    color: #333333;
    font-size: 15px;
    position: absolute;
    right: 0;
}

.cen_btns1 {
    width: 100%;
    margin-top: 10px;
}

.btn_clr2 {
    width: 19%;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    font-size: 13px;
    transition: all .34s linear;
}

.btn_clr2:hover {
    background-color: var(--theme-color);
    color: var(--primary-color);
}

.nav-item a {
    margin: 0 1px;
    padding: 0 !important;
}

/*.cen_btns22 {
    width: 19%;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    font-size: 13px;
    transition: all .34s linear;
}

.cen_btns22:hover {
    background-color: var(--theme-color);
    color: var(--primary-color);
}*/




/* \\\\\\\\\\\\\\\ Right Side Bar ///////////// */




.parent_img {
    width: 100%;
}

.prnt_acont {
    width: 100%;
    height: max-content;
    border: 1px solid orangered;
    text-align: center;
    margin-top: 10px;
}

.prnt_acont h2 {
    color: orangered;
    font-size: 15px;
    margin-top: 5px;
}

.prnt_acont p {
    color: #767676;
    font-size: 11px;
    line-height: 20px;
}

.prnt_icon {
    padding: 5px;
    width: 100%;
    height: max-content;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.div_icon {
    width: auto;
    height: max-content;
    margin-top: 15px;
    color: #767676;
}

.div_circle {
    width: 50%;
    height: 4vh;
    margin-left: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: red;
    border-radius: 50%;
    border: 1px solid;
}

.prt_btn {
    width: 80%;
    background: orangered;
    margin-top: 20px;
    height: 40px;
    font-size: .8rem;
    color: white;
    border: none;
    border-radius: 10px;
}

.prt_img {
    width: 100%;
    margin-top: 15px;
}

.main_follow {
    width: 100%;
    height: max-content;
    margin-bottom: 20px;
    border-top: 2px solid #767676;
    border-bottom: 2px solid #767676;
}

.main_follow h4 {
    font-size: 15px;
}

.flow_img {
    margin-top: 10px;
    width: 30px;
    margin-bottom: 10px;
    display: inline-block;
}






/* /////////////////////////// footer1 \\\\\\\\\\\\\\\\\\ */






.footer1 {
    width: 100%;
    height: max-content;
    display: none;
}

.accordion {
    width: 100%;
    background: #FFF;
    border-collapse: collapse;
}

.accordion .accordion-content {
    background: linear-gradient(#fff, #d2d6de);
    border: 1px solid #333;
    overflow: hidden;
}



.accordion-content header {
    display: flex;
    min-height: 35px;
    padding: 0 15px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s linear;
}

.accordion-content.open header {
    min-height: 35px;
}

.accordion-content header .title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.accordion-content header i {
    font-size: 15px;
    color: #333;
}

.accordion-content .description {
    height: 0;
    font-size: 12px;
    background: #767676;
    color: #333;
    font-weight: 400;
    padding: 0 15px;
    transition: all 0.2s linear;
}

.description li {
    color: #FFF;
    padding: 10px;
    display: block;
    border-bottom: 1px solid;
}


.ftr1_bar {
    width: 100%;
    height: 50px;
    background-color: #262626;
}

.frt1_div {
    width: 60%;
    height: 100%;
    margin-left: 20%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.frt1_icon {
    height: 40px;
    width: 40px;
    cursor: pointer;
    border: 2px solid;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ftr1_bar1 {
    width: 100%;
    height: 35px;
    background: linear-gradient(#fff, #d2d6de);
    display: flex;
}

.ftr1_div1 {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #262626;
    border: 1px solid #767676;
}

.ftr1_bar2 {
    width: 100%;
    height: 100px;
    background: #262626;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ftr1_span {
    color: white;
    font-size: 10px;
}

.ftr1_span a {
    color: white;
    text-decoration: none;
}

.ftr1_span a:hover {
    text-decoration: underline;
}

.Fotr1_btn {
    width: max-content;
    height: max-content;
    margin-top: 10px;
}

.footer1_button {
    width: 25px;
    height: 25px;
    background-color: #1e57d9;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 13px;
}

.b1 {
    background-color: #d93175;
}

.b2 {
    background-color: #de1c17;
}












/* \\\\\\\\\\\\\\\\\\\\\\\\\ Form Page /////////////////////// */

#list-content .results-bottom {
    position: relative;
    margin: 20px 0 15px;
    text-align: right;
}


label {
    display: inline-block;
    width: 100% !important;
}

.form_child {
    width: 17%;
    height: max-content;
}


.form_child2 {
    width: 100%;
}

.stocklist-vt-box {
    display: table;
    margin-bottom: 13px;
}

.new-calculator {
    display: table-cell;
    box-sizing: border-box;
    /* border-color: #CCCCCC; */
    border: 1px solid #CCCCCC;
    background-color: transparent;
    padding: 10px 10px 5px;
    margin-bottom: 13px;
    width: 70%;
    height: 100%;
    min-height: 116px;
}

.calculator {
    font-family: Arial;
    font-weight: bold;
    vertical-align: top;
}


.new-calculator .select-area {
    max-width: 240px;
}

.new-calculator td.select-area tr:first-child td {
    padding-top: 0;
    padding-right: 0;
}

div.calculator td.select-area td {
    padding-right: 4px;
}

.new-calculator td.select-area td {
    padding-top: 10px;
    padding-bottom: 0;
}

.fon_span {
    font-size: 11px;
}

.form_lable span {
    font-size: 11px;
}

.new-calculator a.priceTip {
    display: block;
    text-align: center;
    line-height: 1;
    /* margin: 15px 0 5px; */
}

.new-calculator td.quotation-area {
    margin-left: 37%;
    width: 60%;
}



.new-calculator select {
    border-radius: 4px;
    height: 28px;
    width: 100% !important;
    vertical-align: middle;
    font-family: Arial, Helvetica, sans-serif;
    padding: 3px 2px;
    font-size: 11px;
}

.new-calculator td.quotation-area .selectgroup-insurance td {
    padding-top: 0;
    font-size: 12px;
}

.calculator td {
    vertical-align: top;
}

.new-calculator td.quotation-area tr td {
    padding-top: 6px;
    vertical-align: middle;
    font-size: 12px;
}

.Form_icon {
    color: #4509d3;
    font-size: 13px;
}

#nearest_port_city_status {
    margin: 5px 0 0;
    color: #ff0000;
    font-size: 11px;
    font-weight: bold;
}

.new-calculator .select-btn-area table tr:first-child td {
    padding-top: 50px;
}

.calculator td table td.pr0 {
    padding-right: 0;
}

.new-calculator .select-btn-area table td {
    padding-bottom: 0;
    text-align: center;
}

.new-calculator table .reset-bt {
    border: none;
    background: none;
    color: #3366CC;
    font-weight: bold;
    cursor: pointer;
    /* font-size: 13px; */
    padding: 0;
    text-transform: none;
}

.new-calculator table .reset-bt:hover {
    text-decoration: underline;
}

.new-calculator a.button-calculate-inner {
    background-image: none;
    padding: 10px 25px;
    border-color: #1697D8;
    border-radius: 4px;
    text-shadow: none;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .3);
}

a.button-calculate {
    background: #1a99d5;
    color: #fff !important;
    font: bold 12px Helvetica, Arial, sans-serif;
    text-decoration: none;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    cursor: pointer;
}

.table-space {
    display: table-cell;
    width: 13px;
}

.wishlist {
    display: table-cell;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #CCCCCC;
    line-height: 100%;
    font-weight: bold;
    margin-bottom: 10px;
    vertical-align: top;
    width: 368px;
    height: 100%;
    min-height: 116px;
}

.wishlist-current-search-filter {
    width: 12px;
    height: 12px;
}

.wishlist-current-search-title {
    color: #4509d3;
    font-size: 14px;
    font-weight: bold;
    margin-left: 3px;
}

.wishlist-search-text {
    font-size: 11px;
    margin-top: 10px;
    min-height: 30px;
}

ul.wishlist-save-search-query-list {
    display: inline-block;
}

ul.wishlist-save-search-query-list li {
    display: inline-block;
    line-height: 1.6;
}

.wishlist-save-search {
    overflow: hidden;
}

.wishlist-save-search p {
    color: #4509d3;
    font-size: 11px;
    float: left;
    font-weight: lighter;
    position: relative;
    line-height: 2;
    margin-top: 10px;
    width: 100%;
}

.wishlist-save-search .save-search-btn {
    /* float: right; */
    width: 100%;
    padding: 4px 0;
}

.save-search-button {
    text-decoration: none;
    text-transform: none;
    padding: 0;
    padding: 8px;
    height: auto;
    font-size: 12px;
    line-height: 16px;
    /* margin: 0; */
}


.list-form {
    background-color: #5DB8E3;
    border: 1px solid #f8bb49;
    padding: 10px 10px 0 10px;
    font-size: 11px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

option {
    font-weight: normal;
    display: block;
    white-space-collapse: collapse;
    text-wrap: nowrap;
    min-height: 1.2em;
    padding: 0px 2px 1px;
}

.list-form table {
    table-layout: fixed;
}

.list-form .left-form {
    width: 25%;
}

.list-form td {
    padding-bottom: 10px;
}

.list-form .left-form select {
    width: 95%;
}

.list-form select {
    padding: 3px 0;
    height: 28px;
    border-radius: 4px;
}

.list-form .model-td {
    width: 25%;
}

.list-form select {
    padding: 3px 3px;
    width: 95%;
    height: 28px;
    border-radius: 4px;
}

.list-form .model-code {
    width: 25%;
}

.list-form .fuel-td {
    width: 25%;
}

.list-form .from-left-to select {
    width: 44%;
}

ul {
    list-style: none;
}

.list-form .model-year li {
    margin-right: 3px;
    float: left;
}

.list-form .from-to-year select {
    width: 100%;
}

.list-form .from-to-month select {
    width: 100%;
}

.list-form .model-year .tilde {
    margin-top: 3px;
}

.list-form .from-to select {
    width: 44%;
}

.list-form #option-anchor {
    position: relative;
    font-size: 14px;
    color: #3366cc;
    font-weight: bold;
    cursor: pointer;
}

.list-form .icon-td {
    width: 100%;
}

.list-form .icon-td li {
    float: left;
    margin-right: 21px;
}

.list-form .icon-td input {
    /* vertical-align: middle; */
    padding: 0;
}

.fn-focus-tip {
    display: inline-block;
    line-height: 1;
}

.list-form .search-button-area {
    margin: 14px 0 13px 0;
    overflow: hidden;
    position: relative;
}

.list-form .search-count-area {
    position: absolute;
    left: 15px;
    line-height: 28px;
    font-size: 13px;
}

.list-form .search-count-area .search-count {
    font-size: 18px;
    font-weight: bold;
}

.list-form .search-button-area .search-button {
    float: left;
    width: 50%;
}

.list-form .search-button-area .search {
    float: right;
    min-height: 40px;
    padding-top: 7px;
}

.list-form .search-button-area .wishlist-button {
    float: right;
    width: 50%;
    height: 31px;
}

.list-form .search-button-area .reset-button {
    float: left;
    margin: 4px 0 0 13px;
    font-size: 13px;
}

.list-form .search-button-area .reset-button a {
    font-size: 14px;
    font-weight: bold;
    vertical-align: -1px;
    margin-left: 10px;
}

.btn_form {
    padding: 10px;
    border-radius: none;
}

#list-content .results-top {
    margin: 0 0 20px;
}

#list-content .results {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#list-content .shipping-desc {
    margin-bottom: 2px;
    font-size: 12px;
    color: #333;
}

.bold {
    font-weight: bold;
}

#list-content .shipping-country {
    float: left;
}

#list-content .country-sort.is-active {
    background-color: #4509d3;
    color: #fff;
}

#list-content .country-sort.all {
    margin-left: 0;
    padding-left: 6px;
}

.inquiry-button:hover {
    background-color: #000;
    color: #fff;
}

#list-content .results-pagination li a:hover {
    color: #fff;
    background: #4509d3;
}

#list-content .country-sort {
    position: relative;
    display: inline-block;
    padding: 2px 6px 2px 28px;
    margin: 2px 2px 2px 2px;
    border: solid 1px #4509d3;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
}

#list-content .country-sort i[class^="flg-"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 20px;
    display: inline-block;
    vertical-align: -3px;
    background-image: url(img/icon_vehicles_stock.png);
    background-repeat: no-repeat;
    background-size: 46px auto;
}

#list-content .country-sort .flg-jp {
    background-position: -4px -4px;
}

#list-content .country-sort .flg-sg {
    background-position: -4px -239px;
}

#list-content .country-sort .flg-gb {
    background-position: -4px -56px;
}

#list-content .country-sort .flg-ae {
    background-position: -4px -265px;
}

#list-content .country-sort .flg-th {
    background-position: -4px -163px;
}

#list-content .country-sort .flg-kr {
    background-position: -4px -30px;
}

#list-content .country-sort .flg-cn {
    background-position: -4px -342px;
}

#list-content .results-top .results-controllers {
    float: right;
}

#list-content .results-items {
    display: inline-block;
}

#list-content .results-controllers .control-name {
    display: block;
    padding: 0px 2px 4px;
    color: #777;
    font-size: 11px;
    /* font-weight: bold; */
    white-space: nowrap;
}

#list-content .results-items select {
    width: 50px;
    font-size: 13px;
    border-radius: 2px;
    cursor: pointer;
}

#list-content .results-sort {
    display: inline-block;
    margin-left: 10px;
}

#list-content .results-sort select {
    width: 140px;
    font-size: 13px;
}

.results-sort select.activated {
    background-color: #C4EFFF;
}



.Form_bar {
    /*	width: 100%;
height: max-content;
margin-top: 20px;
display: block;*/
    width: 100%;
    height: max-content;
    margin-top: 20px;
    display: flex;
}

.Form_bar li {
    float: left;
    width: 50%;
}

.Form_bar li a {
    width: 100%;
}

.fmtab {
    width: 100% !important;
}

.fmtabb {
    width: 100%;
    float: left;
}

.fmtabb li {
    width: 50%;
    float: left;
    text-align: center;

}

.fmtabb li a {
    padding: 10px 0 !important;
    text-align: center;
    /*	border: 1px solid lightgray;*/
    background-color: rgba(211, 211, 211, 0.596);
}

/*.fmtabb .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-top: 3px!important;
  border-color:#F09 !important;
}*/
/*.fmtabb li a.active{
  border-top: 3px!important;
  border-color:#F09 !important;
}*/
.bar_child {
    width: 50%;
    height: 40px;
    border: 1px solid lightgray;
    display: flex;
    background-color: rgba(211, 211, 211, 0.596);
    justify-content: center;
    align-items: center;
}

.bar_child1 {
    border-top: 3px solid var(--tag-color) !important;
    color: var(--tag-color);
    border-left: 1px solid lightgray;
    border: none;
    background-color: transparent;
}

.sparepartb {
    margin-bottom: 30px;
    width: 100%;
    border-bottom: 2.5px solid #D8D8D8;
}

.sparepartb li {
    width: 14%;
    text-align: center;

}

.sparepartb li a {
    color: #505050;
    font-size: 14px;
    font-weight: bold;
    line-height: initial;
    text-align: center;
    line-height: 19px;
}

.sparepartb li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px 10px;
    height: 44px;
    cursor: pointer;
}

.sparepartb .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #4509d3 !important;
    background-color: #fff !important;
    border-top: 0 !important;
}

.sparepartb .nav-item.show .nav-link,
.nav-tabs .nav-link:hover {
    color: #4509d3 !important;
    background-color: #fff !important;
    border-bottom: 3px solid #4509d3 !important;
    border-top: 0 !important;
}

.most-popular-categories .tabs .sparepartb li a:hover {
    border-bottom: 2px solid #4509d3 !important;
    color: #4509d3 !important;
    border-top: 0 !important;
}

#list-content .cars-box-stocklist-renewal .stocklist-row-wrap {
    width: 100%;
}

#list-content .cars-box-stocklist-renewal .stocklist-row {
    border-bottom: 1px solid #CCCCCC;
    margin: 15px 0;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .photo-col {
    width: 20%;
    position: relative;
    text-align: center;
    vertical-align: top;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .stocklist-col {
    padding-top: 17px;
    padding-bottom: 12px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .photo-col .favorite-button-background {
    position: absolute;
    top: 24px;
    left: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .photo-col .favorite-button .icon-bookmark {
    font-size: 14px;
    vertical-align: middle;
    margin: 0 0 0 1px;
    color: #555555;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .photo-col .veh-stock-no {
    text-align: center;
    font-size: 13px;
    color: #555555 !important;
    font-weight: bold;
    background-color: #E6E6E6;
    padding: 1px;
    width: 150px;
    margin: 4px auto;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .photo-col .ref-icon-area {
    margin-left: 15px;
    margin-top: 4px;
    line-height: 0;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .photo-col .ref-icon-area img.ref-icon {
    width: 75px;
    margin: 4px 6px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col {
    width: 60%;
    text-align: left;
    vertical-align: top;
    padding-left: 10px;
    padding-right: 10px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .make-model {
    color: #3366CC !important;
    font-weight: bold;
    font-size: 18px;
    padding-top: 2px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .basic-spec-row {
    margin: 12px 0 17px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .basic-spec-row .mileage {
    width: 108px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .basic-spec-row .basic-spec-col {
    text-align: center;
    border-right: 1px solid #E6E6E6;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .basic-spec-row p.title {
    font-size: 13px;
    color: #707070;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .basic-spec-row p.val {
    font-weight: bold;
    font-size: 13px;
    color: #000000;
    margin-top: 5px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .basic-spec-row .last {
    border-right: none;
}


#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .table-detailed-spec {
    table-layout: fixed;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .table-detailed-spec .th-1st {
    width: 88px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .table-detailed-spec .th {
    background-color: #F2F2F2;
    overflow: hidden;
    color: #333333;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .table-detailed-spec td {
    border-collapse: collapse;
    border: 1px solid #E6E6E6;
    text-align: left;
    font-size: 13px;
    background-color: #FFFFFF;
    padding: 4px 0 4px 6px;
    word-wrap: break-word;
}

.fullbb {
    width: 100%;
    float: left;
}

.fullbbb {
    width: 100%;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .table-detailed-spec .td-1st {
    min-width: 97px;
    width: 97px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .accessories {
    padding: 0;
    margin-top: 15px;
    font-size: 13px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .accessories ul {
    display: inline-block;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .accessories li {
    display: inline-block;
    color: #333333;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .accessories li+li:before {
    content: '/';
    color: #CCCCCC;
    margin: 0 5px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .description-col .and-more {
    color: #3366CC;
    margin-left: 5px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col {
    width: 20%;
    vertical-align: top;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col div {
    text-align: right;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .label-price {
    display: inline-block;
    text-align: left;
    width: 30%;
    color: #707070;
    font-size: 13px;
    vertical-align: 2px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .vehicle-price {
    display: inline-block;
    text-align: right;
    width: 65%;
    padding: 0;
    padding-bottom: 10px;
    color: #D93005;
    margin: 0;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .vehicle-price .currency-label {
    font-size: 14px;
    vertical-align: 7px;
    margin-right: 3px;
    font-weight: bold;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .vehicle-price .price {
    font-size: 14px;
    font-weight: bold;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col hr {
    margin: 7px 0;
    height: 1px;
    border: none;
    border-top: 1px #E6E6E6 solid;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .label-total-price {
    display: inline-block;
    width: 40%;
    text-align: left;
    margin: 0;
    color: #707070;
    font-size: 13px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .total-price {
    display: inline-block;
    width: 55%;
    text-align: right;
    margin: 0;
    font-size: 20px;
    color: #D93005;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .total-price .currency-label {
    font-size: 12px;
    vertical-align: 5.5px;
    font-weight: bold;
    margin-right: 3px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .destination-wrap {
    padding-top: 3px;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .destination-wrap .price-condition {
    display: inline-block;
    font-size: 12px;
    color: #707070;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .destination-wrap .destination-port {
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
    color: #707070;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .destination-wrap .shipping-method {
    display: inline-block;
    font-weight: normal;
    font-size: 12px;
    color: #707070;
}

#list-content .cars-box-stocklist-renewal .stocklist-row .price-col .price-col-total-price .inquiry-button-area {
    margin-top: 20px;
}

.form_btn3 {
    width: 80% !important;
}

.form_btn4 {
    width: 100%;
    margin-left: 0%;
    padding-left: 30%;
    padding-right: 30%;
    padding-top: 10px;
    padding-bottom: 10px;
}

#list-content .results-bottom {
    padding-bottom: 12px;
}

#list-content .results-bottom {
    position: relative;
    margin: 20px 0 15px;
    text-align: right;
}

#list-content .results-pagination ul {
    line-height: 1;
    text-align: center;
}

#list-content .results-pagination li {
    display: inline-block;
}

#list-content .results .selected a {
    background: #4509d3;
}

#list-content .results-pagination li a {
    display: inline-block;
    padding: 7px;
    font-size: 11px;
    color: #fff;
    background: #4a93e4;
}

#list-content .results-bottom .results-items {
    position: absolute;
    top: 0;
    right: 0;
}

#list-content .results-items {
    display: inline-block;
}

.wishlist-bottom {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    padding: 20px 0;
    overflow: hidden;
}

.wishlist-bottom-list {
    float: left;
    margin-left: 10px;
    max-width: 700px;
    padding-top: 10px;
}

.wishlist-bottom-title {
    float: left;
    padding-top: 8px;
}

ul.wishlist-save-search-query-list li {
    display: inline-block;
    line-height: 1.6;
    font-size: 13px;
}

.wishlist-bottom-btn {
    float: right;
}

ul.wishlist-save-search-query-list {
    display: inline-block;
}





/* ///////////////// Media Quries \\\\\\\\\\\\\\\\ */

@media screen and (max-width:1000px) {
    .new-calculator td.quotation-area {
        margin-left: 27%;
        width: 70%;
    }
}

@media screen and (max-width:888px) {
    .new-calculator td.quotation-area {
        margin-left: -10%;
        width: 110%;
    }

    .list-form #option-anchor {
        font-size: 10px;
    }
}

@media screen and (max-width:767px) {


    .stocklist-vt-box {
        display: inline;
    }

    .new-calculator {
        display: inline-block;
        width: 100%;
    }

    .wishlist {
        width: 100%;
    }

    .new-calculator td.quotation-area {
        margin-left: 37%;
        width: 60%;
    }


}

@media screen and (max-width:600px) {
    .new-calculator td.quotation-area {
        margin-left: 07%;
        width: 90%;
    }
}

@media screen and (max-width:500px) {
    .new-calculator td.quotation-area {
        margin-left: -10%;
        width: 110%;
    }

    .list-form #option-anchor {
        font-size: 8px;
    }
}



.Form_parent2 {
    width: 100%;
    height: max-content;
    padding: 1px;
    border-bottom: 1px solid lightgray;
    cursor: pointer;
    position: relative;
    margin-top: 10px;
}

.Form_img {
    width: 20%;
}

.From_title1 {
    color: #1167a8;
    position: absolute;
    top: 0px;
    left: 21%;
}

.From_title1:hover {
    text-decoration: underline;
}


table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}


/* /////// table //////// */
.entry:last-child {
    margin-right: 0% !important;
}

.pickup-specification {
    margin: 20px auto;
    text-align: center !important;
}

.pickup-specification table {
    margin: auto;
    height: 40px;
}

.pickup-specification table tr:first-child td {
    padding-bottom: 7px;
}

.pickup-specification table tr td:first-child {
    padding-left: 0;
}

.pickup-specification table tr td {
    border-right: 1px solid #E6E6E6;
    padding: 0 13px;
}

.specs-pickup-text {
    color: #707070;
    font-size: 13px;
    text-align: center;
}

.pickup-specification table tr td:first-child {
    padding-left: 0;
}

.pickup-specification table tr .pickup-specification-text {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    max-width: 202px;
    word-break: break-all;
}

.pickup-specification table tr td {
    border-right: 1px solid #E6E6E6;
    padding: 0 13px;
}

.specification {
    /* border-top: 1px solid #E6E6E6;*/
    /* border-left: 1px solid #E6E6E6;*/
}

.specification {
    width: 100%;
    padding: 0;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0;
    line-height: normal;
}

.specification th {
    border-right: none;
    border-bottom: 1px solid #E6E6E6;
    color: #333333;
    font-size: 13px;
    font-weight: normal;
    padding: 7px 10px;
    width: 116px;
    /*  width: 120px;*/
}

.specification tr:not(:last-child) td {
    border-right: 1px solid #E6E6E6;
}

.specification td {
    border: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    color: #000000;
    padding: 5px;
    font-size: 13px;
    font-weight: normal;
}

.orange {
    color: #f28705;
}

.green {
    color: #008000;
}

.btn_pera {
    color: #767676;
    font-size: 12px;
    position: absolute;
    left: 21%;
    top: 140px;
}

.From_pera {
    border: none;
    background-color: lightgrey;
    padding: 5px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-top: 10px;
    font-weight: 600;
}

.form_table2 {
    width: 20%;
    height: max-content;
    position: absolute;
    right: 0;
    top: 0;
}

.form_td1 {
    padding: 3px;
    height: 35px;
    border-bottom: 1px solid lightgrey;
}

.th1 {
    font-size: 17px;
}

.td1 {
    height: 35px;
    padding: 3px;
    font-size: 18px;
    color: red;
    padding-left: 30px;
}

.btn_pera1 {
    color: #767676;
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 75px;
}

.orange_btn {
    width: 250px;
    height: 40px;
    background: linear-gradient(#e64500, #e97f00);
    border: none;
    text-transform: uppercase;
    position: absolute;
    top: 100px;
    right: 0;
    color: white;
    font-size: 20px;
    font-size: 700;
    border-radius: 5px;
}






/* ||||||||||||||||||| Media Quries |||||||||||||||||| */






@media screen and (max-width:1100px) {

    .form_table1 {
        width: 58%;
    }

    .orange_btn {
        width: 150px;
        height: 35px;
        font-size: 15px;
    }

}

@media screen and (max-width:950px) {
    .Form_img {
        visibility: hidden;
    }

    .From_pera {
        visibility: hidden;
    }

    .From_title1 {
        left: 0;
    }

    .form_table {
        left: 0;
    }

    .form_table1 {
        left: 0;
        width: 76%;
    }

    .form_table2 {
        width: 25%;
    }

    .btn_pera {
        left: 0;
    }
}

@media screen and (max-width:767px) {
    .form_child1 {
        display: none;
    }

    .form_child2 {
        width: 100%;
    }
}





/* \\\\\\\\\\\\\\\\\\\\\\\\\ Cars /////////////////////// */


.specs-pickup-text {
    border-top: none !important;

}

.Cars_parent {
    height: max-content;
    margin-top: 10px;
    display: block;
}

.cars_parent1 {
    width: 100%;
    height: max-content;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.Cars_child {
    width: 95%;
    position: relative;
    margin-bottom: 30px;
    height: max-content;
}

.car_div {
    width: 100%;
    border-bottom: 1px solid lightgray;
}

.car_div h1 {
    font-size: 20px;
}

.car_div p {
    color: gray;
    font-size: 15px;
    margin-top: 10px;
}

.car_div button {
    background-color: #4509d3;
    padding: 5px;
    border: none;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 2px;
    color: white;
    font-size: 15px;
    text-decoration: none;
}

.car_div1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid lightgrey;
}

.car_btn {
    width: 49%;
}

.car_btn button {
    width: 90%;
    height: 40px;
    margin-top: 10px;
    background-color: #1167a8;
    color: #fff;
    font-weight: bold;
    border: none;
    outline: none;
    font-size: 14px;
    margin-left: 5%;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.68);
}

.car_pera {
    margin: 0;
}

.car_div2 {
    width: 100%;
    position: relative;
    border-bottom: 1px solid lightgrey;
}

.car_pera {
    color: #333333;
    font-size: 15px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.car_div2 h3 {
    color: #d93005;
    position: absolute;
    right: 0;
    top: 0;
}

.car_pera2 {
    color: #e60012;
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 38px;
}

.detail {
    width: 100%;
}


.car_pera2 del {
    color: #333333 !important;
}

.car_price {
    width: 100%;
    position: relative;
}

.car_pera1 {
    margin-bottom: 10px;
    color: #333333;
    font-size: 15px;
}

.car_pera3 {
    right: 0;
    position: absolute;
    bottom: 10px;
    font-size: 12px;
    color: #d93005;
}

.car_pera4 {
    color: #d93005;
    font-size: 15px;
    position: absolute;
    right: 0;
    top: 0;
}

.car_pera5 {
    color: #333333;
    position: absolute;
    right: 0;
    font-size: 13px;
    top: 20px;
}

.Cars_pera3 {
    color: #333333;
    font-size: 13px;
    margin-top: 5px;
}

.Cars_gallery {
    width: 100%;
    overflow: hidden;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.car_img {
    width: 13%;
    height: 44%;
    margin-top: 1%;
}

.car_img:hover {
    opacity: 0.5;
}

#thumbnails {
    text-align: center;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 1px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.car_pera5 span {
    color: #4509d3;
}


#main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    margin: 20px auto;


}

.hidden {
    opacity: 0;
}

@media only screen and (max-width:480px) {
    #main {
        width: 100%;
    }
}

.car_pera6 {
    margin-top: 15px;
    font-size: 12px;
    text-align: center;
    color: #333333;
}

.car_pera6 span {
    padding: 3px;
    color: white;
    background-color: #1e57d9;
}

.car_btn1 {
    width: 40%;
    height: 40px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    position: absolute;
    right: 0;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #4509d3;
    color: #4509d3;
}

.car_bar {
    width: 100%;
    border-top: 2px solid #4509d3;
    margin-top: 70px;
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
}

.car_bar h3 {
    font-size: 15px;
}

.car_bar p {
    color: #393939;
    font-size: 13px;
}

.car_bar span {
    color: #000;
    font-weight: bold;
}

.Cars_bar1 p {
    line-height: 30px;
    font-size: 12px;
}

.car_title {
    margin-bottom: 10px;
    margin-top: 30px;
}

.remarks {
    width: 100%;
}

.remarks ul {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px 2.5px;
    -webkit-border-horizontal-spacing: 5px;
    -webkit-border-vertical-spacing: 2.5px;
}

.car_rem {
    list-style: none;
    background-color: #4509d3;
    border: 1px solid #4509d3;
    display: table-cell;
    border-radius: 2px;
    margin-left: 2px;
    padding: 3px 3px;
    color: #fff;
    vertical-align: middle;
    font-size: 13px;
    font-weight: bold;
    width: 200px;
    text-align: center;
    max-width: 127px;
}

.car_rem1 {
    list-style: none;
    color: #000;
    border: 1px solid #B9B9B9;
    display: table-cell;
    border-radius: 2px;
    margin-left: 2px;
    padding: 3px 3px;
    vertical-align: middle;
    font-size: 13px;
    font-weight: bold;
    width: 200px;
    max-width: 127px;
}



.cars_line {
    width: 100%;
    border-bottom: 1px solid lightgray;
    margin-top: 20px;
    margin-bottom: 30px;
}

.Cars_parent2 {
    width: 100%;
    height: max-content;
    margin-left: 0%;
}

.mb {
    margin-bottom: 30px;
}

.cars_bar2 {
    width: 100%;
    border-top: 1px solid #4509d3;
    padding: 10px;
}

.cars_bar2 p {
    font-size: 16px;
    color: #393939;
}

.cars_bar2 span {
    font-weight: bold;
    color: #4509d3;
}

.Cars_input {
    width: 100%;
    position: relative;
}

.Cars_input p {
    color: #393939;
    font-size: 13px;
    margin-top: 20px;
}

.Cars_input select {
    width: 70%;
    border: 1px solid lightgray;
    background-color: transparent;
    height: 30px;
    position: absolute;
    right: 0;
    top: 15px;
}

.cars_bar3 {
    margin-top: 20px;
    width: 100%;
    border-bottom: 1px solid grey;
}

.cars_bar3 p {
    font-size: 13px;
    color: #393939;
}

.cars_bar4 {
    width: 100%;
    background-color: #d5f1ff;
    display: flex;
    border-bottom: 1px solid lightgray;
    padding: 10px;
    justify-content: space-between;
}

.car_bf {
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid lightgray;
}

.car_bf p {
    font-size: 13px;
    margin-top: 10px;
}

.car_bf input {
    margin-top: 10px;
}

.car_bf span {
    font-size: 13px;
}

.car_bf h4 {
    font-size: 15px;
    margin-top: 30px;
    color: gray;
}

.bar {
    background-color: transparent;
}

.car_green {
    width: 100%;
    background-color: #dff6e1;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.car_title1 {
    color: #393939;
    font-size: 13px;
}

.car_title2 {
    color: #008000;
    font-size: 13px;
}

.car_title2 span {
    color: #e60012;
}

.cars_bar4 p {
    font-size: 13px;
    color: #4509d3;
}

.cars_bar4 h3 {
    color: #e60012;
    font-size: 16px;
}

.car_req {
    font-size: 11px;
    font-weight: bold;
    color: #393333;
    margin-top: 10px;
}

.car_inputs {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.inp_child {
    width: 48%;
}

.inp_child label {
    color: #393939;
    font-weight: bold;
    font-size: 13px;
}

.inp_child input {
    width: 100%;
    margin-top: 5px;
    border-radius: 5px;
    height: 35px;
    padding: 10px;
    border: 1px solid lightgray;
    margin-bottom: 10px;
}

.Cars_bar {
    width: 100%;
    height: 30px;
    border: 1px solid #a5a5a5;
    margin-top: 20px;
    background: linear-gradient(#ebebeb, #ffffff, #ebebeb);
    display: flex;
    align-items: center;
}

.cars_title1 {
    color: #393333;
    text-transform: capitalize;
}

.cars_pera {
    color: gray;
    font-size: 16px;
    margin-top: 20px;
}

.Cars_btn button {
    padding: 5px;
    border: 1px solid #4509d3;
    color: #4509d3;
    cursor: pointer;
    background-color: transparent;
    margin-top: 10px;
}

.Cars_btn button:hover {
    text-decoration: underline;
}

.car_btn2 {
    width: 60%;
    height: 40px;
    margin-top: 20px;
    background-color: #1167a8;
    color: #fff;
    font-weight: bold;
    border: none;
    outline: none;
    margin-left: 20%;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.68);
}

.inp_chec {
    text-align: center;
    margin-top: 10px;
}

.inp_span {
    font-size: 13px;
}


.body_Popular {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: space-between;
    border-top: 2px solid #1e57d9;
}



.body_title {
    margin-left: 10px;
    color: #333333;
    font-size: 15px;
}

.Body5_akr {
    font-weight: 600;
    text-decoration: none;
    color: #4509d3;
}

.Body5_akr:hover {
    text-decoration: underline;
}


.body5_parent {
    width: 100%;
    display: flex;
    border-top: 1px solid lightgray;
    margin-bottom: 0px;
    justify-content: space-between;
    margin-top: 0px;
}

.body5_parent:last-child {
    margin-bottom: 40px !important;
}

.body5_chd {
    width: 73%;
}

.body5_img {
    width: 25%;
    margin-top: 20px;
    height: 100%;
}

.body5_title1 {
    font-size: 15px;
    margin-top: 20px;
}


.bdy5_star {
    width: max-content;
    height: max-content;
    color: #ffd200;
    font-size: 15px;
    left: 50px;
    margin-top: 10px;
}

.bdy5_pera1 {
    color: #333333;
    font-size: 13px;
    margin-top: 10px;
}

.bdy5_pera2 {
    font-size: 14px;
    margin-top: 2px;
}

.bdy_title {
    color: #4509d3;
    margin-top: 2px;
    font-size: 13px;
}

.btn {
    margin-top: 15px;
    margin-bottom: 30px;
    border-radius: 2px;
    background-color: #4509d3;
    color: white;
    padding: 3px;
    border: none;
    outline: none;
}







/* ||||||||||||||||||| MODEL |||||||||||||||||| */


.frm_bar {
    width: 100%;
    background: #4509d3;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.modal-content {
    position: relative;
}

.frm_title {
    color: #fff;
    font-size: 20px;
}

.modal_div {
    width: 100%;
    height: max-content;
    background: #f7f7f7;
    padding: 20px;
}

.modal_div h1 {
    font-size: 20px;
}

.model_tab {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: space-between;
}

.model_tab img {
    width: 40%;
}

.model_tab table {
    width: 58% !important;
}

.model_tab th {
    font-size: 10px;
    text-align: left;
}

.model_tab td {
    text-align: left;
    font-size: 10px;
}

.model_pera {
    font-size: 12px;
    position: absolute;
    right: 100px;
    top: 270px;
}

.model_label {
    font-size: 12px;
    font-weight: bold;
    right: 0px;
    top: 290px;
    width: 78%;
    position: absolute;
}

.model_ipn {
    width: 70% !important;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid grey;
    box-shadow: inset;
}

.model_label1 {
    top: 330px;
}

.model_label2 {
    top: 370px;
}

.model_label3 {
    top: 410px;
}

.model_label4 {
    top: 450px;
}

.model_label5 {
    top: 490px;
}

.model_btn {
    background: #4509d3;
    width: 55%;
    color: white;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: 42%;
    margin-top: 270px;
    border-radius: 5px;
}

.model_btn2 {
    font-size: 12px;
    margin-top: 10px;
    margin-left: 42%;
}






/* ||||||||||||||||||| Media Quries |||||||||||||||||| */






@media screen and (max-width:767px) {

    .cars_parent1 {
        display: block;
    }

    .Cars_child {
        width: 100%;
    }

    .car_div1 {
        display: block;
    }

    .car_btn {
        width: 100%;
    }

    .Cars_parent2 {
        width: 98%;
        margin-left: 1%;
    }

}









/* ||||||||||||||||||| BODY PARTS |||||||||||||||||| */




.autopat {
    width: 100%;
}

.autopap {
    width: 98.5%;
}

.nrm {
    margin-right: 0 !important;
}

.Parts_child {
    width: 100%;
    height: max-content;
}

.normal-nav {
    padding-bottom: 0;
}

.pc-mode-block {
    padding-top: 0;
}

.main_child1 .section {
    padding-top: 0 !important;
}

.pc-mode-block {
    padding-bottom: 0;
}

.Parts_child2 {
    width: 100%;
}

#genuine-parts-number {
    padding-bottom: 0;
    padding-top: 0;
}

.npadi {
    padding-top: 0;
    padding-bottom: 0;
}

.part_title {
    padding: 0 0 8px 10px;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid #4509d3;
}

#TopMakes {
    padding-top: 0;
    margin-bottom: 0px !important;
    padding-bottom: 0;
}

.top {
    margin-bottom: 0px !important;
    padding-bottom: 0;
    margin-top: 0;
    padding-top: 0;
}

.inner ul {
    padding-left: 0;
}

.inner ul li {
    padding-left: 0 !important;
}

.part_inner {
    padding: 5px 10px 25px;
    background: #f7f7f7;
}

.form_vehicle {
    display: block;
}

.form_vehicle select {
    height: 36px;
    margin-top: 10px;
    border: 1px solid #cecece;
    outline: none;
    padding: 2px 5px;
    width: 100%;
    background: #FFF;
    font-size: 12px;
    border-radius: 3px;
}

.btn_orange {
    width: 100%;
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 10px 20px;
    background: #4509d3;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
}

.part_table {
    width: 100%;
}

.part_th {
    background: #f7f7f7;
    text-align: center;
    color: #a69a9a;
    padding: 5px;
    font-size: 13px;
    border-bottom: 1px solid #ededed;
}

.part_th1 {
    width: 20%;
}

.part_td {
    padding: 5px;
    border-bottom: 1px solid #ededed;
}

.part_pera {
    color: #a69a9a;
    font-size: 12px;
    text-align: justify;
}

.part_pera1 {
    font-size: 12px;
}

.parts_btn {
    background-color: #4509D3;
    width: 80%;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
}

.part_ankr {
    color: #4509d3;
    font-size: 11px;
    text-align: left !important;
    text-decoration: none;
    margin: 2px;
}

.part_ankr:hover {
    text-decoration: underline;
    cursor: pointer;
}

.part_pera1 {
    text-align: center;
}

.part_pera2 {
    color: #008000;
    text-align: center;
}

.part_pera3 {
    color: #de1c17;
    font-size: 12px;
}

.parts_btn2 {
    width: 80%;
    background: #4509D3;
    color: #fff;
    font-size: 12px;
    border: none;
    margin: 5px;
}

.part_parent {
    width: 100%;
    display: flex;
    border-bottom: 1px solid lightgray;
    margin-bottom: 20px;
    justify-content: space-between;
    margin-top: 20px;
}






/* \\\\\\\\\\\\\\\Media Quries///////////// */







@media screen and (max-width:767px) {

    .Parts_child1 {
        display: none;
    }

    .Parts_child2 {
        width: 100%;
    }

}






/* \\\\\\\\\\\\\\\ AUTO PARTS ///////////// */




.Auto_parent {
    height: max-content;
    margin-top: 10px;
    display: block;
    position: relative;
}

.list-crumbs {
    margin-bottom: 16px;
}

.list-crumbs li {
    display: inline !important;
    vertical-align: middle;
    margin-right: 5px;
    font-size: 12px;
}

.list-crumbs li:after {
    content: '>';
    padding-left: 5px;
    color: #333;
    position: relative;
    font-weight: normal;
}

.btn-print {
    position: absolute;
    position: absolute;
    right: 0px;
    top: 0;
    border: none;
    cursor: pointer;
    line-height: 1;
    outline: none;
    padding: 10px 20px;
    background: #9a9a9a;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
}

.list-crumbs li a {
    font-weight: normal;
    color: #36c;
    text-decoration: underline;
}

.Auto_prnt {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: space-between;

}

.auto_child {
    height: max-content;
}

.auto_child1 {
    width: 100%;
}

.auto_img {
    width: 100%;
}

.auto_div {
    width: 100%;
    display: flex;
    margin-top: 10px;
}

.auto_smallimg {
    width: 20%;
    margin-right: 10px;
}

.share-area-content {
    margin-bottom: 16px;
    margin-top: 6px;
}

.pc-mode-block {
    display: block !important;
}

.share-area-content .share-area-button-list {
    font-size: 0;
    line-height: 1;
    margin-left: 0;
    text-align: left;
}

.share-area-content .share-area-button-list li {
    display: inline-block;
    width: 12%;
    height: auto;
    margin: 0 5px 0 0;
}

.label-note {
    margin-bottom: 20px;
    background: #fff7cc;
    padding: 15px;
}

.Auto_title {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.label-note .note-description {
    margin-left: auto;
    list-style: disc;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.label-note .note-description .note-description-engine {
    color: #cc1212;
}






/* \\\\\\\\\\\\\\\ AUTO CHILD 2 ///////////// */

.auto_child2 {
    width: 100%;
}

.item-status {
    font-size: 12px;
    margin-bottom: 0;
}

.c-glay-t {
    color: #9a9a9a;
}

.pc-mode-block header {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 6px;
}

.goods-name-area {
    overflow: hidden;
}

.goods-name-area .goods-name {
    word-break: break-word;
    float: left;
    margin-top: 10px;
    font-size: 8px;
    width: 90%;
}

.goods-name-area .button-box {
    float: right;
}

.goods-name-area .button-box .btn-favorite {
    margin: 0 2px;
    margin-top: 10px;
}

.btn-favorite {
    height: 30px;
    width: 30px;
    border-radius: 15px;
    color: #555;
    font-size: 14px;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    outline: 0;
}

.discount-price-wrap {
    margin-bottom: 15px;
}

.discount-price-wrap .item-discount-price {
    margin-bottom: 2px;
    line-height: 1.4;
}


.exa-icon-text div {
    /* min-width: 78px; */
    max-width: 110px;
    padding: 3px 2px 1px 2px;
    font-size: 13px;
    color: white;
    font-family: Arial;
    text-align: center;
    border: 0;
    border-radius: 2px;
}

.item-price-field {
    padding: 10px 0;
    font-weight: bold;
    margin-bottom: 6px;
    color: #767676;
}

.item-border-top {
    border-top: 1px solid #eee;
}

.item-price-field .price-box p:first-child {
    padding-top: 0;
}

.item-price-field .price-box p.item-original-price {
    font-size: 13px;
    font-weight: normal;
    padding: 14px 0;
}

.item-price-field .price-box p {
    padding: 0;
    margin-bottom: 0;
    line-height: 1;
}

.left {
    float: left;
}

.item-price-field .price-box p.item-price {
    font-size: 13px;
    padding: 0 0 14px;
}

.c-green-t {
    color: #64ab30;
}

.item-price-field .price-box p.item-save-price .you-save-caption,
#page-detail #global-main section .item-detail .item-price-field .price-box p.item-save-price .save-text {
    font-size: 13px;
    font-weight: normal;
}

.item-price-field .price-box p .left {
    width: 144px;
    margin-right: 15px;
}

.o-price-text {
    padding-top: 10px !important;
    float: left;
}

.c-green-t {
    padding-top: 10px !important;
    float: left;
}

.c-red-t {
    padding-top: 10px !important;
    float: left;
}

.item-price-field .price-box p.item-save-price .save-text {
    font-size: 13px;
}

.save-text {
    color: #d93005;
}

.paypal-points {
    margin-bottom: 12px;
}

.paypal-points .bf-point-icon {
    width: 22px;
    vertical-align: -1px;
    padding-right: 6px;
}

.paypal-points span {
    font-size: 13px;
    font-weight: bold;
    color: #4509d3;
}

.promotion-text {
    background: #dff6e1;
    padding: 0px 13px;
    margin-bottom: 15px;
    font-size: 13px;
    border-radius: 5px;
}

.promotion-text .fa-eye {
    font-size: 13px;
}

.promotion-text .num-text {
    font-weight: bold;
    margin: 0 8px;
}

.table-simple {
    border-collapse: collapse;
    width: 100%;
}

.mb30 {
    margin-bottom: 30px;
}

.item-data .table-simple.table-item th,
.item-data .table-simple.table-item td {
    font-size: 13px;
    height: 40px;
}

.item-data .table-simple th {
    width: 35%;
    font-size: 13px;
    height: 36px;
}

.table-simple th,
.table-simple td {
    border-left: none;
    border-right: none;
}

.table th,
table th,
.table-simple-flat th,
.table-simple th,
.table-invisible th {
    /*   background: #f7f7f7;*/
}

.items input[type="text"],
.items input[type="email"],
.items input[type="tel"],
.items input[type="password"],
.items select {
    box-sizing: border-box;
    width: 100%;
    color: #333;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
    border: solid #ccc 1px;
    border-radius: 4px;
    cursor: text;
}

#promotion_code {
    width: 79%;
    border-radius: 4px 0 0 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
}

#button-promotion-discount-apply {
    padding: 7px 5px;
    width: 21%;
    color: #555;
    border-radius: 0 4px 4px 0;
    background: #e0e0e0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 0 0 -4px;
    display: inline-block;
    box-shadow: none;
}


.items select {
    box-sizing: border-box;
    width: 100%;
    height: 25px;
    padding-left: 5px;
    color: #333;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
    border: solid #ccc 1px;
    border-radius: 4px;
    cursor: text;
}

.table th,
.table-simple th,
.table-simple td {
    border-collapse: collapse;
    border: 1px solid #e7e7e7;
    padding: 5px;
    font-size: 12px;
    line-height: 1.8;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}


.item-data .table-simple.table-item td {
    padding-left: 9px;
    font-size: 14px;
    color: #747474;
    width: 100%;
    border: 1px solid #e7e7e7;
    padding: 5px;
    height: 40px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.item-data .table-simple.table-item td img {
    width: auto;
    margin-left: 10px;
}

.label-lead-underline {
    border-bottom: 2px solid #4509d3;
    font-weight: bold;
    padding: 10px;
}

.label-lead-underline .title {
    font-size: 13px;
}

.item-description {
    margin-top: 10px;
}

.item-description .label-lead-underline {
    margin-bottom: 10px;
}

.item-description .description-text {
    font-size: 13px;
    line-height: 1.6;
}

.entry-body {
    margin-bottom: 20px;
}






/* \\\\\\\\\\\\\\\ AUTO CHILD 3 ///////////// */

.auto_child3 {
    width: 100%;
}

.cart-field {
    border: 1px solid #f9cca3;
    background: #fef4ea;
    padding: 20px;
    /* text-align: center; */
    margin-bottom: 20px;
    border-radius: 5px;
}

.cart-field .items-area {
    font-size: 13px;
    border-top: 2px dotted #cccccc;
    height: 18px;
    text-align: left;
    margin: 12px 0 2px;
    line-height: 14px;
}

.cart-field .items-area .contents-title {
    position: relative;
    top: -13px;
    background: #fef4ea;
    padding-right: 6px;
}

.cart-field .items-area .contents-text {
    position: relative;
    top: -13px;
    background: #fef4ea;
    padding-right: 6px;
    float: right;
}

.cart-field .shipping-area {
    font-size: 13px;
    border-top: 2px dotted #cccccc;
    height: 18px;
    text-align: left;
    margin: 12px 0 2px;
    line-height: 14px;
}

.cart-field .shipping-area .contents-title {
    position: relative;
    top: -13px;
    background: #fef4ea;
    padding-right: 6px;
}

.cart-field .shipping-area .contents-text {
    position: relative;
    top: -13px;
    background: #fef4ea;
    padding-right: 6px;
    float: right;
}

.cart-field .total-price-area {
    font-size: 13px;
    border-top: 2px dotted #cccccc;
    height: 18px;
    text-align: left;
    margin: 12px 0 2px;
    line-height: 14px;
}

.cart-field .total-price-area .contents-title {
    position: relative;
    top: -13px;
    font-weight: bold;
    background: #fef4ea;
    padding-right: 6px;
}

.cart-field .total-price-area .contents-text {
    position: relative;
    top: -13px;
    background: #fef4ea;
    padding-right: 6px;
    float: right;
}

.cart-field .freight-area {
    text-align: left;
    font-size: 12px;
}

.cart-field p {
    margin-bottom: 10px;
}

.cart-field .freight-area .change-text {
    font-size: 11px;
    line-height: 1.4;
}

.cart-field .quantity-area {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
}

.cart-field .last-one {
    color: #cc1212;
}

.cart-field .btn-cart-wrap {
    margin-bottom: 20px;
}

.cart-field .btn-cart {
    height: 40px;
    font-weight: bold;
    width: 100%;
}

.btn-cart-wrap .btn-orange {
    border: none;
    cursor: pointer;
    outline: none;
    background: #4509d3;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
}

aside .cart-field .fn-contact-us-area {
    font-size: 13px;
    margin-bottom: 3px;
    line-height: 14px;
    text-align: center;
}

aside .cart-field a {
    text-decoration: none;
    color: #36c;
    text-decoration: none;
}

aside .whatsapp-area {
    margin-bottom: 20px;
}

.pc-mode-block {
    display: block !important;
}

.whatsapp-area .whatsapp-title {
    text-align: center;
    padding-bottom: 5px;
    font-size: 13px;
    font-weight: bold;
}

.whatsapp-area .whatsapp-banner-link {
    text-decoration: none;
}

aside .whatsapp-area .whatsapp-banner-link .whatsapp-banner {
    padding: 0 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25D366;
    border-radius: 4px;
    height: 64px;
}

.whatsapp-area .whatsapp-banner-link .whatsapp-banner .banner-left {
    padding-right: 8px;
}

.whatsapp-area .whatsapp-banner-link .whatsapp-banner .banner-right {
    color: #fff;
    font-size: 11px;
    line-height: initial;
}

.mb30 {
    margin-bottom: 30px;
}

aside .optional-field .price-cal {
    background: #f7f7f7;
    border: 1px solid #e7e7e7;
    padding: 16px 20px;
}

aside .optional-field .price-cal p {
    font-size: 13px;
    color: #747474;
    margin-bottom: 10px;
}

aside .optional-field .price-cal select {
    height: 40px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #cecece;
    outline: none;
    width: 100%;
    background: #FFF;
    font-size: 12px;
    padding: 5px;
    line-height: 1.8;
    border-radius: 3px;
}

aside .optional-field .price-cal .table-shipping.active {
    background: #fef4ea;
    border-style: solid;
    border-width: 1px;
    border-color: #e66b00;
}

aside .optional-field .price-cal .table-shipping {
    background: #fff;
    margin-bottom: 10px;
    padding: 8px 15px 8px 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #e9e9e9;
    border-radius: 5px;
    display: block;
}

aside .optional-field .price-cal .table-shipping th {
    vertical-align: top;
    color: transparent;
    background: transparent;
}

input[type="radio"],
input[type="checkbox"] {
    /* vertical-align: middle; */
    margin-right: 10px;
}

aside .optional-field .price-cal .table-shipping .calculator-title {
    width: 100%;
    font-size: 11px;
    font-weight: bold;
}

aside .optional-field .price-cal .table-shipping td {
    font-size: 13px;
}

aside .optional-field .price-cal .table-shipping td p {
    margin-bottom: 6px;
}

aside .optional-field .price-cal p {
    font-size: 14px;
    color: #747474;
    margin-bottom: 10px;
}

aside .optional-field .price-cal .table-shipping .text-review {
    padding: 1px 5px;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    background: #e66b00;
    border-radius: 2px;
}

aside .optional-field .price-cal .table-shipping .text-price {
    font-size: 12px;
    font-weight: bold;
}

.right {
    float: right;
}

aside .optional-field .btn-cart-wrap.btn-cart-shipping {
    border: 1px solid #f9cca3;
    background: #fef4ea;
    border-radius: 0 0 5px 5px;
    padding: 20px;
}

aside .optional-field .btn-cart-wrap.btn-cart-shipping .btn-cart {
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    padding: 0;
}








/* ||||||||||||||||||| AUTO BODY |||||||||||||||||| */



.Auto_section {
    width: 100%;
    position: relative;
}

article {
    width: 100%;
}

.entries.tile-type {
    margin: 20px 0;
}

.entries {
    display: none;
    text-align: left;
}

.clearfix {
    overflow: hidden;
}

.entries .inner {
    display: block;
    flex-flow: row wrap;
    justify-content: flex-start;
    justify-content: space-between;
    float: left;



    /* display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    justify-content: space-between;*/
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.Auto_section .item-similar-and-related-items .entry {
    margin-right: 0;
}

.item-similar-and-related-items .entry {
    /*  width: 14%;*/
    width: 15.4%;
}

.entry .thumbnail-block {
    width: 100%;
    max-width: 125px;
    margin: 0 auto;
}

.entries.tile-type .entry a {
    text-decoration: none;
    line-height: 1.6;
    height: 100%;
    color: #36c;
}

.entry .fn-image-resize-section {
    margin-bottom: 5px;
}

.entries .thumbnail-block .fn-image-resize-image-wrapper img {
    max-width: 135px;
    max-height: 135px;
}

.item-detail-block {
    line-height: 1.4em;
}

.entries.tile-type .entry a p {
    margin-bottom: 0;
    text-decoration: none;
}

.text-used-gray {
    font-size: 12px;
    color: #888;
}

.entries.tile-type .entry .item-name {
    margin-bottom: 2px;
}

.item-detail-block .item-name {
    font-weight: normal !important;
}

.entries.tile-type .entry .item-name h3 {
    height: 67px;
    font-size: 10px;
    overflow: hidden;
}

.entries.tile-type .entry .item-name h3.title-rest {
    position: absolute;
    display: none;
    height: auto;
}

.entries.tile-type .entry .item-name h3 {
    height: 67px;
    overflow: hidden;
}

.entries.tile-type .entry .item-price {
    font-size: 11px;
    margin-bottom: 0;
}

.item-price .tile-price.tile-price-save {
    color: #d93005;
}

.text-save-small {
    font-size: 11px;
    color: #d93005;
}

.entries.tile-type .entry .orig-price-area .left {
    margin-bottom: 4px !important;
    font-size: 11px;
}

.text-gray-505050 {
    color: #505050;
}

.entry .orig-price-area .is-off-price {
    margin-left: 6px;
    line-height: 13px;
    font-size: 100%;
    color: #666666;
}

.entry .icon-block-area {
    max-width: 125px;
    margin: 0 auto;
}

.entries.tile-type .entry a {
    text-decoration: none;
    line-height: 1;
    width: 100%;
    height: 100%;
}

.icon-block-area .icon-block-tile .exa-icon-text {
    box-sizing: border-box;
    width: 100%;
    padding: 3px 2px 3px 2px;
    font-family: Arial;
    font-size: 12px;
    color: white;
    line-height: 12px;
    text-align: center;
    word-wrap: break-word;
    background-color: black;
    border: 0;
    border-radius: 2px;
    vertical-align: middle;
    color: #ededed;
    background-color: #ff2a1a;
    margin-bottom: 5px;
}

.Auto_Red {
    width: 100%;
    margin-top: 20px;
}

.customer-reviews.detail {
    margin: 0 0 20px;
    position: relative;
}

.customer-reviews .contents-wrap .score-reviews-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contents-wrap .score-reviews-wrap .score-reviews {
    padding: 2px 0 10px;
}

.customer-reviews .contents-wrap .score-reviews-wrap .score-reviews .score {
    display: inline-block;
    margin: 10px 5px 0 0;
    color: gold;
}

.contents-wrap .score-reviews-wrap .score-reviews .all-reviews {
    line-height: 1.2;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.contents-wrap .score-reviews-wrap .yotpo-logo-title a {
    position: relative;
    text-align: right;
    text-decoration: none;
    padding-right: 1px;
    margin-top: 5px;
}

.customer-reviews .contents-wrap hr {
    height: 1px;
    margin-bottom: 0;
    border: 0 none;
    background-color: #ccc;
    color: #ccc;
}

.customer-reviews .contents-wrap .yotpo-site-review {
    margin-top: 20px;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.contents-wrap .yotpo-site-review .review-item-wrap .pc-review-images {
    width: 20%;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell {
    width: 100%;
    padding: 0 0 15px 12px;
    line-height: 1.4;
    font-size: 15px;
    color: #000;
}

.contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .reviewer .reviewer-name {
    font-size: 15px;
    font-weight: bold;
}

.score {
    color: gold;
}

.contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents {
    margin-bottom: 10px;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents .name {
    margin: 4px 0 6px;
    color: #666;
}

.yotpo-site-review .review-item-wrap .review-comment-cell .review-contents .date {
    color: #666;
    font-weight: bold;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents .sp-review-images {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 8px 0;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents .type {
    color: #c45500;
    font-weight: bold;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents .review-text {
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 15px;
}

.review-text {
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 13px;
}

.review-comment-cell .review-contents .review-item {
    color: #666;
}

.review-contents .review-item a {
    font-weight: bold;
    color: #36c;
    text-decoration: none;
}

.review-comment-cell .review-share {
    float: left;
    color: #333;
}







/* \\\\\\\\\\\\\\\ Media Quries ///////////// */




@media screen and (max-width:767px) {
    .Auto_prnt {
        display: block;
    }

    .auto_child {
        width: 100%;
        margin-left: 10px;
        margin-right: 10px;
    }

    .Auto_section {
        width: 100%;
    }

    .nmp {
        margin: 0 15px !important;
        padding: 0 15px !important;
    }

    .entries.tile-type .entry {
        min-width: 163px;
    }
}







/* \\\\\\\\\\\\\\\ Login ///////////// */

.whtbg {
    background: #848484 !important;
    padding-bottom: 6px;
}

.body {
    background: #848484;
}

.content-header h1,
h1 {
    font-size: 1.0rem;
}

.is-login-page {
    margin-bottom: 60px;
}

.content-wrap {
    min-height: 500px;
    margin: 40px 0;
}

#content {
    max-width: 380px;
    margin: 0 auto;
    border-radius: 4px;
    box-sizing: border-box;
    position: relative;
    padding: 30px;
    background: #fff;
}

#content.is-login-page .buynow-info-area {
    text-align: center;
    line-height: 1.2;
    padding: 16px 0;
    margin-bottom: 15px;
    border: 1px solid #E0E0E0;
}

#content.is-login-page .buynow-info-area .info-text {
    margin-bottom: 5px;
    color: #333;
    font-size: 12px;
}

#content.is-login-page .buynow-info-area .buynow-text {
    font-size: 16px;
    font-weight: bold;
}

.content-header {
    font-size: 10px;
    /* font-weight: bold; */
}

.content-body .form-row {
    margin: 16px 0 0;
}

.content-body .form-item-name {
    padding: 4px 0;
    color: #666;
    font-size: 13px;
}

.content-body .form-item-input input {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 8px 6px;
    color: #555;
    font-size: 1.6em;
    outline: none;
    line-height: 40px;
    background: #fff;
    border-style: solid;
    border-width: 1px;
    border-color: #cecece;
    border-radius: 4px;
}

.content-body .form-item-name .forgot-password {
    float: right;
}

.content-body .form-item-name .forgot-password a {
    color: #36c;
    text-decoration: none;
    font-weight: normal;
}

.content-body .reveal-password {
    margin: 6px 0 0;
    text-align: right;
}

.content-body .reveal-password label {
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.content-body .form-action {
    margin: 20px 0 0;
}

.content-body .form-action .bf-btn {
    margin: 0;
}

.bf-btn-fluid {
    height: auto;
    line-height: 1;
    padding: 17px 0;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.bf-btn-primary {
    color: #FFF;
    background-color: #4509d3;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    letter-spacing: 0.03em;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 5px;
}

.content-footer .create-account-nav {
    margin: 30px 0 0;
}

.content-footer .create-account-nav .headline {
    font-size: 18px;
    font-weight: bold;
}

.content-footer .create-account-nav .button-wrap {
    margin: 16px 0 0;
}


.bf-btn-secondry {
    display: inline-block;
    margin: 6px 0;
    padding: 0 26px;
    height: 40px;
    line-height: 40px;
    color: #555;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.03em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    background: #e0e0e0;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    outline: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    overflow: hidden;
}

.content-footer .create-account-nav .description {
    margin: 12px 0 0;
    color: #666;
    font-size: 12px;
    text-align: center;
}





/* \\\\\\\\\\\\\\\ Signup ///////////// */


#content.is-signup-page {
    padding: 25px 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#content {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 0px;
    border-radius: 4px;
    float: left;
    margin-bottom: 60px;
}

.content-body .form-item-input input[type="password"] {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 8px 6px;
    color: #555;
    font-size: 10px;
    line-height: 40px;
    background: #fff;
    border-style: solid;
    border-width: 1px;
    border-color: #cecece;
    border-radius: 4px;
}

.content-body .wishlist-select select {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url(/img/select-down.png);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: right center;
    background-position: right 4px bottom 7px;
    width: 100%;
    height: 40px;
    margin: 4px 0 0;
    padding: 0 0 0 6px;
}

.content-footer .other-act-nav p {
    margin: 20px 0 0;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

#recaptcha-text {
    font-size: 10px;
    color: gray;
}

.content-footer .other-act-nav p.opt-in-option {
    margin: 10px 0 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #aaa;
}

.content-footer .other-act-nav .opt-in-login {
    font-size: 15px;
}

a {
    text-decoration: none;
}






/* \\\\\\\\\\\\\\\ Spare Parts ///////////// */


.default-template #global-main .left-side-contents #global-side {
    float: none;
    width: 100%;
    padding: 0;
}

#global-side,
#global-side-sp {
    position: relative;
}

.left-side-contents #global-side nav {
    margin: 0;
}

.left-side-contents #global-side nav {
    border-top: none;
}

#global-side nav section {
    margin: 0 0 10px;
}

#global-side nav section .title {
    position: relative;
    padding: 10px 0 10px 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    border-bottom: 1px solid #4509d3;
}

#global-side nav section.side-nav-vehicle .inner {
    padding: 5px 10px 25px;
}

#global-side nav section .inner {
    background: #f7f7f7;
}

#global-side nav section.side-nav-vehicle .form-vehicle select {
    height: 36px;
    margin-top: 10px;
    width: 100%;
    font-size: 14px;
    padding: 0 3px;
}

#global-side nav section.side-nav-vehicle .form-vehicle .btn-orange {
    width: 100%;
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
}

.btn-orange {
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    margin: 0;
    line-height: 1;
    text-decoration: none;
    outline: none;
    padding: 10px 20px;
    background: #4509d3;
    color: #fff;
    font-size: 12px;
    letter-spacing: normal;
    -webkit-appearance: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#page-top .left-side-contents #global-side nav section.side-nav-category .inner {
    padding: 15px 3px 15px 15px;
}

#global-side nav section.side-nav-category .fn-accordion {
    margin-bottom: 5px;
    border-bottom: 1px solid #e7e7e7;
}

#global-side nav section ul li {
    font-size: 12px;
    vertical-align: middle;
}

.list li {
    margin-bottom: 3px;
}

.list .list-parent {
    margin-bottom: 3px;
    position: relative;
}

#global-side nav .parent-category p {
    font-size: 11px;
}

.list .list-parent {
    margin-bottom: 3px;
    position: relative;
}

#global-side nav section ul li .list-parent .arrow {
    border-width: 4px 4px 0 4px;
    border-color: #4509d3 transparent transparent transparent;
    border-style: solid;
    width: 0;
    height: 0;
    display: inline-block;
}

#global-main .left-side-contents .side-section.create-account-banner {
    position: relative;
}

#global-main .left-side-contents .side-section {
    margin-bottom: 20px;
}

.list .list-child {
    display: none;
}

#global-side nav section ul li .list-child {
    padding: 0 0 0 18px
}

#global-side nav section ul li {
    font-size: 12px;
    vertical-align: middle;
}

.list li:last-child {
    margin-bottom: 0;
}

#global-side nav section ul li a {
    font-weight: bold;
    text-decoration: none;
    color: #36c;
}

#global-side nav section ul li .arrow {
    margin-right: 5px;
    border-style: solid;
    width: 0;
    height: 0;
    display: inline-block;
}

#global-main .left-side-contents .side-section.create-account-banner a {
    display: block;
}

#global-main .left-side-contents .side-section.create-account-banner a img {
    width: 100%;
    vertical-align: bottom;
}

#global-main .left-side-contents .side-section.create-account-banner a .earn-point {
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 260px;
    border: 1px solid #E66B00;
    border-top: none;
    box-sizing: border-box;
}

#global-main .left-side-contents .side-section.create-account-banner a img {
    width: 100%;
    vertical-align: bottom;
}


#page-top .contents-header .seo-header {
    margin: 0;
    color: #4509d3 !important;
    font-size: 10px !important;
}

#page-top .contents-header .seo-header h1,
#page-electronics-top .contents-header .seo-header h1 {
    line-height: 1;
    padding-bottom: 10px;
}

.main_spare {
    width: 100%;
    height: 25vh;
    padding-top: 20px;
}

#global-main .main-contents {
    position: relative;
}

.label-lead-underline {
    vertical-align: bottom;
    line-height: 1;
    border-bottom: 1px solid #4509d3;
    position: relative;
}



.label-lead-underline .title {
    /* border-bottom: 2px solid #4509d3; */

    display: inline-block;
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
}

#global-main #genuine-parts-search-widget {
    margin-bottom: 30px;
}

#global-main #genuine-parts-search-widget .widget-inner {
    display: flex;
    background: #F7F7F7;
}

#global-main #genuine-parts-search-widget .genuine-parts-search-form {
    overflow: hidden;
    width: 50%;
    padding: 16px 20px 10px;
}

#global-main #genuine-parts-search-widget .genuine-parts-search-form h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 7px;
}

#global-main #genuine-parts-search-widget .genuine-parts-search-form form {
    width: 100%;
}

#global-main #genuine-parts-search-widget .genuine-parts-search-form form input {
    float: left;
    width: 70%;
    height: 36px;
    padding: 12px 10px;
    font-size: 12px;
    border: 1px solid #4509d3;
    border-radius: 4px 0 0 4px;
    box-sizing: border-box;
}

#global-main #genuine-parts-search-widget .genuine-parts-search-form form button {
    float: left;
    height: 36px;
    width: 30%;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
}

#global-main #genuine-parts-search-widget .genuine-parts-text-area {
    padding: 20px 20px 10px;
    width: 50%;
}

#global-main #genuine-parts-search-widget .genuine-parts-text-area h4 {
    font-size: 12px;
    font-weight: bold;
}

section p:last-child {
    margin-bottom: 0;
    font-size: 11px;
}

#page-top .main-contents .autoparts-catalog {
    position: relative;
}

#page-top #global-main #diagram-search-widget {
    margin-bottom: 22px;
}

#page-top #global-main #diagram-search-widget .diagram-search-widget-inner {
    background: #F7F7F7;
    border: none;
    display: flex;
    height: max-content;
    border-radius: unset;
}

#page-top #global-main #diagram-search-widget .diagram-search-widget-inner .diagram-search-form {
    display: flex;
    width: 100%;
}

.daigram_child {
    width: 50%;
    padding: 0px 10px;
}

#diagram-search-widget .catalog-maker {
    width: 100%;
    /* height: 100px; */
}

#page-top #global-main #diagram-search-widget h3,
#page-testimonials #global-main #diagram-search-widget h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #505050;
}

#diagram-search-widget .catalog-maker .maker-list {
    display: flex;
    width: 100%;
    margin: 0;
}

#diagram-search-widget .catalog-maker .maker-list li {
    margin-left: 2%;
}

#diagram-search-widget .catalog-maker .maker-list li a {
    display: block;
    padding: 10px;
    text-align: center;
    background: gray;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ViZWJlYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background: -moz-linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    background: -webkit-linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    background: linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    border-style: solid;
    border-width: 1px;
    border-color: #e4e4e4;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}



#page-top #global-main #diagram-search-widget .diagram-search-form form input:disabled,
#page-testimonials #global-main #diagram-search-widget .diagram-search-form form input:disabled {
    background-color: #EEE;
    border-color: #e4e4e4;
}

.daigram_child form {
    width: 100%;
}

#page-top #global-main #diagram-search-widget .diagram-search-form form input {
    width: 70%;
    height: 36px;
    font-size: 14px;
    line-height: 13px;
}

#diagram-search-widget .diagram-search-form form input {
    box-sizing: border-box;
    float: left;
    height: 40px;
    padding: 12px 10px;
    font-size: 16px;
    border-style: solid;
    border: 1px solid #4509d3;
    border-radius: 4px 0 0 4px;
}

.btn-orange:disabled {
    background: #4509d3;
    color: #fff;
    cursor: default;
}

#diagram-search-widget .diagram-search-form form button {
    box-sizing: border-box;
    float: left;
    width: 30%;
    height: 40px;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
}

.btn-orange:disabled {
    color: #fff;
    background: #4509d3;
    cursor: default;
}

.btn-orange {
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    margin: 0;
    line-height: 1;
    text-decoration: none;
    outline: none;
    height: 37px !important;
    /* padding: 10px 20px; */
    background: #4509d3;
    color: #fff;
    font-size: 12px;
    letter-spacing: normal;
    border-radius: 5px;
    box-sizing: border-box;
}

#diagram-search-widget .diagram-search-form .message.error-message {
    color: #e00;
    width: 100%;
    font-size: 13px;
}

#page-top #global-main #diagram-search-widget .diagram-search-nav {
    float: right;
    width: 100%;
    padding: 10px 0;
}

#diagram-search-widget .diagram-search-form .diagram-search-nav .exsample-link {
    float: right;
    margin-bottom: 0;
}

#page-top #global-main #diagram-search-widget .diagram-search-nav .exsample-link {
    font-size: 13px;
    margin-right: 0;
}

#page-top #global-main #diagram-search-widget .diagram-search-nav .exsample-link a.is-visible {
    display: inline;
}

#page-top #global-main #diagram-search-widget .diagram-search-nav .exsample-link a {
    display: none;
}



.most-popular-categories {
    margin-bottom: 20px;
    width: 100%;
}

.most-popular-categories .tabs {
    display: flex;
    align-items: end;
    width: 100%;
    margin-bottom: 20px;
}

.most-popular-categories .tabs .tab-active.tab-most-popular {
    background-image: url(./img/download5.png);

}

.most-popular-categories .tabs .tab-most-popular {
    background-image: url(./img/download5.png);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position-x: 10px;
    background-position-y: 10px;
}

.most-popular-categories .tabs .tab-active {
    border-bottom: 2px solid #4509d3 !important;
}

.most-popular-categories .tabs .tab-most-popular p {
    transform: translateX(5px);
}

.most-popular-categories .tabs .tab-active p {
    color: #4509d3 !important;
}

.most-popular-categories .tabs .tab p {
    color: #505050;
    font-size: 14px;
    font-weight: bold;
    line-height: initial;
    text-align: center;
}

.most-popular-categories .tabs .tab {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px 10px;
    border-bottom: 2.5px solid #D8D8D8;
    width: 15%;
    height: 30px;
    cursor: pointer;
}

.most-popular-categories .tabs .tab:hover {
    border-bottom: 2px solid #4509d3;
    color: #4509d3 !important;
}

.most-popular-categories .tabs .tab p:hover {
    color: #4509d3 !important;
}


.most-popular-categories .active {
    display: flex;
}


.most-popular-categories .categories {
    flex-wrap: wrap;
}

.most-popular-categories .categories .category-area {
    display: block;
    margin-right: 20px;
    width: 23.3%;
    box-sizing: border-box;
}

.most-popular-categories .categories .category-area .most-popular-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.most-popular-categories .categories .category-area .most-popular-link .category .category-img {
    margin-bottom: 7px;
    height: 109px;
}

.most-popular-categories .categories .category-area .most-popular-link .category .category-img img {
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.most-popular-categories .categories .category-area .most-popular-link .category .category-title {
    margin-bottom: 20px;
}

.most-popular-categories .categories .category-area .most-popular-link .category .category-title p {
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
}


.most-popular-categories .lightings {
    margin-left: 20px;
}





#page-top .main-contents .popular-categories {
    margin: 0 0 22px;
}

#page-top .main-contents .popular-categories .inner {
    margin: 20px 0 0;
}

#page-top .main-contents .popular-categories .inner>ul {
    overflow: hidden;
}

#page-top .main-contents .popular-categories .inner>ul>li.col3-categories {
    width: 100%;
}

#page-top .main-contents .popular-categories .inner>ul>li.col3-categories {
    font-size: 12px;
    vertical-align: middle;
}

#page-top .main-contents .popular-categories .inner>ul>li {
    box-sizing: border-box;
    float: left;
    padding: 0 0 0 20px;
    margin-bottom: 16px;
}

#page-top .main-contents .popular-categories .inner>ul>li>h3 {
    margin: 0 0 16px;
    color: #505050;
    font-size: 15px;
    font-weight: bold;
    border-bottom: solid 1px #ccc;
}

#page-top .main-contents .popular-categories .inner>ul>li.col3-categories>ul {
    box-sizing: border-box;
    float: left;
    width: 33%;
    padding: 0 0 0 10px;
}

#page-top .main-contents .popular-categories .inner ul li {
    font-size: 12px;
    vertical-align: middle;
}

.list li {
    margin-bottom: 3px;
}

.list .list-parent {
    margin-bottom: 3px;
    position: relative;
}

.link-black a {
    color: #505050;
    text-decoration: none;
}

#page-top .main-contents .popular-categories .inner ul li .arrow.accordion-arrow {
    border-width: 4px 4px 0 4px;
    border-color: #4509d3 transparent transparent transparent;
    border-style: solid;
    width: 0;
    height: 0;
    display: inline-block;
}

#page-top .main-contents .popular-categories .inner ul li .list-child {
    padding: 0 0 0 10px;
}

#page-top .main-contents .popular-categories .inner ul li .arrow {
    margin-right: 5px;
    border-width: 4px 0 4px 4px;
    border-color: transparent transparent transparent #4509d3;
    border-style: solid;
    width: 0;
    height: 0;
    display: inline-block;
}

#page-top .main-contents .popular-categories .inner>ul>li .form-min {
    margin: 10px 0 0 10px;
}

.form-min {
    font-size: 11px;
}

.form-min input[type="text"] {
    width: auto;
    font-size: 11px;
    padding: 0 3px;
    max-width: 60px;
}

#page-top .main-contents .popular-categories .inner>ul>li {
    box-sizing: border-box;
    float: left;
    width: 33%;
    padding: 0 0 0 20px;
    margin-bottom: 16px;
}

.btn-min {
    font-size: 11px;
    padding: 5px 10px;
}

input[type="text"] {
    border: 1px solid #cecece;
    outline: none;
    padding: 2px 5px;
    width: 100%;
    background: #FFF;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 1.8;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.btn-lblue {
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    margin: 0;
    line-height: 1;
    text-decoration: none;
    outline: none;
    padding: 5px 20px;
    background: #4a93e4;
    color: #fff;
    font-size: 12px;
    letter-spacing: normal;
    -webkit-appearance: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.link-black a {
    color: #505050;
    text-decoration: none;
}

#page-top .main-contents .popular-categories .inner ul li img {
    margin-right: 5px;
    width: 20px;
}

#global-main .order-of-makes {
    margin-bottom: 40px;
}

#global-main .order-of-makes ul {
    overflow: hidden;
    margin: 0 0 0 -10px;
    padding: 0 0 4px;
}

#global-main .order-of-makes ul li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 12.5%;
    margin: 10px 0 0 0;
    padding: 0 0 0 10px;
}

.engine-type {
    float: left;
    width: 100%;
}

#page-top .main-contents .hot-engines {
    float: left;
    width: 100%;
    margin: 0 0 0px;
}

.engine-type ul {
    float: left;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
}

.engine-type ul li:first-child {
    padding-left: 0 !important;
}

#global-main .order-of-makes ul li a {
    display: block;
    padding: 30px;
    text-align: center;
    background: gray;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ViZWJlYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #ebebeb));
    background: -moz-linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    background: -webkit-linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    background: linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    border-style: solid;
    border-width: 1px;
    border-color: #e4e4e4;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.engine-type ul li {
    box-sizing: border-box;
    float: left;
    width: 12.5% !important;
    margin: 10px 0 0 0;
    padding: 0 0 0 10px;
}

.engine-type ul li a {
    padding: 12px 6px !important;
    display: block;
    color: #36c;
    font-size: 13px;
    word-break: break-all;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    background: gray;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ViZWJlYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #ebebeb));
    background: -moz-linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    background: -webkit-linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    background: linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    border-style: solid;
    border-width: 1px;
    border-color: #e4e4e4;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

#page-top .main-contents .hot-engines li {
    box-sizing: border-box;
    float: left;
    width: 12.5%;
    margin: 10px 0 0 0;
    padding: 0 0 0 10px;
}

#page-top .main-contents .hot-engines li a {
    display: block;
    padding: 12px 0;
    color: #36c;
    font-size: 13px;
    word-break: break-all;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    background: gray;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ViZWJlYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #ebebeb));
    background: -moz-linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    background: -webkit-linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    background: linear-gradient(#f9f9f9 0%, #ebebeb 100%);
    border-style: solid;
    border-width: 1px;
    border-color: #e4e4e4;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

#page-top .main-contents .pickup-list .see-more-link {
    display: inline-block;
    float: right;
    margin-top: 17px;
    font-size: 13px;
}

/* #page-top .main-contents .pickup-list .pickup-items{
    font-size: 0;
} */

#page-top .pickup-items {
    /* display: flex !important; */
    /* justify-content: space-between; */
}

.entries.tile-type {
    margin: 20px 0;
}

.entries {
    text-align: left;
}

#page-top .main-contents .pickup-list .pickup-items .entry {
    font-size: 12px;
    display: inline-block;
    height: auto;
}

.entries.tile-type .entry:hover {
    background: #e5e5e5;
}

.entries.tile-type .entry {
    box-shadow: 1px 1px 3px 0 #f2f2f2;
    border-radius: 3px;
    margin-bottom: 20px;
    transition: all .34s linear;
    padding: 8px 8px 8px;
}

/*element {
  margin-right: 0 !important;
  float: right;
}*/
.entries.tile-type .entry {
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: space-between;
    position: relative;
    text-align: left;
    margin-right: 1.5%;
    vertical-align: top;
    min-width: 171px;

    word-wrap: break-word !important;
    border: 1px solid #e5e5e5;
}

.entries .thumbnail-block {
    width: 80% !important;
    display: block;
}

.entries.tile-type .entry a {
    text-decoration: none;
    line-height: 1.6 !important;
    height: 100% !important;
}

#page-top .main-contents .pickup-list .pickup-items .fn-resizable-recently {
    height: 101px !important;
}

.entries.tile-type .entry .fn-image-resize-section {
    margin-bottom: 5px !important;
}

.entries.tile-type .entry .fn-image-resize-section .fn-image-resize-inner {
    text-align: center;
}

.entries .thumbnail-block .fn-image-resize-image-wrapper img {
    width: auto;
    max-width: 100%;
}


.item-detail-block {
    line-height: 1.4em !important;
}

.entries.tile-type .entry a p {
    margin-bottom: 0;
    text-decoration: none;
}

.text-used-gray {
    font-size: 12px;
    color: #888;
}

.entries.tile-type .entry .item-name {
    margin-bottom: 2px;
}

.item-detail-block .item-name {
    font-weight: normal;
}

.entries.tile-type .entry .item-name h3 {
    height: 67px;
    font-weight: 100;
    overflow: hidden;
}

.entries.tile-type .entry .item-name h3:hover {
    text-decoration: underline;
}

.entries.tile-type .entry .item-price {
    display: inline-block;
    margin-bottom: 0;
}

.item-price .tile-price.tile-price-save {
    color: #d93005;
}

.item-price .tile-price {
    font-weight: bold;
    font-size: 100%;
}

.text-save-small {
    font-size: 11px;
    color: #d93005;
}

.Spare_tag {
    width: 100%;
    background: transparent;
}

.entries.tile-type .entry .Spare_tag .left {
    background: transparent;
    margin-bottom: 4px !important;
    font-size: 11px;
    padding: 0;
    width: auto !important;
}

.text-gray-505050 {
    color: #fff;
}

.entries.tile-type .entry .Spare_tag .is-off-price {
    /* display: inline-block; */
    margin-left: 6px;
    float: left;
    line-height: 13px;
    font-size: 100%;
    color: #666666;
}

#page-top .main-contents .pickup-list .pickup-items .entry .icon-btn-wrapper {
    position: relative;
}

section p {
    margin-bottom: 10px;
}

.entries.tile-type .entry .icon-btn-wrapper .icon-block-area .icon-block-tile .exa-icon-text {
    box-sizing: border-box;
    width: 100%;
    padding: 3px 2px 3px 2px;
    font-family: Arial;
    font-size: 12px;
    color: white;
    line-height: 12px;
    text-align: center;
    word-wrap: break-word;
    background-color: black;
    border: 0;
    border-radius: 2px;
    vertical-align: middle;
}

#page-top .main-contents .pickup-list .pickup-items .entry .icon-btn-wrapper .link-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
}


#global-main .main-contents {
    position: relative;
}

#page-top .main-contents {
    padding: 0;
}

#page-top .main-contents .about-beforward {
    margin-top: 40px;
    margin-bottom: 20px;
}

aside {
    display: block;
}


#page-top .main-contents .about-beforward .render {
    color: #838383;
}

.render section {
    margin-top: 20px;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.render p:last-child {
    margin-bottom: 0;
}

.c-red-t {
    color: #cc1212;
}

#page-top .main-contents .about-beforward .render header,
#page-electronics-top .main-contents .about-beforward .render header {
    color: #505050;
}

.render ul,
.render ol {
    margin-left: 20px;
    list-style: disc;
    font-size: 12px;
}

::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}

#page-top .sns-top {
    padding-right: 260px;
}

#page-top .sns-list,
#page-electronics-top .sns-list {
    margin: 0 0 0 30px;
    line-height: 0;
}

.list-center li {
    margin: 0 15px;
    font-size: 50px;
    display: inline-block;
}






.customer-reviews {
    margin: 40px 0 20px;
}

.customer-reviews .label-lead-underline .view-more-link {
    display: block;
    float: right;
    margin-top: 7px;
    font-size: 13px;
}

.customer-reviews .contents-wrap .score-reviews-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-reviews .contents-wrap .score-reviews-wrap .score-reviews {
    padding: 2px 0 10px;
}

.customer-reviews .contents-wrap .score-reviews-wrap .score-reviews .all-reviews {
    line-height: 1.2;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

a {
    color: #36c;
}

.customer-reviews .contents-wrap .score-reviews-wrap .yotpo-logo-title {
    position: relative;
    width: auto;
    text-align: right;
    padding-right: 51px;
    margin-top: 5px;
}

.customer-reviews .contents-wrap .score-reviews-wrap .yotpo-logo-title a {
    font-size: 14px;
    text-decoration: none;
}

.customer-reviews .contents-wrap .score-reviews-wrap .yotpo-logo-title::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 52%;
    transform: translateY(-50%);
    display: inline-block;
    width: 44px;
    height: 14px;
    background-image: url(./img/Yotpo_Logo-removebg-preview.png);
    background-repeat: no-repeat;
    background-size: 44px 24px;
    background-position: center;
}

.customer-reviews .contents-wrap .yotpo-site-review {
    margin-top: 20px;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .pc-review-images {
    width: 25%;
    margin-bottom: 20px;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell {
    width: 100%;
    padding: 0 0 15px 12px;
    line-height: 1.4;
    font-size: 15px;
    color: #000;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .reviewer .reviewer-name {
    font-size: 18px;
    font-weight: bold;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .reviewer .flags {
    float: right;
}

.review_score {
    color: #ffd200;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents {
    margin-bottom: 10px;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents .name {
    margin: 4px 0 6px;
    color: #666;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents .review-text {
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 15px;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents .review-item {
    color: #666;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents .review-item a {
    font-weight: bold;
    text-decoration: none;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-contents .review-item a:hover {
    text-decoration: underline;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-share {
    float: left;
    color: #333;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-share .fa-share-from-square {
    margin: 0 4px 0 1px;
    color: #000;
    font-size: 17px;
    cursor: pointer;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-share .share-text {
    margin-right: 10px;
    color: #3366cc;
    cursor: pointer;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-helpful {
    float: right;
    line-height: 1.3;
    cursor: pointer;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-helpful .fa-thumbs-up {
    color: #333;
    margin-right: 5px;
    font-size: 18px;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-helpful .vote-yes {
    color: #3366cc;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .review-helpful .count {
    color: #666666;
    margin-left: 5px;
}

.customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .review-comment-cell .reviewer img {
    float: right;
    width: 30px;
}

#page-top .logo-adjust,
#page-electronics-top .logo-adjust {
    text-align: center;
    margin: 17px 0 -7px -290px;
}

#page-top .logo-adjust .paypal-logo,
#page-electronics-top .logo-adjust .paypal-logo {
    width: 320px;
    height: 82px;
    margin: 10px 0 20px;
    margin-bottom: 150px;
}




















.specs table th {
    font-size: 11px;
    width: 70px;
    padding: 3px 0;
    color: #333;
    line-height: 1;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

.specs table td {
    font-size: 11px;
    width: 70px;
    padding: 3px 0;
    color: #333;
    line-height: 1;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

.quote-details table th,
td {
    font-size: 11px;
    width: 70px;
    padding: 3px 0;
    color: #333;
    line-height: 1;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

.vehicle {
    padding: 6px 0px;
    background: #ededed;
}

.vehicle .name {
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

.info {
    display: table;
    width: 100%;
    margin: 6px 0 0;
}

.order .info .photo {
    display: table-cell;
    width: 140px;
}

.order .info .quote-details {
    display: table-cell;
    padding: 0 0 2px 20px;
    vertical-align: top;
}

.order .info .specs table,
#order-content .content.is-order .info .quote-details table {
    width: 100%;
    margin: -4px 0 0;
}

.order .info .quote-details th {
    width: 84px;
    padding: 3px 0;
    color: #333;
    line-height: 1;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

.order .info .specs td,
#order-content .content.is-order .info .quote-details td {
    padding: 3px 0 3px 4px;
    line-height: 1;
    vertical-align: top;
}

.order .info .specs th,
#order-content .content.is-order .info .quote-details th {
    width: 84px;
    padding: 3px 0;
    color: #333;
    line-height: 1;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

/* \\\\\\\\\\\\\\\Media Quries///////////// */
.inquiry-buttonir {
    margin-left: 0%;
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #4509d3;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    letter-spacing: 0.03em;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 5px;
}

.m_ul1 li:nth-child(1) {
    display: none;
}

@media screen and (max-width:1770px) {
    .cen_input {
        width: 18%;
    }

    .cen_i {
        width: 9%;
    }
}


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

    .main_parent {
        width: 74%;
        margin-left: 13%;
    }

    .main_bar {
        padding-left: 0%;
    }

    .toprgt {
        float: right;
    }

    .main_nav {
        padding-left: 11%;
        padding-right: 11%;
    }

    .foot_prnt {
        width: 100%;
        margin-left: 0%;
    }

    .fotr_line {
        width: 100%;
        margin-left: 0%;
    }

    .footer_parent {
        width: 100%;
        margin-left: 0;
    }

}





@media screen and (max-width:1470px) {
    .toprgt {
        float: right;
    }

    .m_ul1 {
        /*        display: none;*/
    }

    .main_input {
        width: 55%;
    }

    .se_glass {
        right: 23%;
    }

    .main_parent {
        width: 90%;
        margin-left: 5%;
    }

    .faq .faq-container .faq-item {
        width: 100%;
    }
}

@media screen and (max-width:1280px) {

    .main_parent {
        width: 98%;
        margin-top: 10px;
        margin-left: 1%;
    }

    .main_bar {
        padding-left: 0%;
    }

    .main_nav {
        padding-left: 3%;
        padding-right: 3%;
    }

    .foot_prnt {
        margin-left: 0%;
        width: 100%;
    }

    .fotr_line {
        width: 98%;
        margin-left: 1%;
    }

    .footer_parent {
        width: 98%;
        margin-left: 1%;
    }

    .se_glass {
        right: 24%;
    }

    .mian_pera {
        font-size: 15px;
    }

    .prnt_title {
        font-size: 12px;
    }

    .prnt_img {
        width: 20px;
    }

    .prnt_img1 {
        width: 15px;
    }

    .prnt_anker {
        font-size: 10px;
    }

    .cen_lbl {
        font-size: 12px;
    }

    .prnt_acont h2 {
        font-size: 10px;
    }

    .prnt_acont p {
        font-size: 9px;
        line-height: 10px;
    }

    .div_circle {
        font-size: 10px;
        height: auto;
    }

    .prt_btn {
        font-size: .6rem;
        height: 35px;
    }

    .faq .faq-container .faq-item {
        width: 100%;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 500;
        font-size: 15px;
    }

    #search-cars-area .search-cars-items .cars-items-year .from-to {
        width: 100%;
        padding: 3px 3px;
        font-size: 12px;
    }

    .main_box h4 {
        font-size: 20px;
    }
}

@media screen and (max-width:970px) {
    .part_th {
        width: 15%;
    }

    .part_td {
        width: 100%;
    }

    .parts_btn2 {
        width: 96px;
        background: #4509d3;
        color: #fff;
        font-size: 12px;
        border: none;
        margin: 5px;
        padding: 4px;
    }

    .main_nav {
        width: 100%;
        height: 16vh;
    }

    .main_nav1 {
        display: none;
    }

    .fotr_child {
        width: max-content;
        height: max-content;
        width: 25%;
        float: left;
    }

    .footer_parent {
        width: 100%;
        height: max-content;
        display: block;
        justify-content: space-between;
        float: left;

    }

    .footer {
        width: 100%;
        height: max-content;
        padding: 1px;
        background-color: var(--nav-color);
        float: left;
    }

    .cen_lbl {
        font-size: 11px;
    }

    .cen_input {
        font-size: 11px;
        width: 17%;
        /* height: 20px; */
    }

    .cen_i {
        width: 8%;
    }

    .main_box1 {
        height: 10vh;
    }

    .cen_btnss {
        width: 100%;
    }

    .se_glass {
        right: 28%;
    }

    .flow_img {
        width: 20px;
    }

    .part_table tr {
        width: 100%;
        float: left;
    }

    .main_child1 .section {
        padding-top: 0 !important;
        padding-bottom: 0;
    }
}


@media screen and (max-width:767px) {
    .fotr_child {
        width: max-content;
        height: max-content;
        width: 50%;
        float: left;
        min-height: 285px;
        overflow: hidden;
        height: 255px;

    }

    .list-form .left-form select {
        width: 100%;
    }

    .list-form select {
        padding: 3px 3px;
        width: 100%;
        height: 28px;
        border-radius: 4px;
    }

    .footer_parent {
        width: 100%;
        height: max-content;
        display: block;
        justify-content: space-between;
        float: left;

    }

    .footer {
        width: 100%;
        height: max-content;
        padding: 1px;
        background-color: var(--nav-color);
        float: left;
    }

    .footer {
        /*        display: none;*/
    }

    .footer1 {
        display: block;
    }

    .main_child1 {
        display: none !important;
    }

    .main_child2 {
        width: 100%;
    }

    .main_child3 {
        display: none;
    }

    .main_bar {
        display: none;
    }

    /* width */

    .cen_input {
        width: 16%;
    }

    .cen_i {
        width: 9%;
    }

    .main_logo {
        width: 45%;
    }

    .main_nav {
        height: 8vh;
    }

    .mian_pera {
        display: none;
    }

    .cen_div2 span {
        font-size: 12px;
    }

    .cen_icon {
        font-size: 12px;
    }

    .se_glass {
        right: 5%;
    }

    .main_nav1 {
        display: none;
    }

}

@media screen and (max-width:600px) {
    .part_table tr th {
        width: 100%;
        float: left;
    }

    .main_nav {
        height: 8vh;
    }

    #stats {
        padding-top: 0;
    }

    .Cars_input select {
        width: 65%;
        border: 1px solid lightgray;
        background-color: transparent;
        height: 30px;
        position: absolute;
        right: 0;
        top: 15px;
    }

    .car_btn2 {
        width: 60%;
        height: auto;
        margin-top: 20px;
        background-color: #1167a8;
        color: #fff;
        font-weight: bold;
        border: none;
        outline: none;
        margin-left: 20%;
        text-transform: uppercase;
        border-radius: 5px;
        box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.68);
    }

    .cars_title1 {
        color: #393333;
        text-transform: capitalize;
        font-size: 15px;
    }

    .bigbars {
        margin-bottom: 0px;
    }

    .cen_chld {
        width: 19% !important;
    }

}

@media screen and (max-width:500px) {


    .cen_chld {
        width: 32% !important;
    }

}

@media screen and (max-width: 1600px) {
    .entries.tile-type .entry {
        /*    width: 160px;*/
    }

    .form_btn4 {
        width: auto;
        /*  width: 100%;*/
        margin-left: 0%;
        padding-left: 15%;
        padding-right: 15%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media only screen and (min-device-width: 912px) and (max-device-width:1366px) {
    .faq .faq-container .faq-item {
        width: 100%;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 500;
        font-size: 15px;
    }

    #search-cars-area .search-cars-items .cars-items-year .from-to {
        width: 100%;
        padding: 3px 3px;
        font-size: 12px;
    }

    .main_box h4 {
        font-size: 20px;
    }

    .graylong {
        width: 169px !important;
        padding: 0 13px !important;
    }
}

@media screen and (max-width: 1366px) {
    .graylong {
        padding: 0 13px !important;
    }
}

@media screen and (max-width: 1280px) {
    .faq .faq-container .faq-item {
        width: 100%;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 500;
        font-size: 15px;
    }

    #search-cars-area .search-cars-items .cars-items-year .from-to {
        width: 100%;
        padding: 3px 3px;
        font-size: 12px;
    }

    .main_box h4 {
        font-size: 20px;
    }

}

@media screen and (max-width: 1210px) {
    .faq .faq-container .faq-item {
        width: 100%;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 500;
        font-size: 15px;
    }

    #search-cars-area .search-cars-items .cars-items-year .from-to {
        width: 100%;
        padding: 3px 3px;
        font-size: 12px;
    }

    .main_box h4 {
        font-size: 20px;
    }

}

@media screen and (max-width: 1180px) {
    .faq .faq-container .faq-item {
        width: 100%;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 500;
        font-size: 15px;
    }

    #search-cars-area .search-cars-items .cars-items-year .from-to {
        width: 100%;
        padding: 3px 3px;
        font-size: 12px;
    }

    .main_box h4 {
        font-size: 20px;
    }

}

@media screen and (max-width: 1070px) {
    #search-cars-area .search-cars-items .cars-items-year .from-to {
        width: 100%;
        padding: 3px 3px;
    }

    #global-main #genuine-parts-search-widget .genuine-parts-search-form form button {
        font-size: 12px;
        padding: 5px 7px;
    }

    #diagram-search-widget .diagram-search-form form button {
        font-size: 12px;
        padding: 5px 7px;
    }

    .most-popular-categories .tabs .tab p {
        font-size: 10px;
    }

    #global-main .order-of-makes ul li a {
        padding: 20px;
    }

}

@media screen and (max-width:844px) {
    .engine-type ul {
        float: left;
        width: 100%;
        padding-left: 0;
    }

    .engine-type {
        float: left;
        width: 100%;
    }

    .hot-engines {
        float: left;
    }

    .hot-engines {

        padding-bottom: 20px;
        padding-top: 0;
        margin-bottom: 0;

    }

    #list-content .cars-box-stocklist-renewal .stocklist-row .price-col div {
        text-align: center;
    }

    .form_btn3 {
        width: 100% !important;
    }
}

@media screen and (max-width: 767px) {
    .bodyppt {
        display: none;
    }

    .bodyppt2 {
        width: 100% !important;
    }

    .bodyppt2 td {
        width: 100% !important;
        float: left !important;
    }

    .bodyppt2 td button {
        width: 100% !important;
        float: left !important;
        padding: 5px;
    }

    .bodyppt2 td .parts_btn2 {
        margin: 10px 0;
    }


    .bodyppt2 td p {
        text-align: left;
    }

    .cen_li1 {
        font-size: 12px;
        padding-left: 0px;
    }

    .cen_li2 {
        font-size: 12px;
    }

    .fotr_child {
        width: max-content;
        height: max-content;
        width: 50%;
        float: left;
    }

    .footer_parent {
        width: 100%;
        height: max-content;
        display: block;
        justify-content: space-between;
        float: left;

    }

    .footer {
        width: 100%;
        height: max-content;
        padding: 1px;
        background-color: var(--nav-color);
        float: left;
    }

    #global-main #genuine-parts-search-widget .widget-inner {
        display: block;
    }

    #global-main #genuine-parts-search-widget .genuine-parts-search-form {
        width: 100%;
    }

    #page-top #global-main #diagram-search-widget .diagram-search-widget-inner .diagram-search-form {
        display: block;
    }

    .daigram_child {
        width: 100%;
    }

    #page-top .main-contents .popular-categories .inner>ul>li.col3-categories>ul {
        width: 100%;
    }

    #page-top .main-contents .popular-categories .inner>ul>li {
        width: 100%;
    }

    #page-top .main-contents .hot-engines .engine-type li a {
        font-size: 10px;
    }

    #page-top .sns-top {
        padding-right: 160px;
    }

    .customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap {
        display: block;
    }

    .customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .pc-review-images {
        width: 50%;
        margin-left: 25%;
    }



}

@media screen and (max-width: 760px) {
    #diagram-search-widget .catalog-maker .maker-list {
        display: flex;
        width: 100%;
        margin: 0;
        padding-left: 0;
    }

    #list-content .cars-box-stocklist-renewal .stocklist-row .stocklist-col {
        padding-top: 17px;
        padding-bottom: 12px;
        float: left;
        width: 100%;
    }

    #list-content .cars-box-stocklist-renewal .stocklist-row-wrap {
        width: 100%;
        float: left;
    }

    #list-content .results-bottom {
        position: inherit;
        margin: 20px 0 15px;
        text-align: right;
    }

    .new-calculator .select-area {
        max-width: 100%;
        float: left;
        min-width: 100%;
    }

    #list-content .results-bottom .results-items {
        position: inherit;
        top: 0;
        right: 0;
    }

    .faq .faq-container .faq-item {
        width: 100%;
    }

    #search-cars-area #search td.cars-items {
        width: 100% !important;
        padding-top: 10px;
        float: left;
    }

    #search-cars-area .search-cars-items .cars-items-name {
        width: 91px;
        padding-left: 10px;
        background-color: transparent;
    }

    .fmarg {
        margin-left: 0px;
    }

    .fotr_child {
        width: max-content;
        height: max-content;
        width: 33%;
        float: left;
    }

    .footer_parent {
        width: 100%;
        height: max-content;
        display: block;
        justify-content: space-between;
        float: left;

    }

    .footer {
        width: 100%;
        height: max-content;
        padding: 1px;
        background-color: var(--nav-color);
        float: left;
    }

    #stats {
        padding-bottom: 0px;
        padding-top: 0;
    }

    .cars_title1 {
        color: #393333;
        text-transform: capitalize;
        font-size: 16px;
    }

    .cen_chld {
        margin-bottom: 20px;
        height: max-content;
        cursor: pointer;
        float: left;
        margin-right: 4px;
    }

    .cen_prt {
        width: 100%;
        height: max-content;
        margin-top: 20px;
        display: block;
        flex-wrap: wrap;
        padding: 1px;
        justify-content: space-between;
        float: left;
    }

    #global-main #genuine-parts-search-widget .widget-inner {
        display: block;
    }

    #global-main #genuine-parts-search-widget .genuine-parts-search-form {
        width: 100%;
    }

    #page-top #global-main #diagram-search-widget .diagram-search-widget-inner .diagram-search-form {
        display: block;
    }

    .daigram_child {
        width: 100%;
        margin-bottom: 10px;
    }

    #page-top .main-contents .popular-categories .inner>ul>li.col3-categories>ul {
        width: 100%;
    }

    #page-top .main-contents .popular-categories .inner>ul>li {
        width: 100%;
    }

    #page-top .main-contents .hot-engines .engine-type li a {
        font-size: 10px;
    }

    #page-top .sns-top {
        padding-right: 160px;
    }

    .customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap {
        display: block;
    }

    .customer-reviews .contents-wrap .yotpo-site-review .review-item-wrap .pc-review-images {
        width: 50%;
        margin-left: 25%;
    }

    .engine-type ul {
        float: left;
        width: 100%;
        padding-left: 0;
    }

    .engine-type {
        float: left;
        width: 100%;
    }

    .hot-engines {
        float: left;
    }

    #page-top .main-contents .hot-engines .engine-type li {
        width: 32%;
    }

    #search-cars-area .search-cars-items .cars-items-year .from-to {
        width: 46%;
        padding: 3px;
    }

    #search-cars-area .search-cars-items .cars-items-prices select {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .entries .inner {
        display: block !important;
        float: left !important;
    }

    .entries.tile-type .entry {
        float: left !important;
    }

    .fmorig {}

    #page-top .logo-adjust,
    #page-electronics-top .logo-adjust {
        text-align: center;
        margin: 0;
        width: 100%;
        float: left;
    }

    #page-top .logo-adjust .paypal-logo,
    #page-electronics-top .logo-adjust .paypal-logo {
        margin-bottom: 15px;
    }

    .most-popular-categories .tabs {
        display: block;
        align-items: end;
        width: 100%;
        margin-bottom: 20px;
    }

    .most-popular-categories .tabs .tab {
        display: block;
        justify-content: center;
        align-items: center;
        padding: 17px 10px;
        border-bottom: 2.5px solid #D8D8D8;
        width: 100%;
        height: auto;
        cursor: pointer;
    }

    .most-popular-categories .categories .category-area {
        display: block;
        margin-right: 10px;
        width: 47%;
        box-sizing: border-box;
    }

    .main_nav {
        height: 7vh;
        float: left;
    }

    .body5_parent {
        width: 100%;
        display: block;
        border-top: 1px solid lightgray;
        margin-bottom: 0px;
        justify-content: space-between;
        margin-top: 0px;
    }

    .body5_img {
        width: 100%;
        margin-top: 20px;
        height: auto;
        float: left;
    }

    .body5_chd {
        width: 100%;
        float: left;
    }

    .car_btn1 {
        width: auto;
        height: 40px;
        font-weight: bold;
        margin-top: 10px;
        margin-bottom: 10px;
        position: absolute;
        right: 0;
        font-size: 14px;
        background-color: transparent;
    }

    .main_input {
        width: 60%;
        height: 40px;
        font-size: 0.8em;

    }

    .entries .thumbnail-block .fn-image-resize-image-wrapper img {
        max-height: 100%;

    }

    .nmp ul {
        margin: 0 !important;
        padding: 0 20px !important;
    }

    .entries.tile-type .entry .item-price {
        display: inherit;
        margin-bottom: 0;
    }

    .Cars_bar {
        width: 100%;
        height: 100%;
        padding: 5px;
    }

    .foot_logo {
        width: 44%;
    }

    .body5_img {
        width: 100%;
        margin-top: 20px;
        height: auto;
        float: left;
    }

    .body5_parent {
        width: 100%;
        display: block;
    }

    .body5_chd {
        width: 100%;
        float: left;
    }

    .cars_title1 {
        font-size: 17px;
    }

    .entries .thumbnail-block {
        width: 100% !important;
    }

    .entry .thumbnail-block {
        width: 100% !important;
        max-width: 100%;
    }

    .main_spare {
        height: 30vh;
    }

    .most-popular-categories .tabs .tab p {
        font-size: 12px !important;
    }

    #page-top .main-contents .hot-engines .engine-type li a {
        font-size: 8px;
    }

    #global-main .order-of-makes ul li a {
        padding: 10px;
    }

    .entries.tile-type .entry {
        width: 46%;
    }

    #page-top .sns-top {
        padding-right: 0px;
        padding-left: 0;
    }

    .customer-reviews .contents-wrap .score-reviews-wrap {
        display: block;
    }

    #global-main .order-of-makes ul li {
        width: auto;
    }

    .text-thumbnail {
        padding: 10px !important;
    }

    .btn-print {
        position: inherit;
    }

    .pc-mode-block {
        display: block !important;
        margin-top: 0px;
        text-align: left;
        font-size: 11px;
    }

    .item-data .table-simple.table-item th,
    .item-data .table-simple.table-item td {
        font-size: 11px;
        height: 40px;
    }

    .item-data .table-simple.table-item td img {
        width: auto;
        margin-left: 10px;
    }

    #search-button {
        display: none;
    }

    .fserch2 {}

    .fserch {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    #search-cars-area .search-cars-items .cars-items-year .from-to {
        width: 46%;
        padding: 3px;
    }

    .new-calculator td.quotation-area {
        margin-left: 0%;
        width: 100%;
    }

    #stats .row {
        display: block;
    }

    .list-form {
        width: 100%;
    }

    .list-form tr td {
        width: 100% !important;
        float: left;
    }

    .list-form tr {
        width: 100% !important;
        float: left;
    }

    .list-form .left-form {
        width: 100%;
        float: left;
    }

    .list-form .model-td {
        width: 100%;
    }

    .list-form .model-code {
        width: 100%;
    }

    .list-form .fuel-td {
        width: 100%;
    }

    .list-form .search-count-area {
        position: inherit;
        left: 15px;
        line-height: 28px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .list-form .from-to select {
        width: 47%;
    }

    .fmorig {
        float: right;
    }

    .list-form .from-left-to select {
        width: 47%;
    }

    #list-content .results {
        display: block;
        float: left;
        width: 100%;
    }

    .sortbtn-wrapper {
        width: 100%;
        float: left;
    }

    #list-content .results-top .results-controllers {
        float: left;
        width: 100%;
    }

    #list-content .results-items {
        display: inline-block;
        width: 50%;
    }

    #list-content .results-items select {
        width: 100%;
    }

    #list-content .results-sort {
        display: inline-block;
        margin-left: 0px;
        width: 50%;
        float: left;
    }

    #list-content .results-sort select {
        width: 98%;
        font-size: 13px;
    }

    .entries.tile-type .entry {
        width: 148px;
    }

    .autopap {
        width: 100%;
    }

    .nmp {
        margin: auto !important;
        padding: 0 15px !important;
    }

    .entry:nth-child(even) {
        margin-right: 0% !important;
        float: right !important;
    }

    .share-area-content .share-area-button-list {
        margin: 10px 0 !important;
        padding: 0 !important;
    }

    .specification tr {
        float: none;
    }

    .petroltd {
        width: 171px !important;
    }

    #list-content .cars-box-stocklist-renewal .stocklist-row .description-col {
        padding-left: 0px;
        padding-right: 0px;
    }

    #list-content .cars-box-stocklist-renewal .stocklist-row .description-col .table-detailed-spec td {
        font-size: 11px;
        padding: 4px 0 4px 3px;
        word-wrap: break-word;
    }
}

@media screen and (max-width: 500px) {
    .main_logo {
        display: none;
    }

    .main_input {
        width: 100% !important;
    }

    .results-pagination {
        width: 100% !important;
    }

    .results-bottom {
        position: inherit;
        margin: 20px 0 15px;
        text-align: right;
        display: block;
        justify-content: space-between;
        width: 100%;
        float: left;
    }

    .wishlist-bottom {
        border-top: 1px solid #CCCCCC;
        border-bottom: 1px solid #CCCCCC;
        padding: 20px 0;
        overflow: hidden;
        float: left;
        display: none;
        width: 100%;
    }

    .results-items {
        float: left;
        width: 100%;
    }

    #search-cars-area .search-cars-items .cars-items-prices select {
        width: 100%;
    }

    .fom2 {
        width: 45% !important;
        float: right;
        margin-top: 1px;
    }

    .body_Popular {
        width: 100%;
        height: 69px;
        display: block;
        align-items: center;
        margin-top: 20px;
        justify-content: space-between;
        border-top: 2px solid #1e57d9;
    }

    .body_title {
        margin-left: 0;
        color: #333333;
        font-size: 15px;
        width: 100%;
        float: left;
        padding-top: 10px;
    }

    .Body5_akr {
        font-weight: 600;
        text-decoration: none;
        color: #4509d3;
        width: 100%;
        float: left;
    }
}

@media screen and (max-width: 480px) {
    #list-content .cars-box-stocklist-renewal .stocklist-row .description-col .accessories ul {
        padding-left: 16%;
    }

    .btn_clr {
        width: auto;
        height: 40px;
        font-size: 13px;
        padding: 0 12px;
    }

    .btn_clr:hover {

        padding: 0 12px;
    }

    .nav-item a {
        margin: 2px 2px !important;
    }

    .ndm {
        display: none !important;
    }

    .part_parent {
        width: 100%;
        display: block;
        border-bottom: 1px solid lightgray;
        margin-bottom: 20px;
        justify-content: space-between;
        margin-top: 20px;
    }

    .part_table {
        width: 100%;
    }

    .part_table tr {
        width: 100%;
        float: left;
    }

    .part_th1 {
        width: 100%;
        float: left;
    }

    .btn_clr2 {
        width: 32%;
        margin-bottom: 10px;
    }

    .main_input {
        width: 50%;
    }

    .body5_parent {
        width: 100%;
        display: block;
        border-top: 1px solid lightgray;
        margin-bottom: 0px;
        justify-content: space-between;
        margin-top: 0px;
    }

    .body5_img {
        width: 100%;
        margin-top: 20px;
        height: auto;
        float: left;
    }

    .body5_chd {
        width: 100%;
        float: left;
    }

    .car_btn1 {
        width: auto;
        height: 40px;
        font-weight: bold;
        margin-top: 10px;
        margin-bottom: 10px;
        position: absolute;
        right: 0;
        font-size: 14px;
        background-color: transparent;
    }

    .entries .thumbnail-block .fn-image-resize-image-wrapper img {
        max-height: 100%;
    }

    .nmp ul {
        margin: 0 !important;
        padding: 0 20px !important;
    }

    .entries.tile-type .entry .item-price {
        display: inherit;
        margin-bottom: 0;
    }

    .Cars_bar {
        width: 100%;
        height: 100%;
        padding: 5px;
    }

    .foot_logo {
        width: 44%;
    }

    .body5_img {
        width: 100%;
        margin-top: 20px;
        height: auto;
        float: left;
    }

    .body5_parent {
        width: 100%;
        display: block;
    }

    .body5_chd {
        width: 100%;
        float: left;
    }

    .cars_title1 {
        font-size: 17px;
    }

    .entries .thumbnail-block {
        width: 100% !important;
    }

    .entry .thumbnail-block {
        width: 100% !important;
        max-width: 100%;
    }

    .main_spare {
        height: 50vh;
    }

    .most-popular-categories .tabs .tab p {
        font-size: 8px !important;
    }

    #page-top .main-contents .hot-engines .engine-type li a {
        font-size: 8px;
    }

    #global-main .order-of-makes ul li a {
        padding: 10px;
    }

    .entries.tile-type .entry {
        width: 49%;
    }

    #page-top .sns-top {
        padding-right: 60px;
    }

    .customer-reviews .contents-wrap .score-reviews-wrap {
        display: block;
    }

    .main_box1 {
        width: 19%;
        height: 16vh;
        border: 1px solid;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 14px !important;
        height: 7vh;
    }

    .specification th {}

    .specification tr .gray {}

    #mobileshow {
        display: block;
    }

    .sparepartb li {
        width: 32%;
        text-align: center;
    }

    .fotr_child {
        width: max-content;
        height: max-content;
        float: left;
        min-height: 285px;
        overflow: hidden;
        height: 255px;
    }

}

@media screen and (max-width: 412px) {
    .btn_clr {
        width: auto;
        height: 40px;
        font-size: 13px;
        padding: 0 8px;
    }

    .btn_clr:hover {
        padding: 0 8px;
    }

    .btn_clr .active {
        padding: 0 8px;
    }

    .nav-item a {
        margin: 2px 2px;
    }

    .ndm {
        display: none !important;
    }

    .part_parent {
        width: 100%;
        display: block;
        border-bottom: 1px solid lightgray;
        margin-bottom: 20px;
        justify-content: space-between;
        margin-top: 20px;
    }

    .part_table {
        width: 100%;
    }

    .part_table tr {
        width: 100%;
        float: left;
    }

    .part_th1 {
        width: 100%;
        float: left;
    }

    .btn_clr2 {
        width: 32%;
        margin-bottom: 10px;
    }

    .main_input {
        width: 50%;
    }

    .body5_parent {
        width: 100%;
        display: block;
        border-top: 1px solid lightgray;
        margin-bottom: 0px;
        justify-content: space-between;
        margin-top: 0px;
    }

    .body5_img {
        width: 100%;
        margin-top: 20px;
        height: auto;
        float: left;
    }

    .body5_chd {
        width: 100%;
        float: left;
    }

    .car_btn1 {
        width: 100%;
        height: 40px;
        font-weight: bold;
        margin-top: 10px;
        margin-bottom: 10px;
        position: absolute;
        right: 0;
        font-size: 14px;
        background-color: transparent;

        .entries .thumbnail-block .fn-image-resize-image-wrapper img {
            max-height: 100%;
        }

        .nmp ul {
            margin: 0 !important;
            padding: 0 20px !important;
        }

        .entries.tile-type .entry .item-price {
            display: inherit;
            margin-bottom: 0;
        }

        .Cars_bar {
            width: 100%;
            height: 100%;
            padding: 5px;
        }

        .foot_logo {
            width: 44%;
        }

        .body5_img {
            width: 100%;
            margin-top: 20px;
            height: auto;
            float: left;
        }

        .body5_parent {
            width: 100%;
            display: block;
        }

        .body5_chd {
            width: 100%;
            float: left;
        }

        .cars_title1 {
            font-size: 17px;
        }

        .entries .thumbnail-block {
            width: 100% !important;
        }

        .entry .thumbnail-block {
            width: 100% !important;
            max-width: 100%;
        }

        .main_spare {
            height: 50vh;
        }

        .most-popular-categories .tabs .tab p {
            font-size: 8px !important;
        }

        #page-top .main-contents .hot-engines .engine-type li a {
            font-size: 8px;
        }

        #global-main .order-of-makes ul li a {
            padding: 10px;
        }

        .entries.tile-type .entry {
            width: 48%;
        }

        #page-top .sns-top {
            padding-right: 60px;
        }

        .customer-reviews .contents-wrap .score-reviews-wrap {
            display: block;
        }

        .sparepartb li {
            width: 33% !important;
            text-align: center;
        }

        #spmanu {
            display: block !important;
        }

        .fotr_child {
            width: max-content;
            height: max-content;
            width: 50%;
            float: left;
            min-height: 285px;
            overflow: hidden;
            height: 255px;
        }

        #search {
            padding: 14px 10px 15px 10px;
        }

        #list-content .cars-box-stocklist-renewal .stocklist-row .description-col {
            padding-left: 0;
            padding-right: 0;
        }

        .main_nav {
            height: 5vh;
        }
    }

    @media screen and (max-width: 400px) {
        .fom2 {
            width: 46% !important;
            padding: 3px 3px;
            font-size: 12px;
        }

        #search-cars-area .search-cars-items .cars-items-year .from-to {
            width: 44%;
            padding: 3px 3px;
            font-size: 12px;
        }

        .main_nav {
            height: 7vh;
        }

        #search-cars-area #search td.cars-items {
            width: 100% !important;
            padding-top: 10px;
        }

        .faq .faq-container .faq-item {
            width: 100%;
            margin-top: 20px;
        }

        .fmarg {
            margin-left: 0px;
        }

        .cen_box {
            width: 100%;
            display: block;
            float: left;
            margin-bottom: 20px;
        }

        .main_box1 {
            width: 30%;
            float: left;
            margin: 5px;
            height: 6vh;
        }

        .btn_clr {
            width: auto;
            margin-bottom: 5px;
        }

        .btn_clr2 {
            width: 49%;
            height: 40px;
            margin-bottom: 5px;
        }

        .fotr_child {
            width: max-content;
            height: max-content;
            width: 50%;
            float: left;
            min-height: 285px;
            overflow: hidden;
            height: 255px;
        }

        .foot_logo {
            width: 44%;
        }

        .footer_parent {
            width: 100%;
            height: max-content;
            display: block;
            justify-content: space-between;
            float: left;

        }

        .footer {
            width: 100%;
            height: max-content;
            padding: 1px;
            background-color: var(--nav-color);
            float: left;
        }

        .cars_title1 {
            color: #393333;
            text-transform: capitalize;
            font-size: 11px;
            padding: 5px;
        }

        .main_spare {
            height: 33vh;
        }


        .label-lead-underline .title {
            font-size: 15px;
        }

        #global-main .order-of-makes ul li a {
            padding: 5px;
        }

        .entries.tile-type .entry {
            width: 100% !important;
        }

        #page-top .sns-top {
            padding-right: 30px;
        }

        .list-center li {
            font-size: 30px;
        }
    }

    @media screen and (max-width: 360px) {
        .list-form .left-form select {
            width: 100%;
        }

        .list-form .from-left-to select {
            width: 47%;
        }

        .list-form .from-to select {
            width: 47%;
        }

        .list-form select {
            width: 100%;
        }

        .most-popular-categories .categories .category-area {
            display: block;
            margin-right: 10px;
            width: 46%;
            box-sizing: border-box;
        }

        .btn_clr {
            font-size: 11px;
            padding: 0 6px;
        }

        .btn_clr:hover {
            font-size: 11px;
            padding: 0 6px;
        }
    }
