/* general settings */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.navbar-toggler:focus{
    box-shadow: none;
}



.mobile{
    display: none;
}
@media (max-width: 991px){
  .mobile{
    display: block;
  }
  .desktop{
    display: none;
  }
}


*:focus {
    outline: none;
    box-shadow: none;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
}
/* end of general settings */





/* haeader */

/* header top */
.topHeader{
    background-color: #EEEEEE;
}
.topHeader p{
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0em;
    color: #1E3B6F;
    margin-top: 10px;
}
.topHeader h6{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0em;
    color: #1E3B6F;
    margin-top: 10px;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content:end;
}

.language-selector{
    margin-right: 20px;
}
.language-selector, .icons-container {
    display: flex;
    align-items: center;
}
.language-selector p {
    margin-right: 10px; 

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0em;
    color: rgb(0, 0, 0);
}
.language-selector select{
    border: 1px solid gray;
    padding: 0 10px;
    border-radius: 5px;
}
.icons-container .icon {
    text-align: center;
    margin-right: 10px; 
}
.icons-container .icon:last-child {
    margin-right: 0;
}
.icons-container .icon i {
    font-size: 24px; 
}
.icons-container .icon p {
    margin:0;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 300;
    line-height: 16px;
    letter-spacing: 0em;
    color: #1E3B6F;
}
.icons-container .icon i{
    color: #1E3B6F;
    font-size: 14px;
}

/* header top */





/* header middle */
.headerMiddle {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
}




.search-box {
    border: 1px solid #b3b3b3;
    width: 362px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 3px 15px;
    border-radius: 5px;
}
.search-box input {
    border: none;
}
.search-box i {
    color: #555;
    cursor: pointer;
}
.benefits span {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0em;
    color: #1E1E1E;
    margin-left: 10px;
}
/* header middle */



/* header buttom */

.headerWithMenuBar{
    background-color: #EEEEEE;
    border: .5px solid rgb(207, 207, 207);
    padding: 5px 0;
}
.headerWithMenuBar .nav-link{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: center;
    color: #1E3B6F;
}
/* end of header buttom */
/* end of headr */


/* mobile header */
.navbar-brand img{
    width: 35%;
}

.navbar-toggler i{
    font-size: 25px;
    color: #1E1E1E;
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    display: block; /* Change 'flex' to 'block' or any other desired value */
    /* Other styles */
}





@media (max-width: 991px){
    .mobileTopIcon{
        width: 22px;
        height: 21px;
    }

    .mobileToNavbar{
        background-color:#D2D2D2;
        padding: 10px 0;
    }

    .offcanvas-header a{
        font-family: 'Montserrat', sans-serif;
        color: #1E1E1E;
        font-size: 20px;
    }

    .offcanvas-body{
        background-color: #B5B5B5;
    }

    .offcanvas-body .nav-link{
        font-family: 'Montserrat', sans-serif;
        color: #1E1E1E;
        margin-bottom: 15px;
        border-bottom: 1px solid #92929270;
        font-size: 14px;
        font-weight: 600;
        line-height: 17px;
        letter-spacing: 0em;
    }

    .offcanvas-header{
        background-color: #D2D2D2;
    }

    .mobileTopIconWrapper{
        margin-left: 5rem;
    }
  }
/* mobile header */








/* timer */
.timer{
    background-color: #1B2F5B;
    padding: 7px 0;
}

.timer p{
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
    margin-bottom: 0;
}

.timer p span{
    font-size: 15px;
}

/* Style for the time remaining display */
.timeCount {
    text-align: center;
    font-size: 18px;
}

.timeCount p {
    font-weight: bold;
    color: #fff;
}

.timeCount span {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0em;
    color: #fff;
    
}
/* Add more styles as needed */

@media (max-width: 991px){
    .timer{
        margin-top: 146px;
    }
}

@media (max-width: 768px){
    .timer {
        margin-top: 75px;
    }

    .timer p{
        font-size: 8px;
    }

    .timer p span{
        font-size: 8px;
    }
}
/* timer */








/* hero */

/* hero */




/* hero down info */
.heroDownInfo{
    background-color: #f3f3f3;
    padding: 13px 10px;
}
.heroDownInfo h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0em;
    text-align: left;
    color: #1E3B6F;
}

