body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #666;
  font-size: 13px;
  line-height: 20px;
  width: 100%;
  background: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
}
.fbt-range{
  display: flex;
  width: 100%;
}
.category-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}

.category-card {
  width: 240px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 30px;
}

.category-image-wrapper {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  background: #f4f4f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: top center;
  transition: transform 0.4s ease;
  border: 2px solid #d9d9d9;
  background: #fff;
}
.category-title{
  margin-top: 10px;
}
.category-title a {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

/* Subcategory default hidden */
.subcategory-list {
  margin: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: 0;
  list-style: none;
  text-align: left;
  transform-origin: top center;
  transition: transform 0.9s ease;
}

.subcategory-list li {
  line-height: 24px;
}

.subcategory-list a {
  color: #111;
  text-decoration: none;
}

.subcategory-list a:hover {
  text-decoration: underline;
}

/* On hover: scale down image, move image up, show subcategories */
.category-card:hover .category-image-wrapper {
  transform: scale(0.5);
  margin-bottom: -100px;
  cursor: pointer;
}
.no_hover:hover .category-image-wrapper {
  transform: unset;
  margin-bottom: unset;
  cursor: pointer;
}
.category-card:hover .subcategory-list {
  opacity: 1;
  height: auto;
}
aside{
  min-height: 80vh!important;
}
.success-card-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 0 20px 0;
  flex-wrap: wrap;
}

.success-info {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  width: 170px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.success-info:hover {
  transform: translateY(-5px);
}

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

.success-info p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
}

.icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.hover-info .info-icon {
  display: inline-block;
  cursor: pointer;
}
.lt-switches{
  color: #111;
}
.hover-info .info-icon .tooltip-text {
  visibility: hidden;
  width: max-content;
  max-width: 340px;
  background-color: #111;
  color: #fff;
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 80%; /* Above the icon */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: normal;
  font-size: 12px;
  box-shadow: 0px 4px 14px 0px #00000085;
}

.hover-info .info-icon:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.checkout-sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}
.checkout-sidebar .step {
  padding: 15px 20px;
  margin-bottom: 10px;
  background-color: #e9ecef;
  color: #333;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}
.checkout-sidebar .step.active {
  background-color: #074365;
  color: #fff;
}
.summery_header {
  background: #074365;
  padding: 15px 20px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.summery_body{
  background: #fff;
  padding: 30px 20px;
}
.summery_header h3{
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.custom-cart-container {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  max-height: 455px;
  overflow-y: auto;
}

.custom-cart-container::before,
.custom-cart-container::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}
#account-address .table-hover tr .text-right{
  min-width: 175px;
}
.product-img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.item-description .ref {
  font-size: 13px;
  color: #777;
  margin-bottom: 5px;
}

.item-description .name {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
  color: #111;
}
.btn-remove{
  background: #fff;
  border: 1px solid #bd0000;
  color: #bd0000;
  padding: 0px 10px!important;
}
.btn-plus{
  color: #128807;
  border:1px solid #ccc;
  border-left: none;
}

.btn-minus{
  border:1px solid #ccc;
  color: #e42017;
  border-right: none;
}
.btn-plus:hover{
  color: #096600;
}

.btn-minus:hover{
  color: #b10800;
}
.qty-box .btn {
  padding: 6px 12px!important;
  background: #fff!important;
}
.qty-box input {
  border:1px solid #ccc;
}
.quantity-input {
  max-width: 60px;
}
.qty-control .fa{
  font-size: 11px;
}
.btn-remove span{
  font-size: 22px;
}
.qty-box {
  display: flex;
  justify-content: center;
}

.qty-box input.form-control {
  width: 60px;
  height: 32px;
  text-align: center;
  margin-bottom: 5px;
  background-color: #fff;
}

.qty-box .btn-group .btn {
  margin: 0 2px;
}

.item-price {
  text-align: right;
}

.item-price .price {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-align: left;
}
#checkout-cart .cart-header .col-sm-6{
  width: 56%;
}
#checkout-cart .cart-header .col-sm-2{
  width: 22%;
}
#checkout-cart .cart-header .col-sm-4{
  width: 19%;
}
.custom-cart-container .col-md-2{
  width: 10%;
}
.custom-cart-container .col-md-3{
  width: 45%;
}
.custom-cart-container .col-md-4{
  width: 30%;
}
.custom-cart-container .col-md-5{
  width: 23%;
}
.item-price{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price_cal p{
  margin-bottom: 3px;
}
.item-price .discount {
  color: green;
  font-weight: 500;
  text-align: left;
}
.cart-header {
  background-color: #074365;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px 4px 0 0;
  padding: 15px 30px;
}
.item-price .mrp,
.item-price .tax {
  font-size: 12px;
  color: #777;
  text-align: left;
}
.item-price .total {
  font-weight: bold;
  margin-top: 5px;
}

.continue-btn {
  background-color: #6d47f9;
  color: #fff;
  padding: 12px 30px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
}
.range_title {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 30px 0 15px 0;
  font-style: normal;
}
.range_content {
  font-size: 15px;
  color: #111;
  text-align: center;
  margin-bottom: 50px;
}
.blog-caption{
  padding: 20px 25px;
}

.mb-3{
  margin-bottom: 15px;
}
#searchResult2 .td-name{
  padding: 8px!important;
}
#search .input-group{
  width: 100%;
  position: relative;
}
.blog-caption h4{
  font-size: 16px;
  color: #111;
  font-weight: 600;
  line-height: 25px;
  margin: 0;
}
.blog-caption p{
  font-size: 13px;
  line-height: 22px;
  margin-top: 13px;
  color: #222;
}
.blog-caption a{
  color: #008AFC;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
}
.cp_parcel {
    width: 100%;
    position: relative;
}
/*.cp_parcel label{
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
}*/
.panel-body1 .radio{
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 11px 0;
  margin: 0;
}
.panel-body1 .radio:last-child{
  border-bottom: none;
}
.review_des{
  font-size: 15px;
  font-weight: 600;
}
.category-box-body {
    padding: 0 15px;
    min-height: 350px;
}
.show_all{
  text-align: center;
  margin: 30px 0 0 0;
}
.show_all a{
  color: #111;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
}
.viewed-user {
  font-size: 13px;
  color: #074365;
  font-weight: 500;
}
.our-blogs p a{
  color: #0c50d7;
}
.whatsappclass{
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 111;
}
.product-feature {
    background: #074365;
    padding: 15px 30px;
    border-radius: 4px;
    margin: 20px 0;
}
#quotation .custom-coupon-button{
  width: 100%;
}
.alternate-reference {
    background: #074365;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 15px;
    border-radius: 4px;
}
.whats-btn{
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
}
.category-box-body p{
  min-height: 45px;
}
.recommend h4 {
    font-size: 16px;
    color: #111;
    font-weight: 700;
    margin-top: 20px;
}
.custom-tabs-container li.tab a{
  background: #d6efff;
  margin: 20px 0;
  border: 1px solid #99bde4;
  border-left: 0;
  display: block;
  padding: 12px 31px;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}
.custom-tabs-container li.active a {
  background-color: #074365;
  color: white;
  border: 1px solid #074365;
}
.custom-tabs-container li.tab a:first-child{
  border-left: 1px;
}

.custom-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
/*.custom-tabs .tab a {
  display: block;
  padding: 12px 20px;
  background: transparent;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}*/
.cat-specific {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}
.table-scroll{
  max-height: 290px;
  overflow-y: auto;
}
.table-scroll::before,
.table-scroll::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}
.line-three{
  background: #ccc;
  height: 1px;
  margin: 20px 0;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  min-height: 200px;
}
.replacement-flex{
  display: flex;
  justify-content: space-between;
}
.replacement-section {
  border: 1px solid #ccc;
  padding: 15px;
  margin: 20px 0;
  background-color: #fff;
}

.replacement-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.replacement-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.replacement-product {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.replacement-product:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.replacement-thumb img {
  width: 70px;
  height: auto;
}

.replacement-details {
  flex: 1;
  padding: 0 15px;
}

.replacement-desc {
  font-size: 13px;
  margin: 0 0 10px 0;
  font-weight: 500;
}

.replacement-stock {
  color: green;
  font-weight: bold;
  font-size: 13px;
}

.replacement-action {
  align-self: center;
}
.fbt-products.fbt-few {
    flex-wrap: wrap;
}
.fbt-few .fbt-total {
    margin: 0;
}
.fbt-products{
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
.fbt-image-wrapper{
  position: relative;
}
.fbt-checkbox-overlay{
  position: absolute;
  right: 0;
}
.fbt-product-card{
  -webkit-box-flex: 0;
  flex: 0 0 calc(20% - 24px);
  margin: 0 12px 24px;
  position: relative;
  margin-left: 10px!important;
}
.fbt-plus {
  position: absolute;
  top: 50%;
  right: -21px;
  font-size: 24px;
  font-weight: 700;
  z-index: 1;
  display: block;
}
.replacement-action .btn-orange {
      font-weight: bold;
    border-radius: 4px;
}
.rating_us{
  margin-top: 15px;
}
.custom-rating {
    background: #f1ba00;
    padding: 4px 14px;
    border-radius: 4px;
    margin-left: 7px;
}
.custom-rating i{
  margin-left: 5px;
}
.rating_us a{
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
}
.whats-btn a{
  margin: 0 5px;
}
.offer-card{
  display: flex;
}
.offer-card .card-body-one{
  width: 100%;
}
.offer-card .card-header {
    background-color: #074365;
    border-radius: 4px;
    padding: 25px 15px;
}
#quotation .iti__country-list {
  z-index: 3!important;
}
.offer-card {
    display: flex;
    border: 1px solid #074365;
    border-radius: 8px;
}
.d-flex{
  display: flex;
}
.mr-1{
  margin-right: 6px;
}
.s_cart_btn button {
  width: 100%;
  font-size: 16px !important;
  font-weight: 600 !important;
}
.scc {
  width: 50%;
  margin-right: 10px;
}
.scs{
  width: 50%;
  margin-left: 10px;
}
.tc_apply h4 {
    color: #f1f1f1;
    font-size: 15px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
}
.tc_apply p{
  color: #ccc;
  margin-bottom: 0;
}
.fast-truck img{
  max-height:38px ;
}
.tc_apply{
  margin-left: 12px;
}
.product_cat{
  font-weight: 500;
  color: #0050c2;
}
.custom-register .iti{
  width: 100%;
}
/* default font size */
.fa {
  font-size: 15px;
}
/* Override the bootstrap defaults */
h1 {
  font-size: 33px;
}
h2 {
  font-size: 27px;
}
h3 {
  font-size: 21px;
}
h4 {
  font-size: 15px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 10.2px;
}
a {
  color: #074365;
}
.clear-all {
  display: flex;
  justify-content: space-between;
}
.clear-all h3 {
  margin: 0;
}
.clear-all .custom-btn-filter {
  margin-bottom: 5px;
}
#content {
  min-height: 500px;
}
.we-deals{
  margin: 50px 0;
}
.favourite-brand {
  font-size: 28px;
  line-height: 35px;
  margin: 0;
  color: #000;
  font-weight: 600;
  padding-top: 25px;
}
.contact-wrapper {
  background: #027FFF ;
  background: linear-gradient(180deg,rgba(2, 127, 255, 1) 0%, rgba(135, 227, 252, 1) 100%); 
}

.contact-container {
  max-width: 90%;
  margin: auto;
  display: flex;
  gap: 30px;
  padding: 60px;
}
.iti--separate-dial-code{
  width: 100%;
}
.contact-form {
    flex: 1;
    padding: 50px;
    background: #ffffffc2;
}

.contact-form h1 {
    margin-bottom: 12px;
    font-size: 26px;
    margin-top: 0;
    color: #111;
}

.contact-form p {
  margin-bottom: 20px;
  color: #0056ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.box .btn-custom {
    padding: 10px 40px;
}
.quotation_box{
  background: #359bf0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  border: 1px solid #0363b3;
}
.quotation_box h4{
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}
.quotation_box p{
  font-size: 14px;
  color: #fff;
}
.quotation_box p a{
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.contact-form form label {
  display: block;
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 15px;
  color: #111;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.contact-form form textarea {
  height: 100px;
  resize: none;
}

.contact-form form button {
  background: #0c51d8;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.contact-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-sidebar .box {
  background: #ffffffc2;
  padding: 30px;
}

.contact-sidebar .box h3 {
  font-size: 20px;
  margin: 13px 0 8px 0;
  color: #111;
  font-weight: 600;
}
.contact-sidebar .box p {
    margin: 0 0 15px 0;
    font-size: 15px;
    color: #0056ff;
    font-weight: 500;
}
.contact-sidebar .box p a {
  color: #0077da;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

.contact-sidebar .chat-button,
.contact-sidebar .download-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #0c51d8;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}
.description-bg h1,
.description-bg h2,
.description-bg h3,
.description-bg h4,
.description-bg h5,
.description-bg h6,
.description-bg p {
  color: #222;
}
.description-bg p {
  font-size: 12px;
  line-height: 20px;
}
#common-home #content {
  min-height: 0px;
}
#clearance-category #content {
  min-height: 0px;
}
.clearace-list {
  margin-top: 16px;
}
.btn:focus,
.btn:focus-visible,
.btn:active,
.btn:hover {
  outline: none;
}
a:hover {
  text-decoration: none;
}
legend {
  font-size: 18px;
  padding: 7px 0px;
}
label {
  font-size: 12px;
  font-weight: normal;
}
select.form-control,
textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="datetime"].form-control,
input[type="datetime-local"].form-control,
input[type="date"].form-control,
input[type="month"].form-control,
input[type="time"].form-control,
input[type="week"].form-control,
input[type="number"].form-control,
input[type="email"].form-control,
input[type="url"].form-control,
input[type="search"].form-control,
input[type="tel"].form-control,
input[type="color"].form-control {
  font-size: 13px;
}
.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
  font-size: 12px;
}
.input-group .input-group-addon {
  font-size: 12px;
  height: 30px;
}
/* Fix some bootstrap issues */
span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
  display: inline;
}
.nav-tabs {
  margin-bottom: 15px;
}
div.required .control-label:before {
  content: "* ";
  color: #f00;
  font-weight: bold;
}
/* Gradent to all drop down menus */
.dropdown-menu li > a:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: #074365;
  background-image: linear-gradient(to bottom, #074365, #074365);
  background-repeat: repeat-x;
}
/* top */
#top {
  background-color: #f4f3f1;
  border-bottom: none;
  padding: 15px 0;
  position: relative;
  z-index: 111;
  font-size: 14px;
}
.current_flag{
  cursor: pointer;
  background: #fff;
  padding: 8px 15px;
  border-radius: 4px !important;
  border: 1px solid #ccc;
  font-size: 13px;
  font-weight: 600;
  margin-left: 25px;
}
.category-second {
  margin-bottom: 60px;
}
.category-second img {
  margin-top: 10px;
}
.category-second li {
  padding-left: 15px;
  width: 20%;
}
.second-category {
  font-size: 18px;
  color: #444;
}

#checkout-cart .input-group {
  margin-bottom: 15px;
}
.featured-container{
  padding: 0 15px;
}
.all_flag{
  margin: 40px 0;
}
.meet_us{
  font-size: 24px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 0;
  font-style: normal;
}
#checkout-cart #input-coupon {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  height: 44px;
  border-radius: 4px;
}
#top #form-currency .currency-select,
#top #form-language .language-select {
  text-align: left;
  background: #fff;
}
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
  text-shadow: none;
  color: #ffffff;
  background-color: #229ac8;
  background-image: linear-gradient(to bottom, #2a1f6d, #2a1f6d);
  background-repeat: repeat-x;
}
#simlar_products{
  margin-top: 20px;
}
.sim_pro {
  display: flex;
  color: #000;
  font-weight: 600;
}
.sim-title{
  margin: 15px 10px;
}
.custom-thumbnail{
  display: block;
  padding: 3px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
  -o-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out;
}
.custom_currency li{
  margin-left: 0px!important;
  margin-right: 0px!important;
}
.ccc{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.clearance_discount {
  background: #fff;
  border: 2px solid;
  padding: 11px 15px;
  border-image: linear-gradient(45deg, #2270df, #d7e7ff) 1;
  color: #2270df;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.clearance_discount:hover {
  border-image: linear-gradient(45deg, #d7e7ff, #2270df) 1;
  color: #2270df;
}
#top .btn-link,
#top-links li {
  color: #222;
  text-decoration: none;
  font-weight: 400;
  margin-left: 10px;
  margin-right: 10px;
}
#top-links li:last-child{
  margin-right: 0px;
  padding-right: 0px;
}
.desktop_menu{
  background: #074365;
  padding: 5px 0;
}
#top-links a {
  color: #222;
  box-shadow: none;
}
.btn-currency {
    font-size: 12px;
    background: #fff;
    border: none;
    padding: 6px 5px 6px 10px;
}
.desktop-top-section{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-inline{
  margin-bottom: 0;
}
.nav_currency{
  display: flex;
}
.user-icon {
  display: inline-flex;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 6px;
}
.quotation-section .bulk-banner img,
.quotation-section .request-form {
  min-height: 100%;
}
.limited-time {
  background: #81a2b2;
  margin-bottom: 30px;
  margin-left: 50px;
  margin-top: 30px;
}
.limited-time h1 {
  font-size: 50px;
  color: #fff;
  padding: 80px 80px 14px 80px;
  text-align: center;
  font-weight: 500;
  line-height: 65px;
}
.limited-time p {
  font-size: 18px;
  color: #111;
  text-align: center;
  padding-bottom: 80px;
}
.btn-transparent {
  background: transparent;
  border: none;
  display: flex;
}
.btn-transparent:hover,
.btn-transparent:active,
.btn-transparent:focus {
  background: transparent;
  border: none;
  -webkit-box-shadow: none !important;
}
.registration-success {
  padding: 30px 50px 0px 50px;
}
.registration-success h1 {
  font-size: 40px;
  color: #111;
  font-weight: 600;
  padding-bottom: 20px;
  max-width: 50%;
  line-height: 55px;
}
.registration-success p {
  font-size: 15px;
  color: #555;
  font-weight: 300;
  padding-bottom: 10px;
  line-height: 26px;
}
.registration-success h2 {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  padding-bottom: 20px;
}
#account-success {
  padding-bottom: 100px;
}
.letter-box input {
  border-bottom: 1px solid #000;
  height: 42px;
  padding-left: 20px;
  font-size: 14px !important;
  color: #111;
  border-top: none;
  border-left: none;
  border-right: none;
}
.letter-box input:disabled {
  background: transparent;
}
.lvp {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin-bottom: 50px;
  margin-top: 0;
}
.lvp::before {
  width: 85px;
  height: 5px;
  background-color: #2270df;
  position: relative;
  top: 50px;
  content: "";
  bottom: 32px;
  display: block;
}
.letter-box button {
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
}
.see_more{
  color: #2270df;
  text-decoration: underline;
  font-size: 13px;
  font-weight: 500;
}
.user-icon h5 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #074365;
  padding: 12px 20px;
  border-radius: 4px;
}
.search-same-time {
  background: #074365;
  padding: 20px;
  max-width: 60%;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0px 3px 3px #737171d6;
}
.search-same-time h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}
.search-same-time .click-here {
  text-align: center;
}
.search-same-time a {
  color: #000;
  font-size: 13px;
  text-decoration: none;
  background: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  border: 1px solid #fff;
}
.search-same-time a:hover {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.user-icon i {
  font-size: 18px;
  color: #222;
  background: #f1ba00;
  padding: 10px 12px;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0px 1px 4px 0px #a9a9a9;
  height: 40px;
  width: 40px;
}
.user-icon p {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.call_icon a {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  background: #2270DF;
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid #2270DF;
}
.home-full-banner {
  background-color: #074365;
}
.nav .open > a,.nav .open > a:hover {
  background-color: transparent;
  cursor: pointer;
}
#top .btn-link:hover,
#top-links a:hover {
  color: #000;
}
#top-links .dropdown-menu a {
  text-shadow: none;
  color: #333;
  padding: 5px 20px;
}
#top-links .dropdown-menu a:hover {
  color: #fff;
}
#top .btn-link strong {
  font-size: 14px;
  line-height: 14px;
}
.image_icon{
  height: 16px;
}
.cart_icon{
  height: 32px;
}
#cart-total{
  margin: 0 0 0 10px;
  font-weight: 500;
  color: #111;
  font-size: 10px;
}
/* logo */

#logo .barIcon {
  margin-right: 10px;
  margin-top: 18px;
}
/* search */

.d_part{
  margin-top: 25px;
  display: flex;
  justify-content: start;
  margin-bottom: 25px;
}
.d_part h4{
    font-size: 18px!important;
    font-weight: 600!important;
    color: #111!important;
    margin: 0;
    padding: 0 25px 0 0;
}
.part_img{
  margin: 0 0 0 25px;
}
.part_img img{
  width: 35px;
}
.custom-search-input {
  margin:0;
  padding: 0;
}
 
.custom-search-input .search-query {
  padding: 11px 15px;
  font-size: 13px !important;
  height: 48px;
  border: 1px solid #ff4040;
  border-radius: 12px;
  border-top-right-radius: 12px!important;
  border-bottom-right-radius: 12px!important;
}
 
.custom-search-input .btn-danger {
  border: 0;
  background: none;
  /** belows styles are working good */
  left: -40px;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */
  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #222;
  text-shadow: none;
  position: absolute;
  bottom: 8px;
}
.search-query:focus + button {
  z-index: 3;   
}

.news_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.footer_p p {
  color: #ddd;
  padding-top: 25px;
}
.news_letter{
  background: #018afc;
}
.news_title h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #f1f1f1;
}
/* cart */
#cart {
  position: relative;
}
#cart > .btn {
  font-size: 13px;
  line-height: 18px;
  color: #000;
  padding: 12px 0px;
  margin-top: 6px;
  border-radius: 4px;
  font-weight: 600;
}
#cart.open > .btn {
  background-image: none;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  color: #666;
  box-shadow: none;
  text-shadow: none;
}
#cart.open > .btn:hover {
  color: #444;
}
.swal-footer {
  text-align: center;
}
.button button {
  margin-top: 15px;
}
#cart .dropdown-menu {
  background: #eee;
  z-index: 1001;
}
#cart .dropdown-menu {
  min-width: 100%;
}
header {
  background: #fff; 
  padding: 12px 0;
}
.request-form2 {
  background: #fff;
  padding: 0 15px 30px 15px;
}
.request-form {
  padding: 30px 40px;
  background: #fff;
  border-radius: 4px;
  border:1px solid #ccc;
}
.request-form form{
  padding: 0 50px;
}
.swiper-button-prev:before, .fa-chevron-left{
  font-size: 14px !important;
  background: #00000063;
  padding: 11px 7px 11px 6px;
  border-radius: 2px;
  color: #fff !important;
  text-shadow: none;
}
.swiper-button-next:before, .fa-chevron-right {
  font-size: 14px !important;
  background: #00000063;
  padding: 11px 7px 11px 7px;
  border-radius: 2px;
  color: #fff !important;
  text-shadow: none;
}
.swiper-pager {
  width: 100%;
}
.swiper-viewport .swiper-button-prev {
  opacity: 0 !important;
  left: -20px !important;
  text-shadow: none !important;
}
.swiper-viewport .swiper-button-next {
  opacity: 0 !important;
  right: -20px !important;
  text-shadow: none !important;
}
.swiper-viewport:hover .swiper-button-next {
  opacity: 1 !important;
  right: 10px !important;
}
.swiper-viewport:hover .swiper-button-prev {
  opacity: 1 !important;
  left: 10px !important;
}
#content .swiper-viewport:hover .swiper-button-prev,
.products-range .swiper-viewport:hover .swiper-button-prev {
  left: 5px !important;
}
.swiper-button-next,
.swiper-button-prev {
  box-shadow: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: 18px !important;
}
/* .request-form h3 {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-top: 0;
  text-align: center;
} */
.request-form p {
  font-size: 15px;
  color: #111;
  text-align: center;
  font-weight: 600;
  padding-bottom: 10px;
}
.request-form button {
  width: 100%;
  font-size: 14px;
}
.request-form label {
  color: #111;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 500;
}
.custom-contact-form label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}
.all-add-cart{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
}
.all-add-cart h3{
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0;
}
  .all-add-cart .btn-orange {
    background-color: #f26522;
    border: none;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 13px;
    border-radius: 3px;
    cursor: pointer;
}
.company_info{
  background: #fff;
  padding: 20px 15px;
}
.customer_info{
  background: #f1f1f1;
  padding: 20px 15px;
  margin-bottom: 20px;
}
.customer_info h3{
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px 0;
}
.customer_info p{
  color: #111;
  margin: 4px 0;
  text-align: left!important;
}
.company_info h3{
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px 0;
}
.company_info p{
  color: #111;
  margin: 4px 0;
  text-align: left!important;
}

.header-middle{
  align-items: center;
  display: flex;
}
.action_body{
  background: #0b75aa;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #f1f1f1;
  padding: 10px 15px;
  margin: 0;
  text-align: center;
}
/*.header-middle .col-sm-4{
  padding-left: 0;
  padding-right: 0;
}*/
#quotation input#formFile {
  padding-top: 8px;
}
#quotation p {
  font-size: 20px;
  color: #fff;
  text-align: center;
  padding-bottom: 15px;
  font-weight: 500;
}
#quotation .control-label {
  color: #111;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 500;
}
.request-form .form-group {
  margin-bottom: 20px;
}
/*HTML content*/
.home-search {
  background: #fff;
  padding: 0px 0px 30px 0px;
  margin-bottom: 30px;
  margin-top: 20px;
}
.price-availability h2 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
.price-availability span {
  color: #5b5b5b;
  font-size: 14px;
}
.panel-default > .panel-heading {
  color: #000;
  background-color: #ffffff;
  border-color: #fff;
}
.brand-list.collapsed .extra {
  display: none;
}
.new-panel{
  color: #fff!important;
  background-color: #074365!important;
  border-color: #074365!important;
  padding: 15px 20px;
  box-shadow: 0px 3px 5px #c2c2c2;
  margin-bottom: 15px;
  border-radius: 4px;
}
.new-panel h4{
  font-weight: 600;
}
.custom-panel{
  border: none!important;
}
.new-body-panel{
  border: none!important;
  padding: 0;
}
.l_customer h2{
    font-size: 30px;
    font-weight: 600;
    color: #111;
    padding-bottom: 15px;
}
.n_customer h2{
    font-size: 30px;
    font-weight: 600;
    color: #111;
}
.n_customer p{
    font-size: 15px;
    font-weight: 500;
    color: #111;
    padding-top: 5px;
    margin: 0;
}
.n_customer h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0;
    padding: 5px 15px;
}
.n_customer h2 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0 0 10px 0;
    padding: 15px;
}
.n_customer h3 a {
    color: #222;
    margin-left: 8px;
}
.n_customer h4 {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    padding-top: 5px;
    line-height: 24px;
}
.n_customer .btn-primary {
    background: #2a6ee1;
    border: 1px solid #2a6ee1;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 10px;
    width: 50%;
    border-radius: 4px;
}
.panel-title1{
  border: 1px solid #ddd;
}
.panel-title1 img{
  width: 30px;
}
.panel-body1{
  border: 1px solid #ddd;
  padding: 5px 15px;
  margin-top: 5px;
}
.m_customer .btn-primary {
    background: #2a6ee1;
    border: 1px solid #2a6ee1;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 10px;
    width: 20%;
    border-radius: 4px;
}
.l_customer .btn-primary {
    background: #2a6ee1;
    border: 1px solid #2a6ee1;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 10px;
    width: 100%;
    border-radius: 4px;
}
.custom_panel{
  border: none;
  margin-left: 50px;
  margin-bottom: 15px!important;
}
.custom_fontawes {
    margin-top: -6px;
    position: absolute !important;
    left: 15 !important;
    background: #074365;
    color: #fff;
    padding: 13px 14.6px;
    border-radius: 2px;
    top: unset;
}
.l_customer label{
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}
.n_customer label{
    font-size: 14px;
    font-weight: 600;
    color: #111;
}
.fri_text {
    font-size: 14px !important;
    border: none;
    margin-left: -11px;
}
.btn-confirm-order {
    background: #1b912e;
    border: 1px solid #1b912e;
    color: #fff;
    font-size: 15px !important;
    padding: 15px 75px !important;
    border-radius: 4px !important;
}
.replacement-brand img{
  height: 32px;
}
.btn-confirm-order:hover,
.btn-confirm-order:active,
.btn-confirm-order.active,
.btn-confirm-order.disabled,
.btn-confirm-order[disabled] {
  background-color: #0f6c1e;
  border: 1px solid #0f6c1e;
  color: #fff;
}
.log_otp{
  margin-top: 30px;
}
.log_otp a{
  color: #2270DF;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
}
#logged-box label{
  font-size: 14px;
  font-weight: 500;
  color: #222;
}
.m_customer label{
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}
.l_customer a{
    font-size: 14px;
    color: #2a6ee1;
    font-weight: 500;
}
.wrapper {
    position: relative;
    width: 250px;
    height: 300px;
    margin: 10px;
}

