@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
body {
	font-family: "Roboto", sans-serif;
	background: #f9f9f9;
}

.section-100 {
	padding-top: 100px;
}

.section-50 {
	padding-top: 50px;
}

.section-0 {
	padding-top: 0px;
}

.text-striked {
	text-decoration: line-through;
}

.product-image-small {
    height: 5vw;
    width: 5vw;
    padding: 5px;
    position: relative;
    margin-top: 15px;
}

.product-image-mid {
    height: 40vh;
    position: relative;
    margin-top: 15px;
}

.product-card-small .product-image-small .product-thumbnail-small {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.product-image-selected {
    outline: none;
    border: solid;
    border-color: #861A22;
    box-shadow: 0 0 10px #861A22;
}

.product-image-for-viewing {
}

.product-card {
	box-shadow: 0 12px 17px rgba(129, 140, 151, 0.1);
}
.product-card .product-image {
	height: 250px;
	position: relative;
	margin-top: 15px;
}
.product-card .product-image .product-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.product-card .product-details {
	position: relative;
}
.product-card .product-details a:hover {
	text-decoration: none;
	color: #0062cc;
}

.text-truncate--2 {
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	overflow: hidden;
}

.rating-stars {
	display: inline-block;
	position: relative;
	width: 90px;
}
.rating-stars:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #eee;
}
.rating-stars .filled-star {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #ffc107;
}
.rating-stars img {
	height: 100%;
	width: 100%;
	display: block;
	position: relative;
	z-index: 1;
}

