@charset "utf-8";

/*------------------------------------------------------------------
  [Table of contents]
  * To keep an overview of structure of your code, we make use of table of 
  * content. Table of content is use display the overall tree structure of your
  * Layout. 
  * (NOTE: Remove this commented code once you start developing the code.
  * Remove the following table of content and add your own as this is just and 
  * example to let you know)

  1. CSS Reset Code
    1.1. Eric Meyers Reset/HTML5 display-role reset for older browsers
    1.2. Clear Fix
    1.3. Font class declaration
  2. Body
  3. Header / .header
    2.1. Navigation / .navbar
  4. Content / .content
    4.1. Left column / .leftcolumn
    4.2. Right column / .rightcolumn
    4.3. Sidebar / .sidebar
      4.3.1. RSS / .rss
      4.3.2. Search / .search
      4.3.3. Boxes / .box
      4.3.4. Sideblog / .sideblog
      4.3.5. Advertisements / .ads
  5. Footer / .footer
  ------------------------------------------------------------------*/

/*------------------------------------------------------------------
  [Color codes]
  * Mention the color code you have used in your html document for the respective
  * elements given as follow. 
  * (NOTE: Remove this commented code once you start developing the code. 
  * Remove the following color code and add your own as this is just and 
  * example to let you know)

  Header nav: #e5e5df (Cararra)
  Header nav a (hover): #fff (white)
  Header nav a (active): #fff (white)
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
  [Typography]
  * Mention the Typography you have used in your html document for the respective
  * elements given as follow.
  * (NOTE: Remove this commented code once you start developing the code. 
  * Remove the following typography and add your own as this is just and 
  * example to let you know)

  Header nav a: 16px 'Futura Bold', 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  View-register li a : 12px 'Futura Bold', 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  -------------------------------------------------------------------*/

/* ==========================================================================
   1. CSS Reset Code
   ========================================================================== */

/* 1.1. Eric Meyers Reset
   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Force scrollbar */
html {
  overflow-y: scroll;
}

/* Align radios and text inputs with their label */

input[type='radio'] {
  vertical-align: text-bottom;
}

/* Hand cursor on clickable input elements */
label,
input[type='button'],
input[type='submit'],
button {
  cursor: pointer;
}

strong {
  font-weight: bold;
  font-family: inherit;
  font-size: inherit;
}

em {
  font-style: italic;
}

img {
  border: 0;
  vertical-align: middle;
}

sub,
sup {
  vertical-align: baseline;
  position: relative;
  font-size: 55%;
  line-height: 0;
}

sup {
  top: -.7em;
}

sub {
  bottom: -.25em;
}

/* 1.2. Clear Fix
   ========================================================================== */

.cf:before,
.cf:after {
  display: table;
  content: " ";
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

/* 1.3. Font class declaration
   ========================================================================== */
/*
 * Mention the font property (eg: font-family, font-size, font-weight, font-style
 * etc) that have been commonly used in the html document. Make a class of it and
 * apply to the element wherever it is needed. If any single property in changed,
 * then override only that property in the particular class which is used for the
 * element.
 * (NOTE: Remove this commented code once you start 
 * developing the code. Remove the following font class and add your own
 * as this is just and example to let you know. If there is only one font family
 * followed throughout the site, then menstion the font property in body. No need
 * of creating an extra class for it) */

.futura-bold-font {
  font-family: 'Futura Bold', 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
}

/* GLOBAL STYLING STARTS HERE */

.wrapper {
  width: 79%;
  max-width: 1360px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

span,
p,
a {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

body {
  background-color: #000;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.capital {
  text-transform: uppercase;
}

.bold {
  font-weight: 900;
}

.active {
  color: rgb(255, 98, 0);
}

.icon {
  display: block;
}

.icon::after {
  font-family: "FontAwesome";
  transition: .5s;
}

/* PRELOADER STYLING STARTS HERE */

.loader_bg {
  position: fixed;
  background: #000;
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
}

.centerBike {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 26px;
  margin-left: -12px;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}

.loader-container-hidden {
  display: none;
}

#loop {
  height: 100px;
  width: 100px;
  border: #ff7300 solid 4px;
  border-radius: 200px;
}

#loop:before {
  background: linear-gradient(to left, rgba(187, 95, 39, 0) 0%, #ff7300 30%, #ff7300 70%, rgba(187, 95, 39, 0) 100%);
  content: "";
  display: block;
  height: 4px;
  left: -100px;
  position: relative;
  top: 100px;
  width: 300px;
}

#bike-wrapper {
  height: 108px;
  width: 108px;
  animation: drive 3s linear infinite;
}

#bike {
  height: 24px;
  width: 25px;
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/133687/motorbike.png");
}

/* PRELOADER STYLING END HERE */

/* SOCIAL ICONS STYLING STARTS HERE */
.social {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 0%;
}

.social ul {
  padding: 0px;
  transform: translate(-163px, 0);
}