.line {
    position: absolute;
    left: 49%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #aaa;
    z-index: 1;
}

.wordwrapper {
    text-align: center;
    height: 12px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -12px;
    z-index: 2;
}

.word {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px;
    font: bold 12px arial,sans-serif;
    background: #fff;
}
.catalog-number {
  background: #fff;
  box-shadow: 1px 2px 2px #22222261;
  padding: 18px 26px;
  margin-top: 25px;
  border-radius: 6px;
  border: 1px solid #eae7e7;
}
.catalog-number p {
  font-size: 14px;
  line-height: 20px;
  color: #5b5b5b;
}
.rounded-input {
  box-shadow: 0px 1px 4px #ccc !important;
  border: none;
  border-radius: 50px !important;
}
/*Model CSS*/
/*.email-ad .modal-header{
  background: #074365;
  text-align: center;
  padding: 15px 0 5px 0
}*/
.email-ad .modal-header {
  background: #cfbd62;
  text-align: center;
  padding: 21px 0 7px 0;
}
.email-ad .modal-body {
  padding: 35px;
}
.email-ad .modal-header h3 {
  font-size: 24px;
  color: #000;
  font-weight: 600;
}
.email-ad .form-group {
  text-align: center;
}
.email-ad label {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
.email-ad .modal-header p {
  padding-top: 2px;
  color: #000;
  font-size: 16px;
}
.email-ad form label {
  font-size: 14px;
  color: #222;
  font-weight: 500;
}
.contact-modal{
  padding: 30px 50px;
}
.contact-modal h3{
  font-size: 20px;
  font-weight: 600;
  color: #111;
}
.contact-modal label{
  color: #111;
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 500;
}
.contact-modal input{
  background: #fff;
    line-height: 1.25rem;
    border: 1px solid #ccc;
    width: 100%;
    height: 38px;
    display: block;
    position: relative;
    border-radius: 4px;
}
.enquiry-pop h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding-bottom: 10px;
}
#add_enquiry .modal-dialog {
  width: 850px;
}
.pop-btn-group{
  display: flex;
  justify-content: space-between;
}
#add_enquiry .table {
  margin-bottom: 0;
}
.enquiry-pop .form-control{
  height: 34px;
}
.contact-modal textarea{
  background: #fff;
    line-height: 1.25rem;
    border: 1px solid #ccc;
    width: 100%;
    display: block;
    position: relative;
    border-radius: 4px;
}
.email-ad .modal-body p {
  font-size: 13px;
  color: #111;
  font-weight: 400;
  text-align: center;
}
.email-ad .modal-body p a {
  font-size: 15px;
  color: #074365;
  font-weight: 600;
  text-align: center;
}
.email-ad .modal-body {
  background-image: url(../image/popup-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
}
#exampleModalCenter .modal-dialog-center-view {
  margin: 100px auto 0px auto;
}
.email-ad .popup-btn {
  text-align: center;
}
.email-ad .popup-btn .btn {
  padding: 9.5px 25px;
  font-size: 14px;
}
.popup-logo {
  width: 150px;
  margin: 0 auto;
}
.email-ad .modal-footer {
  padding: 12px;
  background: #eee;
}
.email-ad .form-control {
  font-size: 14px;
  color: #000;
  height: 46px;
  margin-bottom: 15px;
  box-shadow: 0px 2px 4px #b5b5b5 !important;
  border-radius: 4px;
  border: 1px solid #eee;
}
.email-ad .modal-header .close {
  font-size: 32px;
  color: #000;
  margin: -54px 15px 0 0;
  font-weight: 400;
  opacity: 0.8;
  text-shadow: none;
}
#product-product{
  color: #111;
}
.faq-accordion1{
  padding: 0 15px;
}
.faq-accordion1 .panel-default i{
  left: 93%;
    position: absolute;
}
.faq-accordion1 .panel-heading .panel-title a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.product-card {
  border: 1px solid #e2e2e2;
  padding: 15px;
  width: 250px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.product-card:hover {
  border: 2px solid #f44336;
}

.product-image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  object-fit: contain;
}

.product-brand {
    font-size: 14px;
    color: #111;
    font-weight: 600;
    margin: 7px 0;
}

.product-title {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

.product-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.product-link:hover {
  text-decoration: underline;
}

.product-ref {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 6px 0;
}

.qty-input {
    width: 20%;
    padding: 9px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.qty-input:focus-visible {
    outline: none;
}

.add-to-cart-btn {
  background-color: #fff;
  color: #cd645c;
  border: 1px solid #cd645c;
  padding: 10px 15px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
  background-color: #cd645c;
  border: 1px solid #cd645c;
  color: #fff;
}
.ref_no{
  color: #111;
  font-size: 13px;
}
.exact-delivery {
    color: #000;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-align: left;
    margin: 15px 0 12px 0;
}
#product-product hr {
  margin-top: 12px;
  margin-bottom: 12px;
  border: 0;
  border-top: 1px solid #d5d5d5;
}
.card{
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 30px;
}
.card-header{
  background-color: #074365;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 10px 0;
}
.card-header p{
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}
.r_form_icon_icon {
    padding: 12px 13px 5px 15px;
    border: 1px solid #ccc;
    border-radius: 0px 4px 4px 0px;
    background: #f8f8f8;
    border-left: 0;
    cursor: pointer;
}
.card-body .custom-coupon-button{
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
}
.code_coupon {
    display: flex;
    margin-left: 15px;
    margin-top: 12px;
}
.p_info{
  display: grid;
}
.p_info h5{
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 20px;
  margin-top: 0;
}
.call-inq {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 25px 0;
}
.call-inq a{
  color: #000;
  font-weight: 700;
  font-size: 20px;
}
.shipping-coupon h4{
  font-size: 16px;
  font-weight: 600;
  color: #111;
}
.shipping-coupon{
  width: 90%;
  position: relative;
}
.use-coupon h4 {
    margin: 0;
    font-size: 14px;
    color: #111;
    font-weight: 500;
    text-align: center;
}
.use-coupon h2 {
    margin: 5px 0 0 0;
    font-size: 20px;
    color: #000;
    font-weight: 700;
    padding: 3px 0 3px 0px;
    text-align: center;
}
.shipping-coupon h3 {
  color: #ff3535;
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}
.use-coupon {
    width: 40%;
    padding: 8px 35px 0 25px;
}
.t_month {
  display: flex;
  color: #777;
  margin-top: 10px;
  margin-bottom: 10px;
}
.quot-status{
  font-size: 13px!important;
  padding: 10px!important;
  width: 100%;
}
.no_min_order {
    display: -webkit-box;
    box-shadow: 0px 3px 8px #d5d5d5;
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
}
.min_content{
  margin-left: 15px;
}
.min_icon i{
  font-size: 24px;
  color: #007fac;
}
.min_content h4{
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
  color: #007fac;
}
.min_content p{
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}
.s_review{
  display: flex;
  margin-top: 40px;
  float: right;
}
.s_review h4 {
    margin: 0 13px 0px 0;
    background: #01a42a;
    color: #fff;
    padding: 5px 13px;
    border-radius: 4px;
}
.s_review h4 i{
  margin-left: 20px;
}
.product-meta-info {
  margin: 20px 0 0px 0;
}

.product-info-table {
  width: 100%;
  border-collapse: collapse;
}

.product-info-table td {
  padding: 8px 12px;
  font-size: 14px;
  vertical-align: middle;
}

.product-info-table td:first-child {
  font-weight: 600;
  width: 40%;
  color: #333;
}

.in-stock {
  color: green;
  font-weight: bold;
}

.out-of-stock {
  color: red;
  font-weight: bold;
}
.p_title{
  font-size: 18px;
  color: #111;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 12px 0;
}
.i_content {
  margin-left: 10px;
  font-size: 12px;
}
.button_group{
  display: flex;
  justify-content: space-between;
}
.btn-yellow {
    background: #f8f85e;
    border: 1px solid #f8f85e;
    color: #000;
    font-size: 15px !important;
    font-weight: 500;
    border-radius: 4px !important;
    box-shadow: 0px 1px 4px #7c7c7c !important;
    display: block;
    width: 100%;
    padding: 13px 20px !important;
}
.btn-yellow:hover, .btn-yellow:focus, .btn-yellow:active{
  background: #fde157;
  border: 1px solid #fde157;
}
.btn-purple{
  background: #bbcdfc;
  border: 1px solid #bbcdfc;
  color: #000;
  font-size: 13px!important;
  font-weight: 500;
  border-radius: 4px!important;
  box-shadow: 0px 1px 4px #7c7c7c !important;
}
.btn-purple:hover, .btn-purple:focus, .btn-purple:active{
  background: #c2bbfc;
  border: 1px solid #c2bbfc;
}
.price-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 15px;
}
.rating-box {
  display: flex;
  padding: 30px 0 20px 0;
}
.add-part-code{
  display: flex;
}
.add-part-code input{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.add-part-code button{
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.rating-style{
  padding: 0px 30px 20px 20px;
  width: 30%;
  text-align: center;
}
.rating-style h4{
  font-size: 50px;
  font-weight: 700;
  color: #02a000
}
.rating-style i{
  font-size: 30px;
  color: #02a000
}
.custom_reviews hr{
  margin-top: 0!important;
  margin-bottom: 20px!important;
}
.star-rating {
  direction: rtl;
  display: inline-block;
  padding: 20px;
  cursor: default;
}
.star-rating input[type="radio"] {
    display: none;
  }
.our-blogs h3{
  font-size: 18px;
  line-height: 26px;
  font-family: "Poppins", sans-serif;
  color: #111;
  font-weight: 700;
  padding-bottom: 20px;
}
  .star-rating label {
    color: #bbb;
    font-size: 2rem;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .star-rating label:hover,
  .star-rating label:hover ~ label,
  .star-rating input[type="radio"]:checked ~ label {
    color: #f2b600;
  }
.pro-header {
    background: #074365;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pro-header h3{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 26px;
}
.custom_reviewss button{
  margin-top: 155px;
}
.n_price span {
  font-size: 15px;
  color: #000;
}
.bulk-qty{
  font-size: 12px;
  font-style: italic;
  color: #01377a;
}
.flex-grow-1{
  width: 70%;
}
.review-panel p {
  max-width: 85%;
  text-align: justify;
}
.review-panel {
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px #16161642;
}
.like:hover{
  background: #02a000;
  border: 1px solid #02a000;
  border-radius: 3px;
  color: #fff;
  padding: 2px 7px;
}
.unlike:hover{
  background: #ff4e4e;
  border: 1px solid #ff4e4e;
  border-radius: 3px;
  color: #fff;
  padding: 2px 7px;
}
.review-panel .fa-stack{
  height: 16px;
  width: 16px;
  color: #ffa500;
}
.verified {
    color: #02a000;
    font-size: 13px;
    font-weight: 500;
    margin-left: 10px;
    font-style: italic;
}
.author-name{
  padding: 12px 0;
}
.author-name h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 7px 0;
}
.like-review{
  float: right;
}
.like-review a {
    border: 1px solid #bdbdbd;
    border-radius: 2px;
    padding: 3px 5px;
    background: #fff;
    color: #777;
}
.flex-grow-1 p{
  font-size: 15px;
  margin: 0;
  font-weight: 500;
  text-align: center;
}
.flex-grow-1 .progress{
  height: 12px;
  margin-bottom: 15px;
  background: #e1e1e1;
  box-shadow: none;
}
.flex-grow-1 .progress-bar{
  background: #074365;
}
.technical-form h3, .description-form h3, .specification-form h3{
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
#fbt-center{
  align-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fbt-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 600;
}
.fbt-total .btn-orange{
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
}
.icon-box i {
  color: #fff;
  background: #ef0000;
  font-size: 18px;
  padding: 10px 11px;
  border-radius: 4px;
  margin-right: 5px;
}
.icon-box a{
  font-size: 13px;
  font-weight: 500;
  color: #0050c2;
}
.btn-popup{
  padding: 0!important;
    color: #0050c2;
    background: transparent;
    font-weight: 500;
    text-decoration: underline;
}
.technical-form, .description-form, .specification-form{
  margin-bottom: 20px;
  margin-top: 20px;
}
.card-body .panel-group {
  margin-bottom: 0px;
}

.card-body .panel-group .panel-heading .panel-title a{
  font-size: 14px;
  font-weight: 500;
}
.technical-form h3{
  margin: 10px 0 0 0;
}
.faq-accordion2 .panel-default i {
  left: 87%;
  position: absolute;
}
.q_input {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 15px 0 0;
}
.card-body {
  padding: 20px;
}
.o_price{
  font-size: 15px;
}
.n_price{
  font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}
.common-cart{
  display: flex;
  justify-content: space-between;
}
.common-cart a{
  width: 50%;
  margin-left: 5px;
  margin-right:5px;
  display: block;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  font-weight: 400px;
}
.cart-orange{
  background: #ed4f30;
}
.cart-orange:hover{
  background: #ca3417;
}
.cart-green{
  background: #189c49;
}
.cart-green:hover{
  background: #0e6f32;
}
.d_price {
  font-size: 13px;
  font-weight: 500;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th{
  padding: 10px 15px;
}
table thead tr th {
  background: #074365;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #f1f1f1 !important;
}
table tbody {
  box-shadow: 0px 3px 10px #c4c4c4;
}
table tbody tr td {
  background: #fff;
  color: #111;
  font-size: 13px;
  border: 1px solid #d3d3d3 !important;
}

table tbody tr td span {
  font-size: 14px;
  font-weight: 600;
}

.product-meta-info .table>tbody>tr>td, .product-meta-info .table>tbody>tr>th, .product-meta-info .table>tfoot>tr>td, .product-meta-info .table>tfoot>tr>th, .product-meta-info .table>thead>tr>td, .product-meta-info .table>thead>tr>th{
  padding: 10px 15px;
}
.product-meta-info table thead tr th {
  background: unset;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: unset;
}
.product-meta-info table tbody {
  box-shadow: unset;
}
.product-meta-info table tbody tr td {
  background: unset;
  color: #111;
  font-size: 13px;
  border: unset!important;
}

.product-meta-info table tbody tr td span {
  font-size: 14px;
  font-weight: 600;
}
.get-to-know {
  background: #170df2;
  margin-top: 60px;
}
.get-to-know h3 {
  font-size: 30px;
  color: #fff;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 15px;
}
.clearance-sale {
  margin-top: 20px;
}
.clearance-sale h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}
.clearance-sale p {
  font-size: 16px;
  color: #f00;
  font-weight: 500;
}
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  vertical-align: middle;
}
.custom-coupon-input {
  font-size: 14px !important;
  border: none;
  box-shadow: 0px 2px 4px #b5b5b5 !important;
  border-radius: 4px !important;
  padding: 0 22px !important;
  background: #fff;
}
.custom-coupon-input2 {
  font-size: 14px !important;
  border: none;
  box-shadow: 0px 2px 4px #b5b5b5 !important;
  border-radius: 4px !important;
  background: #fff;
}
.n_customer .iti {
  width: 100%;
}
.btn-account-submit {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  padding: 10px 35px !important;
  font-size: 15px !important;
  font-weight: 500;
  border-radius: 50px !important;
}
.btn-account-submit:hover,
.btn-account-submit:active,
.btn-account-submit:focus {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-orange {
  background: #e42017;
  border: 1px solid #e42017;
  color: #fff;
}
#button-coupon {
  margin-left: 10px !important;
}
.btn-orange:hover,
.btn-orange:active,
.btn-orange.active,
.btn-orange.disabled,
.btn-orange[disabled] {
  background: #8782f6;
  border: 1px solid #8782f6;
  color: #fff;
}
.cart-footer{
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: right;
  border-top: none;
}
.cart-footer a{
  background: #5f5bcc;
  border-color: #5f5bcc;
}
.custom-coupon-button {
  border-radius: 4px !important;
  font-size: 14px !important;
  padding: 11px 15px !important;
}
.coupon-label{
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin-bottom: 15px;
}
.coupon-lebal .panel-default{
  border-color: transparent;
  -webkit-box-shadow:none;
  box-shadow:none;
}
.fare-break{
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}
.secure-checkout{
  padding: 15px 0;
}
.cart-payment-icon{
  max-width: 80%;
  margin: 10px auto;
}
.or-line {
    border-top: 1px solid #d2d2d2;
    margin: 50px 0 30px 0;
    position: relative;
}
.o_l p {
    margin: 0;
    font-size: 14px;
    background: #ffffff;
    position: absolute;
    text-align: center;
    width: fit-content;
    padding: 10px;
    border-radius: 100px;
    top: -21px;
    left: 44%;
    color: #444;
    font-weight: 500;
}
.secure-checkout a{
  width: 100%;
  font-size: 16px!important;
  font-weight: 600!important;
}
.fare-label{
  font-size: 14px;
  font-weight: 500;
  color: #3c3c3c;
}
.fare-amount{
  font-size: 15px;
  font-weight: 600;
  color: #111;
}
.coupon-lebal .panel-default .panel-body{
  padding: 0;
}
.coupon-lebal .panel-default .panel-heading{
  padding: 0;
  border: none;
  border-radius: 0;
}
#collapse-shipping button {
  text-align: center;
}
.home-view-all {
  font-weight: 600 !important;
}
#account-password .control-label {
  font-size: 16px;
  color: #111;
  font-weight: 700;
  margin-bottom: 10px;
}
#account-password .control-label::before {
  display: none;
}
#account-password .form-control {
  font-size: 14px;
  border-radius: 4px;
  font-weight: 500;
  border-color: #ccc;
  color: #111;
}
#account-address .control-label {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 7px;
}
#account-address .radio-inline {
  font-size: 13px;
  color: #fff;
}
#account-address .control-label::before {
  display: none;
}
#account-address .form-control {
  font-size: 14px;
  border-radius: 50px;
  font-weight: 500;
  border-color: #fff;
  color: #111;
}
#account-edit fieldset {
  margin: 30px auto 30px auto;
  padding: 0px;
}
#account-edit fieldset .button {
  margin: 20px 0 0 0;
}
#account-password fieldset .button {
  margin: 20px 0 0 0;
}
#account-address fieldset .button {
  margin: 20px 0 0 0;
}
#quotation .btn-black {
  float: right;
}
#account-password fieldset {
  margin: 30px auto 30px auto;
  padding: 0px;
}
#account-address fieldset {
  margin: 10px auto 50px auto;
  padding: 50px 50px;
  background: #074365;
  border-radius: 30px;
  max-width: 50%;
}
#account-quotation fieldset {
  padding: 15px 20px 10px 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
}

#account-edit .form-horizontal .form-group, #account-password .form-horizontal .form-group, .contact-wrapper .form-horizontal .form-group{
  margin-right: 0;
  margin-left: 0;
}
.account-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px;
  background: #f5f5f5;
  color: #222;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #ccc;
  position: relative;
  margin-bottom: 8px;
}
.account-group a.active {
  background: #fed70d;
  color: #111;
  border: 1px solid #d6b300;
}
.account-group a:hover {
  background: #fed70d;
  color: #111;
  border: 1px solid #d6b300;
}
.account_icon img{
  width: 20px;
}
.account-group .account_icon {
  padding-right: 10px;
  flex-shrink: 0;
  border-right: 1px solid #111;
}

.account-group .account_title {
  flex-grow: 1;
  margin-left: 10px;
  font-size: 15px;
  font-weight: 500;
}
.profile-card {
  border-radius: 8px;
  background: #fff;
  width: 100%;
  margin-bottom: 20px;
}

.profile-card .profile-logo {
  margin-bottom: 10px;
}

.profile-card .profile-logo img {
  border-radius: 50%;
  border: 3px solid #333;
  image-rendering: crisp-edges;
  width: 100px;
  height: 100px;
  object-fit: contain;
  image-rendering: pixelated;
  backface-visibility: hidden;
}

.profile-card .profile-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* Chevron after */
.account-group a::after {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  right: 15px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#account-edit .control-label {
  font-size: 16px;
  color: #111;
  font-weight: 600;
  margin-bottom: 10px;
}
#account-edit .control-label::before {
  display: none;
}
.enquiry-total {
  position: relative;
}
.counter-enquiry {
  background: #000;
  padding: 4px 8px;
  border-radius: 50%;
  position: relative;
  font-size: 9px !important;
  border: none;
  color: #fff;
  width: 20px;
  height: 20px;
  bottom: 18px;
  right: 10px;
}
#account-edit .form-control {
  font-size: 14px;
  border-radius: 4px;
  font-weight: 500;
  border-color: #ccc;
  color: #111;
}
#checkout-cart {
  background: #ecf6ff;
  padding-bottom: 100px;
}
#clearance-category {
  background: #f2f2f2;
  padding-bottom: 200px;
}
#search-option tbody tr td span {
  font-size: 14px;
  font-weight: 400;
}
#product-category {
  background: #fff;
}
#product-category #content {
  padding-bottom: 0;
}
#account-login {
  padding-top: 50px;
}
#availability-price fieldset {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}
.register-features h2 {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
}
.second-level-cat {
  box-shadow: 0px 3px 9px #afabab;
  border-radius: 15px;
  background: #fff;
  padding: 15px 30px 15px 30px;
  margin-bottom: 30px;
}
.second-level-cat img {
  margin: 0 auto;
}
.second-level-cat h4 {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    line-height: 17px;
}
.rahul p{
    font-size: 11px;
    color: #111;
    line-height: 18px;
}
.register-contact{
  padding-left: 30px;
  margin-top: 30px;
}
.footer-connect{
  font-size: 15px;
  color: #fff;
  padding-left: 30px;
  font-weight: 500 !important;
  margin-top: 30px;
}
.register-features .information-content{
  padding-left: 30px;
  margin-top: 20px;
}
.register-contact ul {
    padding: 0;
    list-style: none;
}
.register-contact ul li{
  display: flex;
  margin-top: 16px;
}
.register-contact ul li i{
  font-size: 22px;
  color: #fff;
}
.register-contact ul li a {
    font-size: 15px;
    color: #fff;
    margin: 4px 0 0 12px;
    font-weight: 400;
}
.g_button {
    display: flex;
    justify-content: center;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 4px;
    margin-top: 30px;
    background: #fff;
}
.g_button:hover{
    background: #222;
}
.g_button:hover > span{
    color: #fff;
}
.g_button span {
    font-size: 16px;
    color: #000;
    margin: 6px 0 0 10px;
}
.r_form_icon {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #eee;
}
.r_form_icon img{
  width: 18px;
}
.r_form_icon i{
  font-size: 20px;
  color: #111;
}
.hire-line{
  border-top: 1px solid #d2d2d2;
  margin-top: 24px;
  position: relative;
}
.hire-line-login{
  max-width: 40%;
  margin: 25px auto 0 auto;
  border-top: 1px solid #d2d2d2;
  position: relative;
}
.registration_bg11 .form-control{
  font-size: 13px!important;
  border-radius: 4px;
  color: #111;
  font-weight: 500;
}
.registration_bg11 .form-control:focus{
  border-color: #ccc;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.o_r p {
    margin: 0;
    font-size: 15px;
    background: #ffffff;
    position: absolute;
    text-align: center;
    width: fit-content;
    padding: 10px;
    border-radius: 100px;
    top: -20px;
    left: 44%;
    color: #000;
    font-weight: 600;
}
.o_r_c p {
    margin: 0;
    font-size: 14px;
    background: #ffffff;
    position: absolute;
    text-align: center;
    width: fit-content;
    padding: 10px;
    border-radius: 100px;
    top: -21px;
    left: 30%;
    color: #444;
    font-weight: 500;
}
.o_r_l p {
    margin: 0;
    font-size: 14px;
    background: #ffffff;
    position: absolute;
    text-align: center;
    width: fit-content;
    padding: 2px 10px;
    border-radius: 100px;
    top: -12px;
    left: 38%;
    color: #444;
    font-weight: 500;
}
.top-level-cat {
  background: #fff;
  margin-bottom: 30px;
  position: relative;
  padding: 15px 0px 15px 0px;
  box-shadow: 0px 3px 9px #afabab;
  border-radius: 15px;
  text-align: center;
}
#account-quotation {
  background: #fff;
}
#account-order p,#account-wishlist p, #account-return p, #account-transaction p, #account-download p, #account-quotation p{
  text-align: center;
}
#account-order h1,
#account-order h2,#account-quotation h1,
#account-quotation h2, #account-address h2, #account-password h1,#account-edit h1, #account-wishlist h2, #account-return h1, #account-transaction h1, #account-download h2{
  font-size: 24px;
  font-weight: 600;
  color: #000;
  text-align: center;
  padding-bottom: 15px;
  margin: 0;
}
#common-success {
  background: #ecf6ff;
}
#common-success #content {
  margin: 15px 0 70px 0;
}
.custom-confirmation {
  background: #fff;
  max-width: 50%;
  margin: 0 auto;
  padding: 30px 50px;
  border-radius: 0;
  border: 4px solid #1D67CD;
}
.scheinider-center {
  margin-bottom: 30px;
  position: relative;
  left: 560px;
}
.custom-confirmation h1 {
  font-size: 40px;
  font-weight: 600;
  color: #111;
  padding-bottom: 15px;
  line-height: 45px;
  margin-top: 40px;
}
.custom-confirmation h1 span{
  font-size: 25px;
  font-weight: 500;
  color: #222;
}
.custom-confirmation h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-top: 0;
}
.custom-confirmation h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  padding: 10px 0;
}
.custom-confirmation p {
  font-size: 14px;
  padding-bottom: 20px;
}
.custom-confirmation img {
  margin: 0px auto 15px auto;
}
.top-level-cat h4 {
  position: relative;
  font-size: 13px;
  color: #000;
  font-weight: 500;
  text-align: center;
  margin: 15px;
  line-height: 20px;
}
.all-category {
  text-align: center;
}
.all-category a {
  font-size: 13px;
  font-weight: 400;
  border-radius: 4px;
}
.top-level-cat .img-thumbnail {
  border: none;
  padding: 0;
  border-radius: 20px;
}
.register-features h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 50px;
    padding-left: 30px;
}
.register-features h4 {
  font-size: 22px;
  color: #00ff1c;
  font-weight: 600;
  margin-top: 50px;
}
.register-features h5 {
  font-size: 22px;
  color: #ffb6e9;
  font-weight: 600;
  margin-top: 50px;
}
.register-features p {
  font-size: 15px;
  color: #fff;
  text-align: center;
}
.register-features h6 {
  font-size: 15px;
  color: #fff;
  padding-left: 30px;
  font-weight: 400;
}

#account-register {
  padding-top: 50px;
  padding-bottom: 50px;
}
#account-register .form-group .control-label {
  padding: 0 10px 4px 0px;
}
.login-login-button {
  width: 100%;
  font-size: 16px !important;
}
.product-image-wrapper {
  display: flex;
  gap: 10px;
}
.vertical-thumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vertical-thumbs li img {
  cursor: pointer;
}

.main-image img {
  max-width: 100%;
}
.new-electrihub {
    max-width: 40%;
    margin: 30px auto 70px auto;
}
.new-electrihub .btn-yellow{
    background: #f8f85e;
    border: 1px solid #f8f85e;
    color: #000;
    font-size: 16px !important;
    font-weight: 600;
    border-radius: 50px !important;
    box-shadow: none!important;
    display: block;
    width: 100%;
    padding: 13px 20px !important;
}
.new-electrihub .btn-yellow:hover{
    background: #f8d45e;
    border: 1px solid #f8d45e;
    color: #000;
}
.new_login_card{
  max-width: 40%;
  margin: 50px auto 100px auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}
