@font-face {
  font-display: swap;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/roboto.woff2) format("woff2");
  unicode-range: U+00??, U+0131, U+0152-0153, U+02bb-02bc, U+02c6, U+02da, U+02dc, U+2000-206f, U+2074, U+20ac, U+2122, U+2191, U+2193, U+2212, U+2215, U+feff, U+fffd;
}
@font-face {
  font-display: swap;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/roboto2.woff2) format("woff2");
  unicode-range: U+00??, U+0131, U+0152-0153, U+02bb-02bc, U+02c6, U+02da, U+02dc, U+2000-206f, U+2074, U+20ac, U+2122, U+2191, U+2193, U+2212, U+2215, U+feff, U+fffd;
}
@font-face {
  font-display: swap;
  font-family: Roboto Condensed;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/roboto3.woff2) format("woff2");
  unicode-range: U+00??, U+0131, U+0152-0153, U+02bb-02bc, U+02c6, U+02da, U+02dc, U+2000-206f, U+2074, U+20ac, U+2122, U+2191, U+2193, U+2212, U+2215, U+feff, U+fffd;
}
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif !important;
}
body .btn {
  background-color: #fbb44a;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
body .btn:hover {
  background-color: #fcc36e;
}
body .wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  
}
body .wrapper .header {
  flex-shrink: 0;
  width: 100%;
  z-index: 11;
}
body .wrapper .header .header-content {
  height: 50px;
  background-color: #703d92;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px;
}
body .wrapper .header .header-content > div {
  width: calc(100% / 3);
  text-align: center;
}
body .wrapper .header .header-content .secondary-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
body .wrapper .header .header-content .secondary-logo .text-xl {
  color: #ffffff;
  font-size: 20px;
}
body .wrapper .header .header-content .secondary-logo svg {
  color: #fbb44a;
}
body .wrapper .header .header-content .action-mobile {
  display: none;
}
body .wrapper .header .main-nav {
  width: 400px;
  position: fixed;
  background-color: #ffffff;
  height: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  transform: translateX(-360px);
  border-right: #eeeeee 1px solid;
  box-shadow: rgba(1, 1, 1, 0.1) 1px 1px 5px;
  transition: all ease 0.5s;
  z-index: 9;
}
body .wrapper .header .main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body .wrapper .header .main-nav ul li {
  padding: 10px;
  font-size: 18px;
}
body .wrapper .header .main-nav ul li.home {
  display: none;
}
body .wrapper .header .main-nav ul li a {
  text-decoration: none;
  color: #334155;
}
body .wrapper .header .main-nav ul li a i {
  padding-right: 10px;
}
body .wrapper .header .main-nav ul li a:hover {
  color: #111111;
}
body .wrapper .header .main-nav ul li.highlight a {
  color: #fbb44a;
}
body .wrapper .header .main-nav ul li.highlight a:hover {
  color: #fcc36e;
}
body .wrapper .header .main-nav .btn-nav {
  position: absolute;
  right: -15px;
  width: 30px;
  height: 30px;
  border: #703d92 1px solid;
  border-radius: 50%;
  display: block;
  text-align: center;
  line-height: 30px;
  color: #703d92;
  background-color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
body .wrapper .header .main-nav .btn-nav i{
	line-height:30px;
}
body .wrapper .content {
  background-color: #fff;
  height: 100%;
  overflow: auto;
  min-height: 0;
  display: flex;
  align-content: flex-start;
  justify-content: center;
}
body .wrapper.nav-opened .main-nav {
  transform: translateX(0);
  transition: all ease 0.5s;
}
body .wrapper.nav-opened .main-nav .btn-nav {
  transform: translateY(-50%) rotate(-180deg);
}
body .wrapper.nav-opened:after {
  content: '';
  display: block;
  background-color: rgba(1, 1, 1, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
body .dialog {
  background-color: rgba(1, 1, 1, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  display: none;
}
body .dialog .dialog-content {
  position: absolute;
  background-color: #e4e4e4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: max-content;
  width: max-content;
  max-width: calc(100vw - 100px);
  border-radius: 10px;
  padding: 40px;
  box-sizing: border-box;
}
body .dialog .dialog-content .dialog-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 20px;
  cursor: pointer;
  color: #747474;
}
body .dialog .dialog-content .dialog-close:hover {
  color: #333333;
}
body .dialog .dialog-content .title {
  text-align: center;
  font-size: 30px;
}
body .dialog .dialog-content .description {
  padding: 40px 0;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}
body .dialog .dialog-content .store ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
body .dialog .dialog-content .store ul li img {
  height: 60px;
}
@media only screen and (max-width: 450px) {
  body .wrapper .header .header-content .secondary-logo {
    width: 100%;
    min-width: 0;
    text-align: center;
    justify-content: center;
  }
  body .wrapper .header .header-content .primary-logo, body .wrapper .header .header-content .action {
    display: none;
  }
  body .wrapper .header .header-content .action-mobile {
    display: block;
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
  }
   body .wrapper .header .header-content .action-mobile i{

		line-height:40px;
   }
  body .wrapper .header .main-nav {
    width: 100%;
    transform: translateX(100%);
    justify-content: space-between;
    padding: 0;
  }
  body .wrapper .header .main-nav ul.menu-header {
    display: flex;
    flex-wrap: wrap;
    margin: 0px 20px;
    gap: 20px;
  }
  body .wrapper .header .main-nav ul.menu-header li {
    width: calc((100% - 20px) / 2);
    box-sizing: border-box;
    padding: 0;
  }
  body .wrapper .header .main-nav ul.menu-header li a {
    color: #334155;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: center;
    font-size: 16px;
  }
  body .wrapper .header .main-nav ul.menu-header li a > i {
    font-size: 20px;
  }
  body .wrapper .header .main-nav ul.menu-header li a:hover {
    color: #111111;
  }
  body .wrapper .header .main-nav ul.menu-footer {
    display: flex;
    flex-wrap: wrap;
    background-color: #f7f7f7;
  }
  body .wrapper .header .main-nav ul.menu-footer li {
    width: 50%;
    box-sizing: border-box;
    text-align: center;
    padding: 30px 20px;
    font-weight: normal;
  }
  body .wrapper .header .main-nav ul.menu-footer li.home {
    display: block;
  }
  body .wrapper .header .main-nav .btn-nav {
    display: none;
  }
  body .wrapper.nav-opened .header .header-content .action-mobile {
    transform: rotate(-180deg);
  }
  body .wrapper.nav-opened .header .main-nav {
    transform: translateX(0);
    transition: all ease 0.5s;
  }
  body .wrapper.nav-opened .header .main-nav .btn-nav {
    transform: translateX(-50%) rotate(-180deg);
  }
}

/*# sourceMappingURL=style.css.map */