/* EGLib. v1.21 | Emre GÃ¼ven | emree.net */
:root {
    --bg: #f2f4f8;
    --font: "Gilroy", sans-serif;
    --main-color: #ec4635;
    --main-rgb: 235, 83, 75;
    --base-color: #E91E63;
    --soft-text: #68718c;
    --main-text: #4c5473;
    --dark-text: #393d4b;
    --white: #fff;
    --danger: #f56a6a;
    --warning: #ebb35f;
    --primary: #6a7bf5;
    --success: #57c781;
    --light: #5f728a;
    --container: 1250px;
    --butto-radius: 4px;
    --radius-main: 8px;
    --radius-in: 4px;
    --icon-family: "eg";
    --linear: var(--main-color), var(--base-color);
}

/* -------------------------- General -------------------------- */

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--main-text);
    font-family: var(--font);
    background-color: var(--bg);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

body.noscroll {
    overflow: hidden;
}

a {
    color: var(--main-text);
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

:active,
:focus {
    outline: 0;
}

button {
    background: transparent;
    border: none;
}

/* -------------------------- General Styling -------------------------- */
.cl-white {
    color: #fff !important;
}
.cl-black {
    color: #000 !important;
}
.cl-text {
    color: var(--main-text) !important;
}
.cl-main {
    color: var(--main-color) !important;
}
.cl-base {
    color: var(--base-color) !important;
}
.cl-success {
    color: var(--success) !important;
}
.cl-danger {
    color: var(--danger) !important;
}
.cl-primary {
    color: var(--primary) !important;
}
.cl-warning {
    color: var(--warning) !important;
}
.cl-light {
    color: var(--light) !important;
}

.bg-white {
    background-color: #fff !important;
}
.bg-black {
    background-color: #000 !important;
}
.bg-dark {
    background-color: var(--dark-text) !important;
}
.bg-bg {
    background-color: var(--bg) !important;
}
.bg-main {
    background-color: var(--main-color) !important;
}
.bg-base {
    background-color: var(--base-color) !important;
}
.bg-success {
    background-color: var(--success) !important;
}
.bg-danger {
    background-color: var(--danger) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-warning {
    background-color: var(--warning) !important;
}
.bg-light {
    background-color: var(--light) !important;
}

.br-main {
    border-radius: var(--radius-main);
}
.br-in {
    border-radius: var(--radius-in);
}

.container {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}

.border-0 {
    border: 0 !important;
}

.c-pointer {
  cursor: pointer;
}

.us-none {
    user-select: none;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-grid {
    display: -ms-grid !important;
    display: grid !important;
}

.grid-2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-auto {
    -ms-grid-columns: auto !important;
    grid-template-columns: auto !important;
}

.gap-0 {
    gap: 0 !important;
}
.gap-1 {
    gap: 0.25rem !important;
}
.gap-2 {
    gap: 0.5rem !important;
}
.gap-3 {
    gap: 1rem !important;
}
.gap-4 {
    gap: 1.5rem !important;
}
.gap-5 {
    gap: 3rem !important;
}

.grid-w100 {
    grid-column: 1 / -1;
}

.d-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.well {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.well [class^="ww"] {
    padding: 0 10px;
}

.well.form {
    margin: 0 -7px;
}

.well.form [class^="ww"] {
    padding: 0 7px;
}

.well .ww-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
}

.well .ww-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}

.well .ww-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
}

.well .ww-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
}

.well .ww-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.well .ww-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
}

.well .ww-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
}

.well .ww-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
}

.well .ww-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
}

.well .ww-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.ai-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.jc-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.p-absolute {
    position: absolute;
}

.p-relative {
    position: relative;
}

.w-100 {
    width: 100% !important;
}

.miw-100 {
    min-width: 100% !important;
}

.maw-100 {
    max-width: 100% !important;
}

.w-fit {
    width: fit-content;
}

.h-100 {
    height: 100%;
}

