
.home-btn {
  color: #ffffff !important;
  text-decoration: none !important;
  margin-left: 0;
  text-align: center;
}

.home-btn:hover {
  color: #1e5593 !important;
}

.hide {
  display: none !important;
}

.horizontal-scroll-wrapper {
  max-width: 100%;
  margin: 0;
  padding-top: 1px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Carousel */

.slider-container {
  padding-left: 0;
  padding-right: 0;
  padding-top: 5px;
}

.slider {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 350px;
  position: absolute;
  transition: all 0.5s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: none;
  border-radius: 50%;
  z-index: 10px;
  cursor: pointer;
  background-color: #fff;
  font-size: 18px;
}
.carousel-btn:active {
  transform: scale(1.1);
}
.carousel-btn-prev {
  top: 45%;
  left: 2%;
  background: url("./../../images/slider-prev-icon.svg") no-repeat;
  width: 23px;
  height: 47px;
}

.carousel-btn-next {
  top: 45%;
  right: 2%;
  background: url("./../../images/slider-next-icon.svg") no-repeat;
  width: 23px;
  height: 47px;
}

#slide-indicator-container {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 5%;
  margin: auto;
}

.slide-indicator {
  margin: 2.5px;
  width: 15px;
  height: 15px;
  background: rgba(217, 217, 217, 0.7);
  border-radius: 50%;
  border: 1px solid black;
}

.slide-indicator-active {
  background: #FFFFFF;
}

.slide-text-btn-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 20%;
  left: 10%;
  z-index: 999;
  max-width: 50%;
}

.slide-text-btn-container h1 {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: 700;
  line-height: 106px;
  color: #FFFFFF;
  text-shadow: 6px 4px 11px rgba(0, 0, 0, 0.3);
  overflow-wrap: break-word;
}

/* End Carousel */

/* Promo Cards */

.promo-card-container {
  display: flex;
  padding: 15px;
}

.promo-card {
  display: flex;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  margin: 5px;
  padding: 1%;
}

.promo-card-info {
  width: 50%;
  padding-top: 8%;
  padding-left: 4%;
}

.promo-card-text {
  font-weight: 700;
  line-height: 127.5%;
  color: #1E5593;
}

.promo-card-subtext {
  font-weight: 700;
  line-height: 127.5%;
  color: #000000;
  padding-bottom: 15%;
}

.promo-card-imgs {
  position: relative;
  padding: 2%;
}

.promo-card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

.promo-card-img2 {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 55%;
  object-fit: cover;
  filter: drop-shadow(3px 6px 8px rgba(0, 0, 0, 0.25));
}

/* End Promo Cards */

/* Featured Categories */

.featured-category-wrapper {
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative;
  height: 350px;
}

.featured-category-container {
  position: absolute;
  display: flex;
  padding: 15px;
  padding-top: 60px;
  overflow-x: scroll;
  width: 100%;
}

.featured-category {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  text-align: center;
  margin: 5px;
  padding: 1%;

  min-width: 200px;
}

.featured-category-img-container {
  position: relative;
}

.featured-category-img {
  position: absolute;
  width: 50%;
  height: 250px;
  object-fit: cover;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 5%;
  margin: auto;
}

.featured-category-box {
  width: 100%;
  height: 180px; 
  background-color: #D2DAE4;
  border-radius: 18px;
}

.featured-category-text {
  font-weight: 700;
  line-height: 150%;
  color: #000000;
  padding-top: 20px;
  text-decoration: none;
}

/* End Featured Categories */

/* Featured Products */

.featured-products-section {
  position: relative;
}

.section-header-featured-products {
  position: absolute;
  padding-left: 10%;
  padding-right: 10%;
  white-space: nowrap;
  top: 0;
  left: 50%;
  transform: translate(-50%, -65%);
  background-color: #ffffff;
  z-index: 9;
}