.new_login_card_header {
    background-color: #074365;
    padding: 5px;
    border-radius: 4px 4px 0 0;
}
.new_login_card_header img{
    height: 45px;
}
.region-box {
    padding: 30px 60px 50px 60px;
}
.region-box h2 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111;
}
.region-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}
.region-box label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #111;
}
.region-box select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}
.btn-outline {
  background-color: white;
  border: 1px solid #000;
  color: #000;
  font-size: 16px!important;
  padding: 12px!important;
  font-weight: 500;
}
#account-login .well {
  max-width: 40%;
  margin: 0 auto 0px auto;
  padding: 30px 80px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}
#account-login .well label {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  padding-bottom: 6px;
}
#account-login .well h2 {
  font-size: 30px;
  font-weight: 600;
  color: #111;
  text-align: center;
  margin: 0;
}
.login-logo {
  padding-bottom: 30px;
  margin: 0 auto;
}
#account-register .breadcrumb {
  display: none;
}
#account-login .breadcrumb {
  display: none;
}
#account-account {
  background: #fff;
}
#account-account #column-left {
  margin-top: 20px;
}
.custom-register {
  margin: 0 auto;
  background: #fff;
  padding: 25px 50px;
  border-radius: 0px 13px 13px 0px;
}
.register-header h4 {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
.register-header a{
  color: #2270DF;
  font-weight: 600;
}
#myRadioGroup input[type="radio"] {
  display: none;
}
#myRadioGroup label > input + .forcustom {
  background: #fff;
  border: 1px solid #ccc;
  border-right: none;
  padding: 10px 20px;
  cursor: pointer;
  color: #333;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  font-size: 13px;
}
#myRadioGroup label > input:checked + .forcustom {
  background: #074365 !important;
  border: 1px solid #074365;
  border-right: none;
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  font-size: 13px;
}
#myRadioGroup label > input + .forcustom1 {
  background: #fff;
  border: 1px solid #ccc;
  border-left: none;
  padding: 10px 20px;
  cursor: pointer;
  color: #333;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  font-size: 13px;
}
.inform-menu .secondary-submenu {
  min-width: 160px;
  width: unset !important;
}
.inform-menu {
  padding: 10px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}

#myRadioGroup label > input:checked + .forcustom1 {
  background: #074365 !important;
  border: 1px solid #074365;
  border-left: none;
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  font-size: 13px;
}
.cart-title {
  display: flex;
  padding-bottom: 0;
  justify-content: space-between;
}
.estimate-heading {
  font-size: 18px;
  color: #000;
  padding-bottom: 20px;
  padding-top: 30px;
}
.estimate-section {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
}
.estimate-section p {
  font-size: 16px;
  color: #000;
  padding-bottom: 15px;
}
.estimate-section label {
  font-size: 14px;
  color: #222;
  text-align: left !important;
}
.freght-button {
  text-align: center;
}
.estimate-section .form-control {
  border: none;
  border-radius: 4px;
  box-shadow: 0px 0px 6px #7c7c7c;
  font-size: 13px !important;
  color: #000 !important;
}
#account-account h2 {
  font-size: 22px;
  color: #000;
  font-weight: 500;
}
.get-to-know p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
  max-width: 75%;
  margin: 0 auto;
  line-height: 26px;
}
.contact-button {
  text-align: center;
}

.contact-button a {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
}
.contact-button a:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}
/* .more-about-us h3 {
  font-size: 24px;
  text-align: center;
  color: #000;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
} */
.feel-free {
  margin: 30px 0;
}
.feel-contact {
  padding: 25px 60px;
}
.feel-contact .form-control {
  font-size: 14px !important;
  border: 1px solid #222;
}
.feel-contact textarea {
  height: 150px;
}
.feel-submit button {
  font-size: 16px;
  display: block;
  width: 100%;
}
.image-content {
  position: relative;
}
.image-content h4 {
  position: absolute;
  font-size: 40px;
  font-weight: 300;
  color: #000;
  text-align: center;
  top: 25%;
  left: 19%;
  max-width: 60%;
  line-height: 48px;
}
.f-left i.fa.fa-envelope {
  margin-top: 20px;
  margin-bottom: 20px;
}
.share-icon-footer {
  padding: 0;
  text-align: center;
}
.share-icon-footer i {
  font-size: 20px !important;
  padding-right: 10px;
  color: #000;
  margin-top: 15px;
}
.copy p {
  color: #ccc;
  font-size: 13px;
}
.share-icon-footer a {
  color: #000;
  text-decoration: none;
}
.share-icon {
  padding-top: 30px;
}
.share-icon i {
  font-size: 20px;
}
.navbar-collapse {
  padding-right: 0;
  padding-left: 0;
}
.share-icon a {
  color: #000;
  text-decoration: none;
}
.share-icon ul li {
  margin-left: 10px;
}


.products-range .col-sm-3 {
  width: 20%;
}

.brand-img {
  background-color: #fff;
  padding: 15px;
  box-shadow: 1px 2px 2px #22222261;
  border-radius: 6px;
  border: 1px solid #eae7e7;
  margin: 0px 0 20px 0;
}
.brand-img img {
  margin: 0 auto;
}
.custom-brand-img {
  margin-top: 0px;
}
.products-range h3 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-top: 50px;
  color: #000;
  margin-bottom: 20px;
}
/*Testimonial CSS*/
.testinomials-heading {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}
.testinomials {
  font-size: 15px;
  color: #555;
  font-style: italic;
  background: #f4f3f1;
  line-height: 30px;
}
.mfilter-box-38 h3 {
  margin-top: 0 !important;
}
#search-option tbody tr td a {
  color: #000 !important;
}
#testimonial0 {
  padding: 0px;
  margin-bottom: 40px;
}
.display_inline {
  display: flex;
  justify-content: space-between;
}
.display_inline .box-heading {
  margin: 0 0 10px 0;
}
.display_inline .custom-btn-filter {
  background-color: transparent;
  border: none;
  color: #002bff;
}
.testinomials .owl-wrapper-outer {
  box-shadow: none;
  border: 0px;
}
.testinomials .ttitle {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: bold;
}
.testinomials .tdescription {
  font-size: 18px;
  color: #222;
}
.testinomials .owl-carousel .owl-buttons div {
  color: #222;
  text-shadow: none;
}
.testinomials .tauthor {
  font-size: 16px;
  font-weight: 600;
  color: #008AFC;
  font-style: normal;
  margin-top: 10px;
}
.testinomials h4{
  font-size: 13px;
  font-style: normal;
}
.testinomials .owl-carousel {
  background: none;
}
/*End Testimonial CSS*/
.product-thumb .caption {
  color: #111;
  position: relative;
}
.cart-group {
  display: flex;
  margin-top: 20px;
}
.nav_currency .dropdown-menu {
  right: 0;              
  left: auto;            
  min-width: 206px;      
  max-height: 300px;     
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  overflow-x: hidden;         
}
.country-code{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 13px !important;
  border-radius: 4px;
  color: #111;
  font-weight: 500;
  width: 100%;
  height: 40px;
  box-shadow: none;
  outline: none;
  border: 1px solid #ccc;
}
.search-result table thead {
  background: #fff !important;
  color: #666 !important;
}
.search-result table {
  margin-bottom: 0;
}
#availability-price .form-horizontal .form-group {
  margin-right: 0;
  margin-left: 0;
}
#availability-price .cat-no {
  min-width: 250px;
}
#availability-price .quantity-no {
  min-width: 150px;
}
#availability-price .description-no {
  min-width: 500px;
}

.order-status {
  margin-top: 30px;
}
.order-status h3 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
#checkout-cart h1 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.all_remove a{
  font-size: 13px;
  color: #111;
}
.all_remove a:hover{
  text-decoration: none;
  color: #000;
}
.form-control {
  height: 40px;
  border-radius: 0;
  box-shadow: none;
}
.home-search .btn {
  padding: 10.5px 21px;
}
#checkout-cart .btn {
  padding: 10.5px 12px;
}
.quantity-search {
  display: flex;
}
.group-search {
  border-radius: 50px !important;
  margin-left: 10px !important;
}
.catalog-input {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
  box-shadow: 0px 1px 4px #ccc;
  border: none;
  border-right: 2px solid #a0a0a0;
  width: 40%;
}
.description-input {
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
  box-shadow: 0px 1px 4px #ccc;
  border: none;
  border-left: 2px solid #a0a0a0;
  width: 40%;
}
.catalog-number input {
  font-size: 14px !important;
  color: #111;
  font-weight: 400;
}
.relative {
  position: relative;
}
.absolute {
  display: flex;
  position: absolute;
  bottom: 0;
  top: 0;
  z-index: 10;
  left: 4%;
  align-items: center;
  padding-left: 1rem !important;
}
.absolute i {
  color: #333;
}
.custom-select {
  background: #fff;
  line-height: 1.25rem;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  display: block;
  position: relative;
  border-radius: 50px;
}
.email-input {
  display: flex;
  position: absolute;
  bottom: 0;
  top: 0;
  z-index: 10;
  left: 2%;
  align-items: center;
  padding-left: 1rem !important;
}
.email-input i {
  color: #333;
}
.bg-light-dark {
  background: #fff;
  line-height: 1.25rem;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  display: block;
  position: relative;
  padding-left: 40px;
  border-radius: 50px;
}
.custom-contact-form .contact-input {
  font-size: 14px !important;
  color: #111;
  background: #fff;
  line-height: 1.25rem;
  border-style: none;
  width: 100%;
  height: 45px;
  display: block;
  position: relative;
  padding-left: 45px;
  border-radius: 50px;
}
.custom-contact-form textarea {
  font-size: 14px !important;
  color: #111;
  font-weight: 500;
  background: #fff;
  line-height: 1.25rem;
  border-style: none;
  width: 100%;
  height: 150px;
  display: block;
  position: relative;
  padding: 20px;
  border-radius: 20px;
}
.request-form input {
  font-size: 13px !important;
  color: #111;
  font-weight: 500;
}
.enquiry-button .btn-white {
  border-radius: 50px;
  padding: 8px;
  font-weight: 500;
  font-size: 16px;
}
.contact-submit {
  margin-top: 10px;
}
.contact-submit .btn-white {
  border-radius: 50px;
  padding: 8px 40px;
  font-weight: 500;
  font-size: 16px;
}
.recent-enquiries {
  padding-bottom: 0px;
}
.recent-enquiries h4 {
  font-size: 24px;
  color: #000;
  font-weight: 600;
}
.recent-enquiries p {
  font-size: 15px;
  color: #5b5b5b;
  margin-bottom: 15px;
}

.list-option li {
  line-height: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}
.list-option li span {
  line-height: 25px;
  font-size: 13px;
  font-weight: 400;
  color: #333;
}
#product-category .caption .table > tbody > tr > td,
#availability-price .caption .table > tbody > tr > td,
#product-manufacturer .caption .table > tbody > tr > td,
#product-search .caption .table > tbody > tr > td {
  padding: 6px 20px 6px 0px;
  vertical-align: top;
}
#product-category .caption .table-responsive,
#availability-price .caption .table-responsive,
#product-manufacturer .caption .table-responsive,
#product-search .caption .table-responsive {
  overflow-x: visible;
}
#product-category .caption .table,
#availability-price .caption .table,
#product-search .caption .table,
#product-manufacturer .caption .table {
  margin-bottom: 0;
}
#product-category .caption .table-responsive tbody,
#availability-price .caption .table-responsive tbody,
#product-manufacturer .caption .table-responsive tbody,
#product-search .caption .table-responsive tbody {
  box-shadow: none;
}
#product-category .caption .table-responsive tbody td,
#availability-price .caption .table-responsive tbody td,
#product-search .caption .table-responsive tbody td,
#product-manufacturer .caption .table-responsive tbody td {
  border: none !important;
}
#product-category .caption .table-responsive tbody td:last-child,
#availability-price .caption .table-responsive tbody td:last-child,
#product-search .caption .table-responsive tbody td:last-child,
#product-manufacturer .caption .table-responsive tbody td:last-child {
  border-bottom: none !important;
}
#product-category .product-thumb input,
#product-manufacturer .product-thumb input,
#availability-price .product-thumb input {
  border: 1px solid #777;
  font-size: 13px !important;
  color: #000 !important;
  border-radius: 0;
  width: 80px;
  height: 36px;
  padding: 11px;
}

#product-product .cart-group button {
  width: 75%;
  border: none;
  display: inline-block;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
#product-product #content {
  padding-bottom: 50px;
}
#product-product .cart-group button + button {
  width: 30%;
  border-left: 1px solid #ddd;
  margin-left: 10px;
}
#product-product .cart-group input {
  border: none;
  box-shadow: 0px 1px 4px #7c7c7c !important;
  font-size: 13px !important;
  color: #000 !important;
  margin-right: 10px;
  height: 42px;
  border-radius: 6px !important;
  width: 25%;
}
#clearance-category .caption .table > tbody > tr > td {
  padding: 5px;
}
#clearance-category .caption .table > tbody > tr > th {
  padding: 5px;
}
#clearance-category .caption .table-responsive {
  overflow-x: visible;
}
#clearance-category .caption .table-responsive table {
  max-width: 80%;
}
#clearance-category .caption .table-responsive tbody {
  box-shadow: none;
}
#clearance-category .caption .table-responsive tbody td {
  border-left: none !important;
  border-right: none !important;
}
#clearance-category .caption .table-responsive tbody td:last-child {
  border-bottom: none !important;
}
#clearance-category .product-thumb input {
  border: none;
  box-shadow: 0px 1px 4px #7c7c7c !important;
  font-size: 13px !important;
  color: #000 !important;
  margin-right: 10px;
  height: 42px;
  border-radius: 6px !important;
}
#product-search .caption .table > tbody > tr > td {
  padding: 5px;
}
#product-search .caption .table > tbody > tr > th {
  padding: 5px;
}
#product-search .caption .table-responsive {
  overflow-x: visible;
}
#product-search .caption .table-responsive table {
  max-width: 80%;
}
#product-search .caption .table-responsive tbody {
  box-shadow: none;
}
#product-search .caption .table-responsive tbody td {
  border-left: none !important;
  border-right: none !important;
}
#product-search .caption .table-responsive tbody td:last-child {
  border-bottom: none !important;
}
#product-search .product-thumb input {
  border: none;
  box-shadow: 0px 1px 4px #7c7c7c !important;
  font-size: 13px !important;
  color: #000 !important;
  margin-right: 10px;
  height: 45px;
  border-radius: 6px !important;
}
#product-box .caption .table > tbody > tr > td {
  padding: 5px;
}
#product-box .caption .table > tbody > tr > th {
  padding: 5px;
}
#product-box .caption .table-responsive {
  overflow-x: visible;
}
#product-box .caption .table-responsive table {
  max-width: 80%;
}
#product-box .caption .table-responsive tbody {
  box-shadow: none;
}
#product-box .caption .table-responsive tbody td {
  border-left: none !important;
  border-right: none !important;
}
#product-box .caption .table-responsive tbody td:last-child {
  border-bottom: none !important;
}
#product-box .product-thumb input {
  border: none;
  box-shadow: 0px 1px 4px #7c7c7c !important;
  font-size: 13px !important;
  color: #000 !important;
  margin-right: 10px;
  height: 45px;
  border-radius: 6px !important;
}
/*Search*/
.image button {
  background: #fff;
  border: 1px solid #2a1f6d;
  color: #2a1f6d;
  padding: 5px 20px;
  margin-bottom: 9px;
  font-size: 13px;
  text-shadow: none;
}
#cart .dropdown-menu table {
  margin-bottom: 10px;
}
#cart .dropdown-menu li > div {
  min-width: 427px;
  padding: 0 10px;
}
#cart .dropdown-menu li p {
  margin: 20px 0;
}
.refine-category ul {
  list-style: none;
  padding: 0;
}
/*.refine-category ul li {
    line-height: 35px;
    background-color: #fff;
  padding: 12px 15px;
    border-radius: 0px;
    text-align: center;
}*/
.registration_bg {
    max-width: 75%;
    margin: 0 auto;
    float: none;
    border: 1px solid #ccc;
    background: #074365;
    border-radius: 15px;
}
.register-features {
    background: #074365;
    padding: 15px;
    border-radius: 15px 15px 0 0;
}
.arrow-icon img {
    margin: 70px 50px 70px auto;
}
.padd-zero{
  padding: 0;
}
.registration_bg11 {
  margin-top: 40px;
}
.registration_bg11 label {
  font-size: 16px;
}
.registration_bg h1 {
    font-size: 30px;
    margin: 30px 0 10px 0;
    font-weight: 600;
    color: #111;
}
.label-margin label {
  font-weight: 600;
  margin-right: 0px;
  margin-left: -5px;
}
.label-margin {
  margin-bottom: 30px;
}
.category-group li {
  background: #074365;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
  padding: 10px 0px;
  text-align: center;
  font-size: 12px;
  margin-bottom: 35px;
}
.sec-category {
  box-shadow: 0px 3px 3px #00000063;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 12px;
}
.refine-category a {
  color: #000000;
  font-size: 15px;
  font-weight: 600;
}

#menu #category {
  float: left;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.footer-newsletter {
  display: flex;
}
.footer-newsletter .form-control {
    border-radius: 4px;
    box-shadow: 0 2px 4px #0202022e;
}
.information-content h6 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  color: #f1f1f1;
}
.mt-6{
  margin-top: 60px;
}
.footer-newsletter .btn-primary {
  border-radius: 4px;
  padding: 7px 12px;
  background: #10a436;
  border: 1px solid #10a436;
  font-size: 15px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* content */

/* footer */
footer {
  padding-top: 50px;
  background-color: #2e353b;
}
footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}
footer a {
  color: #ddd;
}
footer a:hover {
  color: #fff;
}
footer h5 {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}
.contact-us-page h1 {
  font-size: 28px;
  color: #000;
  font-weight: 500;
  padding-top: 50px;
  padding-bottom: 10px;
  padding-left: 70px;
}
.contact-us-page p {
  font-size: 16px;
  color: #1d67cd;
  font-weight: 500;
  padding-left: 70px;
  font-style: italic;
  line-height: 30px;
}
.contact-us-page img {
  max-width: 55%;
  margin: 0 auto;
}
.custom-contact-form {
  background: #074365;
  padding: 30px 80px;
  max-width: 50%;
  margin: 0 auto;
  margin-top: 70px;
  border-radius: 30px;
  box-shadow: 0px 4px 9px #424242;
}
.currency_group {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 7px 0 15px 0;
}
.currency_group h3 {
  margin: 0;
  font-size: 20px;
  color: #111;
  font-weight: 600;
}
.currency_group h5 {
  margin: 0;
  font-size: 13px;
  text-decoration: line-through;
}
.currency_group h6 {
  margin: 0;
  font-size: 14px;
  color: #068000;
}
.our-address {
  background: #f9f9f9;
  padding: 30px 0;
}
.top_cat{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category_cat p{
  margin: 0;
  color: #111;
}
.cat_img a {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #111;
}
.t_stock{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.expect_delivery .btn{
  padding: 0;
}
.all_stock p{
  margin: 0;
}
.all_stock {
  color: #111;
  display: flex;
  gap: 7px;
}
.all_stock span{
  font-weight: 600;
}
.our-address h3 {
  font-size: 26px;
  color: #000;
  padding-bottom: 10px;
  margin-top: 0;
}
.our-location {
  max-width: 90%;
  margin: 0 auto;
  padding-bottom: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.our-location i {
  font-size: 32px;
  color: #018afc;
  margin-right: 20px;
}
.our-location p {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}
.our-location address {
  font-size: 16px;
  color: #000;
  font-weight: 300;
  margin: 0;
}
.our-location h5 {
  font-size: 16px;
  color: #000;
  font-weight: 300;
  margin: 0;
}
.custom-contact-form h3 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  padding-bottom: 0px;
  margin-top: 0;
}
/* alert */
.alert {
  padding: 8px 14px 8px 14px;
}
/* breadcrumb */
.breadcrumb {
  margin: 0 0 20px 0;
  padding: 8px 0;
  border: none;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #dbdbdb;
}
.breadcrumb a {
  color: #858585;
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li {
  text-shadow: 0 1px 0 #fff;
  padding: 0 15px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li + li:before {
  content: "";
  padding: 0;
}
.breadcrumb > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  right: 0px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #9f9b9b;
  border-bottom: 1px solid #9f9b9b;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pagination {
  margin: 0;
}
/* buttons */
.buttons {
  margin: 20px 0 0 0;
}
.buttons a{
  background: #5f5bcc;
  border-color: #5f5bcc;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.btn {
  padding: 7.5px 12px;
  font-size: 12px;
  border-radius: 0px;
  box-shadow: none;
}
.btn-xs {
  font-size: 9px;
}
.btn-sm {
  font-size: 10.2px;
}
.btn-lg {
  padding: 10px 16px;
  font-size: 15px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
  font-size: 12px;
}
.btn-group > .btn-xs {
  font-size: 9px;
}
.btn-group > .btn-sm {
  font-size: 10.2px;
}
.btn-group > .btn-lg {
  font-size: 15px;
}
.counter-quantity {
  background: #f1ba00;
  padding: 0px 5px;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  left: 29px;
  font-size: 9px;
  border: none;
  color: #000;
  width: 20px;
  height: 20px;
}
.btn-default {
  color: #777;
  text-shadow: 0 1px 0 rgb(255 255 255 / 50%);
  background-color: #e7e7e7;
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  border-color: #ddd #ddd #b3b3b3 #b7b7b7;
}
.btn-cart {
  background-color: #f1ba00;
  border: 1px solid #f1ba00;
  box-shadow: none;
}
.btn-cart:hover,
.btn-cart:active,
.btn-cart.active,
.btn-cart.disabled,
.btn-cart[disabled] {
  background-color: #ffc400;
  border: 1px solid #ffc400;
}
.btn-black {
  background-color: #222;
  border: 1px solid #222;
  box-shadow: none;
  color: #fff;
}
.btn-black:hover,
.btn-black:active,
.btn-black.active,
.btn-black.disabled,
.btn-black[disabled] {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn-primary {
  background-color: #074365;
  border: 1px solid #074365;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: #01308e;
  border: 1px solid #01308e;
}
.btn-custom {
    background-color: #2270DF;
    border: 1px solid #2270DF;
    box-shadow: none;
    color: #fff;
    font-size: 16px;
    padding: 10px;
}
.btn-custom:hover,
.btn-custom:active,
.btn-custom.active,
.btn-custom.disabled,
.btn-custom[disabled] {
  background-color: #064399;
  border: 1px solid #064399;
  color: #fff;
}
/*.glow-on-hover {
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    padding: ;
}*/

.glow-on-hover {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  background-size: 400%;
  animation: glowing 20s linear infinite;
  opacity: 1;
  color: #fff;
  transition: opacity 0.3s ease-in-out;
  border-radius: 0px;
}

.glow-on-hover:active {
  color: #fff;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.btn-clear {
  background: #fff;
  color: #074365;
  border-width: 3px;
  border-style: solid;
  border-image: linear-gradient(74deg, #074365, #07436540);
  border-image-slice: 1;
  border-color: #074365;
}

.btn-clear:hover,
.btn-clear:focus,
.btn-clear:focus-visible,
.btn-clear:active,
.btn-clear.active,
.btn-clear.disabled,
.btn-clear[disabled] {
  background: linear-gradient(45deg, #074365, #07436526);
  color: #fff;
  border-width: 3px;
  border-style: solid;
  border-image: linear-gradient(74deg, #074365, #96c1ff);
  border-image-slice: 1;
  border-radius: 17px;
  border-color: #074365;
}
.btn-white {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
.btn-white:hover,
.btn-white:active,
.btn-white.active,
.btn-white.disabled,
.btn-white[disabled] {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
/*.btn-white {
  background: linear-gradient(45deg, #fff, #fff);
  color: #000;
  border-width: 3px;
  border-style: solid;
  border-image: linear-gradient(74deg, #074365 , #07436540);
  border-image-slice: 1;
}
.btn-white:hover, .btn-white:active, .btn-white.active, .btn-white.disabled, .btn-white[disabled] {
  background: linear-gradient(45deg, #2072e6, #ffffffc7);
  color: #000;
  border-width: 3px;
  border-style: solid;
  border-image: linear-gradient(74deg, #3064e0 , #b5cef1);
  border-image-slice: 100%;
  border-image-slice: 1;
  border-radius: 24px
}*/
.navbar-nav {
  margin-top: 11px;
}
.btn-warning {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  border-color: #bd362f #bd362f #802420;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgb(0 0 0 / 25%);
  background-color: #128807;
  background-image: linear-gradient(to bottom, #128807, #128807);
  background-repeat: repeat-x;
  border-color: #128807 #128807 #128807;
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
  color: #2d2d2d;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #b19b60;
  background-image: linear-gradient(to bottom, #b19b60, #e1ce9a);
  background-repeat: repeat-x;
  border-color: #cfbb86;
}
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-image: none;
  background-color: #b19b60;
}
.btn-link {
  border-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #2a1f6d;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  box-shadow: none;
}
.btn-inverse {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  background-image: linear-gradient(to bottom, #444444, #222222);
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: #222222;
  background-image: linear-gradient(to bottom, #333333, #111111);
}
/* list group */
.list-group a {
  border: 1px solid #dddddd;
  padding: 12px 12px;
  font-size: 13px;
  color: #222;
}
.list-group a.active,
.list-group a.active:hover,
.list-group a:hover {
  color: #fff;
  background: #074365;
  border: 1px solid #074365;
}
/* carousel */
.carousel-caption {
  color: #ffffff;
  text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
  content: "\f053";
  font-family: FontAwesome;
}
.carousel-control .icon-next:before {
  content: "\f054";
  font-family: FontAwesome;
}
/* product list */
.product-thumb {
  margin-bottom: 30px;
  padding: 20px 15px;
  background: #fff;
  /*  box-shadow: 0px 3px 15px #1010101c;*/
  border-radius: 20px;
  border: 1px solid #ccc;
}
.product-thumb .image {
  text-align: center;
}
.product-thumb .image a {
  display: block;
}
.product-thumb .image a:hover {
  opacity: 0.8;
}
.product-thumb .image img {
  margin-left: auto;
  margin-right: auto;
}
.product-grid .product-thumb .image {
  float: none;
  padding: 14px 0;
}
.product-thumb h4 {
  font-weight: bold;
}
.product-thumb .rating {
  padding-bottom: 10px;
}
.rating .fa-stack {
  font-size: 8px;
}
.rating .fa-star-o {
  color: #999;
  font-size: 15px;
}
.rating .fa-star {
  color: #fc0;
  font-size: 15px;
}
.rating .fa-star + .fa-star-o {
  color: #e69500;
}
h2.price {
  margin: 0;
}
.product-thumb .price {
  color: #444;
}
.product-thumb .price-new {
  font-weight: 600;
}
.product-thumb .price-old {
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}
.product-thumb .price-tax {
  color: #999;
  font-size: 12px;
  display: block;
}
.product-grid .product-thumb .button-group {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 13px;
}
.input_no{
  display: flex;
  gap: 7px;
  align-items: center;
}
.input_no span{
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
.add_t_cart{
  width: 100%;
}
.add_t_cart button{
  font-size: 14px;
  font-weight: 500;
  padding: 10px;
  width: 100%;
  border-radius: 100px;
}
.btn-light-yellow{
  background: #fdd80d;
  color: #111;
  border: 1px solid #fdd80d;
}
.btn-wishlist{
  background: #01739e;
  color: #fff;
  border: 1px solid #01739e;
}
.btn-light-yellow:hover, .btn-light-yellow:active, .btn-light-yellow:focus{
  background: #fdb60d;
  color: #111;
  border: 1px solid #fdb60d;
}
.btn-wishlist:hover, .btn-wishlist:active, .btn-wishlist:focus{
  background: #01569e;
  color: #fff;
  border: 1px solid #01569e;
}
#input-quantity {
  width: 20%;
  margin-right: 10px;
}

.thumbnails {
  overflow: auto;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
}
.thumbnails > li {
  margin-left: 20px;
}
.thumbnails {
  margin-left: -20px;
}
.thumbnails > img {
  width: 100%;
}
.image-additional a {
  margin-bottom: 0px;
  padding: 5px;
  display: block;
  border: 1px solid #ddd;
}
.image-additional {
  max-width: 78px;
}
.thumbnails .image-additional {
  float: left;
  margin-left: 20px;
}
/* fixed colum left + content + right*/

/* fixed product layouts used in left and right columns */
#column-left .product-layout,
#column-right .product-layout {
  width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^="quantity"] {
  min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-image: none;
  background-color: #b19b60;
  color: #000;
}
.multi-search {
  background-color: #fff;
  padding: 20px 30px;
  margin-bottom: 50px;
}
.multi-search h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
.multi-search p {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
}
#availability-price .panel-body {
  padding: 20px 0px 40px 0px;
}
.spectrum--light .spectrum-Button--cta {
  background-color: #1473e6;
  border-color: #1473e6;
  color: #fff;
}
blockquote {
  margin-top: 40px;
  max-width: 75%;
}
blockquote .small,
blockquote footer,
blockquote small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
  background: transparent;
  padding: 10px 0px;
}
.upload-text {
  margin-top: 50px;
}
.upload-text textarea {
  min-height: 100px;
}

/* menu */

.custom-menu a {
  border: none !important;
  font-size: 14px;
  color: #000!important;
  font-weight: 500;
}
.primary-submenu a{
  color: #fff!important;
}
.second-level {
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%) !important;
}
.second-2-level{
  min-width: 200px;
  padding: 0;
}
.second-2-level a {
  font-size: 13px;
  color: #333;
  font-weight: 400;
}
.second-level a {
  font-size: 13px;
  color: #333;
  font-weight: 400;
}
/*.custom-menu li:hover{
    border-left: 3px solid #2a1f6d!important;
}*/
.custom-menu a:hover {
  background-color: transparent;
  color: #074365;
  text-decoration: none;
  background-image: none !important;
  font-weight: 500;
}
.custom-menu .dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0px;
  z-index: 111;
  display: none;
  float: left;
  width: 100%;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgb(0 0 0 / 0%);
  border-radius: 0;
  -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  padding: 0;
}
.multi-column-dropdown a {
  display: block;
  padding: 1px 15px !important;
}
.custom-menu li a:focus-visible,
.custom-menu li a:focus {
  outline: none;
}
.custom-menu .dropdown-menu > li > a {
  padding: 7px 15px;
  clear: unset;
}
#product-category .multi-level {
  position: absolute;
  left: 0;
}
#information-information .breadcrumb {
  margin: 0;
}
.industrial-products {
  font-size: 36px;
  position: absolute;
  z-index: 111111;
  top: 275px;
  color: #fff;
  text-align: center;
  left: 103px;
  line-height: 45px;
  font-weight: 300;
}
.all-solution-section {
  margin: 50px 0;
}
.panel-caption {
  background-color: #fff;
  padding: 0 30px 30px 30px;
  box-shadow: 1px 2px 2px #22222261;
  border-radius: 6px;
  border: 1px solid #eae7e7;
}
.panel-caption h2 {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin-bottom: 50px;
}
.panel-caption h4 {
  font-size: 18px;
  color: #2270df;
  font-weight: 600;
}
.panel-caption h3 {
  background: #2270df;
  color: #fff;
  padding: 8px 25px 8px 15px;
  font-size: 17px;
  width: fit-content;
}
.panel-caption h3::after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 18px 0 18px 13px;
  border-left-color: #fff;
  margin-top: -9px;
  margin-right: -25px;
  rotate: 180deg;
}
.panel-caption h2::before {
  width: 85px;
  height: 5px;
  background-color: #2270df;
  position: relative;
  top: 50px;
  content: "";
  bottom: 32px;
  display: block;
}
.panel-1 {
  margin-bottom: 50px;
}
.panel-caption ul {
  padding-left: 20px;
}
.panel-caption ul li {
  font-size: 14px;
  color: #333;
  line-height: 24px;
  margin-bottom: 7.5px;
}
.panel-caption ul li span {
  font-size: 14px;
  color: #2270df;
  font-weight: 600;
}
.panel-caption p {
  font-size: 14px;
  color: #333;
  line-height: 24px;
}
#searchResult2 {
  position: absolute;
  width: 95%;
  box-shadow: 0 0 10px #00000069;
  z-index: 1111;
}
#searchResult2 table {
  margin-bottom: 0;
}
#searchResult2 .input-qty {
  display: flex;
}
.input-qty .qty {
  padding: 12px;
}
.input-qty input {
  max-width: 100px;
}
.home .barIcon {
  display: none;
}
.account-list {
  margin: 0 -10px -10px;
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
}
.account-list .edit-info {
  display: flex;
}
.account-list .edit-info span {
  margin: 0 auto;
  padding-bottom: 15px;
}
.account-list .edit-info a {
  padding: 15px;
  text-align: center;
  background: #fff;
  width: 100%;
  display: grid;
  border-radius: 15px;
  font-size: 14px;
  color: #000;
  line-height: 20px;
  border: 1px solid #fff;
}
.account-list .edit-info a:hover {
  border: 1px solid #074365;
  box-shadow: 0px 2px 15px #06060633;
}
.account-list .edit-info a img {
  max-width: 80%;
  margin: 0 auto;
}
.account-list > li {
  width: calc(100% / 5);
  margin: 10px 40px 50px 0px;
}

/*  MENU CSS   */

.custom-menu .dropdown-submenu {
  position: relative;
}
.custom-menu img {
  width: 18px;
  margin-right: 10px;
}
.hover_menu:hover {
  background: #074365 !important;
  color: #fff !important;
}
.dropdown-submenu ul li {
  border-bottom: 1px solid #ddd !important;
}
.custom-menu .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.multi-column-dropdown a:hover{
  color: #fff!important;
}
.line_card{
  display: flex;
  justify-content: space-between;
}
.line_ul{
  margin: 0;
  list-style: none;
}
.line_li{

}
.line_anchor {
  color: #000;
  background: #fed70d;
  padding: 11px 25px;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  align-items: center;
}
.line_anchor:hover {
  color: #000;
  background: #fff;
}
.second-level .dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-left-color: #070707;
  margin-top: 8px;
  margin-right: -14px;
  rotate: 0deg;
  opacity: 0.8;
}
.second-level .dropdown-submenu > a:hover:after {
  opacity: 1;
}

