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

:root {
  --pxs-primary-font: "Be Vietnam Pro", sans-serif;
  --pxs-primary-color: rgb(33 204 153);
  --pxs-primary-light-color: rgb(231, 255, 248);
  --pxs-heading-color: rgb(18, 19, 26);
  --pxs-font-color: rgb(50, 52, 64);
  --pxs-white-color: rgb(255, 255, 255);
  --pxs-transition: all 0.3s;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}

/*=============================
 Font Style
=============================*/

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/segoeui.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/seguisb.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/segoeuib.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Segoe UI";
  src: url("../fonts/seguibl.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "BlinkMacSystemFont";
  src: url("../fonts/blinkmacsystemfont-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "BlinkMacSystemFont";
  src: url("../fonts/blinkmacsystemfont-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Allison";
  src: url("../fonts/Allison.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/Proxima\ Nova\ Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--pxs-primary-light-color);
  border-radius: 10px;
}

*::-webkit-scrollbar {
  width: 1px;
  background-color: var(--pxs-primary-light-color);
  border-radius: 1rem;
  height: 1px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: var(--pxs-primary-color);
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--pxs-primary-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--pxs-font-color);
  line-height: 1.265;
}

a,
a:hover,
button,
button:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  -webkit-transition: var(--pxs-transition);
  -moz-transition: var(--pxs-transition);
  -ms-transition: var(--pxs-transition);
  -o-transition: var(--pxs-transition);
  transition: var(--pxs-transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: var(--pxs-transition);
  -moz-transition: var(--pxs-transition);
  -ms-transition: var(--pxs-transition);
  -o-transition: var(--pxs-transition);
  transition: var(--pxs-transition);
  margin: 0;
  padding: 0;
  word-break: break-word;
  color: var(--pxs-heading-color);
  text-transform: capitalize;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus {
  outline: none;
  box-shadow: none;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a {
  font-family: var(--pxs-primary-font);
}

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

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

::placeholder {
  color: #afacc1;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #afacc1;
}

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

p {
  margin: 0px;
  word-break: break-word;
}

.content_center {
  justify-content: center;
}

.align_center {
  align-items: center;
}

.p-0 {
  padding: 0 !important;
}

.fbFont {
  font-family: "Segoe UI", sans-serif;
}

.linkedinFont {
  font-family: "BlinkMacSystemFont", sans-serif;
}

.ytFont {
  font-family: "Roboto", sans-serif;
}

.tiktokFont {
  font-family: "Proxima Nova", sans-serif;
}

.thankyouFont {
  font-family: "Allison", cursive;
}

/*=============================
 Loader Style
=============================*/

.loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--pxs-white-color);
}

.spinner {
  position: relative;
  max-width: 200px;
  width: 200px;
}

.ball {
  border-radius: 50%;
  background: linear-gradient(91.34deg, #21cc99 0.68%, #85efc1 99.14%);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 20px;
  left: 50px;
  animation: 1.2s linear infinite loader;
}

.ball:nth-of-type(2) {
  animation-delay: 0.4s;
}

.ball:nth-of-type(3) {
  animation-delay: 0.8s;
}

@keyframes loader {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  20% {
    opacity: 1;
    transform: scale(1);
  }

  40% {
    transform: translate3d(33px, 0, 0);
  }

  60% {
    transform: translate3d(66px, 0, 0);
  }

  80% {
    transform: translate3d(99px, 0, 0);
    opacity: 1;
  }

  100% {
    transform: translate3d(99px, 0, 0) scale(0.5);
    opacity: 0;
  }
}

.pxs_skeleton {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.12);
  padding: 15px 20px;
  border-radius: 6px;
  overflow: hidden;
}

.pxs_skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: loading 1.5s infinite;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0));
  transform: translate(-100%);
  z-index: 1;
}

@keyframes loading {
  to {
    transform: translate(100%);
  }
}

/*=============================
 Button Style
=============================*/

.pxs_btn {
  border-radius: 6px;
  color: var(--pxs-white-color);
  background-color: var(--pxs-primary-color);
  padding: 14px 12px;
  min-width: 130px;
  overflow: hidden;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  border: 1px solid var(--pxs-primary-color);
  background-image: linear-gradient(30deg,
      var(--pxs-primary-color) 50%,
      transparent 50%);
  background-size: 400%;
  background-repeat: no-repeat;
  background-position: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: -7px 11px 21.7px #21cc994d;
}

