@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --topic-color: #263238;
  --content-color: #09294c;
  --main-color: #06203c;
  --main-bg: #f4f9fd;
  --des-color: #607086;
  --white-color: #fff;
  --sky-color: #1e96ff;
  --primary-color: #f2375f;
  --main-radius: 10px;
  --radius-5: 5px;
  --radius-7: 7px;
  --radius-10: 10px;
  --radius-15: 15px;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 224px;
  font-family: "Prompt", sans-serif;
  color: var(--content-color);
  font-size: 14px;
  font-weight: 300;
  background-color: var(--main-bg);
}
@media (min-width: 768px) {
  body {
    margin-bottom: 203px;
  }
}
@media (min-width: 992px) {
  body {
    margin-bottom: 71px;
    font-size: 16px;
  }
}

a {
  text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

img[data-src] {
  position: relative;
  min-width: 100%;
}
img[data-src]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #a9a9a9;
  background: linear-gradient(to right, #eeeeee 10%, #dddddd 18%, #eeeeee 33%);
  background-size: cover;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: placeHolderShimmer;
  z-index: 11;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}
hr.dashed {
  border-style: dashed;
}

button:focus {
  box-shadow: none !important;
  outline: 0 !important;
}

.-not-found {
  padding: 15px;
  background-color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border-radius: var(--main-radius);
  text-align: center;
}
.-not-found .-icon {
  margin-bottom: 10px;
}

.filepond--root .filepond--credits {
  display: none;
}

.x-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: var(--white-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 100;
}
.x-header .navbar {
  height: 100%;
}
.x-header .-right,
.x-header .-left {
  display: flex;
  align-items: center;
}
.x-header .navbar-brand {
  display: block;
  margin: 0;
  padding: 0;
}
.x-header .vertical-line {
  display: none;
}
.x-header .-search {
  display: none;
}
.x-header .-menu {
  display: none;
}
.x-header .-menu .nav {
  flex-wrap: nowrap;
}
.x-header .-menu .nav .nav-link {
  font-weight: 300;
  color: var(--content-color);
  white-space: nowrap;
}
.x-header .-menu .nav .nav-link:hover {
  color: var(--sky-color);
}
.x-header .-menu .nav .nav-link.active {
  color: var(--sky-color);
}
.x-header .-account {
  position: relative;
  display: flex;
  align-items: center;
}
.x-header .-account .-cart {
  position: relative;
}
.x-header .-account .-cart .badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 5px;
  font-size: 12px;
  font-weight: 500;
}
.x-header .-account .dropdown-toggle {
  display: flex;
  align-items: center;
}
.x-header .-account .dropdown-toggle::after {
  margin-left: 10px;
}
.x-header .-account .dropdown-menu {
  padding: 0;
  border: none;
  border-radius: var(--main-radius);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden;
}
.x-header .-account .dropdown-menu .dropdown-item {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 300;
  color: var(--content-color);
  background-color: var(--white-color);
  cursor: pointer;
}
.x-header .-account .dropdown-menu .dropdown-item:hover {
  color: var(--sky-color);
}
.x-header .-account .dropdown-menu .dropdown-item.active {
  color: var(--sky-color);
  background-color: var(--white-color);
}
.x-header .-account .dropdown-menu .dropdown-item.-logout {
  color: #fff;
  background-color: #bb1c2c;
  text-align: center;
}
.x-header .-account .dropdown-menu .dropdown-item.-logout:hover {
  background-color: #b02a37;
}
.x-header .-account .btn {
  font-size: 14px;
  font-weight: 300;
  color: var(--content-color);
  border-radius: var(--main-radius);
}
@media (min-width: 992px) {
  .x-header .-account .btn {
    font-size: 16px;
  }
}
.x-header .-account .btn:hover {
  color: var(--sky-color);
}
.x-header .-account .btn-primary {
  color: var(--white-color);
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.x-header .-account .btn-primary:hover {
  color: var(--white-color);
  background-color: var(--sky-color);
  border-color: var(--sky-color);
}
@media (min-width: 992px) {
  .x-header .vertical-line,
  .x-header .-search,
  .x-header .-menu {
    display: block;
  }
}

main {
  margin-top: 50px;
}

.content-wrapper {
  padding-top: 15px;
  padding-bottom: 15px;
}

.x-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-bottom: 59px;
  width: 100%;
  height: auto;
  background-color: var(--white-color);
  border-top: 1px solid #eee;
}
@media (min-width: 992px) {
  .x-footer {
    padding-bottom: 0;
  }
}
.x-footer .-x-last-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 15px 0;
}
@media (min-width: 992px) {
  .x-footer .-x-last-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.x-footer .-x-last-footer .-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 992px) {
  .x-footer .-x-last-footer .-left {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
}
.x-footer .-x-last-footer .-right {
  width: 100%;
}
@media (min-width: 992px) {
  .x-footer .-x-last-footer .-right {
    width: auto;
  }
}
.x-footer .-x-last-footer .-copyright,
.x-footer .-x-last-footer .-logo {
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .x-footer .-x-last-footer .-copyright,
  .x-footer .-x-last-footer .-logo {
    margin-bottom: 0;
    width: auto;
  }
}
.x-footer .-x-last-footer .-logo img {
  width: auto;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.x-footer .-x-last-footer .-copyright {
  font-weight: 300;
}
.x-footer .-x-last-footer .-social .nav {
  justify-content: center;
}
@media (min-width: 992px) {
  .x-footer .-x-last-footer .-social .nav {
    justify-content: flex-end;
  }
}
.x-footer .-x-last-footer .-social .nav .nav-item {
  margin-right: 15px;
}
.x-footer .-x-last-footer .-social .nav .nav-item:last-child {
  margin-right: 0;
}
.x-footer .-x-last-footer .-social .nav .nav-link {
  padding: 0;
}
.x-footer .-x-last-footer .-social .nav .nav-link img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.2s;
}
.x-footer .-x-last-footer .-social .nav .nav-link:hover img {
  transform: scale(1.1);
}

.x-menu-bottom {
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  height: auto;
  width: 100%;
  background-color: var(--white-color);
  border-top: 1px solid #eee;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  z-index: 14;
}
@media (min-width: 992px) {
  .x-menu-bottom {
    display: none;
  }
}
.x-menu-bottom .x-menu-bottom-wrapper {
  width: 100%;
}
.x-menu-bottom .nav-item {
  flex: 1;
  border-right: 1px solid #eee;
}
.x-menu-bottom .nav-item:last-child {
  border: none;
}
.x-menu-bottom .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--main-color);
}
.x-menu-bottom .nav-link.active {
  color: var(--sky-color);
}
.x-menu-bottom .nav-link .-icon {
  font-size: 16px;
}
.x-menu-bottom .nav-link .-title {
  font-size: 12px;
}

.x-offcanvas {
  max-width: 80%;
}
.x-offcanvas .offcanvas-body {
  padding-bottom: calc(var(--bs-offcanvas-padding-y) + 54px);
}
.x-offcanvas .-account {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #d7d7d7;
}
.x-offcanvas .-account .-account-wrapper .-account-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 10px;
  color: var(--white-color);
  background: rgb(6, 32, 60);
  background: linear-gradient(140deg, rgb(6, 32, 60) 0%, rgb(17, 48, 82) 100%);
  border-radius: var(--main-radius);
  text-decoration: none;
}
.x-offcanvas .-account .-account-wrapper .-account-item .-icon {
  margin-bottom: 5px;
  font-size: 18px;
}
.x-offcanvas .nav-item {
  margin-bottom: 15px;
}
.x-offcanvas .nav-item:last-child {
  margin-bottom: 0;
}
.x-offcanvas .nav-item .nav-link {
  padding: 0;
  color: var(--main-color);
}
.x-offcanvas .nav-item .nav-link.active {
  color: var(--sky-color);
}
.x-offcanvas .-logout {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px;
  width: 100%;
  height: auto;
  font-size: 16px;
  color: var(--white-color);
  background-color: #bb1c2c;
  text-decoration: none;
  text-align: center;
}

