:root {
  --primary: #863FC4;
  --secondary: #48A9F8;
  --gradient: linear-gradient(73.08deg, #673ab7 15.14%, #9a70e5 92.25%);
  --primary-hover: #6c319f;
  --primary-dark: #371951;
  --rgba-primary-1: rgba(134, 63, 196, 0.1);
  --rgba-primary-2: rgba(134, 63, 196, 0.2);
  --rgba-primary-3: rgba(134, 63, 196, 0.3);
  --rgba-primary-4: rgba(134, 63, 196, 0.4);
  --rgba-primary-5: rgba(134, 63, 196, 0.5);
  --rgba-primary-6: rgba(134, 63, 196, 0.6);
  --rgba-primary-7: rgba(134, 63, 196, 0.7);
  --rgba-primary-8: rgba(134, 63, 196, 0.8);
  --rgba-primary-9: rgba(134, 63, 196, 0.9);
  --font-family-base: Poppins, sans-serif;
  --font-family-title: Poppins, sans-serif;
  --border-radius-base: 8px;
  --border-color: #DDDDDD;
  --bg-white: #FFF;
  --title: #212529;
}

/*
	0 - 600: Phone
	600 - 900: Tablet portrait
	900 - 1200: Tablet landscape
	1200 - 1800: Normal styles
	1800+ : Big Desktop
	1em = 1rem
	The smaller device rules always should write below the bigger device rules
	Fixing Order => Base + Typography >> General Layout + Grid >> Page Layout + Component

*/
:root {
  --primary: #9c5ebe;
  --secondary: #48A9F8;
  --gradient: linear-gradient(73.08deg, #9c5ebe 15.14%, #9c5ebe 92.25%);
  --primary-hover: #8343a6;
  --primary-dark: #4a265d;
  --rgba-primary-1: rgba(156, 94, 190, 0.1);
  --rgba-primary-2: rgba(156, 94, 190, 0.2);
  --rgba-primary-3: rgba(156, 94, 190, 0.3);
  --rgba-primary-4: rgba(156, 94, 190, 0.4);
  --rgba-primary-5: rgba(156, 94, 190, 0.5);
  --rgba-primary-6: rgba(156, 94, 190, 0.6);
  --rgba-primary-7: rgba(156, 94, 190, 0.7);
  --rgba-primary-8: rgba(156, 94, 190, 0.8);
  --rgba-primary-9: rgba(156, 94, 190, 0.9);
  --font-family-base: Poppins, sans-serif;
  --font-family-title: Poppins, sans-serif;
  --border-radius-base: 8px;
  --border-color: #DDDDDD;
  --bg-white: #FFF;
  --title: #663482;
  --bs-body-color: rgba(57, 26, 75, 0.9);
}

/*!
 * Bootstrap Reboot v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
:root {
  --bs-blue: #5543d1;
  --bs-indigo: #6366f1;
  --bs-purple: #ab55f7;
  --bs-pink: #d082ac;
  --bs-red: #ff586e;
  --bs-orange: #ff8853;
  --bs-yellow: #ffa808;
  --bs-green: #029e76;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #9c5ebe;
  --bs-secondary: #48A9F8;
  --bs-success: #56c760;
  --bs-info: #58bad7;
  --bs-warning: #ffd060;
  --bs-danger: #f75a5b;
  --bs-light: #f4f4f4;
  --bs-dark: #000;
  --bs-primary-rgb: 156, 94, 190;
  --bs-secondary-rgb: 72, 169, 248;
  --bs-success-rgb: 86, 199, 96;
  --bs-info-rgb: 88, 186, 215;
  --bs-warning-rgb: 255, 208, 96;
  --bs-danger-rgb: 247, 90, 91;
  --bs-light-rgb: 244, 244, 244;
  --bs-dark-rgb: 0, 0, 0;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 235, 236, 240;
  --bs-body-bg-rgb: 247, 247, 247;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(73.08deg, #9c5ebe 15.14%, #8343a6 92.25%);
  --bs-body-font-family: Poppins, sans-serif;
  --bs-body-font-size: 0.875rem;
  --bs-body-font-weight: 500;
  --bs-body-line-height: 1.6;
  --bs-body-color: #ebecf0;
  --bs-body-bg: #f7f7f7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #212529;
}

h1 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 1.75rem;
  }
}

h2 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: calc(1.2625rem + 0.15vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.375rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #9c5ebe;
  text-decoration: underline;
}
a:hover {
  color: #7d4b98;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d082ac;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #AEAED5;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #48A9F8;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.765625rem;
  color: #000;
  background-color: rgba(72, 169, 248, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #48A9F8;
  padding-right: calc(1.6em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2348A9F8' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #48A9F8;
  box-shadow: 0 0 0 0rem rgba(72, 169, 248, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #48A9F8;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2348A9F8' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #48A9F8;
  box-shadow: 0 0 0 0rem rgba(72, 169, 248, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #48A9F8;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #48A9F8;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0rem rgba(72, 169, 248, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #48A9F8;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #f75a5b;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.765625rem;
  color: #000;
  background-color: rgba(247, 90, 91, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #f75a5b;
  padding-right: calc(1.6em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f75a5b'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f75a5b' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #f75a5b;
  box-shadow: 0 0 0 0rem rgba(247, 90, 91, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #f75a5b;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f75a5b'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f75a5b' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #f75a5b;
  box-shadow: 0 0 0 0rem rgba(247, 90, 91, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #f75a5b;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #f75a5b;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0rem rgba(247, 90, 91, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #f75a5b;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.maxw-100 {
  max-width: 100%;
}

.maxw-95 {
  max-width: 95%;
}

.login .login_lineBtn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-select {
  border-radius: 45px;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 400;
  color: #ebecf0;
  background-position: right 1.25rem center;
}

.form-control {
  color: #391a4b;
}
.form-control::placeholder {
  color: rgba(82, 78, 99, 0.6);
}

.city-selector-set {
  display: flex;
}
.city-selector-set .input-group {
  width: 50%;
}
.city-selector-set .county, .city-selector-set .district {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  min-width: 6.75rem;
  margin-right: 0.25rem;
  padding: 0 1.25rem 0 25px;
  color: #524e63;
}

.form_label {
  padding-bottom: 0.25rem;
}

.wrap_option {
  width: 100%;
  margin: 0 auto;
}
.wrap_option .option_content {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 0.25rem 1.5rem;
  padding-left: 2.25rem;
}
.wrap_option .option_content > i {
  color: #652cf3;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  border-radius: 50px;
  padding: 3px;
  transition: 0.2s;
  pointer-events: none;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .wrap_option .option_content > i {
    font-size: 1.25rem;
  }
}
.wrap_option .option_content .label_title {
  color: #cfbdfb;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .wrap_option .option_content .label_title {
    font-size: 1.2rem;
  }
}
.wrap_option .option_content .describe {
  color: #524e63;
  font-weight: 500;
}
.wrap_option .option_content .describe ol {
  padding-left: 0.5rem;
}
.wrap_option .nav-item.active .option_content > i, .wrap_option .nav-item.active .option_content .label_title {
  color: #fff;
  opacity: 1;
}
.wrap_option .option_item input {
  display: none;
}
.wrap_option .option_item input[type=checkbox] + .option_content .text {
  opacity: 0.65;
}
.wrap_option.optionBox_style .option_content {
  min-height: 6rem;
  min-width: 9rem;
  padding: 1rem;
}
@media (max-width: 575px) {
  .wrap_option.optionBox_style .option_content {
    padding: 0.5rem;
  }
}
.wrap_option.optionBox_style .option_content.card {
  padding-right: 3rem;
}
.wrap_option.optionBox_style .option_content > i {
  top: 2rem;
  right: 1rem;
  left: auto;
}
.wrap_option.optionBox_style .option_content input:checked + .option_content > i {
  transform: translateY(-50%) scale(1);
}
.wrap_option.optionBox_style .option_content input:checked + .option_content .text {
  opacity: 1;
}
.wrap_option:not(.nav-tabs) .option_content {
  margin-bottom: 0.75rem;
  width: 100%;
  min-width: 5rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(195, 195, 195, 0.1254901961);
  border: 1.5px solid rgba(221, 221, 221, 0.5);
  background: rgba(255, 255, 255, 0.4);
}
.wrap_option:not(.nav-tabs) .option_item input:checked + .option_content {
  border: 1.5px solid #652cf3;
  background: rgba(171, 140, 249, 0.1);
}
.wrap_option:not(.nav-tabs) .option_item input:checked + .option_content > i {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.wrap_option:not(.nav-tabs) .option_item input:checked + .option_content .text {
  opacity: 1;
}
.wrap_option:not(.nav-tabs) .option_item .label_title {
  margin-bottom: 1rem;
  color: #885cf6;
}

.area_title {
  padding-left: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-left: 6px solid;
  line-height: 1.2rem;
}

.form-select {
  padding-right: 3.75rem;
  padding-left: 3.5rem;
  color: rgba(82, 78, 99, 0.6);
  background-position: right 4rem center;
}
@media (min-width: 992px) {
  .form-select {
    background-position: right 5rem center;
  }
}

.wrap_datePicker, .wrap_timepicker, .wrap_onedayPicker {
  position: relative;
  cursor: pointer;
}
.wrap_datePicker .icon_calendar, .wrap_datePicker .btn_clear, .wrap_timepicker .icon_calendar, .wrap_timepicker .btn_clear, .wrap_onedayPicker .icon_calendar, .wrap_onedayPicker .btn_clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
.wrap_datePicker .flatpickr-input.form-control, .wrap_timepicker .flatpickr-input.form-control, .wrap_onedayPicker .flatpickr-input.form-control {
  padding-right: 3.75rem;
  padding-left: 3.5rem;
  cursor: pointer;
}
.wrap_datePicker .icon_calendar, .wrap_timepicker .icon_calendar, .wrap_onedayPicker .icon_calendar {
  left: 0.75rem;
}
.wrap_datePicker .btn_clear, .wrap_timepicker .btn_clear, .wrap_onedayPicker .btn_clear {
  right: 0.75rem;
  padding: 0.5rem;
  color: rgba(149, 117, 167, 0.5);
}
.wrap_datePicker .btn_clear:hover, .wrap_timepicker .btn_clear:hover, .wrap_onedayPicker .btn_clear:hover {
  color: #9575a7;
}
@media (min-width: 992px) {
  .wrap_datePicker .icon_calendar, .wrap_timepicker .icon_calendar, .wrap_onedayPicker .icon_calendar {
    left: 1.5rem;
  }
  .wrap_datePicker .btn_clear, .wrap_timepicker .btn_clear, .wrap_onedayPicker .btn_clear {
    right: 1.5rem;
  }
}

.datePicker_title {
  padding-top: 0.75rem;
}

.flatpickr-time ::selection {
  color: var(--primary);
  background: none;
}

.form-control[readonly] {
  background: #fff;
}

select {
  appearance: none;
  outline: none;
  padding-right: 26px;
  background-image: url("../images/dropdown.png");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 88% 50%;
}

.imageuploadify .btn-default {
  min-height: 5rem;
}

.notice-text {
  width: 94%;
  margin: 0 3%;
  padding: 1rem;
  font-size: 12px;
  background: #dcdee5;
  border-radius: 0.5rem;
  color: #524e63;
}
.notice-text li {
  margin-bottom: 0.2rem;
}

#addinfo {
  margin-top: 0.5rem;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  background: #fff;
  display: none;
  height: 0;
  transform: all 1s;
}
#addinfo.show {
  height: auto;
}
@media (min-width: 992px) {
  #addinfo {
    padding: 1.5rem 2rem;
  }
}

.wrap_option:not(.nav-tabs)#family_info .option_content {
  min-height: auto;
}

#addinfo, #edit_familyInfo {
  margin-top: 0.5rem;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  background: #fff;
  display: none;
  height: 0;
  transform: all 1s;
}
#addinfo.show, #edit_familyInfo.show {
  height: auto;
}
@media (min-width: 992px) {
  #addinfo, #edit_familyInfo {
    padding: 1.5rem 2rem;
  }
}

#btn_edit {
  position: relative;
  z-index: 10;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #9c5ebe;
  width: 100%;
  height: 48px;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  line-height: 48px;
  padding: 0 2rem;
  transition: all 0.2s ease-in;
}
@media (min-width: 992px) {
  .select-styled {
    padding: 0 3.75rem;
  }
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(221, 221, 221, 0.5);
  background: linear-gradient(180deg, #ffffff 80%, #ddd 100%);
  border-radius: 1.75rem;
  max-height: 30vh;
  overflow-y: overlay;
}
.select-options li {
  margin: 0;
  padding: 0.5rem 2rem;
  border-top: 1px solid rgba(221, 221, 221, 0.5);
}
@media (min-width: 992px) {
  .select-options li {
    padding: 0.5rem 3.5rem;
  }
}
.select-options li:first-child {
  border-top: 0;
}
.select-options li:hover, .select-options li.is-selected {
  background: rgba(156, 94, 190, 0.1);
}
.select-options li[rel=hide] {
  display: none;
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.add-hour.wrap_timepicker {
  height: 48px;
}

.bg-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.fulllink {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}

a {
  text-decoration: none;
}

.img {
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.cms-table-wrap {
  width: 100%;
  overflow-x: auto;
}

button:hover, button:focus {
  outline: none;
}

.overdots {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.vh-100 {
  min-height: calc(var(--vh, 1vh) * 100);
}

.mx-vw-100 {
  max-width: 100vh;
  margin: 0;
}

.animate {
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.listStyle_dot li {
  position: relative;
  line-height: 2;
  padding-left: 1.5rem;
}
.listStyle_dot li:not(.list_link)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 8px;
  height: 8px;
  background: #5543d1;
  transform: translateY(-50%);
  border-radius: 50%;
}
.listStyle_dot .list_link .link {
  color: #5543d1;
}

.title {
  color: #663482;
}

.no-data {
  opacity: 0.5;
  padding-top: 2rem;
  text-align: center;
}
.no-data .text {
  font-weight: 600;
}
.no-data svg {
  border-radius: 50%;
  width: 170px;
  height: 170px;
  background: #ddd;
  padding: 2rem;
  margin: auto;
}

.pagination-top-right {
  padding-top: 3rem;
  margin-top: -2.5rem;
  right: 0;
}
.pagination-top-right .pagination-dots {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  bottom: auto !important;
  width: auto;
}

body.fixed {
  overflow: hidden;
}

.dz-tab .tab-slide-effect .nav-tabs .nav-item.active .nav-link {
  background-color: var(--primary);
  transition: background-color 1s 1s, color 0.5s;
}

.dz-tab .tab-slide-effect, .dz-tab .tab-content {
  box-shadow: none !important;
}

.tab_bg {
  background: rgba(255, 255, 255, 0.5);
}

.order-tab.default-tab .nav-tabs {
  border-bottom: 0;
}
.order-tab.default-tab .nav-tabs .nav-link {
  position: relative;
  color: #524e63;
  border: 0;
  padding: 0.5rem 0.7rem;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  .order-tab.default-tab .nav-tabs .nav-link {
    padding: 0.5rem 0.55rem;
  }
}
.order-tab.default-tab .nav-tabs .nav-link:hover {
  color: rgba(171, 85, 247, 0.8);
  border: 0;
}
.order-tab.default-tab .nav-tabs .nav-link.active {
  border: 0;
  background-color: transparent;
  font-weight: bold;
  color: #391a4b;
}
.order-tab.default-tab .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  background: #ab55f7;
  width: 2rem;
  height: 5px;
}
.order-tab.default-tab .nav-tabs .nav-item:first-child .nav-link {
  padding-left: 0;
}
.order-tab.default-tab .nav-tabs .nav-item:last-child .nav-link {
  padding-right: 0;
}

.btn.with_icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

#btn_addInfo {
  padding: 1.5rem 1rem;
  width: 100%;
  border: 1px dashed #b3b3b3;
  border-radius: 1rem;
  font: size 1.25rem;
}
#btn_addInfo:hover {
  background: #fff;
  border: 1.5px dashed rgba(156, 94, 190, 0.5);
}

.wrap_inWork input[type=file], .wrap_inWork .imageuploadify.well {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.wrap_inWork .custom-file-upload {
  display: inline-block;
  padding: 2.15rem 12px;
  cursor: pointer;
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  background: linear-gradient(-120deg, rgba(171, 85, 247, 0.4), #ab55f7);
}

.badge {
  display: inline-flex;
  align-items: center;
  max-height: 28px;
}

.newCase-badge {
  background: rgba(207, 189, 251, 0.3);
  color: #652cf3;
  border-color: rgba(136, 92, 246, 0);
}

.btn-accept {
  border: 1px solid rgba(136, 92, 246, 0.3);
  box-shadow: 0 0 10px -4px rgba(136, 92, 246, 0.9);
}

@media (min-width: 992px) {
  body:not(.withOutSidebar) .modal .modal-dialog .modal-content {
    transform: translateX(6rem);
  }
}
.modal-body {
  max-height: 60vh;
  overflow: scroll;
}

.modal-footer {
  box-shadow: 0 -2px 9px rgba(82, 78, 99, 0.3);
}

body.modal-open {
  padding: 0 !important;
}

.card-footer .wrap_btn {
  position: relative;
  z-index: 10;
}
.card-footer .wrap_btn .btn {
  padding: 0.5rem 0.75rem;
}

.alert {
  min-width: 200px;
}
.alert [data-notify=icon] {
  background: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.alert-warning {
  background: #fff9ea;
  color: #ffc12d;
}

.accordion-header {
  position: relative;
  border: 0;
  padding: 1rem;
}

.accordion__body {
  padding: 0 1rem 1rem;
}

.faq .accordion-item {
  border-bottom: 1px dashed #ddd;
}
.faq .accordion-item:hover .accordion-header {
  background: rgba(102, 52, 130, 0.1);
}
.faq .accordion-header-text {
  color: #9c5ebe;
}

.wrap_table {
  overflow-x: scroll;
  margin-bottom: 2rem;
}
.wrap_table .table_scroll {
  min-width: 500px;
}
.wrap_table::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(20, 24, 218, 0.3);
  background-color: #F5F5F5;
}
.wrap_table::-webkit-scrollbar {
  height: 6px;
  background-color: rgba(99, 102, 241, 0.6);
}
.wrap_table::-webkit-scrollbar-thumb {
  background-color: #6366f1;
}

.table {
  margin-bottom: 0.25rem;
}
.table tfoot tr td {
  background: rgba(74, 38, 93, 0.2);
}
.table tbody tr:nth-of-type(odd) > * {
  background: rgba(74, 38, 93, 0.01);
}
.table.table_style {
  background: rgba(79, 41, 101, 0.05);
}
.table.table_style tr:last-child {
  border-bottom: 1px solid #4f2965;
}
.table.table_style tbody tr th, .table.table_style tfoot tr {
  background: rgba(74, 38, 93, 0.2);
  border-bottom: 1px solid #4f2965;
}
.table.table_style tbody tr td, .table.table_style tbody tr th {
  border-right: 1px solid white;
}

.bg-maroon.light svg path {
  fill: #ae7bca;
}

.header {
  background: #e6f1fe;
  border-bottom: #cfddee;
}
.header .header-content {
  width: 100%;
  height: 60px;
}
.header .logo_img {
  max-width: 500px;
  max-height: 40px;
}

.page_bottom .list-group {
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .page_bottom .list-group {
    display: block;
  }
}

body {
  min-height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  overflow-x: hidden;
  color: #391a4b;
  background: #ebecf0;
}

.page-wraper {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  position: relative;
}

a {
  color: #9c5ebe;
}

p {
  color: #524e63;
}

.page-content {
  max-width: 100vw;
  overflow-x: hidden;
}
@media (max-width: 991.98px) {
  .page-content {
    min-height: calc(var(--vh, 1vh) * 100 - 60px);
  }
}

.hidden-district {
  display: none;
}

.homepage .page-content, .page .page-content {
  position: relative;
  height: auto;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.content-inner {
  padding-bottom: 60px;
}

@media (min-width: 992px) {
  body:not(.withOutSidebar) .page-content, body:not(.withOutSidebar) .menubar-area {
    margin-left: calc(260px + 3rem);
    max-width: 1366px;
    margin-right: auto;
  }
  body:not(.withOutSidebar) .header .sticky-header, body:not(.withOutSidebar) .header.transparent {
    display: none;
    width: calc(100% - 260px - 10rem);
    margin-left: calc(260px + 1rem);
  }
  body:not(.withOutSidebar) .sidebar {
    left: 0;
    background-color: transparent;
  }
  body:not(.withOutSidebar) .menubar-area {
    display: none;
  }
  body.homepage .page-content, body.page .page-content {
    overflow-y: scroll;
    border-radius: 1rem;
    height: calc(var(--vh, 1vh) * 100 - 3rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
    box-shadow: 7px 7px 15px rgba(55, 84, 170, 0.15), -7px -7px 20px rgb(255, 255, 255), inset 0px 0px 4px rgba(255, 255, 255, 0.2), inset 7px 7px 15px rgba(55, 84, 170, 0), inset -7px -7px 20px rgba(255, 255, 255, 0), 0px 0px 4px rgba(255, 255, 255, 0);
  }
}
@media (max-width: 991.98px) {
  .homepage .page-content, .page .page-content {
    padding-bottom: 60px;
  }
  .welcome-area .join-area {
    padding-bottom: 80px;
  }
}
@media (max-width: 575.98px) {
  .homepage .page-content, .page .page-content {
    padding-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  body:not(.withOutSidebar) .page-content, body:not(.withOutSidebar) .menubar-area {
    width: calc(100% - 260px - 8rem);
  }
  body.homepage .page-wraper::after, body.page .page-wraper::after {
    content: "";
    position: absolute;
    width: 12rem;
    height: 12rem;
    bottom: 3rem;
    right: 0.5rem;
    background: url("../images/heart.svg") no-repeat;
  }
}
@media screen and (min-width: 1660px) {
  body:not(.withOutSidebar) .page-content, body:not(.withOutSidebar) .menubar-area {
    width: calc(100% - 260px - 10rem);
  }
}
.menubar-area {
  height: 60px;
  padding: 1rem 1.25rem;
}
@media (max-width: 575.98px) {
  .menubar-area {
    height: 50px;
    padding: 0.5rem 1.25rem;
  }
}

.wrap-error {
  min-height: 75vh;
}
@media (max-width: 575.98px) {
  .wrap-error {
    min-height: 60vh;
  }
}
.wrap-error .error-page {
  top: 40%;
}

.privacy .edit-wrap article {
  margin-bottom: 1.5rem;
}
.privacy .edit-wrap .title {
  font-size: 1.15rem;
}
.privacy .edit-wrap p {
  margin-bottom: 0.5rem;
}
.privacy .edit-wrap .dot-listStyle, .privacy .edit-wrap .dot-listStyle li {
  list-style: disc;
}

.cookie-offcanvas {
  width: 90vw;
  max-width: 360px;
  right: 1.5rem;
  left: auto;
  bottom: 1.5rem;
  border-radius: 1rem;
  background: #f1e8f6;
  box-shadow: 0 0 20px -5px rgba(57, 26, 75, 0.5);
  position: fixed;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
.cookie-offcanvas.show {
  visibility: visible;
}
@media (max-width: 991.98px) {
  .cookie-offcanvas {
    bottom: 65px;
  }
}

::-webkit-scrollbar {
  display: unset;
  width: 0;
}

.sidebar {
  height: 100%;
  max-height: calc(var(--vh, 1vh) * 100);
}
.sidebar .brand_box .logo_img {
  max-height: 120px;
}
@media (max-width: 991.98px) {
  .sidebar .brand_box {
    display: none;
  }
}
.sidebar .author-box {
  margin-left: 1rem;
  width: calc(100% - 1rem);
  color: #391a4b;
  border-bottom: 1px solid #dfcbea;
  border-top: 1px solid #dfcbea;
  background: transparent;
}
.sidebar .author-box .first_name {
  color: #391a4b;
}
.sidebar .author-box span, .sidebar .author-box .name {
  font-weight: normal;
  color: #391a4b;
  opacity: 0.7;
}
@media (max-width: 991.98px) {
  .sidebar .author-box {
    width: calc(100% - 2rem);
  }
}
.sidebar .icon_nav {
  flex-direction: row;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.sidebar .icon_nav li > a {
  padding: 8px;
}
.sidebar .icon_nav li > a:after {
  display: none;
}
.sidebar .icon_nav .badge {
  position: absolute;
  top: 0;
  right: 0;
}
.sidebar .icon_nav .dz-icon {
  margin-right: 0;
}
.sidebar .badge {
  justify-content: center;
}

.sidebar_footer {
  padding: 1rem;
  margin-left: 1rem;
}

.bg-skyblue svg rect {
  fill: #00aeff;
}

.welcome_logo {
  height: 30vh;
  padding: 8vh 0 4vh;
  text-align: center;
}

.logo_img {
  max-width: 500px;
  max-height: 160px;
}

.started-swiper-box, .welcome-area {
  height: 60vh;
  min-height: 480px;
}

.login .page-content {
  padding-bottom: 90px;
}
.login .banner-wrapper {
  padding-top: 3rem;
}
.login .banner-wrapper.shape-1::after {
  display: none;
}
.login .banner-wrapper .inner-wrapper .dz-title, .login .banner-wrapper .inner-wrapper p {
  color: #fff;
}
.login .container, .login .banner-wrapper .inner-wrapper {
  max-width: 640px;
  width: 86%;
}
@media screen and (max-width: 375px) {
  .login .container, .login .banner-wrapper .inner-wrapper {
    width: 100%;
  }
}
.login .welcome-area .join-area .title {
  margin-bottom: 0.25rem;
}
.login .welcome-area .join-area .subtitle {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #8343a6;
}
.login .welcome-area .join-area .list-group {
  flex-direction: row;
}
.login .welcome-area .join-area .list-group li {
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
  border-right: 1px solid #666;
}
.login .login_lineBtn {
  background: #e7fef1;
  border: 1px solid #059540;
  color: #06c755;
  text-decoration: none;
}
.login .login_lineBtn .fa_icon {
  font-size: 1.75rem;
}
.login .footer {
  background: #ebecf0;
  box-shadow: 0 -3px 20px rgba(102, 52, 130, 0.2);
}
.login .account-area {
  min-height: calc(90vh - 190px);
}
.login .termsOfUse .list-title {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.login .termsOfUse p {
  padding-left: 1rem;
  font-size: 0.9rem;
  color: #524e63;
}
.login .termsOfUse .rule {
  font-size: 0.9rem;
}
.login .termsOfUse .rule span {
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 375px) {
  .login .termsOfUse .rule span {
    width: 50%;
  }
}

.homepage .banner-wrapper, .introduce .banner-wrapper {
  height: calc(10% + 10vw);
  min-height: 240px;
  background-image: url(../images/banner/bn.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #e6f1fe;
  background-size: contain;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}
@media (max-width: 767.98px) {
  .homepage .banner-wrapper, .introduce .banner-wrapper {
    background-size: cover;
    margin-bottom: -80px;
  }
}

.homepage .dashboard-area {
  min-height: calc(var(--vh, 1vh) * 100 - 3rem - 320px);
}
.dashboard-area .features-box .card .card-body {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .dashboard-area .features-box .card .card-body {
    padding: 1rem 0.75rem;
    display: block;
  }
}
.dashboard-area .features-box .card.card-bx {
  height: auto;
  min-height: 100px;
  height: 100%;
  z-index: 0;
}
.dashboard-area .features-box .card.card-content {
  color: #391a4b;
}
.dashboard-area .features-box .card.card-content .title {
  padding-top: 0.5rem;
  color: #663482;
  font-size: 1.75rem;
}
.dashboard-area .features-box .card.card-content .title:after {
  left: auto;
  right: 100%;
}
.dashboard-area .features-box .card.card-content .card-info {
  position: relative;
}
.dashboard-area .features-box .card.card-content .text {
  padding-top: 0.5rem;
  opacity: 0.6;
}
.dashboard-area .features-box .card.card-content .btn-checkIn {
  position: relative;
  z-index: 10;
}
.dashboard-area .section_appointmentBtn .card.card-content {
  transition: all 0.15s ease-in-out;
  box-shadow: 0 20px 50px -20px rgba(102, 52, 130, 0.7);
}
.dashboard-area .section_appointmentBtn .card.card-content:hover {
  background: rgba(171, 85, 247, 0.2);
  border: 1px solid #ab55f7;
  color: #790adc;
}
.dashboard-area .section_appointmentBtn .card_care {
  background: #ffd8dd;
}
.dashboard-area .section_appointmentBtn .card_case {
  background: #d7d2f4;
}
.dashboard-area .section_service {
  margin: 3rem -1rem 1rem;
  border-radius: 1rem 1rem 0 0;
  padding: 3rem 2rem 1rem;
  background: linear-gradient(to bottom, #9f95e5, rgba(159, 149, 229, 0) 80%);
}
.dashboard-area .section_service .card {
  position: relative;
  overflow: unset;
  padding-bottom: 1rem;
}
.dashboard-area .section_service .card .img {
  width: auto;
  height: auto;
  max-width: 65%;
  max-height: 14rem;
  bottom: 0;
  right: 10px;
  opacity: 1;
  filter: drop-shadow(3px -6px 15px rgba(131, 67, 166, 0.4));
}
.dashboard-area .section_service .card .btn {
  position: absolute;
  left: 1rem;
  bottom: 0;
  margin: 2rem 0 -1.5rem;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
}
@media (max-width: 1199.98px) {
  .dashboard-area .section_service {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .dashboard-area .section_service .card_case {
    margin-top: 3rem;
  }
}
.dashboard-area .categorie-section ul li {
  padding: 6px 1.5rem 6px 0.5rem;
}
.dashboard-area .categorie-section ul li .list {
  background: #ebe3fd;
  border-radius: 1.5rem;
  padding: 0.75rem 1rem;
}
@media (min-width: 576px) {
  .dashboard-area .categorie-section ul li .list {
    border-radius: 5rem;
    display: flex;
    align-items: center;
  }
}
.dashboard-area .categorie-section ul li .btn {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  line-height: 3rem;
  margin-right: 1.5rem;
  background: #c4beef;
  border: 0;
  border-radius: 5rem;
}
.dashboard-area .categorie-section ul li .btn svg path {
  fill: #fff;
}
@media (min-width: 576px) {
  .dashboard-area .categorie-section ul li span {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .dashboard-area .categorie-section ul li {
    padding-top: 2rem;
    width: 50%;
  }
  .dashboard-area .categorie-section ul li .list {
    min-height: 6rem;
    margin-bottom: 1rem;
  }
  .dashboard-area .categorie-section ul li .btn {
    display: block;
    margin: -3rem auto 0.5rem;
  }
}
.dashboard-area .review-section .text_wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.dashboard-area .review-section .swiper-slide {
  width: 360px;
  margin-left: 3rem;
}
.dashboard-area .review-section .card-body {
  display: flex;
  align-items: center;
}
.dashboard-area .review-section .wrap_avatar {
  margin-left: -3.5rem;
  margin-right: 1rem;
  border-radius: 5rem;
  background: #ddd;
}
.dashboard-area .review-section .location {
  color: #391a4b;
}
.dashboard-area .review-section .wrap_top {
  padding-bottom: 0.5rem;
  position: relative;
}
.dashboard-area .review-section .wrap_top .star {
  position: absolute;
  top: 0;
  right: 1rem;
  color: #ffa808;
}

.news-swiper .swiper-slide {
  width: calc((100% - 80px) / 5);
}
@media (max-width: 991.98px) {
  .news-swiper .swiper-slide {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 767.98px) {
  .news-swiper .swiper-slide {
    width: calc((100% - 20px) / 2);
  }
}

.section_ServiceProcess .swiper-slide {
  padding: 0 1rem;
  width: 20%;
}
@media (max-width: 991px) {
  .section_ServiceProcess .swiper-slide {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  .section_ServiceProcess .swiper-slide {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .section_ServiceProcess .swiper-slide {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .introduce .dashboard-area .categorie-section ul li {
    padding-top: 0.5rem;
  }
}
.introduce .banner-wrapper {
  background-image: url(../images/banner/bn2.jpeg);
  background-size: cover;
  background-position: center bottom;
}
.introduce .serviceStep-swiper .swiper-slide {
  width: calc((100% - 80px) / 5);
  margin-right: 20px;
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .introduce .serviceStep-swiper .swiper-slide {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 767.98px) {
  .introduce .serviceStep-swiper .swiper-slide {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 575.98px) {
  .introduce .serviceStep-swiper .swiper-slide {
    width: 80%;
    margin: 0 10% 2rem;
  }
}
.introduce .serviceStep-swiper .swiper-slide:last-child {
  margin-right: 0px;
}
.introduce .serviceStep-swiper .swiper-slide .title {
  margin: 0.25rem auto 0.75rem;
  color: #885cf6;
  font-size: 1.2rem;
}
.introduce .serviceStep-swiper .swiper-slide .label {
  font-size: 12px;
  color: #ffffff;
  display: inline-block;
  padding: 0 0.5rem;
  border-radius: 1rem;
  background: #a483f8;
}
.introduce .serviceStep-swiper .swiper-slide .text-item {
  font-weight: 400;
}
.introduce .dashboard-area .categorie-section.section-service {
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
}
.introduce .dashboard-area .categorie-section.section-service ul {
  padding-left: 0;
}
.introduce .dashboard-area .categorie-section.section-service ul li {
  padding: 0 1rem 2rem;
}
@media (max-width: 575.98px) {
  .introduce .dashboard-area .categorie-section.section-service ul li {
    width: 100%;
  }
}
.introduce .dashboard-area .categorie-section.section-service ul li .btn {
  border: 1px solid rgba(136, 92, 246, 0.5);
  box-shadow: 0 0 20px -5px rgba(136, 92, 246, 0.5);
  background: #885cf6;
}
.introduce .dashboard-area .categorie-section.section-service ul li .list {
  flex-direction: column;
  border-radius: 3rem;
  background: transparent;
  border: 1px solid #885cf6;
  box-shadow: inset 0 0 21px #fff, 0 0 15px -5px rgba(136, 92, 246, 0.5);
}
@media (min-width: 1200px) {
  .introduce .dashboard-area .categorie-section.section-service ul li .list {
    padding-bottom: 4.5rem;
    border-radius: 4rem 4rem 20rem 20rem;
  }
}
.introduce .dashboard-area .categorie-section.section-service ul li .btn {
  margin: -2rem 0 1rem;
}
.introduce .dashboard-area .categorie-section.section-service ul li .text {
  color: #4b4e6f;
  padding-left: 1.45rem;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0;
}
.introduce .dashboard-area .categorie-section.section-service ul li .title {
  color: #885cf6;
  font-weight: bold;
  padding-left: 0.5rem;
}
@media (max-width: 767.98px) {
  .introduce .notice ul li {
    width: auto;
  }
}
.introduce .notice .text {
  color: #837e99;
  font-weight: 400;
}
.introduce .img-section .item {
  min-height: 400px;
  height: 30vh;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/*# sourceMappingURL=custom-home.css.map */