.h-fit {
    height: fit-content;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.m-auto {
    margin: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-8old {
    font-weight: 800 !important;
}

.br-0 {
    border-radius: 0 !important;
}

.br-2 {
    border-radius: 2px !important;
}

.br-5 {
    border-radius: 5px !important;
}

.br-8 {
    border-radius: 8px !important;
}

.br-10 {
    border-radius: 10px !important;
}

.br-12 {
    border-radius: 12px !important;
}

.br-15 {
    border-radius: 15px !important;
}

.br-25 {
    border-radius: 25px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.butto,
.badge {
    color: #fff;
    border: none;
    font-weight: 500;
    font-family: var(--font);
    padding: 8px 15px;
    text-decoration: none !important;
    font-size: 15px;
    border-radius: var(--butto-radius);
    transition: 0.4s ease all;
    display: inline-block;
    user-select: none;
}

.butto {
    cursor: pointer;
}

.butto.passive {
    opacity: .5;
    pointer-events: none;
}

.butto:hover,
.badge:hover {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

[class*="butto-outline"],
[class*="badge-outline"] {
    padding: 7px 15px;
}

.badge:hover {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

.butto-xs,
.badge-xs {
    padding: 5px 12px;
    font-size: 13px;
}

[class*="butto-outline"].butto-xs,
[class*="badge-outline"].badge-xs {
    padding: 4px 12px !important;
}

.butto-sm,
.badge-sm {
    padding: 6px 12px;
    font-size: 15px;
}

[class*="butto-outline"].butto-sm,
[class*="badge-outline"].badge-sm {
    padding: 5px 12px !important;
}

.butto-lg,
.badge-lg {
    padding: 10px 20px !important;
    font-size: 16px;
}

[class*="butto-outline"].butto-lg,
[class*="badge-outline"].badge-lg {
    padding: 9px 20px !important;
}

.butto-xlg,
.badge-xlg {
    padding: 15px 25px !important;
    font-size: 18px;
}

[class*="butto-outline"].butto-xlg,
[class*="badge-outline"].badge-xlg {
    padding: 14px 25px !important;
}

.butto-primary,
.badge-primary {
    color: #fff !important;
    background: var(--primary);
    font-weight: 500;
}
.border-primary {
    border-color: var(--primary) !important;
}
.badge-outline-primary,
.butto-outline-primary {
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-primary:hover,
.butto-outline-primary:hover {
    color: #fff !important;
    background: var(--primary);
}

.butto-main,
.badge-main {
    color: #fff !important;
    background: linear-gradient(115deg, var(--linear));
    font-weight: 500;
}
.badge-outline-main,
.butto-outline-main {
    color: var(--main-color) !important;
    border: 1px solid var(--main-color);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-main:hover,
.butto-outline-main:hover {
    color: #fff !important;
    background: var(--main-color);
}

.butto-success,
.badge-success {
    color: #fff !important;
    background: var(--success);
    font-weight: 500;
}
.border-success {
    border-color: var(--success) !important;
}
.badge-outline-success,
.butto-outline-success {
    color: var(--success) !important;
    border: 1px solid var(--success);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-success:hover,
.butto-outline-success:hover {
    color: #fff !important;
    background: var(--success);
}

.butto-warning,
.badge-warning {
    color: #fff !important;
    background: var(--warning);
    font-weight: 500;
}
.border-warning {
    border-color: var(--warning) !important;
}
.badge-outline-warning,
.butto-outline-warning {
    color: var(--warning) !important;
    border: 1px solid var(--warning);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-warning:hover,
.butto-outline-warning:hover {
    color: #fff !important;
    background: var(--warning);
}

.butto-danger,
.badge-danger {
    color: #fff !important;
    background: var(--danger) !important;
    font-weight: 500;
}
.border-danger {
    border-color: var(--danger) !important;
}
.badge-outline-danger,
.butto-outline-danger {
    color: var(--danger) !important;
    border: 1px solid var(--danger);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-danger:hover,
.butto-outline-danger:hover {
    color: #fff !important;
    background: var(--danger);
}

.butto-light,
.badge-light {
    color: var(--white);
    background: var(--light);
    font-weight: 500;
}

.badge-outline-light,
.butto-outline-light {
    color: var(--light) !important;
    border: 1px solid #95a1b1;
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-light:hover,
.butto-outline-light:hover {
    color: var(--white) !important;
    background: var(--light) !important;
    border-color: var(--light) !important;
}

.butto-base,
.badge-base {
    color: var(--white);
    background: var(--base-color);
}

.badge-outline-base,
.butto-outline-base {
    color: var(--base-color) !important;
    border: 1px solid var(--base-color);
    font-weight: 500;
    filter: brightness(1) !important;
}

.butto-dark,
.badge-dark {
    color: var(--white);
    background: var(--main-text);
}

.badge-outline-dark,
.butto-outline-dark {
    color: var(--main-text) !important;
    border: 1px solid var(--main-text);
    font-weight: 500;
    filter: brightness(1) !important;
}

.butto-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.alert-primary {
    background: #bfcaff;
    color: #1b3a76;
}

.alert-danger {
    background: #febdbe;
    color: #8f2630;
}

.alert-warning {
    background: #ffddb0;
    color: #72602e;
}

.alert-success {
    background: #acedc3;
    color: #155724;
}

.alert-light {
    background: #e7e9f3;
    color: #565b74;
}

.lazy {
    opacity: 0;
    transition: opacity .5s;
 }
 .lazy.Load {
    opacity: 1;
 }

.btnAnimated {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btnAnimated::before {
    content: "";
    position: absolute;
    left: -30%;
    top: 0;
    bottom: 0;
    width: 100%;
    -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    background: #ffffff10;
    -webkit-clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
    z-index: -1;
}

.btnAnimated:hover:before {
    left: -20%;
}
.tabsArea {
    display: grid;
}
.tabsArea .tabHead {
    padding: 5px;
    background: #ececf5;
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 2px !important;
    overflow: auto;
}
.tabsArea .tabHead.soft {
    background: #f2f4f8;
}
.tabsArea .tabHead .item {
    border-radius: var(--radius-main);
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #63687b;
    margin-right: 5px;
    transition: 0.2s;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
}
.tabsArea .tabHead.small .item {
    padding: 7px 20px;
}
.tabsArea .tabHead .item i {
    font-size: 14px;
    margin-right: 5px;
}
.tabsArea .tabHead .item:last-child {
    margin-right: 0;
}
.tabsArea .tabHead .item.active {
    background: #fff !important;
    box-shadow: 0 3px 6px #00000008;
}
.tabsArea .tabHead .item:hover {
    background: #00000005;
}
.tabContent .tabitem {
    display: none;
}
.tabContent .tabitem.show {
    display: block;
}
.card {
    background: #fff;
    border-radius: 20px;
}

.card .card-header {
    color: var(--main-text);
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    border-bottom: 1px solid var(--bg);
}

.card .card-header.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card .card-header .butto-light {
    background: var(--bg);
    color: var(--soft-text);
}

.card .card-footer {
    color: var(--main-text);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 20px;
    border-top: 1px solid var(--bg);
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]:hover {
  position: relative;
  z-index: 1;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  font-size: 14px !important;
  font-weight: 400 !important;
  text-align: center;
  position: absolute;
  width: max-content;
  max-width: 239px;
  top: calc(90% + 5px);
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background-color: #1a1e36af;
  padding: 4px 15px;
  border-radius: var(--radius-in);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 99;
}
[data-tooltip]:hover:before {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 5px);
}

[data-tooltip]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(90% + 1px);
  transform: translateX(-50%);
  border-color: transparent transparent #1a1e36af transparent;
  border-style: solid;
  border-width: 0px 4px 4px 4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

[data-tooltip]:hover:after {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 1px);
}

/* Drop */

.dropList {
    position: relative;
}
.dropListTable {
    display: none;
    border-top: 0;
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 99;
    border-top: 0;
    border-radius: var(--radius-in);
    overflow: hidden;
    box-shadow: 0 10px 15px #acacbd7d;
    max-height: 320px;
    overflow: auto;
}
.dropListTable::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}
.dropListTable::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}
.dropListTable::-webkit-scrollbar-thumb {
    background-color: var(--soft-text);
}
.dropListTable .item {
    position: relative;
    padding: 10px 15px;
    border-bottom: 1px solid #f5f4fb;
    font-size: 16px;
    color: var(--soft-text);
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropListTable .item.active::after {
    content: "\eae6";
    font-family: var(--icon-family);
    color: var(--main-color);
}

.dropList.light,
.dropList.selected {
    background: var(--white);
    border-radius: 5px;
}

.dropList.light .dropListTitle,
.dropList.selected .dropListTitle {
    background-color: #f8f9fc;
    align-items: center;
}
.dropListTable .search {
    padding: 10px;
    border-bottom: 1px solid #f5f4fb;
    position: relative;
}

.dropListTable .search .butto {
    display: flex;
    align-items: center;
    gap: 2px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: .2s;
}
.dropListTable .search .butto.show {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.dropListTable .item.active {
    background: #fafafb;
}
.dropListTable .item .text {
    color: #9699ad;
}
.dropListTable .item .text span {
    color: #565b74;
    display: block;
    margin-bottom: 2px;
}
.dropListTable .item.active .icon {
    opacity: 1;
}
.dropListTable .item:last-child {
    border: none;
}
.dropListTable .item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
}
.dropListTable .item span span {
    font-weight: 400;
}
.dropListTable .item:hover {
    background: #fbfbfd;
}
.dropListTitle {
    position: relative;
    padding: 0.8rem 1rem;
    border: 1px solid #e5e5f5;
    border-radius: var(--radius-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--soft-text);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    transition-delay: 0.2s;
    height: 50px;
}
.dropListTitle.border-0 {
    border: 0 !important;
}
.dropListTitle .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    font-size: 24px;
    color: var(--soft-text);
}
.dropList.show .dropListTitle {
    background: #f5f6f9;
    transition: 0s;
}
.dropListTitle::after {
    content: "\e96f";
    font-family: var(--icon-family);
    color: var(--soft-text);
    position: relative;
    right: -5px;
    font-size: 24px;
    display: flex;
    transform: rotateX(0deg);
    transition: 0.2s;
}
.dropListTitle.nodrop::after {
    content: "";
}
.dropList.show .dropListTitle::after {
    transform: rotateX(180deg);
}
.dropListTitle label.title {
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    padding: 0.85rem 1rem;
    font-weight: 500;
    font-size: 16px;
    pointer-events: none;
    border: 1px solid transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

.dropList.selected .dropListTitle label.title {
    opacity: 0.6;
    transform: scale(0.8) translateY(-0.27rem) translateX(0.2rem);
}
.dropList.selected .dropListTitle .dlabName {
    padding-top: 1.4rem;
    padding-bottom: 0.625rem;
}

/* Form */

.form-control {
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    color: var(--main-text);
    background: #fcfdff;
    border: 1px solid #e4e8ef;
    padding: 1rem 1.2rem;
    height: 60px;
    border-radius: 12px;
    font-size: 16px;
    width: 100%;
    transition: .3s ease all
}

.form-control:disabled {
    color: var(--soft-text);
    background: #f4f5f7!important;
}

.form-control::placeholder {
    color: var(--soft-text);
    font-weight: 400
}

.form-control:focus {
    border-color: var(--main-color) !important
}

.form-floating {
    position: relative;
    margin-bottom: 12px;
}

.form-floating .form-control {
    padding-top: 28px;
}
.form-floating textarea {
    min-height: 70px;
}

.form-floating>label {
    color: var(--soft-text);
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    height: 60px;
    padding: 1.3rem 1.2rem;
    font-size: 15px;
    pointer-events: none;
    border: 1px solid transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: opacity .1s ease-in-out,-webkit-transform .1s ease-in-out;
    transition: opacity .1s ease-in-out,-webkit-transform .1s ease-in-out;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out,-webkit-transform .1s ease-in-out
}

.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label {
    transform: scale(0.8) translateY(-0.27rem) translateX(0.25rem);
    opacity: .7;
}

.form-floating>.form-control::placeholder {
    color: transparent
}

.form-floating.fc-icon .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    min-width: 50px;
    width: 50px;
    padding-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e4e8ef;
    height: 36px;
    font-size: 18px;
    color: var(--soft-text);
    transition: .3s ease all;
}

.form-floating.fc-icon .form-control {
    padding-left: 70px;
}

.form-floating.fc-icon > label {
    padding-left: 70px;
}

.form-floating.fc-icon>.form-control:focus~label, .form-floating.fc-icon>.form-control:not(:placeholder-shown)~label, .form-floating.fc-icon>.form-select~label {
    transform: scale(0.8) translateY(-0.27rem) translateX(1.1em);
    opacity: .7;
}

.form-floating.fc-icon .form-control:focus + label + .icon {
    color: var(--main-color);
    border-color: rgb(var(--main-rgb), 0.3);
}

.checkbox,
.radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[type="checkbox"],
[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    min-width: 24px;
    height: 24px;
    background: #f8f9fc;
    border: 1px solid #e6e8ed;
    border-radius: 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 7px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

[type="checkbox"]:checked,
[type="radio"]:checked {
    position: relative;
    background: var(--main-color);
    border: transparent;
}

[type="checkbox"]:checked::before,
[type="radio"]:checked::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
}

.checkbox label,
.radio label {
    font-size: 16px;
    color: var(--main-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.switch {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.switch > span {
    width: 34px;
    height: 20px;
    display: block;
    background: #fff;
    border-radius: 12px;
    position: relative;
}

.switch > span::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background: var(--main-color);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.switch > label {
    margin-left: 5px;
}

.switch.active > span {
    background: var(--main-color);
}

.switch.active > span::before {
    left: calc(100% - 17px);
    background: #fff;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.modal .modal-content {
    position: relative;
    left: 50%;
    top: 50vh;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 750px;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    padding: 15px;
    padding-bottom: 75px;
}

.modal .modal-content.modal-lg {
    max-width: 1100px;
}

.modal .modal-content.modal-sm {
    max-width: 400px;
}

.modal .modal-content .modalArea {
    background: #fff;
    border-radius: var(--radius-main);
    position: relative;
}

.modal .modal-content .modalArea .modal-close {
    position: absolute;
    right: -5px;
    top: -5px;
    font-size: 18px;
    height: 34px;
    width: 34px;
    color: #fff;
    background: var(--main-color);
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
}

.modal.center {
    display: flex;
    align-items: center;
}

.modal.center .modal-content {
    top: -5vh;
}

.modal.center.show .modal-content {
    top: 0vh;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
    overflow: auto;
    background-color: #0f131efc;
}

.modal.show .modal-content {
    top: 6vh;
    opacity: 1;
}

.modalHead h6 {
    font-size: 18px;
}

.modal-head {
    padding: 15px 20px;
    border-bottom: 1px solid var(--bg);
    color: var(--main-text);
    font-size: 16px;
    font-weight: 600;
}

.modal-foot {
    border-top: 1px solid var(--bg);
}


/* -------------------------- Keyframes -------------------------- */

@keyframes rotateOpacity {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
        opacity: 0.3;
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* -------------------------- Media -------------------------- */
@media (max-width: 1200px) {
    .lg-d-none {
        display: none !important;
    }
    .lg-w-100 {
        width: 100% !important;
    }
    .lg-miw-100 {
        min-width: 100% !important;
    }
    .lg-maw-100 {
        max-width: 100% !important;
    }
    .lg-h-100 {
        height: 100% !important;
    }
    .lg-m-0 {
        margin: 0 !important;
    }
    .lg-d-grid {
        display: -ms-grid !important;
        display: grid !important;
    }
    .lg-gap-0 {
        grid-gap: 0 !important;
    }
    .lg-gap-1 {
        grid-gap: 0.25rem !important;
    }
    .lg-gap-2 {
        grid-gap: 0.5rem !important;
    }
    .lg-gap-3 {
        grid-gap: 1rem !important;
    }
    .lg-gap-4 {
        grid-gap: 1.5rem !important;
    }
    .lg-gap-5 {
        grid-gap: 3rem !important;
    }
    .lg-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .lg-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .lg-grid-3 {
        -ms-grid-columns: 1fr 1fr 1fr !important;
        grid-template-columns: 1fr 1fr 1fr !important;
    }
    .lg-grid-w100 {
        grid-column: 1 / -1;
    }
    .lg-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .well .lg-ww-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .well .lg-ww-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .well .lg-ww-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .well .lg-ww-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .well .lg-ww-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .well .lg-ww-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .well .lg-ww-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .well .lg-ww-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .well .lg-ww-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .well .lg-ww-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 720px;
    }
    .md-w-100 {
        width: 100% !important;
    }
    .md-miw-100 {
        min-width: 100% !important;
    }
    .md-maw-100 {
        max-width: 100% !important;
    }
    .md-h-100 {
        height: 100% !important;
    }
    .md-d-none {
        display: none !important;
    }
    .md-gap-0 {
        grid-gap: 0 !important;
    }
    .md-gap-1 {
        grid-gap: 0.25rem !important;
    }
    .md-gap-2 {
        grid-gap: 0.5rem !important;
    }
    .md-gap-3 {
        grid-gap: 1rem !important;
    }
    .md-gap-4 {
        grid-gap: 1.5rem !important;
    }
    .md-gap-5 {
        grid-gap: 3rem !important;
    }
    .md-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .md-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .md-grid-w100 {
        grid-column: 1 / -1;
    }
    .md-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .well .md-ww-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .well .md-ww-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .well .md-ww-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .well .md-ww-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .well .md-ww-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .well .md-ww-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .well .md-ww-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .well .md-ww-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .well .md-ww-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .well .md-ww-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        width: 100%;
    }
    .sm-d-none {
        display: none !important;
    }
    .sm-w-100 {
        width: 100% !important;
    }
    .sm-miw-100 {
        min-width: 100% !important;
    }
    .sm-maw-100 {
        max-width: 100% !important;
    }
    .sm-h-100 {
        height: 100% !important;
    }
    .sm-gap-0 {
        grid-gap: 0 !important;
    }
    .sm-gap-1 {
        grid-gap: 0.25rem !important;
    }
    .sm-gap-2 {
        grid-gap: 0.5rem !important;
    }
    .sm-gap-3 {
        grid-gap: 1rem !important;
    }
    .sm-gap-4 {
        grid-gap: 1.5rem !important;
    }
    .sm-gap-5 {
        grid-gap: 3rem !important;
    }
    .sm-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .sm-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .sm-grid-w100 {
        grid-column: 1 / -1;
    }
    .sm-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .xs-d-none {
        display: none !important;
    }
    .xs-w-100 {
        width: 100% !important;
    }
    .xs-miw-100 {
        min-width: 100% !important;
    }
    .xs-maw-100 {
        max-width: 100% !important;
    }
    .xs-h-100 {
        height: 100% !important;
    }
    .xs-gap-0 {
        grid-gap: 0 !important;
    }
    .xs-gap-1 {
        grid-gap: 0.25rem !important;
    }
    .xs-gap-2 {
        grid-gap: 0.5rem !important;
    }
    .xs-gap-3 {
        grid-gap: 1rem !important;
    }
    .xs-gap-3 {
        grid-gap: 1.5rem !important;
    }
    .xs-gap-5 {
        grid-gap: 3rem !important;
    }
    .xs-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .xs-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .xs-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .well [class^="ww"] {
        width: 100%;
    }
}
