/* POPPINS FONT */
.poppins-thin {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: italic;
}

/*  HOVER CSS */
.hvr-fade:hover,
.hvr-fade:focus,
.hvr-fade:active {
    background-color: #e50033;
    color: white !important;
}
.hvr-fade a:hover {
	color: white !important;
}


/* BODY FONT */
html, body{
    font-family: "Poppins", serif;
    -webkit-font-smoothing: antialiased;
    font-size: .95rem;
}

/*	GLOBAL CHANGES */
html{
	scroll-behavior: smooth;
}
a {
	color: #494f54!important;
	text-decoration: none;
	background-color: transparent;
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}
a:hover, a:focus{
	text-decoration: none;
	color:#e50033 !important;
}
.nav-item-main:hover, .nav-item-main:focus{
    color: #fff !important;
}
/* CHANGE CONTAINER WIDTH TO 1440PX */

@media (min-width: 1440px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 1440px;
	}
}

/* back to top button style */

#toTopBtn {
	position: fixed;
	display: inline-block;
	bottom: 10px;
	right: 10px;
	z-index: 9999;
	text-align: center;
	font: normal 32px/1 Arial, Helvetica, sans-serif;
	color: #fff !important;
	background: #e50033;
	padding: 5px 10px;
	cursor: pointer;
	border: 0;
	opacity: 0;
	visibility: hidden;
	text-decoration: none;
	transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
}
.show {
	opacity: 1!important;
	visibility: visible !important;
	}