.x-modal .modal-dialog {
  align-items: flex-end;
  margin: 0;
  min-height: 100%;
}
@media (min-width: 768px) {
  .x-modal .modal-dialog {
    align-items: center;
    margin: 10px auto;
    min-height: calc(100vh - 20px);
  }
}
.x-modal .modal-content {
  border-top-left-radius: var(--main-radius);
  border-top-right-radius: var(--main-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (min-width: 768px) {
  .x-modal .modal-content {
    border-radius: var(--main-radius);
  }
}
.x-modal .modal-content .-modal-topic {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.x-modal .modal-content .modal-footer {
  border-top: none;
}

.modal-backdrop {
  -webkit-tap-highlight-color: transparent;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(15, 23, 42, 0.25);
}
.modal-backdrop.show {
  opacity: 1 !important;
}

.x-navigator {
  display: none;
  padding: 10px 0;
  background-color: var(--main-bg);
  border-bottom: 1px solid #e8edf3;
}
@media (min-width: 992px) {
  .x-navigator {
    display: block;
  }
}
.x-navigator .breadcrumb {
  margin-bottom: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.x-navigator .breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.x-navigator .breadcrumb .breadcrumb-item a {
  font-weight: 300;
  color: #979694;
}
.x-navigator .breadcrumb .breadcrumb-item.active {
  font-weight: 300;
  color: var(--main-color);
}
.x-navigator .breadcrumb .breadcrumb-item.active a {
  font-weight: 300;
  color: var(--main-color);
}
.x-navigator .breadcrumb .breadcrumb-item::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f324";
  font-size: 12px;
}
.x-navigator .breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}

.x-form .x-form-group {
  position: relative;
  margin-bottom: 10px;
}
.x-form .x-form-group.x-icon .-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 10px;
  height: 100%;
  z-index: 6;
}
.x-form .x-form-group.x-icon .form-control {
  padding-left: 35px;
  padding-right: 10px;
}
.x-form .x-form-group .input-group-text {
  border-radius: var(--main-radius);
}
.x-form .form-control {
  font-size: 14px;
  border-radius: var(--main-radius);
  box-shadow: none;
}
.x-form .form-control:focus, .x-form .form-control:hover {
  border-color: var(--main-color);
  box-shadow: none;
}
.x-form .form-floating > label {
  font-size: 14px;
  font-weight: 300;
}
.x-form .x-form-action {
  margin-top: 20px;
}

.was-validated .x-form .form-control:invalid:focus, .was-validated .x-form .form-control:invalid:hover {
  border-color: var(--bs-danger);
}
.was-validated .x-form .form-control:valid:focus, .was-validated .x-form .form-control:valid:hover {
  border-color: var(--bs-success);
}

.x-form-authen {
  position: relative;
  padding: 0;
}
@media (min-width: 992px) {
  .x-form-authen {
    padding: 30px 50px;
  }
}
.x-form-authen .btn-close {
  position: absolute;
  top: 0;
  right: 0;
}
.x-form-authen .-logo {
  margin-bottom: 30px;
  text-align: center;
}
.x-form-authen .-show-password {
  cursor: pointer;
}
.x-form-authen .x-form-action .btn {
  height: 50px;
}
.x-form-authen .forgot-password {
  text-align: right;
}
.x-form-authen .forgot-password .btn {
  padding: 0;
}
.x-form-authen .line-wrapper {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.x-form-authen .line-wrapper .line {
  height: 1px;
  width: 100%;
  background-color: #dbdbdb;
  flex: 1;
}
.x-form-authen .line-wrapper .text {
  padding: 0 15px;
  font-size: 12px;
  color: #999;
}
.x-form-authen .-helper {
  display: flex;
  align-items: center;
}
.x-form-authen .-helper .btn {
  margin-left: 10px;
  padding: 0;
}

.vertical-line {
  display: inline-flex;
  align-self: stretch;
  margin: 0 10px;
  height: inherit;
  max-width: 0px;
  max-height: 100%;
  vertical-align: text-bottom;
  transition: inherit;
  border-width: 0 thin 0 0;
  border-style: solid;
  opacity: 0.12;
}

.horizontal-line {
  flex: 1;
  height: 1px;
  background: #bdbdbd;
  margin: 0 5px;
}

.btn {
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--main-radius);
  white-space: nowrap;
}
.btn.-icon-left i {
  margin-right: 10px;
}
.btn.-icon-right i {
  margin-left: 10px;
}

.btn-submit {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-submit:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  filter: brightness(0.9);
}

.loader-wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4901960784);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background-blend-mode: overlay;
  visibility: hidden;
  opacity: 0;
  z-index: 999999;
  transition: all 0.2s;
}
.loader-wrapper.show {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.x-swal2.swal2-backdrop-show {
  background: rgba(0, 0, 0, 0.7) !important;
}
.x-swal2 .swal2-popup {
  padding: 0;
  max-width: 400px;
  width: 100%;
  border-radius: var(--main-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.x-swal2 .swal2-html-container {
  margin: 0;
  padding: 20px;
  font-size: 14px;
  text-align: left;
}
.x-swal2 .x-swal2-content .x-swal2-title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 20px;
}
.x-swal2 .x-swal2-content .x-swal2-title .-icon {
  margin-right: 10px;
}
.x-swal2 .x-swal2-content .x-swal2-title .-title {
  color: #403a3a;
}
.x-swal2 .x-swal2-content .x-swal2-description {
  color: #686868;
}
.x-swal2 .swal2-actions {
  justify-content: flex-end;
  margin: 0;
  padding: 15px;
  width: 100%;
  background-color: #f8f9fa;
}
.x-swal2 .swal2-actions button {
  margin: 0;
  margin-left: 5px;
  padding: 5px 15px;
  border-radius: var(--radius-5);
  font-size: 14px;
}
.x-swal2 .swal2-actions button:focus {
  box-shadow: none;
}
.x-swal2 .swal2-actions button.x-swal2-confirm {
  background-color: #198754;
  border: 1px solid #198754;
}
.x-swal2 .swal2-actions button.x-swal2-cancel {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  color: rgba(0, 0, 0, 0.65);
}
.x-swal2 .swal2-actions button.x-swal2-deny {
  color: #fff;
  background-color: #1890ff;
  border: 1px solid #1890ff;
}

.x-filter .-header {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
}
.x-filter input[type=number]::-moz-placeholder {
  font-size: 12px;
  font-weight: 300;
}
.x-filter input[type=number]::placeholder {
  font-size: 12px;
  font-weight: 300;
}

.-list-filter .-item {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.-list-filter .-item .-topic {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}
.-list-filter .-item .list-group.minimized {
  position: relative;
  max-height: 170px;
  -webkit-mask-image: linear-gradient(0deg, transparent, #000 60px);
          mask-image: linear-gradient(0deg, transparent, #000 60px);
  overflow: hidden;
}
.-list-filter .-item .list-group.minimized::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35px;
  z-index: 999;
}
.-list-filter .-item .list-group .list-group-item {
  margin-bottom: 3px;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  background: none;
  border: none;
}
.-list-filter .-item .list-group .list-group-item .form-check-label {
  font-size: 12px;
}
.-list-filter .-item .list-group .list-group-item .form-check-label::after {
  cursor: pointer;
}
.-list-filter .-item .-filter-action .btn {
  padding: 5px 10px;
  font-size: 10px;
  opacity: 0.5;
  transition: all 0.2s;
}
.-list-filter .-item .-filter-action .btn:hover {
  opacity: 1;
}
.-list-filter .-item .-filter-action .btn[btnMinimized] {
  margin-top: 5px;
}

.m-filter {
  display: block;
  position: sticky;
  top: 51px;
  margin-top: -15px;
  margin-bottom: 15px;
  padding: 10px 0;
  width: 100%;
  background-color: var(--white-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  z-index: 14;
}
@media (min-width: 992px) {
  .m-filter {
    display: none;
  }
}
.m-filter .-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m-filter .-wrapper .btn-filter {
  position: relative;
}
.m-filter .-wrapper .btn-filter .-icon {
  padding-right: 34px;
  font-size: 22px;
}
.m-filter .-wrapper .btn-filter .-title {
  position: absolute;
  right: 0;
  bottom: 2px;
  padding-left: 6px;
  font-size: 11px;
  white-space: nowrap;
  background-color: var(--white-color);
}

.x-offcanvas-filter .offcanvas-header {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.x-offcanvas-filter .offcanvas-body {
  padding-bottom: 16px;
}
.x-offcanvas-filter .list-group {
  flex-direction: row;
  flex-wrap: wrap;
}
.x-offcanvas-filter .list-group.minimized {
  max-height: 185px !important;
  -webkit-mask-image: linear-gradient(0deg, transparent, #000 30px) !important;
          mask-image: linear-gradient(0deg, transparent, #000 30px) !important;
}
.x-offcanvas-filter .list-group.minimized::after {
  height: 25px !important;
}
.x-offcanvas-filter .list-group-item {
  padding: 5px !important;
  width: 50% !important;
}
.x-offcanvas-filter .list-group-item input {
  display: none;
}
.x-offcanvas-filter .list-group-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  text-align: center;
}
.x-offcanvas-filter .list-group-item input:checked + label {
  background-color: var(--white-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.x-offcanvas-filter input[type=number]::-moz-placeholder {
  font-size: 12px;
  font-weight: 300;
}
.x-offcanvas-filter input[type=number]::placeholder {
  font-size: 12px;
  font-weight: 300;
}

.x-pagination .pagination {
  justify-content: center;
}
.x-pagination .pagination .page-item {
  margin: 0 5px;
}
@media (min-width: 992px) {
  .x-pagination .pagination .page-item {
    margin: 0 20px;
  }
}
.x-pagination .pagination .page-item .page-link {
  padding: 5px 15px;
  color: var(--main-color);
  background: none;
  border: none;
  border-radius: var(--radius-5);
  cursor: pointer;
  transition: all 0.1s;
}
.x-pagination .pagination .page-item.active .page-link {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.x-pagination .pagination .page-item:not(.disabled):hover .page-link {
  background-color: rgba(0, 0, 0, 0.1);
}
.x-pagination .pagination .page-item.disabled {
  cursor: not-allowed;
}
.x-pagination .pagination .page-item.disabled .page-link {
  color: #9c9c9c;
}

.card {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.card .card-body {
  padding: 15px;
}

.toast-container > :not(:last-child) {
  margin-bottom: 10px;
}

.x-cart .offcanvas-header {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.x-cart .offcanvas-body {
  position: relative;
  padding: 0;
}
.x-cart .offcanvas-body .-list-cart {
  height: calc(100% - 167px);
  overflow: auto;
  padding: 0 10px;
}
.x-cart .offcanvas-body .-list-cart::-webkit-scrollbar {
  display: none;
}
.x-cart .offcanvas-body .-list-cart .-item {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(129, 129, 129, 0.2);
}
.x-cart .offcanvas-body .-list-cart .-item:last-child {
  margin-bottom: 0;
  border: none;
}
.x-cart .offcanvas-body .-list-cart .-item .-image {
  margin-right: 15px;
  padding: 5px;
  max-width: 65px;
  width: 100%;
  height: 65px;
  border: 1px solid #eaebed;
  border-radius: var(--radius-5);
}
.x-cart .offcanvas-body .-list-cart .-item .-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-5);
  -o-object-fit: cover;
     object-fit: cover;
}
.x-cart .offcanvas-body .-list-cart .-item .-detail {
  position: relative;
  padding-right: 30px;
  width: 100%;
}
.x-cart .offcanvas-body .-list-cart .-item .-detail .-name {
  display: -webkit-box;
  word-wrap: break-word;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 0;
  margin-right: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--main-color);
  line-height: 1.6;
}
.x-cart .offcanvas-body .-list-cart .-item .-detail .-price {
  margin-right: 5px;
  font-weight: 400;
  color: var(--primary-color);
}
.x-cart .offcanvas-body .-list-cart .-item .-detail .-qty {
  font-size: 13px;
  font-weight: 300;
  color: var(--des-color);
}
.x-cart .offcanvas-body .-list-cart .-item .-detail .-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 10px;
  width: 30px;
  height: 30px;
  padding: 5px;
  font-size: 18px;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 20;
  border-radius: 50%;
}
.x-cart .offcanvas-body .-list-cart .-item .-detail .-remove:hover {
  background: rgba(242, 55, 95, 0.1);
}
.x-cart .offcanvas-body .-actions {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
  width: 100%;
  background-color: var(--white-color);
  z-index: 20;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.x-cart .offcanvas-body .-actions .-title {
  font-weight: 600;
}
.x-cart .offcanvas-body .-actions .btn {
  padding: 10px;
  border-radius: var(--radius-5);
}
.x-cart .offcanvas-body .-actions .btn.btn-view-cart {
  color: var(--white-color);
  background: var(--main-color);
  border: 1px solid var(--main-color);
}
.x-cart .offcanvas-body .-actions .btn.btn-view-cart:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.x-cart .offcanvas-body .-actions .btn.btn-checkout {
  color: var(--main-color);
  background: none;
  border: 1px solid var(--des-color);
}
.x-cart .offcanvas-body .-actions .btn.btn-checkout:hover {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.-qty-control {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 20px;
  width: 100%;
  height: 100%;
  background-color: #F3F5F6;
  border-radius: var(--radius-5);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.-qty-control .-control {
  position: absolute;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.-qty-control .-control:hover {
  color: var(--primary-color);
}
.-qty-control .qty-minus {
  left: 10px;
}
.-qty-control .qty-plus {
  right: 10px;
}
.-qty-control input {
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
  outline: 0;
}

.x-table tr, .x-table td {
  vertical-align: middle;
}
.x-table thead th, .x-table thead td {
  font-size: 14px;
  font-weight: 400;
  color: var(--main-color);
}

.-payment-type {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .-payment-type {
    margin-bottom: 50px;
  }
}
.-payment-type .-item {
  margin-bottom: 10px;
}
.-payment-type .-item:last-child {
  margin-bottom: 0;
}
.-payment-type .-item input {
  display: none;
}
.-payment-type .-item .-label {
  width: 100%;
}
.-payment-type .-item .-label .card {
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.-payment-type .-item .-label .card:hover {
  border-color: #cbe7ff;
}
.-payment-type .-item .-label .card .-image {
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .-payment-type .-item .-label .card .-image {
    margin-bottom: 0;
  }
}
.-payment-type .-item .-label .card .-title {
  color: var(--topic-color);
  font-size: 18px;
  font-weight: 500;
}
.-payment-type .-item .-label .card .-description {
  margin-bottom: 0;
  color: var(--des-color);
  font-size: 14px;
}
.-payment-type .-item .-label .card .-title,
.-payment-type .-item .-label .card .-description {
  text-align: center;
}
@media (min-width: 768px) {
  .-payment-type .-item .-label .card .-title,
  .-payment-type .-item .-label .card .-description {
    text-align: left;
  }
}
.-payment-type .-item input[type=radio]:checked + .-label .card {
  border-color: var(--sky-color);
}
.-payment-type .-item input[type=radio]:checked + .-label .card::after {
  position: absolute;
  top: 2px;
  right: 4px;
  content: "\f192";
  font-family: "Font Awesome 5 pro";
  font-weight: 900;
  color: var(--sky-color);
}

.print-container {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 300;
  background-color: var(--white-color);
}
.print-container .-header {
  position: relative;
  margin-bottom: 20px;
}
.print-container .-header .-logo {
  position: absolute;
  top: 0;
  left: 0;
}
.print-container .-header .-logo img {
  width: 120px;
  height: auto;
}
.print-container .-header .-company-wrapper {
  margin-bottom: 20px;
  text-align: center;
}
.print-container .-header .-company-wrapper .-company {
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 500;
}
.print-container .-header .-company-wrapper .-info {
  margin-bottom: 0;
  word-break: break-all;
  white-space: normal;
}
.print-container .-header .-topic-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.print-container .-header .-topic-wrapper .-topic {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  font-size: 26px;
  text-align: center;
}
.print-container .-header .-topic-wrapper .-stamp-wrapper {
  display: flex;
  justify-content: flex-end;
}
.print-container .-header .-topic-wrapper .-stamp-wrapper .table {
  width: -moz-fit-content;
  width: fit-content;
}
.print-container .-header .-topic-wrapper .-stamp-wrapper .table tbody td {
  padding: 5px 10px;
}
.print-container .-header .-customer-wrapper .-info .-item {
  margin-bottom: 0;
  word-break: break-all;
  white-space: normal;
}
.print-container .-body .table {
  page-break-inside: auto;
}
.print-container .-body .table thead {
  display: table-header-group;
}
.print-container .-body .table thead th {
  font-size: 12px;
  font-weight: 400;
  color: #212529;
  vertical-align: top;
}
.print-container .-body .table tr {
  page-break-inside: avoid;
  page-break-after: auto;
}
.print-container .-body .table tr:last-child td {
  border-bottom: none;
}
.print-container .-body .table tbody tr {
  border-width: 0;
}
.print-container .-body .table td {
  font-size: 12px;
  vertical-align: top;
  word-break: break-all;
  white-space: normal;
}
.print-container .-body .table td.-qty, .print-container .-body .table td.-price {
  white-space: nowrap;
}
.print-container .-body .table .-priview img {
  width: 50px;
  height: 50px;
}
.print-container .-mobile {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 767px) {
  .print-container .-mobile .-header .-logo {
    position: relative;
    margin-bottom: 10px;
    text-align: center;
  }
  .print-container .-mobile .-company-wrapper {
    margin-bottom: 0;
  }
  .print-container .-mobile .-topic-wrapper .-topic {
    position: relative;
    margin-bottom: 15px;
  }
}

.print-product-container thead th {
  border-bottom-width: 2px;
}

.x-slide .slick-track {
  margin: 0;
}
.x-slide .slick-dots li {
  transition: all 0.2s;
}
.x-slide .slick-dots li button {
  height: 5px;
  background: rgba(96, 112, 134, 0.3);
  border-radius: var(--radius-5);
  transition: all 0.2s;
}
.x-slide .slick-dots li button::before {
  content: none;
}
.x-slide .slick-dots li.slick-active {
  width: 40px;
}
.x-slide .slick-dots li.slick-active button {
  width: 40px;
  background-color: var(--primary-color);
}

.floating-button {
  position: fixed;
  padding: 10px;
  bottom: 80px;
  right: 20px;
  width: 54px;
  height: 54px;
  background-color: var(--white-color);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .floating-button {
    bottom: 20px;
  }
}
.floating-button:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.floating-button .-icon {
  width: 100%;
  height: 100%;
}
.floating-button + .dropdown-menu {
  padding: 0;
  min-width: 200px;
  border: none;
  border-radius: var(--radius-10);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden;
}
.floating-button + .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
}
.floating-button + .dropdown-menu .dropdown-item i {
  font-size: 22px;
}

.category-preview {
  padding: 20px 0;
}
.category-preview .-category-item {
  margin-bottom: 15px;
}
.category-preview .-category-item:last-child {
  margin-bottom: 0;
}
.category-preview .-category-item .-category-name {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}
.category-preview .-category-item .row {
  padding: 10px;
}
.category-preview .-category-item .-item-wrapper {
  padding: 10px;
  text-align: center;
  background-color: var(--content-color);
  border-radius: var(--radius-10);
}
.category-preview .-category-item .-item-wrapper .-image {
  margin-bottom: 10px;
}
.category-preview .-category-item .-item-wrapper .-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-10);
}
.category-preview .-category-item .-item-wrapper .-title {
  font-size: 14px;
  color: var(--white-color);
}
.category-preview .-category-item .slick-slide {
  margin: 5px;
}
.category-preview .-category-item .slick-slide > div:nth-of-type(odd) {
  padding: 10px 10px 0;
  background-color: var(--main-color);
  border-top-left-radius: var(--main-radius);
  border-top-right-radius: var(--main-radius);
}
.category-preview .-category-item .slick-slide > div:nth-of-type(odd):empty {
  display: none;
}
.category-preview .-category-item .slick-slide > div:nth-of-type(odd) .-image img {
  margin: 0 auto;
}
.category-preview .-category-item .slick-slide > div:nth-of-type(even) {
  margin-bottom: 10px;
  padding: 10px;
  background-color: var(--main-color);
  border-bottom-left-radius: var(--main-radius);
  border-bottom-right-radius: var(--main-radius);
}
.category-preview .-category-item .slick-slide > div:nth-of-type(even):last-child {
  margin-bottom: 0;
}
.category-preview .-category-item .slick-slide > div:nth-of-type(even):empty {
  display: none;
}
.category-preview .-category-item .slick-slide > div:nth-of-type(even) .-title {
  margin-bottom: 0;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .category-preview .-category-item .slick-slide > div:nth-of-type(even) .-title {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .category-preview .-category-item .slick-slide > div:nth-of-type(even) .-title {
    font-size: 18px;
  }
}

.lightbox {
  position: fixed !important;
  top: 0 !important;
  height: 100%;
}
.lightbox .lb-outerContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: calc(100% - 32px) !important;
  background: none;
}
.lightbox .lb-dataContainer {
  padding: 0;
}
.lightbox .lb-dataContainer .lb-details {
  width: 100%;
  float: unset;
  text-align: center;
}
.lightbox .lb-dataContainer .lb-number {
  font-size: 16px;
}
.lightbox .lb-closeContainer {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
}

.banners {
  padding: 15px 0;
}
.banners .slick-list {
  padding: 0 !important;
}
.banners .slick-slide {
  margin: 5px;
}

.brand {
  position: relative;
  padding: 20px 0 150px;
  background-image: url("../images/banner/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .brand {
    padding: 100px 0 220px;
  }
}
.brand .-topic,
.brand .-sub-title {
  margin: 0 auto;
  max-width: 540px;
  color: var(--white-color);
  text-align: center;
}
.brand .-topic {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .brand .-topic {
    margin-bottom: 30px;
  }
}
.brand .-sub-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 200;
}
@media (min-width: 992px) {
  .brand .-sub-title {
    margin-bottom: 50px;
  }
}
.brand .-dealer .-item:hover .-item-wrapper {
  transform: scale(1.05);
}
.brand .-dealer .-image {
  text-align: center;
}
.brand .-dealer .-image img {
  margin: auto;
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-7);
}
.brand .-dealer .-item-wrapper {
  margin: 5px;
  padding: 10px;
  height: 100%;
  background-color: var(--main-color);
  border-radius: var(--main-radius);
  transform: scale(1);
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .brand .-dealer .-item-wrapper {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .brand .-dealer .-item-wrapper {
    padding: 15px;
  }
}
.brand .-dealer .-item-wrapper .-title {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .brand .-dealer .-item-wrapper .-title {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .brand .-dealer .-item-wrapper .-title {
    font-size: 18px;
  }
}
.brand .-dealer .slick-slide {
  margin: 5px;
}
.brand .-dealer .slick-slide div:nth-of-type(odd) {
  padding: 10px 10px 0;
  background-color: var(--main-color);
  border-top-left-radius: var(--main-radius);
  border-top-right-radius: var(--main-radius);
}
.brand .-dealer .slick-slide div:nth-of-type(odd) .-title {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .brand .-dealer .slick-slide div:nth-of-type(odd) .-title {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .brand .-dealer .slick-slide div:nth-of-type(odd) .-title {
    font-size: 18px;
  }
}
.brand .-dealer .slick-slide div:nth-of-type(even) {
  padding: 0 10px 10px;
  background-color: var(--main-color);
  border-bottom-left-radius: var(--main-radius);
  border-bottom-right-radius: var(--main-radius);
  margin-bottom: 10px;
}

.service {
  margin-top: -100px;
  padding-bottom: 50px;
  background-color: #f4f9fd;
}
.service .-list {
  margin-bottom: 100px;
}
.service .-list .card {
  border: none;
  border-radius: var(--main-radius);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.service .-list .card .card-body {
  padding: 20px;
}
@media (min-width: 992px) {
  .service .-list .card .card-body {
    padding: 40px;
  }
}
.service .-list .card .card-body .-image {
  margin-bottom: 20px;
  text-align: center;
}
.service .-list .card .card-body .-title {
  font-size: 20px;
}
.service .-list .card .card-body .-description {
  margin-bottom: 0;
  color: var(--des-color);
}
.service .-detail .-item {
  position: relative;
  margin-bottom: 20px;
}
.service .-detail .-item::after {
  display: none;
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 1px;
  height: 100%;
  border-right: 1px solid #e2e2e2;
}
@media (min-width: 992px) {
  .service .-detail .-item::after {
    display: block;
  }
}
.service .-detail .-item:last-child::after {
  display: none;
}
.service .-detail .-item:last-child {
  margin-bottom: 0;
}
.service .-detail .-item .-image {
  text-align: center;
}
@media (min-width: 992px) {
  .service .-detail .-item .-image {
    text-align: left;
  }
}
.service .-detail .-item .-title {
  margin: 20px 0;
}
@media (min-width: 992px) {
  .service .-detail .-item .-title {
    margin: 30px 0;
  }
}
.service .-detail .-item .-description {
  margin-bottom: 0;
}

.about {
  padding: 50px 0;
  background-color: var(--white-color);
  overflow: hidden;
}
.about .about-top {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9edef;
}
@media (min-width: 992px) {
  .about .about-top {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
}
.about .about-top .-left,
.about .about-top .-right {
  margin-bottom: 0;
  max-width: 420px;
}
.about .about-top .-left {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .about .about-top .-left {
    margin-bottom: 0;
  }
}
.about .about-top .-right {
  font-size: 16px;
}
.about .about-bottom .-top,
.about .about-bottom .-bottom {
  position: relative;
}
.about .about-bottom .-bg {
  position: absolute;
  top: 0;
}
.about .about-bottom .-bg.-bg-left {
  left: -45%;
}
.about .about-bottom .-bg.-bg-right {
  right: -45%;
}
.about .about-bottom .-bg img {
  width: 100%;
}
.about .about-bottom .-wrapper {
  padding-top: 50px;
}
.about .about-bottom .card {
  border: none;
  border-radius: var(--main-radius);
}
.about .about-bottom .card .-paper {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .about .about-bottom .card .-paper {
    margin-bottom: 0;
  }
}
.about .about-bottom .card .-detail.-right {
  text-align: left;
}
@media (min-width: 992px) {
  .about .about-bottom .card .-detail.-right {
    text-align: right;
  }
}
.about .about-bottom .card .-detail h4 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--content-color);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .about .about-bottom .card .-detail h4 {
    margin-bottom: 25px;
  }
}
.about .about-bottom .card .-detail h2 {
  margin-bottom: 15px;
  font-size: 35px;
  font-weight: 400;
  color: var(--content-color);
}
@media (min-width: 992px) {
  .about .about-bottom .card .-detail h2 {
    margin-bottom: 30px;
  }
}
.about .about-bottom .card .-detail h2 span {
  font-weight: 300;
  display: block;
}
.about .about-bottom .card .-detail p {
  margin: 0px;
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 16px;
  line-height: 32px;
}
@media (min-width: 992px) {
  .about .about-bottom .card .-detail p {
    margin-bottom: 30px;
  }
}

.product {
  padding: 50px 0;
  background-color: var(--white-color);
}
.product .-topic {
  text-transform: uppercase;
  text-align: center;
}

.-search-title {
  margin-bottom: 15px;
  font-size: 16px;
}
@media (min-width: 992px) {
  .-search-title {
    font-size: 18px;
  }
}
.-search-title .-title {
  font-weight: 400;
}

.x-product .-item {
  position: relative;
  margin: 5px;
  border: 1px solid #e7e7e7;
  border-radius: var(--main-radius);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  transition: all 0.1s;
  overflow: hidden;
}
.x-product .-item:hover {
  transform: translateY(-5px);
}
.x-product .-item .-wrapper .-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  z-index: 1;
}
.x-product .-item .-wrapper .card-img-top {
  position: relative;
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 12;
}
.x-product .-item .-wrapper .card-body {
  padding: 10px;
  min-height: 80px;
}
.x-product .-item .-wrapper .card-body .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 400;
  color: var(--topic-color);
  overflow: hidden;
  line-height: 1.2;
}
.x-product .-item .-wrapper .card-body .card-subtitle {
  font-size: 12px;
  font-weight: 300;
  color: var(--des-color);
}
.x-product .-item .-wrapper .card-footer {
  padding: 10px;
  background: none;
  border: none;
}
.x-product .-item .-wrapper .card-footer .-price,
.x-product .-item .-wrapper .card-footer .-qty,
.x-product .-item .-wrapper .card-footer .-like,
.x-product .-item .-wrapper .card-footer .-sell {
  font-size: 14px;
}
.x-product .-item .-wrapper .card-footer .-price-wrapper {
  position: relative;
}
.x-product .-item .-wrapper .card-footer .-price-wrapper .-old-price {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 12px;
  color: var(--sky-color);
  text-decoration-line: line-through;
}
.x-product .-item .-wrapper .card-footer .-price-wrapper .-price {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary-color);
}
.x-product .-item .-wrapper .card-footer .-qty,
.x-product .-item .-wrapper .card-footer .-like,
.x-product .-item .-wrapper .card-footer .-sell {
  font-weight: 300;
  color: var(--des-color);
}
.x-product .-item .-wrapper .-tags {
  position: absolute;
  top: 3px;
  right: 5px;
  z-index: 13;
}
.x-product .-item .-wrapper .-tags .badge {
  font-size: 12px;
  font-weight: 400;
}

.-information {
  padding-bottom: 15px;
}
.-information .-tags .badge {
  font-size: 12px;
  font-weight: 400;
}
.-information .product-name {
  margin-bottom: 20px;
  font-size: 20px;
}
@media (min-width: 992px) {
  .-information .product-name {
    font-size: 24px;
  }
}
.-information .-preview {
  margin-bottom: 30px;
}
.-information .-preview .-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-5);
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .-information .-preview .-item img {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .-information .-preview .-item img {
    height: 500px;
  }
}
.-information .-preview .-main {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .-information .-preview .-main {
    margin-bottom: 15px;
  }
}
.-information .-preview .-sub .-item {
  margin: 5px;
  cursor: pointer;
}
.-information .-preview .-sub .-item img {
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .-information .-preview .-sub .-item img {
    height: 180px;
  }
}
@media (min-width: 992px) {
  .-information .-preview .-sub .-item img {
    height: 160px;
  }
}
.-information .-preview .-sub .-item.slick-current.slick-active img {
  border: 2px solid var(--primary-color);
}
.-information .-actions {
  display: flex;
  align-items: center;
}
.-information .-actions .btn {
  margin-right: 10px;
}
.-information .-actions .-like-info {
  font-size: 14px;
  font-weight: 300;
  color: var(--des-color);
}
.-information .-wrapper {
  margin-bottom: 20px;
}
.-information .-wrapper:last-child {
  margin-bottom: 0;
}
.-information .-topic {
  font-size: 18px;
}
.-information .-description {
  font-size: 14px;
  font-weight: 300;
  color: var(--des-color);
}
.-information .-description* {
  font-size: 14px;
  font-weight: 300;
  color: var(--des-color);
}
.-information .-description img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-7);
}
.-information .-description table {
  margin-bottom: 10px;
}
.-information .-description table td {
  padding: 5px;
  border-width: 1px;
  border-style: inherit;
  vertical-align: middle;
}
.-information .-description table td * {
  margin-bottom: 0 !important;
}
.-information .-spec {
  padding-left: 0;
}
.-information .-spec .-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}
@media (min-width: 768px) {
  .-information .-spec .-item {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    line-height: 0;
  }
}
.-information .-spec .-item .-title,
.-information .-spec .-item .-detail {
  padding: 0;
}
@media (min-width: 768px) {
  .-information .-spec .-item .-title,
  .-information .-spec .-item .-detail {
    padding: 10px 0;
  }
}
.-information .-spec .-item .-title {
  width: 100%;
}
@media (min-width: 768px) {
  .-information .-spec .-item .-title {
    width: 25%;
    border-right: 1px solid #eee;
  }
}
.-information .-spec .-item .-title h4 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}
.-information .-spec .-item .-detail {
  width: 100%;
}
@media (min-width: 768px) {
  .-information .-spec .-item .-detail {
    padding-left: 15px;
    width: 80%;
  }
}
.-information .-spec .-item .-detail p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--des-color);
}
.-information .-price-wrapper {
  margin-bottom: 15px;
}
.-information .-price-wrapper .-price {
  font-size: 24px;
  font-weight: 600;
}
.-information .-price-wrapper .-old-price {
  font-size: 16px;
  font-weight: 400;
  color: var(--des-color);
  text-decoration-line: line-through;
}
.-information .-cart-wrapper {
  border-top: 1px dashed #bcbcbc;
  border-bottom: 1px dashed #bcbcbc;
}
@media (min-width: 992px) {
  .-information .-cart-wrapper {
    border: none;
  }
}
.-information .-cart-wrapper .-cart .btn {
  border-radius: var(--radius-5);
}
.-information .-cart-wrapper .-cart .btn.btn-cart {
  color: var(--main-color);
  background: none;
  border: 1px solid var(--des-color);
}
.-information .-cart-wrapper .-cart .btn.btn-cart:hover {
  color: var(--white-color);
  background: var(--main-color);
  border-color: var(--main-color);
}
.-information .-product-detail {
  border: none;
}
@media (min-width: 992px) {
  .-information .-product-detail {
    border-top: 1px dashed #bcbcbc;
  }
}
.-information .-share {
  margin-top: 20px;
}
.-information .-share .-title {
  font-weight: 600;
}
.-information .-share .-list-social .-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--white-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}
.-information .-share .-list-social .-item:hover {
  transform: translateY(-3px);
}

