/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    color: #353535;
    font-family: 'calibri';
    font-weight: 400;
    background: #f3f6ff;
}

a {
    color: blue;
}

a:hover,
a:active,
a:focus {
    color: blue;
    outline: none;
    text-decoration: none;
}

h1 {
    font-family: 'calibri';
    font-weight: 900;
}

h2 {
    font-family: 'calibri';
    font-weight: 700;
}

@media(min-width: 992px) {
    .container-fluid {
        padding-right: 60px;
        padding-left: 60px;
    }
}

/**********************************/
/******** Typed Product Name *********/
/**********************************/
.row {
    margin-top: 10px;
}

.row .product-item .productname {
    margin-top: 100px;
    text-align: center;
    font-size: 25px;
    color: blue;
    font-weight: bold;
    font-family: 'calibri';
}

.backimage {
    position: relative;
    /* Required for positioning the pseudo-element */
    width: 300px;
    /* Set a width */
    height: 390px;
    /* Set a height */
    box-sizing: border-box;
    /* Include padding in width and height */
    overflow: hidden;
    /* Ensure content stays within the bounds */
}

.backimage::before {
    content: "";
    /* Necessary for the pseudo-element */
    background: url(../category/backimage/typed.webp) no-repeat center center;
    background-size: cover;
    position: absolute;
    /* Position it absolutely */
    top: 0;
    /* Align to the top */
    left: 0;
    /* Align to the left */
    right: 0;
    /* Stretch to the right */
    bottom: 0;
    /* Stretch to the bottom */
    opacity: 0.5;
    /* Adjust transparency here */
    z-index: 0;
    /* Ensure it sits behind the text */

}

/**********************************/
/******** Back to Top CSS *********/
/**********************************/
.back-to-top {
    position: fixed;
    display: none;
    background: #FF6F61;
    color: #ffffff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 4px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #ffffff;
}

/**********************************/
/********* Form Input CSS *********/
/**********************************/
.form-control,
.custom-select {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    color: #999999;
    border: 1px solid #dddddd;
    margin-bottom: 15px
}

.form-control:focus,
.custom-select:focus {
    box-shadow: none;
    border: 2px solid blue;
    border-radius: 50px;
    text-align: center;
}

.form-control:focus,
.custom-select:focus {
     text-align: left;
     border-radius: 10px;
}

.custom-radio,
.custom-checkbox {
    margin-bottom: 15px;
}

.custom-radio .custom-control-label::before,
.custom-checkbox .custom-control-label::before {
    background: #dddddd;
    border-color: #dddddd;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    color: #ffffff;
    background: blue;
    border-color: #FF6F61;
    box-shadow: none;
}

.btn {
    color: blue;
    background: #ffffff;
    border: 1px solid blue;
}

.btn:hover,
.btn:active,
.btn:focus {
    color: #ffffff;
    background: blue;
    box-shadow: none;
}

/**********************************/
/******* Normal Slider CSS ********/
/**********************************/
.normal-slider .slick-prev,
.normal-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    opacity: 0;
    transition: .5s;
    background: blue;
    border-radius: 4px;

}

.normal-slider .slick-prev {
    left: 10px;
}

.normal-slider .slick-next {
    right: 10px;
}

.normal-slider.slick-slider:hover .slick-prev {
    left: 5px;
    opacity: 1;
    display: none;
}

.normal-slider.slick-slider:hover .slick-next {
    right: 5px;
    opacity: 1;
    display: none;
}

.normal-slider .slick-prev:hover,
.normal-slider .slick-prev:focus,
.normal-slider .slick-next:hover,
.normal-slider .slick-next:focus {
    background: rgba(0, 0, 0, .7);
}

.normal-slider .slick-prev:hover::before,
.normal-slider .slick-prev:focus::before,
.normal-slider .slick-next:hover::before,
.normal-slider .slick-next:focus::before {
    color: blue;
}

.normal-slider .slick-prev::before,
.normal-slider .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 30px;
    color: #ffffff;
}

.normal-slider .slick-prev::before {
    content: "\f104";
}

.normal-slider .slick-next::before {
    content: "\f105";
}

.normal-slider .slick-dots {
    bottom: 15px;
}

.normal-slider .slick-dots li button:before {
    color: #ffffff;
    font-size: 15px;
}

.normal-slider .slick-dots li.slick-active button:before {
    color: blue;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    padding-top: 20px;
    font-size: 16px;
    background: url(../category/head.jpg);
}

.top-bar i {
    margin-right: 5px;
}

.top-bar .col-sm-6:first-child {
    text-align: left;
}

.top-bar .col-sm-6:last-child {
    text-align: right;
}

