: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%;
}

.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;
}

.page:not(.order.list) .order_detail::after {
  background: linear-gradient(345deg, #6366f1, #c386f9);
}
.page.page_orderdetail.page_case .order_detail::after {
  background: linear-gradient(170deg, #e2c5fc 40%, #040535);
}
.page:not(.order.list) .order_detail {
  position: relative;
  padding: 3vh 1rem;
  z-index: 9;
  height: 100%;
}
.page:not(.order.list) .order_detail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200vw;
  height: 400px;
  border-radius: 50%;
  z-index: -1;
}
@media (min-width: 992px) {
  .page:not(.order.list) .order_detail::after {
    width: 100vw;
    height: 500px;
  }
}
.page:not(.order.list) .order_detail .page-content {
  width: calc(100% - 260px - 20rem);
}
.page:not(.order.list) .order_detail .result_title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5vh;
}
.page:not(.order.list) .order_detail .result_title * {
  color: #fff;
}
.page:not(.order.list) .order_detail .result_title h5 {
  letter-spacing: 1px;
}
.page:not(.order.list) .order_detail .result_title .fa:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 1rem;
}
.page:not(.order.list) .order_detail .result_detail {
  position: relative;
  margin: 1rem auto;
  max-width: 480px;
  width: 100%;
}
.page:not(.order.list) .order_detail .result_detail:before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 1rem);
  height: 1rem;
  background: rgba(20, 24, 218, 0.35);
  border-radius: 8px;
  z-index: 0;
}
@media (min-width: 992px) {
  .page:not(.order.list) .order_detail .result_detail:before {
    width: calc(480px + 2rem);
  }
}
.page:not(.order.list) .order_detail .result_detail:after {
  content: "";
  position: absolute;
  top: auto;
  left: 0px;
  height: 30px;
  width: 100%;
  bottom: -28px;
  background: radial-gradient(circle, transparent, transparent 50%, #ffffff 50%, #ffffff 100%) -10px 19px/25px 18px repeat-x, linear-gradient(to bottom, #fff 21px, transparent 21px);
}
.page:not(.order.list) .order_detail .hr {
  margin: 0 10px;
  height: 24px;
  background-repeat: repeat-x;
  background-position: center;
  position: relative;
  box-shadow: 0 1px 0 0 #fff, 0 -1px 0 0 #fff;
  background-color: #fff;
}
.page:not(.order.list) .order_detail .hr:before, .page:not(.order.list) .order_detail .hr:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 5px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
  border-radius: 100%;
  pointer-events: none;
}
.page:not(.order.list) .order_detail .hr:before {
  left: -10px;
}
.page:not(.order.list) .order_detail .hr:after {
  transform: translate(-50%, -50%) rotate(225deg);
  right: -40px;
}
.page:not(.order.list) .order_detail .wrap_content {
  max-height: 62vh;
  min-height: 380px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .page:not(.order.list) .order_detail .wrap_content {
    max-height: 68vh;
  }
}
@media (min-width: 992px) {
  .page:not(.order.list) .order_detail .wrap_content {
    max-height: 78vh;
    min-height: 400px;
  }
}
.page:not(.order.list) .order_detail .wrap_content .title {
  color: #48A9F8;
}
.page:not(.order.list) .order_detail .wrap_content > .result_content {
  position: relative;
  padding: 1rem;
  box-shadow: 0 8px 8px rgba(224, 228, 236, 0.3882352941);
}
@media (min-width: 992px) {
  .page:not(.order.list) .order_detail .wrap_content > .result_content {
    padding: 1rem 2rem;
  }
}
.page:not(.order.list) .order_detail .wrap_content > .result_content:first-child {
  background: linear-gradient(180deg, #a4a5eb, white 1rem);
}
.page:not(.order.list) .order_detail .wrap_content .wrap_list {
  padding-left: 0;
}
.page:not(.order.list) .order_detail .wrap_content .wrap_list .list {
  margin-bottom: 0.5rem;
}
.page:not(.order.list) .order_detail .wrap_content .wrap_list .label {
  width: 5rem;
}
@media (min-width: 992px) {
  .page:not(.order.list) .order_detail .wrap_content .wrap_list .label {
    width: 100px;
  }
}
.page:not(.order.list) .order_detail .wrap_content .wrap_list .content {
  width: calc(100% - 100px - 0.5rem);
}
.page:not(.order.list) .order_detail .wrap_list .list {
  margin-bottom: 1rem;
}

.order.cancel .hr {
  margin: 0;
  width: 100%;
  height: 48px;
  box-shadow: none;
  background: none;
}
.order.cancel .hr:before, .order.cancel .hr:after {
  content: "";
  position: absolute;
  top: auto;
  left: 0px;
  width: 100%;
  height: 12px;
  transform: none;
  border-radius: 100%;
  pointer-events: none;
  border: unset;
  border-radius: 0;
}
.order.cancel .hr:before {
  top: 0px;
  background: radial-gradient(circle, transparent, transparent 50%, #ffffff 50%, #ffffff 100%) -10px 0px/25px 18px repeat-x;
}
.order.cancel .hr:after {
  bottom: 0px;
  background: radial-gradient(circle, transparent, transparent 50%, #ffffff 50%, #ffffff 100%) -10px -7px/25px 18px repeat-x;
}

.page .list .label {
  color: rgba(148, 121, 163, 0.7);
  margin-right: 0.5rem;
}
.page .list .content {
  color: #391a4b;
  font-weight: 500;
}
.page .list .item {
  position: relative;
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0;
  margin-right: 0.5rem;
  padding-right: 0.5rem;
}
.page .list .item::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 100%;
  width: 1px;
  height: 1rem;
  background: rgba(148, 121, 163, 0.7);
}
.page .list .item:last-child::after {
  display: none;
}
.page .list .label, .page .list .content {
  display: inline-block;
  vertical-align: top;
}

.result_number {
  display: flex;
  align-items: center;
}
.result_number .label {
  margin-right: 1rem;
}
.result_number .content {
  color: #48A9F8;
}

.result_container {
  position: relative;
  margin: 1rem auto;
  max-width: 640px;
  width: 100%;
}
.result_container .card-header .wrap {
  display: flex;
  align-items: center;
}

.order.list .price {
  font-size: 1.5rem;
  color: #ab55f7;
}

.filter-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-label {
  display: block;
  margin-right: 1em;
  padding: 0.5rem 0.5rem;
  border-radius: 0.25rem;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  background: color(yellow);
  transition: all 0.3s ease 0s;
  font-size: 0.8rem;
}
.filter-label:hover {
  cursor: pointer;
}

.filter-input {
  position: absolute;
  display: flex;
  z-index: 1;
  opacity: 0;
}
.filter-input:checked + label {
  background-color: color(orange);
  transform: translateX(3px);
  box-shadow: none;
}

.star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1em;
  font-size: 16px;
  width: 6rem;
  letter-spacing: 2px;
  font-family: "Font Awesome 6 Free";
}
.star-rating:before {
  top: 0;
  left: 0;
  content: "\f005\f005\f005\f005\f005";
  float: left;
  color: #b3b3b3;
}
.star-rating span {
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  float: left;
  padding-top: 15px;
  color: #c3a377;
}
.star-rating span:before {
  content: "\f005\f005\f005\f005\f005";
  top: 0;
  position: absolute;
  left: 0;
}

.user .dz-banner-heading {
  position: relative;
}
.user .dz-banner-heading .overlay-black-light {
  position: static;
}
.user .dz-banner-heading .overlay-black-light:after {
  min-height: 120px;
  z-index: -1;
  background: linear-gradient(160deg, rgba(148, 82, 148, 0.4), rgba(232, 46, 46, 0));
}
.user .dz-banner-heading .profile {
  z-index: 2;
}

.card-list {
  width: 100%;
  max-width: 250px;
  margin: auto;
}

.credit-card {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 7px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 2px 4px 0 #cfd7df;
  padding: 1rem;
  background: #1a1b1c;
  color: #efefef;
  width: 100%;
  --w: 16;
  --h: 9;
}
.credit-card:before {
  content: "";
  width: 100%;
  padding-top: calc(var(--h) * 100% / var(--w));
  display: block;
}
.credit-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 2rem 0.25rem;
}
.credit-card.selectable:hover {
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.credit-card-last4 {
  font-family: "PT Mono", Helvetica, sans-serif;
  font-size: 24px;
}
.credit-card-last4:before {
  content: "**** **** **** ";
  color: #4f4d4d;
  font-size: 20px;
}

.credit-card.american-express .credit-card-last4:before,
.credit-card.amex .credit-card-last4:before {
  content: "**** ****** *";
  margin-right: -10px;
}

.credit-card.diners-club .credit-card-last4:before,
.credit-card.diners .credit-card-last4:before {
  content: "**** ****** ";
}

.credit-card-expiry {
  font-family: "PT Mono", Helvetica, sans-serif;
  font-size: 18px;
  position: absolute;
  bottom: 8px;
  left: 15px;
}

/* BRAND CUSTOMIZATION */
.credit-card::after {
  content: " ";
  position: absolute;
  bottom: 10px;
  right: 15px;
}
.credit-card.visa {
  background: #4862e2;
  color: #eaeef2;
}
.credit-card.visa .credit-card-last4:before {
  color: #8999e5;
}
.credit-card.visa::after {
  height: 16px;
  width: 50px;
  background-image: url("data:image/pngbase64,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");
}
.credit-card.mastercard {
  background: #4f0cd6;
  color: #e3e8ef;
}
.credit-card.mastercard .credit-card-last4:before {
  color: #8a82dd;
}
.credit-card.mastercard::after {
  width: 40px;
  height: 25px;
  background-image: url("data:image/png;base64,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");
}
.credit-card.american-express, .credit-card.amex {
  background: #1cd8b3;
  color: #f2fcfa;
}
.credit-card.american-express .credit-card-last4:before, .credit-card.amex .credit-card-last4:before {
  color: #99efe0;
}
.credit-card.diners, .credit-card.diners-club {
  background: #8a38ff;
  color: #f5efff;
}
.credit-card.diners.diners .credit-card-last4:before, .credit-card.diners .credit-card.diners-club .credit-card-last4:before, .credit-card.diners-club.diners .credit-card-last4:before, .credit-card.diners-club .credit-card.diners-club .credit-card-last4:before {
  color: #b284f4;
}
.credit-card.discover {
  background: #f16821;
  color: #fff4ef;
}
.credit-card.discover .credit-card-last4:before {
  color: #ffae84;
}
.credit-card.jcb {
  background: #cc3737;
  color: #f7e8e8;
}
.credit-card.jcb .credit-card-last4:before {
  color: #f28a8a;
}
.credit-card.jcb::after {
  width: 30px;
  height: 15px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAPCAYAAADzun+cAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAAAsTAAALEwEAmpwYAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpMwidZAAACsklEQVQ4EX2U32uOYRjH32c2zIjyKyc7IDkRZw4cMEcjxIHSyoH4C6yNNJRJOZKWAyeEQqI4wQnlhE0phCHmR1NsI43ttdnm8fk8nktPWu+3Prvu676v57qv+3rve0kJpWk6FbMdVkICRemfS5LkiZPEbsSsgRpdUNpauEbc7WwiTVdjjXW+GDcd/4GJauAiVJJFGXusUhBrh/O4XYzHKsReryZwEzTBOFiZJ9ROgLIbgyRZgm11Ao1AsTPGzoAfxBl/CMxdzi3mX07jhl00YSjaZ1LHod8M6qEKxsB2TSbjFsG8fNFNJlPixkXFiT8y2Q1usAqmwC9QFvQUXoNdshhPth5cc3PVBf2gH9/OZtwIVX4UctP46AqXxIDN8BZMGK0/ztoK/Gb4Brb9IbyHOIixu4nbgu2BpXAH3+LaoM5AN1QmHwVPJ8obadstyPFnOADqLDSA2vHXlC5j4zDT8rlZ2DqYmftztG7sZbCtc2EhqPjIFsVls5gvVP2TC7SA8WJQFhWbZRP88TBx+nuM++A+qPkw4QdWdBc2wDN4BadBNcAy8ELZjeVsupbN/e3a4SvYbn/zIbC4uCfOq21wEHaC6oDUqgzYD1beAgOO2WAfdi/Es/F3U+dZO4J9B0fBFr6EPWCn3NgDbSXuObYTXsAbfA/n3fjuP4UWCA0z6IVyTOS2Ebvuvzld361vfEgHNUM9hO/cCBg3rpPrQvwOFJG10ncXby+eitVLyHm7IHFhohu2OjrEMHtudiE64Z3xTlWb0NYox7bbxCYqJvA2x+YRrzUuYFj6AM6bJxTrzsW3PSazAuVz0rcLVi76Z7hMj7BxOuNiPaw5bsFVKHatmMtYT/4YOlzoBRMPQpyKYVb1TewJHfQJboD/MIqyM51wigK9lGXGl6AWPG3IjbvhpK/iD/ZAl+AbzJMOAAAAAElFTkSuQmCC");
}

.selected form {
  max-height: 800px !important;
  opacity: 1;
}

.payment-types {
  list-style-type: none;
  margin-top: 2rem;
  padding: 0;
}
.payment-types .paymenttype {
  margin-bottom: 30px;
}
.payment-types header {
  position: relative;
  height: 200px;
}
.payment-types .card {
  margin: auto;
  width: 300px;
  height: 188px;
  border-radius: 16px;
  perspective: 1000px;
  transition: transform 0.5s ease-in;
  z-index: 5;
}
.payment-types .card.visa {
  background: #4862e2;
  color: #eaeef2;
}
.payment-types .card.visa .credit-card-last4:before {
  color: #8999e5;
}
.payment-types .card.visa .credit-card-type::after {
  height: 16px;
  width: 50px;
  background-image: url("data:image/png;base64,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");
}
.payment-types .card.mastercard {
  background: #4f0cd6;
  color: #e3e8ef;
}
.payment-types .card.mastercard .credit-card-last4:before {
  color: #8a82dd;
}
.payment-types .card.mastercard .credit-card-type::after {
  width: 40px;
  height: 25px;
  background-image: url("data:image/png;base64,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");
}
.payment-types .card.jcb {
  background: #cc3737;
  color: #f7e8e8;
}
.payment-types .card.jcb .credit-card-last4:before {
  color: #f28a8a;
}
.payment-types .card.jcb .credit-card-type::after {
  width: 30px;
  height: 15px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAPCAYAAADzun+cAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAAAsTAAALEwEAmpwYAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpMwidZAAACsklEQVQ4EX2U32uOYRjH32c2zIjyKyc7IDkRZw4cMEcjxIHSyoH4C6yNNJRJOZKWAyeEQqI4wQnlhE0phCHmR1NsI43ttdnm8fk8nktPWu+3Prvu676v57qv+3rve0kJpWk6FbMdVkICRemfS5LkiZPEbsSsgRpdUNpauEbc7WwiTVdjjXW+GDcd/4GJauAiVJJFGXusUhBrh/O4XYzHKsReryZwEzTBOFiZJ9ROgLIbgyRZgm11Ao1AsTPGzoAfxBl/CMxdzi3mX07jhl00YSjaZ1LHod8M6qEKxsB2TSbjFsG8fNFNJlPixkXFiT8y2Q1usAqmwC9QFvQUXoNdshhPth5cc3PVBf2gH9/OZtwIVX4UctP46AqXxIDN8BZMGK0/ztoK/Gb4Brb9IbyHOIixu4nbgu2BpXAH3+LaoM5AN1QmHwVPJ8obadstyPFnOADqLDSA2vHXlC5j4zDT8rlZ2DqYmftztG7sZbCtc2EhqPjIFsVls5gvVP2TC7SA8WJQFhWbZRP88TBx+nuM++A+qPkw4QdWdBc2wDN4BadBNcAy8ELZjeVsupbN/e3a4SvYbn/zIbC4uCfOq21wEHaC6oDUqgzYD1beAgOO2WAfdi/Es/F3U+dZO4J9B0fBFr6EPWCn3NgDbSXuObYTXsAbfA/n3fjuP4UWCA0z6IVyTOS2Ebvuvzld361vfEgHNUM9hO/cCBg3rpPrQvwOFJG10ncXby+eitVLyHm7IHFhohu2OjrEMHtudiE64Z3xTlWb0NYox7bbxCYqJvA2x+YRrzUuYFj6AM6bJxTrzsW3PSazAuVz0rcLVi76Z7hMj7BxOuNiPaw5bsFVKHatmMtYT/4YOlzoBRMPQpyKYVb1TewJHfQJboD/MIqyM51wigK9lGXGl6AWPG3IjbvhpK/iD/ZAl+AbzJMOAAAAAElFTkSuQmCC");
}
.payment-types .card .shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 5;
}
.payment-types .card .card-bg {
  z-index: 2;
}
.payment-types .card .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
  box-shadow: 0 8px 30px rgba(14, 21, 47, 0.6);
  z-index: 1;
  border-radius: 16px;
}
.payment-types .card .flipper {
  transition: 0.75s;
  transform-style: preserve-3d;
  position: relative;
  width: 300px;
  height: 188px;
}
.payment-types .card.flipped .flipper {
  transform: rotateY(180deg);
}
.payment-types .card .front,
.payment-types .card .back,
.payment-types .card .card-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  position: absolute;
}
.payment-types .card .card-content {
  width: 100%;
  padding: 1rem;
  text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3), 1px 1px 0px rgba(0, 0, 0, 0.5);
  color: #b0b0b0;
  font-family: "Droid Serif", serif;
  z-index: 6;
}
.payment-types .card .card-content span {
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  overflow: hidden;
  color: #20338d;
  padding-left: 2px;
  white-space: nowrap;
}
.payment-types .card .card-content span + span {
  color: #a545b1;
  height: 7px;
  overflow: hidden;
}
.payment-types .card .card-content strong {
  font-weight: normal;
}
.payment-types .card .card-content em {
  text-transform: uppercase;
  font-style: normal;
  font-size: 9px !important;
  text-shadow: none;
  font-family: Open sans, sans-serif;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 5px;
}
.payment-types .card .card-content .glow {
  animation: glow 0.5s;
}
.payment-types .card .front,
.payment-types .card .back {
  backface-visibility: hidden;
  box-shadow: 0 4px 8px rgba(10, 10, 10, 0.25);
  border-radius: 16px;
}
.payment-types .card .front {
  z-index: 2;
  transform: rotateY(0deg);
  display: flex;
  align-items: flex-end;
}
.payment-types .card .back {
  z-index: 1;
  transform: rotateY(180deg);
}
.payment-types .card .back .card-content {
  opacity: 0.7;
  text-shadow: -1px -1px 0px rgba(0, 0, 0, 0.5), 1px 1px 0px rgba(255, 255, 255, 0.3);
  transform: rotateY(180deg);
}
.payment-types .card .ccv {
  font-size: 14px;
}
.payment-types .card .ccv strong {
  font-weight: normal;
  font-style: italic;
}
.payment-types .card .ccv em {
  font-size: 8px;
}
.payment-types .card .chipLogo {
  grid-area: chip;
  overflow: hidden;
  width: 38px;
  height: 30px;
  justify-self: left;
  margin-top: 10px;
}
.payment-types .card .credit-card-type {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 30px;
}
.payment-types .card .credit-card-type::after {
  content: "";
  z-index: 9;
  position: absolute;
  right: 0;
}
.payment-types .card .card-number {
  margin: 0.5rem 0 0;
  font-size: 20px;
  font-family: courier;
  text-align: justify;
}
.payment-types .card .card-holder {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 100;
}
.payment-types .card .card-holder span {
  letter-spacing: 1px;
}
.payment-types .card .card-holder span + span {
  height: 0px;
}
.payment-types .card .validuntil {
  display: flex;
  align-items: center;
  font-family: courier;
  bottom: 1rem;
  right: 1rem;
  font-size: 16px;
  height: 16px;
  width: 120px;
  white-space: nowrap;
  font-family: courier;
}
.payment-types .card .validuntil .e-month,
.payment-types .card .validuntil .e-date-divider,
.payment-types .card .validuntil .e-year {
  position: relative;
  letter-spacing: 1px;
  display: inline-block;
  margin: 0 1px;
}
.payment-types .card .validuntil .e-month span,
.payment-types .card .validuntil .e-date-divider span,
.payment-types .card .validuntil .e-year span {
  position: relative;
}
.payment-types .card-bg img {
  border-radius: 12px;
}
.payment-types .form {
  margin: -3rem auto;
  max-width: 400px;
  min-width: 320px;
  transition: opacity, max-height 0.5s ease-in;
}
.payment-types .form .form-content {
  border: 1px solid rgba(148, 121, 163, 0.2);
  border-radius: 4px;
  padding: 70px 20px 20px 20px;
  background: rgba(148, 121, 163, 0.1);
  margin-bottom: 2rem;
}
.payment-types .form label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: #666;
  position: relative;
  padding-left: 0.75rem;
}
.payment-types .form .field {
  padding-top: 1rem;
}
.payment-types .form .field label {
  position: absolute;
  top: 0;
}
.payment-types .form .field-group,
.payment-types .form .field {
  position: relative;
}
.payment-types .form .focus-bar {
  display: block;
  width: calc(100% - 30px);
  height: 2px;
  margin: -1px auto;
  z-index: 2;
  pointer-events: none;
  position: relative;
}
.payment-types .form .focus-bar:before, .payment-types .form .focus-bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: rgb(225, 157, 60);
  transition: 0.2s ease all;
}
.payment-types .form .focus-bar:before {
  left: 50%;
}
.payment-types .form .focus-bar:after {
  right: 50%;
}
.payment-types .form .form-control {
  width: 100%;
  padding: 5px 1rem;
  font-size: 16px;
  border: 1px solid #CCC;
  position: relative;
  height: 40px;
}
.payment-types .form .form-control:focus {
  outline: none;
}
.payment-types .form .form-control:focus + .focus-bar:before, .payment-types .form .form-control:focus + .focus-bar:after {
  width: 50%;
}
.payment-types .form .form-control:focus + .focus-bar + label, .payment-types .form .form-control:focus + .focus-bar + label {
  color: #ccc;
}
.payment-types .form .expire-date {
  padding: 0 1rem 0;
  overflow: hidden;
}
.payment-types .form .expire-date input {
  border: 0;
  width: 50px;
}
.payment-types .form .expire-date .divider {
  padding: 0 5px;
  line-height: 32px;
  color: #ccc;
  user-select: none;
}
.payment-types .form .ccv {
  width: 80px;
}

