@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;1,100;1,400;1,500;1,700&display=swap");

:root {
  --color-black: hsl(0, 0%, 10%);
  --color-darks: hsl(0, 0%, 25%);
  --color-greys: hsl(0, 0%, 60%);
  --color-light: hsl(0, 0%, 95%);
  --color-white: hsl(0, 0%, 100%);
  --color-blue-100: hsl(217, 91%, 60%);
  --color-blue-200: hsl(221, 83%, 53%);
  --color-blue-300: hsl(224, 76%, 48%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-transform: unset;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.custom-right-panel .modal-fullscreen {
  width: 380px;
  max-width: none;
  height: 100%;
  margin: 0;
  right: 0;
  position: absolute;
}

.brand {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-blue-100);
}

.header {
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  margin: 0 auto;
  background-color: var(--color-white);
  box-shadow: var(--shadow-medium);
}

.navbar {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  z-index: 10;
  background-color: var(--color-white);
  box-shadow: var(--shadow-medium);
  transition: all 0.5s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.menu.is-active {
  top: 0;
  left: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin: 1rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-black);
  transition: all 0.3s ease;
  padding: 8px 10px;
  border-radius: 5px;
}
.menu-link:hover {
  color: var(--color-white);
  background-color: brown;
}
@media only screen and (min-width: 55rem) {
  .menu {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  order: -1;
  width: 1.75rem;
  height: auto;
  border: none;
  outline: none;
  visibility: visible;
}
.burger-line {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 2px;
  margin: 6px auto;
  transform: rotate(0deg);
  background-color: var(--color-black);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 55rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}
.overlay.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.search-toggle,
.search-cancel {
  display: block;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: inherit;
  color: var(--color-black);
}
.search-block {
  position: fixed;
  top: 0px;
  right: -100%;
  width: 100%;
  height: 11.5%;
  z-index: 1000;
  overflow: hidden;
  background-color: var(--color-white);
  transition: all 0.45s ease-in-out;
  padding-top: 20px;
}
.search-block.is-active {
  top: 0px;
  right: 0;
}
.search-form {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  padding: 0.75rem 1rem;
  width: 100%;
  margin: 0 auto 0px;
  height: 30%;
}
.search-input {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  height: auto;
  padding: 0.65rem 1.25rem;
  border: none;
  outline: none;
  border-radius: 0.25rem;
  color: var(--color-black);
  background-color: var(--color-light);
  flex: 1 1 auto;
}

.search-input::-webkit-search-decoration,
.search-input::-webkit-search-cancel-button {
  display: none;
  visibility: hidden;
}

.mybulletlist2 ul {
  list-style-type: none;
  padding-left: 12px;
}

.mybulletlist2 li {
  padding-left: 0px;
  margin: 0 0px 5px 5px;
}

.mybulletlist2 li:nth-of-type(1):before {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f041";
  margin: 0 8px 0 -20px;
  color: #333;
}

.mybulletlist2 li:nth-of-type(2):before {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f0e0 ";
  margin: 0 5px 0 -18px;
  color: #333;
}

.mybulletlist2 li:nth-of-type(3):before {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f095 ";
  margin: 0 8px 0 -18px;
  color: #333;
}

.mybulletlist2 li:nth-of-type(4):before {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f017";
  margin: 0 8px 0 -18px;
  color: #333;
}

.mybulletlist2 ul li a {
  text-decoration: none;
  color: #333;
  transition: all 0.5s ease;
}

.mybulletlist2 ul li a:hover {
  text-decoration: none;
  color: #d10000;
  transition: all 0.5s ease;
}

.login_page {
  background: #333 url(../images/login_bg.jpg) no-repeat center center;
  background-size: 100% 100%;
}

.inner_banner {
  background: #333 url(../images/category_banner.jpg);
  min-height: 320px;
  width: 100%;
  background-size: cover;
}

.category_cards .bg {
  background: rgba(0, 0, 0, 0.55);
}

span {
  cursor: pointer;
}

.mycart-number {
  display: block;
}

.mycart-number span {
  cursor: pointer;
}

.minus,
.plus {
  font-size: 18px;
  width: 34px;
  height: 34px;
  background: #f2f2f2;
  border-radius: 4px;
  border: 1px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 34px;
}
.mycart-number input {
  height: 34px;
  width: 90px;
  text-align: center;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
}

.addBtn01 {
  background-color: #e21e25;
  color: white;
  font-size: 21px;
  font-weight: 500;
}

.addBtn01:hover {
  background-color: #000;
  color: white;
}
