* Bootstrap Over-ride */

@media (min-width: 1000px){
    .container{
        max-width: 1000px;
    }
}
@media (max-width: 1200px){
    .container{
        max-width: 100%;
        padding:0 24px;
    }
}

.dropdown-toggle::after {
    display: none;
}
.dropdown-menu {
    top:58px;
    left:0px;
    padding:10px;
    margin-right:50px;

}

a {
    text-decoration: none;
    color: #000;
}


/* Consent */

.consent {
    text-decoration: underline;
    color: black;
}

/* Fonts */

.fs12 {
    font-size: 12px;
}
.fs15 {
    font-size: 0.9375rem;
}

.fw300 {
    font-weight: 300;
}
.fw500 {
    font-weight: 500;
}

/* Navigation-Main*/

/* xs */
.logo {
    width: 49px;
    height: auto;
}
/* sm */
@media (min-width: 768px) {
    .logo {
        width: 49px;
    }
}
/* md */
@media (min-width: 992px) {
    .logo {
        width: 60px;
    }
}
/* lg */
@media (min-width: 1200px) {
    .logo {
        width: 70px;
    }
}

/* Basket Menu */

.basket-qty {
    color: #fff;
    background: #ff4d4d;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 11px;
    height: 14px;
    width: 14px;
    position: absolute;
    box-sizing: content-box;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 1px;
    right: 0px;
}

.basket-btn{
    position: relative;
    background: transparent;
   -webkit-appearance:none;
    top:-2px;
}

.basket-btn:hover, .basket-btn:focus, .basket-btn:active, .basket-btn.active{
    color:#ff4d4d;
    transition-duration: 0.4s;
    background: transparent;
}

/* Search Menu */

.search-btn{
    position: relative;
    background: transparent;
   -webkit-appearance:none;
}

.search-btn:hover, .search-btn:focus, .search-btn:active, .search-btn.active{
    color:#b3e6b3;
    transition-duration: 0.4s;
    background: transparent;
}

/* Wishlist Menu */

.wishlist-btn{
    position: relative;
    background: transparent;
   -webkit-appearance:none;
}

.wishlist-btn:hover, .wishlist-btn:focus, .wishlist-btn:active, .wishlist-btn.active{
    color:#b3e6b3; 
    transition-duration: 0.2s;
    background: transparent;
}


/* Imgholder */
.imgHolder {
    position: relative;
}

.top-right {
    position: absolute;
    right: 16px;
    top: 8px;
    color: white;
    text-shadow: 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}

/* Footer */

.footer > div > div > ul > li{
    padding-bottom:8px;
}



/* Counter */

.counter{
 width: 15%;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.qty-btn{
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background-color: #d9d9d9;
 display: flex;
 justify-content: center;
 align-items: center;
 font-size: 20px;
 font-family: ‘Open Sans’;
 font-weight: 900;
 color: #202020;
 cursor: pointer;
}
.count{
 font-size: 20px;
 font-family: ‘Open Sans’;
 font-weight: 900;
 color: #202020;
}

/* demo image */

#demo .carousel-inner .carousel-item > img:hover {
    -webkit-transform: scale(1.5);
    ms-transform:scale(1.5);
    transform: scale(1.5);
}

#demo .carousel-indicators > button {
	outline: black;
	border: 1px solid black;
	background-color: gray;
}

#demo .carousel-control-prev-icon {
	outline: black;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='gray' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z' /%3e%3c/svg%3e");
}

#demo .carousel-control-next-icon {
	outline: black;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='gray' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

/* Desktop carouesel */

#myCarousel2 .carousel-innner .carousel-item {
     max-height: 100vh;
     overflow:hidden;
}

#myCarousel2 .carousel-item > img {
     object-fit:fit;
     max-height: 100vh;
}

#myCarousel2 .carousel-control-prev {
    transform: scale(1.1);
}

#myCarousel2 .carousel-control-next {
    transform: scale(1.1);
    margin-right:20px;
}

/* input/checkbox color-focus */

.form-control:focus {
    box-shadow: none !important;
    border-color: #6c757d !important;
}

.form-check-input:checked {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.form-check-input:focus {
    box-shadow: none !important;
    border-color: #6c757d !important;
}

/* Dropdown size and q-ty */

.size-dropdown {
	color: black;
	background-color: white;
        border: inset #6c757d;
}

.q-dropdown {
	color: black;
	background-color: white;
	border: inset #6c757d;
}