/* TOP HEADER TRIP */
.topheader .nav-link{
	line-height: 2;
}
.topheader .nav-link {
    display: block;
    padding: .3rem;
    margin-right: .5rem;
}
.topheader .nav-link.social-media-icons {
    font-size: 1.5rem;
    margin: 0 !important;
    padding: 0 !important;
    margin-right: 5px !important;
    line-height: 35px;
}
.topheader .nav-link.social-media-icons .fa-brands.fa-square-x-twitter{color: #1DA1F2; transition: all .3s ease-in-out;}
.topheader .nav-link.social-media-icons .fa-brands.fa-linkedin{color: #0077B5; transition: all .3s ease-in-out}
.topheader .nav-link.social-media-icons .fa-brands.fa-square-facebook{color: #1877F2; transition: all .3s ease-in-out}
.topheader .nav-link.social-media-icons .fa-brands.fa-square-instagram{color: #cd486b; transition: all .3s ease-in-out}
.topheader .nav-link.social-media-icons .fa-solid.fa-square-rss{color: #f26522; transition: all .3s ease-in-out}

.topheader .nav-link.social-media-icons .fa-brands.fa-square-x-twitter:hover,
.topheader .nav-link.social-media-icons .fa-brands.fa-linkedin:hover,
.topheader .nav-link.social-media-icons .fa-brands.fa-square-facebook:hover,
.topheader .nav-link.social-media-icons .fa-brands.fa-square-instagram:hover,
.topheader .nav-link.social-media-icons .fa-solid.fa-square-rss:hover {
    color:#e50033 !important;
}


/* SECTION HEADER WITH LOGO NAD SEARCH BOX THAT WILL FIXED ON TOP WHILE SCROLLING */
.fixed_on_top {
	position: fixed; /* Changes position when fixed */
	top: 0;
	width: 100%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adds shadow for effect */
	z-index: 9999;
	background-color: white;
  }

/* Logo Style in mobile when basket will be visible */
@media screen and (max-width: 991.98px) {
    .navbar-brand.brand-wrap{
        max-width: 60% !important;
        margin-right: 10px !important;
    }
}
/* STYLISED SEARCH FORM */
.section-header .form-inline{position: relative;}
.section-header .form-control {
	height: calc(3em + .75rem + 2px);
	padding: .75rem;
	font-size: .9rem;
}
.section-header .form-control:focus {
	background-color: #fff;
	border-color: rgb(46, 39, 106);
	box-shadow: none;
}
.section-header .input-group-append {
    position: absolute;
    right: 0;
    top: auto;
    bottom: auto;
	z-index: 999;
}
.section-header .search-button {
	padding:1rem;
}

/* DROPDOWN */
.cart-dropdown {
	width: 30rem;
	max-width: 100%;
}

.cart-dropdown .form-control {
font-size: 14px;
}

.cart-dropdown button {
font-size: 14px;
}

.cart-dropdown .cart-summary {
font-size: 14px;
}

.cart-dropdown hr {
margin: 0.5rem 0;
}
.cart-dropdown a.btn.btn-danger{
    color:#fff !important;
}
.cartDrop.btn-lg {
    border-radius: 0 !important;
    height: 58px;
}
.section-header .cart-dropdown .form-control {
    border: 1px solid #ced4da !important;
    border-radius: 0px !important;
}
.section-header i.fa.mid-bar-icons {
    font-size: 2rem !important;
    margin-right: 10px;
    margin-top: 5px;
}

/*Secondary form Mobile Version */
form.d-lg-none{width: 90%;}
@media only screen and (max-width: 570px){
	form.d-lg-none {width: 80%;}
	.form-control {width: 80% !important;}
}

.fixed_on_top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background:#fff;
  }
/* MAIN NAVIGATION MENU WITH MEGA DROPDOWN MENU 4 COLUMNS */

/* adds some margin below the link sets  */
.navbar .dropdown-menu div[class*="col"] {
    margin-bottom: 1rem;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgb(255, 255, 255);
}
.navbar .dropdown-menu {
    border: none;
    background-color: #fff !important;
    padding-bottom: 1rem !important;
}
.navbar .dropdown-menu .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.navbar .dropdown-menu .nav-link:hover,
.navbar .dropdown-menu .nav-link .active:hover {
    color: rgba(0, 0, 0, 1);
}
/* breakpoint and up - mega dropdown styles */
@media screen and (min-width: 992px) {
    /* remove the padding from the navbar so the dropdown hover state is not broken */
    .navbar {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    /* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
    .navbar .nav-item {
        padding: 0.5rem 0.5rem;
        margin: 0 0.25rem;
    }

    /* makes the dropdown full width  */
    .navbar .dropdown {
        position: static;
    }

    .navbar .dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
        /*  height of nav-item  */
        top: 45px;
    }

	/* Mobile view: up to 767px wide */
@media (max-width: 767px) {
  	.navbar .dropdown:hover .dropdown-menu,
    .navbar .dropdown .dropdown-menu:hover {
        display: block !important;
    }
}

/* Desktop view: 768px and wider */
@media (min-width: 768px) {
	.navbar .dropdown.show .dropdown-menu {
   		 display: block !important;
	}
    
}


/* on touch devices */
@media (hover: none) and (pointer: coarse) {
    .navbar .dropdown:hover .dropdown-menu,
    .navbar .dropdown .dropdown-menu:hover {
        display: block !important;
    }
}

    /* shows the dropdown menu on hover 
    .navbar .dropdown:hover .dropdown-menu,
    .navbar .dropdown .dropdown-menu:hover {
        display: block !important;
    }*/

 
    .navbar .dropdown-menu {
        border: 1px solid rgba(0, 0, 0, 0.15);
        background-color: #fff;
    }
    .dropdown-menu .nav-item {
        padding: 0;
        margin: 0;
        width: max-content;
    }
    .megamenu .col-md-3 {
        width: 300px;
    }
}

/* MAIN CAROUSEL SLIDER */
.carousel > .carousel-inner > .carousel-item{
    height: auto;
}

/* 12 TOP CATEGORY BOXES */

section.topCat {
    width: 100%;
    padding: 0;
    margin: 0;
}
.TCC{
	width: 100%;
	overflow: hidden;
}
.TCC .card-img {
	-moz-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.TCC .card-img:hover{
	transform: scale(1.2);
}
.topCat .card-img-overlay {
    top: 80%;
    padding: 1.25rem;
    border-radius: 0;
    background-color: rgba(0, 0, 0, .75) !important;
}


.trends {
    padding-top: 80px;
    padding-bottom: 80px;
	background-color: #eee;
}

.roy_text {margin-top: 17px}
.roy_text p:last-child {margin-bottom: 0px}
.roy_slider_nav {margin-top: 27px}
.roy_nav {
	display: inline-block;
	width: 36px;
	height: 36px;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	margin-right: 16px;
	background-color: rgb(46, 39, 106);
}

.roy_nav:last-child {
    margin-right: 0px
}

.roy_nav i {
    line-height: 36px;
    color: #fff;
    font-size: 18px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease
}

.roy_nav:hover i {
    color: #474747
}
/**************************************
    HOMEPAGE PRODUCTS SECTION STYLING
**************************************/
.roy_item {
	background: #FFFFFF;
	border-radius: 1px;
	padding: 10px;
    min-height: 520px !important;
}
@media screen and (max-width: 575px) {
    .roy_item {
        padding: 2rem;
        margin: 1rem;
    }
}
.roy_image {
    width: 100%;
    height: 150px;
    margin-top: 6rem;
}

.roy_image img {
    width: auto !important;
    max-width: 100% !important
}
.roy_brand .roy_brand_logo{
    height: 32px !important;
    width: auto !important;
}
.roy_category a {
    font-size: 14px;
    line-height: 16px;
    color: rgba(46, 39, 106, 1);
    min-height: 65px!important;
}

.roy_category a:hover {
    color: #0e8ce4
}

.roy_content {
    margin-top: 24px
}

.roy_category a:hover,
.roy_name a:hover {
	color: rgb(46, 39, 106);
}
.roy_price {
    font-size: 16px;
    font-weight: 500;
}

.roy_item:hover .roy_fav {
    visibility: visible;
    opacity: 1
}

/* PRODUCT ITEMS RIBBON */
.ribbon {
    position: absolute;
    top: 20px;
    right: -5px;
    padding: 15px;
}
.ribbon.base {
    background: #e50033;
    color: #fff;
    border-right: 5px solid #e50033;
}
.ribbon.green {
    background: #0fa60b;
    color: #fff;
    border-right: 5px solid #0fa60b;
}
.ribbon.purple {
    background: #7d20d6;
    color: #fff;
    border-right: 5px solid #7d20d6;
}
.ribbon.blue {
    background: #1321eb;
    color: #fff;
    border-right: 5px solid #1321eb;
}
.ribbon.orange {
    background: #f77601;
    color: #fff;
    border-right: 5px solid #f77601;
}
.ribbon.grey {
    background: #aaa69d;
    color: #fff;
    border-right: 5px solid #aaa69d;
}
.ribbon:before, .ribbon:after {
    content: '';
    position: absolute;
    left: -9px;
    border-left: 10px solid transparent;
}
.ribbon:before {
    top: 0;
}
.ribbon:after {
    bottom: 0;
}
.ribbon.base:before {
    border-top: 27px solid #e50033;
}
.ribbon.base:after {
    border-bottom: 27px solid #e50033;
}
.ribbon.blue:before {
    border-top: 27px solid #1321eb;
}
.ribbon.blue:after {
    border-bottom: 27px solid #1321eb;
}
.ribbon span {
    display: block;
    font-size: 16px;
    font-weight: 600;
}
.AQL {
    display: inline-block;
    margin-right: 10px;
}
p.saveDisc {
    display: inline-block;
    padding: 5px 10px;
    color: #dc3545;
    font-size: 80%;
    font-weight: 600;
    border: 2px solid #dc3545;
}

@media only screen and (max-width: 991px) {
    .roy_slider_container {
        margin-top: 15px
    }
}
.roy_price h5{
    font-size: 2rem; /* 2.5rem; */
}
p.verySmall {
    font-size: .65rem;
    letter-spacing: 0px;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
    transition: transform 5s linear !important;
}

/* FOOTER QUICK LINKS */

.mt-6{margin-top:3.5rem;}
.bg-black{background-color:#141414;}
footer ul li a {
    color: #ccc;
}

footer .quicklinks ul li a:hover {
    color: #FFF !important;
}
@media only screen and (max-width: 991px){
	footer ul li a {
		color: #FFF !important;
		line-height: 2 !important;
	}
}

/**********************************************************
    SEARCH RESULT PAGE - PRODUCT SEARCH PAGE WITH FILTERS
**********************************************************/
/* BREADCRUMS style */
.breadcrumb {
    background-color: transparent;
    padding: 8px 0;
    font-size: 14px;
  }
  
  .breadcrumb-item a {
    text-decoration: none;
    color: #000; /* Bold color */
  }
  
  .breadcrumb-item.active {
    color: #000;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6c757d;
    padding: 0 5px;
  }
  
.shop-filters {
    background: #f7f7f7;
    border-radius: 8px;
    margin-bottom: 2em;
    padding-bottom: 1em;
    position: relative;
    width: 100%;
}
.shop-filters .filter-title {
    background: #9e9e9e;
    padding: 18px 15px;
    border-radius: 8px 8px 0 0;
    font-size: 1.2rem;
    color: white;
    letter-spacing: 0;
    text-align: center;
    position: relative;
    bottom: 8px;
}
.shop-filters .arrow-down {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #e6e6e6;
    bottom: 8px;
    height: 0;
    margin-left: calc(50% - 10px);
    position: relative;
    width: 0;
}
section.search {
    font-size: .8rem;
    font-weight: 600;
    padding: 0 15px;
    width: 100%;
}
@media only screen and (min-width: 770px) {
    .search-with-in .clean-search {
        padding: 0;
    }
}
.sidebar{
    padding-inline: 10px;
}
.sidebar-search {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
  }
  
  .sidebar-search input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #777;
  }
  
  .sidebar-search .search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #233253;
    font-size: 20px;
  }
  /* Item in stock toggle */
  
  .stock-toggle {
    font-weight: bold;
    font-size: 16px;
    color: #000;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: 0.4s;
    border-radius: 22px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #4CAF50;
  }
  
  input:checked + .slider:before {
    transform: translateX(18px);
  }

  /* Short by Relevance*/
  .listtools .sortby {
    display: inline;
    padding-right: 10px;
}
select.productorderby {
    border: 1px solid #efefef;
    border-radius: 8px;
    cursor: pointer;
    padding: 7px;
    vertical-align: middle;
}

/* Left Side Ribbon Style */
.roy-info{
    width: 100%;
    height: 500px;
}
/* PRODUCT ITEMS RIBBON - FLIPPED TO LEFT */
.ribbon-left {
    position: absolute;
    top: 0px;
    left: -5px; /* Shifted to left */
    padding: 5px;
}

.ribbon-left.base {
    background: #e50033;
    color: #fff;
    border-left: 5px solid #e50033; /* Border on the left instead of right */
}
.ribbon-left.green {
    background: #0fa60b;
    color: #fff;
    border-left: 5px solid #0fa60b; /* Border on the left instead of right */
}
.ribbon-left.purple {
    background: #7d20d6;
    color: #fff;
    border-left: 5px solid #7d20d6; /* Border on the left instead of right */
}
.ribbon-left.blue {
    background: #1321eb;
    color: #fff;
    border-left: 5px solid #1321eb; /* Border on the left instead of right */
}

.ribbon-left.orange {
    background: #f77601;
    color: #fff;
    border-left: 5px solid #f77601; /* Border on the left instead of right */
}
.ribbon-left.grey {
    background: #aaa69d;
    color: #fff;
    border-left: 5px solid #aaa69d; /* Border on the left instead of right */
}
.ribbon-left:before, .ribbon-left:after {
    content: '';
    position: absolute;
    right: -9px; /* Adjusted to flip direction */
    border-right: 10px solid transparent; /* Right side triangle */
}

.ribbon-left:before {
    top: 0;
}

.ribbon-left:after {
    bottom: 0;
}

.ribbon-left.base:before {
    border-top: 27px solid #e50033;
}

.ribbon-left.base:after {
    border-bottom: 27px solid #e50033;
}
.ribbon-left.green:before {
    border-top: 27px solid #0fa60b;
}

.ribbon-left.green:after {
    border-bottom: 27px solid #0fa60b;
}

.ribbon-left.purple:before {
    border-top: 27px solid #7d20d6;
}

.ribbon-left.purple:after {
    border-bottom: 27px solid #7d20d6;
}

.ribbon-left.blue:before {
    border-top: 27px solid #1321eb;
}

.ribbon-left.blue:after {
    border-bottom: 27px solid #1321eb;
}

.ribbon-left.orange:before {
    border-top: 27px solid #f77601;
}

.ribbon-left.orange:after {
    border-bottom: 27px solid #f77601;
}
.ribbon-left.grey:before {
    border-top: 27px solid #aaa69d;
}

.ribbon-left.grey:after {
    border-bottom: 27px solid #aaa69d;
}

.ribbon-left span {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.product-card img {
    max-width: 100%;
    height: auto;
}
.filter-section {
    font-weight: bold;
    margin-top: 15px;
}
.product_page_all_item .roy_image {
    width: 100%;
    height: 200px;
    margin-top: 0px !important;
}



/*********************************************
    SINGLE PRODUCT PAGE
*********************************************/

/* PRODUCT IMAGE MAGNIFYING EFFECT */
.product-image-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border: 1px solid #ddd;
    padding: 10px;
    max-height: 420px;
    max-width: 420px;
	min-height: 420px;
}

#productImage {
    width: 100%;
    display: block;
    cursor: none; /* Removes the "+" zoom-in icon */
}

#magnifier {
    position: absolute;
    width: 200px; /* Larger magnifier */
    height: 200px;
    border: 2px solid #333;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 500%; /* 300% zoom */
    pointer-events: none !important;
    display: none;
    cursor: none !important; /* Removes the "+" magnifying icon */
}

/* THUMBNAIL IMAGES */
.product-thumbnails {
    gap: 10px;
  display: flex;
 /* justify-content: center;
  flex-wrap: wrap;  To wrap the thumbnails if the container is too narrow */
}

.thumbnail {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}
 
.thumbnail.active {
    border: 1px solid #ddd;
}

.productSingle .sku{
    padding: .3em .6em !important;
    font-size: 115% !important;
    color: #fff !important;
    border-radius: .25em !important;
    background-color: #334265 !important;
}

.sku{
    padding: .3em .6em !important;
    font-size: 115% !important;
    color: #fff !important;
    border-radius: .25em !important;
    background-color: #334265 !important;
}

/* Accordion */

#main {
    margin-block: 15px;
    width: 100% !important;
}

#main #faq .card {
    margin-bottom: 5px;
    border: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100% !important;
}

