@keyframes pulse {
  0% {
    transform: scale(0.85);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(200, 200, 200, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(200, 200, 200, 0);
  }
}
body {
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
body.overlay::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

button,
button:focus,
button:focus-visible,
input:focus-visible,
.form-control:focus,
select:focus-visible,
.form-select:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

body ::-webkit-scrollbar {
  width: 4px;
}

body ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body ::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid #99a1b5;
}

.cart .cart-dropdown .cart-body .cart-item .item-img img, .footer .footer-logo img, .header .header-left .header-main-logo img, .header .header-left .header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header {
  background-color: white;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  min-height: 70px;
  padding: 0 30px;
  top: 0;
  left: auto;
  right: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.header .header-left {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
}
.header .header-left .header-main-logo, .header .header-left .header-logo {
  height: 64px;
}
.header .header-right {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
}
.header .header-right .cart-icon {
  width: 44px;
  height: 44px;
}
.header .header-right .cart-icon:hover {
  background-color: rgba(0, 0, 0, 0.02);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.header .header-right .cart-icon svg {
  stroke: #99a1b5;
  width: 20px;
  height: 20px;
}
.header .header-right .separator {
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  height: 25px;
  margin-left: 8px;
  margin-right: 8px;
}
.header .header-right .profile_button {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  padding: 6px 8px;
  color: #99a1b5;
}
.header .header-right .profile_button::after {
  display: none;
}
.header .header-right .profile_button svg {
  stroke: #99a1b5;
  width: 20px;
  height: 20px;
}
.header .header-right .profile_button:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.header .header-right .profile_drop {
  top: 20px !important;
  padding: 30px;
  border: 0;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.header .header-right .profile_drop .control {
  padding: 24px 16px;
  min-width: 230px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
}
.header .header-right .profile_drop .control .control-icon {
  padding: 6px 8px;
  width: 50px;
  height: 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  margin-inline-end: 16px;
}
.header .header-right .profile_drop .control .control-icon svg {
  stroke: #2b4cb0;
  width: 18px;
  height: 18px;
}
.header .header-right .profile_drop .control:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.header .header-right .profile_drop .control:hover .control-icon {
  background-color: white;
}
.header .header-right .profile_drop .sign-out {
  background-color: #2b4cb0;
  color: white;
  text-align: center;
  font-weight: 600;
  padding: 6px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  margin-top: 10px;
  position: relative;
}
.header .header-right .profile_drop .sign-out::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header .header-right .profile_drop .sign-out:hover::after {
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 576px) {
  .header {
    position: fixed;
    top: 0px;
    background-color: #fff;
    opacity: 1;
    z-index: 100;
  }
}

.footer {
  background-color: white;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  min-height: 70px;
  padding: 0 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .footer .copyrights {
    font-size: 12px;
  }
}
.footer .footer-logo {
  width: 100px;
}
.footer .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 30px;
}
.footer .social-links .so-link {
  color: #2b4cb0;
}
.footer .social-links .so-link:hover {
  color: #99a1b5;
}

.content-body {
  height: 90vh;
  position: relative;
}
.content-body .sidebar {
  background-color: white;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important;
  border-radius: 20px;
  padding: 0 13px;
  margin-top: auto;
  max-width: 240px;
  margin-left: 5px;
}
.content-body .sidebar a,
.content-body .sidebar .nav-link {
  color: #99a1b5;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}
.content-body .sidebar a span,
.content-body .sidebar .nav-link span {
  display: inline;
  transition: 0.3s;
}
@media (min-width: 576px) {
  .content-body .sidebar a span,
.content-body .sidebar .nav-link span {
    display: inline;
  }
}
@media (max-width: 576px) {
  .content-body .sidebar a:hover,
.content-body .sidebar .nav-link:hover {
    position: relative;
  }
  .content-body .sidebar a:hover span,
.content-body .sidebar .nav-link:hover span {
    position: absolute;
    display: inline !important;
    background-color: rgb(248, 248, 248);
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0px 1px 5px 0px rgba(173, 173, 173, 0.75);
  }
}
.content-body .sidebar li ul {
  padding-left: 10px !important;
}
.content-body .sidebar li ul span {
  font-size: 13px;
}
@media (max-width: 576px) {
  .content-body .sidebar {
    position: fixed;
    top: 17%;
    left: 10px;
  }
}
@media (max-width: 576px) {
  .content-body .responsive-col {
    margin-left: 100px;
    margin-top: 100px;
  }
}

div.dataTables_wrapper {
  overflow: hidden;
}
div.dataTables_wrapper .dataTables_filter label svg {
  margin-right: -35px;
  color: #2b4cb0;
  width: 20px;
}
div.dataTables_wrapper .dataTables_filter label input {
  min-width: 250px;
  padding-left: 40px;
  border-color: #2b4cb0;
}
div.dataTables_wrapper .dataTables_info {
  color: #313439;
  font-size: 12px;
  font-weight: 600;
}
div.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #2b4cb0 !important;
  position: relative;
}
div.dataTables_wrapper .dataTables_paginate .paginate_button svg {
  width: 20px;
}
div.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  border: 0;
  background: none;
  color: #2b4cb0 !important;
  text-decoration: underline !important;
}
div.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: 0;
  background: none;
  box-shadow: none !important;
}
div.dataTables_wrapper .dataTables_paginate .paginate_button::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
div.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: 0;
  background: none;
  color: #2b4cb0 !important;
}
div.dataTables_wrapper .dataTables_paginate .paginate_button:hover::after {
  background: rgba(255, 255, 255, 0.2);
}
div.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, div.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  color: #99a1b5 !important;
  cursor: not-allowed;
}