.cart-view .-topic {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
}
.cart-view .x-table th,
.cart-view .x-table td {
  padding: 8px;
}
@media (min-width: 992px) {
  .cart-view .x-table th,
  .cart-view .x-table td {
    padding: 15px;
  }
}
.cart-view .x-table tbody tr td {
  border-bottom: 1px dashed #dee2e6;
}
.cart-view .x-table tbody tr:last-child td {
  border-bottom: none;
}
.cart-view .x-table .-product {
  display: flex;
  align-items: flex-start;
}
.cart-view .x-table .-product .-image {
  width: 70px;
  height: 60px;
}
@media (min-width: 992px) {
  .cart-view .x-table .-product .-image {
    margin-right: 10px;
  }
}
.cart-view .x-table .-product .-image img {
  min-height: 60px;
  border-radius: var(--radius-5);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.cart-view .x-table .-product .-name {
  display: none;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--main-color);
  line-height: 1.3;
  word-wrap: break-word;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cart-view .x-table .-product .-name {
    display: -webkit-box;
  }
}
.cart-view .x-table .-product:hover .-name {
  color: var(--primary-color);
}
.cart-view .x-table .-price {
  font-size: 14px;
  font-weight: 500;
}
.cart-view .x-table .-qty-control {
  background: none;
  border-radius: var(--radius-7);
}
.cart-view .x-table .-qty-control input {
  font-size: 14px;
}
.cart-view .x-table .-remove .btn-link {
  padding: 0;
  color: var(--des-color);
}
.cart-view .x-table .-remove .btn-link:hover {
  color: var(--primary-color);
}
.cart-view .-sum-price .-title {
  margin-bottom: 20px;
  font-size: 18px;
}
.cart-view .-sum-price .-sum-item-wrapper {
  margin-bottom: 20px;
}
.cart-view .-sum-price .sum-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  border-bottom: 1px dashed #dee2e6;
}
.cart-view .-sum-price .sum-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.cart-view .-sum-price .sum-item .-name {
  display: -webkit-box;
  word-wrap: break-word;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.cart-view .-sum-price .sum-item .-qty {
  font-weight: 300;
  color: var(--des-color);
}
.cart-view .-sum-price .sum-item .-right {
  margin-left: 10px;
  color: var(--des-color);
}
.cart-view .-sum-price .-sum-total .-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 14px;
}
.cart-view .-sum-price .-sum-total .-wrapper:last-child {
  margin-bottom: 0;
}
.cart-view .-sum-price .-sum-total .-wrapper .-value {
  color: var(--des-color);
}
.cart-view .-sum-price .-sum-total .-wrapper.-final {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #dee2e6;
  font-size: 18px;
  font-weight: 500;
}
.cart-view .-sum-price .-sum-total .-wrapper.-final .-value {
  color: var(--main-color);
}
.cart-view .btn.btn-quotation {
  padding: 10px;
  font-weight: 300;
  border-radius: var(--radius-7);
}
.cart-view .btn.btn-checkout {
  padding: 10px;
  color: var(--white-color);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-5);
  transition: all 0.2s;
}
.cart-view .btn.btn-checkout:hover {
  filter: brightness(1.1);
}

