@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/*
.work-sans-<uniquifier> {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/
:root {
  --clr-black: 14 16 22;
  --clr-white: 255 255 255;
  --clr-darkgrey: 44 46 52;
  --clr-lightgrey: 242 242 242;
  --clr-lightblue: 239 243 246;
  --clr-green: 125 205 45;
  --clr-blue: 13 140 255;
  --clr-red: 255 51 0;
  --bdr-radius: clamp(20px, 3vw, 40px);
  --bdr-radius-lg: clamp(50px, 7vw, 100px);
  --box-shdw: 0 0 30px rgb(var(--clr-black) / 10%);
}
html {
  scroll-behavior: smooth;
  scroll-margin-top: 120px;
}
body {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: rgb(var(--clr-black));
  overflow-x: clip;
}
a,
header,
i,
button,
.btn,
#logo,
.container {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.btn i {
  font-size : 17px;
}

.btn:focus{color:rgb(var(--clr-white));}
a {
  color: rgb(var(--clr-blue));
}
a:hover {
  color: rgb(var(--clr-green));
}
/*hide necessary things due to live start*/
/* #product{display:none;} */
/*hide necessary things due to live end*/

input[name="payment_method"][value="paypal_paylater"] {
  display: none; /* Hides the input */
}

label > input[name="payment_method"][value="paypal_paylater"] {
  display: none; /* Ensures input inside label is hidden */
}

label > input[name="payment_method"][value="paypal_paylater"] + label,
input[name="payment_method"][value="paypal_paylater"] ~ * {
  display: none; /* Hides sibling content if exists */
}

label:has(input[name="payment_method"][value="paypal_paylater"]) {
  display: none; /* Hides the entire label */
}
#cart.open > .btn {
  background-image: none;
  background-color: #0000!important;
  border: 1px solid #000!important;
  color: #fff!important;
  box-shadow: none;
  text-shadow: none;
}

#content {
  min-height: inherit;
  padding-bottom: clamp(30px, 5.5vw, 80px);
  padding-top: clamp(30px, 0.5vw, 80px);
}
#common-home #content {
  padding-top: 0;
  padding-bottom: 0;
}
#content > h1 {
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 20px;
  display: none;
}
.align-items-center{display: flex;
  align-items: center;}
/*----header start------*/

header {
  background: rgb(var(--clr-darkgrey));
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 0 20px rgb(var(--clr-black) / 10%);
}
.common-home header {
  background: transparent;
}
header.shrink {
  background: rgb(var(--clr-darkgrey));
}
header > .container, header > .container-fluid {
  padding-block: 10px;
}
header.shrink > .container {
  padding-block: 10px;
}

#top {
  background: rgb(var(--clr-black));
  color: rgb(var(--clr-white));
  line-height: 34px;
  min-height: inherit;
  font-size: 14px;
  padding: 0;
  border: 0;
  margin-bottom: 0px;
}
#top i {
  margin-right: 5px;
  font-size: 17px;
  vertical-align: middle;
}
#logo {
  max-width: 45px;
  margin-bottom: 0;
}
header.shrink #logo {
  max-width: 30px;
    
}

/*----header end------*/

/*----other custom style start------*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  color: inherit;
  margin-bottom: clamp(15px, 3vw, 30px);
  font-weight: 400;
  line-height: normal;
}
h1,
.h1 {
  font-size: clamp(36px, 3.5vw, 48px);
}
h2,
.h2 {
  font-size: clamp(30px, 3.5vw, 36px);
}
h3,
.h3 {
  font-size: clamp(24px, 3.5vw, 30px);
}
h4,
.h4 {
  font-size: clamp(18px, 3.5vw, 24px);
}
h5,
.h5 {
  font-size: clamp(14px, 3.5vw, 18px);
}

.banner {
  background: url("../image/banner.jpg") no-repeat center center;
  background-size: cover;
  margin-top: -104px;
padding-block: 80px;
}
.inner-banner{
/*  background: url("../image/tor11.jpg") no-repeat center center;*/
  background: url("../image/innerbanner-new.png") no-repeat center center;
  background-size: cover;
  margin-top: -90px;
  padding-top: 80px;
}
.shadow.listli {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
}


/* Target the scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 50px; /* Width of the scrollbar */
  height: 50px; /* Height of the scrollbar (for horizontal scrollbars) */
}

/* Style the track (the area where the thumb scrolls) */
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background color of the track */
  /* Rounded corners */
}

/* Style the thumb (the draggable part of the scrollbar) */
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgb(var(--clr-blue) );
  background: url(../image/captiontop.png) no-repeat left center;
  border: 10px solid #f1f1f1;
  height: 30px;
}


.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}