.custom-menu .dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}

.custom-menu .dropdown-submenu.pull-left {
  float: none;
}

.custom-menu .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
.contact-footer li,
.contact-footer p {
  line-height: 30px;
  position: relative;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  font-size: 14px;
  color: #eee;
}
.contact-footer li {
  display: inline-flex;
}
.contact-footer li i {
  padding-right: 6px;
  font-size: 18px;
  color: #f1f1f1;
  margin-top: 7px;
}
.contact-footer li span {
  padding-left: 10px;
  line-height: 22px;
  font-size: 13px;
}
.ind-address {
  display: flex;
  margin-bottom: 15px;
}
.ind-address h4 {
  margin: 5px 0 0px 12px;
  font-size: 15px;
  color: #f1f1f1;
  font-weight: 600;
}
.foot-bottom {
  padding: 25px 0;
  margin-top: 30px;
  border-top: 1px solid #404040;
  border-bottom: 1px solid #404040;
}
.foot-social {
  margin-top: 3px;
}
.foot-social li a {
  border-radius: 50%;
  display: inline-block;
  font-size: 13px;
  padding: 5px;
  height: 28px;
  text-align: center;
  width: 28px;
  transition: all 0.2s ease-in-out 0s;
  background: #a59478;
  color: #fff;
}
.foot-social li a i {
  font-size: 13px;
}
.foot-app {
  position: relative;
  top: 3px;
}
.foot-app li {
  display: inline-block;
}
.foot-app li a {
  display: none !important;
}
.foot-pay {
  margin-top: 7px;
}
.foot-pay img {
  max-width: 100%;
}
.powered {
  margin-top: 20px;
}
.foot-power {
  padding: 30px 0;
}
.information-content h5 {
  font-size: 18px;
  color: #f1f1f1;
  padding: 0px 0 20px 0;
  margin: 0;
}
.footer-content {
  padding-top: 15px;
}
.information-content .footer-newsletter {
  margin-top: 10px;
}
.information-content li a {
  line-height: 36px;
  font-size: 14px;
  color: #eee;
  text-decoration: none;
}
.information-content li a:hover {
  color: #fff;
}
.f-left {
  color: #ddd;
}

.dropdown-menu.columns-3 {
  min-width: 950px;
  left: 300px;
  top: -1px;
  padding: 0;
  margin: 0;
}
.user-icon .dropdown-menu-right {
  z-index: 2222;
  position: absolute;
  min-width: 150px;
}
.dropdown-menu.columns-2 {
  min-width: 450px;
}
.multi-column-dropdown {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.mobile-top-section {
  display: none;
}
.mobile-header {
  display: none;
}
.mobile-menu {
  display: none;
}
.common-cart-icon i {
  font-size: 15px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-right: 0;
  box-shadow: none;
  height: unset;
  width: unset;
  color: unset;
}
.mobile-footer {
  display: none;
}
.automation {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  padding: 15px 0 10px 0;
}
.home-features {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.features-image img {
  max-width: 60px;
  margin: 0 auto;
}
.features-box {
  background-color: #fff;
  padding: 25px 10px;
  box-shadow: 1px 2px 2px #22222261;
  border-radius: 6px;
  border: 1px solid #eae7e7;
  margin-top: 15px;
}
.features-content h4 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 7px 0;
}
.features-content{
  text-align: right;
}
.features-content span {
  font-size: 12px;
  color: #222;
  font-weight: 500;
}
.features-box .col-sm-3 {
  border-right: 1px solid #111;
  width: 20%;
}
.features-box .col-sm-3:last-child {
  border-right: none;
}
.best-product .swiper-viewport {
  padding-top: 0px;
}
.related_title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  margin-top: 0;
}
.our-products {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
  padding: 30px 0;
  font-style: normal;
}
.top-category-box {
  border-radius: 8px;
  background: #fff;
  padding-bottom: 15px;
  min-height: 380px;
}
.top-cat-name {
  background: #2270df;
  color: #fff;
  margin: 0 0 20px 0;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
}
.acb-box {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 15px;
  box-shadow: 1px 2px 2px #22222261;
  border-radius: 6px;
  border: 1px solid #eae7e7;
  margin-bottom: 30px;
  min-height: 112px;
}
.acb-image img{
  width: 70px;
  height: 70px;
}
.acb-text h4 {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 7px 0;
  line-height: 30px;
}
.acb-text span {
  font-size: 12px;
  color: #222;
}
/* .main-category {
    background-image: url(../image/cat-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
  background-position: center center;
  margin-top: 30px;
  margin-bottom: 30px;
  background: #e4eff5;
} */
.main-category {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0px 0 50px 0;
    background: linear-gradient(270deg, #2270df, #2270df00);
}
.we-deal{
  margin: 15px 0;
}
.quotation-section{
  margin: 50px 0;
}
.show-all {
  padding: 30px 0;
  text-align: center;
}
.show-all a {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-decoration: underline;
}
.presence-global {
  background-image: url(../image/features-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
  background-position: center center;
  margin: 50px 0;
}
.get-content {
  padding: 100px 50px 50px 50px;
  background: #018afc;
  border-radius: 4px;
  min-height: 464px;
}
#button-search {
  margin-bottom: 40px;
}
.description-bg {
  background-color: #e4eff5;
  padding: 30px 0;
}
.get-content h4 {
  font-size: 45px;
  color: #fff;
  font-weight: 600;
  line-height: 55px;
}
.get-content p {
  font-size: 15px;
  color: #fff;
  line-height: 32px;
}
.get-content a {
  font-size: 15px;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 40px;
  border-radius: 100px;
}
.get-content a:hover,
.get-content a:focus,
.get-content a:active {
  color: #000;
  border: 1px solid #fff;
  background-color: #fff;
}
.start-selling {
  padding-left: 120px;
}
.start-selling h3 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  line-height: 40px;
}
.company_profile {
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 20px;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.company_card{
  border: 1px solid #ccc;
  border-radius: 12px;
  flex: 1 1 calc(25% - 30px);
  box-sizing: border-box;
  background: #eee;
}
.company_card_header {
  background: #eee;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 18px 25px;
}
.company_card_header h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #111;
}
.company_card_footer {
  background: #eee;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 20px 25px;
}
.company_card_footer p {
  font-size: 13px;
  color: #111;
  font-weight: 500;
  line-height: 20px;
}
.company_card_footer a {
  color: #008AFC;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}
.start-selling h3 span {
  color: #004aad;
}
.start-selling p {
  font-size: 15px;
  color: #111;
  font-weight: 500;
  line-height: 32px;
  padding-bottom: 20px;
}
.start-selling a {
  padding: 7px 25px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  background: #f1ba00;
}
.smart-inventory {
  padding-left: 120px;
  color: #fff;
}
.smart-inventory h4 {
  font-size: 22px;
  color: #fff;
}
.smart-inventory ul li {
  font-size: 15px;
  line-height: 30px;
}
.best-product h3 {
  text-align: center;
  padding: 40px 0px 30px 0px;
}
.product-best-seller {
  padding: 20px;
  border: 1px solid #d1d1d1;
  background-color: #fff;
}

.product-best-seller .caption {
  padding-bottom: 10px;
}
.product-best-seller .caption h4 {
  margin-bottom: 10px;
}
.product-best-seller .caption h4 a {
  font-size: 13px;
  font-weight: 500;
  color: #007fac;
  line-height: 18px;
}

.product-best-seller .btn-primary {
  width: 100%;
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 8px;
  padding: 6px 13px;
}
.product-best-seller .btn-cart {
  width: 100%;
  font-size: 11px;
  font-weight: 400;
  color: #000;
  padding: 6px 13px;
}
.about-electihub {
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 50px;
}
.about-electihub h2{
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin: 0;
  padding: 25px 0;
  font-style: normal;
}
.about-electihub h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  padding-top: 20px;
}
.about-electihub p,
.about-electihub ul li,
.about-electihub ol li {
  font-size: 12px;
  line-height: 25px;
  text-align: justify;
}
/* #common-home {
  margin-top: 15px;
} */
.brand-one {
  padding: 8px 12px;
  background: #256fdc;
  width: max-content;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  border-radius: 4px;
  margin: 20px 0 10px 0;
}
.brand-deal {
  background: #fff;
  margin-bottom: 50px;
}
.brand-deal li {
  padding-bottom: 6px;
}
.brand-deal li a {
  color: #111;
  font-size: 12px;
  font-weight: 500;
}
.brand-deal li a:hover,
.brand-deal li a:active,
.brand-deal li a:focus {
  color: #2270df;
}
.cat-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  margin-top: 0;
}
.cat-title::before {
  width: 60px;
  height: 4px;
  background-color: #074365;
  position: absolute;
  top: 30px;
  content: "";
}
.best-price {
  display: flex;
  justify-content: space-around;
  margin-bottom: 5px;
}
.best-price p {
  font-size: 11px;
  color: #777 !important;
  text-decoration: line-through;
  margin: 0;
}
.product-best-seller .price {
  font-size: 13px;
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 7px;
}

.electrihub_flag {
  display: flex;
  align-items: center; 
  gap: 15px;           
}
.canada-caption{
    padding-left: 75px;
    margin-top: -10px;
}
.canada-caption h3{
  font-size: 22px;
  font-weight: 600;
  color: #111;
}
.canada-caption p{
  font-size: 14px;
  line-height: 25px;
  color: #222;
}
.electrihub_flag .canada-flag{
  height: 65px;
}
.electrihub_flag img {
  height: auto;
  width: auto;
  max-width: 100%;  
}
.custom-testimonial {
  padding: 40px 20px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin: 0 15px;
}
.custom-testimonial .img-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.item img {
  width: 20px;
}
.item p {
  font-size: 13px;
  line-height: 21px;
  font-style: normal;
}
.item{
  min-height: 241px;
}
#testimonial0 .owl-pagination{
  display: none !important;
}
.blog-card{
  border: 1px solid #ccc;
  background: #eee;
}
#menu {
  margin-bottom: 0;
}
.best-price span {
  color: #02a000;
  font-weight: 400;
  font-size: 11px;
}
.info-menu {
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 10px 12px !important;
  color: #fff!important;
}
.info-menu:hover {
  background: #f1ba00 !important;
  color: #000000 !important;
  border-radius: 0;
}
.navbar {
  position: relative;
  z-index: 11;
  min-height: 40px;
}
/* .primary-submenu{
  background: #074365;
    margin-right: 20px;
  border-radius: 4px;
}
.primary-submenu:hover{
  background: #01308e;
}
.primary-submenu a {
  padding: 9px 25px!important;
  color: #f6f6f6!important;
  font-weight: 400!important;
  }
  .primary-submenu a:hover {
  color: #fff!important;
  } */
/* .main-menu{
  margin-top: 11px;
  } */
.secondary-top-submenu {
  width: 100%;
}
.secondary-top-submenu a {
  padding: 11px 20px !important;
}
.secondary-submenu a {
  padding: 8.8px 25px !important;
  font-weight: 400;
  line-height: 1.42857143 !important;
}
.product-range {
  color: #000 !important;
  background: #f1ba00;
  border-radius: 0;
  font-weight: 600 !important;
  text-align: left;
  /* border-top-right-radius: 8px;
    border-top-left-radius: 8px; */
}
.product-range:hover {
  color: #000000 !important;
  background: #fff!important;
}
.main-menu .custom-menu {
  width: 100%;
}
.custom-menu {
  position: relative;
  display: inline-flex;
  background: transparent;
  margin-top: 0;
  border: none;
  border-radius: 0;
  top: 0;
  padding: 0;
  box-shadow: none;
  margin-bottom: 0px;
}
.custom-menu-info{
  position: relative;
  display: inline-flex;
  background: transparent;
  margin-top: 0;
  border: none;
  border-radius: 0;
  top: 0;
  padding: 0;
  box-shadow: none;
  margin-bottom: 0px;
}
.custom-menu-info .dropdown-submenu {
    position: relative;
}
.custom-menu-info .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
.we-deal h3 {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.we-deal p {
  font-size: 15px;
  line-height: 28px;
  color: #222;
  text-align: center;
  margin-bottom: 30px;
}
.roi {
  background: #e4eff5;
  padding: 30px 0;
}
.home-menu .secondary-submenu {
  list-style: none;
  padding: 5px 0;
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}
.home-menu .secondary-submenu li {
  border-bottom: 1px solid #ededed !important;
}
.main-category .col-sm-3 {
  width: 20%;
}
.product-best-seller img {
  margin: 0 auto;
}

/*Responsive CSS*/
@supports (-webkit-overflow-scrolling: touch) {
  /* CSS specific to iOS devices */
  @media (max-width: 767px) {
    .custom-coupon-input {
      border: none;
      box-shadow: 0px 2px 4px #b5b5b5 !important;
      border-radius: 4px !important;
      font-size: 12px !important;
      padding: 0 15px !important;
    }
  }
}
@media (max-width: 767px) {
.cart-header .col-sm-6,.cart-header .col-sm-2,.cart-header .col-sm-4{
  width: 33%;
}
#checkout-cart .cart-header .col-sm-6{
  width: 54%;
}
#checkout-cart .cart-header .col-sm-2{
  width: 45%;
}
#checkout-cart .cart-header .col-sm-4{
  width: 19%;
}

.cart-header .row{
  display: flex;
}
.cart-item {
  padding: 10px 0px;
  flex-wrap: wrap;
}
.product-img {
  width: 60px;
}
.custom-cart-container .col-md-2 {
  width: 25%;
}
.custom-cart-container .col-md-3 {
  width: 75%;
}
.custom-cart-container .col-md-4 {
  width: 50%;
}
.custom-cart-container .col-md-5 {
  width: 50%;
}
.qty-box .btn {
  padding: 6.5px 12px !important;
}
.item-description .ref {
  font-size: 12px;
  margin-bottom: 3px;
}
.item-description .name {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 15px;
}
.qty-box input.form-control {
  width: 50px;
}
.item-price .price {
  font-size: 14px;
  font-weight: 600;
}
.btn-remove span {
  font-size: 16px;
}
.btn-remove {
  padding: 0px 7px !important;
}
.item-price .discount {
  font-size: 12px;
}
.cart-header {
  font-size: 13px;
  padding: 12px 20px;
}
.summery_header{
  padding: 12px 20px;
}
.summery_header h3{
  font-size: 13px;
  margin: 3px 0;
}
.cart-footer {
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
}
.cart-footer a {
  width: 100%;
}
.cart-title {
  align-items: center;
  padding-bottom: 10px;
}
#checkout-cart h1 {
  font-size: 20px;
}
#checkout-cart #input-coupon {
  height: 37px;
  font-size: 13px;
}
.fare-label {
  font-size: 13px;
}
.fare-amount {
  font-size: 13px;
}
.fare-break {
  padding: 4px 0;
}
.secure-checkout {
  padding: 12px 0;
}
.secure-checkout a {
  font-size: 14px !important;
}
.or-line {
  margin: 30px 0 20px 0;
}
.s_cart_btn button {
  font-size: 14px !important;
}
.summery_body {
  padding: 20px;
}
.coupon-label {
  font-size: 13px;
  margin-bottom: 7px;
}
.custom-cart-container {
  padding: 10px 20px;
}
.custom-confirmation h1 {
  font-size: 30px;
  line-height: 32px;
  margin-top: 10px;
  margin-bottom: 0;
}
.custom-confirmation h1 span {
  font-size: 18px;
}
.custom-confirmation h3 {
  font-size: 13px;
  line-height: 22px;
}
.custom-confirmation h4 {
  font-size: 16px;
  margin: 0;
}
.custom-confirmation p {
  padding-bottom: 10px;
  line-height: 22px;
  font-size: 13px;
}
.custom-confirmation {
  max-width: 100%;
  padding: 15px;
}
.buttons a {
  font-size: 14px !important;
  font-weight: 500 !important;
}
.buttons {
  margin: 12px 0 0 0;
}
.success-card-wrapper {
  padding: 20px 0 20px 0;
}
.success-info {
  padding: 15px 12px;
  width: 160px;
}
.icon-img {
  width: 30px;
  height: 30px;
}
.success-info p {
  font-size: 13px;
  margin-bottom: 5px;
}
.pro-header h3 {
  font-size: 16px;
}
.category-card {
  width: 160px
}
.category-image-wrapper {
  width: 140px;
  height: 140px;
}
.category-title a{
  font-size: 12px;
  line-height: 18px;
}
.category-card:hover .category-image-wrapper {
  margin-bottom: -75px;
}
.range_content {
  font-size: 15px;
  color: #111;
  text-align: center;
  margin-bottom: 30px;
}
.subcategory-list li {
  line-height: 26px;
}
.subcategory-list li a {
  font-size: 13px;
}
.subcategory-list {
  padding-left: 0;
}
.category-image-wrapper img {
  width: 90px;
  height: 90px;
}
.category-flex-wrapper {
  gap: 20px;
}
.range_content {
  font-size: 13px;
}
.range_title {
  font-size: 18px;
  padding: 15px 0 15px 0;
}
.modal-footer {
  text-align: center;
}
#top {
  z-index: unset;
  background-color: #074365;
  padding: 13px 0 14px 0;
}
.header-middle {
  display: block;
}
.custom-search-input .search-query {
  padding: 0px 15px;
  font-size: 12px !important;
  height: 35px;
  border-radius: 6px;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}
.custom-search-input .btn-danger {
  bottom: 1px;
}
.cart_icon {
  height: 22px;
}
.phone-signal {
  position: relative;
  display: inline-block;
}
.base-phone {
  font-size: 16px;
  color: #fff;
  z-index: 2;
}
.wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: ring-wave 2s infinite;
}
.wave1 {
  animation-delay: 0s;
}
.wave2 {
  animation-delay: 1s;
}
@keyframes ring-wave {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
  .review_des {
    font-size: 12px;
    font-weight: 400;
  }
.cus_dashboad{
  display: flex;
  flex-direction: column;
}
.order-1{
  order: 2;
  width: 100%;
}
.order-2{
  order: 1;
  width: 100%;
}
  .tc_apply {
  margin-left: 10px;
}
  #account-quotation fieldset {
  padding: 10px 15px 10px 15px;
}
  #account-quotation fieldset #comment{
  height: 70px;
}
.company_info {
    padding: 15px 13px 10px 13px;
  }
  .company_info h3 {
  font-size: 15px;
}
.customer_info h3 {
  font-size: 15px;
}
.customer_info {
  padding: 13px;
  margin-bottom: 15px;
}
.m_customer .btn-primary {
  font-size: 13px;
  padding: 10px 10px;
  width: 50%;
}
.n_customer .btn-primary {
  font-size: 13px;
  padding: 10px 10px;
  width: 50%;
}
.n_customer h4 {
  font-size: 13px;
  font-weight: 400;
  color: #444;
  line-height: 20px;
}
.n_customer p {
  font-size: 13px;
  padding-top: 10px;
}
.n_customer label {
  font-size: 12px;
}
.wordwrapper {
  text-align: center;
  position: absolute;
  left: 44%;
  right: 0;
  top: 50%;
  margin-top: -12px;
  z-index: 111;
  background: #fff;
  width: 30px;
  height: 30px;
}
.line {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #aaa;
  z-index: 22;
  height: 1px;
}
.wrapper {
  position: relative;
  width: unset;
  height: unset;
  margin: 30px 0;
}
.l_customer label {
  font-size: 13px;
}
.m_customer label {
  font-size: 13px;
}
.new-panel {
  padding: 13px 20px;
  margin-bottom: 0px;
}
.new-panel h4 {
  font-weight: 500;
}
.panel-title {
  font-size: 14px;
}
.n_customer h2 {
  font-size: 16px;
  font-weight: 600;
  padding: 20px 0 0 0;
}
.checkout-sidebar .step {
  padding: 13px 15px;
  margin-bottom: 8px;
  font-size: 13px;
}
.checkout-sidebar {
  padding: 15px;
}
.panel-title1 img {
  width: 24px;
}
.n_customer h3 {
  font-size: 13px;
  padding-top: 10px;
}
.panel-body1 {
  padding: 5px 10px;
}
.panel-body1 .radio {
  padding: 7px 0;
}
.l_customer h2 {
  font-size: 22px;
  margin: 10px 0;
  font-weight: 600;
}
.l_customer h3 {
  font-size: 16px;
  padding-top: 10px;
}
.custom_fontawes {
  margin-top: -10px;
  padding: 13px 15px;
}
.custom_panel {
  margin-left: 45px;
}
.fri_text {
  font-size: 12px !important;
}
.btn-confirm-order {
  font-size: 14px !important;
  padding: 10px 26px !important;
}
h1 {
  font-size: 26px;
}
#logged-box label{
  font-size: 12px;
}
.tc_apply h4 {
  font-size: 15px;
}
.d-flex {
  margin: 8px 0;
}
.p_title {
  font-size: 13px !important;
  line-height: 22px;
}
.btn-yellow {
  font-size: 13px !important;
  padding: 9px 20px !important;
}
.offer-card {
  display: grid;
}
.shipping-coupon h4 {
    font-size: 13px;
    line-height: 20px;
  }
.shipping-coupon p {
  font-size: 12px;
  line-height: 18px;
}
.call-inq {
  font-size: 13px;
  margin: 15px 0;
}
.call-inq a {
  font-size: 16px;
}
.t_month {
  margin-top: 10px;
  margin-bottom: 10px;
}
.offer-card .card-header {
  padding: 10px 15px;
}
.alternate-reference {
  font-size: 16px;
}
.min_content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
  }
.min_content p {
  font-size: 13px;
}
.min_content {
  margin-right: 26px;
}
.use-coupon {
  width: 44%;
  padding: 8px 10px 0 10px;
}
  .blog-category {
    font-size: 14px;
  }
  .fast-truck img {
  max-height: 30px;
}
.product-feature {
  padding: 10px 20px;
  margin: 15px 0;
}
  .our-blogs h3 {
    font-size: 15px;
    line-height: 22px;
    padding: 12px 0px;
    margin: 0;
  }
  .custom_reviewss button {
    margin-top: 10px;
  }
  .rating-style h4 {
    font-size: 30px;
  }
  .rating-style i {
    font-size: 20px;
  }
  .rating-box {
    display: grid;
    padding: 10px 0 20px 0;
  }
  .rating-style {
    padding: 0px 15px 15px 15px;
    width: 100%;
  }
  .flex-grow-1 .row{
    display: flex;
  }
  .flex-grow-1 .col-sm-1 {
    width: 8%;
  }
  .flex-grow-1 .col-sm-10 {
    width: 84%;
  }
  .flex-grow-1 {
    width: 100%;
  }
  .flex-grow-1 p {
    font-size: 13px;
  }
  .custom-row{
    display: flex;
    flex-wrap: wrap;
  }