.checkout .x-form .-topic {
  margin-bottom: 15px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .checkout .x-form .-topic {
    font-size: 24px;
  }
}
.checkout .x-form .form-floating input[required] + label::before,
.checkout .x-form .form-floating textarea[required] + label::before {
  content: "*";
  margin-right: 5px;
  color: #dc3545;
}
.checkout .-step .-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout .-step .-tab {
  display: flex;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
}
@media (min-width: 992px) {
  .checkout .-step .-tab {
    font-size: 16px;
  }
}
.checkout .-step .-tab .-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--primary-color);
  background-color: #ffe2e8;
}
@media (min-width: 992px) {
  .checkout .-step .-tab .-icon {
    width: 40px;
    height: 40px;
  }
}
.checkout .-step .-tab.active .-icon {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.checkout .-step .-line {
  display: none;
  margin: 0 30px;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
@media (min-width: 768px) {
  .checkout .-step .-line {
    display: block;
  }
}
.checkout .-form {
  margin: 15px 0;
}
@media (min-width: 768px) {
  .checkout .-form {
    margin: 40px 0;
  }
}
.checkout .-action .btn {
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .checkout .-action .btn {
    padding: 20px 30px;
  }
}
.checkout .-action .btn[disabled] {
  opacity: 0.2;
}
.checkout .-payment {
  margin-bottom: 20px;
}
.checkout .-payment .-promptpay {
  margin: 0 auto;
  max-width: 350px;
  width: 100%;
  background-color: var(--white-color);
  border-radius: var(--main-radius);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  overflow: hidden;
}
.checkout .-payment .-promptpay .-body {
  padding: 15px;
}
.checkout .-payment .-promptpay .line-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.checkout .-payment .-promptpay .line-wrapper .line {
  height: 1px;
  width: 100%;
  background-color: #dbdbdb;
  flex: 1;
}
.checkout .-payment .-promptpay .line-wrapper .text {
  padding: 0 15px;
  font-size: 12px;
  color: #999;
}
.checkout .-payment .-promptpay .-account .-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.checkout .-payment .-promptpay .-account .-item:last-child {
  margin-bottom: 0;
}
.checkout .-payment .-promptpay .-account .-item .-title {
  margin-bottom: 0;
  font-size: 16px;
}
.checkout .-payment .-promptpay .-account .-item .-value {
  font-size: 16px;
  font-weight: 300;
}
.checkout .-drop-file .filepond--root {
  font-family: inherit;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  transition: box-shadow 0.2s;
}
.checkout .-drop-file .filepond--root:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 6px -1px, rgba(0, 0, 0, 0.3) 0px 2px 4px -1px;
}
.checkout .-drop-file .filepond--root * {
  cursor: pointer;
}
.checkout .-drop-file .filepond--root .filepond--panel-root {
  background-color: var(--main-color);
}
.checkout .-drop-file .filepond--root .filepond--drop-label {
  color: var(--white-color);
  border-radius: 10px;
}
.checkout .-drop-file .filepond--root .filepond--file-info .filepond--file-info-main,
.checkout .-drop-file .filepond--root .filepond--file-status-main {
  font-weight: 300;
}
.checkout .-successfully {
  padding: 15px;
  background-color: var(--white-color);
  border-radius: var(--main-radius);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
@media (min-width: 992px) {
  .checkout .-successfully {
    padding: 40px;
  }
}
.checkout .-successfully .-topic {
  text-align: center;
}
.checkout .-successfully .-topic .-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--main-color);
}
@media (min-width: 992px) {
  .checkout .-successfully .-topic .-icon {
    width: 80px;
    height: 80px;
  }
}
.checkout .-successfully .-topic .-icon i {
  color: var(--white-color);
  font-size: 30px;
}
@media (min-width: 992px) {
  .checkout .-successfully .-topic .-icon i {
    font-size: 40px;
  }
}
.checkout .-successfully .-topic .-title {
  font-size: 20px;
}
@media (min-width: 992px) {
  .checkout .-successfully .-topic .-title {
    font-size: 30px;
  }
}
.checkout .-successfully .-order {
  margin: 30px 0 20px;
  padding: 20px;
  border: 1px dashed var(--main-color);
  border-radius: var(--main-radius);
}
@media (min-width: 992px) {
  .checkout .-successfully .-order {
    margin: 50px 0 40px;
  }
}
.checkout .-successfully .-order .-item {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .checkout .-successfully .-order .-item {
    margin-bottom: 0;
  }
}
.checkout .-successfully .-order .-item .-title {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300;
}
.checkout .-successfully .-order .-item .-value {
  font-size: 16px;
  font-weight: 400;
}
.checkout .-successfully .-information {
  padding: 20px;
  border: 1px solid var(--main-color);
  border-radius: var(--main-radius);
}
.checkout .-successfully .-information .-topic {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: left;
}
.checkout .-successfully .-information .-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.checkout .-successfully .-information .-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.checkout .-successfully .-information .-item .-title {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
}
@media (min-width: 992px) {
  .checkout .-successfully .-information .-item .-title {
    font-size: 16px;
  }
}
.checkout .-successfully .-information .-item .-value {
  font-size: 16px;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .checkout .-successfully .-information .-item .-value {
    font-size: 16px;
  }
}