@media (max-width: 575.98px) {
    .top-bar {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .top-bar .col-sm-6:first-child,
    .top-bar .col-sm-6:last-child {
        text-align: center;
    }
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav {
    position: relative;
}

.nav .menulist {
    margin-left: 18px;
    
}
.nav .navbar {
    height: 100%;
    padding-left: 290px;
    background: url(../category/head.jpg);
}

@media (min-width: 992px) {
    .nav .container-fluid {
        padding-left: 52px;
        padding-right: 52px;
    }
}

.nav .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: white;

}

.nav .dropdown-menu a:hover {
    background-color: blue;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;

}

.nav .dropdown-menu a.active {
    color: red;
    background: blue;
}

@media (min-width: 768px) {

    .nav,
    .nav .navbar {
        background: url(../category/head.jpg);
    }

    .nav .navbar-brand {
        display: none;
    }

    .nav .navbar-dark a.nav-link {
        color: #ffffff;
        text-transform: uppercase;
        font-size: 20px;
    }

    .nav .navbar-dark a.nav-link:hover,
    .nav .navbar-dark a.nav-link.active {
        color: red;
        font-weight: bold;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 5px 0;
    }

    .nav,
    .nav .navbar {
        background: url(../category/head.jpg);
    }

    .nav a.nav-link {
        padding: 5px 0;
        color: #ffffff;
        font-size: 14px;
        text-transform: uppercase;

    }

    .nav .dropdown-menu {
        box-shadow: none;
    }
}

/**********************************/
/********* Bottom Bar CSS *********/
/**********************************/
.bottom-bar {
    padding-top: 0.1px;
    padding-bottom: 10px;
    background: #ffffff;
}

.bottom-bar .search {
    color: blue;
    font-family: Georgia;
    font-weight: bold;
    font-size: 25px;
 }

.bottom-bar .logo {
    text-align: left;
    overflow: hidden;
}

.bottom-bar .logo a img {
    max-height: 80px;
    margin-left: 97px;
}

.bottom-bar .user {
    font-size: 0;
    text-align: right;
}

.bottom-bar .user .wishlist {
    margin-right: 15px;
}

.bottom-bar .user .cart i,
.bottom-bar .user .wishlist i {
    color: #FF6F61;
}

.bottom-bar .user .cart span,
.bottom-bar .user .wishlist span {
    color: #FF6F61;
    font-size: 15px;
}

.bottom-bar .user .cart:hover i,
.bottom-bar .user .wishlist:hover i,
.bottom-bar .user .cart:hover span,
.bottom-bar .user .wishlist:hover span {
    color: #ffffff;
}


/**********************************/
/*********** Header CSS ***********/
/**********************************/
.header {
    position: relative;
}

.header .col-md-3,
.header .col-md-6 {
    margin-bottom: 30px;
}

.header .navbar {
    padding: 0;
    height: 100%;
    max-height: 400px;
    overflow: hidden;
    background: #ffffff !important;
}

.header .navbar-nav {
    width: 100%;
    padding: 15px 0;
}

.header .navbar li {
    padding: 0 30px;
    border-bottom: 1px solid #f3f6ff;
}

.header .navbar li:last-child {
    border-bottom: none;
}

.header .navbar a {
    color: #353535;
}

.header .navbar a:hover {
    color: blue;
}


.header .navbar i {
    color: blue;
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

.header .navbar a:hover i {
    color: #353535;
}

.header-slider {
    position: relative;
    width: 100%;
}

.header-slider .header-slider-item {
    position: relative;
}

.header-slider .header-slider-caption {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: blue;
    transition: all 0.3s;
    z-index: 1;
}

.header-slider .header-slider-caption p {
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    font-family: 'Source Code Pro', monospace;
    font-weight: 700;
}

.header-slider .header-slider-caption .btn {
    border-color: #ffffff;
}

.header-slider .header-slider-caption .btn i {
    margin-right: 5px;
}

.header .img-text:hover {
    opacity: 1;
}

.header .img-text p {
    margin: 0 0 50px 0;
    padding: 15px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s;
}

/**********************************/
/********* Breadcrumb CSS *********/
/**********************************/
.breadcrumb-wrap {
    position: relative;
    width: 100%;
}

.breadcrumb-wrap .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb li {
    margin-top: 20px;
    padding-left: 100px;
}

.breadcrumb a {
    color: black;
    font-weight: bold;
    font-family: 'calibri';
    font-size: 18px;
}

.breadcrumb .active {

    color: blue;
    font-weight: bold;
    font-family: 'calibri';
    font-size: 20px;
}

/**********************************/
/********** Category CSS **********/
/**********************************/
.category {
    position: relative;
    padding: 0 15px;
    margin-bottom: 30px;
}

.category .col-md-3 {
    padding: 0;
}

.category .category-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    max-height: 400px;
    overflow: hidden;
    background: #ffffff;
}

.category .category-item.ch-400 {
    height: 400px;
}

.category .category-item.ch-250 {
    height: 250px;
}

.category .category-item.ch-150 {
    height: 150px;
}

.category .category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category .category-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(255, 111, 97, .7);
    transition: all 0.3s;
    opacity: 0;
}

.category .category-name:hover {
    opacity: 1;
}

.category .category-name p {
    margin: 0 0 50px 0;
    padding: 15px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s;
}

.category .category-name:hover p {
    margin: 0;
}

/**********************************/
/*********** Feature CSS **********/
/**********************************/
.feature {
    position: relative;
}

.feature .feature-col {
    margin-bottom: 30px;
}

.feature .feature-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #ffffff;
}

.feature .feature-content i {
    color: #FF6F61;
    font-size: 60px;
    margin-bottom: 30px;
}

.feature .feature-content h2 {
    font-size: 18px;
}

.feature .feature-content p {
    font-size: 15px;
    margin: 0;
}

/**********************************/
/******** Product Item CSS ********/
/**********************************/
.product-item {
    position: relative;
}

.product-item .product-title {
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    background: blue;
    transition: all .3s;
}

.product-item:hover .product-title {
    background: #FF6F61;

}

.product-item .product-title a,
.product-item .product-title .ratting {
    position: relative;
    width: 100%;
}