.custom-tabs-container li.tab a {
  padding: 9px 20px;
  font-size: 13px;
  margin: 0;
  border-top: 0;
}
.custom-tabs-container li.tab a:first-child {
  border-left: 1px solid #99bde4;
}

  .author-name h4 {
    font-size: 14px;
  }
  .review-panel p {
    max-width: 100%;
    font-size: 12px;
  }
  .header-middle .col-sm-2 .navbar-toggler {
    background: transparent;
    border: none;
    margin-top: 8px;
    margin-left: 10px;
  }
  #accordion .panel{
    display: block;
    padding: 0;
  }
  .card-body .panel-group .panel-heading .panel-title a {
    font-size: 13px;
  }
  .faq-accordion1 .panel-heading .panel-title a {
    font-size: 13px;
  }
  .faq-accordion1 .panel-default i {
    left: 89%;
    font-size: 13px;
  }
  .faq-accordion2 .panel-default i {
    left: 86%;
    font-size: 12px;
    padding-top: 3px;
  }
  .card-body {
    padding: 15px;
  }
  .price-group {
    margin-bottom: 15px;
    margin-top: 5px;
  }
  .exact-delivery {
    font-size: 12px;
  }
  .shipping-coupon h3 {
    font-size: 15px;
    line-height: 20px;
  }
  .card {
    margin-bottom: 15px;
  }
  #add_enquiry .modal-dialog {
    width: unset;
  }
  .contact-modal {
    padding: 15px 20px;
  }
  .contact-modal h3 {
    font-size: 16px;
  }
  .use-coupon h4 {
    font-size: 13px;
  }
  .use-coupon h2 {
    margin: 3px 0 0 0;
    font-size: 18px;
  }
  .o_price {
    font-size: 13px;
  }
  .n_price {
    font-size: 16px;
  }
  .d_price {
    font-size: 12px;
  }
  .q_input {
    font-size: 12px;
    margin: 9px 15px 0 0;
  }
  .technical-form, .description-form, .specification-form {
    margin-bottom: 10px;
    margin-top: 0;
  }
  .technical-form h3, .description-form h3, .specification-form h3 {
    font-size: 15px;
  }
  .description-form p{
    margin: 0;
  }
  .icon-box i {
    font-size: 15px;
    padding: 8px 9.1px;
  }
  .icon-box a {
    font-size: 12px;
  }
  .card-header p {
    font-size: 13px;
  }
  .card-header {
    padding: 7px 0;
  }

  #product-product h1 {
    font-size: 18px;
  }
  .mob-second-level img {
    width: 25px;
    margin-right: 10px;
  }
  .industrial-products {
    font-size: 16px;
    top: 228px;
    left: 22px;
    line-height: 22px;
  }
  .all-solution-section {
    margin: 15px 0;
  }
  .lvp {
    font-size: 18px;
    margin-bottom: 35px;
  }
  .panel-caption h2 {
    font-size: 18px;
    margin-bottom: 35px;
  }
  .lvp::before {
    width: 60px;
    top: 40px;
  }
  .panel-caption h3::after {
    border-width: 16px 0 16px 12px;
  }
  .panel-caption h3 {
    font-size: 15px;
  }
  .panel-caption h2::before {
    width: 60px;
    top: 40px;
  }
  .panel-caption ul li span {
    font-size: 13px;
    font-weight: 500;
  }
  .panel-caption {
    padding: 0 15px 15px 15px;
  }
  .panel-caption ul {
    padding-left: 12px;
  }
  .panel-caption ul li {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 7.5px;
  }
  .panel-1 {
    margin-bottom: 25px;
  }
  .panel-caption h4 {
    font-size: 14px;
  }
  .favourite-brand {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
    padding-top: 0;
  }
  .we-deals {
    margin: 15px 0;
  }
  #common-home {
    margin-top: 0;
  }
  .automation {
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0;
    line-height: 20px;
    text-align: center;
  }
  .home-features {
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    box-shadow: 1px 2px 2px #22222261;
    border-radius: 6px;
    border: 1px solid #eae7e7;
    margin-bottom: 12px;
  }

  .contact-footer .india-flag {
    max-width: 100%;
  }
  .contact-footer {
    padding-right: 0;
  }
  .ind-address h4 {
    font-size: 14px;
  }
  .ind-address {
    display: inline-flex;
    margin: 25px 0 15px 0;
  }
  .main-category {
    margin-top: 20px;
    background: linear-gradient(270deg, #2270df, #2270df42);
  }
  .main-category h3 {
    padding: 15px 0;
  }
  .our-products {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
  }
  .features-content h4 {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
  }
  .acb-box {
    padding: 10px;
    margin-bottom: 15px;
    min-height: 80px;
  }
  .testinomials-heading {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 25px;
  }
  .request-form p {
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 0;
  }
  .quotation-section {
    margin: 0;
  }
  .get-content h4 {
    font-size: 20px;
    padding-bottom: 0;
    line-height: 32px;
  }
  .bulk-banner{
    margin-bottom: 20px;
  }
  .meet_us{
    font-size: 18px;
    margin-bottom: 20px;
  }
  .all_flag {
  margin: 20px 0;
}
  .get-content a {
    font-size: 13px;
    padding: 8px 30px;
  }
  .products-range .col-sm-3 {
    width: 50%;
  }
  .brand-img {
    padding: 10px 10px;
    margin-bottom: 20px;
  }
  .products-range {
    margin: 20px 0;
  }
  .best-product h3 {
    margin: 0;
    padding: 30px 0px 30px 0px;
  }
  .product-best-seller {
    padding: 12px;
    margin-bottom: 20px;
  }
.electrihub_flag {
  margin-top: 20px;
}
.electrihub_flag .canada-flag {
  height: 50px;
}
.canada-caption {
  padding-left: 0;
  margin-top: 0;
}
.canada-caption h3 {
  font-size: 18px;
}
.product-grid .product-thumb .image {
  padding: 5px 0;
}.cat_img a {
  font-size: 13px;
  line-height: 21px;
}
.currency_group {
  gap: 5px;
}
.currency_group h3 {
  font-size: 18px;
}
.currency_group h5 {
  font-size: 13px;
}
.add_t_cart button {
  font-size: 13px;
  padding: 10px;
}
.contact-form {
  padding: 30px 0px;
}
.contact-sidebar .box {
  padding: 15px;
}
.contact-sidebar .box h3 {
  font-size: 16px;
}
.contact-sidebar .box p {
  font-size: 13px;
}
.contact-sidebar .box p a {
  font-size: 13px;
}
.contact-form p {
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  padding: 0 15px;
}
.contact-form h1 {
  font-size: 22px;
  font-weight: 500;
  padding: 0 15px;
}
.contact-container {
    max-width: 100%;
    gap: 20px;
    padding: 30px 0;
    flex-direction: column;
  }
.currency_group h6 {
  font-size: 14px;
}
.canada-caption p {
  font-size: 13px;
  line-height: 24px;
}
.blog-caption h4 {
  font-size: 14px;
  line-height: 24px;
}
.blog-caption a {
  font-size: 13px;
}
.blog-card {
  margin-bottom: 15px;
}
.show-all {
  padding: 15px 0;
}
  .product-best-seller .caption {
    padding-bottom: 5px;
  }
  .product-best-seller .caption h4 a {
    font-size: 13px;
    font-weight: 500;
  }
  .best-price p {
    font-size: 12px !important;
  }
  .best-price span {
    font-size: 12px;
  }
  .product-best-seller .caption h4 {
    margin-bottom: 12px;
  }
  .get-content p {
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .product-best-seller .btn-primary {
    font-size: 12px;
  }
  .product-best-seller .btn-cart {
    font-size: 12px;
  }
  .presence-global {
    padding: 0;
    margin: 15px 0;
    background-image: url(../image/features-mobile-bg.png);
  }
  .about-electihub {
    padding: 15px;
  }
  .about-electihub h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
  }
  .about-electihub h2 {
  font-size: 16px;
  padding: 10px 0;
  line-height: 24px;
}
.news_flex {
  display: grid;
  gap: 15px;
}
.news_title h5 {
  font-size: 18px;
  text-align: center;
}
  .about-electihub p {
    font-size: 12px;
    line-height: 20px;
  }
  .about-electihub h4 {
    font-size: 16px;
    font-weight: 500;
    padding-top: 15px;
  }
  .brand-deal {
    margin-bottom: 0px;
    padding: 0;
  }
  .information-content h5 {
    font-size: 14px;
    padding: 0px 0 5px 0;
    font-weight: 500;
    text-align: center;
  }
  .information-content h6 {
    font-size: 14px;
    padding: 0px;
    font-weight: 500;
    color: #fff;
    margin-top: 25px;
  }
  .footer_p p {
  padding-top: 22px;
  text-align: justify;
  font-size: 12px;
}
.copy p {
  font-size: 12px;
}
  .footer-newsletter .form-control {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
    border-radius: 4px;
  }
  .footer-newsletter .btn-primary {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-radius: 4px;
    right: 0px;
  }
  .brand-one {
    padding: 9px 15px;
    font-size: 13px;
    font-weight: 400;
    margin: 20px 0 15px 0;
  }
  .about-electihub ul,
  .about-electihub ol {
    padding-left: 15px;
  }
  .brand-deal li a {
    color: #444;
    font-weight: 400;
    font-size: 12px;
  }
  .start-selling {
    padding-left: 0;
  }
  .smart-inventory {
    padding: 40px 0px 20px 0px;
  }
  .smart-inventory h4 {
    font-size: 18px;
  }
  .smart-inventory ul {
    padding-left: 20px;
  }
  .smart-inventory ul li {
    font-size: 13px;
    line-height: 26px;
  }
  .start-selling h3 {
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
  }
  .start-selling p {
    font-size: 13px;
    line-height: 26px;
    padding-bottom: 15px;
  }
  .start-selling a {
    padding: 7px 21px;
    font-size: 13px;
  }
  .get-content {
    padding: 20px;
    max-width: 100%;
    min-height: auto;
    margin-bottom: 20px;
  }
  .roi {
    padding: 0;
  }
  .we-deal {
    padding: 0;
  }
  .we-deal h3 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .we-deal p {
    font-size: 13px;
  }
  .show-all a {
    font-size: 14px;
    font-weight: 500;
  }
  .acb-text h4 {
    font-size: 13px;
    margin: 5px 0 5px 0;
    line-height: 24px;
  }
  .acb-image img {
    width: 50px;
  }
  .features-content span {
    font-size: 11px;
    font-weight: 400;
  }
  .features-box {
    padding: 0;
    background: unset;
    box-shadow: unset;
    border: unset;
    border-radius: unset;
  }
  .email-ad .modal-header h3 {
    font-size: 16px;
  }
  .features-box .col-sm-3 {
    border-right: none;
    width: 50%;
  }
  .features-box .col-xs-12 {
    width: 100%;
  }
  .our-products::before {
    top: 40px;
    left: 38%;
  }
  .main-category .col-sm-3 {
    width: 50%;
  }
  .email-ad .modal-header .close {
    font-size: 23px;
    margin: -44px 10px 0 0px;
  }
  .email-ad label {
    font-size: 12px;
    font-weight: 500;
  }
  .email-ad .modal-body p {
    font-size: 12px;
  }
  .email-ad .modal-header p {
    font-size: 13px;
  }
  .clearance-sale h3 {
    font-size: 18px;
  }
  .clearance-sale p {
    font-size: 13px;
  }
  .clearace-list {
    margin-top: 10px;
  }
  .glow-on-hover {
    display: block;
  }
  #search-option tbody tr td span {
    font-size: 11px;
    font-weight: 400;
  }
  .btn-clear {
    background: #170df2;
    color: #fff;
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(74deg, #170df2, #170df2);
    border-image-slice: 1;
    border-color: #170df2;
  }
  .btn-clear:hover,
  .btn-clear:focus,
  .btn-clear:focus-visible,
  .btn-clear:active,
  .btn-clear.active,
  .btn-clear.disabled,
  .btn-clear[disabled] {
    background: linear-gradient(45deg, #170df2, #170df2);
    color: #fff;
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(74deg, #170df2, #170df2);
    border-image-slice: 1;
    border-radius: 17px;
    border-color: #170df2;
  }
  #button-coupon {
    padding: 9px 11px !important;
  }
  .counter-enquiry {
    position: absolute;
    bottom: 28px;
    right: -3px;
  }
  #quotation .btn-black {
    float: left;
    width: 100%;
  }
  .btn-account-submit {
    padding: 7px 25px !important;
    font-size: 13px !important;
  }
  #account-edit fieldset .button {
    margin: 10px 0 10px 0;
  }
  #account-password fieldset .button {
    margin: 10px 0 10px 0;
  }
  #account-address fieldset .button {
    margin: 20px 0 0px 0;
  }
  #checkout-cart .panel {
    display: block;
    margin-bottom: 10px;
    padding: 0;
  }
  #checkout-cart .panel-title {
    font-size: 14px;
  }
  #navbarResponsive {
    overflow: hidden;
  }
  #navbarResponsive ul {
    margin-top: 30px;
    padding-top: 0px;
  }
  #navbarResponsive .navbar-nav > li > a {
    padding: 12px 15px 12px 30px;
    line-height: 20px;
    color: #333;
    font-size: 13px;
    border-top: 1px solid #ccc;
    font-weight: 500;
  }
  #navbarResponsive .navbar-nav > li > a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #074365;
    border-top: 1px solid #074365;
  }
  #navbarResponsive .dropdown-toggle::after,
  #navbarResponsive .dropdown-menu .forArrow::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }
  .mobileNav .navbar-collapse.in {
    left: 0;
    transition: left 0.1s ease-in-out;
  }
  .registration-success {
    padding: 10px;
  }
  .registration-success h1 {
    font-size: 20px;
    padding-bottom: 0;
    margin-top: 0;
    text-align: center;
    max-width: 100%;
  }
  .registration-success p {
    font-size: 13px;
    padding-bottom: 0;
    line-height: 24px;
    text-align: center;
  }
  .registration-success h2 {
    font-size: 12px;
    font-weight: 500;
    padding-bottom: 40px;
    line-height: 21px;
    text-align: center;
  }
  #product-category #content {
    padding-bottom: 30px;
  }
  #content {
    min-height: 250px;
  }
  .letter-box button {
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 400;
  }
  .letter-box input {
    height: 34px;
    padding-left: 15px;
    font-size: 12px !important;
  }
  #account-success {
    padding-bottom: 100px;
  }
  #account-success .share-icon {
    padding-top: 20px;
    text-align: center;
  }
  #account-success .share-icon i {
    font-size: 16px;
  }
  .mobileNav .navbar-collapse {
    height: 100%;
    left: 0;
    padding-top: 15px;
    position: fixed;
    top: 0;
    width: 80%;
    z-index: 99999;
    background: #ffff;
    box-shadow: 0 0px 12px 0px #afafaf;
  }
  .mob-second-level {
    margin-top: 0 !important;
    background: #fff !important;
  }
  .mob-second-level .submenu {
    margin-top: 0 !important;
    background: #07436500 !important;
  }
  .mob-second-level li a {
    border-top: 1px solid #eee;
    padding-left: 30px !important;
    padding-top: 5px !important;
    color: #000;
    font-weight: 400;
    font-size: 13px;
  }
  .navbar-nav .open .dropdown-menu {
    background: #f1f1f1;
  }
  .mobileNav .navbar-collapse.collapsing {
    left: -75%;
    transition: height 0.1s ease;
  }

  .mobileNav .navbar-collapse.show {
    left: 0;
    transition: left 100ms ease-in-out;
  }
  .mobileNav .navbar-toggler.collapsed ~ .navbar-collapse {
    transition: left 100ms ease-in-out;
  }
  #crossBtn {
    float: right;
    margin-top: -12px;
  }
  #crossBtn img {
    max-width: 70%;
  }
  .dropdown-menu .submenu.dropdown-menu {
    overflow-y: scroll;
    max-height: 250px;
  }
  .dropdown-menu .submenu.dropdown-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
    background-color: #f5f5f5 !important;
  }
  .dropdown-menu .submenu.dropdown-menu::-webkit-scrollbar {
    width: 6px !important;
    background-color: #f5f5f5 !important;
  }
  .dropdown-menu .submenu.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #858585 !important;
  }
  header {
    box-shadow: none;
  }
  .dropdown-menu .submenu.dropdown-menu::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
  }
  .dropdown-menu .submenu.dropdown-menu::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  }
  .mobile-top-section {
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .category-group {
    min-height: 227px;
    margin-bottom: 10px;
  }
  .category-group li {
    font-size: 13px;
    margin-bottom: 0;
  }
  .quantity-search {
    display: block;
  }
  .catalog-input {
    width: 100%;
    border-radius: 50px !important;
    border: 1px solid #ccc;
    box-shadow: none;
  }
  #availability-price .cat-no {
    min-width: 150px;
  }
  #availability-price .quantity-no {
    min-width: 150px;
  }
  #availability-price .description-no {
    min-width: 250px;
  }
  .description-input {
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
    border-left: none;
  }
  .desktop-top-section {
    display: none;
  }
  #product-search h1 {
    font-size: 24px;
    margin: 6px 0;
  }
  #product-search h2 {
    font-size: 18px;
    margin: 10px 0;
    line-height: 28px;
  }
  .mobile-top-section #top-links a {
    font-size: 12px;
    font-weight: 400;
  }
  .current_flag {
  margin-left: 0;
  padding: 7px 10px;
}
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: block;
  }
  .mobile-menu {
    display: block;
  }
  .desktop-menu {
    display: none;
  }
  #logo a img {
    max-width: 160px;
  }
  #top .btn-link, #top-links li {
  margin-left: 5px;
  margin-right: 15px;
}

  #cart-total {
    display: none;
  }
  .p_info {
  display: grid;
  padding-bottom: 13px;
}

  .user-icon i {
    font-size: 14px;
    padding: 9px 11px;
    height: 34px;
    width: 34px;
  }
  .mobile-header .caret {
    margin-left: -4px;
  }
  .mobile-cart-total {
    margin-left: 0px;
    text-align: center;
  }
  #menu .btn-navbar {
    color: #111;
  }
  .navbar-toggle i {
    font-size: 25px;
  }
  .navbar-toggle {
    padding: 10px;
    margin: 11px 0 0 0;
  }
  table tbody tr td {
    font-size: 13px;
  }
  #search {
    margin-bottom: 0px;
    margin-top: 8px;
  }
  .clearance_discount {
    margin-bottom: 10px;
    padding: 8px 15px;
    text-align: center;
    font-size: 13px;
    width: 100%;
    display: block;
  }
.features-image img {
  max-width: 25px;
}
  #search .input-lg {
    height: 35px;
    font-size: 12px;
    padding: 0 15px;
  }
  #search .btn-lg {
    padding: 8px 16px;
  }
  #cart .dropdown-menu {
    width: 330px;
  }
  .common-cart-icon i {
    font-size: 14px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-right: 0;
    box-shadow: none;
    height: unset;
    width: unset;
    color: unset;
  }
  #cart .dropdown-menu li > div {
    min-width: 100%;
  }
  .counter-quantity {
    left: 25px;
  }
  .padding0 {
    padding: 0;
  }
  .product-list .product-thumb .caption {
    min-height: 0;
    margin-left: 0;
    padding: 0 10px;
  }
  #menu div.dropdown-inner > ul.list-unstyled {
    display: block;
  }
  #menu div.dropdown-menu {
    margin-left: 0 !important;
    padding-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  #menu .dropdown-inner {
    display: block;
  }
  #menu .dropdown-inner a {
    width: 100%;
    color: #fff;
  }
  #menu .dropdown-menu a:hover,
  #menu .dropdown-menu ul li a:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  #menu .see-all {
    margin-top: 0;
    border: none;
    border-radius: 0;
    color: #fff;
  }
  .product-grid .product-thumb .caption {
    min-height: 0;
  }

  .home-search {
    padding: 0;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .price-availability h2 {
    font-size: 16px;
  }
  .price-availability span {
    font-size: 13px;
  }
  .catalog-number {
    padding: 15px 15px;
    margin-top: 20px;
  }
  .catalog-number p {
    font-size: 13px;
    line-height: 18px;
  }
  .price-availability h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .order-status {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .order-status h3 {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 24px;
  }
  .catalog-number input {
    font-size: 12px !important;
    font-weight: 400;
    height: 35px;
    border-radius: 50px !important;
    border: 1px solid #ccc;
    box-shadow: none !important;
  }
  .group-search {
    padding: 8px 19px !important;
  }
  .request-form {
    padding: 20px;
    border-radius: 6px;
    max-width: 100%;
  }
  .request-form form {
  padding: 0;
}
  .request-form h3 {
    font-size: 18px;
  }
  .request-form p {
    font-size: 12px;
  }
  .request-form input {
    font-size: 12px !important;
    font-weight: 400;
  }
  .bg-light-dark {
    height: 35px;
  }
  .request-form label {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .request-form .form-group {
    margin-bottom: 15px;
  }
  .search-same-time {
    max-width: 100%;
    border-radius: 15px;
  }
  .search-same-time h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 25px;
  }
  .get-to-know {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .get-to-know h3 {
    font-size: 22px;
    padding-top: 15px;
    padding-bottom: 0;
  }
  .get-to-know p {
    font-size: 12px;
    text-align: center;
    max-width: 100%;
    line-height: 22px;
    padding: 0px 15px 30px 15px;
  }
  .enquiry-button {
    max-width: 100%;
    padding-top: 5px;
  }
.company_profile {
  border: none;
  margin-top: 15px;
  padding: 0;
  display: grid;
  flex-wrap: wrap;
  gap: 20px;
}
.company_card_header {
  padding: 15px 20px;
}
.company_card_header h4 {
  font-size: 14px;
}
.company_card_footer {
  padding: 20px 20px;
}
.company_card_footer a {
  font-size: 13px;
}
  .contact-button a {
    padding: 10px 16px;
  }
  .enquiry-button .btn-white {
    font-weight: 400;
    font-size: 14px;
  }
  .about-electihub .our-products::before {
    top: 100px;
  }
  .products-range h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  #testimonial0 {
    padding: 0;
  }
  .testinomials i {
    margin-bottom: 15px;
    font-size: 30px;
    margin-top: 15px;
  }
  .testinomials {
    font-size: 13px;
    line-height: 24px;
    text-align: left;
  }
  .testinomials .tauthor {
    font-size: 14px;
    font-weight: 500;
  }
  .image-content h4 {
    font-size: 25px;
    font-weight: 300;
    top: 35%;
    max-width: 75%;
    line-height: 30px;
    left: 13%;
  }
  .feel-contact {
    padding: 20px 0px;
  }
  .feel-contact .form-control {
    font-size: 12px !important;
  }
  .feel-contact input {
    height: 35px;
  }
  .feel-contact textarea {
    height: 95px;
  }
  .feel-free {
    margin: 0;
  }
  .custom-coupon-input {
    font-size: 12px !important;
    padding: 0 15px !important;
  }
  .custom-coupon-button {
    font-size: 12px !important;
    padding: 11px 11px !important;
  }

  .estimate-heading {
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .estimate-section p {
    font-size: 14px;
    padding-bottom: 8px;
  }
  .estimate-section {
    padding: 20px;
  }
  #checkout-cart {
    padding-bottom: 20px;
  }
  #checkout-cart ul li {
    padding-right: 0px;
    padding-left: 0px;
  }
  .top-level-cat {
    padding: 15px 0px 0px 0px;
    margin-top: 15px;
  }
  #product-category .caption .table > tbody > tr > td,
  #product-manufacturer .caption .table > tbody > tr > td,
  #product-search .caption .table > tbody > tr > td {
    padding: 10px 20px 10px 10px;
  }
  .top-level-cat h4 {
    font-size: 14px;
  }
  .all-category a {
    border-radius: 0 0 15px 15px;
    padding: 12px 0;
    width: 100%;
  }
  .cat-title {
    font-size: 20px;
  }
  .cat-title::before {
    width: 45px;
    top: 30px;
  }
  .second-level-cat {
    padding: 15px 15px 0 15px;
  }
  .second-level-cat h4 {
    font-size: 12px;
    font-weight: 400;
  }
  .scheinider-center {
    left: 0;
  }
  .custom-row .col-sm-3 {
    width: 50%;
  }
  .product-thumb {
    margin-bottom: 25px;
    padding: 15px;
  }
  #product-category .caption .table-responsive table {
    max-width: 100%;
  }
  #product-search .caption .table-responsive table {
    max-width: 100%;
  }
  #product-box .caption .table-responsive table {
    max-width: 100%;
  }
  table thead tr th {
    font-size: 12px;
  }
  table tbody tr td {
    font-size: 12px;
  }
  .account-list > li {
    width: 40%;
    margin: 10px 15px 10px 15px;
  }
  .account-list .edit-info a {
    padding: 10px;
    font-size: 12px;
  }
  .account-list {
    margin: 0 -10px 30px;
  }
  #account-edit h1 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 15px;
    margin-top: 5px;
  }
  #account-edit fieldset {
    max-width: 100%;
    border-radius: 0;
    padding: 0px;
    margin: 10px 0;
  }
  #account-edit .control-label {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 4px;
  }
  #account-edit .form-control {
    font-size: 12px;
    border-radius: 4px;
    font-weight: 500;
    height: 35px;
  }
  #account-password h1 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
    margin-top: 5px;
  }
  #account-password fieldset {
    max-width: 100%;
    border-radius: 15px;
    padding: 20px;
  }
  #account-password .control-label {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 4px;
  }
  #account-password .form-control {
    font-size: 12px;
    border-radius: 50px;
    font-weight: 500;
    height: 35px;
  }
  #account-address h1 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
    margin-top: 5px;
  }
  #account-address h2 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
    margin-top: 5px;
  }
  #account-address fieldset {
    max-width: 100%;
    border-radius: 15px;
    padding: 20px;
  }

  #account-address .control-label {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 4px;
  }
  #account-address .form-control {
    font-size: 12px;
    border-radius: 50px;
    font-weight: 500;
    height: 35px;
  }


  #account-register {
    padding-top: 25px;
  }
  #account-register button {
    margin-top: 15px;
  }
  .our-location {
    padding: 15px 0;
    max-width: 100%;
  }
  .our-location p {
  font-size: 16px;
  margin: 0 0 7px;
}
.our-location address {
    font-size: 13px;
    line-height: 20px;
  }
   .our-location h5 {
    font-size: 13px;
    line-height: 20px;
  }
  .our-address {
    margin-top: 30px;
    padding: 20px 0;
  }
  .our-address h3 {
    font-size: 19px;
    padding-bottom: 10px;
  }
  .contact-us-page h1 {
    font-size: 20px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    margin-top: 10px;
  }
  .contact-us-page p {
    font-size: 14px;
    padding-left: 0;
  }
  .contact-us-page img {
    max-width: 80%;
  }
  .custom-contact-form {
    padding: 30px 20px;
    max-width: 100%;
    margin-top: 30px;
    border-radius: 15px;
  }
  .custom-contact-form h3 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
  }
  .custom-contact-form label {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .custom-contact-form .contact-input {
    font-size: 12px !important;
    height: 36px;
    padding-left: 39px;
  }
  .custom-contact-form textarea {
    font-size: 12px !important;
    height: 70px;
    padding: 10px;
    border-radius: 10px;
  }
  .contact-submit .btn-white {
    font-weight: 400;
    font-size: 14px;
  }
  .share-icon-footer i {
    font-size: 20px !important;
    margin-top: 0 !important;
  }
  .share-icon-footer {
    padding-top: 0;
    text-align: center;
    margin-bottom: 0;
  }
  .contact-footer .footer_logo {
    margin: 10px auto 0 auto;
    max-width: 50%;
  }
  .contact-footer li,
  .contact-footer p {
    font-size: 12px;
  }
  .information-content li a {
    line-height: 33px;
    font-size: 12px;
  }
  .custom-confirmation p {
    font-size: 12px;
    padding-bottom: 5px;
  }
  .registration_bg h1 {
    font-size: 22px;
    margin: 15px 0 15px 0;
  }
  .custom-register {
    padding: 15px;
    border-radius: 0;
  }

  .label-margin label {
    font-weight: 500;
    margin-right: -5px;
    margin-left: 0px;
  }
  #myRadioGroup .forcustom {
    padding: 8px 8px !important;
    cursor: pointer;
    font-size: 10px;
  }
  #myRadioGroup .forcustom1 {
    padding: 8px 8px !important;
    cursor: pointer;
  }
  #myRadioGroup label > input + .forcustom {
    font-size: 10px;
  }
  #myRadioGroup label > input + .forcustom1 {
    font-size: 10px;
  }
  #myRadioGroup label > input:checked + .forcustom {
    font-size: 10px;
  }
  #myRadioGroup label > input:checked + .forcustom1 {
    font-size: 10px;
  }
  .registration_bg11 label {
    font-size: 12px;
  }
  #account-login {
    padding-top: 15px;
  }
  #account-login .well {
    max-width: 100%;
    margin: 0 auto 0px auto;
    padding: 20px;
    border-radius: 0px;
  }
  #account-login .well h2 {
    font-size: 22px;
    padding-bottom: 10px;
  }