.history .-tab {
  position: sticky;
  top: 51px;
  margin: -15px 0 10px;
  width: 100%;
  z-index: 90;
}
@media (min-width: 768px) {
  .history .-tab {
    top: 56px;
    margin: 0 0 20px;
  }
}
.history .-tab .container {
  padding: 0;
}
@media (min-width: 768px) {
  .history .-tab .container {
    padding: 0 10px;
  }
}
.history .-tab .-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--white-color);
  overflow-x: auto;
}
.history .-tab .-wrapper::-webkit-scrollbar {
  display: none;
}
.history .-tab .-item {
  padding: 15px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid rgba(0, 0, 0, 0.09);
  transition: all 0.2s;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .history .-tab .-item {
    font-size: 16px;
  }
}
.history .-tab .-item:hover, .history .-tab .-item.active {
  color: var(--primary-color);
}
.history .-tab .-item.active {
  border-color: var(--primary-color);
}
.history .-history-list .-item {
  margin-bottom: 10px;
}
.history .-history-list .-item:last-child {
  margin-bottom: 0;
}
.history .-history-list .-item .card:first-child {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.09);
}
.history .-history-list .-item .card:last-child {
  background: #fffefb;
}
.history .-history-list .-item .-item-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
@media (min-width: 768px) {
  .history .-history-list .-item .-item-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.history .-history-list .-item .-item-header .-title {
  font-weight: 500;
}
.history .-history-list .-item .-item-header .-right {
  text-align: left;
}
@media (min-width: 768px) {
  .history .-history-list .-item .-item-header .-right {
    text-align: right;
  }
}
.history .-history-list .-item .-item-header .-right .-status i {
  cursor: pointer;
}
.history .-history-list .-item .-item-body {
  cursor: pointer;
}
.history .-history-list .-item .-summary {
  text-align: right;
}
.history .-history-list .-item .-summary .-title {
  font-size: 14px;
}
.history .-history-list .-item .-summary .-value {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color);
}

