.displayResposive {
  display: none;
}
@media screen and (min-width: 1px) and (max-width: 576px) {
  .displayResposive.show-xs {
    display: block;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .displayResposive.show-sm {
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .displayResposive.show-md {
    display: block;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .displayResposive.show-lg {
    display: block;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .displayResposive.show-xl {
    display: block;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1920px) {
  .displayResposive.show-xxl {
    display: block;
  }
}
@media screen and (min-width: 1921px) {
  .displayResposive.show-3xl {
    display: block;
  }
}

html.debugMode:before {
  z-index: 10000;
  content: "";
  position: fixed;
  right: 5px;
  top: 5px;
  background: red;
  color: #fff;
  display: none;
  width: 35px;
  height: 35px;
  padding: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
html.debugMode:after {
  z-index: 10000;
  content: "";
  position: fixed;
  right: 40px;
  top: 5px;
  background: blue;
  color: #fff;
  display: none;
  width: 35px;
  height: 35px;
  padding: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@media screen and (min-width: 1px) {
  html.debugMode:after {
    content: "xs";
    display: flex;
  }
}
@media screen and (min-width: 577px) {
  html.debugMode:after {
    content: "sm";
    display: flex;
  }
}
@media screen and (min-width: 769px) {
  html.debugMode:after {
    content: "md";
    display: flex;
  }
}
@media screen and (min-width: 993px) {
  html.debugMode:after {
    content: "lg";
    display: flex;
  }
}
@media screen and (min-width: 1201px) {
  html.debugMode:after {
    content: "xl";
    display: flex;
  }
}
@media screen and (min-width: 1401px) {
  html.debugMode:after {
    content: "xxl";
    display: flex;
  }
}
@media screen and (min-width: 1921px) {
  html.debugMode:after {
    content: "3xl";
    display: flex;
  }
}
@media screen and (min-width: 2561px) {
  html.debugMode:after {
    content: "4xl";
    display: flex;
  }
}
@media screen and (max-width: 2559px) {
  html.debugMode:before {
    content: "4xl";
    display: flex;
  }
}
@media screen and (max-width: 1919px) {
  html.debugMode:before {
    content: "3xl";
    display: flex;
  }
}
@media screen and (max-width: 1399px) {
  html.debugMode:before {
    content: "xxl";
    display: flex;
  }
}
@media screen and (max-width: 1199px) {
  html.debugMode:before {
    content: "xl";
    display: flex;
  }
}
@media screen and (max-width: 991px) {
  html.debugMode:before {
    content: "lg";
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  html.debugMode:before {
    content: "md";
    display: flex;
  }
}
@media screen and (max-width: 575px) {
  html.debugMode:before {
    content: "sm";
    display: flex;
  }
}
@media screen and (max-width: -1px) {
  html.debugMode:before {
    content: "xs";
    display: flex;
  }
}
@media screen and (max-width: 576px) {
  .headerTop .container {
    justify-content: center;
  }
  .headerTop .text {
    font-size: 10px;
    text-align: center;
  }
  .headerTop .links {
    display: none;
  }
  header {
    z-index: 6;
  }
  header .logo {
    height: 30px;
  }
  header .rightMenus {
    gap: 12px;
  }
  header .rightMenus .searchArea {
    z-index: 5;
    width: auto;
  }
  header .rightMenus .searchArea .searchMenu {
    position: absolute;
    background: #fff;
    z-index: 5;
    bottom: 0;
    transform: translateY(50px);
    width: calc(100vw - 40px) !important;
    left: 20px;
    box-shadow: -30.782px 19.239px 38.477px 0px rgba(11, 69, 86, 0.08);
  }
  header .rightMenus .searchArea.active {
    width: auto;
  }
  header .rightMenus .openMobileMenu {
    display: block;
    order: 4;
  }
  header .rightMenus .userMenuArea {
    position: unset;
    order: 3;
  }
  header .rightMenus .userMenuArea .openUserMenu {
    padding: 7px;
  }
  header .rightMenus .userMenuArea .openUserMenu .arrow, header .rightMenus .userMenuArea .openUserMenu .text {
    display: none;
  }
  header .rightMenus .userMenuArea .userMenu {
    bottom: 32px;
    width: calc(100vw - 30px);
    left: 50%;
    transform: translateY(100%) translateX(-50%);
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .headerTop .links {
    display: none;
  }
  header .rightMenus .searchArea.active {
    width: 200px;
  }
  header .rightMenus .openMobileMenu {
    display: block;
    order: 4;
  }
  header .rightMenus .userMenuArea {
    position: unset;
    order: 3;
  }
  header .rightMenus .userMenuArea .openUserMenu {
    padding: 7px;
  }
  header .rightMenus .userMenuArea .openUserMenu .arrow, header .rightMenus .userMenuArea .openUserMenu .text {
    display: none;
  }
  header .rightMenus .userMenuArea .userMenu {
    bottom: 32px;
    width: calc(100vw - 30px);
    left: 50%;
    transform: translateY(100%) translateX(-50%);
  }
  .mobileMenu {
    padding-top: 78px;
  }
  .mobileMenu .logo {
    height: 36px;
  }
  .mobileMenu .close {
    top: 79px;
    right: 47px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .headerTop .container {
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .headerTop .links {
    gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .footerTop {
    padding: 30px 0;
  }
  .footerTop .container {
    text-align: center;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  footer .logo {
    margin: 0 auto;
  }
  footer .middle {
    flex-direction: column;
    gap: 40px;
  }
  footer .menus {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  footer .menus .menu {
    width: 100%;
    text-align: center;
  }
  footer .infoSide {
    text-align: center;
    max-width: 100%;
  }
  footer .infoSide .social {
    justify-content: center;
  }
  footer .infoSide .more {
    margin-bottom: 30px;
    justify-content: center;
  }
  footer .copyright {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  footer .copyright .policyLinks {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .footerTop {
    padding: 30px 0;
  }
  .footerTop .container {
    text-align: center;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  footer .logo {
    margin: 0 auto;
  }
  footer .middle {
    flex-direction: column;
    gap: 40px;
  }
  footer .menus {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 30px;
  }
  footer .menus .menu {
    text-align: center;
    width: calc(50% - 15px);
  }
  footer .infoSide {
    text-align: center;
    max-width: 100%;
  }
  footer .infoSide .social {
    justify-content: center;
  }
  footer .infoSide .more {
    margin-bottom: 30px;
    justify-content: center;
  }
  footer .copyright {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  footer .copyright .policyLinks {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .footerTop {
    padding: 30px 0;
  }
  .footerTop .container {
    text-align: center;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  footer .middle {
    flex-direction: column;
    gap: 40px;
  }
  footer .infoSide .more {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  footer .infoSide {
    max-width: 320px;
  }
}
@media screen and (max-width: 576px) {
  section.mainWidgets .container {
    flex-direction: column;
  }
  section.mainWidgets .widget1 {
    width: 100%;
  }
  section.mainWidgets .widget1:last-child {
    /*display: none;*/
  }
  .mainSlideArea {
    padding: 45px 20px 30px;
    aspect-ratio: unset !important;
  }
  .mainSlideArea .container {
    flex-direction: column;
  }
  .mainSlideArea .titleArea {
    text-align: center;
    margin-bottom: 40px;
  }
  .mainSlideArea .titleArea .title {
    font-size: 28px;
  }
  .mainSlideArea .titleArea .description {
    font-size: 14px;
  }
  .mainSlideArea .imgArea {
    top: unset;
    transform: unset;
    position: relative;
    aspect-ratio: unset;
    height: auto;
  }
  section.mainSlider2 .mainSlideArea, section.mainSlider3 .mainSlideArea {
    padding: 60px 20px 20px;
  }
  section.mainSlider2 .mainSlideArea .titleArea, section.mainSlider3 .mainSlideArea .titleArea {
    margin: 0 auto 40px;
  }
  section.mainSlider2 .mainSlideArea .title, section.mainSlider3 .mainSlideArea .title {
    margin: 0 auto 20px;
  }
  section.mainSlider2 .mainSlideArea .imgArea, section.mainSlider3 .mainSlideArea .imgArea {
    top: unset;
    transform: unset;
    position: relative;
    aspect-ratio: unset;
    height: auto;
  }
  section.mainSlider3 .col-xl-3 {
    position: relative;
    z-index: 1;
    margin: -50px auto 0;
  }
  section.mainSlider3 .mainSlideArea {
    padding-bottom: 60px;
  }
  section.mainSlider3 .mainSlideArea .imgArea {
    aspect-ratio: unset;
  }
  section.mainSlider4 .mainSlideArea .imgArea {
    aspect-ratio: unset;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .mainSlideArea {
    padding: 45px 20px 30px;
    aspect-ratio: unset;
  }
  .mainSlideArea .container {
    flex-direction: column;
  }
  .mainSlideArea .titleArea {
    text-align: center;
    margin-bottom: 40px;
  }
  .mainSlideArea .titleArea .title {
    font-size: 28px;
  }
  .mainSlideArea .titleArea .description {
    font-size: 14px;
  }
  .mainSlideArea .imgArea {
    top: unset;
    transform: unset;
    position: relative;
    aspect-ratio: 315/153;
    max-width: 500px;
    margin: 0 auto;
    height: auto;
  }
  .mainSlideArea .imgArea img {
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: contain;
       object-fit: contain;
    aspect-ratio: 4/4;
    display: block;
  }
  section.mainWidgets .container {
    flex-direction: column;
  }
  section.mainWidgets .widget1 {
    width: 100%;
  }
  section.mainSlider2 .mainSlideArea, section.mainSlider3 .mainSlideArea {
    padding: 60px 0 20px 20px;
  }
  section.mainSlider2 .mainSlideArea .titleArea, section.mainSlider3 .mainSlideArea .titleArea {
    margin: 0 auto 40px;
  }
  section.mainSlider2 .mainSlideArea .title, section.mainSlider3 .mainSlideArea .title {
    margin: 0 auto 20px;
  }
  section.mainSlider3 .col-xl-3 {
    position: relative;
    z-index: 1;
    margin: -60px auto 0;
  }
  section.mainSlider3 .mainSlideArea {
    padding-bottom: 60px;
  }
  section.mainSlider3 .mainSlideArea .imgArea {
    aspect-ratio: unset;
  }
  section.mainSlider4 .mainSlideArea .imgArea {
    aspect-ratio: unset;
    max-width: 75%;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .mainSlideArea {
    padding: 45px 20px 30px;
    aspect-ratio: unset;
  }
  .mainSlideArea .container {
    flex-direction: column;
  }
  .mainSlideArea .titleArea {
    margin-bottom: 40px;
  }
  .mainSlideArea .titleArea .title {
    font-size: 28px;
  }
  .mainSlideArea .titleArea .description {
    font-size: 14px;
  }
  .mainSlideArea .imgArea {
    top: unset;
    transform: unset;
    position: relative;
    aspect-ratio: 315/153;
    max-width: 500px;
    margin: 0 auto;
    height: auto;
  }
  .mainSlideArea .imgArea img {
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: contain;
       object-fit: contain;
    aspect-ratio: 4/4;
    display: block;
  }
  section.mainWidgets .container {
    flex-direction: column;
  }
  section.mainWidgets .widget1 {
    width: 100%;
  }
  section.mainSlider2 .mainSlideArea, section.mainSlider3 .mainSlideArea {
    padding: 60px 0 20px 20px;
  }
  section.mainSlider2 .mainSlideArea .titleArea, section.mainSlider3 .mainSlideArea .titleArea {
    margin: 0 auto 40px;
  }
  section.mainSlider3 .col-xl-3 {
    display: none;
  }
  section.mainSlider3 .mainSlideArea .imgArea {
    aspect-ratio: unset;
  }
  section.mainSlider4 .mainSlideArea .imgArea {
    aspect-ratio: unset;
    max-width: 75%;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .mainSlideArea {
    height: 500px;
    aspect-ratio: unset !important;
  }
  .mainSlideArea .imgArea {
    width: 40%;
  }
  section.mainSlider2 .mainSlideArea .imgArea, section.mainSlider3 .mainSlideArea .imgArea {
    width: 35%;
  }
  section.mainSlider3 .col-xl-3 {
    position: relative;
    z-index: 1;
    margin: -60px auto 0;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .mainSlideArea {
    height: 500px;
    aspect-ratio: unset !important;
  }
  .mainSlideArea .imgArea {
    width: 40%;
  }
  section.mainSlider3 .mainSlideArea {
    display: flex;
    align-items: center;
    padding: 30px 0 30px 30px;
  }
}
@media screen and (max-width: 576px) {
  .blogCard {
    padding: 25px 20px;
  }
  .blogCard .content {
    margin-top: 30px;
  }
  .blogCard .content .description {
    margin: 25px 0;
  }
  .blogCard .content .title {
    font-size: 20px;
  }
  .blogCard .content .bottom {
    margin-top: 30px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .blogCard {
    padding: 40px 45px;
  }
  .blogCard .content {
    margin-top: 30px;
  }
  .blogCard .content .description {
    margin: 25px 0;
  }
  .blogCard .content .title {
    font-size: 20px;
  }
  .blogCard .content .bottom {
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .blogCard {
    padding: 40px 45px;
  }
  .blogCard .content {
    margin-top: 30px;
  }
  .blogCard .content .description {
    margin: 25px 0;
  }
  .blogCard .content .title {
    font-size: 20px;
  }
  .blogCard .content .bottom {
    margin-top: 30px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .blogCard {
    padding: 40px 45px;
  }
  .blogCard .content {
    margin-top: 30px;
  }
  .blogCard .content .description {
    margin: 25px 0;
  }
  .blogCard .content .title {
    font-size: 20px;
  }
  .blogCard .content .bottom {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .blogCard {
    padding: 55px;
  }
}
@media screen and (max-width: 576px) {
  section.parts > .container > .text {
    padding: 0 20px;
    margin: 30px 0;
  }
}
@media screen and (max-width: 576px) {
  section.successContent .successArea .top {
    padding: 55px 30px 55px;
  }
  section.successContent .successArea .top .title {
    font-size: 20px;
    line-height: 28px;
  }
  section.successContent .successArea .info {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
  section.successContent .successArea .bottom {
    padding: 30px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.successContent .successArea .top {
    padding: 55px 30px 55px;
  }
  section.successContent .successArea .top .title {
    font-size: 20px;
    line-height: 28px;
  }
  section.successContent .successArea .info {
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px;
    text-align: center;
  }
  section.successContent .successArea .bottom {
    padding: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.successContent .successArea .top {
    padding: 65px 40px 65px;
  }
  section.successContent .successArea .top .title {
    font-size: 20px;
    line-height: 28px;
  }
  section.successContent .successArea .info {
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px;
    text-align: center;
  }
  section.successContent .successArea .bottom {
    padding: 40px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.successContent .successArea .info {
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .loginForm .titleArea {
    min-height: 275px;
    padding: 30px 30px 65px;
  }
  .loginForm .titleArea:after {
    display: none;
  }
  .loginForm form {
    padding: 0 30px 30px;
  }
  .loginForm form .formContent .row > div {
    padding: 0;
  }
  .loginForm .bottom {
    flex-wrap: wrap;
    gap: 20px 10px;
    margin-bottom: 40px;
  }
  .loginForm .loginBtn {
    padding: 20px 65px;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .loginForm .titleArea {
    min-height: 275px;
    padding: 30px 30px 65px;
  }
  .loginForm form {
    padding: 0 30px 30px;
  }
  .loginForm .bottom {
    flex-wrap: wrap;
    gap: 20px 10px;
    margin-bottom: 40px;
  }
  .loginForm .loginBtn {
    padding: 20px 65px;
    margin: 0 auto;
    display: block;
  }
  .loginForm.type2 .titleArea:after {
    width: 165px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .loginForm .titleArea {
    min-height: 275px;
    padding: 50px 50px 65px;
  }
  .loginForm form {
    padding: 0 50px 50px;
  }
  .loginForm .bottom {
    flex-wrap: wrap;
    gap: 20px 10px;
    margin-bottom: 40px;
  }
  .loginForm .loginBtn {
    padding: 20px 65px;
    margin: 0 auto;
    display: block;
  }
  .loginForm.type2 .titleArea:after {
    width: 165px;
    top: 120px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .loginForm .titleArea {
    min-height: 275px;
    padding: 30px 30px 65px;
  }
  .loginForm form {
    padding: 0 30px 30px;
  }
  .loginForm .bottom {
    flex-wrap: wrap;
    gap: 20px 10px;
    margin-bottom: 40px;
  }
  .loginForm .loginBtn {
    padding: 20px 65px;
    margin: 0 auto;
    display: block;
  }
  .loginForm.type2 .titleArea:after {
    width: 165px;
    top: 120px;
  }
}
@media screen and (max-width: 576px) {
  .campaignItemCard {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }
  .campaignItemCard .content .info {
    font-size: 20px;
    line-height: 30px;
  }
  section.campaignsContent .approachingCampaigns {
    margin-top: 30px;
  }
  section.campaignsContent .approachingCampaigns .title {
    margin-bottom: 15px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .campaignItemCard {
    padding: 20px;
    gap: 20px;
  }
  .campaignItemCard .content .info {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 576px) {
  section.blogDetailContent .content {
    margin-top: 30px;
  }
  section.blogDetailContent .content .text {
    margin-bottom: 20px;
  }
  section.blogDetailContent .content .text .title {
    font-size: 20px;
    padding: 25px 30px;
  }
  .otherBlogsCard {
    padding: 20px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.blogDetailContent .content {
    margin-top: 30px;
  }
  section.blogDetailContent .content .text {
    margin-bottom: 20px;
  }
  section.blogDetailContent .content .text .title {
    font-size: 20px;
    padding: 25px 30px;
  }
  .otherBlogsCard {
    padding: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.blogDetailContent .content .text .title {
    font-size: 21px;
    padding: 35px 0;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.blogDetailContent .content .text .title {
    padding: 35px 0;
  }
}
@media screen and (max-width: 576px) {
  section.cargoContent .cargoArea .titleArea {
    padding: 30px 30px 100px;
  }
  section.cargoContent .cargoArea .titleArea .title {
    font-size: 18px;
  }
  section.cargoContent .cargoArea .titleArea .imgArea {
    z-index: -1;
    opacity: 0.5;
  }
  section.cargoContent .cargoArea .cargo {
    padding: 0 15px 30px;
  }
  section.cargoContent .cargoArea .cargo .cargoForm {
    flex-direction: column;
  }
  section.cargoContent .cargoArea .cargo .text {
    margin: 0;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.cargoContent .cargoArea .titleArea {
    padding: 30px 30px 100px;
  }
  section.cargoContent .cargoArea .titleArea .title {
    font-size: 18px;
  }
  section.cargoContent .cargoArea .titleArea .imgArea {
    z-index: -1;
    opacity: 0.5;
  }
  section.cargoContent .cargoArea .cargo {
    padding: 0 15px 30px;
  }
  section.cargoContent .cargoArea .cargo .cargoForm {
    flex-direction: column;
  }
  section.cargoContent .cargoArea .cargo .cargoForm .customInput1 {
    max-width: 100%;
  }
  section.cargoContent .cargoArea .cargo .text {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.cargoContent .cargoArea .titleArea .imgArea {
    z-index: -1;
    opacity: 0.5;
  }
  section.cargoContent .cargoArea .cargo .cargoForm .cargoBtn {
    white-space: nowrap;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.cargoContent .cargoArea .titleArea .imgArea {
    right: 40px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  section.cargoContent .cargoArea .titleArea .imgArea {
    right: 40px;
  }
}
@media screen and (max-width: 576px) {
  .account .top .profileInfo {
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 30px;
    gap: 10px;
    justify-content: space-between;
  }
  .account .top .profileInfo .out, .account .top .profileInfo .name {
    margin: 0;
  }
  .account .top .profileInfo .return {
    padding: 18px 15px;
    gap: 0;
  }
  .account .top .profileInfo .return .icon {
    display: none;
  }
  .account .top .userInfo {
    text-align: center;
    padding: 0 30px 30px;
  }
  .account .bottom {
    padding: 40px 30px;
  }
  .orderItem .title {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
  }
  .orderItem .title .item {
    text-align: center;
  }
  .orderItem .title .item span {
    justify-content: center;
  }
  .orderItem .title .item.stage {
    margin: 0;
  }
  .orderItem .title:after, .orderItem .title:before {
    display: none;
  }
  .orderItem .menu {
    padding: 0 30px;
    text-align: center;
  }
  .orderItem .menu .orderDetail {
    justify-content: center;
  }
  .orderItem .menu .orderDetail .addressItem span, .orderItem .menu .orderDetail .address span {
    justify-content: center;
  }
  .orderItem.active .menu {
    padding: 20px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .account .top .profileInfo {
    padding: 40px 30px;
    gap: 20px;
  }
  .account .top .userInfo {
    text-align: center;
    padding: 0 30px 30px;
  }
  .account .bottom {
    padding: 40px 30px;
  }
  .orderItem .title {
    gap: 20px;
    padding: 40px 60px 40px 20px;
  }
  .orderItem .title .item {
    font-size: 13px;
    white-space: nowrap;
  }
  .orderItem .title .item.stage {
    margin: 0;
  }
  .orderItem .title:after {
    right: 25px;
  }
  .orderItem .title:before {
    right: 32px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .account .top .profileInfo {
    padding: 40px 50px;
    gap: 20px;
  }
  .account .top .userInfo {
    text-align: center;
    padding: 0 50px 30px;
  }
  .account .bottom {
    padding: 40px 50px;
  }
  .orderItem .menu .orderDetail {
    gap: 30px;
  }
  .orderItem .title {
    gap: 20px;
    padding: 40px 60px 40px 20px;
  }
  .orderItem .title .item {
    white-space: nowrap;
  }
  .orderItem .title .item.stage {
    margin: 0;
  }
  .orderItem .title:after {
    right: 25px;
  }
  .orderItem .title:before {
    right: 32px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .orderItem .title {
    gap: 70px;
    padding: 40px 60px 40px 40px;
  }
  .orderItem .title .item {
    white-space: nowrap;
  }
  .orderItem .title .item.stage {
    margin-left: 100px;
  }
  .orderItem .title:after {
    right: 35px;
  }
  .orderItem .title:before {
    right: 42px;
  }
}
@media screen and (max-width: 576px) {
  section.paymentContent .content .tabs .navlist2 {
    padding: 30px;
    gap: 30px;
  }
  section.paymentContent .content .bottom {
    padding: 20px;
  }
  section.paymentContent .content .bottom .paymentCard {
    display: none;
  }
  section.paymentContent .content .bottom .paymentCardContent .btnPayment {
    padding: 25px 45px;
    display: flex;
    width: 100%;
    margin: 0 auto;
    max-width: 320px;
    justify-content: center;
  }
  .cartTop {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.paymentContent .content .tabs .navlist2 {
    padding: 30px;
    justify-content: center;
    gap: 30px;
  }
  section.paymentContent .content .bottom {
    padding: 30px;
  }
  section.paymentContent .content .bottom .paymentCard {
    display: none;
  }
  section.paymentContent .content .bottom .paymentCardContent .btnPayment {
    padding: 25px 45px;
    display: flex;
    width: 100%;
    margin: 0 auto;
    max-width: 320px;
    justify-content: center;
  }
  .cartTop {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.paymentContent .content .tabs .navlist2 {
    padding: 30px;
    justify-content: center;
    gap: 30px;
  }
  section.paymentContent .content .bottom {
    padding: 30px;
  }
  section.paymentContent .content .bottom .paymentCard {
    display: none;
  }
  section.paymentContent .content .bottom .paymentCardContent .btnPayment {
    padding: 25px 45px;
    display: flex;
    width: 100%;
    margin: 0 auto;
    max-width: 320px;
    justify-content: center;
  }
  .cartTop {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.paymentContent .content .bottom {
    padding: 30px;
  }
  .cartTop {
    align-items: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  section.addressesContent .addressContent {
    padding: 30px 15px;
  }
  section.addressesContent .addressContent .titleArea {
    margin: 0 0 20px;
    text-align: center;
  }
  section.addressesContent .addressContent .addressArea {
    padding: 15px;
  }
  section.addressesContent .addressContent .addressArea .userInfos {
    margin-bottom: 10px;
  }
  section.addressesContent .addressContent .addressArea .userInfos .text {
    margin-top: 15px;
  }
  section.addressesContent .addressContent .bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  section.addressesContent .cargoSelect {
    padding: 20px;
  }
  section.addressesContent .cargoSelect .cargoBrand {
    gap: 5px;
  }
  section.addressesContent .cargoSelect .cargoBrand .imgArea {
    height: 25px;
  }
  section.addressesContent .cargoSelect .cargoBrand .text {
    font-size: 12px;
  }
  .addressCard {
    padding: 30px;
  }
  .addressCard .check {
    width: 25px;
    height: 25px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.addressesContent .addressContent {
    padding: 30px 15px;
  }
  section.addressesContent .addressContent .titleArea {
    margin: 0 0 30px;
    text-align: center;
  }
  section.addressesContent .addressContent .addressArea .userInfos {
    margin-bottom: 40px;
  }
  section.addressesContent .addressContent .addressArea .userInfos .text {
    margin-top: 15px;
  }
  section.addressesContent .addressContent .bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  section.addressesContent .cargoSelect {
    padding: 20px;
  }
  section.addressesContent .cargoSelect .cargoBrand {
    gap: 5px;
  }
  section.addressesContent .cargoSelect .cargoBrand .imgArea {
    height: 25px;
  }
  section.addressesContent .cargoSelect .cargoBrand .text {
    font-size: 12px;
  }
}
@media screen and (max-width: 576px) {
  .cartApproval .approvalContent {
    padding: 25px;
  }
  .cartApproval .approvalContent .approvalInfo .totalPrice {
    margin-bottom: 25px;
  }
  .cartApproval .approvalContent .approvalInfo .appBtn {
    padding: 25px;
  }
  .cartApproval .approvalContent .chechkboxArea {
    margin-top: 25px;
  }
  .cartApproval .approvalContent.summary {
    padding: 25px;
  }
  section.cartContent .bottom {
    flex-wrap: wrap;
    padding: 10px;
    gap: 10px 30px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .cartApproval .approvalContent {
    padding: 25px;
  }
  .cartApproval .approvalContent .approvalInfo .totalPrice {
    margin-bottom: 25px;
  }
  .cartApproval .approvalContent .approvalInfo .appBtn {
    padding: 25px;
  }
  .cartApproval .approvalContent .chechkboxArea {
    margin-top: 25px;
  }
  .cartApproval .approvalContent.summary {
    padding: 25px;
  }
}
@media screen and (max-width: 576px) {
  section.productDetail .productInfo {
    padding: 30px 20px;
  }
  section.productDetail .productInfo .title {
    padding-right: 0;
    text-align: center;
  }
  section.productDetail .productInfo .content {
    text-align: center;
  }
  section.productDetail .productInfo .content .priceArea {
    justify-content: center;
    flex-wrap: wrap;
  }
  section.productDetail .productInfo .content .offerBtn {
    margin: 0 auto 20px;
  }
  section.productDetail .productInfo .content .cargo {
    margin: 0 auto 20px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  section.productDetail .productInfo .content .cargo .icon {
    display: none;
  }
  section.productDetail .productInfo .content .buttons {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  section.productDetail .productInfo .bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  section.productDetail .row .col-grid10-xl-4 {
    order: 3;
  }
  section.productDetail .productDetailSlide .swiper-slide {
    width: 92px;
  }
  section.prodyuctDetailTabs {
    padding: 30px 20px;
  }
  section.prodyuctDetailTabs .navlist2 {
    padding: 0;
    margin-bottom: 30px;
  }
  section.prodyuctDetailTabs .customTabContent {
    padding-left: 0;
  }
  .productsTop {
    flex-direction: column;
    gap: 10px;
  }
  .normalMenu {
    display: none;
  }
  .modalMenu {
    display: block;
  }
  section.products .col-grid10-xl-2 {
    display: none;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  section.prodyuctDetailTabs {
    padding: 50px 40px;
  }
  section.prodyuctDetailTabs .navlist2 {
    padding: 0;
    margin-bottom: 30px;
  }
  section.prodyuctDetailTabs .customTabContent {
    padding-left: 0;
  }
  section.productDetail .row .col-grid10-xl-4 {
    order: 3;
  }
  .productsTop {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
  }
  .productsTop .customcheckbox5 {
    margin: 0 35px 0 auto;
  }
  .productsTop .select2-container--bootstrap5.defaultStyle-xs {
    max-width: 220px;
  }
  .productsTop .productPiece {
    margin-left: auto;
  }
  .productsTop .productPiece .text {
    white-space: nowrap;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  section.productDetail .row .col-grid10-xl-4 {
    order: 3;
  }
  .productsTop .customcheckbox5 {
    margin: 0 25px;
  }
  .productsTop .productPiece {
    margin-left: 30px;
  }
  .productsTop .productPiece .text {
    white-space: nowrap;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  section.productDetail .productInfo {
    padding: 30px 20px;
  }
  section.productDetail .productInfo .title {
    padding-right: 0;
  }
  section.productDetail .productInfo .content .priceArea {
    flex-wrap: wrap;
  }
  section.productDetail .productInfo .content .buttons {
    width: 100%;
    flex-wrap: wrap;
  }
  section.productDetail .productInfo .bottom {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .pageTitle {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .politicasEditor {
    padding: 30px;
  }
  .politicasEditor .title {
    margin-bottom: 30px;
  }
  .politicasEditor .text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .politicasEditor {
    padding: 30px;
  }
  .politicasEditor .title {
    margin-bottom: 30px;
  }
  .politicasEditor .text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (max-width: 576px) {
  .editorContent h1 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media screen and (max-width: 576px) {
  .partFilter {
    padding: 25px;
  }
  .partFilter .title {
    margin: 0;
    font-size: 20px;
  }
  .partFilter > .text {
    margin: 0;
    line-height: 20px;
  }
  .partFilter.type2 .content {
    flex-direction: column;
  }
  .partFilter.type2 .content .productDropdown .info {
    padding: 35px 55px 35px 20px;
    width: 100%;
    max-width: 100%;
  }
  .partFilter.type2 .content .productDropdown.iconProduct {
    width: 100%;
  }
  .partFilter.type2 .content .searchProductDropdown {
    max-width: 100%;
    padding: 27px 30px 27px 20px;
  }
  .partsCard {
    padding: 30px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .partFilter {
    padding: 25px;
  }
  .partFilter .title {
    margin: 0;
    font-size: 20px;
  }
  .partFilter > .text {
    margin: 0;
    line-height: 20px;
  }
  .partFilter.type2 .content {
    flex-wrap: wrap;
    gap: 20px;
  }
  .partFilter.type2 .content .productDropdown, .partFilter.type2 .content .searchProductDropdown {
    max-width: calc(50% - 10px);
  }
  .partFilter.type2 .content .productDropdown .info, .partFilter.type2 .content .searchProductDropdown .info {
    padding: 35px 30px 35px 20px;
  }
  .partFilter.type2 .content .productDropdown.iconProduct, .partFilter.type2 .content .searchProductDropdown.iconProduct {
    max-width: calc(50% - 10px);
  }
  .partFilter.type2 .content .searchProductDropdown {
    padding: 27px 30px 27px 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .partFilter {
    padding: 25px;
  }
  .partFilter .title {
    margin: 0;
    font-size: 20px;
  }
  .partFilter > .text {
    margin: 0;
    line-height: 20px;
  }
  .partFilter.type2 .content {
    flex-wrap: wrap;
    gap: 20px;
  }
  .partFilter.type2 .content .productDropdown, .partFilter.type2 .content .searchProductDropdown {
    max-width: calc(50% - 10px);
  }
  .partFilter.type2 .content .productDropdown .info, .partFilter.type2 .content .searchProductDropdown .info {
    padding: 35px 30px 35px 20px;
  }
  .partFilter.type2 .content .productDropdown.iconProduct, .partFilter.type2 .content .searchProductDropdown.iconProduct {
    max-width: calc(50% - 10px);
  }
  .partFilter.type2 .content .searchProductDropdown {
    padding: 35px 30px 35px 20px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .partFilter {
    padding: 25px;
  }
  .partFilter .title {
    margin: 0;
    font-size: 20px;
  }
  .partFilter > .text {
    margin: 0;
    line-height: 20px;
  }
  .partFilter.type2 .content {
    flex-wrap: wrap;
    gap: 20px;
  }
  .partFilter.type2 .content .productDropdown, .partFilter.type2 .content .searchProductDropdown {
    max-width: calc(50% - 10px);
  }
  .partFilter.type2 .content .productDropdown .info, .partFilter.type2 .content .searchProductDropdown .info {
    padding: 35px 30px 35px 20px;
  }
  .partFilter.type2 .content .productDropdown.iconProduct, .partFilter.type2 .content .searchProductDropdown.iconProduct {
    max-width: calc(50% - 10px);
    width: 100%;
  }
  .partFilter.type2 .content .searchProductDropdown {
    padding: 35px 30px 35px 20px;
  }
}
@media screen and (max-width: 576px) {
  .campaignCardBig {
    flex-direction: column;
    padding: 25px 15px;
  }
  .campaignCardBig .cardContent {
    order: 2;
  }
  .campaignCardBig .cardContent a {
    margin-top: 30px;
    justify-content: space-between;
  }
  .campaignCard {
    padding: 25px 15px;
  }
  .campaignCard .imgArea {
    z-index: 0;
    opacity: 0.5;
  }
  .campaignCard .cardContent {
    position: relative;
    z-index: 2;
  }
  .campaignCard.type2 .imgArea {
    max-width: 100%;
    opacity: 1;
  }
  .maincampaigns .top {
    margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .campaignCardBig {
    flex-direction: column;
    padding: 45px;
  }
  .campaignCardBig .cardContent {
    order: 2;
  }
  .campaignCardBig .cardContent a {
    margin-top: 30px;
  }
  .campaignCard {
    padding: 45px;
  }
  .campaignCard .imgArea {
    z-index: 0;
    max-width: 100%;
  }
  .campaignCard .cardContent {
    position: relative;
    z-index: 2;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .campaignCard .imgArea {
    max-width: 100%;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .campaignCardBig {
    flex-direction: column;
    padding: 40px;
  }
  .campaignCardBig .cardContent {
    order: 2;
  }
  .campaignCardBig .cardContent a {
    margin-top: 30px;
    justify-content: space-between;
  }
  .campaignCard {
    padding: 40px;
  }
  .campaignCard .imgArea {
    z-index: 0;
    opacity: 0.5;
    max-width: 100%;
  }
  .campaignCard .cardContent {
    position: relative;
    z-index: 2;
  }
  .campaignCard.type2 .imgArea {
    max-width: 100%;
    opacity: 1;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .campaignCard .cardContent {
    position: relative;
    z-index: 2;
  }
  .campaignCard .imgArea {
    z-index: 0;
    opacity: 0.5;
    max-width: 100%;
  }
  .campaignCard.type2 .imgArea {
    opacity: 1;
  }
}
@media screen and (max-width: 576px) {
  .cartProductItem {
    padding: 20px;
    flex-direction: column;
    gap: 30px;
  }
  .cartProductItem .cardContent {
    flex-direction: column;
  }
  .cartProductItem .cardContent .infos {
    flex-wrap: wrap;
    margin: 0;
  }
  .cartProductItem .cardContent .infos .price {
    width: 100%;
    order: 1;
  }
  .cartProductItem .cardContent .infos .iconArea, .cartProductItem .cardContent .infos .changePiece {
    order: 2;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .cartProductItem {
    padding: 20px;
    gap: 30px;
  }
  .cartProductItem .cardContent {
    flex-direction: column;
  }
  .cartProductItem .cardContent .infos {
    flex-wrap: wrap;
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .cartProductItem {
    padding: 20px;
    gap: 30px;
  }
  .cartProductItem .cardContent {
    flex-direction: column;
  }
  .cartProductItem .cardContent .infos {
    flex-wrap: wrap;
    margin: 0;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .cartProductItem {
    padding: 20px;
    gap: 30px;
  }
  .cartProductItem .cardContent {
    flex-direction: column;
  }
  .cartProductItem .cardContent .infos {
    flex-wrap: wrap;
    margin: 0;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .cartProductItem {
    padding: 20px;
    gap: 30px;
  }
  .cartProductItem .cardContent .infos {
    flex-wrap: wrap;
    margin: 0;
  }
}
@media screen and (max-width: 576px) {
  .breadcrumb ul {
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
  }
  .breadcrumb ul::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: #9f0829;
  }
  .breadcrumb ul li a {
    white-space: nowrap;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .breadcrumb ul {
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
  }
  .breadcrumb ul::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: #9f0829;
  }
  .breadcrumb ul li a {
    white-space: nowrap;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .breadcrumb ul {
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
  }
  .breadcrumb ul::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: #9f0829;
  }
  .breadcrumb ul li a {
    white-space: nowrap;
  }
}
@media screen and (max-width: 576px) {
  .accordionItem {
    padding: 25px 20px;
  }
  .accordionItem .accordionHeader {
    font-size: 16px;
    line-height: 26px;
  }
  .questionsCard {
    padding: 25px;
  }
  .questionsCard .iconArea {
    width: 35px;
    height: 35px;
  }
  .questionsCard .iconArea .icon {
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .accordionItem {
    padding: 25px 20px;
  }
  .accordionItem .accordionHeader {
    font-size: 16px;
    line-height: 26px;
  }
  .questionsCard .iconArea {
    width: 40px;
    height: 40px;
  }
  .questionsCard .iconArea .icon {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .accordionItem {
    padding: 35px 40px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .accordionItem {
    padding: 45px 50px;
  }
}
@media screen and (max-width: 576px) {
  .navlist2 {
    padding: 0 30px 30px;
    overflow: hidden;
    overflow-x: auto;
    gap: 20px;
  }
  .navlist2::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: #9f0829;
  }
  .navlist2 li a {
    white-space: nowrap;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .navlist2 {
    padding: 0 30px 30px;
    overflow: hidden;
    overflow-x: auto;
  }
  .navlist2::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: #9f0829;
  }
  .navlist2 li a {
    white-space: nowrap;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .navlist2 {
    padding: 0 50px 50px;
    overflow: hidden;
    overflow-x: auto;
  }
  .navlist2::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: #9f0829;
  }
  .navlist2 li a {
    white-space: nowrap;
  }
}
@media screen and (max-width: 576px) {
  .select2-container--bootstrap5.defaultStyle-sm .select2-selection--single {
    padding: 26.5px 20px;
  }
  .customInput2 input {
    font-size: 16px;
    padding: 10px 20px;
    height: 70px;
  }
  .customInput2.cardInput input {
    padding: 10px 20px;
  }
  .customInput2.cardInput input.placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input:-moz-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input::-moz-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input:-ms-input-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .customcheckbox4 {
    padding: 20px;
    gap: 20px;
  }
  .customcheckbox4 .checkboxText {
    flex-wrap: wrap;
  }
  .customcheckbox4 .checkboxText .item {
    display: flex;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .customcheckbox4 {
    padding: 20px;
    gap: 20px;
  }
  .customcheckbox4 .checkboxText .item {
    font-size: 14px;
  }
  .customInput2 input {
    font-size: 16px;
    padding: 10px 20px;
    height: 70px;
  }
  .customInput2.cardInput input {
    padding: 10px 20px;
    font-size: 14px;
  }
  .customInput2.cardInput input.placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input:-moz-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input::-moz-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input:-ms-input-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input::-webkit-input-placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .customInput2 input {
    font-size: 16px;
    padding: 10px 20px;
    height: 70px;
  }
  .customInput2.cardInput input {
    padding: 10px 20px;
    font-size: 14px;
  }
  .customInput2.cardInput input.placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input:-moz-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input::-moz-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input:-ms-input-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .customcheckbox4 {
    padding: 20px;
    gap: 20px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .customInput2 input {
    font-size: 16px;
    padding: 10px 20px;
    height: 70px;
  }
  .customInput2.cardInput input {
    padding: 10px 20px;
    font-size: 14px;
  }
  .customInput2.cardInput input.placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input:-moz-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input::-moz-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input:-ms-input-placeholder {
    font-size: 14px;
  }
  .customInput2.cardInput input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .customcheckbox4 {
    padding: 20px;
    gap: 20px;
  }
  .customcheckbox4 .checkboxText .item {
    font-size: 14px;
  }
  .select2-container--bootstrap5.defaultStyle-sm .select2-selection--single {
    padding: 26.5px 20px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .customInput2 input {
    font-size: 16px;
    padding: 10px 20px;
    height: 70px;
  }
  .customInput2.cardInput input {
    padding: 10px 20px;
    font-size: 22px;
  }
  .customInput2.cardInput input.placeholder {
    font-size: 22px;
  }
  .customInput2.cardInput input:-moz-placeholder {
    font-size: 22px;
  }
  .customInput2.cardInput input::-moz-placeholder {
    font-size: 22px;
  }
  .customInput2.cardInput input:-ms-input-placeholder {
    font-size: 22px;
  }
  .customInput2.cardInput input::-webkit-input-placeholder {
    font-size: 22px;
  }
  .customcheckbox4 {
    padding: 20px;
    gap: 20px;
  }
  .customcheckbox4 .checkboxText .item {
    font-size: 14px;
  }
  .select2-container--bootstrap5.defaultStyle-sm .select2-selection--single {
    padding: 26.5px 20px;
  }
}
@media screen and (max-width: 576px) {
  .testimonialItem {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .testimonialItem {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .alert {
    padding: 15px;
    gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .mainCategory .categoryMenuArea {
    width: 100%;
  }
  .mainCategory .categoryMenuArea .categoryMenu ul li.dropdown > a {
    position: relative;
    z-index: 4;
  }
  .mainCategory .categoryMenuArea .categoryMenu ul li ul {
    border-bottom: 1px solid rgba(99, 116, 126, 0.1);
    z-index: 3;
    transform: translate(0);
  }
  .mainCategory .categoryMenuArea .categoryMenu ul li ul:after {
    display: none;
  }
  .mainCategory .categoryMenuArea .openCategoryMenu {
    padding: 20px;
    width: 100%;
  }
  .mainCategory .categoryMenuArea .openCategoryMenu .text {
    padding-right: 0;
    margin-right: auto;
  }
  .mainCategory .categorys, .mainCategory .btn {
    display: none;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .mainCategory .container {
    justify-content: space-between;
  }
  .mainCategory .categoryMenuArea .openCategoryMenu {
    padding: 20px;
  }
  .mainCategory .categorys {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .mainCategory .container {
    justify-content: space-between;
  }
  .mainCategory .categoryMenuArea .openCategoryMenu {
    padding: 20px;
  }
  .mainCategory .categorys {
    display: none;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .mainCategory .categoryMenuArea .openCategoryMenu {
    padding: 20px;
  }
  .mainCategory .categoryMenuArea .openCategoryMenu .text {
    white-space: nowrap;
    padding-right: 30px;
  }
  .mainCategory .categorys {
    margin-left: 20px;
  }
  .mainCategory .categorys > ul {
    gap: 15px;
  }
  .mainCategory .categorys > ul > li a {
    font-size: 13px;
  }
  .mainCategory .btn {
    padding: 20px 10px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .mainCategory .categorys {
    margin-left: 20px;
  }
  .mainCategory .categorys > ul {
    gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .widget1 {
    padding: 20px;
    position: relative;
  }
  .widget1 .titleArea {
    max-width: 80%;
    position: relative;
    z-index: 2;
  }
  .widget1 .titleArea .title {
    font-size: 13px;
  }
  .widget1 .titleArea .widgetBtn {
    font-size: 10px;
  }
  .widget1 .imgArea {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1/1;
    width: 150px;
    opacity: 0.5;
  }
  .widget2 {
    padding: 20px 120px 20px 20px;
    position: relative;
  }
  .widget2 .titleArea {
    max-width: 100%;
    position: relative;
    z-index: 2;
  }
  .widget2 .titleArea .widgetBtn {
    font-size: 11px;
  }
  .widget2 .imgArea {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 100px;
  }
  .widget3 {
    padding-top: 20px;
    flex-direction: column-reverse;
  }
  .widget3 .titleArea {
    padding: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .widget3 {
    flex-direction: column-reverse;
    padding-top: 20px;
  }
  .widget3 .titleArea {
    padding: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .widget3 .titleArea {
    padding: 24px 30px;
  }
  .widget3 .imgArea {
    height: 100%;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .widget2 {
    padding: 45px 0 45px 30px;
  }
  .widget2 .titleArea .title {
    font-size: 18px;
  }
  .widget3 {
    flex-direction: column-reverse;
    padding-top: 20px;
  }
  .widget3 .titleArea {
    padding: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .widget3 {
    flex-direction: column-reverse;
  }
  .widget3 .titleArea {
    padding: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .commentItem {
    flex-direction: column;
    height: 250px;
    padding: 20px;
  }
  .commentItem .titleArea {
    margin-top: auto;
    order: 2;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .commentItem {
    gap: 25px;
  }
}
@media screen and (max-width: 576px) {
  .mainLastProducts .productInfos {
    flex-wrap: wrap;
    justify-content: center;
  }
  .mainLastProducts .productInfos .item {
    border: 0;
    width: auto;
    padding: 15px 20px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .mainLastProducts .productInfos {
    flex-wrap: wrap;
    justify-content: center;
  }
  .mainLastProducts .productInfos .item {
    border: 0;
    width: auto;
    padding: 15px 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .mainLastProducts .productInfos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  .mainLastProducts .productInfos .item {
    border: 0;
    width: auto;
    padding: 15px 20px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .mainLastProducts .productInfos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 25px;
  }
  .mainLastProducts .productInfos .item {
    border: 0;
    width: auto;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 576px) {
  .filterMenu {
    border-top: 1px solid rgba(99, 116, 126, 0.1);
  }
  .filterMenu .filterMenus {
    padding: 20px;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .filterMenu .filterMenus {
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: 0.3s ease all;
    padding: 0 25px;
  }
  .filterMenu.active .filterMenus {
    max-height: 500px;
    pointer-events: auto;
    padding: 30px 25px 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .filterMenu .filterMenus {
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: 0.3s ease all;
    padding: 0 25px;
  }
  .filterMenu.active .filterMenus {
    max-height: 500px;
    pointer-events: auto;
    padding: 30px 25px 40px;
  }
}/*# sourceMappingURL=mobile.css.map */