table.dataTable {
  width: 100%;
  margin-top: 10px;
  border: 2px solid #2b4cb0;
  border-bottom: 2px solid #2b4cb0 !important;
  color: #313439;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
table.dataTable thead {
  background-color: #2b4cb0;
  color: white;
}
table.dataTable tbody tr td {
  padding: 15px 10px;
}
table.dataTable tbody tr td.dtr-control::before {
  color: #2b4cb0 !important;
  opacity: 0.7;
  font-size: 12px;
  vertical-align: text-bottom;
}
table.dataTable tbody tr td.edit-action svg {
  color: #28a745;
}
table.dataTable tbody tr td.print-action svg {
  color: #f8ac2d;
}
table.dataTable tbody tr td.hist-action svg {
  color: #313439;
}
table.dataTable tbody tr td.edit-action svg, table.dataTable tbody tr td.print-action svg, table.dataTable tbody tr td.hist-action svg {
  width: 18px;
  transition: all 0.2s ease-in-out;
}
table.dataTable tbody tr td.edit-action svg:hover, table.dataTable tbody tr td.print-action svg:hover, table.dataTable tbody tr td.hist-action svg:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
table.dataTable tbody tr td.statusTd span {
  padding: 5px 10px;
  border-radius: 13px;
}
table.dataTable tbody tr.odd .statusTd span {
  background-color: #f8ac2d;
}
table.dataTable tbody tr.even .statusTd span {
  background-color: #99a1b5;
}
table.dataTable tbody tr.odd > *, table.dataTable tbody tr.even > * {
  box-shadow: none !important;
}
table.dataTable tbody tr:hover > *, table.dataTable tbody tr.odd:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(43, 76, 176, 0.035) !important;
}
table.dataTable tbody tr.child ul.dtr-details {
  width: 100%;
}
table.dataTable tbody tr.child ul.dtr-details span.dtr-title {
  color: #2b4cb0;
}

div.dt-buttons {
  padding: 5px;
}

div.dt-buttons > .dt-button,
div.dt-buttons > div.dt-button-split .dt-button {
  border: 0;
  border-top: 1px solid rgba(43, 76, 176, 0.16);
  background: white !important;
  box-shadow: 0 2px 4px rgba(43, 76, 176, 0.16) !important;
  margin-inline: 5px;
}
div.dt-buttons > .dt-button svg,
div.dt-buttons > div.dt-button-split .dt-button svg {
  stroke: #2b4cb0;
  width: 16px;
  height: 16px;
}
div.dt-buttons > .dt-button:hover,
div.dt-buttons > div.dt-button-split .dt-button:hover {
  border: 1px solid rgba(43, 76, 176, 0.5) !important;
}