.-product-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  font-size: 14px;
}
.-product-item .-image img {
  border-radius: var(--radius-7);
}
.-product-item .-detail {
  color: var(--content-color);
}
.-product-item .-detail .-name {
  display: -webkit-box;
  word-wrap: break-word;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.-product-item .-detail .-qty {
  font-weight: 400;
}
.-product-item .-price {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 100%;
  text-align: right;
  color: var(--primary-color);
}

a:last-child .-product-item {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.order .card {
  border-top: 1px dashed rgba(0, 0, 0, 0.09);
}
.order .card:first-child {
  border-top: 0;
}
.order .card.-post {
  border-top: 0;
  overflow: hidden;
}
.order .card.-post .-post-wrapper {
  height: 3px;
  width: 100%;
  background-position-x: -1.875rem;
  background-size: 7.25rem 3px;
  background-image: repeating-linear-gradient(45deg, #6fa6d6, #6fa6d6 33px, transparent 0, transparent 41px, #f18d9b 0, #f18d9b 74px, transparent 0, transparent 82px);
}
.order .-order-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
}
@media (min-width: 768px) {
  .order .-order-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.order .-order-header .-left .btn {
  margin-bottom: 10px;
  padding: 0;
  color: var(--des-color);
  font-size: 14px;
}
@media (min-width: 768px) {
  .order .-order-header .-left .btn {
    margin-bottom: 0;
  }
}
.order .-order-header .-right {
  display: flex;
  align-items: center;
}
.order .-order-header .-right .vr {
  margin: 0 10px;
}
.order .-order-header .-right .-status {
  color: var(--primary-color);
  white-space: nowrap;
}
.order .-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
@media (min-width: 768px) {
  .order .-timeline {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    padding: 30px 0;
  }
}
.order .-timeline .-process-wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .order .-timeline .-process-wrapper {
    display: flex;
  }
}
.order .-timeline .-process-wrapper .-process {
  position: relative;
  top: -23px;
  margin: 0 auto;
  width: 75%;
  height: 5px;
  background-color: #e0e0e0;
}
.order .-timeline .-process-wrapper .-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--percent);
  height: 100%;
  background-color: #2dc258;
}
.order .-timeline .-item {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}
.order .-timeline .-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .order .-timeline .-item {
    margin-bottom: 0;
    width: 25%;
  }
}
.order .-timeline .-item .-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  padding: 10px;
  width: 60px;
  height: 60px;
  color: #e0e0e0;
  border: 4px solid #e0e0e0;
  background-color: var(--white-color);
  border-radius: 50%;
  z-index: 2;
}
.order .-timeline .-item .-icon i {
  font-size: 20px;
}
.order .-timeline .-item.active .-icon {
  border-color: #2dc258;
  color: #2dc258;
}
.order .-timeline .-item .-title {
  color: var(--main-color);
  font-size: 14px;
  white-space: nowrap;
}
.order .-timeline .-item .-datetime {
  color: rgba(0, 0, 0, 0.26);
  font-size: 12px;
}
.order .-information {
  padding-bottom: 0;
}
.order .-information .-topic {
  margin-bottom: 15px;
  font-size: 18px;
}
.order .-information .-name {
  font-size: 14px;
  font-weight: 400;
}
.order .-information .-tel,
.order .-information .-address,
.order .-information .-tracking-code {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  color: #737373;
}
.order .-product {
  background-color: #fafafa;
}
.order .-product-wrapper {
  margin-bottom: 20px;
}
.order .-summary-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.order .-summary-wrapper .-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.09);
}
.order .-summary-wrapper .-item:last-child {
  border-bottom: 0;
}
.order .-summary-wrapper .-item .-title {
  padding: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.54);
}
.order .-summary-wrapper .-item .-value {
  padding: 10px;
  max-width: 50%;
  width: 100%;
  font-size: 14px;
  text-align: right;
  border-left: 1px dotted rgba(0, 0, 0, 0.09);
}
@media (min-width: 768px) {
  .order .-summary-wrapper .-item .-value {
    max-width: 240px;
  }
}
.order .-summary-wrapper .-item .-value.-big {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
}