.heroDownInfo p{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    color: #000000;
}

@media (max-width: 768px){
    .heroDownInfo h1{
        font-size: 20px;
    }

    .heroDownInfo p{
        font-size: 12px;
    }
}
/* hero down info */






/* Product Section */
/* Styling for the filter button */




.filter{

}
.filter h4{
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    color: #1E3B6F;
}

.filter a{
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0em;
    color: #1E3B6F;
    text-decoration: none;
}


.colorGroup h4{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0em;
    color: #1E3B6F;
}

.colorGroup i{
    color: #1E3B6F;
}

.colorWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px;
}

.colorBox {
    width: 45px;
    height: 38px;
    border: 1px solid #000; /* Add a border for better visibility */
}


.productClass h4{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0em;
    color: #1E3B6F;
}

.productClass .fa-circle-question{
    color: #1E3B6F;
}






.sortBy{
    background-color: #e9e9e8;
    padding: 5px 10px;
    border: 1px solid rgb(207, 207, 207);
    border-radius: 5px;
    position: sticky;
    top: 115px;
    z-index: 9;
}


.sortBy select{
    border: 1px solid #cccccc;
    padding: 5px;
}

@media (max-width: 767px){
    .sortBy{
        padding: 0px 0px;

    }
}








/* single product */
.user-select-none {
    user-select: none;
  }
  a {
    text-decoration: none;
    color: unset;
  }
  
  .review-star {
    color: #fdcc0d;
    font-size: 13px;
  }
  /* ===========
  Product Single Card - Start
  ============= */
  .product-single-card {
    border-radius: 5px;
    box-shadow: 1px 1px 15px #cccccc40;
    transition: 0.5s ease-in;
    /* background-color: red; */
  }
  
  .product-single-card:hover {
    -webkit-box-shadow: 1px 1px 28.5px -7px #d6d6d6;
    -moz-box-shadow: 1px 1px 28.5px -7px #d6d6d6;
    box-shadow: 1px 1px 28.5px -7px #d6d6d6;
  }
  
  .product-single-card .product-info {
    padding: 15px 0 0 0;
  }
  
  .product-single-card .product-top-area {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 5px;
  }
  
  .product-single-card .product-top-area .product-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    border-radius: 3px;
    padding: 5px 10px;
    box-shadow: 1px 1px 28.5px -7px #dddddd;
    user-select: none;
  }
  
  .product-single-card .product-top-area .product-img {
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  
  .product-single-card .product-top-area .product-img .first-view {
    transition: 0.5s ease-in;
  }
  
  .product-single-card .product-top-area .product-img .hover-view {
    opacity: 0;
    transition: 0.5s ease-in;
  }
  
  .product-single-card .product-top-area:hover .product-img .first-view {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .product-single-card .product-top-area:hover .product-img .hover-view {
    opacity: 100%;
    scale: 1.2;
  }
  
  .product-single-card .product-top-area .sideicons {
    position: absolute;
    right: 15px;
    display: grid;
    gap: 10px;
  }
  
  .product-single-card .product-top-area .sideicons .sideicons-btn {
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(60px);
    transition: 0.3s ease-in;
    -webkit-box-shadow: 1px 1px 28.5px -7px #dddddd;
    -moz-box-shadow: 1px 1px 28.5px -7px #dddddd;
    box-shadow: 1px 1px 28.5px -7px #dddddd;
  }
  
  .product-single-card .product-top-area .sideicons .sideicons-btn:hover {
    color: #fff;
    background-color: #000;
  }
  
  .product-single-card .product-top-area .sideicons .sideicons-btn:nth-child(1) {
    transition-delay: 100ms;
  }
  
  .product-single-card .product-top-area .sideicons .sideicons-btn:nth-child(2) {
    transition-delay: 200ms;
  }
  
  .product-single-card .product-top-area .sideicons .sideicons-btn:nth-child(3) {
    transition-delay: 300ms;
  }
  
  .product-single-card .product-top-area .sideicons .sideicons-btn:nth-child(4) {
    transition-delay: 400ms;
  }
  
  .product-single-card .product-top-area:hover .sideicons .sideicons-btn {
    opacity: 100%;
    visibility: visible;
    transform: translateX(0);
  }
  
  .product-single-card .product-info .product-category {
    font-weight: 600;
    opacity: 60%;
  }
  
  .product-single-card .product-info .product-title {
    font-size: 16px;
    font-weight: 600;
  }
  
  .product-single-card .product-info .old-price,
  .product-single-card .product-info .new-price {
    padding-right: 15px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .product-single-card .product-info .old-price {
    text-decoration: line-through;
    opacity: 70%;
  }




  .productColorWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.colorBox2 {
    width: 20px;
    height: 20px;
    border: 1px solid #000; /* Add a border for better visibility */
}

.text-truncate {
    overflow:auto;
    text-overflow: ellipsis;
    white-space:wrap;
}



  /* ===========
  Product Single Card - End
  ============= */
  
/* single product */

/* Product Section */












/* elated section */
.RelatedSection{
    padding: 100px 0;
}

.RelatedSection h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #1E3B6F;
    text-align: center;
    margin-bottom: 20px;
    font-size: 50px;
}


.RelatedSectionImageWrapper {
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }

  .RelatedSectionImageWrapper img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }

  .RelatedSectionImageWrapper h2 {
    font-size: 25px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    background-color: #a14100;
    text-align: center;
    padding: 20px 0;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 2px #000;
    transition: transform 0.3s ease-in-out; 
  }


  
  .RelatedSectionImageWrapper:hover h2 {
    transform: scale(1.1);
  }
  
/* elated section */






/* product Information */
.productInformation{
  padding: 80px 0;
}

.productInformation h2{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
}

.productInformation p{
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}

.productInformation p span{
  font-weight: 700;
}



/* product Information */







/* slect size */
#changing-text{
    color: rgb(41, 41, 41);
    font-size: 12px;
}