@keyframes glow {
  0% {
    text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3), 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  70% {
    color: rgba(255, 255, 255, 0.4);
    text-shadow: -1px 1px 8px #ffc, 1px -1px 8px rgba(255, 255, 255, 0.6);
  }
  100% {
    text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.3), 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
    height: 0px;
  }
  100% {
    width: 200%;
    height: 300px;
  }
}
.author_box .btn_edit {
  padding: 0.5rem 1rem;
}
.author_box .name_title {
  font-size: 0.9rem;
}
.author_box .info_content {
  opacity: 0.5;
}
.author_box .img {
  width: 3rem;
  height: 3rem;
  padding: 0.5rem 0;
  font-size: 1.5rem;
  text-align: center;
  background: #ddd;
}
@media (min-width: 992px) {
  .author_box .img {
    width: 5rem;
    height: 5rem;
    font-size: 2.25rem;
    padding: 1rem;
  }
}

.user-tag {
  color: #9c5ebe;
  background: #f4f4f4;
}

.user-danger {
  color: #f4f4f4;
  background: #f75a5b;
}

.user-success {
  color: #f4f4f4;
  background: #58bad7;
}

.user-warning {
  color: #604400;
  background: #ffd060;
}

.account-area .wrap_option .option_content {
  padding: 0.25rem 1.25rem;
  padding-left: 2.25rem;
}

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