.product-item .product-title a {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.product-item .product-title a:hover {
    color: blue;
}

.product-item .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.product-item .product-image a {
    display: block;
    background: #ffffff;
    transition: .3s;
}

.product-item .product-image img {
    width: 100%;
    transition: all .3s;
}

.product-item .imageshort img {
    width: 200px;
    height: 200px;
    margin-left: 25px;
    transition: all .3s;
}

.product-item .motorimage img {
    width: 200px;
    height: 200px;
    margin-left: 90px;
    transition: all .3s;
}

.product-item:hover .product-image img {
    transform: scale(1.2);

}

.product-item .mainproduct img {
    width: 280px;
    height: 280px;
    transition: all .3s;
}

.product-item:hover .mainproduct img {
    transform: scale(1.2);
}

.product-item .product-image .product-action h5 {
    color: blue;
    font-weight: bold;
}

.product-item .product-image .product-action {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 111, 97, .5);
    transition: all .3s;
    font-size: 0;
    z-index: 1;
    opacity: 0;
}

.product-item:hover .product-image .product-action {
    opacity: 1;
}

.product-item .product-image .product-action a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 7px 0 10px 0;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    background: #FF6F61;
    border: 1px solid #ffffff;
    border-radius: 4px;
    transition: all .3s;
    margin-top: 50px;
}

.product-item:hover .product-image .product-action a {
    margin-top: 0;
}

.product-item .product-image .product-action a:last-child {
    margin-right: 0;
}

.product-item .product-image .product-action a:hover {
    color: #FF6F61;
    background: #ffffff;
    border: 1px solid #FF6F61;
}

.product-item .product-price {
    padding: 20px;
    background: #000000;
    transition: all .3s;
}

.product-item:hover .product-price {
    background: #FF6F61;
}

.product-item .product-price h3 {
    display: inline-block;
    color: #ffffff;
    margin: 0;
}

.product-item .product-price h3 span {
    font-size: 16px;
}

.product-item .product-price .btn {
    float: right;
    border: none;
    color: #000000;
    background: #FF6F61;
}

.product-item:hover .product-price .btn,
.product-item .product-price .btn:hover {
    color: #FF6F61;
    background: #ffffff;
}

.product-item .product-price .btn i {
    margin-right: 5px;
}

/**********************************/
/******** Featured Product ********/
/**********************************/
.featured-product {
    position: relative;
    padding: 30px 0;
}

.recent-product {
    position: relative;
    padding: 30px 0;
}

.product .section-header {
    margin-bottom: 30px;
    padding: 20px 30px 15px 30px;
    color: #FF6F61;
    background: #ffffff;
}

.product .slick-prev,
.product .slick-next {
    top: -75px;
    width: 30px;
    height: 30px;
    z-index: 1;
    transition: .5s;
    color: #FF6F61;
    background: #ffffff;
    border: 1px solid #FF6F61;
    border-radius: 4px;
}

.product .slick-prev {
    left: calc(100% - 120px);
}

.product .slick-next {
    right: 45px;
}

.product .slick-prev:hover,
.product .slick-prev:focus,
.product .slick-next:hover,
.product .slick-next:focus {
    background: #FF6F61;
}

.product .slick-prev::before,
.product .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #FF6F61;
}

.product .slick-prev::before {
    content: "\f104";
}

.product .slick-next::before {
    content: "\f105";
}

.product .slick-prev:hover::before,
.product .slick-prev:focus::before,
.product .slick-next:hover::before,
.product .slick-next:focus::before {
    color: #ffffff;
}

/**********************************/
/********* Gallery row *********/
/**********************************/
.product-view-top {
    padding: 20px;
    background-color: #f9f9f9;
    /* Light background for contrast */
    border: 1px solid #ddd;
    /* Border around the section */
    border-radius: 8px;
    /* Rounded corners */
}

.product-view-top .row {
    display: flex;
    justify-content: center;
    /* Center align the images */
    flex-wrap: wrap;
    /* Allow images to wrap on smaller screens */
}

.product-view-top img {
    width: 200px;
    /* Responsive images */
    height: 200px;
    /* Maintain aspect ratio */
    border-radius: 10%;
    /* Rounded corners for images */
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    transition: all .3s;
}

.product-view-top img:hover {
    transform: scale(1.2);
}

.colorchange {
    padding: 2px;
    background-color: white;
    /* Light background for contrast */
}

.colorchange .row {
    display: flex;
    flex-wrap: wrap;
    /* Allow images to wrap on smaller screens */
}

.colorchange img {
    width: 200px;
    /* Responsive images */
    height: 200px;
    /* Maintain aspect ratio */
    border-radius: 10%;
    /* Rounded corners for images */
    margin-left: 30px;
    margin-right: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    transition: all .3s;
}

.colorchange img:hover {
    transform: scale(1.2);
}

