.sc-comp-table, .table-container, h1 {
  max-width: 100% !important;
  text-align: center;
}

.table-header-title, .table-content-row {
  width: 10%;
  display: inline-block;
  text-align: left;
}

.table-header-title {
  font-weight: bold;
}

.table-content-country-title {
  display: inline-block;
  text-align: left;
  font-weight: bold;
}

.first-col {
  width: 50%;
}

.center-col {
  text-align: center;
}

.jobtitle {
  font-size: 0.75em;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: .5rem;
  font-family: 'AvenirNextW06-Bold';
  font-weight: 400;
  line-height: 1.5;
}

.footer-menus {
  border-top: 1px solid rgba(112,112,112,.3);
}


#result {
  border: 1px dotted #ccc;
  padding: 3px;
}
#result ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#result ul li {
  padding: 5px 0;
}
#result ul li:hover {
  background: #eee;
}


.card-data {
  transition: box-shadow .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.card-data:hover {
  box-shadow: 0 10px 24px rgba(31, 167, 217, .21);
  transform: translateY(-.125rem);
}

.cursor-pointer{
  cursor: pointer;
}

.border-top-primary {
  border-top: 4px solid #17a2b8; /* Replace with your primary color */
}


a {
  text-decoration: none !important;
  color: inherit;
}

.ituShopCard {
  display: flex;
  padding: 2rem 1.5rem 1rem 1.5rem;
  flex-direction: column;
  border-radius: 4px;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.0784313725);
  background-color: #fff;
  width: 100%;
}

.ituShopCard .ituShopCard__item:last-child::after {
  display: none;
}

.ituShopCard__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.ituShopCard__item {
  display: flex;
  padding: 1rem 0;
  flex-direction: row;
  gap: 0.5rem;
  position: relative;
}

.ituShopCard__item__img {
  /* aspect-ratio: 16/9; */
  height: 100px;
  border-radius: 2px;
}

.ituShopCard__item__img__portrait {
  aspect-ratio: 16/9;
  height: 100px;
  border-radius: 2px;
  -o-object-position: left;
  object-position: left;
  -o-object-fit: contain;
  object-fit: contain;
}

.ituShopCard__item__content {
  margin-left: 1.5rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.ituShopCard__item__content__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.ituShopCard__item__content__head__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}

.ituShopCard__item__content__head__title:hover {
  color: #0076a1;
}

.ituShopCard__item__content__head__price {
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  padding-left: 0.2rem;
}

.ituShopCard__item__content__product_code {
  font-size: 0.8rem;
  color: #6e6e6e;
}

.ituShopCard__item__content__control {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.ituShopCard__item__content__control__quantity {
  display: flex;
  align-items: center;
  padding-right: 10px;
}

.ituShopCard__item__content__control__remove {
  color: #d4292f;
  position: relative;
  padding-left: 10px;
  cursor: pointer;
}

.ituShopCard__item__content__control__remove:hover {
  color: #ae2c31;
}

.ituShopCard__item__content__control__remove::before {
  content: "";
  margin-left: -10px;
  padding-left: -10px;
  position: absolute;
  height: 60%;
  top: 22%;
  border-right: 1px solid rgb(110, 110, 110);
}

.ituShopCard__item::after {
  content: "";
  padding-right: 10px;
  position: absolute;
  width: 100%;
  bottom: 0;
  border-bottom: 0.5px solid rgba(110, 110, 110, 0.5);
}

.ituSummaryCard__box {
  padding: 1.5rem;
  flex-direction: column;
  border-radius: 4px;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.0784313725);
  background-color: #fff;
  width: 100%;
}

.ituSummaryCard__box__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.ituSummaryCard__box__title__price {
  font-weight: bold;
}

#quantity {
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  border: 2px solid #0076a1;
  color: #0076a1;
  background-color: #f5fafc;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* button minus and plus */

.quantity {
  margin-left: 0.5rem;
}

.quantity button {
  background-color: transparent;
  color: #2f2f2f;
  border: 2px solid #0076a1;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  width: 2rem;
  height: auto;
  text-align: center;
  transition: background-color 0.2s;
}