.custom-modal .modal-header {
  color: #99a1b5;
  font-size: 18px;
}
.custom-modal .modal-body {
  padding: 20px;
}
.custom-modal .modal-body .input-group input[type=file] {
  border-color: #2b4cb0;
  font-size: 14px;
}
.custom-modal .modal-body .input-group input[type=file]::file-selector-button {
  background-color: white;
  color: #2b4cb0;
  font-size: 16px;
  font-weight: bold;
}
.custom-modal .modal-body .input-group input[type=file]::file-selector-button:hover {
  background-color: white !important;
  box-shadow: none !important;
}
.custom-modal .modal-body .input-group:hover .upload-btn-icon svg {
  animation: pulse 1.5s;
}
.custom-modal .modal-body .upload-btn-icon {
  background-color: #2b4cb0;
  color: white;
}
.custom-modal .modal-body .upload-btn-icon svg {
  width: 16px;
}
.custom-modal .modal-footer {
  border-top: 0;
}
.custom-modal .modal-footer .btn-cancel {
  color: white;
  background-color: #99a1b5;
}
.custom-modal .modal-footer .btn-cancel:hover {
  opacity: 0.8;
}
.custom-modal .modal-footer .btn-save {
  color: white;
  background-color: #2b4cb0;
  position: relative;
}
.custom-modal .modal-footer .btn-save::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.custom-modal .modal-footer .btn-save:hover::after {
  background: rgba(255, 255, 255, 0.2);
}