.banner .caption > * {
  color: rgb(var(--clr-white));
}
.inner-banner .caption > * {
  color: rgb(var(--clr-white));
}
#pdfform_success{ color: rgb(var(--clr-green));}
.banner .caption {
  position: relative;
  margin-top: 30px;
}
.inner-banner .caption {
  position: relative;
  margin-top: 30px;
}
.banner .caption:before {
  content: "";
  background: url(../image/captiontop.png) no-repeat left center;
  background-size: contain;
  display: block;
  height: 130px;
  margin-bottom: 30px;
}
.inner-banner .caption:before {
  content: "";
  background:none;
  background-size: transparent;
  display: block;
  height: 130px;
  margin-bottom: 30px;
}
.banner .caption:after {
  content: "";
  background: url("../image/captionbottom.png") no-repeat left center;
  background-size: contain;
  display: block;
  height: 63px;
  margin-top: 30px;
}
.inner-banner .caption:after {
  content: "";
  background: transparent;
  background-size: contain;
  display: block;
  height: 63px;
  margin-top: 30px;
}
.banner h1 {
  font-size: clamp(24px, 5.5vw, 80px);
  margin: 0;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.banner .btn {
  position: relative;
  margin-top: -24px;
  margin-left: 170px;
}
.boxpic {
  margin-top: 30px;
  margin-bottom: -60px;
  margin-left: auto;
  margin-right: 30px;
}
.information-information-7 .form-control{
  background: transparent;
  border-bottom: ;
  border-bottom: soli;
  border: 0;
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  box-shadow: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
}
section,
.section {
  padding-top: clamp(30px, 5.5vw, 80px);
  padding-bottom: clamp(30px, 5.5vw, 80px);
}
section h1:nth-of-type(1),
section h2:nth-of-type(1),
section h3:nth-of-type(1) {
  margin-top: 0;
}
.sec-gap-sm {
  padding-top: clamp(20px, 5.5vw, 50px);
  padding-bottom: clamp(20px, 5.5vw, 50px);
}

.vcenter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.my-0 {
  margin-block: 0;
}
.mb-5 {
  margin-bottom: clamp(30px, 4.5vw, 40px);
}
.mb-3 {
  margin-bottom: clamp(20px, 4.5vw, 30px);
}
.mb-2 {
  margin-bottom: clamp(10px, 4.5vw, 20px);
}
.mb-0 {
  margin-bottom: 0;
}
.mt-0 {
  margin-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}
.pt-0 {
  padding-top: 0;
}

.fw-bold {
  font-weight: 700;
}

.w-100 {
  width: 100%;
}

.hamburger .bar {
  width: 30px;
  height: 2px;
  background-color: rgb(var(--clr-white));
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger.is-active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .bar:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -o-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.hamburger.is-active .bar:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -o-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

p:last-of-type + * {
  margin-top: clamp(30px, 4.5vw, 40px);
}

.rounded {
  border-radius: var(--bdr-radius);
}
.rounded-lg {
  border-radius: var(--bdr-radius-lg);
}

.rounded-topleft {
  border-top-left-radius: var(--bdr-radius);
  border-radius: 0;
}
.rounded.rounded-topleft {
  border-top-left-radius: var(--bdr-radius);
}
.rounded-lg.rounded-topleft {
  border-top-left-radius: var(--bdr-radius-lg);
}
.rounded-topright {
  border-top-right-radius: var(--bdr-radius);
  border-radius: 0;
}
.rounded.rounded-topright {
  border-top-right-radius: var(--bdr-radius);
}
.rounded-lg.rounded-topright {
  border-top-right-radius: var(--bdr-radius-lg);
}

.shadow {
  box-shadow: var(--box-shdw);
}

.bg-lightblue {
  background-color: rgb(var(--clr-lightblue));
}
.bg-lightgrey {
  background-color: rgb(var(--clr-lightgrey));
}
.bg-dark {
  background-color: rgb(var(--clr-black));
}
.bg-success {
  background-color: rgb(var(--clr-green));
}

.bg-success input[type="radio"]{border-color: rgb(var(--clr-black))}
.bg-success input[type="radio"]::before{background-color: rgb(var(--clr-black)); box-shadow: inset 1em 1em rgb(var(--clr-black));}

.bg-lightblue-bg {
  background: rgb(var(--clr-lightblue)) url(../image/whitebg.png) no-repeat left
  90px bottom -10px;
  background-size: cover;
}
.bg-img {
  background: rgb(var(--clr-lightblue)) url(../image/Cover.webp)
  no-repeat;
  background-size: cover;
  position: relative;
}
.bg-img::before {
  position: absolute;
  content: "";
  background-color: #0d0c0c;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
}
.above-shadow {
  position: relative;
  z-index: 999999;
}
.bg-lightgrey-bg {
  background: rgb(var(--clr-lightgrey)) url("../image/blackbg.png") no-repeat
  center center;
  background-size: cover;
  position: relative;
  isolation: isolate;
}
.bg-lightgrey-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(var(--clr-lightgrey) / 80%);
  z-index: -1;
}
.bg-dark-bg {
  background: rgb(var(--clr-black)) url("../image/whitebg.png") no-repeat center
  center;
  background-size: cover;
  position: relative;
  isolation: isolate;
  color: rgb(var(--clr-white));
}
.bg-dark-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(var(--clr-black) / 90%);
  z-index: -1;
}

.bg-dark a,
.bg-dark-bg a {
  color: rgb(var(--clr-white));
}
.bg-dark a:hover,
.bg-dark-bg a:hover {
  color: rgb(var(--clr-green));
}

.logo-bg {
  position: relative;
  isolation: isolate;
  padding-left: clamp(20px, 5.5vw, 50px)!important;
}
.logo-bg:before {
  position: absolute;
  content: "";
  top: 0;
  left:0;
  background: url(../image/fortified-icon.jpg);
  background-size: contain;
  width: 308px;
  height: 304px;
  opacity: 0.5;
  z-index: -1;
}
/*
.logo-bg:before {
  position: absolute;
  content: "";
  top: 0;
  left: -80px;
  background: url(../image/fortified-icon.jpg);
  background-size: contain;
  width: 308px;
  height: 304px;
  opacity: 0.5;
  z-index: -1;
}
*/