/**********************************/
/******** Product View CSS ********/
/**********************************/
.product-view {
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.product-view .product-view-top {
    padding: 30px;
    margin-bottom: 30px;
    background: #ffffff;
}


.product-view .product-short,
.product-view .product-price-range {
    position: relative;
    width: 100%;
    text-align: right;
}

.product-view .product-short .dropdown .dropdown-toggle,
.product-view .product-price-range .dropdown .dropdown-toggle {
    display: block;
    width: 100%;
    height: 35px;
    padding: 5px 10px;
    font-family: 'calibri';
    color: black;
    background: transparent;
    border: 2px solid black;
    text-align: left;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s;
}

.product-view .product-short .dropdown .dropdown-toggle:hover,
.product-view .product-price-range .dropdown .dropdown-toggle:hover {
    color: blue;
    border: 2px solid blue;
    border-radius: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;

}

.product-view .product-short .dropdown .dropdown-toggle::after,
.product-view .product-price-range .dropdown .dropdown-toggle::after {
    float: right;
    margin-top: 10px;
}

.product-view .product-short .dropdown-menu,
.product-view .product-price-range .dropdown-menu {
    margin: -1px 0 0 0;
    border-radius: 10px;
    color: black;
    font-weight: bold;
}

.product-view .product-short .dropdown-menu a:hover {
    color: blue;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;

}


.product-view .product-item {
    margin-bottom: 30px;
}

.product-view .pagination {
    margin: 0;
}

.product-view .pagination .page-item .page-link {
    color: #353535;
    background: transparent;
    border-color: #353535;
}

.product-view .pagination .page-item:hover .page-link,
.product-view .pagination .page-item.active .page-link {
    color: #FF6F61;
    background: #000000;
}

@media (max-width: 991.98px) {
    .product-view .pagination {
        margin-bottom: 30px;
    }
}

/**********************************/
/******* Product Detail CSS *******/
/**********************************/
.product-detail {
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.product-detail .processcontent h2 {
    text-align: center;
    font-family: 'calibri';
    color: blue;
}


.product-detail .processcontent h3 {
    font-size: 22px;
    color: red;
    font-family: 'calibri';
    padding-left: 10px;
    font-weight: bold;
}

.product-detail .processcontent ol li {
    font-family: 'calibri';
    font-size: 20px;
    color: black;
    font-weight: bold;
    margin-top: 10px;
}

.product-detail .processcontent ol table {
    margin-top: 20px;
}

.product-detail .processcontent ol li:hover {
    font-family: 'calibri';
    font-size: 22px;
    color: blue;
    font-weight: bold;
}

.product-detail .processcontent ol h3 {
    font-size: 22px;
    color: red;
    font-family: 'calibri';
    margin-top: 20px;
}

.product-detail .processcontent u {
    font-family: 'calibri';
    font-size: 20px;
    color: red;
    font-weight: bold;
    cursor: pointer;
}

.product-detail .processcontent u:hover {
    font-size: 22px;
    color: blue;
}

.product-detail .processcontent b {
    color: white;
}

.product-detail .processcontent b:hover {
    color: red;
}

.product-detail .processcontent p {
    color: black;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 22px;
    text-align: justify;
    font-family: 'calibri';
}

.product-detail h2 {
    color: blue;
}

.product-detail p {
    color: black;
}

.product-detail .product-detail-top,
.product-detail .product-detail-bottom {
    margin-bottom: 10px;
}

.product-detail .product-detail-top {
    padding: 0;
    background: #ffffff;
}

.product-detail .product-slider-single img {
    width: 300px;
    height: 300px;
}

.product-detail .product-slider-single-nav {
    margin: 15px 30px 30px 30px;
    border: 3px double #FF6F61;
}

.product-detail .product-slider-single-nav .slider-nav-img {
    border-right: 1px solid #FF6F61;
    overflow: hidden;
}

.product-detail .product-slider-single-nav img {
    width: 100%;
    transition: all .3s;
}

.product-detail .product-slider-single-nav img:hover {
    transform: scale(1.2);
}

.product-detail .product-content,
.product-detail .product-content .title,
.product-detail .product-content .ratting,
.product-detail .product-content .price,
.product-detail .product-content .details,
.product-detail .product-content .quantity,
.product-detail .product-content .action {
    position: relative;
    width: 100%;
}

.product-detail .product-content {
    padding-top: 20px;
}

@media (min-width: 768px) {
    .product-detail .product-content {
        padding-left: 0;
    }
}

.product-detail .product-content .title h2 {
    font-size: 25px;
    margin-bottom: 5px;
}

.product-detail .product-content .ratting {
    margin-bottom: 10px;
}

.product-detail .product-content .ratting i {
    color: blue;
    font-size: 16px;
}

.product-detail .product-content .price,
.product-detail .product-content .quantity,
.product-detail .product-content .p-size,
.product-detail .product-content .p-color {
    margin-bottom: 15px;
}

.product-detail .product-content .price h4,
.product-detail .product-content .quantity h4,
.product-detail .product-content .p-size h4,
.product-detail .product-content .p-color h4 {
    display: inline-block;
    width: 80px;
    font-size: 18px;
    font-weight: 700;
    margin-right: 5px;
}


.product-detail .product-content .action a:first-child {
    margin-right: 11px;
}

.product-detail .product-content .action a i {
    margin-right: 5px;
}

.product-detail .nav.nav-pills .nav-link {
    color: white;
    background: url(../category/head.jpg);
    border-radius: 0;
    transition: all .3s;

}

.tab-content h4 {
    color: blue;
    font-family: 'calibri';
}

.tab-content p {
    color: black;
    text-align: justify;
    font-size: 20px;
    font-family: 'calibri';
}

.product-detail .nav.nav-pills .nav-link:hover,
.product-detail .nav.nav-pills .nav-link.active {
    color: blue;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    background: rgba(255, 111, 97, .5);
}

.product-detail .nav.nav-pills .nav-link b:hover,
.product-detail .nav.nav-pills .nav-link b .active {
    color: blue;
    font-size: 18px;
    text-transform: capitalize;
    background: white;
    padding-left: 15px;
    padding-right: 10px;
    cursor: pointer;
}

.product-detail .tab-content {
    background: #ffffff;
    padding: 25px 15px 15px 15px;
}

.product-detail .tab-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-detail .tab-content ul li {
    margin-bottom: 10px;
    color: black;
    font-size: 18px;
    font-family: 'calibri';
}

.product-detail .tab-content ul li::before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 5px;
    color: blue;
}

.product-detail .tab-content .reviews-submitted {
    position: relative;
    margin-bottom: 45px;
}

.product-detail .tab-content .reviewer {
    color: #FF6F61;
    font-size: 18px;
    font-weight: 600;
}

.product-detail .tab-content .reviewer span {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

.product-detail .tab-content .ratting {
    color: #FF6F61;
    margin-bottom: 15px;
}

.product-detail .tab-content .reviews-submit .ratting {
    font-size: 24px;
}

.product-detail .tab-content .form input {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    color: #666666;
    border: 1px solid #dddddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-detail .tab-content .form textarea {
    width: 100%;
    height: 80px;
    padding: 6px 15px;
    color: #666666;
    border: 1px solid #dddddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-detail .tab-content .form button {
    display: inline-block;
    height: 35px;
    padding: 0 15px;
    color: #FF6F61;
    background: #ffffff;
    border: 1px solid #FF6F61;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: all .3s;
}

.product-detail .tab-content .form button:hover {
    color: #ffffff;
    background: #FF6F61;
}

/**********************************/
/********** Sidebar CSS ***********/
/**********************************/
.sidebar-widget {
    margin-top: 10px;
    background: #ffffff;
}

.sidebar-widget:not(:first-child) {
    padding-top: 0;
}

.sidebar-widget .title {
    position: relative;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
    padding-left: 20px;
    padding-top: 15px;
}

.sidebar-widget.category h2 {
    color: blue;
}

.sidebar-widget.category .navbar {
    overflow: hidden;
    background: #ffffff !important;
}

.sidebar-widget.category .navbar-nav {
    width: 100%;
}

.sidebar-widget.category .navbar li {
    border-bottom: 1px solid #f3f6ff;
}

.sidebar-widget.category .navbar li:hover {
    color: blue;
    text-transform: uppercase;
    font-weight: bold;
}

.sidebar-widget.category .navbar li:last-child {
    border-bottom: none;
}

.sidebar-widget.category .navbar a {
    color: black;
    font-size: 18px;
    font-weight: bold;
}

.sidebar-widget.category .navbar a:hover {
    background-color: blue;
    color: white;
    text-transform: uppercase;
    text-align: center;
    border-radius: 50px;
    border: 2px solid blue;
}

.sidebar-widget.brands ul {
    list-style: none;
}

.sidebar-widget.brands ul li {
    margin-bottom: 12px;
}

.sidebar-widget.brands ul li:last-child {
    margin-bottom: 0;
}

.sidebar-widget.brands ul li a {
    color: black;
    white-space: nowrap;
    display: inline-block;
    line-height: 23px;
    transition: all .3s;
}

.sidebar-widget.brands ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    padding-right: 5px;
}

.sidebar-widget.brands ul li a:hover {
    color: blue;
    text-transform: uppercase;
    font-weight: bold;
}

.sidebar-widget.brands ul li a:hover::before {
    content: '\f101';
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
}

.sidebar-widget.brands ul li a:hover {
    padding-left: 10px;
}

.sidebar-widget.brands ul li span {
    display: inline-block;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

.sidebar-widget.widget-slider {
    position: relative;
}

.sidebar-widget.image a {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar-widget.image img {
    max-width: 100%;
    transition: .3s;
}

.sidebar-widget.image img:hover {
    transform: scale(1.1);
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.brands {
    margin-bottom: 20px;
}


/**********************************/
/********** Checkout CSS **********/
/**********************************/
.checkout {
    position: relative;
    padding-top: 30px;
}

.checkout .checkout-inner {
    margin-bottom: 30px;
    padding: 30px;
    background: #ffffff;
}

.checkout .billing-address,
.checkout .shipping-address {
    position: relative;
    width: 100%;
}

.checkout .shipping-address {
    display: none;
    margin-top: 30px;
}

.checkout .billing-address h2,
.checkout .shipping-address h2 {
    font-size: 25px;
    margin-bottom: 20px;
}

.checkout .checkout-summary,
.checkout .checkout-payment {
    position: relative;
    width: 100%;
}

.checkout .checkout-summary h1,
.checkout .checkout-payment h1 {
    font-size: 25px;
    margin-bottom: 20px;
}

.checkout .checkout-summary,
.checkout .checkout-payment .payment-methods {
    padding: 30px;
    background: #f3f6ff;
    margin-bottom: 30px;
}

.checkout .checkout-summary p.sub-total,
.checkout .checkout-summary p.ship-cost {
    padding-top: 15px;
    border-top: 1px solid #dddddd;
}

.checkout .checkout-summary p span,
.checkout .checkout-summary h2 span {
    float: right;
}

.checkout .checkout-summary h2 {
    font-size: 20px;
    padding-top: 12px;
    border-top: 1px solid #dddddd;
    margin: 0;
}

.checkout .checkout-payment .payment-methods .payment-content {
    display: none;
}

.checkout .checkout-payment .checkout-btn button {
    width: 100%;
    height: 50px;
    padding: 2px 10px;
    font-family: 'calibri';
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    color: #000000;
    background: #FF6F61;
    border: none;
    border-radius: 4px;
    transition: all .3s;
}

.checkout .checkout-payment .checkout-btn button:hover {
    color: #FF6F61;
    background: #000000;
}

/**********************************/
/********* My Account CSS *********/
/**********************************/
.my-account {
    position: relative;
    padding: 30px 0;
}

.my-account .nav.nav-pills .nav-link {
    padding: 10px 15px;
    color: #353535;
    background: #ffffff;
    border-radius: 0;
    border-bottom: 1px solid #dddddd;
    transition: all .3s;
}

.my-account .nav.nav-pills .nav-link:last-child {
    border-bottom: none;
}

.my-account .nav.nav-pills .nav-link:hover,
.my-account .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #FF6F61;
}

.my-account .nav.nav-pills .nav-link i {
    margin-right: 5px;
}

.my-account .tab-content {
    padding: 30px;
    background: #ffffff;
}

.my-account .tab-content .table {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}



.my-account .tab-content .table td {
    vertical-align: middle;
}

/**********************************/
/******* Call to Action CSS *******/
/**********************************/
.call-to-action {
    position: relative;
    padding: 30px 0;
    background: #FF6F61;
}

.call-to-action .col-md-6:last-child {
    text-align: right;
}

.call-to-action h1 {
    color: #ffffff;
    font-size: 30px;
    margin: 0;
}

.call-to-action a {
    display: inline-block;
    padding: 0 20px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 2px;
    transition: all .3s;
}

.call-to-action a:hover {
    color: #000000;
    border-color: #000000;
}

@media (max-width: 767.98px) {

    .call-to-action,
    .call-to-action .col-md-6:last-child {
        text-align: center;
    }

    .call-to-action h1 {
        margin-bottom: 20px;
    }
}

/**********************************/
/********* Newsletter CSS *********/
/**********************************/
.newsletter {
    position: relative;
    padding: 30px 0;
    background: #FF6F61;
}

.newsletter h1 {
    color: #ffffff;
    font-size: 30px;
    margin: 0;
}

.newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 0 0 auto;
}

.newsletter .form input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    color: #666666;
    border: 1px solid #ffffff;
    border-radius: 4px;
}

.newsletter .form button {
    position: absolute;
    width: 80px;
    height: 40px;
    top: 0;
    right: 0;
    padding: 0 15px;
    border: none;
    background: #FF6F61;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0 4px 4px 0;
}

.newsletter .form button:hover {
    color: #FF6F61;
    background: #000000;
}

@media (max-width: 767.98px) {
    .newsletter {
        text-align: center;
    }

    .newsletter h1 {
        margin-bottom: 20px;
    }

    .newsletter .form {
        margin: 0 auto;
    }
}

/**********************************/
/*********** Brand CSS ************/
/**********************************/
.brand {
    position: relative;
    margin-bottom: 10px;
    padding-top: 30px;
    background: #ffffff;
}

.brand .brand-item {
    text-align: center;
}

.brand .brand-item img {
    width: 100px;
    height: 40px;
    margin-top: 0;
    margin-bottom: 25px;
}

.brand .slick-prev,
.brand .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    opacity: 0;
    transition: .5s;
    background: #FF6F61;
    border-radius: 4px;
}