.pxs_btn:hover {
  background-position: 100%;
  color: var(--pxs-primary-color);
  background-color: var(--pxs-white-color);
}

.pxs_btn svg {
  fill: var(--pxs-white-color);
  transition: var(--pxs-transition);
}

.pxs_btn:hover svg {
  fill: var(--pxs-primary-color);
}

.pxs_btn.btn_gray {
  background-color: #e6e6e6;
  background-image: linear-gradient(30deg, #e6e6e6 50%, transparent 50%);
  color: var(--pxs-font-color);
  box-shadow: none;
  border: 1px solid #e6e6e6;
}

.pxs_btn.btn_gray:hover {
  background-color: var(--pxs-white-color);
}

.pxs_btn.btn_red {
  background-color: #ff5271;
  background-image: linear-gradient(30deg, #ff5271 50%, transparent 50%);
  color: var(--pxs-white-color);
  box-shadow: none;
  border: 1px solid #ff5271;
}

.pxs_btn.btn_red:hover {
  background-position: 100%;
  color: #ff5271;
  background-color: var(--pxs-white-color);
}

.pxs_btn.btn_purple {
  background-color: #b672ff;
  background-image: linear-gradient(30deg, #b672ff 50%, transparent 50%);
  color: var(--pxs-white-color);
  box-shadow: none;
  border: 1px solid #b672ff;
}

.pxs_btn.btn_purple:hover {
  background-position: 100%;
  color: #b672ff;
  background-color: var(--pxs-white-color);
}

.pxs_btn.btn_orange {
  background-color: #ff9052;
  background-image: linear-gradient(30deg, #ff9052 50%, transparent 50%);
  color: var(--pxs-white-color);
  box-shadow: none;
  border: 1px solid #ff9052;
}

.pxs_btn.btn_orange:hover {
  background-position: 100%;
  color: #ff9052;
  background-color: var(--pxs-white-color);
}

.pxs_btn.btn_white {
  background-color: var(--pxs-white-color);
  background-image: linear-gradient(30deg,
      var(--pxs-white-color) 50%,
      transparent 50%);
  color: var(--pxs-font-color);
  box-shadow: none;
  border: 1px solid #c0d3e3;
}

.pxs_btn.btn_white:hover {
  background-position: 100%;
  background-color: var(--pxs-primary-color);
  border: 1px solid var(--pxs-primary-color);
  color: var(--pxs-white-color);
}

.pxs_btn.btn_trans {
  background-color: transparent;
  color: var(--pxs-white-color);
  box-shadow: none;
  border: 1px solid var(--pxs-white-color);
}

.pxs_btn:disabled,
.pxs_btn.disabled {
  box-shadow: none;
  background-position: 100%;
  background-color: #dedede;
  border: 1px solid #dedede;
  pointer-events: none;
  cursor: not-allowed;
}

.pxs_btn:disabled:hover,
.pxs_btn.disabled {
  color: var(--pxs-white-color) !important;
  background-color: #dedede !important;
}

/*=============================
 Toster Style
=============================*/

.pxs_toster_wrap {
  display: flex;
  align-items: center;
  background: var(--pxs-white-color);
  position: fixed;
  right: 30px;
  top: 0;
  padding: 15px 25px 15px 15px;
  max-width: 290px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: translateY(-100%);
  z-index: 999999;
  word-break: break-all;
  border-radius: 14px;
  width: 100%;
}

.pxs_toster_wrap.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(30px);
}

.pxs_toster_wrap.success {
  border: 1px solid #36b133;
}

.pxs_toster_wrap.error {
  border: 1px solid #ff4057;
}

.pxs_toster_img {
  min-width: 50px;
  height: 50px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.pxs_toster_wrap.success .pxs_toster_img {
  background-color: rgb(54 177 51 / 10%);
}

.pxs_toster_wrap.error .pxs_toster_img {
  background-color: rgb(255 64 86 / 10%);
}

.error .pxs_toster_msg>span {
  color: #ff4057;
}

.success .pxs_toster_msg>span {
  color: #36b133;
}

.pxs_toster_msg>p {
  color: var(--pxs-font-color);
  word-break: break-word;
  margin-top: 5px;
  text-transform: capitalize;
}

.pxs_toster_close {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5px;
  top: 5px;
}

.pxs_toster_close svg {
  width: 8px;
  fill: var(--pxs-white-color);
}

.pxs_toster_wrap.success .pxs_toster_close {
  background: #36b133;
}

.pxs_toster_wrap.error .pxs_toster_close {
  background: #ff4057;
}

/*=============================
 Table Style
=============================*/

.pxs_table_wr {
  position: relative;
  width: 100%;
  overflow: auto hidden;
  background: var(--pxs-white-color);
  border-radius: 6px;
  padding: 5px;
}

.pxs_table_wr::-webkit-scrollbar {
  height: 5px;
}

.pxs_table_wr table {
  border-spacing: 0;
  width: 100%;
}

.pxs_table_wr table tr th {
  text-align: left;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pxs-heading-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #ebf3f8;
  width: 100%;
}

.pxs_table_wr table tr th:first-child {
  border-top-left-radius: 6px;
}

.pxs_table_wr table tr th:last-child {
  border-top-right-radius: 6px;
}

.pxs_table_wr table tr td {
  background-color: var(--pxs-white-color);
  color: var(--pxs-font-color);
  text-align: left;
  text-transform: capitalize;
  padding: 18px 25px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  min-height: 60px;
}

.pxs_table_wr table tr td.email {
  text-transform: unset;
}

.pxs_table_wr table tr:nth-child(2n) td {
  background-color: #f3f8fb;
  padding: 7px 25px;
}

.pxs_table_wr table tr:nth-child(2n) td:first-child {
  border-radius: 6px 0 0 6px;
}

.pxs_table_wr table tr:nth-child(2n) td:last-child {
  border-radius: 0 6px 6px 0;
}

.pxs_table_wr table tr:last-child td {
  border-bottom: none;
}

.pxs_table_wr .action {
  display: flex;
  gap: 10px;
}

.pxs_table_wr button,
.pxs_table_wr a {
  min-height: 36px;
  min-width: 36px;
  border-radius: 6px;
  background: #ebf3f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Table Pagination */

.pxs_table_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}

.pxs_pagi_btn,
.pxs_ellipsis_btn {
  color: var(--pxs-font-color);
  transition: var(--pxs-transition);
  border-radius: 4px;
  background-color: var(--pxs-white-color);
  padding: 13px;
  min-width: 41px;
}

.pxs_pagi_btn:hover,
.pxs_pagi_btn.active {
  background-color: var(--pxs-primary-color);
  color: var(--pxs-white-color);
}

.pxs_pagi_btn:disabled {
  background: var(--pxs-white-color);
  color: var(--pxs-font-color);
}

/* Table Skeleton */

.pxs_table_wr table tr .pxs_no_data .pxs_skeleton {
  min-height: 50px;
}

/*=============================
 Toggle Switch Style
=============================*/

.switch {
  position: relative;
  display: flex;
  gap: 0 6px;
  align-items: center;
  color: #a7a7a7;
  width: fit-content;
  cursor: pointer;
}

.slider {
  background-color: #c7d7e1;
  transition: all 0.4s;
  border-radius: 60px;
  width: 36px;
  height: 20px;
  position: relative;
}

input:checked+.switch .slider+span {
  color: #0fbf00;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 2px;
  background-color: var(--pxs-white-color);
  transition: all 0.4s;
  border-radius: 50%;
}

input:checked+.switch .slider {
  background-color: var(--pxs-primary-color);
}

input:checked+.switch .slider:before {
  transform: translateX(14px);
}

/*=============================
 Tooltip Style
=============================*/

.pxs_tt {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: var(--pxs-heading-color);
  color: var(--pxs-white-color);
  padding: 5px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 300;
  opacity: 0;
  visibility: hidden;
  transition: var(--pxs-transition);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.pxs_tt:after {
  position: absolute;
  content: "";
  border: 5px solid #0000;
  border-top: 5px solid var(--pxs-heading-color);
  border-bottom: 0;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}

.pxs_action_btn button:hover .pxs_tt {
  transform: translate(-50%);
  opacity: 1;
  visibility: visible;
}

.pxs_note {
  background: linear-gradient(90deg, #ebf3f8 0%, #ffffff 106.23%);
  padding: 13px 15px;
  border-radius: 6px;
}

.pxs_required {
  color: #ff4057;
}

/*=============================
 Popup Style
=============================*/

/* Lock scrolling when modal is open */

.modal-open {
  overflow: hidden;
}

/* Modal overlay (background) */

.pxs_modal_overlay {
  width: 100vw;
  height: 100vh;
  background: #ebf3f866;
  backdrop-filter: blur(9px);
  z-index: 1000;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Modal container */

.pxs_modal_box {
  margin: 15px auto;
  position: relative;
  width: calc(100% - 30px);
  min-height: calc(100% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pxs_modal_container {
  background: var(--pxs-white-color);
  border-radius: 6px;
  padding: 30px;
  box-shadow: 4px 4px 37.3px #0000001a;
  animation: 0.5s ease-in-out fadeIn;
  position: relative;
  width: 100%;
  max-width: 500px;
}

/* Modal header */

.pxs_modal_header {
  position: relative;
  margin-bottom: 30px;
}

.pxs_modal_close {
  position: absolute;
  right: -10px;
  top: -10px;
}

/* Modal footer */

.pxs_modal_footer {
  margin-top: 20px;
}

.pxs_modal_footer .pxs_btn {
  width: 100%;
}

/* Modal Animations */

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* delete Modal */

.pxs_delModal_body {
  text-align: center;
}

.pxs_delModal_img {
  max-width: 120px;
  margin: 0 auto 20px;
}

.pxs_delModal_body p {
  margin-top: 10px;
}

.pxs_modal_actions {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: center;
  gap: 10px;
}

/*=============================
 Input Style
=============================*/

.pxs_main_input {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.pxs_main_input:last-child {
  margin-bottom: 0;
}

.pxs_main_input label {
  display: block;
  width: 100%;
  color: var(--pxs-heading-color);
  line-height: 1.3;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.pxs_main_input input,
.pxs_main_input select,
.pxs_search_select {
  position: relative;
  width: 100%;
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid #dceaf3;
  color: var(--pxs-font-color);
  padding: 0 20px;
  background: var(--pxs-white-color);
}

.pxs_search_select {
  font-size: 14px;
  font-weight: 400;
}

.pxs_main_input textarea {
  position: relative;
  width: 100%;
  min-height: 140px;
  border-radius: 6px;
  border: 1px solid #dceaf3;
  color: var(--pxs-font-color);
  padding: 15px 20px;
  background: var(--pxs-white-color);
}

.pxs_main_input input[type="date"]::-webkit-calendar-picker-indicator,
.pxs_main_input input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

input[type="checkbox"],
input[type="file"],
input[type="radio"] {
  display: none;
}

.pxs_checkbox {
  position: relative;
  cursor: pointer;
}

.pxs_checkbox::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 16px;
  height: 16px;
  transition: all 0.3s;
  background-color: #d9d9d9;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
}

.pxs_checkbox::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 3px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--pxs-white-color);
  border-bottom: 2px solid var(--pxs-white-color);
  transform: rotate(-20deg);
  transition: all 0.3s;
  opacity: 0;
}

input:checked+.pxs_checkbox::after {
  opacity: 1;
  transform: rotate(-45deg);
}

/* Search Select */

.pxs_custom_select {
  position: relative;
  width: 100%;
}

.pxs_search_select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.pxs_search_select>span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.pxs_search_select .disabled {
  color: #afacc1;
}

.pxs_search_select .dropdown-icon {
  width: 12px;
}

.pxs_select_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--pxs-white-color);
  border: 1px solid #d6d3e5;
  border-radius: 6px;
  z-index: 10;
}

.pxs_search_input {
  font-size: 14px;
  font-weight: 400;
  margin: 10px;
  width: calc(100% - 20px) !important;
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid #d6d3e5;
  color: var(--pxs-font-color);
  padding: 0 20px;
  background: var(--pxs-white-color);
}

.pxs_select_dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.pxs_select_dropdown li {
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
  cursor: pointer;
  transition: var(--pxs-transition);
  text-align: left;
}

.pxs_select_dropdown li:hover {
  background: #ebf3f8;
}

.no-options {
  padding: 10px;
  color: #999;
  text-align: center;
}

/* Multiselect */

.pxs_multiselect_input {
  position: relative;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  padding: 3px;
  min-height: 45px;
}

.pxs_multiSelected_area {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pxs_multiSelected_option {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg,
      rgb(79 95 208 / 10%) 0%,
      rgb(206 43 146 / 10%) 55.31%,
      rgb(229 61 94 / 10%) 100.57%);
  border-radius: 5px;
  padding: 3px 10px 3px 3px;
}

.pxs_multiSelected_option>img {
  width: 29px;
  height: 27px;
  border-radius: 3px;
  object-fit: cover;
}

.pxs_multiSelected_option>span {
  margin-left: 5px;
  font-size: 12px;
  font-weight: 500;
}

.pxs_multiSelected_option>button {
  color: var(--pxs-heading-color);
  margin-left: 10px;
  font-size: 20px;
  margin-top: -2px;
}

.pxs_multiSelected_area>input {
  min-height: calc(45px - 6px);
  flex: 1 1 0%;
  border: none;
  outline: none;
  min-width: 140px;
}

/* Tag select */

.pxs_tag_select {
  display: flex;
  border-radius: 6px;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
}

.pxs_generated_tag {
  display: inline-flex;
  position: relative;
  padding: 5px 10px;
  border-radius: 100px;
  color: var(--pxs-font-color);
  background-color: #ebf3f8;
  gap: 7px;
  text-transform: capitalize;
  align-items: center;
  line-height: normal;
}

.pxs_tag_select .pxs_generated_tag span {
  cursor: pointer;
  width: 8px;
}

.pxs_tag_select .pxs_generated_tag span svg {
  fill: #ff4057;
}

/*=============================
 Slider Style
=============================*/

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider {
  display: grid;
  transition: transform 0.5s ease;
}

.slider-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.slider-btn:disabled {
  background: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}

/*=============================
 Tab Style
=============================*/

.pxs_tab_content {
  display: none;
  width: 100%;
}

.pxs_tab_content.active {
  display: block;
}

/*=============================
 Font Size Style
=============================*/

.fs_48 {
  font-size: calc(20px + 1.458331vw);
}

.fs_40 {
  font-size: calc(14px + 1.354165vw);
}

.fs_36 {
  font-size: calc(10px + 1.35417vw);
}

.fs_30 {
  font-size: calc(14px + 0.833333vw);
}

.fs_28 {
  font-size: calc(14px + 0.729165vw);
}

.fs_26 {
  font-size: 26px;
}

.fs_24 {
  font-size: 24px;
}

.fs_22 {
  font-size: 22px;
}

.fs_20 {
  font-size: 20px;
}

.fs_18 {
  font-size: 18px;
}

.fs_16 {
  font-size: 16px;
}

.fs_15 {
  font-size: 15px;
}

.fs_14 {
  font-size: 14px;
}

.fs_13 {
  font-size: 13px;
}

.fs_12 {
  font-size: 12px;
}

.fs_10 {
  font-size: 10px;
}

.fs_8 {
  font-size: 8px;
}

/*=============================
 Font Weight Style
=============================*/

.fw_800 {
  font-weight: 800;
}

.fw_700 {
  font-weight: 700;
}

.fw_600 {
  font-weight: 600;
}

.fw_500 {
  font-weight: 500;
}

.fw_400 {
  font-weight: 400;
}

.fw_300 {
  font-weight: 300;
}

/*=============================
 Bootstrap Style
=============================*/

img,
svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.42 * var(--bs-gutter-x));
  margin-left: calc(-0.42 * var(--bs-gutter-x));
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.42);
  padding-left: calc(var(--bs-gutter-x) * 0.42);
  margin-top: var(--bs-gutter-y);
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.row {
  row-gap: 20px;
}

.mt_10 {
  margin-top: 10px;
}

.mb_10 {
  margin-bottom: 10px;
}

/*=============================
 Responsive Style
=============================*/

/* --------Min-Width------- */

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 540px;
  }

  .col-sm {
    flex: 1 0 0%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }

  .col-md {
    flex: 1 0 0%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }

  .col-lg {
    flex: 1 0 0%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }

  .col-xl {
    flex: 1 0 0%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }

  .col-xxl {
    flex: 1 0 0%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}