/* universal css */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@400;500;600&display=swap');

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
}

/* ROOT FONT STYLES */

* {
  font-family: 'Roboto', Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/* TYPOGRAPHY */

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.3;
}

.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-bold {
  font-weight: 700;
}
.semibold {
  font-weight: 500;
}


/* POSITIONING */

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.text-justify {
  text-align: justify;
}

.float-left {
  float: left;
}
.float-right {
  float: right;
}

.clear-both {
  clear: both;
}

.text-uppercase {
  text-transform: uppercase;
}
.text-muted {
  color: #869ab8 !important;
}
.fw-bold {
  font-weight: 600 !important;
}
.text-reset {
  color: inherit !important;
}
.justify-content-center {
  justify-content: center !important;
}

.display-2 {
  font-size: 3.8125rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.lead {
  font-size: 1.3125rem;
  font-weight: 400;
}

.text-white {
  color: #fff !important;
}
.text-primary {
  color: #6c8aec !important;
}
.text-success {
  color: #42ba96 !important;
}
.fs-lg {
  font-size: 1.1875rem !important;
}
.fs-sm {
  font-size: .9375rem !important;
}

/* all margin settings */
.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-6 {
  margin-bottom: 2rem !important;
}

.pt-md-11 {
  padding-top: 6rem !important;
}

.ms-4 {
  margin-left: 1rem !important;
}

.me-auto {
  margin-right: auto !important;
}

/* buttons */

.btn {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .375rem;
  color: #161c2d;
  cursor: pointer;
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.6;
  padding: .8125rem 1.25rem;
  text-align: center;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: middle;
}

.btn-primary {
  background-color: #335eea !important;
  border-color: #335eea;
  box-shadow: 0 0;
  color: #fff;
}

.lift {
  transition: box-shadow .25s ease, transform .25s ease;
}

/* badge */
.badge {
  border-radius: .375rem;
  color: #fff;
  display: inline-block;
  font-size: .75em;
  font-weight: 600;
  line-height: 1;
  padding: .25rem .75rem;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
}

.badge.bg-primary-desat-soft {
  background-color: rgba(108, 138, 236, .1);
  color: #6c8aec !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.badge.bg-success-soft {
  background-color: rgba(66, 186, 150, .1);
  color: #42ba96 !important;
}

.badge-rounded-circle {
  border-radius: 50rem;
  height: calc(1em + 0.5rem);
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}


/* grid css */

.container { width: 100%; margin-left: auto; margin-right: auto; }
.container-fluid { width: 96%; margin-left: auto; margin-right: auto; }
.row {position: relative;  width: 100%; }
.row::after { content: ""; display: table; clear: both; }
.row [class^="col"] { float: left; min-height: 0.125rem; }
.col-1-sm {width: 8.33%;}
.col-2-sm {width: 16.66%;}
.col-3-sm {width: 25%;}
.col-4-sm {width: 33.33%;}
.col-5-sm {width: 41.66%;}
.col-6-sm {width: 50%;}
.col-7-sm {width: 58.33%;}
.col-8-sm {width: 66.66%;}
.col-9-sm {width: 75%;}
.col-10-sm {width: 83.33%;}
.col-11-sm {width: 91.66%;}
.col-12-sm {width: 100%;}
.hidden-in-sm {display: none;}

@media only screen and (min-width: 48em) {  /* 768px */
	.col-1-tb {width: 8.33%;}
	.col-2-tb {width: 16.66%;}
	.col-3-tb {width: 25%;}
	.col-4-tb {width: 33.33%;}
	.col-5-tb {width: 41.66%;}
	.col-6-tb {width: 50%;}
	.col-7-tb {width: 58.33%;}
	.col-8-tb {width: 66.66%;}
	.col-9-tb {width: 75%;}
	.col-10-tb {width: 83.33%;}
	.col-11-tb {width: 91.66%;}
	.col-12-tb {width: 100%;}
	.hidden-in-sm {display: block;}
}

@media only screen and (min-width: 60em) { /* 960px */
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-4 {width: 33.33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 50%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;}
	.col-13 {width: 10%;}
	.col-14 {width: 80%;}
	.hidden-in-sm {display: block;}
}

/* header css */
.showonlysm {
    display: block;
}
.navbar {
    background-color: #111;
    padding: 0 32px 4px;
    position: fixed;
    display: flex;
    float: none;
    flex-flow: row;
    /* min-height: 60px; */
    top: 0;
    z-index: 10000;
    width: 100%;
}
.nav-left {
    display: flex;
    flex-flow: row nowrap;
}
.logo {
    padding: 10px 0 0;
}
.logo img {
    height: 56px;
}
.hamburger {
    color: #fff;
    font-size: 24px;
}
.logo {
    padding: 10px 0 0;
}
.logo a {
    font-size: 30px;
    text-transform: capitalize;
    color: #0c8599;
    font-weight: 600;
}
.logo img {
    height: 56px;
}
#mySidepanel {
    padding-top: 60px;
}
.sidepanel {
    width: 0;
    position: fixed;
    z-index: 1;
    height: 100vh;
    /* top: 54px; */
    left: 0;
    background-color: #232f3e;
    overflow-x: hidden;
    transition: 0.5s;
    /* padding-top: 60px; */
}
.sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    border: none;
}
.sidepanel a {
    padding: 12px 8px 12px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid #b8b8b8;
}
.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 27px 8px 0 8px;
    border: none;
}
.logo {
    padding: 10px 0 0;
}
.logo img {
    height: 56px;
}
.wrapper {
    max-width: 100%;
    display: flex;
}
.wrapper select {
    position: fixed;
    width: 133px;
    background-color: #e9611e;
    color: #fff;
    top: 15px;
    border-radius: 5px 0 0 5px;
    border: none;
    height: 40px;
}
.wrapper select option {
    float: left;
    min-width: 300px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    background-clip: padding-box;
    color: #000;
    height: 300px;
    overflow-y: scroll;
}
.wrapper .search-input {
    position: fixed;
    background-color: #fff;
    width: 40%;
    border-radius: 5px;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
    top: 15px;
    margin-left: 133px;
}
.search-input input {
    height: 40px;
    width: 100%;
    border-radius: 0px 5px 5px 0px;
    padding: 0 0px 0 20px !important;
    font-size: 15px;
    color: #333;
    outline: none;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #dadada;
    background-color: #fff;
    color: #888;
    font-weight: 700;
    margin-bottom: 0;
}
.search-input .autocom-box {
    padding: 0px;
    max-height: 100%;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
}
.autocom-box li {
    list-style: none;
    padding: 8px 12px;
    width: 100%;
    cursor: default;
    border-radius: 5px;
    display: none;
}
.search-input.active .autocom-box {
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}
.search-input button {
    position: absolute;
    width: 62px;
    background-color: transparent;
    border-radius: 0px 5px 5px 0px;
    top: 0;
    right: 0;
    padding: 10px;
    border: none;
    cursor: pointer;
}
.search-input.active .autocom-box li {
    display: block;
}
.account {
    display: flex;
    flex-flow: row nowrap;
    float: right;
    padding: 4px 0 0;
    align-items: center;
}
.signuser {
    display: flex;
    flex-flow: row nowrap;
    padding-top: 5px;
    margin-left: 2px;
}
#myBtn, .cart {
    display: flex;
    align-items: center;
}
.locwrp span {
    font-size: 14px;
    line-height: 18px;
}
.locwrp span i {
    color: #bbb;
}
.hidden,.hidden-sm {
    display: none;
}
.location a, .account a {
    padding: 8px 6px;
    margin: 8px 0 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    position: static;
    line-height: 32px;
    text-decoration: none;
    cursor: pointer;
}
.locwrp {
    margin-left: 2px;
    display: flex;
    flex-flow: column nowrap;
}
.locwrp span {
    font-size: 14px;
    color: #fff;
    line-height: 18px;
}
.cart span {
    color: #fff;
}
/* breadcrumb css */
.breadcrumbs {
  padding: 90px 32px 15px 0px;
  overflow-x: scroll;
  background-color: #f8fdff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2)
}
.catalogue {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.catalogue li {
  padding: 0 4px;
  cursor: pointer;
  list-style: none;
}
.catalogue li a {
  color: #042f59;
}
.categorywrp {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 0 12px;
}
.categorywrp small {
  padding: 4px 0 0 0;
  font-size: 14px;
}
/* Slider css */
#carousel {
  height: auto;
  padding: 0 0px;
}
.slideshow-container {
  position: relative;
  margin: auto;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
.fade img {
  vertical-align: middle;
  height: 20rem;
  width: 100%;
  background-size: contain;
}
.mySlides img, .column img {
  vertical-align: middle;
}
.mySlides {
  display: none;
}
div.mySlides img {
  width: 100%;
  height: 12rem;
}
.slideshow-container .prev, .slideshow-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: orangered;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(250, 250, 250, 0.5);
}
.slideshow-container .prev:hover, .slideshow-container .next:hover{
  background: #fff;
}
.slideshow-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* products */
.prodlist {
  padding: 2rem 1rem;
}
.prodlist h3 {
  padding-bottom: 16px;
  margin: 0 4px 16px;
  border-bottom: 1px solid #ddd;
}
.card {
  /* max-width: 300px; */
  margin: 8px 4px;
  text-align: center;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.card h5{
  color: #232f3e;
  font-size: 20px;
}
.price {
  font-size: 16px;
  font-weight: bold;
  color: grey;
  padding: 8px 0;
}
.card button {
  border: none;
  outline: 0;
  padding: 12px;
  color: #000;
  background-color: #febd69;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}
.lightwrapper {
  padding: 1rem 1rem 3rem;
}
.descriptionsection {
  background-color: #f8fdff;
  border-top: 1px solid lightblue;
}
.dtitle {
  color: #848484;
  font-weight: 500;
  margin-top: 14px;
  padding: 14px 0;
}
.dtitle a {
  color: #565656;
  margin-left: 3px;
  font-size: 15px;
}
.dcontent .dsubtitle {
  color: #454763;
  font-size: 15px;
}
.dcontent a {
  font-size: 13px !important;
  line-height: 24px;
  color: #565656;
  font-size: 14px;
  padding: 0 4px;
  border-right: 1px solid #333;
}
/* footer start */

.footer {
  height: auto;
  padding: 2rem 0;
  background-color: #111;
}
.footer-widget {
  margin: 0;
  padding: 1rem;
}
.footer-widget h6 {
  font-size: 1rem;
  color: #fff;
}
.footer-widget p, .footer-widget i, .footer-widget address, .copyright p {
  color: #efefff;
  font-weight: 400;
}
.footer-widget p, .footer-widget address, .footer-widget ul li a {
  line-height: 32px;
  font-style: normal;
  font-size: 14px;
  color: #efefff;
}
.footer-widget ul li {
  list-style: circle;
  color: #fff;
}
.footer-widget a, .copyright a {
  color: #efefff;
  line-height: 26px;
}
.companyname {
  color: #febd69;
  font-size: 24px;
  font-family: 'Grenze Gotisch', 'cursive', helvetica;
  font-weight: 500;
}
.hlines {
  padding: 0 1rem;
}
.hline {
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background: #777;
}
.footmark {
  padding: 1rem 0;
}
.copyright p {
  font-size: 14px;
  padding: 0;
  text-align: center;
  color: #efefff;
}
.clicksearch{
  display: none !important;
}   
@media only screen and (min-width: 48em){
  .categorywrp {
    padding: 0 14px;
  }
    .mob-sm {
        display: none;
    }
    .hidden {
        display: none;
    }
    .catalogue li {
      padding: 0 6px 0;
    }
    div.mySlides img {
      width: 100%;
      height: 25rem;
  }
  .favicon {
    font-size: 2rem;
}
  .lightwrapper {
    padding: 1.5rem 1.5rem 3rem;
  }
  .footer-widget {
    margin: 0.5rem;
    padding: 1rem;
  }
  .hlines {
    padding: 0 1.5rem;
  }
}

@media only screen and (min-width: 60em){
  .hline {
    width: 97%;
  }
    .footer-widget {
      padding: 2rem 2rem 5rem;
    }
    .card {
      margin: 8px;
    }
    .mob-sm {
        display: none;
    }
    .categorywrp {
      padding: 0;
    }
    .hidden,.hidden-sm {
        display: block;
    }
    .catalogue li {
      padding: 0 28px 0;
    }
    .breadcrumbs{
      overflow-x: hidden;
    }
    div.mySlides img {
      height: 500px;
    }
    .prodlist {
      padding: 3rem 2rem;
    }
    .prodlist h3 {
      padding-bottom: 16px;
      margin: 0 8px 16px;
    }
    .lightwrapper {
      padding: 2rem 2rem 3rem;
    }
}