* {
  color: inherit;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "roboto", "inter";
  color: #000;
  /*position: absolute;*/
  width: auto;
  height: auto;
  /*overflow-x: hidden;*/
}

ul {
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

hr {
  max-width: 100%;
}

img {
  max-width: 100%;
}

button, input, select {
  border: 0;
  outline: none;
}

.main__wrapper {
  width: 100%;
  padding: 40px;
}
@media (max-width: 767.98px) {
  .main__wrapper {
    padding: 20px;
  }
}

.bgwhite {
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: #000;
  padding: 40px;
  z-index: 10000;
}

.centered_50 {
  width: 50%;
  height: 100vh;
  padding: 80px 0px;
  margin: 0px auto;
}

.main__btn {
  padding: 10px;
  background: teal;
  color: white;
  font-weight: bold;
  transition: 0.5s ease-in-out;
  margin-top: 20px;
  cursor: pointer;
}
.main__btn:hover {
  background: black;
  transition: 0.5s ease-in-out;
}

.subscribe__btn {
  width: auto;
  padding: 20px 40px;
  background: black;
  transition: all 0.5s ease-in-out;
  border: 2px solid black;
  color: skyblue;
  font-weight: bold;
  cursor: pointer;
}
.subscribe__btn:hover {
  background: skyblue;
  border: 2px solid white;
  transition: all 0.5s ease-in-out;
  color: black;
}

.nav {
  height: 64px;
  background-color: #021624;
  padding: 0px 0px 0px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  width: 100%;
  position: relative;
}
.nav .desktop__submenu {
  cursor: pointer;
}
.nav .mobile__menu {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 100vw;
  right: -100vw;
  z-index: 3000;
  background: white;
  color: #000;
  overflow: hidden;
  transition: 0.5s all ease-in-out;
  padding: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.nav .mobile__menu .mobile__menulogo {
  font-weight: bold;
  font-size: 2rem;
}
.nav .mobile__menu .mobile__menulinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.nav .mobile__menu .mobile__menulinks .mobile__menulinkitem {
  font-weight: bold;
  color: gray;
}
.nav .mobile__menu .mobile__menulinks .mobile__menulinkitem a {
  color: gray;
  font-weight: bold;
}
.nav .mobile__menu .mobile__menulinks .mobile__menulinkitem a:hover {
  color: rgb(178, 178, 178);
}
.nav .mobile__menu .mobile__menulinks .mobile__menulinkitem .submenu__links {
  width: auto;
  overflow: hidden;
  padding: .6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.nav .mobile__menu .mobile__menulinks .mobile__menulinkitem .submenu__links .submenu__linkitem .submenu__link {
  color: red;
  font-weight: normal;
}
.nav .mobile__menu .mobile__menulinks .mobile__menulinkitem .submenu__show {
  height: auto;
  padding: 10px 0px;
  transition: all 0.3s ease-in-out;
}
.nav .mobile__menu #close_menu {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all 0.5s ease-in-out;
}
.nav .mobile__menu #close_menu:hover {
  transition: all 0.5s ease-in-out;
}
.nav .mobile__menushow {
  display: flex;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: 0.5s all ease-in-out;
}
.nav .nav__linkicon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.nav .nav__linkicon .nav__linkiconitem {
  width: 12px;
  height: 12px;
}
.nav .nav__logo {
  font-weight: bold;
  font-size: 2rem;
  width: 15%;
}
.nav .nav__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
}
.nav .nav__menu .hidenav {
  position: relative;
}
.nav .nav__menu .link__item {
  font-size: 0.8rem;
  position: relative;
}
.nav .nav__menu .link__item:hover:hover::before {
  width: 100%;
}
.nav .nav__menu .link__item::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 0%;
  height: 3px;
  background-color: skyblue;
  transition: 0.5s all ease-in-out;
}
.nav .nav__menu .link__item .desktop__submenulinksdesktop {
  position: absolute;
  top: 40px;
  width: 250px;
  height: auto;
  background: black;
  z-index: 2000;
  padding: 20px;
  font-size: 1.2rem;
}
.nav .nav__menu .link__item .desktop__submenulinksdesktop .desktop__submenulink {
  color: white;
  transition: all 0.5s ease-in-out;
}
.nav .nav__menu .link__item .desktop__submenulinksdesktop .desktop__submenulink:hover {
  color: skyblue;
  transition: all 0.5s ease-in-out;
}
.nav .nav__menu .link__item .desktop__submenulinks {
  position: absolute;
  top: 40px;
  background-color: black;
  z-index: 1000;
  width: 200px;
  height: 0px;
  font-size: 1.2rem;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.nav .nav__menu .link__item .desktop__submenulinks .desktop__submenulink {
  color: white;
  transition: 0.3s all ease-in-out;
}
.nav .nav__menu .link__item .desktop__submenulinks .desktop__submenulink:hover {
  color: skyblue;
  transition: 0.3s all ease-in-out;
}
.nav .nav__menu .link__item .desktop__submenulinksShow {
  height: auto;
  overflow: auto;
  padding: 20px;
  transition: all 0.5s ease-in-out;
  display: block;
  opacity: 1;
}
.nav .nav__icons {
  width: 10%;
  display: flex;
  justify-content: flex-end;
  background-color: #1B2D3A;
  height: 100%;
  padding: 0px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.nav .nav__icons a .cart__icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.nav .nav__icons a .cart__icon .cart__count {
  position: absolute;
  z-index: 2001;
  font-size: 0.7rem;
  color: white;
  top: -10px;
  right: -7px;
  font-weight: bold;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav .nav__icons #cart {
  cursor: pointer;
}
.nav .nav__icons .hamburger {
  border-left: 1px solid #fff;
  display: none;
}
@media (max-width: 767.98px) {
  .nav .nav__logo {
    font-weight: bold;
    font-size: 1.5rem;
    width: 30%;
  }
  .nav .nav__menu {
    justify-content: flex-end;
    width: 30%;
  }
  .nav .nav__menu .hidenav {
    display: none;
  }
  .nav .nav__menu .link__item {
    font-size: 0.8rem;
    position: relative;
    cursor: pointer;
  }
  .nav .nav__menu .link__item:hover:hover::before {
    width: 100%;
  }
  .nav .nav__menu .link__item::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    width: 0%;
    height: 3px;
    background-color: #ee0653;
    transition: 0.5s all ease-in-out;
  }
  .nav .nav__menu .link__item .desktop__submenulinksdesktop {
    display: none;
  }
  .nav .nav__icons {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    background-color: none;
    height: 100%;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .nav .nav__icons a .cart__icon {
    position: relative;
    width: 20px;
    height: 20px;
  }
  .nav .nav__icons a .cart__icon .cart__count {
    position: absolute;
    z-index: 2001;
    font-size: 0.7rem;
    color: white;
    top: -10px;
    right: -7px;
    font-weight: bold;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav .nav__icons img {
    width: 18px;
    height: 18px;
  }
  .nav .nav__icons .hamburger {
    border-left: 1px solid #fff;
    display: flex;
    padding-left: 10px;
  }
}

.blogmenu {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  z-index: 10000;
}
.blogmenu .blogmenu_items {
  list-style: none;
  font-weight: bold;
}

.card__text {
  position: relative;
}
.card__text .card__textheading {
  font-weight: bold;
  font-size: 1.4rem;
  font-family: poppins;
}
.card__text .card__textBody {
  font-size: 0.8rem;
  margin: 40px 0px 20px 0px;
  line-height: 140%;
}
.card__text .card__textlink {
  font-size: 0.8rem;
  transition: 0.3s ease-in-out;
}
.card__text .card__textlink:hover {
  color: rgb(197, 195, 195);
  transition: 0.3s ease-in-out;
}

.portfolio__card {
  width: 100px;
  height: 100px;
  background-color: red;
}

.footer {
  width: 100%;
  height: auto;
  padding: 0px 34px;
  background-color: white;
}
.footer .quicklinks {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgb(222, 222, 222);
  padding-top: 34px;
}
.footer .quicklinks .quicklinks__box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer .quicklinks .quicklinks__box .payment__method {
  width: 100%;
  height: 80px;
  background: url("/assets/images/icons/payment_method.png");
  background-size: cover;
  background-position: center;
}
.footer .quicklinks .quicklinks__box .quicklinks__boxtitle {
  font-size: 12px;
  font-weight: bold;
}
.footer .quicklinks .quicklinks__box .quicklinks__boxlinks {
  position: relative;
}
.footer .quicklinks .quicklinks__box .quicklinks__boxlinks .quicklinks__boxitems {
  font-size: 12px;
  line-height: 28px;
  font-weight: 400;
  transition: 0.3s ease-in-out;
}
.footer .quicklinks .quicklinks__box .quicklinks__boxlinks .quicklinks__boxitems:hover {
  transform: translateX(10px);
  transition: 0.3s ease-in-out;
}
.footer .quicklinks .quicklinks__box .quicklinks__boxlinks .quicklinks__boxitems .quicklinks__link {
  color: gray;
  transition: 0.3s ease-in-out;
}
.footer .quicklinks .quicklinks__box .quicklinks__boxlinks .quicklinks__boxitems .quicklinks__link:hover {
  color: rgb(182, 182, 182);
  transition: 0.3s ease-in-out;
}
.footer .quicklinks .quicklinks__box .quicklinks__boxlinks .quicklinks__boxitems .quicklinks__linkimage {
  width: 20px;
  height: 20px;
}
.footer .quicklinks .quicklinks__box .socials__links {
  display: flex;
  gap: 20px;
}
.footer .quicklinks .quicklinks__box .socials__links .quicklinks__linkimage {
  width: 20px;
  height: 20px;
  transition: 0.3s ease-in-out;
}
.footer .quicklinks .quicklinks__box .socials__links .quicklinks__linkimage:hover {
  transition: 0.3s ease-in-out;
  transform: translateX(5px);
}
.footer .quicklinks .quicklinks__accordion {
  display: none;
  flex-direction: column;
  gap: 30px;
}
.footer .quicklinks .quicklinks__accordion .payment__method {
  width: 100%;
  height: 80px;
  background: url("/assets/images/icons/payment_method.png");
  background-size: cover;
  background-position: center;
}
.footer .quicklinks .quicklinks__accordion .quicklinks__boxtitle {
  font-size: 12px;
  font-weight: bold;
}
.footer .quicklinks .quicklinks__accordion .quicklinks__boxlinks {
  position: relative;
}
.footer .quicklinks .quicklinks__accordion .quicklinks__boxlinks .quicklinks__boxitems {
  font-size: 12px;
  line-height: 28px;
  font-weight: 400;
  transition: 0.3s ease-in-out;
}
.footer .quicklinks .quicklinks__accordion .quicklinks__boxlinks .quicklinks__boxitems:hover {
  transform: translateX(10px);
  transition: 0.3s ease-in-out;
}
.footer .quicklinks .quicklinks__accordion .quicklinks__boxlinks .quicklinks__boxitems .quicklinks__link {
  color: gray;
  transition: 0.3s ease-in-out;
}
.footer .quicklinks .quicklinks__accordion .quicklinks__boxlinks .quicklinks__boxitems .quicklinks__link:hover {
  color: rgb(182, 182, 182);
  transition: 0.3s ease-in-out;
}
.footer .quicklinks .quicklinks__accordion .quicklinks__boxlinks .quicklinks__boxitems .quicklinks__linkimage {
  width: 20px;
  height: 20px;
}
.footer .quicklinks .quicklinks__accordion .socials__links {
  display: flex;
  gap: 20px;
}
.footer .quicklinks .quicklinks__accordion .socials__links .quicklinks__linkimage {
  width: 20px;
  height: 20px;
  transition: 0.3s ease-in-out;
}
.footer .quicklinks .quicklinks__accordion .socials__links .quicklinks__linkimage:hover {
  transition: 0.3s ease-in-out;
  transform: translateX(5px);
}
.footer .footer__copyright {
  width: 100%;
  text-align: center;
  font-weight: 400;
  color: gray;
  margin-top: 40px;
  font-size: 10px;
}
@media (max-width: 767.98px) {
  .footer {
    width: 80%;
    overflow: hidden;
  }
  .footer .quicklinks {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    gap: 20px;
  }
  .footer .quicklinks .quicklinks__accordion {
    display: flex;
  }
  .footer .quicklinks .quicklinks__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    display: none;
  }
  .footer .quicklinks .quicklinks__box .payment__method {
    width: 100%;
    height: 100px;
    background: url("/assets/images/icons/payment_method.png");
    background-size: cover;
    background-position: center;
  }
  .footer .quicklinks .quicklinks__box .quicklinks__boxtitle {
    font-size: 12px;
    font-weight: bold;
  }
  .footer .quicklinks .quicklinks__box .quicklinks__boxlinks {
    position: relative;
  }
  .footer .quicklinks .quicklinks__box .quicklinks__boxlinks .quicklinks__boxitems {
    font-size: 12px;
    line-height: 28px;
    font-weight: 400;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer .quicklinks .quicklinks__box .quicklinks__boxlinks .quicklinks__boxitems:hover {
    transform: translateX(10px);
    transition: 0.3s ease-in-out;
  }
  .footer .quicklinks .quicklinks__box .quicklinks__boxlinks .quicklinks__boxitems .quicklinks__link {
    color: gray;
    transition: 0.3s ease-in-out;
  }
  .footer .quicklinks .quicklinks__box .quicklinks__boxlinks .quicklinks__boxitems .quicklinks__link:hover {
    color: rgb(182, 182, 182);
    transition: 0.3s ease-in-out;
  }
  .footer .quicklinks .quicklinks__box .quicklinks__boxlinks .quicklinks__boxitems .quicklinks__linkimage {
    width: 20px;
    height: 20px;
  }
  .footer .quicklinks .quicklinks__box .socials__links {
    display: flex;
    gap: 20px;
  }
  .footer .quicklinks .quicklinks__box .socials__links .quicklinks__linkimage {
    width: 20px;
    height: 20px;
    transition: 0.3s ease-in-out;
  }
  .footer .quicklinks .quicklinks__box .socials__links .quicklinks__linkimage:hover {
    transition: 0.3s ease-in-out;
    transform: translateX(5px);
  }
}

.hero {
  width: 100%;
  height: 800px;
  background: url("/assets/images/hero.png");
  background-position: center;
  position: relative;
}
.hero .hero__box {
  width: 50%;
  position: absolute;
  height: 40%;
  z-index: 101;
  bottom: 80px;
  left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero .hero__box .hero__title {
  font-weight: bold;
  font-size: 5rem;
  line-height: 100%;
  color: white;
}
.hero .hero__box .hero__btn {
  height: 64px;
  padding: 10px;
  background-color: red;
  color: #fff;
  transition: 0.3s all ease-in-out;
  display: inline-block;
  cursor: pointer;
  width: 200px;
  font-weight: bold;
}
.hero .hero__box .hero__btn:hover {
  background: black;
  transition: 0.3s all ease-in-out;
  padding-left: 30px;
}
@media (max-width: 767.98px) {
  .hero {
    height: 400px;
    background-size: cover;
  }
  .hero .hero__box {
    height: 340px;
    bottom: 20px;
    left: 20px;
  }
  .hero .hero__box .hero__title {
    font-size: 3rem;
  }
  .hero .hero__box .hero__btn {
    margin-top: 10px;
  }
}

.row2 {
  height: 800px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 20px;
  overflow: hidden;
}
.row2 .row2__title {
  grid-column: span 2;
  margin: 40px auto;
  font-weight: bold;
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 120px;
}
.row2 .base__btn {
  padding: 20px 10px;
  color: white;
  width: 200px;
  text-align: center;
  cursor: pointer;
}
.row2 .row2__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.row2 .row2__left .row2__leftinfo {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.row2 .row2__left .row2__leftinfo .row2__leftimagebox {
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.row2 .row2__left .row2__leftinfo .row2__leftimagebox .water__img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.row2 .row2__left .row2__leftinfo .row2__leftproductsize {
  height: 15%;
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  color: skyblue;
}
.row2 .row2__left .row2__leftinfo .row2__leftcost {
  font-size: 2rem;
  text-align: center;
  color: gray;
  font-weight: bold;
}
.row2 .row2__left .row2__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 20%;
  width: 100%;
}
.row2 .row2__left .row2__btns .row2__form {
  width: 200px;
}
.row2 .row2__left .row2__btns .row2__form .row2__addproduct {
  background: black;
  transition: all 0.3s ease-in-out;
  border: 1px black solid;
}
.row2 .row2__left .row2__btns .row2__form .row2__addproduct:hover {
  background: skyblue;
  transition: all 0.3s ease-in-out;
  border: 1px skyblue solid;
}
.row2 .row2__left .row2__btns .row2__viewproduct {
  background: none;
  transition: all 0.3s ease-in-out;
  border: 1px black solid;
  color: black;
}
.row2 .row2__left .row2__btns .row2__viewproduct:hover {
  background: skyblue;
  transition: all 0.3s ease-in-out;
  border: 1px skyblue solid;
  color: white;
}
.row2 .row2__right {
  width: 100%;
  height: 100%;
}
.row2 .row2__right .row2__catalog {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.row2 .row2__right .row2__catalog .catalog__item {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: skyblue;
  transition: 0.5s ease-in-out all;
  cursor: pointer;
}
.row2 .row2__right .row2__catalog .catalog__item:hover {
  scale: 105%;
  transition: 0.5s ease-in-out all;
}
.row2 .row2__right .row2__catalog .catalog__item .catalog__img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.row2 .row2__right .row2__catalog .catalog__item .catalog__productdetails {
  position: absolute;
  z-index: 201;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  display: none;
  flex-direction: column;
  padding: 40px 20px 20px;
  color: white;
  transition: 0.3 all ease-in-out;
}
.row2 .row2__right .row2__catalog .catalog__item .catalog__productdetails .catalog__productsize {
  font-weight: bold;
  font-size: 1.2rem;
}
.row2 .row2__right .row2__catalog .catalog__item .catalog__productdetails .catalog__productinfo {
  font-size: 0.8rem;
  text-align: center;
  line-height: 120%;
}
.row2 .row2__right .row2__catalog .catalog__item .catalog__productdetailsShow {
  display: flex;
  transition: 0.3 all ease-in-out;
}
@media (max-width: 767.98px) {
  .row2 {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .row2 .row2__title {
    margin: 20px auto;
    font-weight: bold;
    font-size: 2rem;
    line-height: 100%;
  }
  .row2 .base__btn {
    padding: 20px 10px;
  }
  .row2 .row2__left {
    gap: 20px;
  }
  .row2 .row2__left .row2__leftinfo {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .row2 .row2__left .row2__leftinfo .row2__leftimagebox {
    position: relative;
  }
  .row2 .row2__left .row2__leftinfo .row2__leftimagesize {
    font-size: 1.5rem;
  }
  .row2 .row2__left .row2__btns {
    flex-direction: column;
  }
  .row2 .row2__left .row2__btns .row2__form {
    width: 100%;
  }
  .row2 .row2__left .row2__btns .row2__form .row2__addproduct {
    width: 100%;
    background: black;
    transition: all 0.3s ease-in-out;
    border: 1px black solid;
  }
  .row2 .row2__left .row2__btns .row2__form .row2__addproduct:hover {
    background: skyblue;
    transition: all 0.3s ease-in-out;
    border: 1px skyblue solid;
  }
  .row2 .row2__left .row2__btns .row2__viewproduct {
    width: 100%;
    background: none;
    transition: all 0.3s ease-in-out;
    border: 1px black solid;
    color: black;
  }
  .row2 .row2__left .row2__btns .row2__viewproduct:hover {
    background: skyblue;
    transition: all 0.3s ease-in-out;
    border: 1px skyblue solid;
    color: white;
  }
  .row2 .row2__right {
    width: 100%;
  }
  .row2 .row2__right .row2__catalog {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow-x: scroll;
    padding-bottom: 20px;
  }
  .row2 .row2__right .row2__catalog .catalog__item {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 5px;
  }
  .row2 .row2__right .row2__catalog .catalog__item .catalog__img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .row2 .row2__right .row2__catalog .catalog__item .catalog__productdetails {
    position: absolute;
    z-index: 201;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    display: none;
    flex-direction: column;
    padding: 40px 20px 20px;
    color: white;
    transition: 0.3 all ease-in-out;
  }
  .row2 .row2__right .row2__catalog .catalog__item .catalog__productdetails .catalog__productsize {
    font-weight: bold;
    font-size: 1.2rem;
  }
  .row2 .row2__right .row2__catalog .catalog__item .catalog__productdetails .catalog__productinfo {
    font-size: 0.8rem;
    text-align: center;
    line-height: 120%;
    display: none;
  }
  .row2 .row2__right .row2__catalog .catalog__item .catalog__productdetailsShow {
    display: flex;
    transition: 0.3 all ease-in-out;
  }
}

.row3 {
  width: 100%;
  height: 1000px;
  background: skyblue;
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.row3 .row3__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.row3 .row3__header .row3__title {
  font-weight: bold;
  font-size: 3rem;
}
.row3 .row3__header .row3_tagline {
  font-size: 0.8rem;
  width: 300px;
}
.row3 .row3__top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 100%;
  font-weight: bold;
}
.row3 .row3__bottom {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.row3 .row3__bottom .row3__bottommg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 767.98px) {
  .row3 {
    width: 100%;
    height: 700px;
    padding: 80px 40px;
  }
  .row3 .row3__header .row3__title {
    font-size: 1.5rem;
    text-align: center;
  }
  .row3 .row3__header .row3_tagline {
    font-size: 1.1rem;
    text-align: center;
  }
  .row3 .row3__top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 100%;
  }
  .row3 .row3__bottom {
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  .row3 .row3__bottom .row3__bottommg {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}

.row4 {
  padding: 120px 80px;
  height: auto;
  width: 100%;
  background: white;
}
.row4 .row4__heading {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
.row4 .row4__verbatim {
  width: 40%;
  margin: 0px auto;
  text-align: center;
  line-height: 180%;
  color: rgb(136, 136, 136);
}
.row4 .row__btndiv {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 20px;
  font-weight: bold;
}
.row4 .row4__campaign {
  width: 100%;
  height: 600px;
  background-color: skyblue;
}
@media (max-width: 767.98px) {
  .row4 {
    padding: 80px 40px;
  }
  .row4 .row4__heading {
    width: 100%;
    margin-bottom: 40px;
    font-size: 2rem;
  }
  .row4 .row4__verbatim {
    width: 90%;
    margin: 0px auto;
    text-align: center;
    line-height: 180%;
    color: rgb(136, 136, 136);
  }
  .row4 .row__btndiv {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 20px;
  }
  .row4 .row4__campaign {
    width: 100%;
    height: 300px;
    background-color: skyblue;
  }
}

.row5 {
  padding: 120px 80px;
  height: 400px;
  width: 100%;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom right, rgba(255, 0, 0, 0.5), rgba(0, 0, 255, 0.5)), url("/assets/images/hero.png");
}
.row5 .row5__box {
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.row5 .row5__box .row5__header {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
.row5 .row5__box .row5__verbatim {
  font-weight: normal;
  font-size: 0.8rem;
}
.row5 .row5__box .row5__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.row5 .row5__box .row5__form .row5__email {
  padding: 20px;
  width: 100%;
  color: black;
}
.row5 .row5__box .row5__form .row5__email:focus {
  outline: none;
  border: none;
}
.row5 .row5__box .row5__form .row5__submit {
  padding: 20px;
  background-color: skyblue;
  width: 100%;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: 0.5s ease-in-out all;
}
.row5 .row5__box .row5__form .row5__submit:hover {
  background: black;
  color: white;
  transition: 0.5s ease-in-out all;
}
@media (max-width: 767.98px) {
  .row5 {
    padding: 20px;
    height: 400px;
    width: 100%;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right, rgba(255, 0, 0, 0.5), rgba(0, 0, 255, 0.5)), url("/assets/images/hero.png");
  }
  .row5 .row5__box {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .row5 .row5__box .row5__header {
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
  }
  .row5 .row5__box .row5__verbatim {
    font-weight: normal;
    font-size: 0.9rem;
    text-align: center;
  }
  .row5 .row5__box .row5__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .row5 .row5__box .row5__form .row5__email {
    padding: 20px;
    width: 100%;
    color: black;
  }
  .row5 .row5__box .row5__form .row5__email:focus {
    outline: none;
    border: none;
  }
  .row5 .row5__box .row5__form .row5__submit {
    padding: 20px;
    background-color: skyblue;
    width: 100%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.5s ease-in-out all;
  }
  .row5 .row5__box .row5__form .row5__submit:hover {
    background: black;
    color: white;
    transition: 0.5s ease-in-out all;
  }
}

.row6 {
  position: relative;
  padding: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  height: 600px;
}
.row6 .row6__btn {
  width: 250px;
  height: 70px;
  background: skyblue;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.row6 .row6__btn:hover {
  background: red;
  transition: all 0.5s ease-in-out;
  color: white;
}
.row6 .row6__header {
  font-weight: bold;
  font-size: 4rem;
}
.row6 .row6__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .row6 {
    padding: 40px;
  }
  .row6 .row6__btn {
    width: 300px;
    height: 70px;
  }
  .row6 .row6__header {
    text-align: center;
  }
  .row6 .row6__btns {
    flex-direction: column;
  }
}

.row7 {
  width: 100%;
  height: 800px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px;
  margin-bottom: 80px;
}
.row7 .row7__title {
  font-weight: bold;
  font-size: 2rem;
}
.row7 .row7__subheading {
  font-weight: normal;
  font-size: 0.8rem;
  width: 300px;
}
.row7 .row7__box {
  width: 70%;
  margin: 20px auto;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: start;
  height: 100%;
}
.row7 .row7__box .row7__boxleft {
  width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.row7 .row7__box .row7__boxleft .row7__productimagebox {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.row7 .row7__box .row7__boxleft .row7__productimagebox .row7__productimage {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.row7 .row7__box .row7__boxleft .row7__productsize {
  font-weight: bold;
  font-size: 2rem;
}
.row7 .row7__box .row7__form {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.row7 .row7__box .row7__form .row7__formitem {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}
.row7 .row7__box .row7__form .row7__formitem .row7__formitemlabel {
  color: gray;
}
.row7 .row7__box .row7__form .row7__formitem .productselect {
  padding: 20px;
  font-size: 1.2rem;
  background: skyblue;
}
.row7 .row7__box .row7__form .row7__formitem .product__subtotal {
  font-weight: bold;
  font-size: 2rem;
}
.row7 .row7__box .row7__form .row7__formitem .product__subtotal #product__subtotalvalue {
  color: rgb(198, 198, 198);
}
.row7 .row7__box .row7__form .row7__formitem .item__value {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 150px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.row7 .row7__box .row7__form .row7__formitem .item__value .item__valuebox {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(209, 209, 209);
  padding: 10px;
}
.row7 .row7__box .row7__form .row7__formitem .item__value .item__valuebox #item__valueincrease {
  cursor: pointer;
}
.row7 .row7__box .row7__form .row7__formitem .item__value .item__valuebox #item__valuedecrease {
  cursor: pointer;
}
.row7 .row7__box .row7__form .row7__formitem .item__value .item__valuebox .product__value {
  padding: 10px;
  width: 60px;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}
.row7 .row7__box .row7__form .row7__formitem .item__value .item__valuebox .product__value::-webkit-outer-spin-button, .row7 .row7__box .row7__form .row7__formitem .item__value .item__valuebox .product__value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.row7 .row7__box .row7__form .row7__formitem .item__value .crate__tag {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  color: rgb(167, 167, 167);
}
@media (max-width: 767.98px) {
  .row7 {
    height: auto;
    gap: 20px;
  }
  .row7 .row7__title {
    text-align: center;
    font-size: 2rem;
  }
  .row7 .row7__subheading {
    font-size: 1rem;
    text-align: center;
  }
  .row7 .row7__box {
    width: 100%;
    margin: 20px auto;
    flex-direction: column;
  }
  .row7 .row7__box .row7__boxleft {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .row7 .row7__box .row7__form {
    width: 100%;
  }
  .row7 .row7__box .row7__form .row7__formitem {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }
  .row7 .row7__box .row7__form .row7__formitem .row7__formitemlabel {
    color: gray;
  }
  .row7 .row7__box .row7__form .row7__formitem .productselect {
    padding: 20px;
    font-size: 1.2rem;
    background: skyblue;
  }
  .row7 .row7__box .row7__form .row7__formitem .product__subtotal {
    font-weight: bold;
    font-size: 2rem;
  }
  .row7 .row7__box .row7__form .row7__formitem .product__subtotal #product__subtotalvalue {
    color: rgb(198, 198, 198);
  }
  .row7 .row7__box .row7__form .row7__formitem .item__value {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }
  .row7 .row7__box .row7__form .row7__formitem .item__value .item__valuebox {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }
  .row7 .row7__box .row7__form .row7__formitem .item__value .item__valuebox #item__valueincrease {
    cursor: pointer;
  }
  .row7 .row7__box .row7__form .row7__formitem .item__value .item__valuebox #item__valuedecrease {
    cursor: pointer;
  }
  .row7 .row7__box .row7__form .row7__formitem .item__value .item__valuebox .product__value {
    padding: 10px;
    width: 60px;
    text-align: center;
    outline: none;
  }
  .row7 .row7__box .row7__form .row7__formitem .item__value .crate__tag {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    color: rgb(167, 167, 167);
  }
}

.row8 {
  position: relative;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 120px;
  gap: 40px;
  background: linear-gradient(to bottom right, rgba(58, 41, 41, 0.7), rgba(48, 48, 124, 0.5)), url("/assets/images/hero.png");
  color: white;
  padding-bottom: 40px;
}
.row8 .row8__header {
  font-size: 3rem;
  width: 400px;
  margin: 0px auto;
}
.row8 .row8__content {
    width: 100%;
    line-height: 1.8rem;
    margin: 0px auto;
}
@media (max-width: 767.98px) {
  .row8 {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 40px;
    gap: 20px;
    background: linear-gradient(to bottom right, rgba(58, 41, 41, 0.7), rgba(48, 48, 124, 0.5)), url("/assets/images/hero.png");
    color: white;
    padding-bottom: 40px;
  }
  .row8 .row8__header {
    font-size: 2rem;
    width: 100%;
    margin: 0px auto;
  }
  .row8 .row8__content {
    width: 100%;
    margin: 0px auto;
  }
}

.row9 {
  position: relative;
  width: 100%;
  height: auto;
  padding: 40px 20px;
}
.row9 .row9__top {
  height: 400px;
  width: 100%;
  background: url("/assets/images/map.png");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding: 40px;
}
.row9 .row9__top .row9__topheading {
  font-weight: bold;
  font-size: 3rem;
  color: red;
}
.row9 .row9__top .row9__topsearchbox {
  width: 400px;
  border: 4px solid red;
  height: 50px;
  display: flex;
}
.row9 .row9__top .row9__topsearchbox #searchstoreinput {
  height: 100%;
  width: 70%;
  padding: 5px 10px;
  outline: none;
  font-size: 1.2rem;
}
.row9 .row9__top .row9__topsearchbox #searchstore {
  height: 100%;
  width: 30%;
  color: white;
  transition: all 0.5 ease-in-out;
  cursor: pointer;
  background-color: red;
}
.row9 .row9__top .row9__topsearchbox #searchstore:hover {
  background: black;
  transition: all 0.5 ease-in-out;
}
.row9 .row9__bottom {
  padding: 80px;
  width: 100%;
  height: auto;
}
.row9 .row9__bottom .location__box {
  width: 400px;
  height: auto;
  padding: 10px 10px 30px 10px;
  margin: 0px auto;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid gray;
}
.row9 .row9__bottom .location__box .location__boxicon {
  width: 18px;
  height: 18px;
}
.row9 .row9__bottom .location__box .location__boxaddress {
  font-size: 0.8rem;
  color: rgb(157, 157, 157);
}
@media (max-width: 767.98px) {
  .row9 {
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }
  .row9 .row9__top {
    height: 200px;
    background: url("/assets/images/map.png");
  }
  .row9 .row9__top .row9__topheading {
    font-size: 2rem;
  }
  .row9 .row9__top .row9__topsearchbox {
    width: 300px;
    border: 4px solid red;
    height: 50px;
    display: flex;
  }
  .row9 .row9__top .row9__topsearchbox #searchstoreinput {
    height: 100%;
    width: 70%;
    padding: 5px 10px;
    outline: none;
    font-size: 1.2rem;
  }
  .row9 .row9__top .row9__topsearchbox #searchstore {
    height: 100%;
    width: 30%;
    color: white;
    transition: all 0.5 ease-in-out;
    cursor: pointer;
    background-color: red;
  }
  .row9 .row9__top .row9__topsearchbox #searchstore:hover {
    background: black;
    transition: all 0.5 ease-in-out;
  }
  .row9 .row9__bottom {
    padding: 20px;
    width: 100%;
    height: auto;
  }
  .row9 .row9__bottom .location__box {
    width: 80%;
    padding: 20px;
  }
}

.faq {
  width: 100%;
  height: auto;
  padding: 80px;
  margin: 0px auto;
}
.faq .faq__header {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq .faq__header .faq__heading {
  font-weight: bold;
  font-size: 3rem;
  text-align: center;
  width: 100%;
  color: skyblue;
}
.faq .faq__header .faq__subheading {
  font-size: 0.8rem;
  text-align: center;
  width: 100%;
  color: gray;
  line-height: 120%;
}
.faq .faq__wrapper {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 80px;
  margin-top: 80px;
}
.faq .faq__wrapper .faq__tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 30%;
}
.faq .faq__wrapper .faq__tabs .faq__tab {
  width: 100%;
  cursor: pointer;
  padding-bottom: 10px;
  transition: all 0.3s ease-in-out;
  height: auto;
  font-weight: bold;
}
.faq .faq__wrapper .faq__tabs .faq__tab:hover {
  transition: all 0.3s ease-in-out;
  color: skyblue;
}
.faq .faq__wrapper .faq__tabs .tab__underline {
  color: skyblue;
  transition: all 0.3s ease-in-out;
}
.faq .faq__wrapper .faq__section {
  width: 70%;
}
.faq .faq__wrapper .faq__section .faq__box {
  width: 87%;
  height: auto;
  margin-bottom: 20px;
  display: none;
  transition: all 0.3s ease-in-out;
}
.faq .faq__wrapper .faq__section .faq__box .faq__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(209, 209, 209);
  cursor: pointer;
  margin-bottom: 20px;
}
.faq .faq__wrapper .faq__section .faq__box .faq__item .faq__question {
  display: flex;
  gap: 10px;
  align-items: start;
}
.faq .faq__wrapper .faq__section .faq__box .faq__item .faq__question .faq__questionimg {
  width: 20px;
  height: 20px;
}
.faq .faq__wrapper .faq__section .faq__box .faq__item .faq__question .faq__title {
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.faq .faq__wrapper .faq__section .faq__box .faq__item .faq__question .faq__title:hover {
  color: skyblue;
  transition: all 0.3s ease-in-out;
}
.faq .faq__wrapper .faq__section .faq__box .faq__item .faq__answer {
  overflow: hidden;
  height: 0;
  padding: 0 1rem 0 2rem;
  transition: all 0.5s ease-in-out;
}
.faq .faq__wrapper .faq__section .faq__box .faq__item .faq__answershow {
  padding: 1rem 1rem 1rem 3rem;
  height: initial;
  transition: all 0.5s ease-in-out;
}
.faq .faq__wrapper .faq__section .faq__boxshow {
  display: block;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767.98px) {
  .faq {
    width: 100%;
    height: auto;
    padding: 20px;
    margin: 0px auto;
  }
  .faq .faq__header {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .faq .faq__header .faq__heading {
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
    width: 100%;
    color: skyblue;
  }
  .faq .faq__header .faq__subheading {
    font-size: 0.8rem;
    text-align: center;
    width: 100%;
    color: gray;
    line-height: 120%;
  }
  .faq .faq__wrapper {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  .faq .faq__wrapper .faq__tabs {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
  }
  .faq .faq__wrapper .faq__tabs .faq__tab {
    width: 100%;
    cursor: pointer;
    padding-bottom: 10px;
    transition: all 0.3s ease-in-out;
    height: auto;
    font-weight: bold;
    text-align: center;
  }
  .faq .faq__wrapper .faq__tabs .faq__tab:hover {
    transition: all 0.3s ease-in-out;
    color: skyblue;
  }
  .faq .faq__wrapper .faq__tabs .tab__underline {
    color: skyblue;
    transition: all 0.3s ease-in-out;
  }
  .faq .faq__wrapper .faq__section {
    width: 100%;
  }
  .faq .faq__wrapper .faq__section .faq__box {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: none;
    transition: all 0.3s ease-in-out;
  }
  .faq .faq__wrapper .faq__section .faq__box .faq__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(209, 209, 209);
    cursor: pointer;
    margin-bottom: 20px;
  }
  .faq .faq__wrapper .faq__section .faq__box .faq__item .faq__question {
    display: flex;
    gap: 10px;
    align-items: start;
  }
  .faq .faq__wrapper .faq__section .faq__box .faq__item .faq__question .faq__questionimg {
    width: 20px;
    height: 20px;
  }
  .faq .faq__wrapper .faq__section .faq__box .faq__item .faq__question .faq__title {
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  .faq .faq__wrapper .faq__section .faq__box .faq__item .faq__question .faq__title:hover {
    color: skyblue;
    transition: all 0.3s ease-in-out;
  }
  .faq .faq__wrapper .faq__section .faq__box .faq__item .faq__answer {
    overflow: hidden;
    height: 0;
    padding: 0 1rem 0 2rem;
    transition: all 0.5s ease-in-out;
  }
  .faq .faq__wrapper .faq__section .faq__box .faq__item .faq__answershow {
    padding: 1rem 1rem 1rem 3rem;
    height: initial;
    transition: all 0.5s ease-in-out;
  }
  .faq .faq__wrapper .faq__section .faq__boxshow {
    display: block;
    transition: all 0.3s ease-in-out;
  }
}

.shop {
  width: 800px;
  height: auto;
  padding: 80px 0px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.shop .shop__header {
  text-align: center;
  width: 100%;
  font-weight: bold;
  font-size: 3rem;
}
.shop .shop__products {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.shop .shop__products .shop__product {
  width: 100%;
  height: 380px;
  box-shadow: 1px 1px 10px rgb(224, 224, 224);
  padding: 20px;
}
.shop .shop__products .shop__product .shop__producttop {
  width: 100%;
  height: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop .shop__products .shop__product .shop__producttop .shop__producttopimg {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.shop .shop__products .shop__product .shop__productbottom {
  width: 100%;
  height: 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.shop .shop__products .shop__product .shop__productbottom .shop__productsize {
  font-size: 2rem;
  font-weight: bold;
}
.shop .shop__products .shop__product .shop__productbottom .shop__cost {
  color: gray;
  font-size: 1.1rem;
}
.shop .shop__products .shop__product .shop__productbottom .product__form {
  width: 100%;
}
.shop .shop__products .shop__product .shop__productbottom .product__form .shop__costbtn {
  width: 100%;
  height: 40px;
  background: none;
  border: 1px gray solid;
  font-weight: bold;
  transition: all 0.5s ease-in;
  cursor: pointer;
  border-radius: 10px;
}
.shop .shop__products .shop__product .shop__productbottom .product__form .shop__costbtn:hover {
  background: black;
  color: white;
  border: 1px black solid;
  transition: all 0.5s ease-in;
}
@media (max-width: 767.98px) {
  .shop {
    width: 100%;
    padding: 20px 0px;
  }
  .shop .shop__header {
    font-size: 2rem;
  }
  .shop .shop__products {
    grid-template-columns: 1fr;
  }
  .shop .shop__products .shop__product {
    width: 100%;
    height: 380px;
    box-shadow: none;
  }
  .shop .shop__products .shop__product .shop__productbottom {
    gap: 10px;
  }
  .shop .shop__products .shop__product .shop__productbottom .shop__productsize {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .shop .shop__products .shop__product .shop__productbottom .shop__cost {
    color: gray;
    font-size: 1.1rem;
  }
  .shop .shop__products .shop__product .shop__productbottom .product__form {
    width: 100%;
  }
  .shop .shop__products .shop__product .shop__productbottom .product__form .shop__costbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    border: 1px gray solid;
  }
  .shop .shop__products .shop__product .shop__productbottom .product__form .shop__costbtn:hover {
    background: black;
    color: white;
    border: 1px black solid;
    transition: all 0.5s ease-in;
  }
}

.admin {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #F4F4F4;
}
.admin .admin__nav {
  width: 20%;
  background: white;
  height: 100vh;
  padding: 80px 20px;
}
.admin .admin__nav .admin__navigation {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.admin .admin__nav .admin__navigation .admin__navlink {
  transition: all 0.3 ease-in-out;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: bold;
}
.admin .admin__nav .admin__navigation .admin__navlink .admin__link {
  color: black;
}
.admin .admin__nav .admin__navigation .admin__navlink .admin__link:hover {
  color: red;
  transition: all 0.3 ease-in-out;
}
.admin .admin__nav .admin__navigation .admin__navlink .admin__navlinkicon {
  width: 18px;
}
.admin .admin__nav .adminnav__mobile {
  display: none;
}
.admin .admin__content {
  width: 78%;
  height: auto;
  padding: 80px 20px;
}
.admin .admin__content .admin__title {
  font-size: 3rem;
}
.admin .admin__content .admin__subtitle {
  font-size: 1.5rem;
}
@media (max-width: 767.98px) {
  .admin {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: #F4F4F4;
    position: relative;
  }
  .admin .admin__nav {
    width: 100%;
    background: white;
    height: 80px;
    padding: 0px 10px;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
  }
  .admin .admin__nav .admin__navigation {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .admin .admin__nav .admin__navigation .admin__navlink {
    transition: all 0.3 ease-in-out;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: bold;
  }
  .admin .admin__nav .admin__navigation .admin__navlink .admin__link {
    color: black;
  }
  .admin .admin__nav .admin__navigation .admin__navlink .admin__link:hover {
    color: red;
    transition: all 0.3 ease-in-out;
  }
  .admin .admin__nav .admin__navigation .admin__navlink .admin__navlinkicon {
    width: 18px;
  }
  .admin .admin__nav .adminnav__mobile {
    display: block;
    position: fixed;
    z-index: 10000;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 10px 0px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    background-color: white;
  }
  .admin .admin__nav .adminnav__mobile .adminnav__toggle {
    padding: 0px;
    text-align: center;
  }
  .admin .admin__nav .adminnav__mobile .adminnav__linkiconflipped {
    transform: rotateX("180deg");
  }
  .admin .admin__nav .adminnav__mobile .adminnav__items {
    width: 100%;
    height: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 5px;
  }
  .admin .admin__nav .adminnav__mobile .adminnav__items .adminav__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    align-items: center;
  }
  .admin .admin__nav .adminnav__mobile .adminnav__items .adminav__item .adminnav__linkicon {
    position: relative;
    width: 20px;
    height: 20px;
  }
  .admin .admin__nav .adminnav__mobile .adminnav__items .adminav__item .adminnav__link {
    color: gray;
    transition: all 0.5s ease-in-out;
  }
  .admin .admin__nav .adminnav__mobile .adminnav__items .adminav__item .adminnav__link:hover {
    color: black;
    transition: all 0.5s ease-in-out;
  }
  .admin .admin__nav .adminnav__mobile #adminnav__bottom {
    margin-top: 20px;
  }
  .admin .admin__content {
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }
  .admin .admin__content .admin__title {
    font-size: 2rem;
  }
  .admin .admin__content .admin__subtitle {
    font-size: 1.5rem;
  }
}

.dashboard {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.dashboard .dashboard__left {
  grid-column: span 3;
}
.dashboard .dashboard__left .dashboard__statsBox {
  padding: 20px;
  background: white;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.dashboard .dashboard__left .dashboard__statsBox .dasboard__statsitem {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dashboard .dashboard__left .dashboard__statsBox .dasboard__statsitem .dashbaoard__statsitemtitle {
  color: gray;
  font-size: 0.8rem;
}
.dashboard .dashboard__left .dashboard__statsBox .dasboard__statsitem .dashbaoard__statsitemvalue {
  font-weight: bold;
  font-size: 1.1rem;
}
.dashboard .dashboard__left .dashboard__activity {
  margin-top: 40px;
  background: white;
  border-radius: 10px;
}
.dashboard .dashboard__left .dashboard__activity .dashboard__activitytable {
  width: 100%;
  margin-top: 20px;
}
.dashboard .dashboard__left .dashboard__activity .dashboard__activitytable .dashbard__tablehead {
  width: 100%;
  padding: 0px;
  border-bottom: 1px solid rgb(207, 207, 207);
}
.dashboard .dashboard__left .dashboard__activity .dashboard__activitytable .dashbard__tablebody {
  width: 100%;
  border-bottom: 1px solid gray;
}
.dashboard .dashboard__right {
  grid-column: span 1;
  background: white;
  border-radius: 10px;
  padding: 20px;
}
.dashboard .dashboard__right .dashboard__newsignups {
  display: flex;
  gap: 20px;
  height: auto;
  align-items: start;
  width: 100%;
  margin-top: 20px;
}
.dashboard .dashboard__right .dashboard__newsignups .dashboard__newsignupsimgbox {
  width: 40px;
  height: 40px;
  overflow: hidden;
}
.dashboard .dashboard__right .dashboard__newsignups .dashboard__newsignupsimgbox .dasbboard__userimg {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.dashboard .dashboard__right .dashboard__newsignups .dashboard__newsignupsuserinfo {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: auto;
}
.dashboard .dashboard__right .dashboard__newsignups .dashboard__newsignupsuserinfo .dashboard__newsignupnamesname {
  font-weight: 500;
  color: black;
}
.dashboard .dashboard__right .dashboard__newsignups .dashboard__newsignupsuserinfo .dashboard__newsignupnamesemail {
  color: gray;
  font-size: 0.7rem;
}
.dashboard .dashboard__right .dashboard__newsignupdetailsbtn {
  width: 100%;
  height: 30px;
  background: skyblue;
  transition: all 0.5s ease-in-out;
  color: black;
  border-radius: 5px;
  margin-top: 40px;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard .dashboard__right .dashboard__newsignupdetailsbtn:hover {
  background: black;
  color: white;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767.98px) {
  .dashboard {
    width: 100%;
    height: auto;
    padding: 0px 0px 80px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .dashboard .dashboard__left .dashboard__statsBox {
    padding: 20px;
    background: white;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .dashboard .dashboard__left .dashboard__statsBox .dasboard__statsitem {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .dashboard .dashboard__left .dashboard__statsBox .dasboard__statsitem .dashbaoard__statsitemtitle {
    color: gray;
    font-size: 0.6rem;
    font-weight: bold;
  }
  .dashboard .dashboard__left .dashboard__statsBox .dasboard__statsitem .dashbaoard__statsitemvalue {
    font-weight: bold;
    font-size: 1.1rem;
  }
  .dashboard .dashboard__left .dashboard__activity {
    margin-top: 20px;
    background: white;
    border-radius: 5px;
    height: auto;
  }
  .dashboard .dashboard__left .dashboard__activity .dashboard__activitytable {
    width: 100%;
    margin-top: 20px;
  }
  .dashboard .dashboard__left .dashboard__activity .dashboard__activitytable .dashbard__tablehead {
    width: 100%;
    padding: 0px;
    border-bottom: 1px solid rgb(207, 207, 207);
  }
  .dashboard .dashboard__left .dashboard__activity .dashboard__activitytable .dashbard__tablebody {
    width: 100%;
    border-bottom: 1px solid gray;
  }
  .dashboard .dashboard__right {
    grid-column: span 1;
    background: white;
    border-radius: 10px;
    padding: 20px;
  }
  .dashboard .dashboard__right .dashboard__newsignups {
    display: flex;
    gap: 20px;
    height: auto;
    align-items: start;
    width: 100%;
    margin-top: 20px;
  }
  .dashboard .dashboard__right .dashboard__newsignups .dashboard__newsignupsimgbox {
    width: 60px;
    height: 60px;
    overflow: hidden;
  }
  .dashboard .dashboard__right .dashboard__newsignups .dashboard__newsignupsimgbox .dasbboard__userimg {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .dashboard .dashboard__right .dashboard__newsignups .dashboard__newsignupsuserinfo {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: auto;
  }
  .dashboard .dashboard__right .dashboard__newsignups .dashboard__newsignupsuserinfo .dashboard__newsignupnamesname {
    font-weight: 500;
    color: black;
  }
  .dashboard .dashboard__right .dashboard__newsignups .dashboard__newsignupsuserinfo .dashboard__newsignupnamesemail {
    color: gray;
    font-size: 0.7rem;
  }
  .dashboard .dashboard__right .dashboard__newsignupdetailsbtn {
    width: 100%;
    height: 30px;
    background: skyblue;
    transition: all 0.5s ease-in-out;
    color: black;
    border-radius: 5px;
    margin-top: 40px;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .dashboard .dashboard__right .dashboard__newsignupdetailsbtn:hover {
    background: black;
    color: white;
    transition: all 0.5s ease-in-out;
  }
}

.products {
  width: 100%;
  margin-top: 20px;
  height: auto;
  border-radius: 10px;
  padding-bottom: 200px;
}
.products .products__stats {
  width: 100%;
  background-color: white;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 10px;
}
.products .products__stats .product__statsitem {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.products .products__stats .product__statsitem .product__statsitemtitle {
  font-size: 0.8rem;
  color: gray;
}
.products .products__stats .product__statsitem .product__statsitemvalue {
  font-weight: bold;
  font-size: 2rem;
}
.products .products__stats .product__createbtn {
  padding: 20px;
  background: skyblue;
  color: black;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.products .products__stats .product__createbtn:hover {
  background: black;
  color: white;
  transition: all 0.5s ease-in-out;
}
.products .products__stats .product__createbtnmobile {
  display: none;
}
.products .products__searchtable {
  border-radius: 10px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: white;
}
.products .products__searchtable .product__search {
  padding: 20px;
  width: 100%;
  height: 60px;
  background-color: white;
}
.products .products__searchtable .product__search .product__searchbox {
  padding: 20px;
  padding: 10px 20px;
  background: rgb(231, 231, 231);
  border-radius: 20px;
  display: inline-block;
  justify-content: space-between;
  align-items: center;
}
.products .products__searchtable .product__search .product__searchbox .search__productinput {
  background: none;
  outline: none;
  width: 0px;
  transition: 0.5s ease-in-out all;
}
.products .products__searchtable .product__search .product__searchbox .search__producticon {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.products .products__searchtable .product__search .product__searchbox .search__productinputshow {
  width: 200px;
  transition: 0.5s ease-in-out all;
}
.products .products__searchtable .product__tabledata {
  width: 100%;
  height: auto;
  padding-bottom: 80px;
  border-collapse: collapse;
}
.products .products__searchtable .product__tableresult {
  width: 100%;
  height: 200px;
  border: none;
}
.products .products__searchtable .product__table {
  width: 100%;
  height: 100px;
  background-color: white;
  border-collapse: collapse;
  border: none;
}
.products .products__searchtable .product__table .product__tablehead {
  background-color: #F8F8F8;
  padding: 20px;
  color: gray;
  font-size: 0.8rem;
}
.products .products__searchtable .product__table .product__tablehead .product__tableheadrow {
  position: relative;
}
.products .products__searchtable .product__table .product__tablehead .product__tableheadrow td, .products .products__searchtable .product__table .product__tablehead .product__tableheadrow th {
  padding: 20px;
  border: none;
  border-top: 1px solid rgb(239, 239, 239);
}
.products .products__searchtable .product__table .product__tablebody {
  padding: 10px;
  border: none;
}
.products .products__searchtable .product__table .product__tablebody .product__tablebodyrow {
  position: relative;
  font-size: 0.8rem;
}
.products .products__searchtable .product__table .product__tablebody .product__tablebodyrow td, .products .products__searchtable .product__table .product__tablebody .product__tablebodyrow th {
  padding: 20px;
  border: none;
  border-top: 1px solid rgb(239, 239, 239);
}
.products .products__searchtable .product__table .product__tablebody .product__status {
  color: green;
}
.products .products__searchtable .product__table .product__tablebody .product__tableedit {
  font-size: 0.8px;
}
.products .products__searchtable .product__table .product__tablebody .product__tableedit .product__editbtn {
  background: none;
  color: rgb(197, 110, 110);
  margin-right: 10px;
  cursor: pointer;
}
.products .products__searchtable .product__table .product__tablebody .product__tableedit .product__deactivatebtn {
  background: none;
  color: red;
  margin-right: 10px;
  cursor: pointer;
}
.products .product__addform {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 500px;
  padding: 40px;
  background: white;
  z-index: 1000;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  flex-direction: column;
  gap: 40px;
  display: none;
  height: 0px;
}
.products .product__addform .product__addformitem {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.products .product__addform .product__addformitem .product__addforminput, .products .product__addform .product__addformitem .product__addformselect {
  width: 100%;
  padding: 20px;
  background: rgb(232, 232, 232);
  font-size: 1.2rem;
  outline: none;
}
.products .product__addform .product__addformitem .product__addformselect {
  background: skyblue;
  border: none;
}
.products .product__addform .product__addformitem .submitproduct {
  width: 100%;
  padding: 20px;
  font-weight: bold;
  transition: 0.5 ease-in-out all;
  background-color: skyblue;
  cursor: pointer;
}
.products .product__addform .product__addformitem .submitproduct:hover {
  background: black;
  transition: 0.5 ease-in-out all;
  color: white;
}
.products .product__addform .product__addformitem .productfile__label {
  width: 100px;
  height: 100px;
  background: red;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  font-size: 0.8rem;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.products .product__addform .product__addformitem .productfile__label:hover {
  background-color: rgb(49, 198, 49);
  transition: all 0.5s ease-in-out;
}
.products .product__addform .close__productform {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.products .product__addform .close__productform:hover {
  transform: translateX(-10px);
  transition: all 0.5s ease-in-out;
}
.products .product__addformshow {
  height: auto;
  display: flex;
}
@media (max-width: 767.98px) {
  .products {
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
    padding-bottom: 150px;
  }
  .products .products__stats {
    width: 100%;
    background-color: white;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 10px;
  }
  .products .products__stats .product__statsitemtitle {
    font-size: 0.6rem;
    color: gray;
  }
  .products .products__stats .product__statsitemvalue {
    font-weight: bold;
    font-size: 2rem;
  }
  .products .products__stats .product__createbtn {
    padding: 20px;
    background: skyblue;
    color: black;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    display: none;
  }
  .products .products__stats .product__createbtn:hover {
    background: black;
    color: white;
    transition: all 0.5s ease-in-out;
  }
  .products .products__stats .product__createbtnmobile {
    padding: 5px;
    background: skyblue;
    color: black;
    font-weight: bold;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .products .products__stats .product__createbtnmobile:hover {
    background: black;
    color: white;
    transition: all 0.5s ease-in-out;
  }
  .products .products__searchtable {
    border-radius: 10px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: white;
  }
  .products .products__searchtable .product__search {
    padding: 20px;
    width: 100%;
    height: 60px;
    background-color: white;
  }
  .products .products__searchtable .product__search .product__searchbox {
    padding: 20px;
    padding: 10px 20px;
    background: rgb(231, 231, 231);
    border-radius: 20px;
    display: inline-block;
    justify-content: space-between;
    align-items: center;
  }
  .products .products__searchtable .product__search .product__searchbox .search__productinput {
    background: none;
    outline: none;
    width: 0px;
    transition: 0.5s ease-in-out all;
  }
  .products .products__searchtable .product__search .product__searchbox .search__producticon {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  .products .products__searchtable .product__search .product__searchbox .search__productinputshow {
    width: 200px;
    transition: 0.5s ease-in-out all;
  }
  .products .products__searchtable .product__tabledata {
    width: 100%;
    height: auto;
    border-collapse: collapse;
    overflow-x: scroll;
  }
  .products .products__searchtable .product__tableresult {
    width: 100%;
    background: green;
    height: 2000px;
    border: none;
  }
  .products .products__searchtable .product__table {
    padding: 10px;
    width: 100%;
    height: 100px;
    background-color: white;
    border-collapse: collapse;
    border: none;
  }
  .products .products__searchtable .product__table .product__tablehead {
    background-color: #F8F8F8;
    padding: 10px;
    color: gray;
    font-size: 0.8rem;
    width: 100%;
  }
  .products .products__searchtable .product__table .product__tablehead .product__tableheadrow {
    position: relative;
  }
  .products .products__searchtable .product__table .product__tablehead .product__tableheadrow td, .products .products__searchtable .product__table .product__tablehead .product__tableheadrow th {
    padding: 20px;
    border: none;
    border-top: 1px solid rgb(239, 239, 239);
  }
  .products .products__searchtable .product__table .product__tablebody {
    width: 100%;
    padding: 10px;
    border: none;
  }
  .products .products__searchtable .product__table .product__tablebody .product__tablebodyrow {
    position: relative;
    font-size: 0.6rem;
  }
  .products .products__searchtable .product__table .product__tablebody .product__tablebodyrow td, .products .products__searchtable .product__table .product__tablebody .product__tablebodyrow th {
    padding: 10px;
    border: none;
    border-top: 1px solid rgb(239, 239, 239);
  }
  .products .products__searchtable .product__table .product__tablebody .product__status {
    color: green;
  }
  .products .products__searchtable .product__table .product__tablebody .product__tableedit {
    font-size: 0.6px;
  }
  .products .products__searchtable .product__table .product__tablebody .product__tableedit .product__editbtn {
    background: none;
    color: rgb(197, 110, 110);
    margin-right: 10px;
    cursor: pointer;
  }
  .products .products__searchtable .product__table .product__tablebody .product__tableedit .product__deactivatebtn {
    background: none;
    color: red;
    margin-right: 10px;
    cursor: pointer;
  }
  .products .product__addform {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 20px;
  }
  .products .product__addform .product__addformitem {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .products .product__addformshow {
    height: auto;
    display: flex;
  }
}

.notifications {
  background: white;
  border-radius: 10px;
  width: 100%;
  height: auto;
  padding: 20px 20px 40px 20px;
  margin-top: 20px;
}
.notifications .notifications__item {
  border-top: 1px solid #eaeaea;
  width: 100%;
  margin-top: 10px;
}
.notifications .notifications__item label {
  font-size: 0.8rem;
  font-weight: bold;
}
.notifications .notifications__item .notifications__input {
  padding-top: 10px;
  outline: none;
  padding: 10px;
  margin: 10px 0px;
  font-size: 1rem;
  width: 70%;
}
.notifications .notifications__item .notifications__textarea {
  outline: none;
  padding-top: 10px;
  padding: 10px;
  margin: 10px 0px;
  display: block;
  width: 100%;
  height: 400px;
  outline: none;
  color: rgb(90, 90, 90);
}
.notifications .notifications__item .notifications__buttonuser {
  border-radius: 10px;
  width: 200px;
  margin-top: 20px;
  padding: 20px;
  background: skyblue;
  color: white;
  margin-right: 20px;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
}
.notifications .notifications__item .notifications__buttonuser:hover {
  background: black;
  transition: 0.2s all ease-in-out;
}
.notifications .notifications__item .notifications__buttonalluser {
  border-radius: 10px;
  width: 200px;
  margin-top: 20px;
  padding: 20px;
  background: black;
  color: white;
  margin-right: 20px;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
}
.notifications .notifications__item .notifications__buttonalluser:hover {
  background: skyblue;
  transition: 0.2s all ease-in-out;
}
@media (max-width: 767.98px) {
  .notifications {
    border-radius: 10px;
    padding: 20px;
    padding-bottom: 150px;
  }
  .notifications .notifications__item {
    border-top: 1px solid #eaeaea;
    width: 96%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0px;
  }
  .notifications .notifications__item label {
    font-size: 0.7rem;
  }
  .notifications .notifications__item .notifications__input {
    padding-top: 0px;
    outline: none;
    padding: 10px;
    margin: 10px 0px;
    font-size: 1rem;
    width: 100%;
  }
  .notifications .notifications__item .notifications__textarea {
    padding: 10px;
    margin: 10px 0px;
    display: block;
    width: 100%;
    margin-left: 0px;
    min-height: 400px;
    outline: none;
    color: rgb(90, 90, 90);
    margin-left: 1px;
  }
  .notifications .notifications__item .notifications__buttonuser {
    border-radius: 10px;
    width: 200px;
    margin-top: 20px;
    padding: 20px;
    background: skyblue;
    color: white;
    margin-right: 20px;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
  }
  .notifications .notifications__item .notifications__buttonuser:hover {
    background: black;
    transition: 0.2s all ease-in-out;
  }
  .notifications .notifications__item .notifications__buttonalluser {
    border-radius: 10px;
    width: 200px;
    margin-top: 20px;
    padding: 20px;
    background: black;
    color: white;
    margin-right: 20px;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
  }
  .notifications .notifications__item .notifications__buttonalluser:hover {
    background: skyblue;
    transition: 0.2s all ease-in-out;
  }
}

.customers {
  width: 100%;
  margin-top: 20px;
  height: 200px;
  border-radius: 10px;
  padding-bottom: 150px;
}
.customers .customers__stats {
  width: 100%;
  background-color: white;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 10px;
}
.customers .customers__stats .customer__statsitemtitle {
  font-size: 0.8rem;
  color: gray;
}
.customers .customers__stats .customer__statsitemvalue {
  font-weight: bold;
  font-size: 2rem;
}
.customers .customers__stats .customer__createbtn {
  padding: 20px;
  background: skyblue;
  color: black;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.customers .customers__stats .customer__createbtn:hover {
  background: black;
  color: white;
  transition: all 0.5s ease-in-out;
}
.customers .customers__searchtable {
  border-radius: 10px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: white;
}
.customers .customers__searchtable .customer__search {
  padding: 20px;
  width: 100%;
  height: 60px;
  background-color: white;
}
.customers .customers__searchtable .customer__search .customer__searchbox {
  padding: 20px;
  padding: 10px 20px;
  background: rgb(231, 231, 231);
  border-radius: 20px;
  display: inline-block;
  justify-content: space-between;
  align-items: center;
}
.customers .customers__searchtable .customer__search .customer__searchbox .search__customerinput {
  background: none;
  outline: none;
  width: 0px;
  transition: 0.5s ease-in-out all;
}
.customers .customers__searchtable .customer__search .customer__searchbox .search__customericon {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.customers .customers__searchtable .customer__search .customer__searchbox .search__customerinputshow {
  width: 200px;
  transition: 0.5s ease-in-out all;
}
.customers .customers__searchtable .customer__tabledata {
  width: 100%;
  height: 200px;
  border-collapse: collapse;
  overflow-x: scroll;
}
.customers .customers__searchtable .customer__tableresult {
  width: 100%;
  height: 200px;
  border: none;
}
.customers .customers__searchtable .customer__table {
  width: 100%;
  height: 100px;
  background-color: white;
  border-collapse: collapse;
  border: none;
}
.customers .customers__searchtable .customer__table .customer__tablehead {
  background-color: #F8F8F8;
  padding: 20px;
  color: gray;
  font-size: 0.8rem;
}
.customers .customers__searchtable .customer__table .customer__tablehead .customer__tableheadrow {
  position: relative;
}
.customers .customers__searchtable .customer__table .customer__tablehead .customer__tableheadrow td, .customers .customers__searchtable .customer__table .customer__tablehead .customer__tableheadrow th {
  padding: 20px;
  border: none;
  border-top: 1px solid rgb(239, 239, 239);
}
.customers .customers__searchtable .customer__table .customer__tablebody {
  padding: 10px;
  border: none;
}
.customers .customers__searchtable .customer__table .customer__tablebody .customer__tablebodyrow {
  position: relative;
  font-size: 0.8rem;
}
.customers .customers__searchtable .customer__table .customer__tablebody .customer__tablebodyrow td, .customers .customers__searchtable .customer__table .customer__tablebody .customer__tablebodyrow th {
  padding: 20px;
  border: none;
  border-top: 1px solid rgb(239, 239, 239);
}
.customers .customers__searchtable .customer__table .customer__tablebody .customer__status {
  color: green;
}
.customers .customers__searchtable .customer__table .customer__tablebody .customer__tableedit {
  font-size: 16px;
}
.customers .customers__searchtable .customer__table .customer__tablebody .customer__tableedit .customer__actionbtn {
  background: red;
  color: rgb(228, 228, 228);
  cursor: pointer;
  font-size: 16px;
  padding: 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.customers .customer__addform {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 500px;
  padding: 40px;
  background: white;
  z-index: 1000;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  flex-direction: column;
  gap: 40px;
  display: none;
  height: 0px;
}
.customers .customer__addform .customer__addformitem {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.customers .customer__addform .customer__addformitem .customer__addforminput, .customers .customer__addform .customer__addformitem .customer__addformselect {
  width: 100%;
  padding: 20px;
  background: rgb(232, 232, 232);
  font-size: 1.2rem;
  outline: none;
}
.customers .customer__addform .customer__addformitem .customer__addformselect {
  background: skyblue;
  border: none;
}
.customers .customer__addform .customer__addformitem .submitcustomer {
  width: 100%;
  padding: 20px;
  font-weight: bold;
  transition: 0.5 ease-in-out all;
  background-color: skyblue;
  cursor: pointer;
}
.customers .customer__addform .customer__addformitem .submitcustomer:hover {
  background: black;
  transition: 0.5 ease-in-out all;
  color: white;
}
.customers .customer__addform .customer__addformitem .customerfile__label {
  width: 100px;
  height: 100px;
  background: rgb(223, 223, 223);
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  font-size: 0.8rem;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.customers .customer__addform .customer__addformitem .customerfile__label:hover {
  background-color: rgb(49, 198, 49);
  transition: all 0.5s ease-in-out;
}
.customers .customer__addformshow {
  height: auto;
  display: flex;
}
@media (max-width: 767.98px) {
  .customers {
    width: 100%;
    margin-top: 20px;
    height: auto;
    padding-bottom: 200px;
    border-radius: 5px;
  }
  .customers .customers__stats {
    width: 100%;
    background-color: white;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 5px;
    text-align: center;
  }
  .customers .customers__stats .customer__statsitem {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .customers .customers__stats .customer__statsitem .customer__statsitemtitle {
    font-size: 0.6rem;
    color: gray;
    width: 100%;
    font-weight: bold;
  }
  .customers .customers__stats .customer__statsitem .customer__statsitemvalue {
    font-weight: bold;
    font-size: 2rem;
  }
  .customers .customers__stats .customer__createbtn {
    padding: 20px;
    background: skyblue;
    color: black;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
  }
  .customers .customers__stats .customer__createbtn:hover {
    background: black;
    color: white;
    transition: all 0.5s ease-in-out;
  }
  .customers .customers__searchtable {
    border-radius: 5px;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .customers .customers__searchtable .customer__search {
    padding: 20px;
    width: 100%;
    height: 40px;
  }
  .customers .customers__searchtable .customer__search .customer__searchbox .search__customerinputshow {
    width: 200px;
    transition: 0.5s ease-in-out all;
  }
  .customers .customers__searchtable .customer__tabledata {
    width: 100%;
    height: auto;
    border-collapse: collapse;
  }
  .customers .customers__searchtable .customer__tableresult {
    width: 100%;
    height: 200px;
    border: none;
  }
  .customers .customers__searchtable .customer__table {
    width: 100%;
    height: 100px;
    background-color: white;
    border-collapse: collapse;
    border: none;
  }
  .customers .customers__searchtable .customer__table .customer__tablehead {
    background-color: #F8F8F8;
    padding: 20px;
    color: gray;
    font-size: 0.8rem;
  }
  .customers .customers__searchtable .customer__table .customer__tablehead .customer__tableheadrow {
    position: relative;
  }
  .customers .customers__searchtable .customer__table .customer__tablehead .customer__tableheadrow td, .customers .customers__searchtable .customer__table .customer__tablehead .customer__tableheadrow th {
    padding: 20px;
    border: none;
    border-top: 1px solid rgb(239, 239, 239);
  }
  .customers .customers__searchtable .customer__table .customer__tablebody {
    padding: 10px;
    border: none;
  }
  .customers .customers__searchtable .customer__table .customer__tablebody .customer__tablebodyrow {
    position: relative;
    font-size: 0.8rem;
  }
  .customers .customers__searchtable .customer__table .customer__tablebody .customer__tablebodyrow td, .customers .customers__searchtable .customer__table .customer__tablebody .customer__tablebodyrow th {
    padding: 20px;
    border: none;
    border-top: 1px solid rgb(239, 239, 239);
  }
  .customers .customers__searchtable .customer__table .customer__tablebody .customer__status {
    color: green;
  }
  .customers .customers__searchtable .customer__table .customer__tablebody .customer__tableedit {
    font-size: 16px;
  }
  .customers .customers__searchtable .customer__table .customer__tablebody .customer__tableedit .customer__actionbtn {
    background: red;
    color: rgb(228, 228, 228);
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    border-radius: 20px;
    font-size: 0.8rem;
  }
  .customers .customer__addform {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 500px;
    padding: 40px;
    background: white;
    z-index: 1000;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    gap: 40px;
    display: none;
    height: 0px;
  }
  .customers .customer__addform .customer__addformitem {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .customers .customer__addform .customer__addformitem .customer__addforminput, .customers .customer__addform .customer__addformitem .customer__addformselect {
    width: 100%;
    padding: 20px;
    background: rgb(232, 232, 232);
    font-size: 1.2rem;
    outline: none;
  }
  .customers .customer__addform .customer__addformitem .customer__addformselect {
    background: skyblue;
    border: none;
  }
  .customers .customer__addform .customer__addformitem .submitcustomer {
    width: 100%;
    padding: 20px;
    font-weight: bold;
    transition: 0.5 ease-in-out all;
    background-color: skyblue;
    cursor: pointer;
  }
  .customers .customer__addform .customer__addformitem .submitcustomer:hover {
    background: black;
    transition: 0.5 ease-in-out all;
    color: white;
  }
  .customers .customer__addform .customer__addformitem .customerfile__label {
    width: 100px;
    height: 100px;
    background: rgb(223, 223, 223);
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 0.8rem;
    text-align: center;
    transition: all 0.5s ease-in-out;
  }
  .customers .customer__addform .customer__addformitem .customerfile__label:hover {
    background-color: rgb(49, 198, 49);
    transition: all 0.5s ease-in-out;
  }
  .customers .customer__addformshow {
    height: auto;
    display: flex;
  }
}

.orders {
  width: 100%;
  height: 200px;
  background: red;
}

.modules {
  width: 100%;
  border-radius: 10px;
  margin-top: 40px;
}
.modules .module__switch {
  height: 30px;
  background: red;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.four {
  width: 400px;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 40px;
  margin: 20px auto;
}
.four .four__left {
  width: 100%;
  height: 200px;
  background: url("/assets/images/404.png");
  background-size: cover;
}
.four .four__right {
  width: 100%;
}
.four .four__right .large__fourtext {
  font-weight: bold;
  font-size: 10rem;
  color: skyblue;
}
.four .four__right .four__subtext {
  font-size: 0.8rem;
  color: rgb(187, 187, 187);
}
.four .four__right .four__link {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 80px;
  transition: 0.5s ease-in-out all;
}
.four .four__right .four__link:hover {
  color: red;
  transition: 0.5s ease-in-out all;
}

.cartpage {
  width: 100%;
  height: auto;
  padding: 40px 40px 200px 40px;
}
.cartpage .cartpage__title {
  font-size: 1.2rem;
}
.cartpage .cartpage__body {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 20px;
}
.cartpage .cartpage__body .carpage__left {
  background-color: rgb(235, 235, 235);
  width: 64%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
}
.cartpage .cartpage__body .carpage__left .cartpage__item {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 10px;
  border-bottom: 1px solid rgb(211, 211, 211);
}
.cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft {
  width: auto;
  display: flex;
  gap: 10px;
  height: 100%;
  align-items: center;
}
.cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__itemimagebox {
  height: 100%;
}
.cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__itemimagebox .cartpage__productimage {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__itemsize {
  grid-column: span 3;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 110%;
}
.cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__saveproduct, .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__remove {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  transition: all 0.5s ease-in-out;
}
.cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__saveproduct:hover, .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__remove:hover {
  transform: translate(5px);
  transition: all 0.5s ease-in-out;
}
.cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__saveproduct img, .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__remove img {
  width: 18px;
  height: 18px;
}
.cartpage .cartpage__body .carpage__left .cartpage__itemright {
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox {
  border: 1px solid rgb(197, 197, 197);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox .cartpage__qtyincrease, .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox .cartpage__qtydecrease {
  cursor: pointer;
}
.cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox .cartpage__qtyincrease img, .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox .cartpage__qtydecrease img {
  width: 18px;
  height: 18px;
}
.cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox .cartpage__qtycount {
  font-size: 0.9rem;
  font-weight: bold;
}
.cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_itemcosttype {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_itemcosttype .cartpage_itemcost {
  font-weight: bold;
  color: gray;
}
.cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_itemcosttype .cartpage_itemcost .cartpage__productcostvalue {
  color: black;
}
.cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_itemcosttype .cartpage_itemtype {
  color: red;
  font-size: 0.7rem;
}
.cartpage .cartpage__body .carpage__right {
  background-color: rgb(235, 235, 235);
  width: 32%;
  padding: 20px;
  border-radius: 20px;
  height: auto;
}
.cartpage .cartpage__body .carpage__right .cartpage__info {
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cartpage .cartpage__body .carpage__right .cartpage__info .cartpage__infoitem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0px;
  font-size: 0.8rem;
}
.cartpage .cartpage__body .carpage__right .cartpage__info .cartpage__infoitem .cartpage__infoitemleft {
  font-weight: bold;
}
.cartpage .cartpage__body .carpage__right .cartpage__info .cartpage__infoitem .cartpage__infoitemright {
  color: gray;
}
.cartpage .cartpage__body .carpage__right .cartpage__info .cartpage__infoitem .cartpage__infoitemright #cartpage__totalcost {
  font-weight: bold;
  color: black;
}
.cartpage .cartpage__body .carpage__right .cartpage__btn {
  width: 100%;
  padding: 1rem;
  background-color: black;
  transition: all 0.5s ease-in-out;
  color: yellow;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}
.cartpage .cartpage__body .carpage__right .cartpage__btn:hover {
  background: yellow;
  color: black;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767.98px) {
  .cartpage {
    width: 100%;
    height: auto;
    padding: 20px 20px 80px 20px;
  }
  .cartpage .cartpage__title {
    font-size: 1rem;
  }
  .cartpage .cartpage__body {
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
  }
  .cartpage .cartpage__body .carpage__left {
    width: 100%;
    border-radius: 10px;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__item {
    height: auto;
    flex-direction: column;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft {
    align-items: start;
    flex-direction: column;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__itemimagebox {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__itemimagebox .cartpage__productimage {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__itemsize {
    grid-column: span 4;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__saveproduct, .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__remove {
    grid-column: span 2;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__saveproduct img, .cartpage .cartpage__body .carpage__left .cartpage__item .cartpage__itemleft .cartpage__iteminfo .cartpage__remove img {
    width: 16px;
    height: 16px;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__itemright {
    margin-top: 20px;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox {
    border: 1px solid rgb(197, 197, 197);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox .cartpage__qtyincrease, .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox .cartpage__qtydecrease {
    cursor: pointer;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox .cartpage__qtyincrease img, .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox .cartpage__qtydecrease img {
    width: 18px;
    height: 18px;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_quantitybox .cartpage__qtycount {
    font-size: 0.9rem;
    font-weight: bold;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_itemcosttype {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_itemcosttype .cartpage_itemcost {
    font-weight: bold;
    color: gray;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_itemcosttype .cartpage_itemcost .cartpage__productcostvalue {
    color: black;
  }
  .cartpage .cartpage__body .carpage__left .cartpage__itemright .cartpage_itemcosttype .cartpage_itemtype {
    color: red;
    font-size: 0.7rem;
  }
  .cartpage .cartpage__body .carpage__right {
    width: 100%;
    border-radius: 10px;
  }
  .cartpage .cartpage__body .carpage__right .cartpage__info {
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cartpage .cartpage__body .carpage__right .cartpage__info .cartpage__infoitem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
    font-size: 0.8rem;
  }
  .cartpage .cartpage__body .carpage__right .cartpage__info .cartpage__infoitem .cartpage__infoitemleft {
    font-weight: bold;
  }
  .cartpage .cartpage__body .carpage__right .cartpage__info .cartpage__infoitem .cartpage__infoitemright {
    color: gray;
  }
  .cartpage .cartpage__body .carpage__right .cartpage__info .cartpage__infoitem .cartpage__infoitemright #cartpage__totalcost {
    font-weight: bold;
    color: black;
  }
  .cartpage .cartpage__body .carpage__right .cartpage__btn {
    width: 100%;
    padding: 20px;
    background-color: black;
    transition: all 0.5s ease-in-out;
    color: yellow;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
  }
  .cartpage .cartpage__body .carpage__right .cartpage__btn:hover {
    background: yellow;
    color: black;
    transition: all 0.5s ease-in-out;
  }
}

.gift {
  width: 100%;
  padding: 40px;
}
.gift .gift__title {
  font-weight: bold;
  font-size: 2rem;
}
.gift .form__switch {
  width: 50%;
  height: 50px;
  margin-top: 80px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.gift .form__switch .form__switchbtn {
  cursor: pointer;
  width: 200px;
  color: white;
  background-color: black;
  margin-right: 10px;
  font-weight: bold;
  padding: 20px;
  transition: 0.5s ease-in-out all;
}
.gift .form__switch .form__switchbtn:hover {
  background: skyblue;
  color: black;
  transition: 0.5s ease-in-out all;
}
.gift .gift__content {
  width: 100%;
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
.gift .gift__content .gift__left {
  width: 50%;
  height: 100%;
}
.gift .gift__content .gift__left .gift__form {
  width: 100%;
}
.gift .gift__content .gift__left .gift__form .gift__recipientselect {
  width: 100%;
  margin: 20px 0px;
  padding: 20px;
  display: block;
  outline: none;
  border: 1px solid rgb(234, 229, 229);
}
.gift .gift__content .gift__left .gift__form .gift__recipienttextinput, .gift .gift__content .gift__left .gift__form .gift__deliverydate {
  width: 100%;
  margin: 20px 0px;
  padding: 20px;
  display: block;
  outline: none;
  border: 1px solid rgb(234, 229, 229);
}
.gift .gift__content .gift__left .gift__form .gift__submitbtn {
  padding: 20px;
  background-color: black;
  color: white;
  width: 100%;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
}
.gift .gift__content .gift__left .gift__form .gift__quantitycost {
  font-weight: bold;
  font-size: 2rem;
  margin: 20px 0px;
}
.gift .gift__content .gift__right {
  width: 50%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gift .gift__content .gift__right .gift__imagebox {
  width: 300px;
  height: 300px;
  margin-top: 80px;
}
.gift .gift__content .gift__right .gift__imagebox .gift__image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 767.98px) {
  .gift {
    padding: 20px;
  }
  .gift .gift__title {
    font-size: 1.5rem;
  }
  .gift .form__switch {
    width: 100%;
    display: block;
    margin-top: 20px;
    margin-bottom: 60px;
    display: flex;
  }
  .gift .gift__content {
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .gift .gift__content .gift__left {
    width: 100%;
  }
  .gift .gift__content .gift__left .gift__form {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 80px 0px;
  }
  .gift .gift__content .gift__left .gift__form .gift__recipientselect {
    width: 100%;
    margin: 20px 0px;
    padding: 20px;
    display: block;
    outline: none;
    border: 1px solid rgb(234, 229, 229);
  }
  .gift .gift__content .gift__left .gift__form .gift__recipienttextinput, .gift .gift__content .gift__left .gift__form .gift__deliverydate {
    width: 100%;
    margin: 20px 0px;
    padding: 20px;
    display: block;
    outline: none;
    border: 1px solid rgb(234, 229, 229);
  }
  .gift .gift__content .gift__left .gift__form .gift__submitbtn {
    padding: 20px;
    background-color: black;
    color: white;
    width: 100%;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
  }
  .gift .gift__content .gift__left .gift__form .gift__quantitycost {
    font-weight: bold;
    font-size: 2rem;
    margin: 20px 0px;
  }
  .gift .gift__content .gift__right {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .gift .gift__content .gift__right .gift__imagebox {
    margin-top: 0px;
  }
  .gift .gift__content .gift__right .gift__imagebox .gift__image {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.prepaid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  height: auto;
  margin-top: 40px;
}
.prepaid .prepaid__left {
  width: 48%;
  height: auto;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prepaid .prepaid__left .prepaid__imgbox {
  width: 300px;
  height: 400px;
  overflow: hidden;
}
.prepaid .prepaid__left .prepaid__imgbox .prepaid__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.prepaid .prepaid__right {
  width: 48%;
  height: auto;
  padding: 40px;
}
.prepaid .prepaid__right .prepaid__title {
  font-weight: bold;
  font-size: 3rem;
  line-height: 100%;
}
.prepaid .prepaid__right .prepaid__subtitle {
  font-weight: normal;
  margin-top: 10px;
  font-size: 0.8rem;
  color: gray;
  width: 60%;
}
.prepaid .prepaid__right .prepaid__form {
  margin-top: 40px;
  width: 100%;
  padding: 20px 0px;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitem {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-direction: column;
  margin-bottom: 40px;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitem .prepaid__formlabel {
  width: 100%;
  font-size: 1.2rem;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitem .prepaid__productsize {
  width: 100%;
  padding: 20px;
  outline: none;
  font-weight: bold;
  font-size: 1.2rem;
  border: 1px solid rgb(207, 207, 207);
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemquantity {
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 40px;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemquantity .prepaid__quantitytitle {
  width: 100%;
  font-size: 1.2rem;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemquantity .prepaid__quantitybox {
  width: 150px;
  display: inline-flex;
  border: 1px solid rgb(207, 207, 207);
  padding: 10px;
  justify-content: space-between;
  align-items: center;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemquantity .prepaid__quantitybox .prepaid__quantity {
  min-width: 50px;
  padding: 10px;
  outline: none;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  -moz-appearance: textfield;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemquantity .prepaid__quantitybox .prepaid__quantity::-webkit-outer-spin-button, .prepaid .prepaid__right .prepaid__form .prepaid__formitemquantity .prepaid__quantitybox .prepaid__quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemquantity .prepaid__quantitybox .prepaid__increase {
  cursor: pointer;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemradio {
  width: 100%;
  margin: 20px 0px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemradio .prepaid__formlabelcheckbox {
  width: 100px;
  height: 100px;
  background: black;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemradio .prepaid__formlabelcheckbox.selected {
    background-color: skyblue;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemradio .prepaid__formlabelcheckbox .form__labelpercentage {
  font-weight: bold;
  color: red;
}
.prepaid .prepaid__right .prepaid__form .prepaid__formitemradio .prepaid__formlabelcheckbox .form__labelplan {
  font-size: 0.8rem;
}
.prepaid .prepaid__right .prepaid__form .prepaid__subtotal {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0px;
  font-size: 1.5rem;
  font-weight: bold;
}
.prepaid .prepaid__right .prepaid__form .prepaid__subtotal .prepaid__subtotalleft {
  color: gray;
}
.prepaid .prepaid__right .prepaid__form .prepaid__subtotal .prepaid__subtotalleft .prepaid__productcost {
  text-decoration: line-through;
}
.prepaid .prepaid__right .prepaid__form .prepaid__subtotal .prepaid__subtotalright {
  -webkit-text-emphasis: none;
          text-emphasis: none;
}
.prepaid .prepaid__right .prepaid__form .prepaid__submit {
  width: 100%;
  padding: 20px;
  background: black;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.prepaid .prepaid__right .prepaid__form .prepaid__submit:hover {
  background: skyblue;
  color: black;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767.98px) {
  .prepaid {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: start;
    height: auto;
    margin-top: 40px;
  }
  .prepaid .prepaid__left {
    width: 100%;
    height: auto;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .prepaid .prepaid__left .prepaid__imgbox {
    width: 300px;
    height: 400px;
    overflow: hidden;
  }
  .prepaid .prepaid__left .prepaid__imgbox .prepaid__img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .prepaid .prepaid__right {
    width: 100%;
    padding: 20px;
  }
  .prepaid .prepaid__right .prepaid__title {
    font-size: 2rem;
  }
  .prepaid .prepaid__right .prepaid__subtitle {
    width: 100%;
  }
  .prepaid .prepaid__right .prepaid__form .prepaid__formitemradio {
    width: 100%;
    margin: 20px 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .prepaid .prepaid__right .prepaid__form .prepaid__formitemradio .prepaid__formlabelcheckbox {
    width: 80px;
    height: 80px;
  }
  .prepaid .prepaid__right .prepaid__form .prepaid__formitemradio .prepaid__formlabelcheckbox .form__labelpercentage {
    font-size: 0.9rem;
  }
  .prepaid .prepaid__right .prepaid__form .prepaid__formitemradio .prepaid__formlabelcheckbox .form__labelplan {
    font-size: 0.7rem;
  }
  .prepaid .prepaid__right .prepaid__form .prepaid__subtotal {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0px;
    font-size: 0.8rem;
    font-weight: bold;
  }
  .prepaid .prepaid__right .prepaid__form .prepaid__subtotal .prepaid__subtotalleft {
    color: gray;
  }
  .prepaid .prepaid__right .prepaid__form .prepaid__subtotal .prepaid__subtotalleft .prepaid__productcost {
    text-decoration: line-through;
  }
  .prepaid .prepaid__right .prepaid__form .prepaid__subtotal .prepaid__subtotalright {
    -webkit-text-emphasis: none;
            text-emphasis: none;
  }
  .prepaid .prepaid__right .prepaid__form .prepaid__submit {
    width: 100%;
    padding: 20px;
    background: black;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
  }
  .prepaid .prepaid__right .prepaid__form .prepaid__submit:hover {
    background: skyblue;
    color: black;
    transition: all 0.5s ease-in-out;
  }
}

.account {
  width: 100%;
  height: auto;
}
.account h3 {
  margin: 20px 0px;
  text-align: center;
}
.account .account__menu {
  width: 100%;
  height: 60px;
  background: rgb(245, 245, 245);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.account .account__menu .account__link {
  cursor: pointer;
  padding-bottom: 5px;
  transition: all 0.5s ease-in-out;
  border-bottom: 2px solid rgb(245, 245, 245);
  font-weight: bold;
}
.account .account__menu .account__link:hover {
  border-bottom: 2px solid black;
  transition: all 0.5s ease-in-out;
}
.account .account__content .account__page {
  padding: 80px;
}
.account .account__content #account__profile {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.account .account__content #account__profile .account__profilegreeting {
  width: 100%;
  text-align: center;
  color: gray;
  font-style: italic;
  font-size: 1.5rem;
}
.account .account__content #account__profile .account__profilegreeting .account__profilename {
  color: black;
  font-weight: bold;
}
.account .account__content #account__profile .account__profilebox {
  padding: 20px;
  width: 100%;
  height: 150px;
  background: white;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.account .account__content #account__profile .account__profilebox .account__profilebeoxtop {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgb(190, 190, 190);
}
.account .account__content #account__profile .account__profilebox .account__profilebeoxtop .account__profiletoptext {
  font-weight: bold;
  font-size: 1.5rem;
}
.account .account__content #account__profile .account__profilebox .account__profilebeoxtop .account__profileedit {
  background: none;
  height: 40px;
  width: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.5s ease-in-out;
}
.account .account__content #account__profile .account__profilebox .account__profilebeoxtop .account__profileedit:hover {
  color: skyblue;
  transition: all 0.5s ease-in-out;
}
.account .account__content #account__profile .account__profilebox .account__profilebeoxbottom {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.account .account__content #account__profile .account__profilebox .account__profilebeoxbottom .account__infotext {
  color: rgb(111, 111, 111);
  font-size: 0.8rem;
}
.account .account__content #account__profile .account__profilebox .account__profilebeoxbottom .account__formedit {
  position: relative;
}
.account .account__content #account__profile .account__profilebox .account__profilebeoxbottom .account__formedit .account_formeditinput {
  outline: none;
  padding: 10px;
  background: rgb(244, 244, 244);
  width: 200px;
}

.account .account__content #account__profile .account__profilebox .account__profilebeoxbottom .account__formedit .account_formeditselect {
  outline: none;
  padding: 10px;
  background: rgb(244, 244, 244);
  width: 100px;
}


.account .account__content #account__profile .account__profilebox .account__profilebeoxbottom .account__formedit .account__changebtn {
  width: auto;
  padding: 10px 20px;
  cursor: pointer;
  background: rgb(235, 235, 235);
  transition: all 0.5s ease-in-out;
  font-weight: bold;
}
.account .account__content #account__profile .account__profilebox .account__profilebeoxbottom .account__formedit .account__changebtn:hover {
  background: black;
  color: white;
  transition: all 0.5s ease-in-out;
}
.account .account__content #account__orderhistory {
  width: 100%;
  height: auto;
}
.account .account__content #account__orderhistory .account__pagesearchbox {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgb(226, 226, 226);
  padding: 20px;
  gap: 20px;
}
.account .account__content #account__orderhistory .account__pagesearchbox .filter__title {
  font-weight: bold;
}
.account .account__content #account__orderhistory .account__pagesearchbox .account__searchform {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.account .account__content #account__orderhistory .account__pagesearchbox .account__searchform .account__searchformselect {
  padding: 20px;
  font-weight: bold;
  color: gray;
  width: 200px;
  outline: none;
}
.account .account__content #account__orderhistory .account__searchresult {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}
.account .account__content #account__orderhistory .account__searchresult thead {
  background-color: #f8f8f8;
  border-bottom: 2px solid #e0e0e0;
}
.account .account__content #account__orderhistory .account__searchresult thead th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.account .account__content #account__orderhistory .account__searchresult tbody tr {
  border-bottom: 1px solid #eaeaea;
}
.account .account__content #account__orderhistory .account__searchresult tbody tr:hover {
  background-color: #f5faff;
}
.account .account__content #account__orderhistory .account__searchresult tbody tr td {
  padding: 0.75rem 1rem;
  color: #555;
}
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child {
  display: flex;
  gap: 0.5rem;
}
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child .view-btn,
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child .download-btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child .view-btn.view-btn,
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child .download-btn.view-btn {
  background-color: #007bff;
  color: #fff;
}
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child .view-btn.view-btn:hover,
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child .download-btn.view-btn:hover {
  background-color: #0062cc;
}
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child .view-btn.download-btn,
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child .download-btn.download-btn {
  background-color: #28a745;
  color: #fff;
}
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child .view-btn.download-btn:hover,
.account .account__content #account__orderhistory .account__searchresult tbody tr td:last-child .download-btn.download-btn:hover {
  background-color: #218838;
}
.account .account__content #account__notifications {
  width: 100%;
  height: auto;
}
.account .account__content #account__notifications .account__noficationbox {
  width: 60%;
  margin: 0px auto;
}
.account .account__content #account__notifications .account__noficationbox .notification__card {
  margin-bottom: 20px;
  background: rgb(239, 239, 239);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.account .account__content #account__notifications .account__noficationbox .notification__card .notification__message {
  width: 100%;
  height: auto;
  font-size: 0.8rem;
}
.account .account__content #account__notifications .account__noficationbox .notification__card .delete__btn {
  width: 18px;
  height: 18px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  margin-top: 10px;
}
.account .account__content #account__notifications .account__noficationbox .notification__card .delete__btn:hover {
  transition: all 0.5s ease-in-out;
  transform: translateX(10px);
}
@media (max-width: 767.98px) {
  .account {
    width: 100%;
    height: auto;
  }
  .account h3 {
    margin: 20px 0px;
    text-align: center;
  }
  .account .account__menu {
    height: 40px;
    gap: 10px;
  }
  .account .account__menu .account__link {
    font-size: 0.8rem;
  }
  .account .account__content .account__page {
    padding: 20px;
  }
  .account .account__content #account__profile {
    gap: 20px;
  }
  .account .account__content #account__profile .account__profilegreeting {
    font-size: 1.1rem;
  }
  .account .account__content #account__profile .account__profilebox {
    padding: 10px;
  }
  .account .account__content #account__profile .account__profilebox .account__profilebeoxtop {
    align-items: center;
  }
  .account .account__content #account__profile .account__profilebox .account__profilebeoxtop .account__profiletoptext {
    font-size: 1.1rem;
  }
  .account .account__content #account__profile .account__profilebox .account__profilebeoxtop .account__profileedit {
    font-size: 0.7rem;
  }
  .account .account__content #account__profile .account__profilebox .account__profilebeoxbottom {
    align-items: center;
    flex-direction: column-reverse;
  }
  .account .account__content #account__profile .account__profilebox .account__profilebeoxbottom .account__infotext {
    color: rgb(111, 111, 111);
    font-size: 0.8rem;
  }
  .account .account__content #account__profile .account__profilebox .account__profilebeoxbottom .account__formedit {
    width: 100%;
    display: flex;
    padding: 5px;
    gap: 5px;
  }
  .account .account__content #account__orderhistory {
    width: 100%;
    height: auto;
  }
  .account .account__content #account__orderhistory .account__pagesearchbox .account__searchform {
    flex-direction: column;
    gap: 20px;
  }
  .account .account__content #account__notifications {
    width: 100%;
    height: auto;
  }
  .account .account__content #account__notifications .account__noficationbox {
    width: 60%;
    margin: 0px auto;
  }
  .account .account__content #account__notifications .account__noficationbox .notification__card {
    margin-bottom: 20px;
    background: rgb(239, 239, 239);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }
  .account .account__content #account__notifications .account__noficationbox .notification__card .notification__message {
    width: 100%;
    height: auto;
    font-size: 0.8rem;
  }
  .account .account__content #account__notifications .account__noficationbox .notification__card .delete__btn {
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    margin-top: 10px;
  }
  .account .account__content #account__notifications .account__noficationbox .notification__card .delete__btn:hover {
    transition: all 0.5s ease-in-out;
    transform: translateX(10px);
  }
}

.login {
  width: 100%;
  height: auto;
  display: flex;
  /*justify-content: center;*/
  flex-direction: column;
  /*align-items: center;*/
}
.login .login__box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  padding: 80px;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3), rgba(0, 0, 255, 0.4)), url("/assets/images/hero.png");
}
.login .login__box .login__form {
  width: 500px;
  height: auto;
  background-color: black;
  padding: 40px;
  color: white;
}
.login .login__box .login__form .auth__logo {
  font-weight: bold;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.login .login__box .login__form .auth__formitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
  color: black;
  margin-top: .6rem;
  position: relative;
}
.login .login__box .login__form .auth__formitem #password__toggle, .login .login__box .login__form .auth__formitem #password__toggle_two {
  position: absolute;
  z-index: 100;
  top: 2.8rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.pam2rem {
    height: 2rem;
}
.login .login__box .login__form .auth__formitem .authform__label {
  width: 100%;
  padding: .4rem 0px;
  font-size: 1rem;
  color: white;
}
.login .login__box .login__form .auth__formitem .authform__input, .login .login__box .login__form .auth__formitem select {
  width: 100%;
  padding: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border 0.3s, box-shadow 0.3s;
}
select.authform__input {
    background-image: url('/assets/icons/arrow-down.svg'); /* add your arrow icon */
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}
.login .login__box .login__form .authform__btn {
  margin-top: 40px;
  padding: 20px;
  background: skyblue;
  color: black;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  width: 100%;
  font-weight: bold;
  font-size: 1rem;
}
.login .login__box .login__form .authform__btn:hover {
  background: white;
  transition: 0.3s ease-in-out;
}
.login .login__box .login__form .switchauth {
  color: white;
  margin-top: 80px;
}
.login .login__box .login__form .switchauth a {
  color: skyblue;
  transition: 0.3s all ease-in-out;
}
.login .login__box .login__form .switchauth a:hover {
  color: red;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 767.98px) {
  .login {
    width: 100%;
    height: auto;
    display: flex;
    /*justify-content: center;*/
    flex-direction: column;
    /*align-items: center;*/
  }
  .login .login__box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    padding: 20px;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3), rgba(0, 0, 255, 0.4)), url("/assets/images/hero.png");
  }
  .login .login__box .login__form {
    width: 100%;
    height: auto;
    background-color: black;
    padding: 40px;
    color: white;
  }
  .login .login__box .login__form .auth__logo {
    font-weight: bold;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
  }
  .login .login__box .login__form .auth__formitem {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
    margin-top: 10px;
    position: relative;
  }
  .login .login__box .login__form .auth__formitem #password__toggle, .login .login__box .login__form .auth__formitem #password__toggle_two {
    position: absolute;
    z-index: 100;
    top: 4.2rem;
    right: 1rem;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
  }
  .login .login__box .login__form .auth__formitem .authform__label {
    width: 100%;
    padding: 10px 0px;
    font-size: 1rem;
    color: white;
  }
  .login .login__box .login__form .auth__formitem .authform__input, .login .login__box .login__form .auth__formitem select {
    width: 100%;
    padding: 20px;
  }
  .login .login__box .login__form .authform__btn {
    margin-top: 40px;
    padding: 20px;
    background: skyblue;
    color: black;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
  }
  .login .login__box .login__form .authform__btn:hover {
    background: white;
    transition: 0.3s ease-in-out;
  }
  .login .login__box .login__form .switchauth {
    color: white;
    margin-top: 80px;
  }
  .login .login__box .login__form .switchauth a {
    color: skyblue;
    transition: 0.3s all ease-in-out;
  }
  .login .login__box .login__form .switchauth a:hover {
    color: red;
    transition: 0.3s all ease-in-out;
  }
}/*# sourceMappingURL=styles.css.map */

/*toast notification*/
/* Toast container */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Toast message */
.toast {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out, fadeOut 0.3s ease-in 4.2s forwards;
    opacity: 0.95;
    min-width: 220px;
    max-width: 320px;
    position: relative;
}

.toast.success { background-color: #22c55e; }
.toast.error   { background-color: #ef4444; }
.toast.info    { background-color: #3b82f6; }
.toast.warning { background-color: #f97316; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}

@keyframes fadeOut {
    to   { opacity: 0; transform: translateX(100%); }
}


/**/
.dropdown {
    position: relative;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 8rem;
    color: #333;
    background: white;
    list-style: none;
    padding: 0.5em 0;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

.dropdown__menu li {
    padding: 0.5em 1em;
}

.nav__iconsitem {
    cursor: pointer;
}

.dropdown__menu li a {
    color: #333;
    text-decoration: none;
}

.dropdown:hover .dropdown__menu {
    display: block;
}


/**/
.mystic__pager {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.mystic__pagebutton {
    padding: 8px 14px;
    background: #2b7a78;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.mystic__pagebutton.active {
    background: #17252a;
}

.mystic__pagebutton:hover {
    background: #3aafa9;
}


/**/
.account_formeditselect {
    appearance: none; /* Hide default arrow */
    background-image: url("/assets/icons/arrow-down.svg")!important;
    background-repeat: no-repeat!important;
    background-position: right .4rem center!important;
    background-size: .8rem!important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.account_formeditselect:focus {
    outline: none;
}

.prepaid__productsize {
    appearance: none; /* Hide default arrow */
    background-image: url("/assets/icons/arrow-down.svg")!important;
    background-repeat: no-repeat!important;
    background-position: right 1rem center!important;
    background-size: .8rem!important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.prepaid__productsize:focus {
    outline: none;
}

.submenu__linkitem {
    padding: .6rem;
}