.brand .slick-prev {
    left: 55px;
}

.brand .slick-next {
    right: 55px;
}

.brand .slick-slider:hover .slick-prev {
    left: 15px;
    opacity: 1;
}

.brand .slick-slider:hover .slick-next {
    right: 15px;
    opacity: 1;
}

.brand .slick-prev:hover,
.brand .slick-prev:focus,
.brand .slick-next:hover,
.brand .slick-next:focus {
    background: #000000;
}

.brand .slick-prev:hover::before,
.brand .slick-prev:focus::before,
.brand .slick-next:hover::before,
.brand .slick-next:focus::before {
    color: #FF6F61;
}

.brand .slick-prev::before,
.brand .slick-next::before {
    font-family: 'calibri';
    font-weight: 900;
    font-size: 30px;
    color: #000000;
}

.brand .slick-prev::before {
    content: "\f104";
}

.brand .slick-next::before {
    content: "\f105";
}

/**********************************/
/*********** Review CSS ***********/
/**********************************/
.review {
    margin-bottom: 30px;
}

.review .review-slider {
    position: relative;
}

.review .review-slider-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    background: #ffffff;
}

.review .review-img {
    width: 100%;
    max-width: 200px;
    overflow: hidden;
}

.review .review-img img {
    width: 80%;
    height: 80%;
    margin-left: 20px;
    object-fit: cover;
    border-radius: 50%;
}