.featured-products-wrapper {
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative;
  height: 410px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.featured-products-container {
  display: flex;
  padding: 10px;
  position: absolute;
  overflow-x: scroll;
  width: 100%;
}

.product-card {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  text-align: center;
  color: #005496;

  min-width: 250px;
}

.product-card a:hover {
  color: #005496;
  text-decoration: none;
}

.product-card-img {
  width: 100%;
  height: auto;
  height: 150px;
  object-fit: contain;
}

.product-card-title {
  font-weight: 700;

  line-height: 22px;
  max-width: 100%;
  padding-top: 10px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-sku {
  line-height: 15px;
  padding-top: 10px;
}

.product-card-sku span {
  font-weight: 700;
}

.product-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.product-card-rating-star {
  width: 15px;
  height: 15px;
}

.product-card-price {
  padding-top: 20px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
  color: #000000;
}

.Item_Form {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.qty-input-container {
  display: flex;
  height: 40px;
  border: 1px solid #1E5593;
  border-radius: 0.5px;
  background-color: #ffffff;
  text-align: center;
}

.qty-input-btn {
  font-weight: 400;
  line-height: 18px;
  color: #1E5593;
  background-color: #ffffff;

  margin: 0px;
  padding-left: 15px;
  padding-right: 15px;
  border: none;
}

.product-card-qtyinput {
  padding-left: 10px;
  padding-right: 10px;
  margin: 0px;
  width: 40px;
  background-color: #ffffff;
  height: 100%;
  border: none;
  border-left: 1px solid #1E5593;
  border-right: 1px solid #1E5593;
  text-align: center;
  font-weight: 700;
}

.product-card .btn {
  height: 42px;
  margin-left: 10px;
}

/* End Featured Products */

/* Recent Blog Posts */

.recent-blog-post-container {
  display: flex;
}

.blog-post-card {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  margin: 5px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 6px;
}

.blog-post-card-img-container {
  width: 100%;
}

.blog-post-card-img-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  height: 150px;
  object-fit: cover;
}

.blog-post-card-title {
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  color: #1E5593;
  padding-top: 10px;
}

.blog-post-card-summary {
  line-height: 20px;
  color: #444444;
  padding-top: 10px;

  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.blog-post-card a {
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  margin:0;
  margin-top: 20px;
}

/* End Recent Blog Posts */

/* Reviewsio Widget */

#reviewsio-carousel-widget {
  padding-top: 60px;
  text-align: center;
}

.reviewio-wrapper {
  position: relative;
  overflow-x: hidden !important;
  height: 500px;
}

.reviewio-container {
  position: absolute;
}

/* End Reviewsio Widget */

/* Brands */

.brands-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10%;
  padding-bottom: 100px;
}

.brand-container img {
  width: 100%;
  height: 100px;
}

/* End Brands */

/* Old Home  */

.old-home-header {
  margin-top: 15px;
	padding-left: 10px;
  padding-bottom: 10px;
}

.old-home-message {
  padding-top: 10px;
	padding-left: 10px;
}

.old-home-message p {
  font-weight: 500;
}

.old-home-message p a {
  font-weight: 700;
}

.home-video {
  padding-top: 40px;

  text-align: center;
}
.home-video iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 1000px;
}

/* End Old Home  */


/********************* Media Queries **********************/


/* Larger Screens */

@media only screen and
(min-width: 1920px) {

  .slide-text-btn-container a {
    margin-top: 20px;
  }

}

/* Smaller Screens */

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

  .promo-card-info {
    width: 100%;
    padding-left: 1%;
  }

}

/* Tablet and Mobile */

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

  .slide-text-btn-container {
    justify-content: space-between;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    text-align: center;
  }
  
  .promo-card-info {
    width: 90%;
    padding-left: 2%;
  }

}

/* Tablet */

@media only screen and 
(max-width: 850px) and
(min-width: 451px) {

}

/* Mobile */

@media only screen and 
(max-width: 450px) and
(min-width: 0px) {

  .promo-card-container {
    flex-direction: column;
    padding: 0px; 
  }

  .promo-card {
    margin: 0px;
    margin-top: 15px;
  }

  .promo-card-info {
    width: 70%;
  }

  .promo-card-imgs {
    padding: 4%;
  }

  .promo-card-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .promo-card-img2 {
    top: 50%;
    right: 50%;
    width: 55%;
  } 

}