#main #faq .card .card-header {
    border: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    border-radius: 0px;
    padding: 0;
    border-left: 5px solid black;
    width: 100% !important;
}

#main #faq .card .card-header .btn-header-link {
    display: block;
    text-align: left;
    background: #fff;
    color: #222;
    padding: 20px;
    font-weight: bold;
    width: 100% !important;
}

#main #faq .card .card-header .btn-header-link:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    float: right;
}

#main #faq .card .card-header .btn-header-link.collapsed {
    background: #fff;
    color: #fff;
}

#main #faq .card .card-header .btn-header-link.collapsed:after {
    content: "\f106";
}

#main #faq .card .collapsing {
    background: #fff;
    line-height: 30px;
}

#main #faq .card .collapse {
    border: 0;
    border-left: solid 5px #334265;
    border-radius: 0px;
}

#main #faq .card .collapse.show {
    background: #fff;
    line-height: 30px;
    color: #222;
}


/* right sidebar */
.moreLinks {
    margin: -15px;
    padding: 15px;
    background-color: #eee;
}
.vat, .offRrp {
    font-size: .7rem;
}

/* images carousel */
.carousel-container {
    /*position: relative;*/
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5px;
}

.product-thumbnails {
    display: flex;
    gap: 5px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.thumbnail {
    min-width: 150px;
    height: 150px;
    object-fit: contain;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 5px;
}

.thumbnail.active {
    border-color: ##0066cc;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}
/*
.nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.5);
    border: none; 
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
*/
 
.btn-secondary {
    color: #fff !important;
    background-color: #6c757d;
    border-color: #6c757d;
}
/* Hide on medium (md) and large (lg) screens */
@media (min-width: 768px) and (max-width: 1600px) {
    .hidden-md .hidden-lg {
        display: none !important;
    }
}