.galleryslider {
  margin-bottom: 30px;
}
.galleryslider .slick-list {
  padding: 0 !important;
  margin-left: -20vw;
}
.galleryslider .slick-slide {
  margin-left: 30px;
}
.galleryslider .slick-slide img {
  border-radius: var(--bdr-radius);
}
.galleryslider .slick-track {
  margin: 0;
}

.full-width {
  margin-left: calc(50% - 50vw + 7.5px);
  margin-right: calc(50% - 50vw + 7.5px);
  overflow-x: clip;
}
.table > tbody > tr > td {
  vertical-align: middle;
}
/*.highlight{background: #84bad9;}*/
.highlight{background-color: #7ecd2e!important;}

.table > tbody > tr td:first-child {
  font-weight: bold;
}
.long-list {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
}
.above-shadow .long-list img{ filter: invert(1);
}
.long-list img {
  max-width: 70px !important;
}
.iconbox {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.iconbox li {
  border-radius: var(--bdr-radius);
  background-color: rgb(var(--clr-white));
  padding: clamp(20px, 3.5vw, 40px);
  box-shadow: var(--box-shdw);
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.keybox {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.keybox li {
  border-radius: var(--bdr-radius);
  background-color: rgb(var(--clr-white));
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--box-shdw);
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.keybox li:nth-of-type(1) {
  background-color: transparent;
  padding: 0;
  box-shadow: none;
}
.iconbox .iconbox-title {
  margin-bottom: 15px;
}
.iconbox p {
  flex: 1 1 auto;
}
.iconbox img {
  max-width: 70px;
  margin-bottom: 20px;
}
.keybox .keybox-title {
  margin-bottom: 15px;
}
.keybox p {
  flex: 1 1 auto;
}
/* .keybox img{max-width: 70px; margin-bottom: 20px;} */

.cardbox .card {
  text-align: left;
}
.cardbox .card .card-img {
  border-top-right-radius: var(--bdr-radius-lg);
  box-shadow: var(--box-shdw);
  width: 100%;
}
.cardbox .card .card-title {
  font-weight: 700;
  margin-top: clamp(20px, 4.5vw, 40px);
  margin-bottom: clamp(10px, 4.5vw, 20px);
}
.cardbox .card .card-desc {
  margin-bottom: 0px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.grid{display: grid; grid-template-columns: 1fr 1fr 1fr; padding-left: 0;}
.grid i{font-size: 40px;
  text-align: center;
  color: #7dcd2d;
}
.grid.keybox li:nth-of-type(1){border-radius: var(--bdr-radius);
  background-color: rgb(var(--clr-white));
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--box-shdw);
  display: flex;
  flex-flow: column;
  flex-direction: column;
  align-items: flex-start;}
.grid li{
  display: flex;
  flex-direction: column;
}
.list li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}
.list li:before,
.list-img li:before {
  font-family: "Line Awesome Free";
  display: flex;
  content: "\f00c";
  color: #000;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  left: 0;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.icon-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.icon-list img {
  max-width: 50px;
  border: 1px solid rgb(var(--clr-black) / 20%);
  border-radius: 10px;
  margin-right: 10px;
  padding: 8px;
}

.call {
  font-size: clamp(36px, 3.5vw, 50px);
  font-weight: 700;
  color: rgb(var(--clr-black));
  margin-bottom: 30px;
  display: block;
}

.compare-box table td:before {
  font-family: "Line Awesome Free";
  content: "\f00c";
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
}
.information-information-8 > p    {
  display: none;
}
/* .compare-box .panel-title{line-height: 44px;} */

.information-information-7 #content{padding-top:0!important;}
/* .information-information-9 .list-inline,.information-information-10 .list-inline  {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
  text-align: center;
  gap: 50px;
  display: flex;
  justify-content: space-between;
} */
.information-information-9 .list-inline ,.information-information-10 .list-inline{
  padding-left: 0;
  margin-left: 0px;
  list-style: none;
  text-align: center;
  gap: 20px;
  display: block;

}
/*.information-information-9  .btn ,.information-information-10  .btn{margin-bottom: 10px;}*/
/* table start */


/*
.table {
    background-color: #ffffff;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0px 0px 5px 11px rgba(0,0,0,0.03);
    -moz-box-shadow: 0px 0px 5px 11px rgba(0,0,0,0.03);
    box-shadow: 0px 0px 5px 11px rgba(0,0,0,0.03);
}

.table>thead>tr>th{
  padding: 20px;
  vertical-align: middle;
}
.table > thead > tr {
  background-color: #00649c;
  color: #fff;
}
.table-green >thead >tr{
  background-color: #7dcd2d;
  color:#fff;
}
.table>tbody>tr:nth-child(odd) {
  background-color: #dbe9f1!important;
}
.table-green>tbody>tr:nth-child(odd) {
  background-color: #e9eee4!important;
}
.table>tbody>tr:nth-child(even) {
  background-color: #ffffff!important;
}
*/
.table-primary.table>thead>tr>th, .table-primary.table>tbody>tr>td:first-child{ background-color: #72c7f5;}

.table>tbody>tr:nth-child(odd) {background-color: #f3f4f4!important;}
.table>tbody>tr>td{border-color: #000;}
.table>thead>tr>th{border-color: #000000;}

.table-green>thead>tr>th, .table-green>tbody>tr>td:first-child{ background-color: #7dcd2d!important;}
/*.table>tbody>tr>td:first-child, .table>thead>tr>th:first-child{position: sticky; left: 0;}*/

.hstack{display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;}
.hstack>*{flex: 0 0 min(50%, 285px);}


/* table end */
/*
.faq-accordion  .panel-title > a{
  inset: auto!important;
}
*/

.faqbanner img{display:inline-block; margin-top:-680px; width: 100%;}
.information-information-8{position:relative;}
.information-information-8 #wrapper{display: flex;gap: 20px;max-width: 950px;}
.information-information-8 #wrapper div{flex: 1 1 50%;}
/*.information-information-8::after{position: absolute; content:''; width:100%; height:100%; background: url(../image/ecoteam.png) no-repeat; background-position:bottom; background-size:contain; bottom:0;}*/

/*
.information-information-8 .faq-accordion .panel-group {max-width:950px; display:flex;flex-wrap: wrap; gap:20px;}
.information-information-8 .faq-accordion .panel-group .panel {width:45%;}
*/

.faq-accordion  .panel-title > a i::before{position: relative!important;}
.faq-accordion .panel-group .panel{margin-bottom: 0;}
.compare-box .panel.panel-default {
  box-shadow: 0 0 50px rgb(var(--clr-darkgrey) / 10%);
}

.compare-box .panel.panel-primary {
  box-shadow: 0 0 50px rgb(var(--clr-blue) / 10%);
}
.compare-box .panel.panel-success {
  box-shadow: 0 0 50px rgb(var(--clr-green) / 10%);
}

.compare-box .panel-default table td:before {
  color: rgb(var(--clr-darkgrey));
}
.compare-box .panel-primary table td:before {
  color: rgb(var(--clr-blue));
}
.compare-box .panel-success table td:before {
  color: rgb(var(--clr-green));
}

.social-icon a {
  display: inline-block;
  font-size: 24px;
  color: rgb(var(--clr-green));
}

#sec-contact {
  scroll-margin-top: 130px;
}
.contact-box {
  padding: clamp(15px, 5vw, 50px);
  text-align: left;
  position: relative;
  isolation: isolate;
}
.contact-box:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../image/epu-logo-icon.png") no-repeat top left;
  background-size: 170px;
  z-index: -1;
  opacity: 0.06;
}



footer {
  background: rgb(var(--clr-black));
  margin-top: 0;
  padding-bottom: 20px;
  padding-top: 0;
}
footer h5 {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}
footer p {
  margin-bottom: 10px !important;
}
footer hr {
  border-color: rgb(var(--clr-white) / 20%);
  margin-top: 0;
}
footer a {
  color: rgb(var(--clr-white));
}
footer a:hover {
  color: rgb(var(--clr-green));
}
footer .copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .f-logo {
  max-width: 50px;
}

/*----other custom style end------*/

/*------Nav start------*/

.nav-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-header .navbar-nav {
  float: right;
}
.navbar {
  margin: 0;
  background: transparent;
  border: 0;
  width: 100%;
  min-height: inherit;
  text-transform: uppercase;
  font-size: 13px;
}

.navbar .navbar-nav > li > a {
  color: rgb(var(--clr-white));
  border: 0;
}
.log{list-style: none;}
.custom-layout {
  background: rgb(var(--clr-white));
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.custom-col-left {
  padding: 0;
  display: none !important;
}
.custom-layout > [class*="col-"] {
  display: flex;
  flex-direction: column;
}
#top .dropdown{list-style: none;}
#top .dropdown-menu a{color:#000;}
.navbar .navbar-nav > li > a:focus,
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li.active > a {
  color: rgb(var(--clr-blue));
  background: transparent;
}
.navbar-toggle {
  float: left;
  margin: 0;
  padding: 0;
}
.navbar-toggle * {
  background: rgb(var(--clr-black));
}
.dropdown-menu {
  border: 0;
  border-radius: 0;
}
.dropdown-menu li > a {
  color: rgb(var(--clr-white));
  padding: 8px 15px;
}

.dropdown-menu li > a:hover {
  text-decoration: none;
  color: rgb(var(--clr-green));
  background: transparent;
}
.dropdown-menu {
  background: rgb(var(--clr-white));
  color: rgb(var(--clr-black));
  background-clip: padding-box;
}
/*------Nav end------*/

/*------Panel card start------*/
.panel-group .panel + .panel {
  margin-top: -1px;
}
.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-group .panel-heading + .panel-collapse > .panel-body {
  border: 0;
}
.panel-group .panel {
  border: 0;
  box-shadow: none;
  margin-bottom: 15px;
}

.panel-heading {
  padding-block: 0;
}

.panel-title {
  /*
    text-transform: uppercase;
    padding: 15px;
  */
  height: 44px;
  font-weight: 600;
  display: flex;
  align-items: center;

}
.panel-title > a {
  /* inset: 15px; */
  text-decoration: none;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  inset: 0;
  padding-inline: 10px;
}
.panel-title > a i:before {
  content: "\f105";
  font-family: "Line Awesome Free" !important;
  font-weight: 700;
  /* position: absolute; */
  /* font-size: 18px; */
  /* line-height: 22px; */
  /* right: 0; */
  /* top: calc(50% - 10px); */
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
/*.panel-title > a:hover, .panel-title > a.active{color:#fff; background: #00659d;}*/
.panel-default > .panel-heading a:hover{color:#fff; background: #00659d;}
.panel-title.active a{color:#fff; background: #00659d;}

.panel-title > a.collapsed i:before {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.panel-heading {
  position: relative;
  cursor: pointer;
}

/*
.panel-body, .panel-heading {
    padding-right: 0;
    padding-left: 0;
}
*/
.panel {
  border-radius: 5px;
  box-shadow: none;
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.panel-default {
  border-color: #dddddd;
}
.panel-body {
  /* padding: 2vw; */
}
.panel-body p:last-of-type {
  margin-bottom: 10px;
}

.panel:hover:before,
.panel:hover:after {
  transform: scale(1);
}
.panel-default {
  border-color: rgb(var(--clr-darkgrey));
}
.panel-default > .panel-heading {
  color: rgb(var(--clr-white));
  background-color: rgb(var(--clr-darkgrey));
  border-color: rgb(var(--clr-darkgrey));
}
.panel-primary {
  border-color: rgb(var(--clr-blue));
}
.panel-primary > .panel-heading {
  color: rgb(var(--clr-white));
  background-color: rgb(var(--clr-blue));
  border-color: rgb(var(--clr-blue));
}
.panel-success {
  border-color: rgb(var(--clr-green));
}
.panel-success > .panel-heading {
  color: rgb(var(--clr-white));
  background-color: rgb(var(--clr-green));
  border-color: rgb(var(--clr-green));
}

/*------Panel card end------*/

/*----bootstrap style overlaping start------*/

.text-success {
  color: rgb(var(--clr-green));
}
.text-white{
  color: rgb(var(--clr-white));
}
.text-danger,
.error {
  color: rgb(var(--clr-red));
}
.text-primary {
  color: rgb(var(--clr-blue));
}

.text-sm {
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 20px;
}

.alert {
  padding: 5px 15px;
  padding-right: 30px;
  color: rgb(var(--clr-black));
}
.alert-dismissable .close,
.alert-dismissible .close {
  top: 1px;
}
.alert a {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-skip-ink: none;
}

.alert-success {
  background-color: rgb(var(--clr-green) / 10%);
  border-color: rgb(var(--clr-green) / 30%);
}
.alert-success a {
  color: rgb(var(--clr-green));
  text-decoration-color: rgb(var(--clr-green));
}
.alert-success a:hover {
  box-shadow: 0px 1px 0px var(--clr-success);
}

.alert-danger {
  background-color: rgb(var(--clr-red) / 10%);
  border-color: rgb(var(--clr-red) / 30%);
}
.alert-danger a {
  color: rgb(var(--clr-red));
  text-decoration-color: rgb(var(--clr-red));
}
.alert-danger a:hover {
  box-shadow: 0px 1px 0px var(--clr-danger);
}

.alert-primary {
  background-color: rgb(var(--clr-blue) / 10%);
  border-color: rgb(var(--clr-blue) / 30%);
}
.alert-primary a {
  color: rgb(var(--clr-blue));
  text-decoration-color: rgb(var(--clr-blue));
}
.alert-primary a:hover {
  box-shadow: 0px 1px 0px var(--clr-danger);
}

/*----bootstrap style overlaping end------*/

/*------Nav-tab start------*/
.nav-tabs {
  margin-bottom: 20px;
  text-align: center;
}
.nav-tabs > li > a {
  color: rgb(var(--clr-black));
  border: 0;
  text-transform: uppercase;
  padding-block: 15px;
  font-size: 16px;
  font-weight: 700;
}
.nav-tabs > li > a:focus,
.nav-tabs > li > a:hover {
  color: rgb(var(--clr-blue));
  border-color: rgb(var(--clr-blue));
  background-color: transparent;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  border: 0;
  color: rgb(var(--clr-blue));
  box-shadow: inset 0 -3px rgb(var(--clr-blue));
  background-color: transparent;
  outline: none;
}

/*------Nav-tab end------*/

/*----input style start------*/

.btn {
  font-size: 14px;
  padding-block: 11.1px;
  padding-inline: 20px;
  text-transform: uppercase;
  border-radius: 5px;
  letter-spacing: 1px;
  text-shadow: none;
  box-shadow: none;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
}

.btn-success {
  background: rgb(var(--clr-green));
  border-color: rgb(var(--clr-green));
  color: rgb(var(--clr-white));
}
.btn-success:hover {
  background: rgb(var(--clr-black));
  border-color: rgb(var(--clr-black));
}

.btn-primary,
.btn-primary.focus,
.btn-primary:focus {
  background: rgb(var(--clr-blue));
  border-color: rgb(var(--clr-blue));
  color: rgb(var(--clr-white));
}
.btn-primary:hover,
.btn-primary.active,
.btn-primary:active {
  background: rgb(var(--clr-black));
  border-color: rgb(var(--clr-black));
}

.btn-buynow,
.btn-buynow.focus,
.btn-buynow:focus {
       background-color: white; 
       color: black; 
       border: 1px solid black; 
       padding: 11px 23px; 
       text-align: center; 
       text-decoration: none; 
       border-radius: 5px; 
       display: inline-block;
}

.btn-buynow:hover,
.btn-buynow.active,
.btn-buynow:active {
  background: rgb(var(--clr-black));
  border-color: rgb(var(--clr-black));
  color: white; /* Added this line to change text color */
}

.btn-default {
  border-color: rgb(var(--clr-black));
  background: transparent;
  color: rgb(var(--clr-black));
}
.btn-default:hover {
  border-color: rgb(var(--clr-blue));
  background: rgb(var(--clr-blue));
  color: rgb(var(--clr-white));
}
.btn-default[disabled], .btn-default[disabled]:hover{color: rgb(var(--clr-black) / 30%); border-color: rgb(var(--clr-black) / 30%);}
.btn-danger {
  border-color: rgb(var(--clr-red));
  background: rgb(var(--clr-red));
  color: rgb(var(--clr-white));
}
.btn-danger:hover {
  border-color: rgb(var(--clr-black));
  background: rgb(var(--clr-black));
  color: rgb(var(--clr-white));
}

.btn-dark {
  border-color: rgb(var(--clr-black));
  background: rgb(var(--clr-black));
  color: rgb(var(--clr-white));
}
.btn-dark:hover {
  border-color: rgb(var(--clr-black) / 80%);
  background: rgb(var(--clr-black) / 80%);
  color: rgb(var(--clr-white));
}

.btn-lg {
  font-size: 18px;
  padding-inline: 30px;
  padding-block: 12px;
  letter-spacing: 2px;
}
.btn-xs {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 3px;
}
#collapse-payment-method .radio:nth-of-type(3) {
  display: none;
}

label {
  font-size: 14px;
}
.form-control {
  height: 44px;
  font-size: 16px !important;
  color: rgb(var(--clr-black));
}
.form-control:focus {
  border-color: inherit;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
  font-size: 14px;
}

.form-floating .form-group {
  position: relative;
  margin-bottom: 25px;
}

#product .form-group{
  margin-bottom: 10px;
}
#product .form-group .btn{
  width: 100%;
}

/* .checkbox label, .radio label {
  margin-bottom: 10px!important;
} */

.paymentDetails .checkbox label, .radio label {
  margin-bottom: 0!important;
  margin-top: 0!important;
}



.smallicon i{
  font-size: 18px;
  margin-right: 4px !important;
}

.floating-label {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 11px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.form-floating .form-control,
.did-floating-select {
  display: block;
  width: 100%;
  padding-inline: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
}
.form-floating .form-control:focus,
.did-floating-select:focus {
  outline: none;
  box-shadow: none;
}
.form-floating .form-control:focus ~ .floating-label,
.did-floating-select:focus ~ .floating-label {
  top: -8px;
  font-size: 12px;
}

select.did-floating-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.did-floating-select::-ms-expand {
  display: none;
}

.form-floating .form-control:not(:placeholder-shown) ~ .floating-label {
  top: -8px;
  font-size: 13px;
}

.did-floating-select:not([value=""]):valid ~ .floating-label {
  top: -8px;
  font-size: 13px;
}

.did-floating-select[value=""]:focus ~ .floating-label {
  top: 11px;
  font-size: 13px;
}

.did-floating-select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%23003d71'/%3E%3C/svg%3E%0A");
  background-position: right 15px top 50%;
  background-repeat: no-repeat;
}

.did-error-input .form-floating .form-control,
.did-error-input .did-floating-select {
  border: 2px solid #9d3b3b;
  color: #9d3b3b;
}
.did-error-input .floating-label {
  font-weight: 600;
  color: #9d3b3b;
}
.did-error-input .did-floating-select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%239d3b3b'/%3E%3C/svg%3E%0A");
}

.input-group .form-floating .form-control {
  border-radius: 0 4px 4px 0;
  border-left: 0;
  padding-left: 0;
}

.input-group-append {
  display: flex;
  align-items: center;
  /*   margin-left:-1px; */
}

.input-group-text {
  display: flex;
  align-items: center;
  font-weight: 400;
  height: 34px;
  color: #323840;
  padding: 0 5px 0 20px;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #3d85d8;
  border-radius: 4px 0 0 4px;
  border-right: none;
}

/*------Checkbox and rdio style start ------*/
input[type="checkbox"] {
  position: relative !important;
  border: 1.5px solid rgb(var(--clr-blue));
  border-radius: 4px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: middle !important;
  height: 20px;
  width: 20px;
  -webkit-appearance: none;
  margin-top: -2px !important;
}
input[type="checkbox"]:focus {
  outline: none;
}
input[type="checkbox"]:checked {
  background-color: rgb(var(--clr-blue));
  opacity: 1;
}
input[type="checkbox"][disabled] {
  opacity: 0.2;
}
input[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
input[type="checkbox"]:checked:before {
  border-color: #ffffff;
}

input[type="radio"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  font: inherit;
  color: rgb(var(--clr-white));
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid rgb(var(--clr-blue));
  border-radius: 50%;
  position: relative;
}

input[type="radio"]::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: 22%;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em rgb(var(--clr-blue));
  /* Windows High Contrast Mode */
  background-color: rgb(var(--clr-blue));
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

input[type="radio"]:focus {
  outline: none;
  outline-offset: 0;
}

/*------Checkbox and rdio style end ------*/

/*----input style end------*/

/*----Opencart other pages start------*/

ul.breadcrumb {
  display: none;
}

.information-information-6 #content > h1,
.information-information-4 #content > h1,
.information-information-3 #content > h1 {
  display: none;
}
.information-information-18 .btn{margin-top:20px;}
.information-information-18 i{font-size:50px; color:rgb(var(--clr-green));}
#product-product .thumbnail {
  border: 0;
}
#product-product h1 {
  font-size: clamp(30px, 3.5vw, 36px);
  font-weight: 700;
}
#product-product .alert {
  position: absolute;
  right: 15px;
  top: 20px;
  z-index: 1;
}
#product-product .nav-tabs {
  margin-top: 3vw;
  margin-bottom: 3vw;
  position: sticky;
  top: 105px;
  background: #fff;
  z-index: 1;
}
#product-product .rating {
  display: none;
}
.product-thumb {
  border: 0;
  text-transform: capitalize;
  margin-bottom: 20px;
  overflow: auto;
}
.product-thumb .image {
  overflow: hidden;
  background:rgb(var(--clr-lightgrey));
  position: relative;
  border: 1px solid rgb(var(--clr-lightgrey));
  border-radius:5px;
}
.product-thumb .image {
  text-align: center;
}
.product-thumb .image a {
  display: block;
}

.product-thumb .image img {

  transition: 1.5s cubic-bezier(0,.5,.7,1);
  mix-blend-mode: multiply;
  width: auto;
  height: 300px;
  margin:10px;
}
.product-thumb button {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  min-width: 100%;
}
.product-thumb:hover button {
  top: auto;
  bottom: 0;
}
.product-thumb .caption{padding:20px 0;}
.product-thumb .price {
  color: rgb(var(--clr-dark));
  font-weight: 700;
}
.product-thumb h5 a {
  color:  rgb(var(--clr-dark));
}
#checkout-cart .img-thumbnail {
  border: 0;
}
#checkout-cart h5{margin-bottom: 15px;}
#checkout-cart table tr{position: relative;}
.inner-panel{padding: 20px;}


.l1{background: rgb(var(--clr-green));color: rgb(var(--clr-white));}
.l2{background: rgb(var(--clr-blue));color: rgb(var(--clr-white));}

.l4{background: rgb(var(--clr-red));color: rgb(var(--clr-white));}
.l5{color: rgb(var(--clr-white));
  background-color: rgb(var(--clr-darkgrey));}

.listli::before{content:''!important;}
.listli img{max-width: 70px; margin-bottom: 10px;}

/*----Opencart other pages end------*/
/* grid image start here */
.grid-wrapper > div > img {
  width: 100%;
}
.grid-wrapper {
  max-width: 990px;
  margin: 0 auto;
  display: grid;
  grid-gap: 12px;
  grid-template-columns: auto auto auto;
  grid-auto-flow: dense;
}
.grid-wrapper .rowspan2 {
  grid-row: span 2;
}
.grid-wrapper .colspan2 {
  grid-column: span 2;
  display: grid;
  gap: 12px;
  grid-template-columns: auto auto;
}

/* grid image end here */

/* modal design start here */
.modal-dialog {
  /* display: inline-block;
  text-align: left; */
  vertical-align: middle;
}
.modal-content {
  /* background: #d6f2f6; */
  border-radius: 20px;
}
.modal-content .close {
position: absolute;
    right: 3px;
    top: 5px;
    z-index: 1;
    width: 30px;
    background: #000000;
    border-radius: 50%;
    aspect-ratio: 1;
    opacity: 1;
    text-shadow: none;
    color: #fff;
}

.modal-body {
  padding: 4vw;
  font-size: 18px;
}
/*
.modal-body .btn {
  margin: 14px 0;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
}
*/

.modal-body img {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 0px;
  margin-bottom: 20px;
}
/* modal design end here */

.btn-stack{    
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}
.btn-stack .btn, .btn-stack button{min-width: 150px; }



#checkout-checkout .table > tbody > tr td:first-child{font-weight: normal;}
#checkout-checkout .table > tbody > tr > td{vertical-align: top; padding: 15px;}
#checkout-checkout .h5{ margin-top: 0;  margin-bottom: 10px; display: block;}

/* account page design */

#account-account ul, ul.custom-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 3vw, 3rem);
  margin-top: 20px;
}
ul.custom-list li a {
  background: rgb(var(--clr-green) / 20%);
}
#account-account ul li a {
  height: 100%;
  border-radius: 10px;
  display: grid;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 20px;
  color:rgb(var(--clr-black));
}