@-webkit-keyframes pulse {
	0% { box-shadow:0 0 8px #53e21b, inset 0 0 8px #53e21b; }
	50% { box-shadow:0 0 16px #53e21b, inset 0 0 14px #53e21b; }
	100% { box-shadow:0 0 8px #53e21b, inset 0 0 8px #53e21b; }
  }

  @-webkit-keyframes pulse2 {
    0% { box-shadow:0 0 8px #d50c0c, inset 0 0 8px #d50c0c; }
    50% { box-shadow:0 0 16px #d50c0c, inset 0 0 14px #d50c0c; }
    100% { box-shadow:0 0 8px #d50c0c, inset 0 0 8px #d50c0c; }
    }

  .inner {
	background-color:transparent;
	width:10px;
	height:10px;
	border-radius:50px;
	box-shadow: 0 0 8px #53e21b, inset 0 0 8px #53e21b;
	-webkit-animation: pulse 2s linear 1s infinite;
  }
  .inner p {
	display:block;
	text-align: center;
	line-height: 100px;
	font-family:sans-serif;
	font-weight:100;
	font-size:24px;
	color: #53e21b;
	text-shadow: 0 0 4px #53e21b;
  }

  .inner2 {
    background-color:transparent;
    width:10px;
    height:10px;
    border-radius:50px;
    box-shadow: 0 0 8px #d50c0c, inset 0 0 8px #d50c0c;
    -webkit-animation: pulse2 2s linear 1s infinite;
    }

  .inner2 p {
    display:block;
    text-align: center;
    line-height: 100px;
    font-family:sans-serif;
    font-weight:100;
    font-size:24px;
    color: #d50c0c;
    text-shadow: 0 0 4px #d50c0c;
    }

  .btn-outline-primary {
    color: #861A22;
    border-color: #861A22;
}

.btn-outline-primary:hover {
    color: #ffffff;
    border-color: #861A22;
	background-color: #861A22;
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--first-color);
    font-size: 1.5rem;
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

.header_img img {
    width: 40px
}

.navName {
    height: 60px;
    width: 120px;
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: #D1D9E0;
    margin-bottom: 1.5rem;
    transition: .3s
}

.nav_link:hover {
    color: var(--white-color)
}

.nav_icon {
    font-size: 1.25rem
}

.show {
    left: 0
}

.accordion {
    box-shadow: none;
    outline: none !important;
}

.accordion-header {
    background-color: #FFFFFF;
    color: #861A22;
    outline: none !important;
    box-shadow: none;
}

    .accordion-header:active {
        background-color: #861A22;
        color: #FFFFFF;
        outline: none !important;
        box-shadow: none;
    }
/**/
/*.accordion-button:focus {
    background-color: #D8B75A;
    color: #FFFFFF;
}*/

.accordion-button:not(.collapsed) {
    background-color: #861A22;
    color: #ffffff;
    outline: none !important;
}

.accordion-button {
    background-color: #861A22;
    color: #000000;
}

    .accordion-button:hover {
        color: #FFFFFF;
    }

    .accordion-button:focus {
        outline: none !important;
        outline-color: none;
        box-shadow: none;
    }

@media screen and (max-width:991 px) {
    .product-image-small {
        height: 16vw;
        width: 16vw;
        padding: 5px;
        position: relative;
        margin-top: 15px;
    }
}

.active {
    color: var(--white-color)
}

.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.height-100 {
    height: 100vh
}

.showMobileSearch {
    background-color: #861a22;
    border-bottom: solid;
    border-color: #861a22;
}

@media screen and (max-width: 1055px) {
    .mobview {
        margin-top: 15px;
    }

    .smallView {
        display: none;
    }

    .promoHeight {
        height: 52vw !important;
    }

    .promoButton {
        font-size: 2.8vw;
        background-color: transparent;
        color: #cbcbcb;
        border-width: thin;
        border: solid;
        border-color: #D8B75A;
        border-radius: 2vw;
    }

    .promoMainTextA {
        position: absolute;
        top: 20%;
        left: 38%;
        transform: translate(-50%, -50%);
        color: #cbcbcb;
        width: 60%;
        word-wrap: break-word;
        font-size: 3.4vw;
        text-shadow: 1px 1px 2px #a4a4a4, 0 0 1em #000000, 0 0 0.2em #000000;
    }

    .promoMainTextB {
        position: absolute;
        top: 40%;
        left: 35%;
        transform: translate(-50%, -50%);
        color: #ffffff;
        text-shadow: 1px 1px 2px #a4a4a4, 0 0 1em #D8B75A, 0 0 0.2em #D8B75A;
        width: 60%;
        word-wrap: break-word;
        font-size: 5.4vw
    }

    .promoMainTextC {
        position: absolute;
        top: 60%;
        left: 20%;
        transform: translate(-50%, -50%);
    }

    .promoMainTextD {
        position: absolute;
        top: 90%;
        left: 40%;
        transform: translate(-50%, -50%);
        color: #cbcbcb;
        width: 60%;
        word-wrap: break-word;
        font-size: 2.9vw;
        text-shadow: 1px 1px 2px #a4a4a4, 0 0 1em #000000, 0 0 0.2em #000000;
    }

    .nav_list {
        /*max-height: 50% !important;*/
    }

    .showMobileSearch {
        display: block !important;
    }

    .desktopSerch {
        display: none !important;
    }

    .product-image-small {
        height: 11vw;
        width: 11vw;
        padding: 5px;
        position: relative;
        margin-top: 15px;
    }



    .checkoutScale {
        min-width: 100%;
    }

    .l-navbar {
        position: fixed;
        top: 0;
        left: -30%;
        width: var(--nav-width);
        height: 100vh;
        background-color: var(--first-color);
        padding: .5rem 1rem 0 0;
        transition: .5s;
        z-index: var(--z-fixed)
    }

    /*small show*/
    .show {
        width: calc(var(--nav-width) + 200px);
        left: 0px;
    }

    .header {
        width: 100%;
        height: var(--header-height);
        position: fixed;
        top: 0px;
        left: 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 1rem;
        background-color: var(--white-color);
        z-index: var(--z-fixed);
        transition: 0.5s;
    }

    .mobileCart {
        display: block !important;
    }

    .desktopCart {
        display: none !important;
    }

    .nav-sub-cat {
        max-height: 100%;
        max-width: 200px;
        display: block;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }
}

@media screen and (min-width: 200px) {
    .nav-sub-cat {
        max-height: 100%;
        max-width: 200px;
        display: block ;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }
}

@media screen and (min-width: 1055px) {
    body {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
    }

    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }

    .header_img {
        width: 40px;
        height: 40px
    }

        .header_img img {
            width: 45px
        }

    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0;
    }

    .show {
        width: calc(var(--nav-width) + 156px)
    }

    .nav-sub-cat {
        max-height: 100%;
        max-width: 200px;
        display: block;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }


    .promoHeight {
        height: 100vw;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #861A22;
    --first-color-light: #ffffff;
    --white-color: #ffffff;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

header .navbar-default ul.navbar-nav li a:hover:after {
    background-color: transparent;
}

a {
	text-decoration: none;
}

.sidebar li .submenu{ 
	list-style: none; 
	margin: 0; 
	padding: 0; 
	padding-left: 1rem; 
	padding-right: 1rem;
}

.dropdown-toggle::after {
    visibility: hidden;
}

.bx {
    font-family: boxicons!important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
}

.searchbar{
    margin-bottom: auto;
    margin-top: auto;
    height: 60px;
    border-radius: 30px;
    padding: 10px;
    display: flex;
    }

    .search_input{
    color: #858585;
    border: 0;
    outline: 0;
    background: none;
    width: 215px;
    caret-color:transparent;
    line-height: 40px;
    }

       .searchbar:hover > .search_icon{
    background: white;
    color: #000;
    }


    .search_icon{
    height: 40px;
    width: 40px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color:#858585;
    text-decoration:none;
    } 

    .ftco-footer-social li {
        list-style: none;
        margin: 0 10px 0 0;
        display: inline-block;
    }

    .footer-07 .ftco-footer-social li a {
        background: transparent;
        border: 1px solid #a3de83;
    }

    .ftco-footer-social li a span {
        position: absolute;
        font-size: 20px;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .copyright {
        color: #b9b9b9;
    }

.footer-link {
    color: #b9b9b9;
}

    .footer-link a:hover {
color: #000000;
    }

.linkTextMute {
    color: #b9b9b9;
}

    .linkTextMute:hover {
        color: #861a22;
        cursor: pointer;
    }

.headerBar {
    border-bottom: solid;
    border-bottom-width: medium;
    border-bottom-color: #861a22;
}

    .notification-ui a:after {
        display: none;
      }
       
      .notification-ui_icon {
        position: relative;
      }
      .navbar-collapse {
          flex-basis: 100%;
          flex-grow: unset !important;
          align-items: center;
      }
      .notification-ui_icon .unread-notification {
        display: inline-block;
        height: 7px;
        width: 7px;
        border-radius: 7px;
        background-color: #66BB6A;
        position: absolute;
        top: 7px;
        left: 12px;
      }
       
      @media (min-width: 900px) {
        .notification-ui_icon .unread-notification {
          left: 20px;
        }
      }
       
      .notification-ui_dd {
        padding: 0;
        border-radius: 10px;
        -webkit-box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0.16);
                box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0.16);
        border: 0;
        max-width: 400px;
      }
       
      @media (min-width: 900px) {
        .notification-ui_dd {
          min-width: 400px;
          position: absolute;
          left: -180px;
          top: 70px;
        }
      }
       
      .notification-ui_dd:after {
        content: "";
        position: absolute;
        top: -30px;
        left: calc(50% - 7px);
        border-top: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #fff;
        border-left: 15px solid transparent;
      }
       
      .notification-ui_dd .notification-ui_dd-header {
        border-bottom: 1px solid #ddd;
        padding: 15px;
      }
       
      .notification-ui_dd .notification-ui_dd-header h3 {
        margin-bottom: 0;
      }
       
      .notification-ui_dd .notification-ui_dd-content {
        max-height: 200px;
        overflow: auto;
      }
       
      .notification-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 20px 0;
        margin: 0 25px;
        border-bottom: 1px solid #ddd;
      }
       
      .notification-list--unread {
        position: relative;
      }
       
      .notification-list--unread:before {
        content: "";
        position: absolute;
        top: 0;
        left: -25px;
        height: calc(100% + 1px);
        border-left: 2px solid #861a22;
      }
       
      .notification-list .notification-list_img img {
        height: 48px;
        width: 48px;
        border-radius: 50px;
      }
       
      .notification-list .notification-list_detail p {
        margin-bottom: 5px;
        line-height: 1.2;
      }
       
      .notification-list .notification-list_feature-img img {
        height: 48px;
        width: 48px;
        border-radius: 5px;
        margin-left: 20px;
      }

      .cart-badge {
        position: absolute;
        top: 0;
        right: 0;
        display:inline-block;
        min-width:10px;
        padding:3px 7px;
        font-size:12px;
        font-weight:700;
        line-height:1;
        color:#fff;
        text-align:center;
        white-space:nowrap;
        vertical-align:baseline;
        background-color:#777;
        border-radius:10px;
    }

    .cart-product-code {
        color: #c0c0c0;
    }

    .custom-scrollbar {
        position: relative;
        width: 800px;
        height: 400px;
        overflow: auto;
      }

      #scroll{
        opacity: .7;
      }

/* Scrollbar */
::-webkit-scrollbar {
    width: .45rem;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(27, 27, 27, .4);
    border-radius: 3px;
}
::-webkit-scrollbar-track{
    background: transparent;
}


.cart-icon {
    color: #c0c0c0;
}

.cart-icon:hover {
    color: #861a22;
}

.cart-icon:active {
    color: #861a22;
}

.cart-remove {
    color: #c0c0c0;
}


.cart-remove:hover{
    color:#861a22;
    font-weight: bolder;
}

.btn-fleet {
    color: #861a22;
    background-color: #fff;
    border-color: #861a22;
}

.btn-fleet:hover {
    color: #fff;
    background-color: #861a22;
    border-color: #861a22;
}

.btn-fleet-alt {
    color: #7c7c7c;
    background-color: #b9b9b947;
    border-color: #b9b9b947;
}

.btn-fleet-alt:hover {
    color: #fff;
    background-color: #861a22;
    border-color: #861a22;
}

.nav-sub-cat {
    max-height: 100%;
    max-width: 200px;
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.cart-total-val {
    font-weight: bolder;
}

.cstw {
    width: calc(var(--nav-width));
}

.nav-sub-cat.flex-column.ms-1.custom-scrollbar-js.collapse.show {
    
}

.login-card {
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.login-card .login-message {
	background: #861a22;
	color: #fff;
    background-image: url(../Images/vehicle-parts-pattern.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.login-card .login-body {
	flex: 2;
	padding: 48px 24px;
}
@media (min-width: 768px) {
	.login-card .login-body {
		padding: 80px 50px;
	}
}


.login-card .login-body .login-body-wrapper {
	max-width: 100%;
}

@media (max-width: 767px) {
    .login-card .login-body .login-body-wrapper {
        padding: 3rem!important;
    }
}

.or-divider {
	height: 40px;
	width: 40px;
}

.btn-facebook {
	background: #4267b2;
	border-color: #4267b2;
	color: #fff;
}
.btn-facebook:hover,
.btn-facebook:focus {
	color: #fff;
}

.btn-google {
	background: #db3236;
	border-color: #db3236;
	color: #fff;
}
.btn-google:hover,
.btn-google:focus {
	color: #fff;
}

.cstmargin {
    margin-top: 30px;
}

.cstmargin2 {
    margin-top: 20px;
}

.hover {
  overflow: hidden;
  position: relative;
  padding-bottom: 60%;
}

.hover-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  transition: all 0.4s;
}

.hover img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.hover-content {
  position: relative;
  z-index: 99;
}

.hover-5::after {
  content: '';
  width: 100%;
  height: 10px;
  background: #861a22;
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  transition: all 0.3s;
  z-index: 999;
}

.hover-5 .hover-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.hover-5-title {
  position: absolute;
  bottom: 1rem;
  left: 0;
  transition: all 0.3s;
  padding: 2rem 3rem;
  z-index: 99;
}

.hover-5-title span {
  transition: all 0.4s;
  opacity: 0;
  color: #861a22;
}

.hover-5:hover .hover-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.hover-5:hover .hover-5-title {
  bottom: 0;
}

.hover-5:hover .hover-5-title span {
  opacity: 1;
}

.hover-5:hover::after {
  bottom: 0;
}

.hover {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
  }
  
  .hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
  }
  
  .hover img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
  }
  
  .hover-content {
    position: relative;
    z-index: 99;
  }
  
  .hover-5::after {
    content: '';
    width: 100%;
    height: 10px;
    background: #861a22;
    position: absolute;
    bottom: -10px;
    left: 0;
    display: block;
    transition: all 0.3s;
    z-index: 90;
  }
  
  .hover-5 .hover-overlay {
    background: rgba(0, 0, 0, 0.4);
  }
  
  .hover-5-title {
    position: absolute;
    bottom: 1rem;
    left: 0;
    transition: all 0.3s;
    padding: 2rem 3rem;
    z-index: 99;
  }
  
  .hover-5-title span {
    transition: all 0.4s;
    opacity: 0;
    color: #861a22;
  }
  
  .hover-5:hover .hover-overlay {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .hover-5:hover .hover-5-title {
    bottom: 0;
  }
  
  .hover-5:hover .hover-5-title span {
    opacity: 1;
  }
  
  .hover-5:hover::after {
    bottom: 0;
  }

.area-category-margin {
  margin-top:75px ;
  }

  .checkout-table {
    border-spacing: 0 15px;
    border-collapse: separate;
  }
  .checkout-table thead tr th,
  .checkout-table thead tr td,
  .checkout-table tbody tr th,
  .checkout-table tbody tr td {
    vertical-align: middle;
    border: none;
  }
  .checkout-table thead tr th:nth-last-child(1),
  .checkout-table thead tr td:nth-last-child(1),
  .checkout-table tbody tr th:nth-last-child(1),
  .checkout-table tbody tr td:nth-last-child(1) {
    text-align: center;
  }
  .checkout-table tbody tr {
   /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px; */
  }
  .checkout-table tbody tr td {
    background: #fff;
  }
  .checkout-table tbody tr td:nth-child(1) {
    border-radius: 5px 0 0 5px;
  }
  .checkout-table tbody tr td:nth-last-child(1) {
    border-radius: 0 5px 5px 0;
  }
  
  .checkout-user-info {
    display: flex;
    align-items: center;
  }
  .checkout-user-info__img img {
    margin-right: 15px;
    height: 55px;
    width: 55px;
    /*border-radius: 45px;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
  }

  .box {
    margin-bottom: 25px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.1);
  }
  .box__header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
  }
  .box__header h1,
  .box__header h2,
  .box__header h3,
  .box__header h4,
  .box__header h5,
  .box__header h6 {
    margin-bottom: 0;
  }
  .box__body {
    padding: 20px;
  }
  
  .timeline__row {
    display: flex;
    position: relative;
  }
  .timeline__row_icon {
    width: 30px;
    margin-right: 20px;
    z-index: 1;
  }
  .timeline__row_content {
    width: calc(100% - 30px);
    margin-bottom: 20px;
  }
  .timeline__row_content .badge {
    margin-bottom: 10px;
  }
  .timeline__row_content_desc {
    padding: 15px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  }
  .timeline__row:nth-last-child(1) .timeline__row_content {
    border: none;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  .timeline__row:nth-last-child(1):before {
    height: 0;
  }
  .timeline__row:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    left: 15px;
    background: #d5d5d5;
  }

.sideNavBarLimit {
    max-height: 60vh;
}
  
  .timeline .timeline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 30px;
    color: #03a9f4;
    background: #fff;
    border: 2px solid #03a9f4;
  }
  .timeline .timeline-icon.success {
    color: #4caf50;
    border-color: #4caf50;
  }
  .timeline .timeline-icon.warning {
    color: #ff9800;
    border-color: #ff9800;
  }
  .timeline .timeline-icon.danger {
    color: #f44336;
    border-color: #f44336;
  }

  .modal-backdrop.fade.show{
    width:100%
  }

  .btn-light-alt {
    color: #fff;
    background-color: #dbdbdb;
  }
 
  .numkey:hover, numkey:focus {
    outline: none;
  }

  .stat-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
  }
  .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  .stat-card__icon-circle {
    height: 60px;
    width: 60px;
    border-radius: 60px;
    background: rgba(0, 123, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stat-card__icon-circle i {
    font-size: 30px;
    color: #007bff;
  }
  .stat-card__icon.stat-card__icon--success .stat-card__icon-circle {
    background: rgba(40, 167, 69, 0.2);
  }
  .stat-card__icon.stat-card__icon--success .stat-card__icon-circle i {
    color: #28a745;
  }
  .stat-card__icon.stat-card__icon--danger .stat-card__icon-circle {
    background: rgba(220, 53, 69, 0.2);
  }
  .stat-card__icon.stat-card__icon--danger .stat-card__icon-circle i {
    color: #dc3545;
  }
  .stat-card__icon.stat-card__icon--warning .stat-card__icon-circle {
    background: rgba(255, 193, 7, 0.2);
  }
  .stat-card__icon.stat-card__icon--warning .stat-card__icon-circle i {
    color: #ffc107;
  }
  .stat-card__icon.stat-card__icon--primary .stat-card__icon-circle {
    background: rgba(0, 123, 255, 0.2);
  }
  .stat-card__icon.stat-card__icon--primary .stat-card__icon-circle i {
    color: #007bff;
  }

  .delivery-card {
    background: #fff;
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .delivery-card__content {
    padding: 25px;
  }
  .delivery-card__content-top {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
  .delivery-card__content-top .delivery-card_img {
    margin-right: 25px;
  }
  .delivery-card__content-top .delivery-card_img img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 8px;
  }
  .delivery-card__content-top .delivery-card_info {
    flex: 1;
  }
  .delivery-card__content-top .delivery-card_info a {
    color: #113357;
  }
  .delivery-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    background: #fafafa;
  }
  
  .delivery-label {
    display: inline-block;
    padding: 6px 12px;
    background: #f1f4f7;
    border-radius: 5px;
    margin-right: 2px;
    margin-top: 15px;
  }

  .tblp {
    border-style: solid;
    border-width: 25px 0;
    border-color: #fff;
    
  }

  .customfc {
    padding-left: 0;

  }

  .customcheck {
    background-color: #861a22;
    border-color: #861a22;
  }

  .favourite-icon {
    content: "\f08a";
  }

  .favourite-icon:hover {
    content: "\f004";
  }

  .iconBadge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: #861a22;
    border-radius: 10px;
    }

    .tbody {
      border-style: solid;
      border-width: 25px 0;
      border-color: #fff;
      }
    

    i.bx.bx-x.remove-item {
      color: #cdcbcb;
    }

    i.bx.bx-x.remove-item:hover {
      color: #861a22;
    }

    .remove-item {
      color: #cdcbcb;
    }

    .remove-item:hover {
      color: #861a22;
      font-weight: bold;
    }

    .responsive-table {
        border-collapse: separate;
        border-spacing:0 20px;
    
    }

    .txtcolour{
        color:black;
    }

        .txtcolour:hover {
            color: black;
        }

    .dontlookatme{
        display:none;
    }

    .tablespace {
      padding-bottom: 2rem;
    }

    .xactive {
        box-shadow: 0 0 3px 0 #861a22!important;
        border: 1px solid #861a22  !important; 
    }

    .image-zoom-gallery {
        border: 1px solid #00000000;
    }

    .btn-fleet-darker {
      background-color: #861a22;
      color: #fff;
      border-color: #861a22;
  }

  .btn-fleet-darker:hover {
    background-color: #861a22;
    color: #fff;
    border-color: #861a22;
}
  
  .btn-fleet-keypad {
      color: #861a22;
      background-color: #ffffff;
      border: solid 1px #861a22;
      box-shadow: none;
  }

  .btn-fleet-keypad:hover {
    color: #ffffff;
    background-color: #861a22;
    border: solid 1px #861a22;
    box-shadow: none;
}
  
  .btn-fleet-keypad-2 {
    color: #861a22;
    background-color: #ffffff;
    border: solid 1px #861a22;
    box-shadow: none;
  }

  
  .btn-fleet-keypad-2:hover {
    color: #ffffff;
    background-color: #861a22;
    border: solid 1px #861a22;
    box-shadow: none;
  }

  .basket-prod-desc a { 
    color: #861a22 !important;
  }

  .btn-category {
    background-color: #ECEFF1;
    text-transform: capitalize !important;
    box-shadow: none;
}

.cat-active {
    background-color: #861a22;
    text-transform: capitalize !important;
    box-shadow: none;
    color: white;
}

.cat-active:hover {
  background-color: #861a22 !important;
  text-transform: capitalize !important;
  box-shadow: none;
  color: white;
}

.btn-category:hover {
  background-color: #7e7e7e;
  text-transform: capitalize !important;
  box-shadow: none;
  color: white;
}

.btn-category:active {
  background-color: #861a22;
  text-transform: capitalize !important;
  box-shadow: none;
  color: white;
}


.btn-category-rounded {
  border-radius: 10rem;
  margin:3px;
}

.jani-icon {
  padding-left: 5px;
  font-size: 1.3em;
}

.cookie-accept {
  background-color: #861a22;
    text-transform: capitalize !important;
    box-shadow: none;
    color: white;
}

.cookie-accept:hover {
  background-color: #861a22;
    text-transform: capitalize !important;
    box-shadow: none;
    color: white;
}

.mainName::after {
    content: 'Fleet Factors'
}

.newAccountStart::after {
    content: 'Interested in a web trade account?';
}

.newAccountMid::after {
    content: ' Register your interest';
}

.newAccountEnd::after {
    content: ' or speak to your customer account manager or sales representative to open your account. '
}

.breadcrumb-item a {
    color: #861A22;
}

.pageNumber {
    color: #FFFFFF;
    background-color: #861A22;
    border-radius: 500vw;
    height: 20px;
    width: 20px;
    font-weight: bold;
    box-shadow: inset 0 12px 17px rgba(129, 140, 151, 0.1);
}

.pageTextColour {
    color: #861A22;
}

@media screen and (max-height: 720px) {
    .sideNavBarLimit {
        max-height: 60vh;
    }
}

@media screen and (max-height: 667px) {
    .sideNavBarLimit {
        max-height: 60vh;
    }
}

@media screen and (max-height: 600px) {
    .sideNavBarLimit {
        max-height: 60vh;
    }
}

@media screen and (max-height: 900px) {
    .sideNavBarLimit {
        max-height: 60vh;
    }
}

@media screen and (max-height: 700px) {
    .sideNavBarLimit {
        max-height: 60vh;
    }
}



/*@media screen and (max-width: 548px) {
  .mobile-dis {
    display:none;
  }}*/

  @media screen and (max-width: 1055px) {
    .mobview {
      margin-top: 15px;
     }}

    @media screen and (max-width: 1055px) {
      .mobpos {
        text-align: left !important; 
      }}

      .mobpos {
        text-align: right; 
      }

      .usrMaintenance {
        font-weight: 700;
      }

      .usrMaintenance a { 
        color: #861a22 !important;
      }

    
      
    