.profile .-topic {
  margin-bottom: 20px;
  font-size: 20px;
}
@media (min-width: 992px) {
  .profile .-topic {
    font-size: 24px;
  }
}

.contact .-topic {
  margin: 30px 0;
  font-size: 32px;
  text-align: center;
}
.contact .card {
  box-shadow: 0px 30px 70px rgba(1, 15, 28, 0.1);
}
.contact .-map iframe {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-7);
}
.contact .-information .-item {
  margin-bottom: 20px;
}
.contact .-information .-item:last-child {
  margin-bottom: 0;
}
.contact .-information .-item .-icon {
  margin-bottom: 10px;
}
.contact .-information .-item a {
  transition: all 0.2s;
}
.contact .-information .-item a:hover {
  color: var(--primary-color) !important;
}
.contact .-information .-item.-message .-sub * {
  font-weight: 300;
  color: #55585B;
}
.contact .-information .-item.-message .-title * {
  font-weight: 500;
  color: #010F1C;
  letter-spacing: 2px;
}
.contact .-information .-item.-location .-sub * {
  font-weight: 300;
  color: #010F1C;
}
.contact .-information .-item.-socail .-sub {
  margin-bottom: 10px;
  font-weight: 300;
  color: #010F1C;
}
.contact .-information .-item.-socail .-social-item .nav-link {
  padding: 0;
}
.contact .-information .-item.-socail .-social-item .nav-link img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.2s;
}
.contact .-information .-item.-socail .-social-item .nav-link:hover img {
  transform: scale(1.1);
}