.quantity button:hover {
  background-color: #f5fafc;
}

.input-box {
  background-color: #e5f5fb;
  border-radius: 4px;
  width: 3rem;
  text-align: center;
  border: none;
  padding: 8px 6px;
  font-size: 1rem;
  outline: none;
}

/* Hide the number input spin buttons */

.input-box::-webkit-inner-spin-button, .input-box::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-box[type=number] {
  -moz-appearance: textfield;
}

@media screen and (max-width: 768px) {
  .ituContainer [data-span][data-span="4"].ituSummaryCard[data-span="4"] {
    grid-column: span 2 !important;
  }
}

/* @media screen and (max-width: 768px) {
  .ituShopCard__item__img {
    height: 50px;
    aspect-ratio: 16/9;
  }
} */

@media screen and (max-width: 768px) {
  .ituShopCard__item__content {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .ituShopCard__item__content__head {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .ituShopCard__item__content__head__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .ituShopCard__item__content__head__price {
    margin-bottom: 0.5rem;
  }
}

.hide-element {
  display: none;
  overflow: hidden;
  height: 0;
}

/* # sourceMappingURL=shopping-cart.css.map */

/* 1 Shopping cart CSS ------------------------------*/
.primaryBtn{
  background-color: #0076a1;
  color: #fff;
  cursor: pointer;
  border: 3px solid #0076a1;
}
.addToCart{
  display: flex;
  align-items: center;
}
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  background-color: #f5fafc;
  color: #0076a1;
  border: 2px solid #0076a1;
  border-radius: 4px;
  width: 100%;
  margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.custom-select select {
  display: none; /* Hide the original SELECT element */
}

.select-selected {
  background-color: #f5fafc;
  border: 2px solid #0076a1;
  border-radius: 4px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select-selected:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease; /* Smooth transition for rotation */
  border: solid #0076a1;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px; /* Adjust the size of the chevron by changing padding */
}

.select-selected.chevron-up:after {
  transform: translateY(-50%) rotate(225deg); /* Adjusted for initial 45deg rotation */
}

/* Style the items (options), including the selected item */
.select-items div, .select-selected {
  color: #0076a1;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
  text-align: left;
}

/* Style items (options) */
.select-items {
  position: absolute;
  background-color: #f5fafc;
  border: 2px solid #0076a1;
  box-shadow: 0 5px 10px rgba(41, 150, 190, 0.12);
  border-radius: 0px 0px 4px 4px;
  top: 100%;
  left: -2px;
  right: -2px;
  z-index: 99;
  animation: fadeIn 0.3s ease forwards;
  text-align: left;
  /* max-height: 139px; Add max-height for scrollable dropdown */
  overflow-y: auto; /* Enable vertical scrolling */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hide the items when the select box is closed */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #e5f5fb;
}
#cart-count {
  position: absolute;
  bottom: 23px;
  left: 23px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* End Shopping cart CSS */

/* .counter-button:hover {
  background-color: #0056b3;
  color: #fff;
} */
.counter-div .counter-button:hover {
  background-color: #0056b3;
  color: #fff;
}

.counter-button {
  border: 1px solid #007bff;
  background-color: #ffffff;
  color: #007bff;
  width: 40px; /* Adjust width as needed */
  height: 40px; /* Adjust height as needed */
}


.border-end {
  border-right: 1px solid #007bff;
}

.border-start {
  border-left: 1px solid #007bff;
}

.ituShopCard__ico {
  /* aspect-ratio: 16/9; */
  height: 40px;
  border-radius: 2px;
}

/* Style for the disabled button */
.btn-border:disabled {
  background-color: gray !important;
  border-color: gray !important;
  cursor: not-allowed;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: .25;
}

@media screen and (max-width: 767px) {
  .custom-select-container{
    width: 100% !important;
  }
  .price-show{
    width: 100% !important;
    text-align: left !important;
  }
  .quantity{
    padding-top: 0px !important;
    text-align: left !important;
  }
  .my-button{
   
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
 
}
@media screen and (max-width: 1023px) {
  .order-summ-btn{
    display: unset !important;
  }
  .shop-btn{
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 374px) {
  
  .shop-btn{
    padding-top: 10px;
   
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  
  .shop-btn{
    padding-top: 10px;
   
  }
}



@media (min-width: 768px) and (max-width: 1024px) {
  .custom-select-container{
    width: 100% !important;
  }
  .price-show{
    width: 100% !important;
  }
  .my-button{
    text-align: end !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
 
}

@media (min-width: 375px) and (max-width: 767px) {
  .order-summ-btn{
    display: flex !important;
  }
  .shop-btn{
    margin-left: 2rem !important;
  }
}



@media (min-width: 1200px) {
  .shop-btn {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
}
@media (max-width: 767px) {
  .gform_page_footer {
    padding-top: 10px !important;
  }
}
@media (max-width: 991px) {
  #cart-count {
    bottom:15px
  }
}
@media (min-width: 1025px) {
  .quantity-box {
    flex: 0 0 41.66667% !important;
    max-width: 41.66667% !important;
  }
}

@media (max-width: 460px) {
  .menu-name {
    display: none !important;
  }
  .custom-menu{
    gap:15px
  }
  .user-name{
    padding-right: 0px !important;
  }
  .nav-link {
    padding: 8px 0px !important;
  }

  .contact_img{
    margin-bottom: 2px;
  }

  .top-nav-list__item{
    margin-bottom: 4px;
  }

  .dropdown-content {
    right: 0px;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #e5f5fb;
  color:#fff
}

.show {
  display: block;
}

.cont-inp-bg{
  background: #009dd70d !important;
}
.error {
  color: red;
  font-size: 0.875em;
  margin-top: 0.25em;
}

.home-card-data {
  transition: box-shadow .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.home-card-data:hover {
  box-shadow: 0 10px 24px rgba(31, 167, 217, .21);
  transform: translateY(-.125rem);
}

.card-title:hover {
  color: #0076a1;
  text-decoration: none !important;
}

#ship-no-found{
  word-wrap: break-word;
  overflow-wrap: break-word;
}



@media (max-width: 991px) {
  /* a#help-link:hover {
  background-color: yellow;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  margin-right: 5px;
  border-radius: 10px;
} */
/* a#cart-link {
  margin-right: 8px;
} */

}

.card-feed__bgimg {
  background-size: cover;
  padding-bottom: 56.25%;
  background-position: center;
  background-repeat: no-repeat;
  height: 75vh;
}
/* 
@media (max-width: 2560px) {
.card-feed__bgimg {
  height: 30vh;
}
}
@media (max-width: 1440px) {
  .card-feed__bgimg {
    height: 50vh;
  }
  } */



@media (max-width: 1024px) {
.card-feed__bgimg {
  
  height: 50vh;
}
}
@media (max-width: 767px) {
  .card-feed__bgimg {
    
    height: 50vh;
  }
  .toastify.on.toastify-right.toastify-top {
    margin-top: 45px;
}
  }

  @media (max-width: 425px) {
    .card-feed__bgimg {
      
      height: 85vh;
    }
    }
    /* @media (max-width: 320px) {
      .card-feed__bgimg {
        
        height: 60vh;
      }
      } */

  /* @media (min-width: 375px) and (max-width: 425px) {
    .card-feed__bgimg {
        height: 85vh;
    }
}
@media (min-width: 426px) and (max-width: 768px) {
  .card-feed__bgimg {
      height: 50vh;
  }
} */

@media (min-width: 1700px) and (max-width: 1850px) {
  .card-feed__bgimg {
    height: 60vh;
}
}






 .toast-close {
    color: white!important;
    opacity: 1;
}

.custom-select-e select.form-select {
  color: #0076a1;
  padding: 8px 16px;
  border: 2px solid #0076a1;
  cursor: pointer;
  user-select: none;
  text-align: left;
}

.card-hero{
  overflow: visible!important;
}
@media only screen and (min-width: 768px) {
  .card-hero-body {
      display: flex;
      flex-direction: column;
      width: 60%;
      justify-content: center;
  }
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 34px!important;
}

.select2-container .select2-selection--single{
  height: 36px!important;
}