.review .review-img img:hover {
    border-radius: 30px;
}

.review .review-text {
    padding: 15px;
    width: 100%;
}

.review .review-text h2 {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: blue;
}

.review .review-text h3 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.review .review-text p {
    margin: 0;
    color: black;
    font-size: 18px;
    font-family: 'calibri';
    text-align: justify;
}

.review .review-text u {
    color: red;
    font-size: 16px;
    font-family: 'calibri';
    font-weight: bold;
}

.review .review-text b {
    color: white;
}

.review .review-text u:hover {
    color: white;
    font-size: 18px;
    background-color: blue;
    padding: 5px 5px 5px 5px;
}

.review .review-text b:hover {
    color: red;
}

.review .review-text .ratting {
    margin-bottom: 5px;
}

.review .review-text .ratting i {
    color: blue;
    font-size: 14px;
}

.review .slick-slider:hover .slick-prev {
    margin-top: 100px;
    left: 20px;
}

.review .slick-slider:hover .slick-next {
    margin-top: 100px;
    right: 20px;
}


/**********************************/
/********** Contact CSS ***********/
/**********************************/
.contact {
    position: relative;
    padding-top: 30px;
}

.contact .contact-info,
.contact .contact-form,
.contact .contact-map {
    height: 100%;
    padding: 30px;
    background: #ffffff;
    border-bottom: 30px solid #f3f6ff;
}