.new .-topic {
  margin-bottom: 20px;
  font-size: 26px;
}
@media (min-width: 992px) {
  .new .-topic {
    font-size: 32px;
  }
}
.new .-new-item .card {
  height: 100%;
  border-radius: var(--main-radius);
  overflow: hidden;
}
.new .-new-item .card:hover .card-img-top img {
  transform: scale(1.05);
}
.new .-new-item .card-img-top {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.new .-new-item .card-img-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s;
}
.new .-new-item .-datetime {
  margin-bottom: 10px;
  font-size: 12px;
  color: #55585B;
}
.new .-new-item .-title {
  display: -webkit-box;
  word-wrap: break-word;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .new .-new-item .-title {
    font-size: 18px;
  }
}
.new .-new-item .-description {
  display: -webkit-box;
  word-wrap: break-word;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .new .-new-item .-description {
    font-size: 16px;
  }
}
.new .-new-item .card-footer {
  padding: 0 15px 15px;
  background: none;
  border-top: 0;
}
.new .-new-item .card-footer .btn {
  color: var(--white-color);
  background-color: var(--main-color);
}

.new-content .-paper {
  margin-bottom: 20px;
}
.new-content .-paper img {
  border-radius: var(--main-radius);
}
.new-content .-datetime {
  margin-bottom: 10px;
  font-size: 14px;
  color: #55585B;
}
.new-content .-topic {
  margin-bottom: 15px;
  font-size: 26px;
}
@media (min-width: 992px) {
  .new-content .-topic {
    font-size: 32px;
  }
}/*# sourceMappingURL=main.css.map */