.form-floating input {
  padding: 12px 10px 5px 10px !important;
}
.form-floating label {
  padding-top: 10px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.form-floating label svg {
  width: 16px;
  color: #2b4cb0;
}

.form-select, input.form-control {
  height: 48px !important;
  border-color: #99a1b5 !important;
}

.select-wz-label, .input-wz-label {
  position: relative;
}
.select-wz-label span.label, .input-wz-label span.label {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 80px;
  height: 48px;
  background-color: #2b4cb0;
  color: white;
  font-size: 14px;
  font-weight: bold;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -o-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.select-wz-label select, .select-wz-label input, .input-wz-label select, .input-wz-label input {
  padding-inline-start: 85px;
}

.select-wz-label-lg, .input-wz-label-lg {
  position: relative;
}
.select-wz-label-lg span.label, .input-wz-label-lg span.label {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 150px;
  height: 48px;
  background-color: #2b4cb0;
  color: white;
  font-size: 14px;
  font-weight: bold;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -o-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.select-wz-label-lg select, .select-wz-label-lg input, .input-wz-label-lg select, .input-wz-label-lg input {
  padding-inline-start: 170px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
}

.cart .cart-dropdown {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  max-width: 400px;
  background-color: white;
  padding: 20px;
  z-index: 3;
  animation: rotateMenu 500ms ease-in-out forwards;
  transform-origin: top center;
}
.cart .cart-dropdown .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  color: #2b4cb0;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.02);
}
.cart .cart-dropdown .cart-header .cart-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.02);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.cart .cart-dropdown .cart-header .cart-icon svg {
  stroke: #99a1b5;
  width: 20px;
  height: 20px;
}
.cart .cart-dropdown .cart-header .cart-icon:hover svg {
  stroke: #2b4cb0;
  transform: scale(1.1);
}
.cart .cart-dropdown .cart-drop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.cart .cart-dropdown .cart-drop-header .cart-num {
  position: relative;
}
.cart .cart-dropdown .cart-drop-header .cart-num svg {
  stroke: #99a1b5;
  width: 20px;
  height: 20px;
}
.cart .cart-dropdown .cart-drop-header .cart-num span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -10px;
  top: -5px;
  width: 15px;
  height: 15px;
  font-size: 8px;
  font-weight: bold;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  color: white;
  background-color: #2b4cb0;
}
.cart .cart-dropdown .cart-drop-header .cart-total {
  font-size: 16px;
  color: #99a1b5;
  font-weight: bold;
}
.cart .cart-dropdown .cart-body {
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  padding: 20px 0;
}
.cart .cart-dropdown .cart-body .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: row;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
  margin-bottom: 10px;
  gap: 10px;
}
.cart .cart-dropdown .cart-body .cart-item:last-child {
  border-bottom: 0;
}
.cart .cart-dropdown .cart-body .cart-item .item-img {
  width: 70px;
  height: 70px;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  padding: 2px;
  border: 2px solid rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
}
.cart .cart-dropdown .cart-body .cart-item .item-info {
  width: 180px;
}
.cart .cart-dropdown .cart-body .cart-item .item-info .item-title {
  font-size: 14px;
  color: #99a1b5;
  font-weight: bold;
  height: 43px;
  overflow: hidden;
}
.cart .cart-dropdown .cart-body .cart-item .item-info .item-price {
  font-size: 14px;
  color: #99a1b5;
}
.cart .cart-dropdown .cart-body .cart-item .quant-btns {
  font-size: 12px;
  font-weight: bold;
  color: #99a1b5;
}
.cart .cart-dropdown .cart-body .cart-item .quant-btns .qty-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.cart .cart-dropdown .cart-body .cart-item .quant-btns .qty-container .qty-btn-minus,
.cart .cart-dropdown .cart-body .cart-item .quant-btns .qty-container .qty-btn-plus {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0;
}
.cart .cart-dropdown .cart-body .cart-item .quant-btns .qty-container .qty-btn-minus svg,
.cart .cart-dropdown .cart-body .cart-item .quant-btns .qty-container .qty-btn-plus svg {
  stroke: #99a1b5;
  width: 15px;
  height: 15px;
}
.cart .cart-dropdown .cart-body .cart-item .quant-btns .qty-container .qty-btn-minus {
  border-radius: 5px 0 0 5px;
}
.cart .cart-dropdown .cart-body .cart-item .quant-btns .qty-container .qty-btn-plus {
  border-radius: 0 5px 5px 0;
}
.cart .cart-dropdown .cart-body .cart-item .quant-btns .qty-container input {
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.cart .cart-dropdown .checkout-btn {
  background-color: #2b4cb0;
  color: white;
  text-align: center;
  font-weight: 600;
  padding: 6px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  margin-top: 10px;
  position: relative;
  border: 0;
  width: 100%;
}
.cart .cart-dropdown .checkout-btn::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cart .cart-dropdown .checkout-btn:hover::after {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@media (max-width: 576px) {
  .cart .cart-dropdown {
    max-width: 100%;
    width: 100%;
  }
}
.dashboard-contents .left-part .box-data {
  background-color: #204cb5;
  padding: 15px 15px 0px;
  color: #fff;
  border-radius: 10px;
  width: auto;
  font-size: 18px;
}
.dashboard-contents .left-part .box-data .price {
  font-size: 17px;
}
.dashboard-contents .right-part {
  background-color: #fff;
  box-shadow: -3px 0px 13px 1px rgba(165, 164, 164, 0.178);
  border-radius: 10px;
  margin-top: 15px;
}
.dashboard-contents .right-part .box-info {
  text-align: center;
  border-right: 1px solid #ddd;
  padding: 20px 10px;
}
.dashboard-contents .right-part .box-info svg {
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
}
.dashboard-contents .right-part .box-info svg.blue {
  color: #528dbd;
  background-color: #e7f4fd;
}
.dashboard-contents .right-part .box-info svg.yellow {
  background-color: #fff5e4;
  color: #fece3d;
}
.dashboard-contents .right-part .box-info svg.red {
  background-color: #fdf3f4;
  color: #b64d68;
}
.dashboard-contents .right-part .box-info svg.green {
  background-color: #edfaf4;
  color: #65bc92;
}
.dashboard-contents .right-part .box-info .number {
  font-weight: 500;
  font-size: 20px;
  padding-top: 10px;
}
.dashboard-contents .right-part .box-info .percent {
  font-size: 11px;
}
.dashboard-contents .right-part .box-info .percent.green {
  color: #4c9967;
}
.dashboard-contents .right-part .box-info .percent.red {
  color: #c7353f;
}
.dashboard-contents .right-part .box-info .type {
  font-size: 13px;
  color: #918e8e;
}

.filterBtn {
  width: 250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  color: white;
  font-size: 18px;
  background-color: #2b4cb0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding-right: 20px;
}
.filterBtn svg {
  width: 18px;
}
.filterBtn:hover {
  color: white;
}
.filterBtn:hover svg {
  width: 20px;
}
.filterBtn[aria-expanded=true] {
  position: relative;
}
.filterBtn[aria-expanded=true] svg {
  display: none;
}
.filterBtn[aria-expanded=true]::after {
  content: "_";
  display: block;
  width: 20px;
  height: 20px;
  color: white;
  position: absolute;
  right: 20px;
  top: -2px;
}

.filterBody {
  margin-block: 20px;
  margin-inline-end: 20px;
  border: 1px solid #2b4cb0;
  padding: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.filterBody .applyFilter {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #2b4cb0;
  color: white;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease-out;
}
.filterBody .applyFilter:hover {
  color: #2b4cb0;
  background-color: white;
  border: 1px solid #2b4cb0;
}

.order-export-add {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-right: 20px;
  margin-block: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.order-export-add .export-group {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.order-export-add .export-group .btn-wz-icon {
  border: 1px solid #99a1b5;
  color: #313439;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  min-width: 200px;
}
.order-export-add .export-group .btn-wz-icon svg {
  width: 14px;
  color: #2b4cb0;
  transition: all 0.5s ease-in-out;
}
.order-export-add .export-group .btn-wz-icon:hover {
  border: 2px solid #2b4cb0;
  color: #2b4cb0;
}
.order-export-add .export-group .btn-wz-icon:hover svg {
  transform: rotate(360deg);
  color: #28a745;
}
.order-export-add .creatOrder {
  background-color: #f8ac2d;
  color: white;
  min-width: 200px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.order-export-add .creatOrder svg {
  width: 18px;
  height: 18px;
}
.order-export-add .creatOrder:hover svg {
  background-color: white;
  color: #f8ac2d;
  border-radius: 50%;
  animation: pulse 1.5s;
}

.create-wizard {
  margin-inline-end: 20px;
  padding: 40px 20px;
}
.create-wizard .wizard-create-title {
  width: fit-content;
  border-bottom: 2px solid #2b4cb0;
  color: #313439;
  padding: 10px 0;
  font-weight: bold;
  padding-inline-end: 10px;
}
.create-wizard .wizard-create-title svg {
  color: #2b4cb0;
}
.create-wizard .wizard .wizard-nav.dots .wizard-step .dot {
  width: 15px;
  height: 15px;
  box-shadow: none;
  background-color: #99a1b5;
}
.create-wizard .wizard .wizard-nav.dots .wizard-step:before,
.create-wizard .wizard .wizard-nav.dots .wizard-step:after {
  top: -13px;
}
.create-wizard .wizard .wizard-nav.dots .wizard-step.active .dot {
  background-color: #2b4cb0;
}
.create-wizard .wizard .wizard-nav.dots .wizard-step:before {
  background: #f8ac2d;
}
.create-wizard .wizard .wizard-nav.dots .wizard-step.active:before {
  background: #dee2e6;
}
.create-wizard .add-type {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
.create-wizard .add-type label svg {
  width: 18px;
  margin-inline-end: 8px;
  color: #2b4cb0;
}
.create-wizard .wizard .wizard-content {
  border: 1px solid #2b4cb0;
  padding: 40px 20px;
  border-radius: 10px;
  margin-block: 30px;
}
.create-wizard .wizard .wizard-buttons .wizard-btn {
  background-color: #2b4cb0;
  color: white;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  min-width: 120px;
  position: relative;
}
.create-wizard .wizard .wizard-buttons .wizard-btn::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.create-wizard .wizard .wizard-buttons .wizard-btn:hover::after {
  background: rgba(255, 255, 255, 0.2);
}
.create-wizard .wizard .wizard-buttons .wizard-btn:disabled {
  background-color: #99a1b5;
}

.product-card {
  max-width: 100%;
  box-shadow: -3px 0px 13px 1px rgba(165, 164, 164, 0.178);
  border-radius: 10px;
  margin-bottom: 15px;
}
.product-card .product-img {
  width: 100%;
  height: 70%;
  background-color: green;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.product-card .product-img img {
  max-width: 100%;
}
.product-card .product-name {
  padding: 10px 10px 0px 10px;
  text-align: center;
}
.product-card .product-name a {
  text-align: center;
  color: #f8ac2d;
  text-decoration: none;
  font-weight: 600;
}
.product-card .product-price {
  font-size: 13px;
  text-align: center;
  color: #99a1b5;
  font-weight: 500;
  padding-bottom: 20px;
}

.card {
  padding: 10px;
  box-shadow: -3px 0px 13px 1px rgba(165, 164, 164, 0.137);
  border: 0px solid;
  border-radius: 15px;
}
.card .left-part .owl-carousel .item {
  width: 100%;
  background-color: antiquewhite;
  border-radius: 20px;
  height: 100%;
  display: flex;
  align-items: center;
}
.card .left-part .owl-carousel .item img {
  max-width: 100%;
  max-height: 300px;
}
.card .left-part .owl-carousel .owl-stage {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: box;
  max-width: 400px !important;
  box-shadow: -3px 0px 13px 1px rgba(165, 164, 164, 0.178);
}
.card .left-part .owl-carousel .owl-item {
  display: inline !important;
}
.card .left-part .owl-carousel .owl-nav {
  position: relative;
  color: #4579f3;
  font-size: 17px;
}
.card .left-part .owl-carousel .owl-nav .owl-prev {
  left: 0px;
  position: absolute;
}
.card .left-part .owl-carousel .owl-nav .owl-next {
  right: 0px;
  position: absolute;
}
.card .left-part .owl-carousel .owl-nav [class*=owl-]:hover {
  background: transparent !important;
  color: #4579f3;
}
.card .left-part .owl-dots {
  margin-top: 22px;
}
.card .left-part .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 4px;
}
.card .left-part .owl-dots .owl-dot.active span {
  background: #4579f3 !important;
}
.card .right-part .inStock {
  display: flex;
  background-color: #40c77e;
  color: #fff;
  border-radius: 5px;
  padding: 1px 7px;
  width: fit-content;
  font-size: 11px;
}
.card .right-part .product-name,
.card .right-part .price {
  font-size: 20px;
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.card .right-part .main-btn {
  background-color: #0e49cc;
  color: #fff;
  font-size: 14px;
  width: 49%;
  padding: 10px;
}
.card .right-part .middel-section .quantity {
  flex-wrap: nowrap;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  max-width: 48%;
  box-shadow: 3px 2px 5px 0px rgba(0, 0, 0, 0.377);
}
.card .right-part .middel-section .quantity span {
  background-color: #0e49cc;
  padding: 15px;
  color: #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  font-size: 11px;
  font-weight: 600;
}
.card .right-part .middel-section .quantity input {
  border: 0px solid;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
}
.card .right-part .middel-section .add-to-cart {
  color: #fff;
  background-color: #1b98f5;
  width: 49%;
  font-size: 12px;
}
.card .right-part .middel-section .add-to-cart svg {
  font-size: 12px;
  padding-right: 5px;
}

.section-title {
  color: #2b4cb0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.02);
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  padding-bottom: 10px;
  min-width: 25%;
  margin-bottom: 20px;
}
.section-title .section-icon {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #2b4cb0;
  color: white;
  margin-inline-end: 10px;
  flex-shrink: 0;
}
.section-title .section-icon svg {
  width: 20px;
}

.integration {
  margin: 20px 20px 20px 0;
}
.integration .token {
  margin-top: 20px;
  border: 2px solid #2b4cb0;
  padding: 20px;
  width: 50%;
  word-break: break-all;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  color: #313439;
}

@media (max-width: 576px) {
  .token {
    width: 100% !important;
  }
}
.account .edit-button {
  background-color: #f8ac2d;
  color: white;
  font-size: 16px;
  font-weight: bold;
  min-width: 100px;
  margin-bottom: 10px;
}
.account .edit-button:hover {
  opacity: 0.8;
}
.account .account-row {
  border: 1px solid #2b4cb0;
  padding: 20px;
  border-radius: 5px;
  margin-inline: 0px;
}
.account .account-row .user-info {
  margin-bottom: 10px;
}
.account .account-row .user-info .title {
  font-size: 18px;
  font-weight: bold;
  color: #2b4cb0;
  padding-inline-start: 30px;
}
.account .account-row .user-info .value {
  font-size: 18px;
  color: #313439;
  padding: 10px 30px;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  width: 100%;
}

.register-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 20px;
}
.register-container .register {
  width: 100%;
  padding: 25px;
  border: 1px solid #99a1b5;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
}
@media (min-width: 992px) {
  .register-container .register {
    width: 580px;
  }
  .register-container .register .p-1 {
    max-height: 80vh;
    overflow: auto;
  }
}
.register-container .register .select-wz-label-lg select, .register-container .register .select-wz-label-lg input, .register-container .register .input-wz-label-lg select, .register-container .register .input-wz-label-lg input {
  width: 100%;
}
.register-container .register .register-link {
  font-size: 14px;
  color: black;
  margin-top: 15px;
}
.register-container .register .register-link a {
  font-weight: bold;
  color: #2b4cb0;
}
.register-container .register .register-link a:hover {
  color: #99a1b5;
}

.login-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.login-content .input-wz-label-lg span.label {
  min-width: 100px;
}

.login-btn {
  background-color: #2b4cb0;
  color: white;
  text-align: center;
  font-weight: 600;
  padding: 6px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  margin-top: 10px;
  width: 150px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  text-decoration: none;
}
.login-btn::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.login-btn:hover {
  color: white;
}
.login-btn:hover::after {
  background: rgba(255, 255, 255, 0.2);
}

/*# sourceMappingURL=app.css.map */