.contact .contact-form:hover {
    border: 2px solid blue;
}

.contact .contact-info h2 {
    margin-bottom: 15px;
    color: blue;
}

.contact .contact-info h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.contact .contact-info h3 i {
    width: 20px;
    color: blue;
    margin-right: 5px;
}

.contact .social {
    position: relative;
    width: 100%;
}

.contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 5px 0;
    text-align: center;
    font-size: 18px;
    border: 1px solid blue;
    border-radius: 4px;
}

.contact .social a i {
    color: blue;
}

.contact .social a:hover {
    background: blue;
}

.contact .social a:hover i {
    color: #ffffff;
}

.contact .contact-map iframe {
    width: 100%;
    height: 450px;
}

/**********************************/
/****** Register & Login CSS ******/
/**********************************/
.login {
    position: relative;
    padding-top: 30px;
}

.login .login-form,
.login .register-form {
    padding: 30px;
    background: #ffffff;
    margin-bottom: 30px;
}

/**********************************/
/********** Footer CSS ************/
/**********************************/
.footer {
    position: relative;
    padding: 10px 0 0 0;
    background: url(../category/head.jpg);
    color: white;
}

.footer .productfooter {
    padding-top: 40px;
}

.footer .footer-widget {
    position: relative;
    width: 100%;
}

.footer .footer-widget h2 {
    font-size: 22px;
    white-space: nowrap;
}

.footer .footer-widget .productname {
    padding-left: 130px;
}

.footer .footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-widget ul li a {
    color: white;
    white-space: nowrap;
    display: block;
    font-weight: bold;
    transition: all .3s;
}

.footer .contact-info p {
    margin-bottom: 10px;
    line-height: 1.8rem;
    font-family: 'calibri';
    font-weight: bold;
    font-size: 16px;
}

.footer .contact-info p i {
    margin-right: 5px;
}

.footer .social {
    position: relative;
    width: 100%;
}

.footer .social a {
    display: inline-block;
    margin: 10px 5px 0 0;
    width: 40px;
    height: 40px;
    padding: 6px 0;
    text-align: center;
    font-size: 18px;
    color: red;
    border: 1px solid red;
    border-radius: 4px;
    transition: all .3s;
}

.footer .social a:hover {
    color: white;
    border-color: white;
}