.g_button {
  margin-top: 10px;
  padding: 10px;
}
.g_button img{
  height: 20px;
}
.g_button span {
  font-size: 13px;
  font-weight: 500;
  margin: 0px 0 0 9px;
}
.o_r_c p {
  font-size: 12px;
  left: 25%;
}
.registration_bg11 {
  margin-top: 30px;
}

.btn-custom {
  font-size: 13px;
}
.contact-sidebar {
  gap: 20px;
}
.our-location i {
  font-size: 26px;
  margin-right: 15px;
}
.box .btn-custom {
  padding: 10px 30px;
}
.log_otp {
  margin-top: 15px;
}
.log_otp a {
  font-size: 13px;
}
.hire-line-login {
  max-width: 100%;
  margin: 25px auto 0 auto;
}
.o_r_l p {
  left: 28%;
  font-size: 13px;
}
  #account-login .well label {
    font-size: 13px;
    padding-bottom: 0px;
  }
  .new-electrihub {
    padding-top: 0px;
    max-width: 100%;
    margin: 30px auto 30px auto;
  }
  .new-electrihub h4 {
    font-size: 14px;
  }
.new-electrihub .btn-yellow {
  font-size: 14px !important;
  padding: 10px 20px !important;
}
.registration_bg {
  max-width: 93%;
  border-radius: 0;
}
.register-header h4 {
  font-size: 14px;
  text-align: center;
}
.o_r p {
  font-size: 13px;
  left: 41%;
}
.form-control {
  height: 44px;
}
.r_form_icon i {
  font-size: 16px;
}
.r_form_icon img {
  width: 22px;
}
.registration_bg11 .form-control {
  font-size: 13px !important;
}
.new_login_card {
  max-width: 100%;
  margin: 0 auto 50px auto;
}
.new_login_card_header img {
  height: 35px;
}
.region-box {
  padding: 6px 20px 30px 20px;
}
.region-box h2 {
  font-size: 14px;
  line-height: 22px;
}
.region-box p {
  font-size: 13px;
  margin-bottom: 20px;
}
.region-box label {
  font-size: 13px;
}
.region-box select {
  height: 40px;
}
.btn-outline {
  font-size: 14px !important;
  padding: 10px !important;
}
.replacement-section {
  padding: 10px;
  margin: 15px 0;
}
.recommend h4 {
  font-size: 13px;
  margin-top: 15px;
}
.custom-tabs-container {
  margin: 15px 0;
}
.cat-specific {
  font-size: 13px;
  line-height: 18px;
  margin-top: 0;
}
.custom-tabs .tab a {
  padding: 8px 16px;
  font-size: 13px;
}
.related_title {
  font-size: 15px;
  margin-bottom: 15px;
}
.product-brand {
  font-size: 13px;
}
.qty-input {
  width: 30%;
  padding: 7px;
}
.add-to-cart-btn {
  padding: 8px;
  font-weight: 500;
  font-size: 13px;
}
.fbt-product-card {
  flex: 0 0 calc(48% - 20px);
}
.fbt-total{
  text-align: center;
  font-weight: 600;
}
.fbt-plus {
  right: -18px;
  font-size: 16px;
  font-weight: 600;
}
.fbt-total .btn-orange{
  width: 100%;
  font-weight: 600;
  font-size: 13px;
}
.custom-tabs {
  display: block;
}
#fbt-center {
  display: flow-root;
}
.rating_us a {
  font-size: 13px;
}
.replacement-stock {
  font-weight: 500;
  font-size: 11px;
}
  .mobile-footer {
    display: block;
  }
  .desktop-footer {
    display: none;
  }
  .footer-description {
    text-align: center;
    font-size: 13px;
    line-height: 24px !important;
  }
  .accordion {
    background-color: transparent;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    padding: 13px;
    width: 100%;
    border: 1px solid #fff;
    text-align: left;
    outline: none;
    transition: 0.7s;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  .active,
  .accordion:hover {
    background-color: transparent;
  }
  .mobile-footer .panel {
    padding: 0 18px;
    display: none;
    background-color: #2e353b;
    overflow: hidden;
    margin-bottom: 0;
  }
  footer button.accordion:after {
    content: "\002B";
    color: #fff;
    font-weight: 500;
    float: right;
    margin-left: 5px;
  }
  footer button.accordion.active:after {
    content: "\2212";
  }
  .foot-power {
    padding: 15px 0;
  }
}

@media (min-width: 768px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  .product-list .product-thumb .image {
    float: left;
    padding: 0;
  }
  #column-left .product-layout .col-md-3 {
    width: 100%;
  }

  #column-left + #content .product-layout .col-md-3 {
    width: 50%;
  }

  #column-left + #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }

  #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  #content .col-lg-2:nth-child(6n + 1),
  #content .col-lg-3:nth-child(4n + 1),
  #content .col-lg-4:nth-child(3n + 1),
  #content .col-lg-6:nth-child(2n + 1) {
    clear: left;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
.cart-header .col-sm-6,.cart-header .col-sm-2,.cart-header .col-sm-4{
  width: 33%;
}
.range_content {
  margin-bottom: 30px;
}
.cart-header .row{
  display: flex;
}
.cart-item {
  padding: 10px 0px;
  flex-wrap: wrap;
}
.product-img {
  width: 60px;
}
#checkout-cart .cart-header .col-sm-6 {
  width: 38%;
}
#checkout-cart .cart-header .col-sm-2 {
  width: 25%;
}
.custom-cart-container .col-md-2 {
  width: 20%;
}
.custom-cart-container .col-md-3 {
  width: 80%;
}
.custom-cart-container .col-md-4 {
  width: 60%;
}
.custom-cart-container .col-md-5 {
  width: 40%;
}
.qty-box {
  justify-content: flex-end;
}
.item-price {
  justify-content: space-around;
}
.qty-box .btn {
  padding: 6.5px 12px !important;
}
.item-description .ref {
  font-size: 12px;
  margin-bottom: 3px;
}
.item-description .name {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 15px;
}
.qty-box input.form-control {
  width: 50px;
}
.item-price .price {
  font-size: 14px;
  font-weight: 600;
}
.btn-remove span {
  font-size: 16px;
}
.btn-remove {
  padding: 0px 7px !important;
}
.item-price .discount {
  font-size: 12px;
}
.cart-header {
  font-size: 13px;
  padding: 12px 20px;
}
.summery_header{
  padding: 12px 20px;
}
.summery_header h3{
  font-size: 13px;
  margin: 3px 0;
}
.cart-footer {
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
}
.cart-footer a {
  width: 100%;
}
.cart-title {
  align-items: center;
  padding-bottom: 10px;
}
#checkout-cart h1 {
  font-size: 20px;
}
#checkout-cart #input-coupon {
  height: 37px;
  font-size: 13px;
}
.fare-label {
  font-size: 13px;
}
.fare-amount {
  font-size: 13px;
}
.fare-break {
  padding: 4px 0;
}
.secure-checkout {
  padding: 12px 0;
}
.secure-checkout a {
  font-size: 14px !important;
}
.or-line {
  margin: 30px 0 20px 0;
}
.s_cart_btn button {
  font-size: 14px !important;
}
.summery_body {
  padding: 20px;
}
.coupon-label {
  font-size: 13px;
  margin-bottom: 7px;
}
.custom-cart-container {
  padding: 10px 20px;
}
.custom-confirmation h1 {
  font-size: 25px;
  line-height: 32px;
  margin-top: 15px;
  margin-bottom: 0;
}
.custom-confirmation h1 span {
  font-size: 18px;
}
.custom-confirmation h3 {
  font-size: 13px;
  line-height: 22px;
}
.custom-confirmation h4 {
  font-size: 16px;
  margin: 0;
}
.custom-confirmation p {
  padding-bottom: 10px;
  line-height: 22px;
  font-size: 13px;
}
.custom-confirmation {
  max-width: 90%;
  padding: 20px 30px;
}
.success-info {
  padding: 15px 12px;
  width: 160px;
}
.icon-img {
  width: 30px;
  height: 30px;
}
.success-info p {
  font-size: 13px;
  margin-bottom: 5px;
}
#account-register {
  padding-top: 30px;
  padding-bottom: 30px;
}
.registration_bg {
  max-width: 100%;
}
.register-features h2 {
  font-size: 22px;
}
.register-features p {
  font-size: 14px;
  line-height: 21px;
}
.custom-register {
  padding: 25px 20px;
}
.login-logo {
  padding-bottom: 15px;
  
}
.log_otp {
  margin-top: 20px;
}
.log_otp a {
  font-size: 14px;
}
.o_r_c p {
  font-size: 13px;
  left: 26%;
}
#account-login .well {
  max-width: 60%;
  margin: 0 auto 30px auto;
  padding: 40px;
}
.new_login_card {
  max-width: 60%;
}
.region-box {
  padding: 20px 40px 40px 40px;
}
.hire-line-login {
  max-width: 60%;
}
.o_r_l p {
  font-size: 13px;
  left: 32%;
}
.new-electrihub {
  max-width: 60%;
}
.new-electrihub .btn-yellow {
  font-size: 14px !important;
}
  .custom-tabs-container li.tab a{
    margin: 0px;
    padding: 6px 12.5px;
    font-size: 12px;
  }
.custom-tabs-container{
  margin-bottom: 20px;
}
.register-header h4 {
  font-size: 13px;
}
.g_button {
  margin-top: 20px;
  padding: 10px;
}
.g_button span {
  font-size: 14px;
  margin: 2px 0 0 10px;
}
.form-control {
  height: 44px;
}
.r_form_icon i {
  font-size: 18px;
}
.r_form_icon img {
  width: 18px;
}
.form-group {
  margin-bottom: 10px;
}
.g_button img{
  height: 25px;
}
.registration_bg11 .form-control {
  font-size: 13px !important;
}
.cat-specific {
  font-size: 13px;
  margin-top: 0px;
  line-height: 20px;
}
  #content .col-sm-2:nth-child(6n + 1),
  #content .col-sm-3:nth-child(4n + 1),
  #content .col-sm-4:nth-child(3n + 1),
  #content .col-sm-6:nth-child(2n + 1) {
    clear: left;
  }
  #content {
    min-height: 200px;
  }
  .blog-category {
    font-size: 14px;
  }
  .custom-row{
    display: flex;
    flex-wrap: wrap;
  }

  .pc_section1{
    order: 1;
  }
    .pc_section2{
    order: 3;
  }
    .pc_section3{
    order: 2;
  }
  .p_title {
  font-size: 13px !important;
  line-height: 18px;
  margin-top: 0;
}
.related_title {
  font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
}
#fbt-center {
  display: flow-root;
}
.new-panel {
    padding: 14px 20px!important;
    margin-bottom: 0px;
  }
  .m_customer .btn-primary {
  font-size: 13px;
  padding: 10px 10px;
  width: 50%;
}
.fbt-product-card {
  flex: 0 0 calc(33% - 24px);
}
.n_customer .btn-primary {
  font-size: 13px;
  padding: 10px 10px;
  width: 50%;
}
.n_customer h4 {
  font-size: 13px;
  font-weight: 400;
  color: #444;
  line-height: 20px;
}
.n_customer p {
  font-size: 13px;
  padding-top: 0;
}
.d_part {
    margin-top: 15px;
    margin-bottom: 15px;
}
.d_part h4 {
    font-size: 16px !important;
    padding: 0 10px 0 0;
}
.part_img {
    margin: -3px 0 0 20px;
}
.part_img img{
  width: 25px;
}
.n_customer label {
  font-size: 13px;
}

.l_customer label {
  font-size: 13px;
}
.m_customer label {
  font-size: 13px;
}
.wrapper {
  width: 50px;
}
.new-panel h4 {
  font-weight: 500;
}
.panel-title {
  font-size: 14px;
}
.n_customer h2 {
  font-size: 22px;
  margin: 10px 0;
  font-weight: 600;
}
.n_customer h3 {
  font-size: 14px;
  padding-top: 10px;
}
.panel-title1 img {
  width: 24px;
}
.custom_fontawes {
  margin-top: -11px;
  padding: 15px 16.8px;
}
.l_customer h2 {
  font-size: 22px;
  margin: 10px 0;
  font-weight: 600;
}
.l_customer h3 {
  font-size: 16px;
  padding-top: 10px;
}
.fri_text {
  font-size: 13px !important;
}
.btn-confirm-order {
  font-size: 14px !important;
  padding: 10px 26px !important;
}
h1 {
  font-size: 26px;
}
#logged-box label{
  font-size: 12px;
}
.s_review h4 {
  padding: 3px 5px;
}
.shipping-coupon p{
  font-size: 10px!important;
  line-height: 18px;
}
.offer-card {
    display: grid;
  }
   .offer-card .card-header {
    padding: 10px 15px;
  }
  .card-header p {
    font-size: 14px;
  }
   .shipping-coupon h4 {
    font-size: 12px;
    line-height: 20px;
  }

  .use-coupon {
    width: 44%;
    padding: 8px 10px 0 10px;
  }
  .use-coupon h4 {
    font-size: 13px;
  }
 .use-coupon h2 {
    margin: 3px 0 0 0;
    font-size: 18px;
  }
.p_info h5 {
  font-size: 13px;
}
.p_info {
  display: grid;
}
.call-inq {
  font-size: 13px;
  margin: 15px 0;
  line-height: 24px;
}
.call-inq a {
  font-size: 16px;
}
 .code_coupon {
    margin-left: 10px;
    margin-top: 7px;
    justify-content: space-between;
  }
.alternate-reference {
  font-size: 15px;
}
.technical-form h3, .description-form h3, .specification-form h3 {
  font-size: 15px;
}
 .min_content h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .min_content {
    margin-right: 26px;
  }
   .min_content p {
    font-size: 13px;
  }
  .our-blogs h3 {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 0px;
    margin: 0;
    font-weight: 600;
  }
  .review_des {
    font-size: 12px;
    font-weight: 400;
  }
  .rating-style h4 {
    font-size: 30px;
  }
  .rating-style i {
    font-size: 20px;
  }
  .rating-box {
    padding: 10px 0 20px 0;
  }
  .rating-style {
    padding: 0px 15px 15px 15px;
    width: 100%;
  }
  .flex-grow-1 .row{
    display: flex;
  }
  .flex-grow-1 .col-sm-1 {
    width: 8%;
  }
  .flex-grow-1 .col-sm-10 {
    width: 84%;
  }
  .flex-grow-1 {
    width: 100%;
  }
  .flex-grow-1 p {
    font-size: 13px;
  }
  .author-name h4 {
    font-size: 14px;
  }
  .review-panel p {
    max-width: 100%;
    font-size: 12px;
  }
  .width-30p{
    width: 30%;
  }
  .width-40p{
    width: 40%;
  }
  .width-70p{
    width: 70%;
  }
  .width-40p{
    width: 40%!important;
    margin-top: 15px;
  }
  .width-40_p{
    width: 40%!important;
  }
  .d-flex{
    margin: 10px 0;
  }
  .product-feature {
  padding: 3px 20px;
}
.tc_apply h4 {
  font-size: 14px;
  font-weight: 600;
}
.fast-truck img {
  max-height: 30px;
}
.btn-yellow {
  font-size: 13px !important;
  padding: 9px 20px !important;
}
.tc_apply {
  margin-left: 10px;
}
  .automation {
    font-size: 13px;
    padding: 10px 0 10px 0;
    margin: 0;
    line-height: 20px;
  }
  .features-box .col-sm-3 {
    width: 33.33%;
  }
  .features-box .col-sm-3:nth-child(3) {
    border-right: none;
  }
  #content .col-sm-3:nth-child(4n+1){
    clear: unset;
  }
  .technical-form, .description-form, .specification-form {
  margin-bottom: 0;
  margin-top: 0;
}
  #search .input-lg {
    padding: 0 12px;
    font-size: 10px;
  }
  #availability-price .panel-body {
    padding: 0px 0px 40px 0px;
  }
  #searchResult2 {
    width: 90%;
  }
  #cart-total {
    display: none;
  }
  .registration-success {
    padding: 0;
  }
  .registration-success h1 {
    font-size: 24px;
    padding-bottom: 0;
  }
  .registration_bg11 label {
    font-size: 13px;
  }
  .registration-success p {
    font-size: 13px;
    padding-bottom: 0px;
    line-height: 24px;
  }
  .registration-success h2 {
    font-size: 12px;
    padding-bottom: 0;
  }
  .letter-box button {
    padding: 8px 10px;
    font-size: 12px;
  }
  .letter-box input {
    height: 35px;
    padding-left: 15px;
    font-size: 12px !important;
  }
  #logo {
    margin: 0;
  }
  #search .input-lg {
    height: 31px;
  }
  #search .btn-lg {
    padding: 6px 21px;
  }
  .user-icon {
    margin-left: 0px;
  }
  .user-icon i {
    font-size: 12px;
    height: 31px;
    width: 31px;
    padding: 9px 10px;
    margin-right: 0px;
  }
  .custom-menu li a {
    padding: 5px 35px 0 0;
  }
.category-card {
  width: 219px
}
.category-title a {
  font-size: 13px;
  line-height: 21px;
}
.category-card:hover .category-image-wrapper {
  margin-bottom: -75px;
}
.category-image-wrapper {
  width: 150px;
  height: 150px;
}
.subcategory-list li {
  line-height: 26px;
}
.subcategory-list li a {
  font-size: 13px;
}
.subcategory-list {
  padding-left: 0;
}
.category-image-wrapper img {
  width: 100px;
  height: 100px;
}
.range_content {
  font-size: 13px;
}
.range_title {
  font-size: 20px;
}

.company_card {
    flex: 0 1 calc(50% - 20px);
  }
  .custom-menu a {
    font-size: 10px;
  }
  .contact-container {
  max-width: 100%;
  padding: 30px 0;
}
.contact-form {
  padding: 20px;
}
 .contact-form h1 {
    font-size: 20px;
    padding: 0 20px;
    font-weight: 500;
  }
  .contact-form p {
    font-size: 13px;
    line-height: 20px;
    padding: 0 20px;
  }
  .form-group {
    margin-bottom: 10px;
  }
  .contact-form form label {
  font-size: 13px;
}
 .form-control {
    height: 40px;
  }
   .contact-sidebar .box {
    padding: 20px;
  }
   .contact-sidebar .box h3 {
    font-size: 16px;
  }
  .contact-sidebar .box p {
    font-size: 13px;
  }
    .contact-sidebar .box p a {
    font-size: 13px;
  }
   .box .btn-custom {
    padding: 8px 30px;
  }
  .our-address h3 {
    font-size: 20px;
    font-weight: 500;
  }
   .our-location p {
    font-size: 16px;
  }
   .our-location address {
    font-size: 14px;
  }
  .our-location i {
    font-size: 26px;
    margin-right: 15px;
  }
  .mt-6 {
  margin-top: 20px;
}
  .custom-menu .dropdown-submenu > a::after {
    border-width: 3px 0 3px 4px;
    margin-top: 4px;
    margin-right: 0px;
  }

  #search {
    margin-bottom: 0;
  }
  .custom-menu {
    margin-bottom: 0px;
  }
  .request-form {
    padding: 15px;
    border-radius: 15px;
    max-width: 100%;
  }
  .request-form input {
    font-size: 12px !important;
    font-weight: 300;
  }
  .bg-light-dark {
    padding-left: 35px;
    height: 30px;
  }
  .request-form .form-group {
    margin-bottom: 10px;
  }
  .home-search {
    margin-bottom: 10px;
  }
  .search-same-time h3 {
    font-size: 15px;
    font-weight: 500;
  }
  #top {
    font-size: 11px;
  }
  #top .btn-link, #top-links li {
  margin-left: 5px;
  margin-right: 5px;
}
   .header-middle .col-lg-5 {
    width: 35%;
  }
    .header-middle .col-lg-4 {
    width: 40%;
  }
  .call_icon{
    display: none;
  }
  .custom-search-input .search-query {
  padding: 11px 10px;
  font-size: 12px !important;
  height: 40px;
}
.custom-search-input .btn-danger {
  bottom: 2px;
}
  .clearance_discount {
    padding: 8px;
    font-size: 11px;
  }
  .call_icon a {
    font-size: 12px;
    padding: 8px;
  }
  .cart_icon {
    height: 24px;
  }
  #top-links ul {
    margin-bottom: 5px;
  }
  .secondary-top-submenu a {
    padding: 6px 8px !important;
  }
  #top-links {
    padding-top: 5px;
  }
  .nav_currency .dropdown-menu {
  min-width: 190px;
}
  .main-category {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .btn-currency {
  font-size: 11px;
}
  .our-products {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .our-products::before {
    width: 60px;
    top: 34px;
    left: 46%;
  }
  .input-qty .qty {
  padding: 5px 5px 5px 0;
}
#searchResult2 .form-control {
    height: 30px;
  }
#searchResult2  .btn-xs {
  padding: 3px 8px;
}
#searchResult2  .fa {
  font-size: 12px;
}
#searchResult2 .input-group .form-control[name^="quantity"] {
  min-width: 40px;
}
#searchResult2 .td-name{
  padding: 5px!important;
}
  .our-products {
    margin-top: 0;
    margin-bottom: 0;
  }
  .acb-image img{
    width: 35px;
  }
  .quotation-section {
  margin: 0;
}
  .top-cat-name {
  font-size: 14px;
}
  .acb-text h4 {
    font-size: 13px;
    margin: 0;
    line-height: 16px;
  }
  .main-category .col-sm-2{
    width: 25%;
  }
  .acb-box {
    padding: 12px;
    margin-bottom: 20px;
    min-height: 70px;
  }
  .show-all a {
    font-size: 12px;
  }
  .show-all {
    padding-bottom: 10px;
  }
  #quotation {
    margin-top: 0;
  }
  #top {
    min-height: unset;
    padding: 5px 0 8px 0;
  }
  .current_flag {
  padding: 7px 12px;
  font-size: 12px;
  margin-left: 20px;
}
  .info-menu {
    font-size: 10px !important;
    padding: 8px 10px !important;
  }
  .recent-enquiries h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }
.action_body {
  font-size: 10px;
}
  table thead tr th {
    font-size: 10px;
    padding: 4px;
  }
  table tbody tr td {
    font-size: 12px;
    padding: 5px;
  }
  table tbody tr td span {
    font-size: 12px;
    font-weight: 500;
  }
  .get-content a {
  font-size: 12px;
  padding: 7px 30px;
}
.request-form button {
  font-size: 12px;
}
/*  table thead tr th:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  table thead tr th:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }*/
  #availability-price .cat-no {
    min-width: 190px;
  }
  .product-thumb {
    padding: 10px 15px;
  }
  .recent-enquiries p {
    font-size: 13px;
  }
  .request-form label {
    font-size: 12px;
  }
  .enquiry-button {
    max-width: 100%;
  }
  .presence-global {
  padding: 15px 0;
  margin: 30px 0;
}
.company_profile {
    border: medium;
    margin-top: 30px;
    padding: 0px;
  }
  .company_card_header {
    font-size: 13px;
  }
  .company_card_header h4 {
    font-size: 14px;
  }
  .company_card_footer {
    font-size: 14px;
  }
  .company_card_footer a {
    padding: 30px 0px 0 0px;
  }
 .electrihub_flag .canada-flag {
    height: 50px;
  }
  .canada-caption {
    font-size: 30px;
    padding-bottom: 10px;
    line-height: 39px;
  }
  .canada-caption h3 {
    font-size: 18px;
  }
  .canada-caption p {
    font-size: 13px;
    line-height: 22px;
  }
  .blog-caption {
    padding: 15px;
    min-height: 250px;
  }
  .blog-caption h4 {
    font-size: 14px;
    line-height: 22px;
  }
   .blog-caption a {
    padding-left: 0;
  }
  .about-electihub {
    padding: 20px;
    margin-top: 30px;
  }
.blog-caption a {
    font-size: 13px;
  }
  .blog-card {
  margin-bottom: 20px;
}
  .about-electihub h2, .about-electihub h3 {
    font-size: 20px;
    padding: 10px 0px;
    line-height: 30px;
  }
  .enquiry-button .btn-white {
    font-weight: 400;
    font-size: 14px;
  }
  .start-selling h3 {
  font-size: 20px;
  line-height: 30px;
}
.start-selling p {
  font-size: 13px;
  line-height: 24px;
  padding-bottom: 15px;
}
.smart-inventory h4 {
  font-size: 20px;
}
.start-selling {
  padding-left: 0px;
}
.start-selling a {
  padding: 7px 20px;
  font-size: 13px;
}
.smart-inventory ul{
  padding-left: 10px;
}
.smart-inventory {
  padding-left: 80px;
}
.smart-inventory ul li {
  font-size: 13px;
  line-height: 26px;
}
  .get-to-know {
    margin-top: 35px;
  }
  .get-to-know h3 {
    font-size: 20px;
    padding-top: 0px;
    padding-bottom: 0;
    padding-right: 30px;
  }
  .get-to-know p {
    font-size: 10px;
    padding-bottom: 24px;
    max-width: 100%;
    line-height: 18px;
    padding-right: 30px;
    text-align: justify;
  }
  .contact-button a {
    padding: 7px 21px;
    margin-right: 30px;
  }
  #testimonial0 {
    padding: 35px 0;
  }

  .testinomials i {
    margin-bottom: 10px;
    font-size: 28px;
  }
  .testinomials {
    font-size: 12px;
    line-height: 24px;
  }
  .testinomials .tauthor {
    font-size: 13px;
  }
  .image-content h4 {
    font-size: 25px;
    line-height: 30px;
  }
  .catalog-number input {
    font-size: 12px !important;
    font-weight: 400;
    height: 35px;
  }
  .home-search .btn {
    padding: 7px 14px;
  }
  .order-status h3 {
    font-size: 16px;
    line-height: 23px;
  }
  .request-form h3 {
    font-size: 18px;
  }
  .request-form p {
    font-size: 12px;
    margin: 0;
  }
  .request-form form {
  padding: 0;
}
  .custom-select{
    height: 30px;
  }
  .get-content {
    padding: 20px;
    max-width: 100%;
    min-height: 375px;
  }
.get-content h4 {
    font-size: 21px;
    padding-bottom: 0;
    line-height: 31px;
  }
  .quotation-section {
    padding: 30px 0 30px 0;
  }
  .we-deal p {
    font-size: 13px;
    line-height: 22px;
  }
  .we-deal {
    padding: 25px 0;
  }
   .we-deal h3 {
    font-size: 20px;
    padding-top: 0;
    margin: 0;
    line-height: 26px;
    padding-bottom: 10px;
  }
  .bulk-banner{
    margin-bottom: 20px;
  }
  .all_flag {
  margin: 0;
}
  .get-content p {
    font-size: 12px;
    line-height: 25px;
    margin-bottom: 30px;
  }
  .more-about-us h3 {
    font-size: 20px;
    margin-top: 0px;
  }
  .about-electihub {
  padding: 15px;
}
.brand-deal li {
  padding-bottom: 3px;
}
.brand-deal li a {
  font-size: 11px;
}
.width-66{
  width: 50%;
}
.width-100{
  width: 50%;
}
.canada-caption {
    padding-left: 0;
  }