#account-account ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  transition: .5s ease all;
}
ul.custom-list li i {
  background: rgb(var(--clr-darkgrey));
  color:#fff;
}
#account-account .breadcrumb{display: none;}
/*----Responsive start------*/
.help-block {
  line-height: normal;
  font-size: 12px;
}
.account-address-add h2, .account-account h2, .account-address h2, .account-order h2{
  margin-top: 0;
  font-size: 24px;
}

.roundcart {
  display: inline-grid;
  place-content: center;
  width: 18px;
  height: 18px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  font-size: 10px;
  position: absolute;
  margin-left: -8px;
  margin-top: -5px;
}

#cart .dropdown-menu {
  min-width: auto;
  max-width: 450px;
}

.rebateclass {
  display: flex;
  align-items: center;
}

.rebateclass label {
  margin-bottom: 0;
}

@media (min-width: 1199.99px) {
  .container {
    width: 1200px;
    position: relative;
  }
  .container-fluid{
    width: 100%;
  }
  .row > [class*="col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
  .row > [class*="col-"]:first-child {
    padding-left: 15px;
  }
  .row > [class*="col-"]:last-child {
    padding-right: 15px;
  }

  .row.gutter-default > [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .row.gutter-default > [class*="col-"]:first-child {
    padding-left: 15px;
  }
  .row.gutter-default > [class*="col-"]:last-child {
    padding-right: 15px;
  }
  .row.no-gutter{margin-left: 0; margin-right: 0;}
  .row.no-gutter> [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  .row.no-gutter > [class*="col-"]:first-child {
    padding-left: 0;
  }
  .row.no-gutter > [class*="col-"]:last-child {
    padding-right: 0;
  }
  .row.equal-height {
    display: flex;
    flex-flow: wrap;
  }
  .row.equal-height>div>img {
    position: absolute;
    bottom: 10%;
    left: 0;
  }

  .calconic-element-label__collapsable{  margin-bottom: -50px;margin-top: 20px;z-index: 1; position: relative;}
  .calculatorbox{height:550px; overflow: auto;}
  .ratiobox{aspect-ratio:1/1; object-fit:cover; justify-content: center;}

  .nav-tabs > li { max-width: 200px; width: 100%; }
  .contact-truck { max-width: 630px; }
  .right-flush { max-width: calc(100% + 100px); }
}




@media (max-width: 1200px) {
  .navbar .navbar-nav > li > a { padding:5px 10px; font-size: 12px; }
}
@media (min-width: 991.99px) {
  .galleryslider { margin-bottom: -50px; }
}
@media (max-width: 992px) {
  header > .container, header.shrink > .container { padding-block: 10px; }
  #logo, header.shrink #logo { max-width: 30px; }
  .text-small-center{text-align: center!important;}

  .nav-header { gap: 8px; }

  .btn, .btn-lg { padding-inline: 15px; }
}
@media (max-width: 768px) {

  #cart-total,.roundcart {
    width: 16px;
    height: 16px;
   
    font-size: 10px;
}
  .faq-accordion .panel-title{height:60px;}
  .buy{order:1;}
  .hamburger{order:5;}
  .product-thumb .image img{margin: auto;}
  .grid{grid-template-columns: 1fr;}
  .align-items-center{flex-direction: column;}
  .hstack>* { flex: 1 1 auto;}

  .icon-list li{display: flex; font-size: 15px;}
  .icon-list{display: block;}

  #top i { font-size: 16px; }
  #logo {  margin-right: auto; }

  .navbar { position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: rgb(var(--clr-darkgrey)); }
  .navbar-nav { float: none !important; margin: 0; }
  .navbar-nav li + li { border-top: 1px solid rgb(var(--clr-white) / 10%); }
  .navbar .navbar-nav > li > a { padding: 15px 0; font-size: inherit; }

  .banner .caption { max-width: 500px; margin-inline: auto; }
  .boxpic { margin-bottom: -40px; max-width: 200px; margin-inline: auto; }
  .banner .caption:before { margin-bottom: 0; }
  .banner .caption:after { margin-top: 0; }

  .form-control { height: 42px; }
  .btn, .btn-lg { font-size: 14px; padding-block: 10px; letter-spacing: 1px; height: 42px;}

  .galleryslider .slick-slide { margin-left: 15px; }

  #product-product .nav-tabs { top: 94px; }

  footer { text-align: center; }
  footer .f-logo { margin: 0 auto; }
  footer li { display: inline-block; }
  footer li a { padding: 10px; }
  footer h5 { margin-top: 24px; }
}

@media (max-width: 575px) {
  #product .btn-success {
    width: 100%;
  }
  
  .log_radio.radio{
  text-align: left!important;
}
.checkbox label, .radio label {
  margin-bottom: 0;
}

.reviewcheckmob input {
  width: 30px;
}
  .checkoutcond h2, .checkoutcond h1{
    font-size: 20px;
  }
  
  

  .panel-group textarea {
    height : 150px;
    margin-bottom : 10px;
  }
#applicationForm label{font-size:14px!important;}
#applicationForm > div:first-of-type {
  padding-left: 5%!important;
  padding-right: 5%!important;
}
#applicationForm .btn{font-size: 13px;}

  .brochure.text-right{text-align:center!important;}
  .off{text-align:center;}
  /* iframe{height:50px !important;} */
  /*    .table>tbody>tr>td:first-child, .table>thead>tr>th:first-child{width: 150px;white-space: normal;}*/
  .faq-accordion .panel-title{height:40px;}
  .boxpic{margin-bottom:-15px;}
  .faq-accordion .panel-title a{align-items:center!important;}
  .hstack>* { flex: 1 1 100%;}
  .product-thumb .caption{min-height:10px;}
  .nav-tabs > li > a { padding-block: 15px; padding-inline: 10px; font-size: 14px; }

  .payment_sectionnew_1 iframe {
    height: inherit;
  }

  .grid-wrapper .wide { grid-column: span 1; }

  .cardbox .card { margin-bottom: 20px; }

  .faq-accordion .panel-title > a {font-size: 13px;}
  .information-information-8 .faq-accordion .panel-group .panel {width: 100%;}
  .information-information-8 .faq-accordion .panel-group br{display:none;}
  .faqbanner img{margin-top:0;}

  .information-information-8 #wrapper{display:block;}
  .information-information-8 .panel-title > a{align-items: flex-start; justify-content:space-between!important;}
}