.footer .payment {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

@media (min-width: 992px) {
    .footer .payment {
        max-width: 80%;
        margin: 0 auto;
    }
}

.footer .payment-method,
.footer .payment-security {
    overflow: hidden;
}

.footer .payment-method {
    text-align: left;
}

.footer .payment-security {
    text-align: right;
}

@media (max-width: 768.98px) {
    .footer .payment-method {
        margin-bottom: 15px;
    }

    .footer .payment-method,
    .footer .payment-security {
        text-align: center;
    }
}

.footer .payment-method h2,
.footer .payment-security h2 {
    display: inline-block;
    margin: 0 10px 0 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.footer .payment-method img,
.footer .payment-security img {
    height: 25px;
}

/**********************************/
/******** Footer Bottom CSS *******/
/**********************************/
.footer-bottom {
    position: relative;
    padding: 5px 0;
    background: white;
}

.footer-bottom .copyright p {
    color: black;
    font-weight: 600;
    padding-left: 60px;
    margin: 0;
    font-family: 'calibri';
}

.footer-bottom .template-by p {
    color: black;
    font-weight: 600;
    margin: 0;
    padding-left: 500px;
    font-family: 'calibri';
}

.footer-bottom .copyright p a,
.footer-bottom .template-by p a {
    font-weight: bold;
}

.footer-bottom .copyright p a:hover,
.footer-bottom .template-by p a:hover {
    color: red;
    font-weight: bold;
}

@media (max-width: 768.98px) {

    .footer-bottom .copyright,
    .footer-bottom .template-by {
        text-align: center;
    }
}

/**********************************/
/******** About-us *******/
/**********************************/

.aboutcolor {
    background-color: white;
}
.aboutimg{
    padding-top:115px;
}
.aboutimg1{
    padding-top:185px;
}
.aboutimg2{
    padding-top:25px;
}
.aboutcolor h3,
.about-section h3 {
    color: blue;
    font-size: 23px;
    display: inline;
    background-color: lightblue;
    padding: 5px 5px;
    border-radius: 10px;
    font-weight: bold;
}

.aboutcolor ul li {
    font-family: 'calibri';
    font-size: 20px;
    color: black;
}

.aboutcolor p {
    font-family: 'calibri';
    font-size: 20px;
    color: black;
    text-align: justify;
}

.aboutcontact {
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

.aboutcontact a {
    color: white;
    background-color: blue;
    padding: 10px 10px 10px 10px;
}

.aboutcontact a:hover {
    color: white;
    font-size: 20px;
    background-color: #FF6F61;
    cursor: pointer;
}

.about-section {
    width: 100%;
    background-color: white;
}

.about-section h2 {
    text-align: center;
    color: blue;
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 20px;
    background-color: lightblue;
    padding: 5px 5px;
    border-radius: 10px;
    font-weight: bold;
}

.about-section p {
    margin-top: 20px;
    font-family: 'calibri';
    font-size: 20px;
    color: black;
    text-align: justify;
}

.about-section ol li {
    font-family: 'calibri';
    font-size: 20px;
    color: black;
}

.about-section ul li {
    font-family: 'calibri';
    font-size: 20px;
    color: black;

}

.about-section button {
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    border-radius: 10%;
    color: white;
    background-color: blue;
}

.about-section button:hover {
    font-size: 20px;
    color: white;
    background-color: #FF6F61;
}

/**********************************/
/******** Arrow list *******/
/**********************************/

.arrow-list {
    list-style: none;
    /* Remove default bullets */
    padding-left: 0;
    /* Remove padding */
}

ul.arrow-list li {
    text-align: justify;
    /* Justifies text */
    padding: 8px 0;
    /* Adds space between list items */
    position: relative;
    padding-left: 40px;
    padding-right: 10px;
}

.arrow-list li::before {
    content: '➢';
    /* Unicode for bullet or use "\2192" for arrow */
    color: black;
    /* Customize bullet color */
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

ul.arrowdiff {
    list-style-type: none;
    /* Removes default bullets */
    padding: 0;
    margin: 0;
}

/* Styling for each list item */
ul.arrowdiff li {
    text-align: justify;
    /* Justifies text */
    padding: 8px 0;
    /* Adds space between list items */
    position: relative;
    font-weight: bold;
    font-size: 20px;
    font-family: 'calibri';
    padding-left: 40px;
    padding-right: 10px;
}

/* Adding a custom bullet with an arrow */
ul.arrowdiff li::before {
    content: '➢';
    /* Unicode for bullet or use "\2192" for arrow */
    color: blue;
    /* Customize bullet color */
    font-weight: bold;
    position: absolute;
    left: 10px;
    font-size: 1.2em;
}

@media only screen and (max-width: 600px) {
    .review .review-img img {
        width: 70%;
        height: 70%;
        margin-top: 10px;
        margin-left: 30px;
    }

.bottom-bar .logo a img {
    margin-left: 120px;
}
    ul.arrowdiff li,
    ul.arrow-list li {
        text-align: inherit;
        font-size: 16px;
    }

    .review .review-slider-item {
        flex-direction: column;
    }

    .review .review-text h2,
    .review .review-text .ratting {
        text-align: center;
    }

    .review .review-text a {
        margin-left: 100px;
        margin-top: 10px;
    }

    #emphone {
        padding-left: 110px;
        line-height: 30px;
    }

    .nav .navbar {
        padding-left: 10px;
        background: url(../category/head.jpg);
    }

    .backimage {
        width: 330px;
        /* Set a width */
        height: 170px;
    }

    .row .product-item .productname {
        margin-top: 10px;
    }

    .product .section-header h2 {
        font-size: 18px;
    }

    .breadcrumb li {
        padding-left: 0;
    }

    .review .slick-slider:hover .slick-prev {
        margin-top: 300px;
        font-size: 10px;
        left: 20px;
    }

    .footer .footer-widget h2 {
        font-size: 22px;
        padding-top: 10px;
        color: red;
    }

    .footer .footer-widget .productname {
        padding-left: 0;
    }

    .header-slider-item img {
        width: 330px;
        /* Set a width */
        height: 170px;
    }

    .mainproduct img {
        margin-top: 0;
        margin-left:20px;
        width: 300px;
        /* Set a width */
        height: 170px;
    }
    .product-item {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .normal-slider.slick-slider:hover .slick-prev,
    .normal-slider.slick-slider:hover .slick-next {
        display: none;
    }

    .sidebar-widget.category .navbar a {
        font-size: 15px;
    }

    .product-detail .processcontent p {
        padding-left: 10px;
    }

    .product-detail .tab-content {
        padding: 5px 5px 5px 5px;
    }

    .about-section button {
        margin-left: 100px;
        margin-top: 20px;
    }

    .aboutcolor {
        margin-top: 20px;
    }

    .about-section h2 {
        font-size: 22px;
    }

    .about-section h3,
    .aboutcolor h3 {
        font-size: 20px;
    }

    .product-detail .processcontent .bchange {
        padding-left: 150px;
    }

    .product-detail .processcontent ol li,
    .product-detail .processcontent ol li:hover,
    .product-detail .processcontent u,
    .product-detail .processcontent u:hover {
        font-size: 18px;
    }

    .product-detail .processcontent ol h3 {
        font-size: 20px;
    }

    .bottom-bar .search {
        font-size: 22px;
        padding-left:35px;
    }

    .footer .productfooter {
        padding-top: 0;
    }

    .product-item .imageshort img,
    .product-item .motorimage img {
        margin-left: 60px;
    }

    .footer-bottom .copyright p {
        padding-left: 0;
    }

    .footer-bottom .template-by p {
        padding-left: 55px;
    }
    .product-view-top img {
   margin-left: 35px;
}
.product-item .imageshort img {
   margin-left: 60px;
}
.aboutimg{
    padding-top:10px;padding-bottom:20px;
}.aboutimg1{
    padding-top:10px;padding-bottom:20px;
}.aboutimg2{
    padding-top:10px;padding-bottom:20px;
}
}

@media (orientation: landscape) {
    .header-slider-item img {
        width: 800px;
        /* Set a width */
        height: 400px;
        position: relative;
    }
.bottom-bar .logo a img {
    margin-left: 50px;
}
.nav .navbar {
    padding-left: 600px;
}
#emphone {
        padding-left: 180px;
        line-height: 30px;
    }

}