.roi {
  padding: 10px 0;
}
.width-33{
  width: 25%;
  margin-bottom: 15px;
}
.share-icon-footer{
  margin-bottom: 20px;
}
.ind-address h4 {
  font-size: 14px;
}
.information-content h6 {
  font-size: 14px;
  margin-top: 10px;
}
 #account-edit h1, #account-password h1, #account-address h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }
  .profile-card .profile-name {
  font-size: 13px;
  margin: 30px 0 0 0;
}
.profile-card {
  margin-bottom: 15px;
}
.account-group a {
    padding: 10px;
  }
  .account_icon img {
    width: 16px;
  }
   .account-group .account_title {
    font-size: 13px;
  }
  #account-edit fieldset, #account-password fieldset, #account-address fieldset {
    max-width: 100%;
    padding: 30px;
  }
.brand-one {
  padding: 7px 10px;
  font-size: 11px;
  margin: 8px 0 15px 0;
}
.about-electihub h2,.about-electihub h3{
  font-size: 18px;
}
  .products-range h3 {
    font-size: 20px;
    margin-top: 30px;
  }
  .feel-contact {
    padding: 0;
  }

  .feel-contact .form-control {
    font-size: 12px !important;
  }
  .feel-contact input {
    height: 30px;
  }
  .feel-contact textarea {
    height: 95px;
  }
  .feel-free {
    margin: 0;
  }
  .information-content h5 {
    font-size: 14px;
    padding: 0px 0 10px 0;
  }
  .information-content li a {
    line-height: 24px;
    font-size: 12px;
  }
  .contact-footer li span {
    padding-left: 6px;
    font-size: 12px;
  }
  .foot-power {
    padding: 15px 0;
  }
  .copy p {
    font-size: 12px;
  }
  .contact-footer li i {
    padding-right: 4px;
    font-size: 15px;
    margin-top: 7px;
  }
  .contact-footer li,
  .contact-footer p {
    font-size: 12px;
    line-height: 24px;
  }
  .custom-row .col-sm-3 {
    width: 25%;
  }
  .feel-submit button {
    font-size: 14px;
    padding: 5px;
  }
  #account-login .well h2 {
    font-size: 20px;
  }
  #account-login .well label {
    font-size: 14px;
  }
  .custom-coupon-input {
    font-size: 13px !important;
    padding: 17px !important;
  }

  #myRadioGroup .forcustom {
    padding: 10px 8px !important;
    font-size: 11px;
    font-weight: 400;
  }
  #myRadioGroup .forcustom1 {
    padding: 10px 8px !important;
    font-weight: 400;
  }
  #myRadioGroup label > input + .forcustom {
    font-size: 11px;
  }
  #myRadioGroup label > input + .forcustom1 {
    font-size: 11px;
  }
  #myRadioGroup label > input:checked + .forcustom {
    font-size: 11px;
  }
  #myRadioGroup label > input:checked + .forcustom1 {
    font-size: 11px;
  }
  .registration_bg h1 {
    font-size: 22px;
    margin-top: 10px;
  }
  .label-margin label {
    margin-right: -5px;
    margin-left: 0;
  }
  .label-margin {
    margin-bottom: 20px;
  }
  .registration_bg11 {
    margin-top: 30px;
  }
  .custom-menu .dropdown-menu {
    top: 25px;
    padding: 0;
  }
  .home .custom-menu .disable-home{
    top: 30px;
  }
  .button_group {
    display: grid;
    justify-content: unset;
  }
  .button_group .btn-yellow{
    margin-bottom: 10px;
  }
  #product-product h1 {
    font-size: 20px;
  }
  #product-product hr {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .dropdown-menu.columns-3 {
    top: 0;
  }
  .btn-popup {
    font-size: 11px !important;
  }
  .card-header p {
    font-size: 12px;
  }
  .card-header {
    padding: 7px 0;
  }
  #product-product p{
    font-size: 12px;
  }
  .card-body {
    padding: 10px;
  }
  .top-level-cat {
    padding: 0;
  }
  .price-group {
    display: grid;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 6px;
    text-align: center;
  }
  .o_price {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .n_price {
    font-size: 18px;
  }
  .shipping-coupon {
    width: 65%;

  }
.use-coupon {
    width: 30%;
    padding: 13px 9px 0 0;
  }
  .viewed-user {
    font-size: 12px;
}
  .d_price {
    font-size: 12px;
    margin-top: 5px;
  }
  .card h4{
    font-size: 12px;
  }
  .faq-accordion1 .panel-default i {
    left: 85%;
    font-size: 10px;
  }
  .table {
    margin-bottom: 15px;
  }
  .cart-group {
    margin-top: 15px;
  }
  .q_input {
    margin: 10px 6px 0 0;
  }
  #product-product .cart-group input {
    font-size: 12px !important;
    margin-right: 5px;
    height: 38px;
    border-radius: 4px !important;
    width: 40%;
  }
  #product-product .cart-group button {
    width: 60%;
  }
  .use-coupon h2 {
    font-size: 16px;
  }
  .card-body .panel-group .panel-heading .panel-title a {
    font-size: 12px;
    line-height: 18px;
  }
  .faq-accordion1 .panel-heading .panel-title a {
    font-size: 12px;
  }
  .panel-default > .panel-heading {
    padding: 8px 10px;
  }
  .faq-accordion2 .panel-default i {
    left: 81%;
    font-size: 12px;
    padding-top: 4px;
  }
  .user-icon p {
    font-size: 12px;
  }
  #cart .dropdown-menu li p {
    margin: 15px 0;
  }
  .user-icon a {
    font-size: 12px;
  }
  #cart .dropdown-menu {
    min-width: 200px;
  }
  .new-electrihub h4 {
    font-size: 13px;
  }
  .thumbnails .image-additional {
    margin-left: 10px;
  }
  .panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body{
    padding: 8px 10px;
    font-size: 12px;
  }
  .card {
    margin-bottom: 20px;
  }
  .all-category a {
    font-size: 11px;
    border-radius: 0 0 15px 15px;
  }
  .second-level-cat {
    padding: 15px 10px 15px 10px;
  }
  .second-level-cat h4 {
    font-size: 12px;
    font-weight: 500;
  }
  .scheinider-center {
    left: 310px;
  }
  .category-group li {
    padding: 6px 4px;
    font-weight: 400;
    font-size: 10px;
    margin-bottom: 25px;
  }
  #checkout-cart #input-coupon {
    font-size: 12px;
    height: 36px;
  }
  #checkout-checkout .panel-title {
    font-size: 13px;
  }
  #checkout-checkout h1{
    font-size: 20px;
  }
  #checkout-cart h1 {
    font-size: 20px;;
  }
  .contact-us-page h1 {
    font-size: 20px;
    padding-top: 0;
    padding-left: 0;
  }
  .contact-us-page p {
    font-size: 14px;
    padding-left: 0;
    line-height: 24px;
  }
  #mfilter-content-container h2::before {
    width: 40px;
  }
  #product-category .product-thumb input {
    font-size: 12px !important;
    height: 35px;
  }
  .custom-coupon-button {
    font-size: 11px !important;
    padding: 8px 12px !important;
  }
  .product-thumb .custom-coupon-button {
    padding: 5px 10px !important;
  }
  .estimate-section p {
    font-size: 14px;
    padding-bottom: 13px;
  }
  #availability-price .description-no {
    min-width: 268px;
  }
  .shipping-coupon h3 {
    font-size: 13px;
  }
  .account-list > li {
    margin: 10px 30px 50px 0px;
  }
  .account-list .edit-info a {
    padding: 10px;
    font-size: 12px;
  }
  .breadcrumb > li {
    font-size: 10px;
  }

  #account-quotation fieldset textarea {
    height: 70px;
  }
  #account-account h2 {
    font-size: 16px;
  }
  .custom-contact-form {
    max-width: 70%;
  }
  .custom-contact-form {
    padding: 30px 40px;
  }
  .custom-contact-form h3 {
    font-size: 20px;
  }
  .our-address {
    padding: 30px 0;
  }
  .our-address h3 {
    font-size: 20px;
    padding-bottom: 0px;
  }
  .our-location strong {
    font-size: 14px;
  }
  .our-location address {
    font-size: 12px;
    line-height: 24px;
  }
  .our-location h5 {
    font-size: 12px;
  }
  .account-list > li {
    width: calc(100% / 3);
  }
  .list-group a {
    padding: 6px 12px;
    font-size: 12px;
  }
  .quotation_box {
  padding: 15px;
}
.quotation_box h4 {
  font-size: 15px;
  line-height: 21px;
  margin-top: 0;
  margin-bottom: 12px;
}
.quotation_box p {
  font-size: 12px;
  margin-bottom: 0;
}
.quotation_box p a {
  font-size: 12px;
}
  #account-edit h1,#account-password h1,#account-address h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }#account-edit .control-label,#account-password .control-label {
    font-size: 13px;
  }
   .cat_img a {
    font-size: 13px;
    line-height: 20px;
  }
  .currency_group {
    gap: 3px;
  }
   .currency_group h3 {
    font-size: 14px;
  }
    .currency_group h5 {
    font-size: 11px;
  }
  .currency_group h6 {
  font-size: 11px;
}
 .add_t_cart button {
    font-size: 13px;
    padding: 9px;
  }
    #account-edit .form-control, #account-password .form-control, #account-address .control-label {
    font-size: 12px;
  }
  .control-label, #account-address .form-control,#account-password .control-label {
    font-size: 12px;
  }
  #account-edit .form-control, #account-password .form-control, #account-address .control-label {
    font-size: 12px;
  }
  .btn-account-submit {
    padding: 8px 30px !important;
    font-size: 13px !important;
  }
  #account-wishlist h2, #account-return h1, #account-transaction h1{
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #111;
  }
  #account-order h1, #account-order h2 {
    font-size: 20px;
    padding: 5px;
  }
  .counter-enquiry {
    position: absolute;
  }
  #search-option input{
    min-width: 70px;
  }
  .custom-contact-form .contact-input {
    font-size: 13px !important;
    height: 40px;
    padding-left: 40px;
  }
  .custom-contact-form label {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .custom-contact-form textarea {
    font-size: 13px !important;
    font-weight: 400;
    height: 100px;
    padding: 15px;
  }
  .contact-submit .btn-white {
    font-weight: 400;
    font-size: 14px;
  }
  #product-search .caption .table-responsive table {
    max-width: 100%;
  }
  #product-box .caption .table-responsive table {
    max-width: 100%;
  }
  #product-category .caption .table-responsive table {
    max-width: 100%;
  }
  .common-cart-icon i {
    font-size: 15px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-right: 0;
    box-shadow: none;
    height: unset;
    width: unset;
    color: unset;
  }
  .second-level {
    min-width: 100% !important;
  }
  .dropdown-menu.columns-3 {
    left: 157px;
    min-width: 528px;
  }
  .features-box {
    padding: 15px 10px;
  }
  .features-image img {
    max-width: 40px;
  }
  .features-content h4 {
    font-size: 16px;
  }
   .features-content span {
    font-size: 12px;
  }
   .features-box .col-sm-3 {
    width: 33.33%;
  }
  .multi-column .col-sm-4 {
    width: 28%;
  }
  .second-level a {
    font-size: 10px;
  }
  .navbar {
    min-height: 30px;
  }
  .multi-column-dropdown a {
    font-size: 10px;
  }
  .price-availability h2 {
    font-size: 18px;
  }
  .price-availability span {
    font-size: 13px;
  }
  .catalog-number p {
    font-size: 14px;
  }
  .catalog-number {
    padding: 10px 15px;
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
.cart-header .col-sm-6,.cart-header .col-sm-2,.cart-header .col-sm-4{
  width: 33%;
}
.cart-header .row{
  display: flex;
}
#top .btn-link, #top-links li {
  margin-left: 0;
  margin-right: 0;
}
.current_flag {
  padding: 7px 13px;
  margin-left: 15px;
}
.cart-item {
  padding: 10px 0px;
  flex-wrap: wrap;
}
.product-img {
  width: 60px;
}
.custom-cart-container .col-md-2 {
  width: 25%;
}
.custom-cart-container .col-md-3 {
  width: 75%;
}
.custom-cart-container .col-md-4 {
  width: 60%;
}
.custom-cart-container .col-md-5 {
  width: 40%;
}
.qty-box {
  justify-content: flex-end;
}
.item-price {
  justify-content: space-around;
}
.item-description .ref {
  font-size: 12px;
  margin-bottom: 3px;
}
.item-description .name {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 15px;
}
.custom-cart-container {
  max-height: 350px;
}
.qty-box input.form-control {
  width: 50px;
}
.item-price .price {
  font-size: 14px;
  font-weight: 600;
}
.qty-box .btn {
  padding: 6.5px 12px !important;
}
.btn-remove span {
  font-size: 16px;
}
.btn-remove {
  padding: 0px 7px !important;
}
.item-price .discount {
  font-size: 12px;
}
.cart-header {
  font-size: 13px;
  padding: 12px 20px;
}
.info-menu {
  font-size: 12px !important;
}
.summery_header{
  padding: 12px 20px;
}
.summery_header h3{
  font-size: 13px;
  margin: 3px 0;
}
.cart-footer {
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
}
.cart-footer a {
  width: 100%;
}
.cart-title {
  align-items: center;
  padding-bottom: 10px;
}
#checkout-cart h1 {
  font-size: 20px;
}
#checkout-cart #input-coupon {
  height: 37px;
  font-size: 12px;
}
.fare-label {
  font-size: 12px;
}
.fare-amount {
  font-size: 12px;
}
#checkout-cart .cart-header .col-sm-6 {
  width: 34%;
}
#checkout-cart .cart-header .col-sm-2 {
  width: 28%;
}
.fare-break {
  padding: 4px 0;
}
.secure-checkout {
  padding: 12px 0;
}
.secure-checkout a {
  font-size: 14px !important;
}
.or-line {
  margin: 30px 0 20px 0;
}
.s_cart_btn button {
  font-size: 14px !important;
}
  .custom-tabs-container li.tab a{
    margin: 0px;
    padding: 8px 14px;
    font-size: 12px;
  }
.custom-confirmation h1 {
  font-size: 26px;
  line-height: 35px;
  margin-top: 18px;
  margin-bottom: 0;
}
.custom-confirmation h1 span {
  font-size: 20px;
}
.custom-confirmation h3 {
  font-size: 14px;
  line-height: 24px;
}
.custom-confirmation h4 {
  font-size: 18px;
  margin: 0;
}
.custom-confirmation p {
  padding-bottom: 10px;
  line-height: 24px;
}
.custom-confirmation {
  max-width: 75%;
}
  .cart_icon {
  height: 24px;
}
.call_icon a {
  font-size: 12px;
  padding: 8px;
}
.header-middle .col-lg-5{
    width: 35%;
  }
  .header-middle .col-lg-4{
    width: 40%;
  }
  .clearance_discount{
    padding: 8px;
    font-size: 11px;
  }
.custom-search-input .search-query{
  height: 40px;
  padding: 11px 10px;
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
  border-radius: 4px;
}
  .custom-search-input .btn-danger {
  bottom: 3px;
}
  .custom-tabs-container{
    margin-bottom: 20px;
  }
#account-register {
  padding-top: 30px;
  padding-bottom: 30px;
}
.registration_bg {
  max-width: 100%;
}
.register-features h2 {
  font-size: 22px;
}
.register-features p {
  font-size: 14px;
  line-height: 21px;
}
.custom-register {
  padding: 25px 20px;
}
.login-logo {
  padding-bottom: 15px;
}
.custom-tabs .tab a {
  padding: 10px 16px;
  font-size: 13px;
}
.register-header h4 {
  font-size: 13px;
}
.g_button {
  margin-top: 20px;
  padding: 10px;
}
.g_button span {
  font-size: 14px;
  margin: 2px 0 0 10px;
}
.form-control {
  height: 40px;
}
.account-group a {
  padding: 10px;
}
.r_form_icon i {
  font-size: 18px;
}
.account-group .account_title {
  font-size: 13px;
}
.r_form_icon img {
  width: 18px;
}
.account-group a::after {
  width: 8px;
  height: 8px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
}
.account_icon img {
  width: 16px;
}
.form-group {
  margin-bottom: 10px;
}
.g_button img{
  height: 25px;
}
.registration_bg11 .form-control {
  font-size: 13px !important;
}
.cat-specific {
  font-size: 13px;
  margin-top: 0px;
  line-height: 20px;
}
  #content .col-md-2:nth-child(6n + 1),
  #content .col-md-3:nth-child(4n + 1),
  #content .col-md-4:nth-child(3n + 1),
  #content .col-md-6:nth-child(2n + 1) {
    clear: left;
  }
  .rating-style {
    width: 50%;
  }
  .new-panel {
    padding: 14px 20px!important;
    margin-bottom: 10px;
  }
  .m_customer .btn-primary {
  font-size: 13px;
  padding: 10px 10px;
  width: 50%;
}
.n_customer .btn-primary {
  font-size: 13px;
  padding: 10px 10px;
  width: 50%;
}
.n_customer h4 {
  font-size: 13px;
  font-weight: 400;
  color: #444;
  line-height: 20px;
}
.n_customer p {
  font-size: 13px;
  padding-top: 0;
}
.n_customer label {
  font-size: 13px;
}

.l_customer label {
  font-size: 13px;
}
.m_customer label {
  font-size: 13px;
}
.wrapper {
  width: 50px;
}
.new-panel h4 {
  font-weight: 500;
}
.panel-title {
  font-size: 14px;
}
.n_customer h2 {
  font-size: 22px;
  margin: 10px 0;
  font-weight: 600;
}
.n_customer h3 {
  font-size: 15px;
  padding-top: 10px;
}
.panel-title1 img {
  width: 27px;
}
.l_customer h2 {
  font-size: 22px;
  margin: 10px 0;
  font-weight: 600;
}
.l_customer h3 {
  font-size: 16px;
  padding-top: 10px;
}
.fri_text {
  font-size: 13px !important;
}
.btn-confirm-order {
  font-size: 14px !important;
  padding: 10px 26px !important;
}
h1 {
  font-size: 26px;
}
#logged-box label{
  font-size: 12px;
}
.tc_apply h4 {
  font-size: 14px;
}
.tc_apply {
  margin-left: 10px;
}
.fast-truck img {
  max-height: 36px;
}
  .our-blogs h3 {
    font-size: 15px;
    line-height: 22px;
    font-family: "Poppins", sans-serif;
    color: #111;
    font-weight: 600;
    padding: 13px 0;
    margin: 0;
  }
  .blog-category {
    font-size: 14px;
  }
  .faq-accordion2 .panel-default i {
    left: 84%;
    font-size: 13px;
    padding-top: 3px;
  }
  #content {
    min-height: 300px;
  }
  .width-30p{
    width: 30%;
  }
  .width-40p{
    width: 40%;
  }
  .width-70p{
    width: 70%;
  }
  .width-40p{
    width: 40%!important;
    margin-top: 15px;
  }
  .width-40_p{
    width: 40%!important;
  }

  .automation {
    font-size: 20px;
    padding: 10px 0 10px 0;
    margin: 0;
    line-height: 31px;
  }
  .our-products {
    font-size: 19px;
    margin-bottom: 0px;
    margin-top: 15px;
  }
  .about-electihub h2, .about-electihub h3 {
    font-size: 20px;
    padding: 10px 0;
    line-height: 30px;
  }
  .top-cat-name {
  font-size: 15px;
}
  .contact-footer li span {
    padding-left: 8px;
    line-height: 19px;
    font-size: 12px;
  }
  .ind-address h4 {
    font-size: 14px;
  }
  .foot-power {
    padding: 20px 0;
  }
  .copy p {
    font-size: 12px;
  }
  .information-content h5 {
    font-size: 15px;
    padding: 0px 0 10px 0;
  }
  .contact-footer li i {
    padding-right: 4px;
    margin-top: 4px;
  }
  #top-links a {
  font-size: 12px;
}
.features-box {
  padding: 15px 10px;
}
.input-qty .qty {
  padding: 5px 5px 5px 0;
}
#searchResult2 .form-control {
    height: 30px;
  }
#searchResult2  .btn-xs {
  padding: 3px 8px;
}
#searchResult2  .fa {
  font-size: 12px;
}
#searchResult2 .input-group .form-control[name^="quantity"] {
  min-width: 40px;
}
#searchResult2 .td-name{
  padding: 5px!important;
}
.features-image img {
  max-width: 40px;
}
  .information-content li a {
    line-height: 26px;
    font-size: 13px;
  }
  .information-content h6 {
    font-size: 15px;
    margin-bottom: 15px;
    color: #fff;
  }
  .brand-one {
    margin: 0 0 15px 0;
  }
  .button_group {
    display: grid;
    justify-content: unset;
  }
  .button_group .btn-yellow {
    margin-bottom: 10px;
  }

  .custom-coupon-button {
    font-size: 11px !important;
    padding: 8px 12px !important;
  }
  #product-product h1 {
    font-size: 15px;
  }
  #product-product p {
    font-size: 12px;
  }
  .p_title {
    line-height: 22px;
    font-size: 16px;
}
.technical-form, .description-form, .specification-form {
  margin-bottom: 0;
  margin-top: 0;
}
.technical-form h3, .description-form h3, .specification-form h3 {
  font-size: 16px;
}
.related_title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 0;
}
.fbt-product-card {
  flex: 0 0 calc(33% - 24px);
}
.custom-tabs .tab a {
  padding: 10px 20px;
  font-size: 13px;
}
.cat-specific {
  font-size: 14px;
  line-height: 20px;
  margin-top: 0;
}
  .btn-popup {
    font-size: 11px !important;
  }
  .table {
    margin-bottom: 15px;
  }
  #product-product p {
    font-size: 12px;
  }
  .card {
    margin-bottom: 20px;
  }
  .card-header {
    padding: 8px 0;
  }
  #product-product p {
    font-size: 12px;
  }
  .card-body {
    padding: 15px;
  }
  .price-group {
    display: grid;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 0px;
    text-align: center;
  }
  .o_price {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .use-coupon {
    padding: 20px 12px 0px 12px;
    width: 50%;
  }
  .shipping-coupon h4 {
  font-size: 13px;
  line-height: 20px;
}
.shipping-coupon p{
  font-size: 11px;
}
.call-inq {
  font-size: 14px;
  margin: 19px 0 7px 0;
  line-height: 25px;
}
.call-inq a {
  font-size: 16px;
}
  .n_price {
    font-size: 20px;
  }
  .viewed-user {
    font-size: 12px;
}
  .d_price {
    font-size: 13px;
    margin-top: 5px;
  }
  .panel-default > .panel-heading {
    padding: 8px 10px;
  }
  .custom_fontawes {
  margin-top: -11px;
  padding: 15px 16.8px;
}
  .faq-accordion1 .panel-default i {
    left: 89%;
    font-size: 12px;
  }
  .card h4 {
    font-size: 12px;
  }
  .card-body .panel-group .panel-heading .panel-title a {
    font-size: 12px;
    line-height: 18px;
  }

  .account-list > li {
    width: calc(100% / 3);
  }
  .list-group a {
    padding: 6px 12px;
    font-size: 12px;
  }
  #account-edit h1,#account-password h1,#account-address h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }
  #account-edit fieldset,#account-password fieldset, #account-address fieldset {
    max-width: 100%;
    padding: 30px;
  }
  .quotation_box h4 {
  font-size: 16px;
  margin-bottom: 13px;
}
#account-edit .control-label {
  font-size: 14px;
}
  .control-label, #account-address .form-control {
    font-size: 12px;
  }
  #account-edit .form-control, #account-password .form-control, #account-address .control-label {
    font-size: 12px;
  }
  .btn-account-submit {
    padding: 8px 30px !important;
    font-size: 13px !important;
  }
  #account-wishlist h2, #account-return h1, #account-transaction h1{
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #111;
  }
  #search-option input {
    min-width: 80px;
  }
  #account-order h1, #account-order h2 {
    font-size: 20px;
    padding: 5px;
  }
  .counter-enquiry {
    position: absolute;
  }
  .panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
    padding: 8px 10px;
    font-size: 12px;
  }
  .shipping-coupon h3 {
    font-size: 16px;
  }
  .card h4 {
    font-size: 13px;
  }
  .our-products::before {
    width: 75px;
    top: 40px;
    bottom: 30px;
    left: 46%;
  }
  .main-category .col-sm-2 {
    width: 20%;
  }
  .request-form {
    padding: 15px;
    border-radius: 15px;
    max-width: 100%;
  }
  .request-form p {
    font-size: 13px;
    margin: 0;
  }
  #quotation {
    margin-top: 0;
    padding: 0;
  }
  .enquiry-button {
    max-width: 35%;
  }
  .request-form .form-group {
    margin-bottom: 10px;
  }
  .request-form label {
    font-size: 12px;
  }
  .request-form input {
    font-size: 12px !important;
    font-weight: 300;
  }
  .get-content {
    padding: 25px;
    max-width: 100%;
    min-height: 380px;
  }
  .quotation-section {
  margin: 50px 0 20px 0;
}
  .get-content h4 {
    font-size: 30px;
    padding-bottom: 10px;
    line-height: 39px;
  }
  .company_profile {
  border: none;
  margin-top: 30px;
  padding: 0;
}
.company_card_header h4 {
  font-size: 14px;
}
.company_card_footer {
  padding: 15px;
}
.canada-caption {
  padding-left: 0;
}
.electrihub_flag .canada-flag {
  height: 50px;
}
.canada-caption h3 {
  font-size: 18px;
}
.canada-caption p {
  font-size: 13px;
  line-height: 22px;
}
.blog-caption h4 {
  font-size: 14px;
  line-height: 22px;
}
.blog-caption {
  padding: 15px;
  min-height: 294px;
}
.blog-caption a {
  font-size: 13px;
}
.blog-card {
  margin-bottom: 20px;
}
.best-product h3 {
  padding: 30px 0px 0 0px;
}
.company_card_footer a {
  font-size: 13px;
}
.company_card_header {
  padding: 13px 15px;
}
.company_card {
  flex: 0 1 calc(33% - 20px);
}
  .get-content p {
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .get-content a {
    font-size: 13px;
    padding: 8px 30px;
  }
  .recent-enquiries h4 {
    font-size: 20px;
  }
  .quotation-section .col-lg-8{
  width: 70%;
}
.quotation-section .col-lg-4{
  width: 30%;
}
.request-form p {
    display: none;
  }
 .bulk-banner img{
  height: 325px;
 } 
  .we-deal h3 {
    font-size: 22px;
    padding-top: 40px;
    margin: 0;
    line-height: 26px;
  }
  .category-box-body {
  min-height: 350px;
}
  .presence-global {
    padding: 15px 0;
    margin: 30px 0;
  }
  .start-selling {
    padding-left: 0px;
  }
  .start-selling h3 {
    font-size: 22px;
    line-height: 34px;
  }
  .start-selling p {
    font-size: 14px;
    line-height: 25px;
    padding-bottom: 15px;
  }
  .start-selling a {
    padding: 7px 20px;
    font-size: 13px;
  }
  .smart-inventory {
    padding-left: 80px;
  }
  .smart-inventory h4 {
    font-size: 22px;
  }
  .smart-inventory ul {
    padding-left: 15px;
  }
  .smart-inventory ul li {
    font-size: 14px;
    line-height: 28px;
  }
  .testinomials .tauthor {
    font-size: 14px;
  }
  .best-product .our-products {
    margin-bottom: 30px;
  }
  .our-products::before {
    width: 75px;
    top: 40px;
    bottom: 30px;
    left: 46%;
  }
  .we-deal p {
    font-size: 14px;
    line-height: 28px;
  }
  .recent-enquiries p {
    font-size: 13px;
  }
  table thead tr th {
    font-size: 12px;
  }
  .roi {
  padding: 15px 0;
}
  .acb-box {
    padding: 12px;
    margin-bottom: 20px;
    min-height: 70px;
  }
  .acb-text h4 {
    font-size: 13px;
    margin: 0;
    line-height: 16px;
  }
  .acb-image img {
    width: 35px;
  }
  .show-all {
    padding-bottom: 10px;
  }
  .show-all a {
    font-size: 13px;
  }
  .features-box .col-sm-3 {
    width: 33.33%;
  }

  .features-content h4 {
    font-size: 16px;
  }
  .features-content span {
    font-size: 12px;
  }
  .features-box .col-sm-3:nth-child(3) {
    border-right: none;
  }
  #content .col-sm-3:nth-child(4n+1){
    clear: unset;
  }
  .registration-success h1 {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .registration-success p {
    font-size: 14px;
    padding-bottom: 5px;
    line-height: 24px;
  }
  .letter-box input {
    height: 41px;
    font-size: 13px !important;
  }
  .letter-box button {
    padding: 10px 15px;
  }
  .registration-success {
    padding: 0;
  }
  #cart-total {
    display: none;
  }
  #search .input-lg {
    height: 37px;
  }
  #search .btn-lg {
    padding: 9px 21px;
  }
  .user-icon {
    margin-left: 10px;
  }
  .user-icon i {
    font-size: 15px;
    height: 37px;
    width: 37px;
  }