.social ul li {
  display: block;
  margin: 5px;
  background: rgba(0, 0, 0, 0.36);
  width: 200px;
  text-align: right;
  padding: 0px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
}

.social ul li:hover {
  transform: translate(110px, 0);
  background: #ff73007b;
}

.social ul li:hover a {
  color: #000;
}

.social ul li:hover i {
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  transform: rotate(360deg);
  transition: all 1s;
}

.social ul li i {
  margin-left: 10px;
  color: #fff;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #ff7300;
  width: 20px;
  height: 20px;
  font-size: 19px;
  background: #000;
  transform: rotate(0deg);
  vertical-align: middle;
  text-align: center;
}

/* SOCIAL ICONS STYLING ENDS HERE */

/* HEADER STYLING STARTS HERE */

/* SEARCH STYLING STARTS HERE */

.search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
  margin: 0 15px;
}

.search-field {
  font-size: 20px;
  color: #fff;
  border-radius: 25px;
  padding: 10px;
  width: 100%;
  height: 40px;
  background-color: transparent;
  background-image: url(https://i.postimg.cc/BZxchVjh/search-png.png);
  background-position: 7px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border: none;
  cursor: pointer;
  height: 40px;
  margin: 3px 0;
  padding: 0 0 0 38px;
  position: relative;
  transition: .4s;
  width: 100%;
  border: 1px solid #ff7300;
}

.search-field:focus {
  background-color: transparent;
  cursor: text;
  outline: 0;
  width: 100%;
  color: #fff;
  box-shadow: 0 0 3px 1px #ff7300;
}


.search-products-list {
  overflow-y: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 4px 4px 30px rgb(0, 0, 0);
  width: 300px;
  height: max-content;
  max-height: 520px;
  position: absolute;
  top: 100%;
  /* display: none; */
  transition: .5s;
}

.cart-checkout-btn {
  padding: 15px;
  background-color: #444;
  border-radius: 15px;
  transition: .5s;
}

.cart-checkout-btn:hover {
  background-color: #fff;
  color: #000;
}

.search-products-list::-webkit-scrollbar {
  display: none;
}

.search-product {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}

.search-product img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.s-p-heading,
.s-p-price {
  font-size: 20px;
  color: #1d1d1d;
}

/* SEARCH STYLING ENDS HERE */

h1 img {
  height: 70px;
  width: 150px;
}

header {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  z-index: 9999;
  position: sticky;
  top: 0;
}

.header-icons {
  margin-right: 10px;
}

header .wrapper {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
}

.right-arrow::after {
  content: "\f35a";
  margin-left: 10px;
  vertical-align: middle;
  background-color: rgb(255, 98, 0);
  border-radius: 100%;
  font-size: 30px;
}

.right-arrow:hover::after {
  color: rgb(255, 98, 0);
  background-color: #000;
}

.shopping-cart {
  font-size: 0;
  background-color: transparent;
  border: 0;
  position: relative;
  cursor: pointer;
}

.shopping-cart::after {
  content: "\f290";
  color: rgb(255, 98, 0);
  font-size: 40px;
}

.shopping-cart::before {
  position: absolute;
  content: attr(data-quantity);
  top: 0;
  right: -12px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins";
}

.renderCartData {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 50%;
  max-width: 400px;
  padding: 20px;
  z-index: 999;
  background: #000000;
  box-shadow: -2px 0 4px #ff7300;
  transition: .5s;
  overflow-y: auto;
}

.renderCartData::-webkit-scrollbar-track {
  border: 3px solid rgb(0, 0, 0);
  /* // border color does not support transparent on scrollbar */
  /* // border-color: transparent; */
  background-color: rgb(147, 149, 152);
}

.renderCartData::-webkit-scrollbar {
  width: 7px;
  background-color: #dfe6e9;
}

.renderCartData::-webkit-scrollbar-thumb {
  background-color: #ff7300;
  border-radius: 10px;
}

.cartProductDetail {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  width: 50%;
}

.cartProductDetail h6 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cart-styling {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ff7300;
}

.cartImageElement {
  width: 15%;
  max-height: 20%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: #555454 0px 0px 10px 5px;
}

.renderCartData.active {
  right: 0;
  transition: .5s;
}

.trash {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 3.5px;
  transition: .5s;
  cursor: pointer;
}

.trash:hover .lid,
.trash:hover .lidcap {
  transform: rotate(15deg);
  margin-bottom: 10.5px;
  background: red;
}

.trash:hover .lidcap {
  transform: translate(-1px, -2px) rotate(20deg);
}

.trash:hover .lid {
  transform-origin: bottom right;
}

.trash:hover .bin {
  border-top: 15px solid red;
}

.lidcap,
.lid,
.bin {
  position: absolute;
  transition: .5s;
}

.lidcap,
.lid {
  border-top-left-radius: 2.8px;
  border-top-right-radius: 2.8px;
  background: #fff;
}

.lidcap {
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 5px;
}

.lid {
  top: 2px;
  left: 0;
  width: 100%;
  height: 3px;
}

.bin {
  bottom: 0;
  left: 0;
  width: 50%;
  border-top: 15px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.cart-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

#totalPrice {
  font-size: 20px;
}

.cross {
  color: red;
  font-size: 0;
  text-align: right;
}

.cross::after {
  content: "❌";
  font-size: 28px;
  cursor: pointer;
}

.cart-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

.total {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  border-top: 1px solid #ff7300;
}

.total-title {
  font-size: 18px;
  font-size: 600;
  margin-top: 16px;
}

.total-price {
  font-size: 16px;
  margin: 16px 0 0 14px;
}



.call {
  font-size: 0;
  position: relative;
}

.call::after {
  content: "\f2a0";
  color: rgb(255, 98, 0);
  font-size: 30px;
}

.call::before {
  content: "";
  border: 3px solid rgb(255, 98, 0);
  border-radius: 50%;
  display: block;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.call:hover::before {
  animation: ripple 1.5s infinite;
}

/* Main Styling starts here */

.faq-title {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  text-decoration: underline;
  margin-bottom: 10px;
}

.faq-links {
  text-decoration: underline;
  color: blue;
}

.faq-links:visited {
  text-decoration: underline;
  color: purple;
}

.faq-links:active {
  text-decoration: underline;
  color: red;
}

.accordions {
  width: 80%;
  margin: 100px auto;
}

.accordions h3 {
  text-align: center;
  font-weight: bold;
}

.accordion-item {
  background-color: #ff7300;
  margin-bottom: 20px;
  border: 1px solid #ff7300;
  border-radius: 5px;
  color: #ffffff;
}

.accordion-item .accordion-title {
  cursor: pointer;
  padding: 20px;
  transition: transform 0.4s ease-in-out;
}

.accordion-item .accordion-title.active-title {
  background-color: #f65505;
  color: #ffffff;
}

.accordion-item .accordion-title h3 {
  font-weight: 700;
  margin: 0;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.accordion-item .accordion-title i.fa-chevron-down {
  transform: rotate(0);
  transition: 0.4s;
}

.accordion-item .accordion-title i.fa-chevron-down.chevron-top {
  transform: rotate(-180deg);
}

.accordion-item .accordion-content {
  display: none;
  line-height: 1.7;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0 0 5px 5px;
  color: #100e34;
}

.accordion-item .accordion-content.active {
  display: block;
}

.accordion-item .accordion-content p {
  margin: 0;
  font-size: 16px;
}

.details {
  background: #dce1f2;
}

.details .detailed_info {
  margin: 50px auto;
}

.details img {
  margin: 0 auto;
  display: block;
  /* margin-top: 120px; */
}

.details h3 {
  font-weight: bold;
  font-size: 20px;
}

.details p {
  font-size: 16px;
  line-height: 1.5em;
}

.details ul li {
  font-size: 16px;
  line-height: 1.7em;
}

/* Main Styling ends here */


/* Keyframes Starts From Here */

@keyframes drive {
  0% {
    margin-left: -364px;
    opacity: 0;
  }

  33.33% {
    transform: rotate(0deg);
    margin-left: -50px;
    opacity: 1;
  }

  66.66% {
    transform: rotate(-360deg);
    margin-left: -50px;
    opacity: 1;
  }

  100% {
    margin-left: 264px;
    transform: rotate(-360deg);
    opacity: 0;
  }
}

/* Keyframes Ends From Here */

/* Media Queries Starts Here */

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

  .search-field {
    width: 0;
    border: none;
  }

  .social ul li:focus {
    transform: translate(110px, 0);
    background: #ff73007b;
  }

  .social ul li:focus a {
    color: #000;
  }

  .social ul li:focus i {
    color: #fff;
    background: rgba(0, 0, 0, 0.36);
    transform: rotate(360deg);
    transition: all 1s;
  }

}

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

  h1 img {
    width: 80px;
    height: 40px;
  }

  .social ul {
    transform: translate(-95px, 0);
    font-size: 13px;
  }

  .social ul li:hover {
    transform: translate(95px, 0);
  }

  .social ul li {
    margin: 5px 5px 5px 0px;
    width: 120px;
  }

  .social ul li i {
    padding: 5px;
    font-size: 14px;
  }

  .product-title {
    font-size: 20px;
  }

  .product-title::after {
    width: 50px;
    height: 2px;
  }

  .star-outer {
    font-size: 24px;
  }

  .product-rating span {
    font-size: 14px;
  }

  .product-detail ul li {
    padding-left: 0;
    font-size: 14px;
  }

  .product-detail ul {
    margin: 0;
  }

  .product_specification {
    margin: 30px 0;
    font-size: 14px;
  }

  .product-text p {
    font-size: 13px;
  }

  .img-showcase img {
    height: 300px;
  }

  .s-p-heading,
  .s-p-price {
    font-size: 14px;
  }

  .search-products-list {
    width: 200px;
    /* left: -70%; */
    align-items: center;
    max-height: 400px;
  }

}

/* Media Queries Ends Here */