/*----Responsive end------*/

/* Bootstrap 3 Responsive table single column slider with only next and prev button on mobile (No touch swipe)
@media (max-width: 768px) {          
    .table td, .table th { display: none; }
    .table td.active, .table th.active { display: table-cell; white-space: normal !important; }
    .mobile-nav { display: block; text-align: right; margin: 5px; }
}
@media (min-width: 769px) {
    .mobile-nav { display: none; }
}
.mobile-nav button { margin: 5px; padding: 8px 10px; }

*/

.prev-btn, .next-btn{display: none;}

@media (max-width: 768px) {
  /* Bootstrap 3 Responsive table slider with next and prev button with touch swipe on mobile */
  .table-container { position: relative; white-space: nowrap; overflow-x: scroll; -webkit-overflow-scrolling: touch; /* for smooth scroll on iOS */}
  .table-container .table { min-width: 100%; margin-bottom: 0;}
  .prev-btn, .next-btn { display: inline-block; padding: 5px 10px; margin: 10px; cursor: pointer;}
  .next-btn { float: right;}
}

.checkoutcond {
  font-size: 14px;
}

.paymentDetails.card {
  display: block;
  margin-top: 30px;
}

#payment {
  padding: 0 !important;
}

.paypal-card-container, .paypal-button-container{width: 100%!important;}
.paypal-button-row{height: 45px!important;}

#rebateForm label{display:block}
#rebateForm {
  text-align: justify;
}