.clickable-image:focus{
    border: 1px solid gray;
}
/* select size */












/* footer */

#footer{
	background: #f7f7f7;
    padding: 3rem;
	/* padding-top: 5rem; */
	padding-top: 7rem;
    padding-bottom: 80px;
	background-image: url(https://arena.km.ua/wp-content/uploads/3538533.jpg);
}


.social-links h2{
	padding-bottom: 15px;
	font-size: 20px;
    font-weight: 600;
}
.social-links img{
	padding-bottom: 25px;
}
.social-icons{
	/* display: flex;
    gap: 3rem; */
	display: flex;
    flex-direction: column;
    gap: 1rem;
	color: #777777;
}
.social-icons a{
	color: #777777;
}
.social-icons a:hover{
	color: #000;
}
.social-icons a i{
	box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    color: #82074a;
	font-size: 16px;
	margin-right: 12px;
}
li{
	list-style: none;
}
.useful-link h2{
	padding-bottom: 15px;
	font-size: 20px;
    font-weight: 600;
}
.useful-link img{
	padding-bottom: 15px;
}
.use-links{
	line-height: 32px;
}
.use-links li i{
	font-size: 14px;
    padding-right: 8px;
    color: #898989;
}
.use-links li a{
	color: #303030;
    font-size: 15px;
    font-weight: 500;
	color: #777777;
}
.use-links li a:hover{
	color: #000;
}
.address h2{
	padding-bottom: 15px;
	font-size: 20px;
    font-weight: 600;
}
.address img{
	padding-bottom: 15px;
}
.address-links li a{
	color: #303030;
    font-size: 15px;
    font-weight: 500;
	color: #777777;

}
.address-links li i{
	font-size: 16px;
    padding-right: 8px;
	color: #82074a;

}
.address-links li i:nth-child(1){
	padding-top: 9px;
}
.address-links .address1{
	font-weight: 500;
    font-size: 15px;
	display: flex;
}
.address-links{
	    line-height: 32px;
		color: #777777;
}
.copy-right-sec{
	padding: 1.8rem;
    background: #020125;
    color: #fff;
    text-align: center;
}
.copy-right-sec a{
	color: #fcd462;
    font-weight: 500;
}
a{
  text-decoration:none;
}

/* footer section end */




/* footer */