.category-card {
  width: 220px;
}
 .category-image-wrapper {
    width: 160px;
    height: 160px;
  }
.category-title a{
  font-size: 13px;
  line-height: 20px;
}
.category-card:hover .category-image-wrapper {
  margin-bottom: -80px;
}
.subcategory-list li {
  line-height: 26px;
}
.subcategory-list li a {
  font-size: 13px;
}
.subcategory-list {
  padding-left: 0;
}
.category-image-wrapper img {
  width: 100px;
  height: 100px;
}
.range_content {
  font-size: 13px;
}
.range_title {
  font-size: 20px;
}
.category-flex-wrapper {
  gap: 20px;
}
  .custom-menu li a {
    padding: 8px 10px!important;
    font-size: 12px!important;
  }
  .custom-menu .dropdown-menu {
    top: 31px;
  }
  .custom-menu .dropdown-submenu > a::after {
    border-width: 3px 0 3px 4px;
    margin-top: 7px;
    margin-right: 0px;
  }
  .request-form {
    padding: 15px;
    border-radius: 8px;
  }
  .request-form input {
    font-size: 12px !important;
    font-weight: 300;
  }
  .bg-light-dark {
    padding-left: 38px;
  }
  .request-form label {
    font-size: 12px;
  }
  .enquiry-button {
    max-width: 100%;
  }
  .enquiry-button .btn-white {
    font-weight: 400;
    font-size: 14px;
  }
  .get-to-know {
    margin-top: 35px;
  }
  .get-to-know h3 {
    font-size: 24px;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .product-thumb {
    padding: 20px 15px;
  }
  .get-to-know p {
    font-size: 12px;
    padding-bottom: 15px;
    max-width: 100%;
    line-height: 22px;
    padding-right: 30px;
    text-align: justify;
  }
  .contact-button a {
    padding: 10px 25px;
  }
  #testimonial0 {
    padding: 0;
    margin-bottom: 20px;
  }
  .about-electihub {
  padding: 20px;
  margin-top: 30px;
}
  .testinomials i {
    margin-bottom: 10px;
    font-size: 28px;
  }
  .testinomials {
    font-size: 14px;
    line-height: 27px;
  }
  .catalog-number input {
    font-size: 12px !important;
    font-weight: 400;
  }
  .products-range h3 {
    font-size: 24px;
  }
  .feel-contact {
    padding: 25px 0;
  }
  .login-logo {
    padding-bottom: 25px;
  }
  #account-login .well {
    max-width: 60%;
    margin: 0 auto 30px auto;
    padding: 40px;
  }
  .log_otp {
    margin-top: 20px;
  }
  .log_otp a {
    font-size: 14px;
  }
  .hire-line-login {
    max-width: 60%;
  }
  .o_r_l p {
    font-size: 13px;
    left: 38%;
  }
   .new-electrihub {
    max-width: 60%;
  } 
  .new-electrihub .btn-yellow {
    font-size: 14px !important;
  }
  #account-login .well h2 {
    font-size: 20px;
  }
  #account-login .well label {
    font-size: 14px;
  }
  .custom-coupon-input {
    font-size: 13px !important;
    padding: 17px !important;
  }
  .custom-register {
    padding: 25px 26px;
  }
  .registration_bg h1 {
    font-size: 22px;
    margin-top: 10px;
  }
  .label-margin label {
    margin-right: -5px;
    margin-left: 0;
  }
  .label-margin {
    margin-bottom: 20px;
  }
  .registration_bg11 label {
    font-size: 14px;
  }
  .registration_bg11 {
    margin-top: 30px;
  }

  .dropdown-menu.columns-3 {
    top: 0;
    min-width: 680px;
  left: 208px;
  }
  .currency_group {
  gap: 5px;
}
.cat_img a {
  font-size: 13px;
  line-height: 20px;
}
.currency_group h3 {
  font-size: 18px;
}
.contact-form {
  padding: 30px 5px;
}
.contact-sidebar .box h3 {
  font-size: 16px;
}
.contact-form p {
  font-size: 13px;
  line-height: 20px;
  padding: 0 20px;
}
.contact-sidebar .box {
  padding: 20px;
}
.contact-sidebar .box p {
  font-size: 13px;
}
.contact-sidebar .box p a {
  font-size: 13px;
}
.box .btn-custom {
  padding: 8px 30px;
}
.our-location {
  max-width: 100%;
}
.our-location i {
  font-size: 26px;
  margin-right: 15px;
}
.our-address h3 {
  font-size: 20px;
  font-weight: 500;
}
.our-location p {
  font-size: 16px;
}
.our-location address {
  font-size: 14px;
}
.our-location h5 {
  font-size: 14px;
}
.contact-form h1 {
  font-size: 20px;
  padding: 0 20px;
  font-weight: 500;
}
.currency_group h5 {
  font-size: 13px;
}
.contact-container {
  max-width: 100%;
  padding: 25px;
}
.add_t_cart button {
  font-size: 13px;
  padding: 10px;
}
  .top-level-cat {
    padding: 0;
  }
  .all-category a {
    font-size: 11px;
    border-radius: 0 0 15px 15px;
  }
  .second-level-cat {
    padding: 15px 10px 15px 10px;
  }
  .second-level-cat h4 {
    font-size: 12px;
    font-weight: 500;
  }
  .custom-row .col-sm-3 {
    width: 25%;
  }
  .scheinider-center {
    left: 400px;
  }
  .category-group li {
    padding: 7px;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 35px;
  }
  .custom-coupon-button {
    font-size: 12px !important;
    padding: 10px 20px !important;
  }
  #availability-price .description-no {
    min-width: 400px;
  }
  .custom-contact-form {
    max-width: 60%;
  }
  .custom-contact-form .contact-input {
    font-size: 13px !important;
    height: 40px;
    padding-left: 40px;
  }
  .custom-contact-form label {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .custom-contact-form textarea {
    font-size: 13px !important;
    font-weight: 400;
    height: 100px;
    padding: 15px;
  }
  .contact-submit .btn-white {
    font-weight: 400;
    font-size: 14px;
  }
  #product-search .caption .table-responsive table {
    max-width: 100%;
  }
  #product-box .caption .table-responsive table {
    max-width: 100%;
  }
  #product-category .caption .table-responsive table {
    max-width: 100%;
  }
  .common-cart-icon i {
    font-size: 15px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-right: 0;
    box-shadow: none;
    height: unset;
    width: unset;
    color: unset;
  }
  .new_login_card {
  max-width: 60%;
}
.region-box {
  padding: 20px 40px 40px 40px;
}
}
@media (min-width: 1200px) and (max-width: 1365px) {
.cart-header .row{
  display: flex;
}
.range_content {
  margin-bottom: 30px;
}
.cart-item {
  padding: 10px 0px;
  flex-wrap: wrap;
}
.product-img {
  width: 70px;
}
.custom-cart-container .col-md-2 {
  width: 13%;
}
.custom-cart-container .col-md-3 {
  width: 40%;
}
.custom-cart-container .col-md-4 {
  width: 17%;
}
.custom-cart-container .col-md-5 {
  width: 28%;
}
.item-price {
  justify-content: space-around;r;
}
.item-description .ref {
  font-size: 12px;
  margin-bottom: 3px;
}
#checkout-cart .cart-header .col-sm-6{
  width: 51%;
}
#checkout-cart .cart-header .col-sm-2{
  width: 20%;
}
#checkout-cart .cart-header .col-sm-4{
  width: 19%;
}
.qty-box .btn {
  padding: 6.5px 12px !important;
}
.item-description .name {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 15px;
}
.qty-box input.form-control {
  width: 50px;
}
.item-price .price {
  font-size: 14px;
  font-weight: 600;
}

.btn-remove span {
  font-size: 16px;
}
.btn-remove {
  padding: 0px 7px !important;
}
.item-price .discount {
  font-size: 12px;
}
.cart-header {
  font-size: 13px;
  padding: 12px 20px;
}
.summery_header{
  padding: 12px 20px;
}
.summery_header h3{
  font-size: 13px;
  margin: 3px 0;
}
.cart-footer {
  padding: 15px;
  text-align: right;
  margin-bottom: 0px;
}
.cart-footer a {
  width: unset;
}
.custom-coupon-button {
  font-size: 13px !important;
  padding: 8px 15px !important;
}
.cart-title {
  align-items: center;
  padding-bottom: 10px;
}
#checkout-cart h1 {
  font-size: 20px;
}
#checkout-cart #input-coupon {
  height: 37px;
  font-size: 13px;
}
.fare-label {
  font-size: 13px;
}
.fare-amount {
  font-size: 13px;
}
.fare-break {
  padding: 4px 0;
}
.secure-checkout {
  padding: 12px 0;
}
.secure-checkout a {
  font-size: 14px !important;
}
.or-line {
  margin: 30px 0 20px 0;
}
.s_cart_btn button {
  font-size: 14px !important;
}
.summery_body {
  padding: 20px;
}
.coupon-label {
  font-size: 13px;
  margin-bottom: 7px;
}
.custom-cart-container {
  padding: 10px 20px;
  max-height: 350px;
}

.custom-tabs-container li.tab a{
  margin: 0px;
  padding: 9px;
  font-size: 12px;
}
.custom-confirmation h1 {
  font-size: 30px;
  line-height: 44px;
  margin-top: 25px;
}
.custom-confirmation h3 {
  font-size: 14px;
  line-height: 24px;
}
.custom-confirmation p {
  padding-bottom: 10px;
  line-height: 24px;
}
.custom-confirmation {
  max-width: 60%;
}
#account-edit fieldset {
  padding: 0 20px;
}
.header-middle .col-lg-5{
    width: 35%;
  }
  .header-middle .col-lg-4{
    width: 40%;
  }
.clearance_discount {
  padding: 10px;
  font-size: 12px;
}
.call_icon a {
  font-size: 13px;
  padding: 12px;
}
#cart-total {
  font-size: 11px;
}
.category-card {
  width: 204px;
}
.category-image-wrapper {
  width: 150px;
  height: 150px;
}
.category-title a{
  font-size: 14px;
  line-height: 21px;
}
.subcategory-list li {
  line-height: 26px;
}
.subcategory-list li a {
  font-size: 13px;
}
.subcategory-list {
  padding-left: 0;
}
.category-image-wrapper img {
  width: 90px;
  height: 90px;
}
.category-title a {
  font-size: 13px;
}
.category-card:hover .category-image-wrapper {
  margin-bottom: -75px;
}
.features-image img {
  max-width: 40px;
}
.request-form form {
  padding: 0;
}
.cat_img a {
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
}
.our-products {
  font-size: 22px;
  padding: 20px 0;
}
.top-cat-name {
  font-size: 15px;
}
.we-deal h3 {
  font-size: 22px;
}
.quotation-section .col-lg-8{
  width: 70%;
}
.quotation-section .col-lg-4{
  width: 30%;
}
.request-form {
  padding: 22px 30px;
}
.request-form .form-group {
  margin-bottom: 10px;
}

.request-form p {
    display: none;
  }
.request-form form{
  padding: 0;
}
.we-deal p {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 25px;
}
.currency_group h3 {
  font-size: 14px;
}
.currency_group h6 {
  font-size: 11px;
}
.currency_group {
  gap: 3px;
}
.t_stock {
    display: grid;
    gap: 7px;
}
.product-grid .product-thumb .caption .cat_img p{
  min-height: 57px;
}
.currency_group h5 {
  font-size: 11px;
}
.current_flag {
  font-size: 12px;
  font-weight: 500;
  margin-left: 15px;
}
.contact-sidebar .box h3 {
  font-size: 18px;
}
.line_anchor {
  padding: 9px;
  font-size: 12px;
  gap: 7px;
}
.secondary-top-submenu a {
    padding: 11px 20px 11px 11px !important;
  }
.add_t_cart button {
  font-size: 12px;
  padding: 9px;
}
.category_cat p {
  font-size: 12px;
}
.contact-form {
  padding: 30px;
}
.contact-container {
  max-width: 100%;
  padding: 30px;
}
.all_stock p {
  font-size: 12px;
}
.all_stock span {
  font-size: 12px;
}
.all_stock {
  gap: 4px;
}
.custom-menu a {
  font-size: 12px;
}
.our-location p {
  font-size: 15px;
}
.our-location h5{
  font-size: 15px;
}
.our-location address {
  font-size: 15px;
}
.our-location i {
  font-size: 27px;
  margin-right: 15px;
}
.our-location {
  max-width: 100%;
}
.features-content h4 {
  font-size: 14px;
}
.home-features {
  align-items: flex-start;
}
.cart_icon {
  height: 24px;
}
.ccc {
  gap: 1px;
}

.line_ul {
  padding: 0;
}
.counter-quantity {
  left: 19px;
}
.custom-tabs-container{
  margin-bottom: 20px;
}
#account-register {
  padding-top: 30px;
  padding-bottom: 30px;
}
#account-login .well {
  max-width: 50%;
  padding: 30px 40px;
}
.new_login_card {
  max-width: 50%;
}
.region-box {
  padding: 20px 40px 40px 40px;
}
.region-box h2 {
  font-size: 17px;
}
.o_r_c p {
  font-size: 13px;
  left: 33%;
}
.log_otp {
  margin-top: 25px;
}
.log_otp a {
  font-size: 15px;
}
.hire-line-login {
  max-width: 50%;
}
.o_r_l p {
  left: 36%;
  font-size: 13px;
}
.new-electrihub {
  max-width: 50%;
}
.registration_bg {
  max-width: 85%;
}
.register-features h2 {
  font-size: 22px;
}
.register-features p {
  font-size: 14px;
  line-height: 21px;
}
.custom-register {
  padding: 30px;
}
.login-logo {
  padding-bottom: 15px;
}
.custom-tabs .tab a {
  padding: 10px 10px;
  font-size: 12px;
}
.register-header h4 {
  font-size: 14px;
}
.g_button {
  margin-top: 20px;
  padding: 10px;
}
.g_button span {
  font-size: 14px;
  margin: 2px 0 0 10px;
}
.form-control {
  height: 40px;
}
 #searchResult2 .form-control {
    height: 30px;
  }
.contact-form form label {
  margin: 0 0 5px;
  font-size: 14px;
}
.input-qty .qty {
  padding: 5px 5px 5px 0;
}
#searchResult2 .input-group .form-control[name^="quantity"] {
  min-width: 40px;
}
#top {
  font-size: 12px;
  padding: 12px 0;
}
.r_form_icon i {
  font-size: 18px;
}
.r_form_icon img {
  width: 22px;
}
.form-group {
  margin-bottom: 10px;
}
.g_button img{
  height: 25px;
}
.get-content h4 {
  font-size: 36px;
  line-height: 45px;
}
.request-form p {
  font-size: 14px;
}
.company_card_header h4 {
  font-size: 13px;
}
.company_card_header {
  padding: 12px 15px;
}
.company_card_footer {
  padding: 15px;
}
.company_card_footer p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.registration_bg11 .form-control {
  font-size: 14px !important;
}
.cat-specific {
  font-size: 13px;
  margin-top: 0px;
  line-height: 20px;
}
.canada-caption h3 {
  font-size: 18px;
}
.canada-caption p {
  font-size: 13px;
  line-height: 24px;
}
.blog-caption {
  padding: 15px;
  min-height: 311px;
}
.blog-caption h4 {
  font-size: 14px;
  line-height: 22px;
}
.blog-caption p {
  margin-top: 9px;
}
.blog-caption a {
  font-size: 13px;
}
.about-electihub h2 {
  font-size: 20px;
  line-height: 30px;
}

.about-electihub {
  padding: 20px;
  margin-top: 30px;
}
.best-product h3 {
  padding: 20px 0px 20px 0px;
}
.company_card_footer a {
  font-size: 13px;
}
  .user-icon p {
    font-size: 12px;
  }

  .p_title {
    font-size: 16px !important;
    line-height: 24px;
}
.technical-form h3, .description-form h3, .specification-form h3 {
  font-size: 20px;
}
.shipping-coupon h4 {
  font-size: 14px;
  line-height: 23px;
}
.faq-accordion1 .panel-default i {
  left: 90%;
  font-size: 13px;
}
  .faq-accordion2 .panel-default i {
    left: 85%;
    padding-top: 2px;
  }
  .custom-menu .dropdown-menu {
    margin-top: 0px;
  }
  .user-icon a {
    font-size: 12px;
  }
  .nav_currency .dropdown-menu {
  min-width: 196px;
}
  .user-icon h5 {
    font-size: 12px;
    padding: 12px;
  }
  .user-icon i {
    font-size: 15px;
    padding: 10px 12px;
    margin-right: 5px;
    height: 36px;
    width: 36px;
  }
  .info-menu {
    font-size: 12px !important;
    padding: 9px!important;
}
.fbt-product-card {
  flex: 0 0 calc(25% - 24px);
}
  .use-coupon {
    padding: 20px 12px 0 12px;
    width: 38%;
  }
  .shipping-coupon p{
    font-size: 11px;
  }
  .tc_apply h4 {
  font-size: 15px;
}

.call-inq a {
  font-size: 17px;
}
.offer-card .card-header {
  padding: 33px 15px;
}
.call-inq {
  font-size: 14px;
  margin: 45px 0;
}

  .acb-image img {
    width: 40px;
  }
  .acb-text h4 {
    font-size: 14px;
    line-height: 24px;
  }
  .acb-box {
    margin-bottom: 20px;
    min-height: 80px;
  }

  .dropdown-menu.columns-3 {
    min-width: 880px;
    left: 260px;
    margin-top: 3px;
  }
}
@media (min-width: 1366px) and (max-width: 1600px) {
.container {
  width: 1350px !important;
}
.cat_img p{
  min-height: 57px;
}
.blog-caption h4{
  min-height: 75px;
}
.qty-box .btn {
  padding: 6.5px 12px !important;
}
#checkout-cart .cart-header .col-sm-6{
  width: 57%;
}
#checkout-cart .cart-header .col-sm-2{
  width: 18%;
}
#checkout-cart .cart-header .col-sm-4{
  width: 20%;
}
.custom-brand-img {
    margin-top: 20px;
}
.product-img {
  width: 85px;
}
.custom-cart-container .col-md-2 {
  width: 14%;
}
.custom-cart-container .col-md-3 {
  width: 50%;
}
.custom-cart-container .col-md-4 {
  width: 17%;
}
.custom-cart-container .col-md-5 {
  width: 28%;
}
.item-price {
  justify-content: space-around;r;
}
.item-description .ref {
  font-size: 12px;
  margin-bottom: 3px;
}
.item-description .name {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 15px;
}
.qty-box input.form-control {
  width: 50px;
}
.item-price .price {
  font-size: 15px;
  font-weight: 600;
}
.btn-remove span {
  font-size: 18px;
}
.btn-remove {
  padding: 0px 7px !important;
}
.item-price .discount {
  font-size: 12px;
}
.cart-header {
  font-size: 15px;
  padding: 12px 20px;
}
.summery_header{
  padding: 12px 20px;
}
.summery_header h3{
  font-size: 15px;
  margin: 3px 0;
}
.cart-footer {
  padding: 15px;
  text-align: right;
  margin-bottom: 0px;
}
.cart-footer a {
  width: unset;
}
.custom-coupon-button {
  font-size: 14px !important;
  padding: 9px 15px !important;
}
.cart-title {
  align-items: center;
  padding-bottom: 10px;
}
#checkout-cart h1 {
  font-size: 20px;
}
#checkout-cart #input-coupon {
  height: 40px;
  font-size: 13px;
}
.fare-label {
  font-size: 14px;
}
.fare-amount {
  font-size: 14px;
}
.fare-break {
  padding: 6px 0;
}
.secure-checkout {
  padding: 12px 0;
}
.secure-checkout a {
  font-size: 15px !important;
}
.or-line {
  margin: 30px 0 20px 0;
}
.s_cart_btn button {
  font-size: 15px !important;
}
.summery_body {
  padding: 20px;
}
.coupon-label {
  font-size: 16px;
  margin-bottom: 10px;
}
.custom-cart-container {
  padding: 10px 20px;
  max-height: 375px;
}
.custom-confirmation h1 {
  font-size: 36px;
  line-height: 44px;
  margin-top: 25px;
}
.custom-confirmation p {
  padding-bottom: 10px;
}
.custom-confirmation {
  max-width: 60%;
}
  .header-middle .col-lg-5{
    width: 35%;
  }
  .header-middle .col-lg-4{
    width: 40%;
  }
  .category-image-wrapper {
  width: 180px;
  height: 180px;
}
.category-image-wrapper img {
  width: 100px;
  height: 100px;
}
.subcategory-list li a {
  font-size: 13px;
}
.subcategory-list li {
  line-height: 26px;
}
.subcategory-list {
  padding-left: 10px;
}
.category-title {
  margin-top: 15px;
  font-size: 15px;
  line-height: 22px;
}
.category-flex-wrapper {
  gap: 20px;
}
.category-card {
  width: 203px;
}
.quotation-section .col-lg-8{
  width: 72%;
}
.request-form {
  padding: 20px 30px;
}
.request-form .form-group {
  margin-bottom: 11px;
}
.quotation-section .col-lg-4{
  width: 28%;
}
.request-form form{
  padding: 0;
}
.clearance_discount {
  padding: 11px;
  font-size: 13px;
}
.call_icon a {
  font-size: 13px;
}
.info-menu {
    font-size: 13px !important;
    padding: 10px !important;
}
.features-image img {
  max-width: 45px;
}
.request-form form {
  padding: 0;
}
.cat_img a {
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
}
.currency_group h3 {
  font-size: 17px;
}
.currency_group h6 {
  font-size: 14px;
}
.currency_group {
  gap: 5px;
}
#top {
  font-size: 13px;
}
.currency_group h5 {
  font-size: 12px;
}
.contact-sidebar .box h3 {
  font-size: 18px;
}
.line_anchor {
  padding: 11px 15px;
  font-size: 12px;
}
.our-location p {
  font-size: 16px;
  margin-bottom: 5px;
}
.custom-tabs-container li.tab a{
  margin: 0px;
  padding: 12px 15px;
  font-size: 13px;
}
.custom-tabs-container{
  margin-bottom: 20px;
}
.custom-menu a {
  font-size: 13px;
}
.secondary-top-submenu a {
  padding: 12px 20px !important;
}
.add_t_cart button {
  font-size: 13px;
  padding: 9px;
}
.all_stock p {
  font-size: 12px;
}
.all_stock span {
  font-size: 12px;
}
.all_stock {
  gap: 4px;
}
  .use-coupon {
  width: 50%;
  padding: 8px 15px 0 15px;
}
.shipping-coupon h4 {
  font-size: 15px;
  line-height: 24px;
}
.faq-accordion1 .panel-default i {
  left: 91%;
}
.cp_parcel {
    width: 50%;
}
.offer-card .card-header {
  padding: 33px 15px;
}
}
@media (min-width: 1601px) and (max-width: 1919px) {
.container {
  width: 1550px !important;
}
.cat_img p{
  min-height: 63px;
}
.blog-caption h4{
  min-height: 75px;
}
.custom-tabs-container li.tab a {
  padding: 12px 23px;
}
.qty-box .btn {
  padding: 6.5px 12px !important;
}
.ccc {
  gap: 7px;
}
.category-image-wrapper{
  width: 200px;
  height: 200px;
}
.category-image-wrapper img{
  width: 120px;
  height: 120px;
}
.category-card {
  width: 227px;
}
.quotation-section .col-lg-8{
  width: 72%;
}
.quotation-section .col-lg-4{
  width: 28%;
}
.request-form form{
  padding: 0;
}
.cp_parcel {
    width: 50%;
}
.info-menu {
  font-size: 14px !important;
  padding: 11px 17px !important;
}
.clearance_discount {
  padding: 11px 13px;
  font-size: 13px;
}
  .columns-3 .col-sm-4 {
    padding-right: 0;
  }
  .secondary-submenu a {
    padding: 13px 25px !important;
  }
  .automation {
    padding: 11px 0 10px 0;
  }
  .brand-img {
    margin: 0px 0 20px 0;
  }
  .products-range .swiper-viewport:hover .swiper-button-next {
    right: 25px !important;
  }
  .columns-3 .row {
    margin-left: 0;
    margin-right: 0;
  }
  .padding0 .col-sm-3 {
    width: 20%;
  }
  .padding0 .col-sm-9 {
    width: 80%;
  }
  .home-menu .col-sm-3 {
    width: 20%;
  }
  .home-menu .col-sm-9 {
    width: 80%;
  }
  .custom-row .col-sm-3 {
    width: 20%;
  }
  .dropdown-menu.columns-3 {
    min-width: 910px;
    left: 354px;
  }
  .user-icon {
    margin-left: 42px;
  }
  .category-group li {
    padding: 10px 10px;
    font-size: 14px;
  }
  .scheinider-center {
    left: 670px;
  }
  .limited-time h1 {
    font-size: 60px;
    padding: 80px 140px 14px 140px;
  }
  .feel-contact {
    padding: 25px 70px 25px 0px;
  }

  .category-second li {
    width: 16%;
  }
  .get-to-know h3 {
    font-size: 36px;
    padding-top: 90px;
  }
  .get-to-know p {
    font-size: 15px;
    max-width: 80%;
    line-height: 28px;
  }
}
@media (min-width: 1920px) and (max-width: 2560px) {
.container {
    width: 1680px !important;
  }
  .custom-menu a {
  font-size: 14px;
}
.cp_parcel {
    width: 50%;
}
.info-menu {
  font-size: 14px !important;
  padding: 11px 20px !important;
}

  .columns-3 .col-sm-4 {
    padding-right: 0;
  }
  .secondary-submenu a {
    padding: 13px 25px !important;
  }
  .automation {
    padding: 11px 0 10px 0;
  }
  .brand-img {
    margin: 0px 0 20px 0;
  }
  .products-range .swiper-viewport:hover .swiper-button-next {
    right: 25px !important;
  }
  .columns-3 .row {
    margin-left: 0;
    margin-right: 0;
  }
  .padding0 .col-sm-3 {
    width: 20%;
  }
  .padding0 .col-sm-9 {
    width: 80%;
  }
  .home-menu .col-sm-3 {
    width: 20%;
  }
  .home-menu .col-sm-9 {
    width: 80%;
  }
  .custom-row .col-sm-3 {
    width: 20%;
  }
  .dropdown-menu.columns-3 {
    min-width: 910px;
    left: 384px;
  }
  .user-icon {
    margin-left: 42px;
  }
  .category-group li {
    padding: 10px 10px;
    font-size: 14px;
  }
  .scheinider-center {
    left: 670px;
  }
  .limited-time h1 {
    font-size: 60px;
    padding: 80px 140px 14px 140px;
  }
  .feel-contact {
    padding: 25px 70px 25px 0px;
  }

  .category-second li {
    width: 16%;
  }
  .get-to-know h3 {
    font-size: 36px;
    padding-top: 90px;
  }
  .get-to-know p {
    font-size: 15px;
    max-width: 80%;
    line-height: 28px;
  }
}

@supports (-webkit-touch-callout: none) {
  .custom-coupon-input {
    font-size: 14px !important;
    border: none;
    border-radius: 4px !important;
    padding: 22px !important;
    box-shadow: 0px 2px 4px #b5b5b5 !important;
    -webkit-appearance: none;
    -webkit-box-shadow: 0px 2px 4px #b5b5b5 !important;
  }
}