@charset "UTF-8";
/***
    The new CSS reset - version 1.8.2 (last updated 23.12.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
* {
  padding: 0;
  margin: 0;
  font-family: "Roboto", serif;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}
table th,
table td {
  text-align: left;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: #959ea3;
}
::placeholder {
  color: #959ea3;
}

/* remove default dot (•) sign */
::marker {
  content: "";
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  line-height: 22px;
}

::marker {
  content: none;
}

.sr-only {
  display: none;
}

.hidden-element {
  visibility: hidden;
}

img,
svg,
i,
span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* Prevent text selection */
  caret-color: transparent; /* Hide caret */
}

.footer {
  position: fixed;
  bottom: 32px;
  left: 32px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.user-profile-outer {
  position: relative;
}
.user-profile-outer .user-profile-info {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  right: 4px;
  top: 50px;
}

.badge {
  padding: 4px 8px 4px 8px;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid #c3bffb;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f3f3f3;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #2d24ab;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #f3f3f3;
}

/* Padding Top Bottom */
.pad-y-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pad-y-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.pad-y-8, .btn-secondary_small, .btn-primary_small {
  padding-top: 8px;
  padding-bottom: 8px;
}

.pad-y-12, .btn-secondary, .btn-primary {
  padding-top: 12px;
  padding-bottom: 12px;
}

.pad-y-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.pad-y-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pad-y-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.pad-y-28 {
  padding-top: 28px;
  padding-bottom: 28px;
}

.pad-y-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.pad-y-36 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.pad-y-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pad-y-44 {
  padding-top: 44px;
  padding-bottom: 44px;
}

.pad-y-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.pad-y-52 {
  padding-top: 52px;
  padding-bottom: 52px;
}

.pad-y-56 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.pad-y-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pad-y-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.pad-y-68 {
  padding-top: 68px;
  padding-bottom: 68px;
}

.pad-y-72 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.pad-y-76 {
  padding-top: 76px;
  padding-bottom: 76px;
}

.pad-y-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pad-y-84 {
  padding-top: 84px;
  padding-bottom: 84px;
}

.pad-y-88 {
  padding-top: 88px;
  padding-bottom: 88px;
}

.pad-y-92 {
  padding-top: 92px;
  padding-bottom: 92px;
}

.pad-y-96 {
  padding-top: 96px;
  padding-bottom: 96px;
}

.pad-y-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Padding Left Right */
.pad-x-0 {
  padding-left: 0;
  padding-right: 0;
}

.pad-x-4 {
  padding-left: 4px;
  padding-right: 4px;
}

.pad-x-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.pad-x-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.pad-x-16, .btn-secondary_small, .btn-secondary_medium, .btn-secondary, .btn-primary_small, .btn-primary_medium, .btn-primary {
  padding-left: 16px;
  padding-right: 16px;
}

.pad-x-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.pad-x-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.pad-x-28 {
  padding-left: 28px;
  padding-right: 28px;
}

.pad-x-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.pad-x-36 {
  padding-left: 36px;
  padding-right: 36px;
}

.pad-x-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.pad-x-42 {
  padding-left: 42px;
  padding-right: 42px;
}

.pad-x-44 {
  padding-left: 44px;
  padding-right: 44px;
}

.pad-x-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.pad-x-52 {
  padding-left: 52px;
  padding-right: 52px;
}

.pad-x-56 {
  padding-left: 56px;
  padding-right: 56px;
}

.pad-x-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.pad-x-64 {
  padding-left: 64px;
  padding-right: 64px;
}

.pad-x-68 {
  padding-left: 68px;
  padding-right: 68px;
}

.pad-x-72 {
  padding-left: 72px;
  padding-right: 72px;
}

.pad-x-76 {
  padding-left: 76px;
  padding-right: 76px;
}

.pad-x-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.pad-x-84 {
  padding-left: 84px;
  padding-right: 84px;
}

.pad-x-88 {
  padding-left: 88px;
  padding-right: 88px;
}

.pad-x-92 {
  padding-left: 92px;
  padding-right: 92px;
}

.pad-x-96 {
  padding-left: 96px;
  padding-right: 96px;
}

.pad-x-100 {
  padding-left: 100px;
  padding-right: 100px;
}

/* All Padding */
.pad-xy-0 {
  padding: 0;
}

.pad-xy-2 {
  padding: 2px;
}

.pad-xy-4 {
  padding: 4px;
}

.pad-xy-8 {
  padding: 8px;
}

.pad-xy-12 {
  padding: 12px;
}

.pad-xy-16 {
  padding: 16px;
}

.pad-xy-20 {
  padding: 20px;
}

.pad-xy-24 {
  padding: 24px;
}

.pad-xy-28 {
  padding: 28px;
}

.pad-xy-32 {
  padding: 32px;
}

.pad-xy-36 {
  padding: 36px;
}

.pad-xy-40 {
  padding: 40px;
}

.pad-xy-44 {
  padding: 44px;
}

.pad-xy-48 {
  padding: 48px;
}

.pad-xy-52 {
  padding: 52px;
}

.pad-xy-56 {
  padding: 56px;
}

.pad-xy-60 {
  padding: 60px;
}

.pad-xy-64 {
  padding: 64px;
}

.pad-xy-68 {
  padding: 68px;
}

.pad-xy-72 {
  padding: 72px;
}

.pad-xy-76 {
  padding: 76px;
}

.pad-xy-80 {
  padding: 80px;
}

.pad-xy-84 {
  padding: 84px;
}

.pad-xy-88 {
  padding: 88px;
}

.pad-xy-92 {
  padding: 92px;
}

.pad-xy-96 {
  padding: 96px;
}

.pad-xy-100 {
  padding: 100px;
}

/* Padding Top */
.pad-top-0 {
  padding-top: 0;
}

.pad-top-4 {
  padding-top: 4px;
}

.pad-top-8 {
  padding-top: 8px;
}

.pad-top-12 {
  padding-top: 12px;
}

.pad-top-16 {
  padding-top: 16px;
}

.pad-top-20 {
  padding-top: 20px;
}

.pad-top-24 {
  padding-top: 24px;
}

.pad-top-28 {
  padding-top: 28px;
}

.pad-top-32 {
  padding-top: 32px;
}

.pad-top-36 {
  padding-top: 36px;
}

.pad-top-40 {
  padding-top: 40px;
}

.pad-top-44 {
  padding-top: 44px;
}

.pad-top-48 {
  padding-top: 48px;
}

.pad-top-52 {
  padding-top: 52px;
}

.pad-top-56 {
  padding-top: 56px;
}

.pad-top-60 {
  padding-top: 60px;
}

.pad-top-64 {
  padding-top: 64px;
}

.pad-top-68 {
  padding-top: 68px;
}

.pad-top-72 {
  padding-top: 72px;
}

.pad-top-76 {
  padding-top: 76px;
}

.pad-top-80 {
  padding-top: 80px;
}

.pad-top-84 {
  padding-top: 84px;
}

.pad-top-88 {
  padding-top: 88px;
}

.pad-top-92 {
  padding-top: 92px;
}

.pad-top-96 {
  padding-top: 96px;
}

.pad-top-100 {
  padding-top: 100px;
}

/* Padding Bottom */
.pad-bottom-0 {
  padding-bottom: 0;
}

.pad-bottom-4 {
  padding-bottom: 4px;
}

.pad-bottom-8 {
  padding-bottom: 8px;
}

.pad-bottom-12 {
  padding-bottom: 12px;
}

.pad-bottom-16 {
  padding-bottom: 16px;
}

.pad-bottom-20 {
  padding-bottom: 20px;
}

.pad-bottom-24 {
  padding-bottom: 24px;
}

.pad-bottom-28 {
  padding-bottom: 28px;
}

.pad-bottom-32 {
  padding-bottom: 32px;
}

.pad-bottom-36 {
  padding-bottom: 36px;
}

.pad-bottom-40 {
  padding-bottom: 40px;
}

.pad-bottom-44 {
  padding-bottom: 44px;
}

.pad-bottom-48 {
  padding-bottom: 48px;
}

.pad-bottom-52 {
  padding-bottom: 52px;
}

.pad-bottom-56 {
  padding-bottom: 56px;
}

.pad-bottom-60 {
  padding-bottom: 60px;
}

.pad-bottom-64 {
  padding-bottom: 64px;
}

.pad-bottom-68 {
  padding-bottom: 68px;
}

.pad-bottom-72 {
  padding-bottom: 72px;
}

.pad-bottom-76 {
  padding-bottom: 76px;
}

.pad-bottom-80 {
  padding-bottom: 80px;
}

.pad-bottom-84 {
  padding-bottom: 84px;
}

.pad-bottom-88 {
  padding-bottom: 88px;
}

.pad-bottom-92 {
  padding-bottom: 92px;
}

.pad-bottom-96 {
  padding-bottom: 96px;
}

.pad-bottom-100 {
  padding-bottom: 100px;
}

/* Padding Left */
.pad-left-0 {
  padding-left: 0;
}

.pad-left-4 {
  padding-left: 4px;
}

.pad-left-8 {
  padding-left: 8px;
}

.pad-left-12 {
  padding-left: 12px;
}

.pad-left-16 {
  padding-left: 16px;
}

.pad-left-20 {
  padding-left: 20px;
}

.pad-left-24 {
  padding-left: 24px;
}

.pad-left-28 {
  padding-left: 28px;
}

.pad-left-32 {
  padding-left: 32px;
}

.pad-left-36 {
  padding-left: 36px;
}

.pad-left-40 {
  padding-left: 40px;
}

.pad-left-44 {
  padding-left: 44px;
}

.pad-left-48 {
  padding-left: 48px;
}

.pad-left-52 {
  padding-left: 52px;
}

.pad-left-56 {
  padding-left: 56px;
}

.pad-left-60 {
  padding-left: 60px;
}

.pad-left-64 {
  padding-left: 64px;
}

.pad-left-68 {
  padding-left: 68px;
}

.pad-left-72 {
  padding-left: 72px;
}

.pad-left-76 {
  padding-left: 76px;
}

.pad-left-80 {
  padding-left: 80px;
}

.pad-left-84 {
  padding-left: 84px;
}

.pad-left-88 {
  padding-left: 88px;
}

.pad-left-92 {
  padding-left: 92px;
}

.pad-left-96 {
  padding-left: 96px;
}

.pad-left-100 {
  padding-left: 100px;
}

/* Padding Right */
.pad-right-0 {
  padding-right: 0;
}

.pad-right-4 {
  padding-right: 4px;
}

.pad-right-8 {
  padding-right: 8px;
}

.pad-right-12 {
  padding-right: 12px;
}

.pad-right-16 {
  padding-right: 16px;
}

.pad-right-20 {
  padding-right: 20px;
}

.pad-right-24 {
  padding-right: 24px;
}

.pad-right-28 {
  padding-right: 28px;
}

.pad-right-32 {
  padding-right: 32px;
}

.pad-right-36 {
  padding-right: 36px;
}

.pad-right-40 {
  padding-right: 40px;
}

.pad-right-44 {
  padding-right: 44px;
}

.pad-right-48 {
  padding-right: 48px;
}

.pad-right-52 {
  padding-right: 52px;
}

.pad-right-56 {
  padding-right: 56px;
}

.pad-right-60 {
  padding-right: 60px;
}

.pad-right-64 {
  padding-right: 64px;
}

.pad-right-68 {
  padding-right: 68px;
}

.pad-right-72 {
  padding-right: 72px;
}

.pad-right-76 {
  padding-right: 76px;
}

.pad-right-80 {
  padding-right: 80px;
}

.pad-right-84 {
  padding-right: 84px;
}

.pad-right-88 {
  padding-right: 88px;
}

.pad-right-92 {
  padding-right: 92px;
}

.pad-right-96 {
  padding-right: 96px;
}

.pad-right-100 {
  padding-right: 100px;
}

/* Margin Top Bottom */
.mar-y-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mar-y-4 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.mar-y-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mar-y-12 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.mar-y-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.mar-y-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mar-y-24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.mar-y-28 {
  margin-top: 28px;
  margin-bottom: 28px;
}

.mar-y-32 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.mar-y-36 {
  margin-top: 36px;
  margin-bottom: 36px;
}

.mar-y-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mar-y-44 {
  margin-top: 44px;
  margin-bottom: 44px;
}

.mar-y-48 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.mar-y-52 {
  margin-top: 52px;
  margin-bottom: 52px;
}

.mar-y-56 {
  margin-top: 56px;
  margin-bottom: 56px;
}

.mar-y-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mar-y-64 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.mar-y-68 {
  margin-top: 68px;
  margin-bottom: 68px;
}

.mar-y-72 {
  margin-top: 72px;
  margin-bottom: 72px;
}

.mar-y-76 {
  margin-top: 76px;
  margin-bottom: 76px;
}

.mar-y-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mar-y-84 {
  margin-top: 84px;
  margin-bottom: 84px;
}

.mar-y-88 {
  margin-top: 88px;
  margin-bottom: 88px;
}

.mar-y-92 {
  margin-top: 92px;
  margin-bottom: 92px;
}

.mar-y-96 {
  margin-top: 96px;
  margin-bottom: 96px;
}

.mar-y-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

/* Margin Left Right */
.mar-x-0 {
  margin-left: 0;
  margin-right: 0;
}

.mar-x-4 {
  margin-left: 4px;
  margin-right: 4px;
}

.mar-x-8 {
  margin-left: 8px;
  margin-right: 8px;
}

.mar-x-12 {
  margin-left: 12px;
  margin-right: 12px;
}

.mar-x-16 {
  margin-left: 16px;
  margin-right: 16px;
}

.mar-x-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mar-x-24 {
  margin-left: 24px;
  margin-right: 24px;
}

.mar-x-28 {
  margin-left: 28px;
  margin-right: 28px;
}

.mar-x-32 {
  margin-left: 32px;
  margin-right: 32px;
}

.mar-x-36 {
  margin-left: 36px;
  margin-right: 36px;
}

.mar-x-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.mar-x-44 {
  margin-left: 44px;
  margin-right: 44px;
}

.mar-x-48 {
  margin-left: 48px;
  margin-right: 48px;
}

.mar-x-52 {
  margin-left: 52px;
  margin-right: 52px;
}

.mar-x-56 {
  margin-left: 56px;
  margin-right: 56px;
}

.mar-x-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.mar-x-64 {
  margin-left: 64px;
  margin-right: 64px;
}

.mar-x-68 {
  margin-left: 68px;
  margin-right: 68px;
}

.mar-x-72 {
  margin-left: 72px;
  margin-right: 72px;
}

.mar-x-76 {
  margin-left: 76px;
  margin-right: 76px;
}

.mar-x-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.mar-x-84 {
  margin-left: 84px;
  margin-right: 84px;
}

.mar-x-88 {
  margin-left: 88px;
  margin-right: 88px;
}

.mar-x-92 {
  margin-left: 92px;
  margin-right: 92px;
}

.mar-x-96 {
  margin-left: 96px;
  margin-right: 96px;
}

.mar-x-100 {
  margin-left: 100px;
  margin-right: 100px;
}

/* All Margin */
.mar-xy-0 {
  margin: 0;
}

.mar-xy-4 {
  margin: 4px;
}

.mar-xy-8 {
  margin: 8px;
}

.mar-xy-12 {
  margin-left: 12px;
}

.mar-xy-16 {
  margin: 16px;
}

.mar-xy-20 {
  margin: 20px;
}

.mar-xy-24 {
  margin: 24px;
}

.mar-xy-28 {
  margin: 28px;
}

.mar-xy-32 {
  margin: 32px;
}

.mar-xy-36 {
  margin: 36px;
}

.mar-xy-40 {
  margin: 40px;
}

.mar-xy-44 {
  margin: 44px;
}

.mar-xy-48 {
  margin: 48px;
}

.mar-xy-52 {
  margin: 52px;
}

.mar-xy-56 {
  margin: 56px;
}

.mar-xy-60 {
  margin: 60px;
}

.mar-xy-64 {
  margin: 64px;
}

.mar-xy-68 {
  margin: 68px;
}

.mar-xy-72 {
  margin: 72px;
}

.mar-xy-76 {
  margin: 76px;
}

.mar-xy-80 {
  margin: 80px;
}

.mar-xy-84 {
  margin: 84px;
}

.mar-xy-88 {
  margin: 88px;
}

.mar-xy-92 {
  margin: 92px;
}

.mar-xy-96 {
  margin: 96px;
}

.mar-xy-100 {
  margin: 100px;
}

/* Margin Top */
.mar-top-0 {
  margin-top: 0;
}

.mar-top-4 {
  margin-top: 4px;
}

.mar-top-8 {
  margin-top: 8px;
}

.mar-top-12 {
  margin-top: 12px;
}

.mar-top-16 {
  margin-top: 16px;
}

.mar-top-20 {
  margin-top: 20px;
}

.mar-top-24 {
  margin-top: 24px;
}

.mar-top-28 {
  margin-top: 28px;
}

.mar-top-32 {
  margin-top: 32px;
}

.mar-top-36 {
  margin-top: 36px;
}

.mar-top-40 {
  margin-top: 40px;
}

.mar-top-44 {
  margin-top: 44px;
}

.mar-top-48 {
  margin-top: 48px;
}

.mar-top-52 {
  margin-top: 52px;
}

.mar-top-56 {
  margin-top: 56px;
}

.mar-top-60 {
  margin-top: 60px;
}

.mar-top-64 {
  margin-top: 64px;
}

.mar-top-68 {
  margin-top: 68px;
}

.mar-top-72 {
  margin-top: 72px;
}

.mar-top-76 {
  margin-top: 76px;
}

.mar-top-80 {
  margin-top: 80px;
}

.mar-top-84 {
  margin-top: 84px;
}

.mar-top-88 {
  margin-top: 88px;
}

.mar-top-92 {
  margin-top: 92px;
}

.mar-top-96 {
  margin-top: 96px;
}

.mar-top-100 {
  margin-top: 100px;
}

/* Margin Bottom */
.mar-bottom-0 {
  margin-bottom: 0;
}

.mar-bottom-4 {
  margin-bottom: 4px;
}

.mar-bottom-8 {
  margin-bottom: 8px;
}

.mar-bottom-12 {
  margin-bottom: 12px;
}

.mar-bottom-16 {
  margin-bottom: 16px;
}

.mar-bottom-20 {
  margin-bottom: 20px;
}

.mar-bottom-24 {
  margin-bottom: 24px;
}

.mar-bottom-28 {
  margin-bottom: 28px;
}

.mar-bottom-32 {
  margin-bottom: 32px;
}

.mar-bottom-36 {
  margin-bottom: 36px;
}

.mar-bottom-40 {
  margin-bottom: 40px;
}

.mar-bottom-44 {
  margin-bottom: 44px;
}

.mar-bottom-48 {
  margin-bottom: 48px;
}

.mar-bottom-52 {
  margin-bottom: 52px;
}

.mar-bottom-56 {
  margin-bottom: 56px;
}

.mar-bottom-60 {
  margin-bottom: 60px;
}

.mar-bottom-64 {
  margin-bottom: 64px;
}

.mar-bottom-68 {
  margin-bottom: 68px;
}

.mar-bottom-72 {
  margin-bottom: 72px;
}

.mar-bottom-76 {
  margin-bottom: 76px;
}

.mar-bottom-80 {
  margin-bottom: 80px;
}

.mar-bottom-84 {
  margin-bottom: 84px;
}

.mar-bottom-88 {
  margin-bottom: 88px;
}

.mar-bottom-92 {
  margin-bottom: 92px;
}

.mar-bottom-96 {
  margin-bottom: 96px;
}

.mar-bottom-100 {
  margin-bottom: 100px;
}

/* Margin Left */
.mar-left-auto {
  margin-left: auto;
}

.mar-left-0 {
  margin-left: 0;
}

.mar-left-4 {
  margin-left: 4px;
}

.mar-left-8 {
  margin-left: 8px;
}

.mar-left-12 {
  margin-left: 12px;
}

.mar-left-16 {
  margin-left: 16px;
}

.mar-left-20 {
  margin-left: 20px;
}

.mar-left-24 {
  margin-left: 24px;
}

.mar-left-28 {
  margin-left: 28px;
}

.mar-left-32 {
  margin-left: 32px;
}

.mar-left-36 {
  margin-left: 36px;
}

.mar-left-40 {
  margin-left: 40px;
}

.mar-left-44 {
  margin-left: 44px;
}

.mar-left-48 {
  margin-left: 48px;
}

.mar-left-52 {
  margin-left: 52px;
}

.mar-left-56 {
  margin-left: 56px;
}

.mar-left-60 {
  margin-left: 60px;
}

.mar-left-64 {
  margin-left: 64px;
}

.mar-left-68 {
  margin-left: 68px;
}

.mar-left-72 {
  margin-left: 72px;
}

.mar-left-76 {
  margin-left: 76px;
}

.mar-left-80 {
  margin-left: 80px;
}

.mar-left-84 {
  margin-left: 84px;
}

.mar-left-88 {
  margin-left: 88px;
}

.mar-left-92 {
  margin-left: 92px;
}

.mar-left-96 {
  margin-left: 96px;
}

.mar-left-100 {
  margin-left: 100px;
}

/* Margin Right */
.mar-right-auto {
  margin-right: auto;
}

.mar-right-0 {
  margin-right: 0;
}

.mar-right-4 {
  margin-right: 4px;
}

.mar-right-8 {
  margin-right: 8px;
}

.mar-right-12 {
  margin-right: 12px;
}

.mar-right-16 {
  margin-right: 16px;
}

.mar-right-20 {
  margin-right: 20px;
}

.mar-right-24 {
  margin-right: 24px;
}

.mar-right-28 {
  margin-right: 28px;
}

.mar-right-32 {
  margin-right: 32px;
}

.mar-right-36 {
  margin-right: 36px;
}

.mar-right-40 {
  margin-right: 40px;
}

.mar-right-44 {
  margin-right: 44px;
}

.mar-right-48 {
  margin-right: 48px;
}

.mar-right-52 {
  margin-right: 52px;
}

.mar-right-56 {
  margin-right: 56px;
}

.mar-right-60 {
  margin-right: 60px;
}

.mar-right-64 {
  margin-right: 64px;
}

.mar-right-68 {
  margin-right: 68px;
}

.mar-right-72 {
  margin-right: 72px;
}

.mar-right-76 {
  margin-right: 76px;
}

.mar-right-80 {
  margin-right: 80px;
}

.mar-right-84 {
  margin-right: 84px;
}

.mar-right-88 {
  margin-right: 88px;
}

.mar-right-92 {
  margin-right: 92px;
}

.mar-right-96 {
  margin-right: 96px;
}

.mar-right-100 {
  margin-right: 100px;
}

/* Add more classes following the pattern up to desired size */
.fl {
  float: left;
}

.fr {
  float: right;
}

/* Width */
.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.w6 {
  max-width: 6%;
  width: 100%;
}

.w10 {
  max-width: 10%;
  width: 100%;
}

.w20 {
  max-width: 20%;
  width: 100%;
}

.w30 {
  max-width: 30%;
  width: 100%;
}

.w40 {
  max-width: 40%;
  width: 100%;
}

.w50 {
  max-width: 50%;
  width: 100%;
}

.w60 {
  max-width: 60%;
  width: 100%;
}

.w70 {
  max-width: 70%;
  width: 100%;
}

.w80 {
  max-width: 80%;
  width: 100%;
}

/* Text Alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Display */
.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-center, .btn-outline_small, .btn-outline_medium, .btn-outline, .btn-transparent_small, .btn-transparent_medium, .btn-transparent, .btn-tertiary_small, .btn-tertiary_medium, .btn-tertiary, .btn-secondary_small, .btn-secondary_medium, .btn-secondary, .btn-primary_small, .btn-primary_medium, .btn-primary {
  align-items: center;
}

.align-top {
  align-items: start;
}

.align-end {
  align-items: end;
}

.align-self-center {
  align-self: center;
}

.justify-center, .btn-outline_small, .btn-outline_medium, .btn-outline, .btn-transparent_small, .btn-transparent_medium, .btn-transparent, .btn-tertiary_small, .btn-tertiary_medium, .btn-tertiary, .btn-secondary_small, .btn-secondary_medium, .btn-secondary, .btn-primary_small, .btn-primary_medium, .btn-primary {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.justify-start {
  justify-content: start;
}

.justify-between {
  justify-content: space-between !important;
}

/* Display Grid */
.d-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.d-grid-100 {
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}
.d-grid-50 {
  grid-template-columns: repeat(auto-fill, minmax(49%, 1fr));
}
.d-grid-25 {
  grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
}
.d-grid-20 {
  grid-template-columns: repeat(auto-fill, minmax(19%, 1fr));
}

.d-grid-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
}

.g-col-1-3 {
  grid-column: 1/3;
}

/* Gap */
.gap-0 {
  gap: 0px;
}

.gap-1 {
  gap: 1px;
}

.gap-2 {
  gap: 2px;
}

.gap-3 {
  gap: 3px;
}

.gap-4 {
  gap: 4px;
}

.gap-5 {
  gap: 5px;
}

.gap-8 {
  gap: 8.5px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-28 {
  gap: 28px;
}

.gap-32 {
  gap: 32px;
}

.gap-36 {
  gap: 36px;
}

.gap-40 {
  gap: 40px;
}

.gap-40 {
  gap: 40px;
}

.gap-44 {
  gap: 44px;
}

.gap-60 {
  gap: 60px;
}

/* Radius */
.radius-0 {
  border-radius: 0px;
}

.radius-4 {
  border-radius: 4px;
}

.radius-8 {
  border-radius: 8px;
}

.radius-16 {
  border-radius: 16px;
}

.radius-20 {
  border-radius: 20px;
}

.radius-24 {
  border-radius: 24px;
}

.radius-28 {
  border-radius: 28px;
}

.radius-36 {
  border-radius: 36px;
}

.radius-44 {
  border-radius: 44px;
}

.radius-60 {
  border-radius: 60px;
}

/* Border */
.border {
  border: 1px solid #655bf4;
}
.border-top {
  border-top: 1px solid #655bf4;
}
.border-bottom {
  border-bottom: 1px solid #655bf4;
}
.border-left {
  border-left: 1px solid #655bf4;
}
.border-right {
  border-right: 1px solid #655bf4;
}
.border-transparent {
  border-color: transparent;
}
.border-dark {
  border: 1px solid #172933;
}
.border-dark-top {
  border-top: 1px solid #172933;
}
.border-dark-bottom {
  border-bottom: 1px solid #172933;
}
.border-dark-left {
  border-left: 1px solid #172933;
}
.border-dark-right {
  border-right: 1px solid #172933;
}
.border-dark-transparent {
  border-color: transparent;
}

/* Box Shadow */
.shadow-min {
  box-shadow: 0px 0px 1px 1px rgba(0, 90, 132, 0.05) inset, 0px 0px 22px 0px rgba(0, 90, 132, 0.1), 0px 15px 25px 0px rgba(0, 90, 132, 0.11);
}

.shadow-med {
  box-shadow: 0px 0px 12px 0px rgba(92, 0, 120, 0.12);
}

.shadow-max {
  box-shadow: 0px 0px 35px 0px rgba(45, 36, 171, 0.3176470588);
}

/* Fonts */
p {
  line-height: 22px;
}

.text-h1-reg {
  font-size: 64px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
}

.text-h1-medium {
  font-size: 64px;
  font-weight: 600;
  font-family: "Roboto-SemiBold";
}

.text-h2-reg {
  font-size: 48px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
}

.text-h2-medium {
  font-size: 48px;
  font-weight: 600;
  font-family: "Roboto-SemiBold";
  line-height: 48px;
}

.text-h3-reg {
  font-size: 40px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
}

.text-h3-medium {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  font-family: "Roboto-SemiBold";
}

.text-h4-reg {
  font-size: 32px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
}

.text-h4-medium {
  font-size: 32px;
  font-weight: 600;
  font-family: "Roboto-SemiBold";
}

.text-h5-reg {
  font-size: 24px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
}

.text-h5-medium {
  font-size: 24px;
  font-weight: 600;
  font-family: "Roboto-SemiBold";
}

.text-h6-reg {
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
}

.text-h6-medium {
  font-size: 20px;
  font-weight: 600;
  font-family: "Roboto-SemiBold";
}

.text-para1-reg {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
}

.text-para1-medium {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Medium";
}

.text-para2-reg {
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
}

.text-para2-medium {
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto-Medium";
}

.text-para3-reg {
  font-size: 12px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
}

.text-para3-medium {
  font-size: 12px;
  font-weight: 400;
  font-family: "Roboto-Medium";
}

.bold-6 {
  font-weight: 600;
}

.cursor-pointer {
  cursor: pointer;
}

.text-primary-10 {
  color: #655bf4;
}

.text-primary-17 {
  color: #3f32f1;
}

select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bedae5;
  opacity: 0px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
}
select::before {
  position: absolute;
  top: 50%;
  right: 20px;
  content: " ";
  width: 0;
  height: 0;
  margin-top: -5px;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: rgba(0, 0, 0, 0.25) transparent transparent transparent;
  pointer-events: none;
}

input,
.select-outer,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bedae5;
  opacity: 0px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
input:focus-visible,
.select-outer:focus-visible,
textarea:focus-visible {
  outline: none;
}
input::-moz-placeholder, .select-outer::-moz-placeholder, textarea::-moz-placeholder {
  color: #959ea3;
  font-style: italic;
  line-height: 1.5;
}
input::placeholder,
.select-outer::placeholder,
textarea::placeholder {
  color: #959ea3;
  font-style: italic;
  line-height: 1.5;
}
input p,
.select-outer p,
textarea p {
  color: #3f32f1;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
}
input.dropdown-outer .dropdown-content,
.select-outer.dropdown-outer .dropdown-content,
textarea.dropdown-outer .dropdown-content {
  top: 48px;
  width: 100%;
  left: 0;
  padding: 0;
  max-height: calc(100vh - 660px);
  overflow: auto;
  min-height: 42px;
  z-index: 1;
}
input.dropdown-outer .dropdown-content li,
.select-outer.dropdown-outer .dropdown-content li,
textarea.dropdown-outer .dropdown-content li {
  padding: 6px 16px;
}
input.dropdown-outer .dropdown-content li:hover,
.select-outer.dropdown-outer .dropdown-content li:hover,
textarea.dropdown-outer .dropdown-content li:hover {
  background: #655bf4;
}

.search {
  border-radius: 12px;
  border: 1px solid #e9ffb0;
  background: #fff;
  padding: 12px 16px;
}
.search input {
  padding: 0;
  background-color: transparent;
  border: 0 !important;
  height: unset;
}
.search i {
  color: #3f32f1;
}
.search i:hover {
  opacity: 0.7;
}

/* Checkbox */
.checkbox-outer input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox-outer input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-outer input:checked + label::before {
  background-color: #3f32f1;
  border: 1px solid #3f32f1;
}
.checkbox-outer input:disabled + label {
  opacity: 0.5;
}
.checkbox-outer label {
  position: relative;
  cursor: pointer;
}
.checkbox-outer label:before {
  content: "";
  background-color: transparent;
  border: 1px solid #3f32f1;
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}

/* Modal */
.modal {
  background: rgba(0, 0, 0, 0.4392156863);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.modal.delect-modal .modal-content {
  max-width: 560px;
}
.modal .modal-content {
  float: right;
  max-width: 840px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1px 1px rgba(0, 90, 132, 0.05) inset, 0px 0px 22px 0px rgba(0, 90, 132, 0.1), 0px 15px 25px 0px rgba(0, 90, 132, 0.11);
}
.modal .modal-content .modal-header {
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal .modal-content .modal-header .modal-title {
  color: #172933;
  line-height: 32px;
}
.modal .modal-content .modal-header .btn-transparent {
  padding: 0 !important;
}
.modal .modal-content .modal-body {
  padding: 0 40px 24px 40px;
  max-height: calc(100vh - 290px);
  overflow: auto;
  height: 100%;
}
.modal .modal-content .modal-body p {
  color: #3f32f1;
  line-height: 20px;
}
.modal .modal-content .modal-body .text-para1-medium {
  font-family: "Roboto-Medium";
  font-size: 16px;
}
.modal .modal-content .modal-body .heading-outer .text-para2-reg {
  font-size: 12px;
}
.modal .modal-content .modal-body h2 {
  color: #3f32f1;
}
.modal .modal-content .modal-body .table-list-outer .table-list-body {
  max-height: unset;
}
.modal .modal-content .modal-body .table-list-outer .table-list-body .table-list {
  background: #be02f8;
  border: 0;
}
.modal .modal-content .modal-footer {
  padding: 16px 40px;
  border-top: 1px solid #bedae5;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
}
.modal .modal-content .modal-footer .button {
  max-width: 120px;
  width: 100%;
}
.modal.inactive {
  display: none;
}
.modal.active {
  display: flex;
}

/* Other Common CSS */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.badge {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
.badge.badge-success {
  background: #be02f8;
  color: #3f32f1;
  line-height: 24px;
}
.badge.badge-secondary {
  border: 1px solid #655bf4;
  color: #655bf4;
  line-height: 20px;
}
.badge.badge-create {
  border-radius: 4px;
  background: #3f32f1;
  color: #655bf4;
  color: #fff;
  line-height: 24px;
}
.badge.badge-read {
  border-radius: 4px;
  background: #cb35f9;
  color: #655bf4;
  line-height: 24px;
}
.badge.badge-update {
  border-radius: 4px;
  background: #e9ffb0;
  color: #655bf4;
  line-height: 24px;
}
.badge.badge-delete {
  border-radius: 4px;
  background: #655bf4;
  color: #655bf4;
  line-height: 24px;
}

.pill {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  color: #fff;
  line-height: 16px;
  font-size: 12px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
}
.pill i {
  font-size: 10px;
}
.pill.pill-primary {
  background: #3f32f1;
}

/* Toggle */
.switch-outer .switch {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 16px;
}
.switch-outer .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-outer .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 16px;
}
.switch-outer .switch .slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background-color: #3f32f1;
}
.switch input:checked + .slider::before {
  left: 2px;
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #3f32f1;
}

.switch input:checked + .slider:before {
  transform: translateX(8px);
}

a {
  color: #3f32f1;
}

.text-danger span {
  font-size: 12px;
  color: #df1f29;
}

.btn-primary {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  background: #3f32f1;
  color: #fff;
  border-color: #3f32f1;
}
.btn-primary:hover {
  background: #655bf4;
  border-color: #655bf4;
}
.btn-primary:disabled {
  background: #cb35f9;
  border-color: #cb35f9;
  cursor: not-allowed;
}

.btn-primary_medium {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  background: #3f32f1;
  color: #fff;
  border-color: #3f32f1;
  padding-top: 7px;
  padding-bottom: 7px;
}
.btn-primary_medium:hover {
  background: #655bf4;
  border-color: #655bf4;
}
.btn-primary_medium:disabled {
  background: #cb35f9;
  border-color: #cb35f9;
  cursor: not-allowed;
}

.btn-primary_small {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  background: #3f32f1;
  color: #fff;
  border-color: #3f32f1;
}
.btn-primary_small:hover {
  background: #655bf4;
  border-color: #655bf4;
}
.btn-primary_small:disabled {
  background: #cb35f9;
  border-color: #cb35f9;
  cursor: not-allowed;
}

.btn-secondary {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  border-color: #3f32f1;
  color: #3f32f1;
  background: #be02f8;
}
.btn-secondary:hover {
  background: #e9ffb0;
}
.btn-secondary:disabled {
  border-color: #cb35f9;
  color: #cb35f9;
  background: #cb35f9;
  cursor: not-allowed;
}

.btn-secondary_medium {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  border-color: #3f32f1;
  color: #3f32f1;
  background: #be02f8;
  padding-top: 7px;
  padding-bottom: 7px;
}
.btn-secondary_medium:hover {
  background: #e9ffb0;
}
.btn-secondary_medium:disabled {
  border-color: #cb35f9;
  color: #cb35f9;
  background: #cb35f9;
  cursor: not-allowed;
}

.btn-secondary_small {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  border-color: #3f32f1;
  color: #3f32f1;
  background: #be02f8;
}
.btn-secondary_small:hover {
  background: #e9ffb0;
}
.btn-secondary_small:disabled {
  border-color: #cb35f9;
  color: #cb35f9;
  background: #cb35f9;
  cursor: not-allowed;
}

.btn-tertiary {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  background-color: transparent;
  color: #3f32f1;
  border-color: transparent;
}

.btn-tertiary_medium {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  background-color: transparent;
  color: #3f32f1;
  border-color: transparent;
}

.btn-tertiary_small {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  background-color: transparent;
  color: #3f32f1;
  border-color: transparent;
}

.btn-transparent {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  background-color: transparent;
  color: #3f32f1;
  border-color: transparent;
  padding: 12px;
}
.btn-transparent:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-transparent:hover {
  text-decoration: underline;
}

.btn-transparent_medium {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  background-color: transparent;
  color: #3f32f1;
  border-color: transparent;
  padding: 12px;
}
.btn-transparent_medium:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-transparent_medium:hover {
  text-decoration: underline;
}

.btn-transparent_small {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  background-color: transparent;
  color: #3f32f1;
  border-color: transparent;
  padding: 12px;
}
.btn-transparent_small:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-transparent_small:hover {
  text-decoration: underline;
}

.btn-outline {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  border-radius: 8px;
  border: 1px solid #655bf4;
  background: #fff;
  color: #3f32f1;
  padding: 12px;
}
.btn-outline:hover {
  background: #3f32f1;
  border-color: #3f32f1;
  color: #fff;
}
.btn-outline:disabled {
  background: #c4d4c5;
  border-color: #c4d4c5;
  cursor: not-allowed;
}

.btn-outline_medium {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  border-radius: 8px;
  border: 1px solid #655bf4;
  background: #fff;
  color: #3f32f1;
  padding: 12px;
}
.btn-outline_medium:hover {
  background: #3f32f1;
  border-color: #3f32f1;
  color: #fff;
}
.btn-outline_medium:disabled {
  background: #c4d4c5;
  border-color: #c4d4c5;
  cursor: not-allowed;
}

.btn-outline_small {
  display: flex;
  padding: 12px 24px;
  gap: 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto-Regular";
  descent-override: 0%;
  border: 2px solid;
  font-family: "Roboto", serif;
  border-radius: 8px;
  border: 1px solid #655bf4;
  background: #fff;
  color: #3f32f1;
  padding: 12px;
}
.btn-outline_small:hover {
  background: #3f32f1;
  border-color: #3f32f1;
  color: #fff;
}
.btn-outline_small:disabled {
  background: #c4d4c5;
  border-color: #c4d4c5;
  cursor: not-allowed;
}

.icon-btn {
  padding: 8px;
  border-radius: 8px;
}
.icon-btn i::before {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
}
.icon-btn i.artwork_Icon::before {
  background: url("../Images/Artwork.svg");
}
.icon-btn:hover {
  opacity: 1;
  background: #c6ecca;
}
.icon-btn:focus, .icon-btn:active {
  background: #476b4a;
}
.icon-btn:focus .artwork_Icon::before, .icon-btn:active .artwork_Icon::before {
  background: url("../Images/ArtworkW.svg");
}

.back-btn {
  padding: 0;
  border-radius: 40px;
  border: 2px solid #3f32f1;
  background: #be02f8;
}
.back-btn i::before {
  content: "";
  background: url("../Images/Back.svg") center center no-repeat;
  width: 40px;
  height: 40px;
  display: block;
  transform: rotate(180deg);
}
.back-btn:hover {
  background: #e9ffb0;
}
.back-btn:active, .back-btn:focus {
  background: #cb35f9;
}
.back-btn:active i::before, .back-btn:focus i::before {
  background: url("../Images/BackW.svg") center center no-repeat;
}

.map-expand-btn {
  width: 16px;
  height: 48px;
  background: #be02f8;
  position: absolute;
  max-width: 50px;
  top: 50%;
  left: -7px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid #3f32f1;
  cursor: ew-resize;
}
.map-expand-btn .dot {
  height: 6px;
  width: 6px;
  background: #cb35f9;
  border-radius: 50%;
}
.map-expand-btn:hover {
  background: #655bf4;
}
.map-expand-btn:active, .map-expand-btn:focus {
  background: #3f32f1;
}
.map-expand-btn:active .dot, .map-expand-btn:focus .dot {
  background: #fff;
}

@font-face {
  font-family: "Roboto-Regular";
  font-display: block;
  src: local("Roboto"), url("../fonts/Roboto-Regular.ttf") format("truetype");
  descent-override: 0%;
}
@font-face {
  font-family: "Roboto-Thin";
  font-display: block;
  src: local("Roboto"), url("../fonts/Roboto-Thin.ttf") format("truetype");
  descent-override: 0%;
}
@font-face {
  font-family: "Roboto-Medium";
  font-display: block;
  src: local("Roboto"), url("../fonts/Roboto-Medium.ttf") format("truetype");
  descent-override: 0%;
}
@font-face {
  font-family: "Roboto-SemiBold";
  font-display: block;
  src: local("Roboto"), url("../fonts/Roboto-SemiBold.ttf") format("truetype");
  descent-override: 0%;
}
@font-face {
  font-family: "Roboto-Bold";
  font-display: block;
  src: local("Roboto"), url("../fonts/Roboto-Bold.ttf") format("truetype");
  descent-override: 0%;
}
@font-face {
  font-family: "Roboto-ExtraBold";
  font-display: block;
  src: local("Roboto"), url("../fonts/Roboto-ExtraBold.ttf") format("truetype");
  descent-override: 0%;
}
@font-face {
  font-family: "icomoon";
  src: url("./icon-fonts/icomoon.eot");
  src: url("./icon-fonts/icomoon.eot") format("embedded-opentype"), url("./icon-fonts/icomoon.ttf") format("truetype"), url("./icon-fonts/icomoon.woff") format("woff"), url("./icon-fonts/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon-accessibility {
  background-position: 0 0;
  width: 32px;
  height: 32px;
}

[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.icon-xs {
  font-size: 12px;
}

.icon-sm {
  font-size: 14px;
}

.icon-md {
  font-size: 16px;
}

.icon-lg {
  font-size: 12px;
}

.icon-download-04:before {
  content: "\e900";
}

.icon-align-bottom:before {
  content: "\e901";
}

.icon-align-vertical-center:before {
  content: "\e902";
}

.icon-align-horizontal:before {
  content: "\e903";
}

.icon-align-left-01:before {
  content: "\e904";
}

.icon-align-left-02:before {
  content: "\e905";
}

.icon-align-right-01:before {
  content: "\e906";
}

.icon-align-right-02:before {
  content: "\e907";
}

.icon-align-top-arrow-01:before {
  content: "\e908";
}

.icon-align-top-01:before {
  content: "\e909";
}

.icon-Icon-Stroke-10:before {
  content: "\e90a";
}

.icon-align-vertical-center-02:before {
  content: "\e90b";
}

.icon-columns-01:before {
  content: "\e90c";
}

.icon-columns-02:before {
  content: "\e90d";
}

.icon-columns-03:before {
  content: "\e90e";
}

.icon-distribute-spacing-horizontal:before {
  content: "\e90f";
}

.icon-distribute-spacing-vertical:before {
  content: "\e910";
}

.icon-divider:before {
  content: "\e911";
}

.icon-flex-align-bottom:before {
  content: "\e912";
}

.icon-flex-align-left:before {
  content: "\e913";
}

.icon-Icon-Stroke-20:before {
  content: "\e914";
}

.icon-flex-align-right:before {
  content: "\e915";
}

.icon-grid-01:before {
  content: "\e916";
}

.icon-grid-02:before {
  content: "\e917";
}

.icon-Icon-Stroke-24:before {
  content: "\e918";
}

.icon-grid-dots-blank:before {
  content: "\e919";
}

.icon-grid-dots-bottom:before {
  content: "\e91a";
}

.icon-grid-dots-horizontal-center:before {
  content: "\e91b";
}

.icon-grid-dots-left:before {
  content: "\e91c";
}

.icon-grid-dots-outer:before {
  content: "\e91d";
}

.icon-grid-dots-right:before {
  content: "\e91e";
}

.icon-grid-dots-top:before {
  content: "\e91f";
}

.icon-grid-dots-vertical-center:before {
  content: "\e920";
}

.icon-intersect-circle:before {
  content: "\e921";
}

.icon-intersect-square:before {
  content: "\e922";
}

.icon-layer-single:before {
  content: "\e923";
}

.icon-layers-three-01:before {
  content: "\e924";
}

.icon-layers-three-02:before {
  content: "\e925";
}

.icon-layers-two-01:before {
  content: "\e926";
}

.icon-layers-two-02:before {
  content: "\e927";
}

.icon-layout-alt-01:before {
  content: "\e928";
}

.icon-layout-alt-02:before {
  content: "\e929";
}

.icon-layout-alt-03:before {
  content: "\e92a";
}

.icon-layout-alt-04:before {
  content: "\e92b";
}

.icon-layout-bottom:before {
  content: "\e92c";
}

.icon-layout-grid-01:before {
  content: "\e92d";
}

.icon-layout-grid-02:before {
  content: "\e92e";
}

.icon-layout-left:before {
  content: "\e92f";
}

.icon-layout-right:before {
  content: "\e930";
}

.icon-layout-top:before {
  content: "\e931";
}

.icon-list:before {
  content: "\e932";
}

.icon-maximize-01:before {
  content: "\e933";
}

.icon-maximize-02:before {
  content: "\e934";
}

.icon-minimize-01:before {
  content: "\e935";
}

.icon-minimize-02:before {
  content: "\e936";
}

.icon-rows-01:before {
  content: "\e937";
}

.icon-rows-02:before {
  content: "\e938";
}

.icon-rows-03:before {
  content: "\e939";
}

.icon-spacing-height-01:before {
  content: "\e93a";
}

.icon-spacing-height-02:before {
  content: "\e93b";
}

.icon-spacing-width-01:before {
  content: "\e93c";
}

.icon-spacing-width-02:before {
  content: "\e93d";
}

.icon-table:before {
  content: "\e93e";
}

.icon-Icon-Stroke-63:before {
  content: "\e93f";
}

.icon-bar-chart-02:before {
  content: "\e940";
}

.icon-bar-chart-03:before {
  content: "\e941";
}

.icon-bar-chart-04:before {
  content: "\e942";
}

.icon-bar-chart-05:before {
  content: "\e943";
}

.icon-bar-chart-06:before {
  content: "\e944";
}

.icon-bar-chart-07:before {
  content: "\e945";
}

.icon-bar-chart-08:before {
  content: "\e946";
}

.icon-bar-chart-09:before {
  content: "\e947";
}

.icon-bar-chart-10:before {
  content: "\e948";
}

.icon-bar-chart-11:before {
  content: "\e949";
}

.icon-bar-chart-12:before {
  content: "\e94a";
}

.icon-bar-chart-circle-01:before {
  content: "\e94b";
}

.icon-bar-chart-circle-02:before {
  content: "\e94c";
}

.icon-bar-chart-circle-03:before {
  content: "\e94d";
}

.icon-bar-chart-square-01:before {
  content: "\e94e";
}

.icon-bar-chart-square-02:before {
  content: "\e94f";
}

.icon-bar-chart-square-03:before {
  content: "\e950";
}

.icon-bar-chart-square-down:before {
  content: "\e951";
}

.icon-bar-chart-square-minus:before {
  content: "\e952";
}

.icon-bar-chart-square-plus:before {
  content: "\e953";
}

.icon-bar-chart-square-up:before {
  content: "\e954";
}

.icon-bar-line-chart:before {
  content: "\e955";
}

.icon-chart-breakout-circle:before {
  content: "\e956";
}

.icon-chart-breakout-square:before {
  content: "\e957";
}

.icon-horizontal-bar-chart-01:before {
  content: "\e958";
}

.icon-Icon-Stroke-89:before {
  content: "\e959";
}

.icon-horizontal-bar-chart-02:before {
  content: "\e95a";
}

.icon-line-chart-down-01:before {
  content: "\e95b";
}

.icon-line-chart-down-02:before {
  content: "\e95c";
}

.icon-line-chart-down-03:before {
  content: "\e95d";
}

.icon-line-chart-down-04:before {
  content: "\e95e";
}

.icon-line-chartdown-05:before {
  content: "\e95f";
}

.icon-line-chartup-01:before {
  content: "\e960";
}

.icon-line-chartup-02:before {
  content: "\e961";
}

.icon-Icon-Stroke-98:before {
  content: "\e962";
}

.icon-line-chart-down-05:before {
  content: "\e963";
}

.icon-line-chartup-05:before {
  content: "\e964";
}

.icon-pie-chart-01:before {
  content: "\e965";
}

.icon-pie-chart-02:before {
  content: "\e966";
}

.icon-pie-chart-03:before {
  content: "\e967";
}

.icon-pie-chart-04:before {
  content: "\e968";
}

.icon-presentation-chart-01:before {
  content: "\e969";
}

.icon-presentation-chart-02:before {
  content: "\e96a";
}

.icon-presentation-chart-03:before {
  content: "\e96b";
}

.icon-trend-down-01:before {
  content: "\e96c";
}

.icon-trend-down-02:before {
  content: "\e96d";
}

.icon-trend-up-01:before {
  content: "\e96e";
}

.icon-trend-up-02:before {
  content: "\e96f";
}

.icon-face-id:before {
  content: "\e970";
}

.icon-face-id-square:before {
  content: "\e971";
}

.icon-file-lock-01:before {
  content: "\e972";
}

.icon-file-lock-02:before {
  content: "\e973";
}

.icon-file-lock-03:before {
  content: "\e974";
}

.icon-file-shield-01:before {
  content: "\e975";
}

.icon-file-shield-02:before {
  content: "\e976";
}

.icon-file-shield-03:before {
  content: "\e977";
}

.icon-fingerprint-01:before {
  content: "\e978";
}

.icon-fingerprint-02:before {
  content: "\e979";
}

.icon-Icon-Stroke-122:before {
  content: "\e97a";
}

.icon-fingerprint-04:before {
  content: "\e982";
}

.icon-folder-shield:before {
  content: "\e983";
}

.icon-key-01:before {
  content: "\e984";
}

.icon-key-02:before {
  content: "\e985";
}

.icon-lock-01:before {
  content: "\e986";
}

.icon-lock-02:before {
  content: "\e987";
}

.icon-lock-03:before {
  content: "\e988";
}

.icon-lock-04:before {
  content: "\e989";
}

.icon-lock-keyhole-circle:before {
  content: "\e98a";
}

.icon-lock-keyhole-square:before {
  content: "\e98b";
}

.icon-lock-unlocked-01:before {
  content: "\e98c";
}

.icon-lock-unlocked-02:before {
  content: "\e98d";
}

.icon-lock-unlocked-03:before {
  content: "\e98e";
}

.icon-lock-unlocked-04:before {
  content: "\e98f";
}

.icon-passcode:before {
  content: "\e990";
}

.icon-passcode-lock:before {
  content: "\e991";
}

.icon-scan:before {
  content: "\e992";
}

.icon-shield-03:before {
  content: "\e993";
}

.icon-shield-dollar:before {
  content: "\e994";
}

.icon-shield-off:before {
  content: "\e995";
}

.icon-shield-plus:before {
  content: "\e996";
}

.icon-shield-tick:before {
  content: "\e997";
}

.icon-shield-zap:before {
  content: "\e998";
}

.icon-shield-01:before {
  content: "\e999";
}

.icon-shield-02:before {
  content: "\e99a";
}

.icon-atom-01:before {
  content: "\e99b";
}

.icon-atom-02:before {
  content: "\e99c";
}

.icon-award-01:before {
  content: "\e99d";
}

.icon-award-02:before {
  content: "\e99e";
}

.icon-award-03:before {
  content: "\e99f";
}

.icon-award-04:before {
  content: "\e9a0";
}

.icon-award-05:before {
  content: "\e9a1";
}

.icon-backpack:before {
  content: "\e9a2";
}

.icon-beaker-01:before {
  content: "\e9a3";
}

.icon-beaker-02:before {
  content: "\e9a4";
}

.icon-book-closed:before {
  content: "\e9a5";
}

.icon-Icon-Stroke-166:before {
  content: "\e9a6";
}

.icon-book-open-01:before {
  content: "\e9a7";
}

.icon-briefcase-01:before {
  content: "\e9a8";
}

.icon-briefcase-02:before {
  content: "\e9a9";
}

.icon-calculator:before {
  content: "\e9aa";
}

.icon-certificate-01:before {
  content: "\e9ab";
}

.icon-certificate-02:before {
  content: "\e9ac";
}

.icon-compass:before {
  content: "\e9ad";
}

.icon-glasses-01:before {
  content: "\e9ae";
}

.icon-glasses-02:before {
  content: "\e9af";
}

.icon-globe-slated-01:before {
  content: "\e9b0";
}

.icon-globe-slated-02:before {
  content: "\e9b1";
}

.icon-graduation-hat-01:before {
  content: "\e9b2";
}

.icon-graduation-hat-02:before {
  content: "\e9b3";
}

.icon-microscope:before {
  content: "\e9b4";
}

.icon-ruler:before {
  content: "\e9b5";
}

.icon-stand:before {
  content: "\e9b6";
}

.icon-telescope:before {
  content: "\e9b7";
}

.icon-Icon-Stroke-184:before {
  content: "\e9b8";
}

.icon-trophy-02:before {
  content: "\e9b9";
}

.icon-brackets:before {
  content: "\e9ba";
}

.icon-Icon-Stroke-187:before {
  content: "\e9bb";
}

.icon-brackets-ellipses:before {
  content: "\e9bc";
}

.icon-brackets-minus:before {
  content: "\e9bd";
}

.icon-brackets-plus:before {
  content: "\e9be";
}

.icon-brackets-slash:before {
  content: "\e9bf";
}

.icon-brackets-x:before {
  content: "\e9c0";
}

.icon-browser:before {
  content: "\e9c1";
}

.icon-code-01:before {
  content: "\e9c2";
}

.icon-code-02:before {
  content: "\e9c3";
}

.icon-Icon-Stroke-196:before {
  content: "\e9c4";
}

.icon-code-circle-01:before {
  content: "\e9c5";
}

.icon-Icon-Stroke-198:before {
  content: "\e9c6";
}

.icon-code-browser:before {
  content: "\e9c7";
}

.icon-code-square-01:before {
  content: "\e9c8";
}

.icon-code-square-02:before {
  content: "\e9c9";
}

.icon-codepen:before {
  content: "\e9ca";
}

.icon-container:before {
  content: "\e9cb";
}

.icon-cpu-chip-01:before {
  content: "\e9cc";
}

.icon-cpu-chip-02:before {
  content: "\e9cd";
}

.icon-data:before {
  content: "\e9ce";
}

.icon-database-01:before {
  content: "\e9cf";
}

.icon-database-02:before {
  content: "\e9d0";
}

.icon-database-03:before {
  content: "\e9d1";
}

.icon-dataflow-01:before {
  content: "\e9d2";
}

.icon-dataflow-05:before {
  content: "\e9d3";
}

.icon-dataflow-02:before {
  content: "\e9d4";
}

.icon-dataflow-03:before {
  content: "\e9d5";
}

.icon-dataflow-04:before {
  content: "\e9d6";
}

.icon-file-code-01:before {
  content: "\e9d7";
}

.icon-file-code-02:before {
  content: "\e9d8";
}

.icon-folder-code:before {
  content: "\e9d9";
}

.icon-git-branch-01:before {
  content: "\e9da";
}

.icon-git-branch-02:before {
  content: "\e9db";
}

.icon-git-commit:before {
  content: "\e9dc";
}

.icon-git-merge:before {
  content: "\e9dd";
}

.icon-git-pull-request:before {
  content: "\e9de";
}

.icon-package:before {
  content: "\e9df";
}

.icon-package-minus:before {
  content: "\e9e1";
}

.icon-package-check:before {
  content: "\e9e2";
}

.icon-package-plus:before {
  content: "\e9e3";
}

.icon-package-search:before {
  content: "\e9e4";
}

.icon-package-x:before {
  content: "\e9e5";
}

.icon-puzzle-piece-01:before {
  content: "\e9e6";
}

.icon-puzzle-piece-02:before {
  content: "\e9e7";
}

.icon-qr-code-01:before {
  content: "\e9e8";
}

.icon-qr-code-02:before {
  content: "\e9e9";
}

.icon-server-01:before {
  content: "\e9ea";
}

.icon-server-02:before {
  content: "\e9eb";
}

.icon-server-03:before {
  content: "\e9ec";
}

.icon-server-04:before {
  content: "\e9ed";
}

.icon-server-05:before {
  content: "\e9ee";
}

.icon-server-06:before {
  content: "\e9ef";
}

.icon-terminal:before {
  content: "\e9f0";
}

.icon-terminal-browser:before {
  content: "\e9f1";
}

.icon-terminal-circle:before {
  content: "\e9f2";
}

.icon-terminal-square:before {
  content: "\e9f3";
}

.icon-variable:before {
  content: "\e9f4";
}

.icon-arrow-block-down:before {
  content: "\e9f5";
}

.icon-arrow-block-left:before {
  content: "\e9f6";
}

.icon-arrow-block-right:before {
  content: "\e9f7";
}

.icon-arrow-block-up:before {
  content: "\e9f8";
}

.icon-arrow-circle-broken-down:before {
  content: "\e9f9";
}

.icon-arrow-circle-broken-down-left:before {
  content: "\e9fa";
}

.icon-arrow-circle-broken-down-right:before {
  content: "\e9fb";
}

.icon-arrow-circle-broken-left:before {
  content: "\e9fc";
}

.icon-arrow-circle-broken-right:before {
  content: "\e9fd";
}

.icon-arrow-circle-broken-up:before {
  content: "\e9fe";
}

.icon-arrow-circle-broken-up-left:before {
  content: "\e9ff";
}

.icon-arrow-circle-broken-up-right:before {
  content: "\ea00";
}

.icon-arrow-circle-down:before {
  content: "\ea01";
}

.icon-arrow-circle-down-left:before {
  content: "\ea02";
}

.icon-arrow-circle-down-right:before {
  content: "\ea03";
}

.icon-arrow-circle-left:before {
  content: "\ea04";
}

.icon-arrow-circle-right:before {
  content: "\ea05";
}

.icon-arrow-circle-up:before {
  content: "\ea06";
}

.icon-arrow-circle-up-left:before {
  content: "\ea07";
}

.icon-arrow-circle-up-right:before {
  content: "\ea08";
}

.icon-arrow-down:before {
  content: "\ea09";
}

.icon-arrow-down-left:before {
  content: "\ea0a";
}

.icon-arrow-down-right:before {
  content: "\ea0b";
}

.icon-arrow-left:before {
  content: "\ea0c";
}

.icon-arrow-narrow-down:before {
  content: "\ea0d";
}

.icon-arrow-narrow-down-left:before {
  content: "\ea0e";
}

.icon-arrow-narrow-down-right:before {
  content: "\ea0f";
}

.icon-arrow-narrow-left:before {
  content: "\ea10";
}

.icon-arrow-narrow-right:before {
  content: "\ea11";
}

.icon-arrow-narrow-up:before {
  content: "\ea12";
}

.icon-arrow-narrow-up-left:before {
  content: "\ea13";
}

.icon-arrow-narrow-up-right:before {
  content: "\ea14";
}

.icon-arrow-right:before {
  content: "\ea15";
}

.icon-arrow-square-down:before {
  content: "\ea16";
}

.icon-arrow-square-down-left:before {
  content: "\ea17";
}

.icon-arrow-square-down-right:before {
  content: "\ea18";
}

.icon-arrow-square-right:before {
  content: "\ea19";
}

.icon-arrow-square-up:before {
  content: "\ea1a";
}

.icon-arrow-square-up-left:before {
  content: "\ea1b";
}

.icon-arrow-square-up-right:before {
  content: "\ea1c";
}

.icon-arrow-up:before {
  content: "\ea1d";
}

.icon-arrow-up-left:before {
  content: "\ea1e";
}

.icon-arrow-up-right:before {
  content: "\ea1f";
}

.icon-arrows-down:before {
  content: "\ea20";
}

.icon-arrows-left:before {
  content: "\ea21";
}

.icon-arrows-right:before {
  content: "\ea22";
}

.icon-arrows-triangle:before {
  content: "\ea23";
}

.icon-arrows-up:before {
  content: "\ea24";
}

.icon-chevron-down:before {
  content: "\ea25";
}

.icon-chevron-down-double:before {
  content: "\ea26";
}

.icon-chevron-left:before {
  content: "\ea27";
}

.icon-chevron-left-double:before {
  content: "\ea28";
}

.icon-chevron-right:before {
  content: "\ea29";
}

.icon-chevron-right-double:before {
  content: "\ea2a";
}

.icon-chevron-selector-horizontal:before {
  content: "\ea2b";
}

.icon-chevron-selector-vertical:before {
  content: "\ea2c";
}

.icon-chevron-up:before {
  content: "\ea2d";
}

.icon-chevron-up-double:before {
  content: "\ea2e";
}

.icon-corner-down-left:before {
  content: "\ea2f";
}

.icon-corner-down-right:before {
  content: "\ea30";
}

.icon-corner-left-down:before {
  content: "\ea31";
}

.icon-corner-left-up:before {
  content: "\ea32";
}

.icon-corner-right-down:before {
  content: "\ea33";
}

.icon-corner-right-up:before {
  content: "\ea34";
}

.icon-corner-up-left:before {
  content: "\ea35";
}

.icon-corner-up-right:before {
  content: "\ea36";
}

.icon-expand-01:before {
  content: "\ea37";
}

.icon-expand-02:before {
  content: "\ea38";
}

.icon-expand-03:before {
  content: "\ea39";
}

.icon-expand-04:before {
  content: "\ea3a";
}

.icon-expand-05:before {
  content: "\ea3b";
}

.icon-expand-06:before {
  content: "\ea3c";
}

.icon-flip-backward:before {
  content: "\ea3d";
}

.icon-flip-forward:before {
  content: "\ea3e";
}

.icon-infinity:before {
  content: "\ea3f";
}

.icon-refresh-ccw-01:before {
  content: "\ea40";
}

.icon-refresh-ccw-02:before {
  content: "\ea41";
}

.icon-refresh-ccw-03:before {
  content: "\ea42";
}

.icon-refresh-ccw-04:before {
  content: "\ea43";
}

.icon-refresh-ccw-05:before {
  content: "\ea44";
}

.icon-refresh-cw-01:before {
  content: "\ea45";
}

.icon-refresh-cw-02:before {
  content: "\ea46";
}

.icon-refresh-cw-03:before {
  content: "\ea47";
}

.icon-refresh-cw-04:before {
  content: "\ea48";
}

.icon-refresh-cw-05:before {
  content: "\ea49";
}

.icon-reverse-left:before {
  content: "\ea4a";
}

.icon-reverse-right:before {
  content: "\ea4b";
}

.icon-switch-horizontal-01:before {
  content: "\ea4c";
}

.icon-switch-horizontal-02:before {
  content: "\ea4d";
}

.icon-switch-vertical-01:before {
  content: "\ea4e";
}

.icon-switch-vertical-02:before {
  content: "\ea4f";
}

.icon-accordian-down:before {
  content: "\ea50";
}

.icon-arrow-square-left:before {
  content: "\ea51";
}

.icon-bank:before {
  content: "\ea52";
}

.icon-bank-note-01:before {
  content: "\ea53";
}

.icon-bank-note-02:before {
  content: "\ea54";
}

.icon-bank-note-03:before {
  content: "\ea55";
}

.icon-coins-01:before {
  content: "\ea56";
}

.icon-coins-02:before {
  content: "\ea57";
}

.icon-coins-03:before {
  content: "\ea58";
}

.icon-coins-04:before {
  content: "\ea59";
}

.icon-coins-hand:before {
  content: "\ea5a";
}

.icon-coins-stacked-01:before {
  content: "\ea5b";
}

.icon-coins-stacked-02:before {
  content: "\ea5c";
}

.icon-coins-stacked-03:before {
  content: "\ea5d";
}

.icon-coins-stacked-04:before {
  content: "\ea5e";
}

.icon-coins-swap-01:before {
  content: "\ea5f";
}

.icon-coins-swap-02:before {
  content: "\ea60";
}

.icon-credit-card-01:before {
  content: "\ea61";
}

.icon-credit-card-02:before {
  content: "\ea62";
}

.icon-credit-card-check:before {
  content: "\ea63";
}

.icon-credit-card-down:before {
  content: "\ea64";
}

.icon-credit-card-download:before {
  content: "\ea65";
}

.icon-credit-card-edit:before {
  content: "\ea66";
}

.icon-credit-card-lock:before {
  content: "\ea67";
}

.icon-credit-card-minus:before {
  content: "\ea68";
}

.icon-credit-card-plus:before {
  content: "\ea69";
}

.icon-credit-card-refresh:before {
  content: "\ea6a";
}

.icon-credit-card-search:before {
  content: "\ea6b";
}

.icon-credit-card-shield:before {
  content: "\ea6c";
}

.icon-credit-card-up:before {
  content: "\ea6d";
}

.icon-credit-card-upload:before {
  content: "\ea6e";
}

.icon-credit-card-x:before {
  content: "\ea6f";
}

.icon-cryptocurrency-01:before {
  content: "\ea70";
}

.icon-cryptocurrency-02:before {
  content: "\ea71";
}

.icon-cryptocurrency-03:before {
  content: "\ea72";
}

.icon-cryptocurrency-04:before {
  content: "\ea73";
}

.icon-currency-bitcoin:before {
  content: "\ea74";
}

.icon-currency-bitcoin-circle:before {
  content: "\ea75";
}

.icon-currency-dollar:before {
  content: "\ea76";
}

.icon-currency-dollar-circle:before {
  content: "\ea77";
}

.icon-currency-ethereum:before {
  content: "\ea78";
}

.icon-currency-ethereum-circle:before {
  content: "\ea79";
}

.icon-currency-euro:before {
  content: "\ea7a";
}

.icon-currency-euro-circle:before {
  content: "\ea7b";
}

.icon-currency-pound:before {
  content: "\ea7c";
}

.icon-currency-pound-circle:before {
  content: "\ea7d";
}

.icon-currency-ruble:before {
  content: "\ea7e";
}

.icon-currency-ruble-circle:before {
  content: "\ea7f";
}

.icon-currency-rupee-circle:before {
  content: "\ea80";
}

.icon-currency-rupee:before {
  content: "\ea81";
}

.icon-currency-yen:before {
  content: "\ea82";
}

.icon-currency-yen-circle:before {
  content: "\ea83";
}

.icon-diamond-01:before {
  content: "\ea84";
}

.icon-diamond-02:before {
  content: "\ea85";
}

.icon-gift-01:before {
  content: "\ea86";
}

.icon-gift-02:before {
  content: "\ea87";
}

.icon-piggy-bank-01:before {
  content: "\ea88";
}

.icon-piggy-bank-02:before {
  content: "\ea89";
}

.icon-receipt:before {
  content: "\ea8a";
}

.icon-receipt-check:before {
  content: "\ea8b";
}

.icon-safe:before {
  content: "\ea8c";
}

.icon-sale-01:before {
  content: "\ea8d";
}

.icon-Icon-Stroke-398:before {
  content: "\ea8e";
}

.icon-sale-02:before {
  content: "\ea8f";
}

.icon-sale-03:before {
  content: "\ea90";
}

.icon-scales-01:before {
  content: "\ea91";
}

.icon-scales-02:before {
  content: "\ea92";
}

.icon-shopping-bag-01:before {
  content: "\ea93";
}

.icon-shopping-bag-02:before {
  content: "\ea94";
}

.icon-shopping-bag-03:before {
  content: "\ea95";
}

.icon-shopping-cart-01:before {
  content: "\ea96";
}

.icon-shopping-cart-02:before {
  content: "\ea97";
}

.icon-shopping-cart-03:before {
  content: "\ea98";
}

.icon-tag-01:before {
  content: "\ea99";
}

.icon-tag-02:before {
  content: "\ea9a";
}

.icon-tag-03:before {
  content: "\ea9b";
}

.icon-wallet-01:before {
  content: "\ea9c";
}

.icon-wallet-02:before {
  content: "\ea9d";
}

.icon-wallet-03:before {
  content: "\ea9e";
}

.icon-wallet-04:before {
  content: "\ea9f";
}

.icon-wallet-05:before {
  content: "\eaa0";
}

.icon-activity:before {
  content: "\eaa1";
}

.icon-activity-heart:before {
  content: "\eaa2";
}

.icon-anchor:before {
  content: "\eaa3";
}

.icon-archive:before {
  content: "\eaa4";
}

.icon-asterisk-01:before {
  content: "\eaa5";
}

.icon-asterisk-02:before {
  content: "\eaa6";
}

.icon-at-sign:before {
  content: "\eaa7";
}

.icon-bookmark:before {
  content: "\eaa8";
}

.icon-bookmark-add:before {
  content: "\eaa9";
}

.icon-bookmark-check:before {
  content: "\eaaa";
}

.icon-bookmark-minus:before {
  content: "\eaab";
}

.icon-bookmark-x:before {
  content: "\eaac";
}

.icon-building-01:before {
  content: "\eaad";
}

.icon-building-02:before {
  content: "\eaae";
}

.icon-building-03:before {
  content: "\eaaf";
}

.icon-building-04:before {
  content: "\eab0";
}

.icon-building-05:before {
  content: "\eab1";
}

.icon-building-06:before {
  content: "\eab2";
}

.icon-building-07:before {
  content: "\eab3";
}

.icon-building-08:before {
  content: "\eab4";
}

.icon-check:before {
  content: "\eab5";
}

.icon-check-circle:before {
  content: "\eab6";
}

.icon-check-circle-broken:before {
  content: "\eab7";
}

.icon-check-done-01:before {
  content: "\eab8";
}

.icon-check-done-02:before {
  content: "\eab9";
}

.icon-check-heart:before {
  content: "\eaba";
}

.icon-check-square:before {
  content: "\eabb";
}

.icon-check-square-broken:before {
  content: "\eabc";
}

.icon-check-verified-01:before {
  content: "\eabd";
}

.icon-check-verified-02:before {
  content: "\eabe";
}

.icon-check-verified-03:before {
  content: "\eabf";
}

.icon-cloud-blank-01:before {
  content: "\eac0";
}

.icon-cloud-blank-02:before {
  content: "\eac1";
}

.icon-copy-01:before {
  content: "\eac2";
}

.icon-copy-02:before {
  content: "\eac3";
}

.icon-copy-03:before {
  content: "\eac4";
}

.icon-copy-04:before {
  content: "\eac5";
}

.icon-copy-05:before {
  content: "\eac6";
}

.icon-copy-06:before {
  content: "\eac7";
}

.icon-copy-07:before {
  content: "\eac8";
}

.icon-divide-01:before {
  content: "\eac9";
}

.icon-divide-02:before {
  content: "\eaca";
}

.icon-divide-03:before {
  content: "\eacb";
}

.icon-dots-grid:before {
  content: "\eacc";
}

.icon-dots-horizontal:before {
  content: "\eacd";
}

.icon-dots-vertical:before {
  content: "\eace";
}

.icon-download-01:before {
  content: "\eacf";
}

.icon-download-02:before {
  content: "\ead0";
}

.icon-download-03:before {
  content: "\ead1";
}

.icon-link-external-01:before {
  content: "\ead2";
}

.icon-share-05:before {
  content: "\ead3";
}

.icon-share-06:before {
  content: "\ead4";
}

.icon-share-07:before {
  content: "\ead5";
}

.icon-slash-circle-01:before {
  content: "\ead6";
}

.icon-slash-circle-02:before {
  content: "\ead7";
}

.icon-slash-divider:before {
  content: "\ead8";
}

.icon-slash-octagon:before {
  content: "\ead9";
}

.icon-speedometer-01:before {
  content: "\eada";
}

.icon-speedometer-02:before {
  content: "\eadb";
}

.icon-speedometer-03:before {
  content: "\eadc";
}

.icon-speedometer-04:before {
  content: "\eadd";
}

.icon-target-01:before {
  content: "\eade";
}

.icon-target-02:before {
  content: "\eadf";
}

.icon-target-03:before {
  content: "\eae0";
}

.icon-target-04:before {
  content: "\eae1";
}

.icon-target-05:before {
  content: "\eae2";
}

.icon-toggle-01-left:before {
  content: "\eae3";
}

.icon-toggle-01-right:before {
  content: "\eae4";
}

.icon-toggle-02-left:before {
  content: "\eae5";
}

.icon-toggle-02-right:before {
  content: "\eae6";
}

.icon-toggle-03-left:before {
  content: "\eae7";
}

.icon-toggle-03-right:before {
  content: "\eae8";
}

.icon-tool-01:before {
  content: "\eaea";
}

.icon-tool-02:before {
  content: "\eaeb";
}

.icon-translate-01:before {
  content: "\eaec";
}

.icon-translate-02:before {
  content: "\eaed";
}

.icon-trash-01:before {
  content: "\eaee";
}

.icon-trash-02:before {
  content: "\eaef";
}

.icon-trash-03:before {
  content: "\eaf0";
}

.icon-trash-04:before {
  content: "\eaf1";
}

.icon-upload-01:before {
  content: "\eaf2";
}

.icon-upload-02:before {
  content: "\eaf3";
}

.icon-upload-03:before {
  content: "\eaf4";
}

.icon-upload-04:before {
  content: "\eaf5";
}

.icon-upload-05:before {
  content: "\eaf6";
}

.icon-upload-06:before {
  content: "\eaf7";
}

.icon-virus:before {
  content: "\eaf8";
}

.icon-x-circle:before {
  content: "\eaf9";
}

.icon-x:before {
  content: "\eafa";
}

.icon-x-close:before {
  content: "\eafb";
}

.icon-Icon-Stroke-508:before {
  content: "\eafc";
}

.icon-zap:before {
  content: "\eafd";
}

.icon-zap-circle:before {
  content: "\eafe";
}

.icon-zap-fast:before {
  content: "\eaff";
}

.icon-zap-off:before {
  content: "\eb00";
}

.icon-zap-square:before {
  content: "\eb01";
}

.icon-link-broken-01:before {
  content: "\eb02";
}

.icon-link-broken-02:before {
  content: "\eb03";
}

.icon-link-external-02:before {
  content: "\eb05";
}

.icon-loading-01:before {
  content: "\eb06";
}

.icon-loading-02:before {
  content: "\eb07";
}

.icon-loading-03:before {
  content: "\eb08";
}

.icon-log-in-01:before {
  content: "\eb09";
}

.icon-log-in-02:before {
  content: "\eb0a";
}

.icon-log-in-03:before {
  content: "\eb0b";
}

.icon-log-in-04:before {
  content: "\eb0c";
}

.icon-log-out-01:before {
  content: "\eb0d";
}

.icon-log-out-02:before {
  content: "\eb0e";
}

.icon-log-out-03:before {
  content: "\eb0f";
}

.icon-log-out-04:before {
  content: "\eb10";
}

.icon-medical-circle:before {
  content: "\eb11";
}

.icon-medical-cross:before {
  content: "\eb12";
}

.icon-medical-square:before {
  content: "\eb13";
}

.icon-menu-01:before {
  content: "\eb14";
}

.icon-menu-02:before {
  content: "\eb15";
}

.icon-menu-03:before {
  content: "\eb16";
}

.icon-menu-04:before {
  content: "\eb17";
}

.icon-menu-05:before {
  content: "\eb18";
}

.icon-minus:before {
  content: "\eb19";
}

.icon-minus-circle:before {
  content: "\eb1a";
}

.icon-minus-square:before {
  content: "\eb1b";
}

.icon-percent-01:before {
  content: "\eb1c";
}

.icon-percent-02:before {
  content: "\eb1d";
}

.icon-percent-03:before {
  content: "\eb1e";
}

.icon-pin-01:before {
  content: "\eb1f";
}

.icon-pin-02:before {
  content: "\eb20";
}

.icon-placeholder:before {
  content: "\eb21";
}

.icon-plus:before {
  content: "\eb22";
}

.icon-plus-circle:before {
  content: "\eb23";
}

.icon-plus-square:before {
  content: "\eb24";
}

.icon-save-01:before {
  content: "\eb25";
}

.icon-save-02:before {
  content: "\eb26";
}

.icon-save-03:before {
  content: "\eb27";
}

.icon-search-lg:before {
  content: "\eb28";
}

.icon-search-md:before {
  content: "\eb29";
}

.icon-search-refraction:before {
  content: "\eb2a";
}

.icon-search-sm:before {
  content: "\eb2b";
}

.icon-settings-01:before {
  content: "\eb2c";
}

.icon-settings-02:before {
  content: "\eb2d";
}

.icon-settings-03:before {
  content: "\eb2e";
}

.icon-settings-04:before {
  content: "\eb2f";
}

.icon-share-01:before {
  content: "\eb30";
}

.icon-share-02:before {
  content: "\eb31";
}

.icon-share-03:before {
  content: "\eb32";
}

.icon-download-05:before {
  content: "\eb33";
}

.icon-download-cloud-01:before {
  content: "\eb34";
}

.icon-download-cloud-02:before {
  content: "\eb35";
}

.icon-edit-01:before {
  content: "\eb36";
}

.icon-edit-02:before {
  content: "\eb37";
}

.icon-edit-03:before {
  content: "\eb38";
}

.icon-edit-04:before {
  content: "\eb39";
}

.icon-edit-05:before {
  content: "\eb3a";
}

.icon-equal:before {
  content: "\eb3b";
}

.icon-equal-not:before {
  content: "\eb3c";
}

.icon-eye:before {
  content: "\eb3d";
}

.icon-eye-off:before {
  content: "\eb3e";
}

.icon-filter-funnel-01:before {
  content: "\eb3f";
}

.icon-filter-funnel-02:before {
  content: "\eb40";
}

.icon-filter-lines:before {
  content: "\eb41";
}

.icon-google-chrome:before {
  content: "\eb42";
}

.icon-hash-01:before {
  content: "\eb43";
}

.icon-hash-02:before {
  content: "\eb44";
}

.icon-heart:before {
  content: "\eb45";
}

.icon-heart-circle:before {
  content: "\eb46";
}

.icon-heart-hand:before {
  content: "\eb47";
}

.icon-heart-hexagon:before {
  content: "\eb48";
}

.icon-heart-octagon:before {
  content: "\eb49";
}

.icon-heart-rounded:before {
  content: "\eb4a";
}

.icon-heart-square:before {
  content: "\eb4b";
}

.icon-hearts:before {
  content: "\eb4c";
}

.icon-help-circle:before {
  content: "\eb4d";
}

.icon-help-hexagon:before {
  content: "\eb4e";
}

.icon-help-octagon:before {
  content: "\eb4f";
}

.icon-help-square:before {
  content: "\eb50";
}

.icon-home-01:before {
  content: "\eb51";
}

.icon-home-02:before {
  content: "\eb52";
}

.icon-home-03:before {
  content: "\eb53";
}

.icon-home-04:before {
  content: "\eb54";
}

.icon-home-05:before {
  content: "\eb55";
}

.icon-home-line:before {
  content: "\eb56";
}

.icon-home-smile:before {
  content: "\eb57";
}

.icon-info-circle:before {
  content: "\eb58";
}

.icon-info-hexagon:before {
  content: "\eb59";
}

.icon-info-octagon:before {
  content: "\eb5a";
}

.icon-info-square:before {
  content: "\eb5b";
}

.icon-life-buoy-01:before {
  content: "\eb5c";
}

.icon-life-buoy-02:before {
  content: "\eb5d";
}

.icon-link-01:before {
  content: "\eb5e";
}

.icon-link-02:before {
  content: "\eb5f";
}

.icon-link-03:before {
  content: "\eb60";
}

.icon-link-04:before {
  content: "\eb61";
}

.icon-link-05:before {
  content: "\eb62";
}

.icon-alert-circle:before {
  content: "\eb63";
}

.icon-alert-hexagon:before {
  content: "\eb64";
}

.icon-alert-octagon:before {
  content: "\eb65";
}

.icon-alert-square:before {
  content: "\eb66";
}

.icon-alert-triangle:before {
  content: "\eb67";
}

.icon-announcement-01:before {
  content: "\eb68";
}

.icon-announcement-02:before {
  content: "\eb69";
}

.icon-announcement-03:before {
  content: "\eb6a";
}

.icon-bell-01:before {
  content: "\eb6b";
}

.icon-bell-02:before {
  content: "\eb6c";
}

.icon-bell-03:before {
  content: "\eb6d";
}

.icon-bell-04:before {
  content: "\eb6e";
}

.icon-bell-minus:before {
  content: "\eb6f";
}

.icon-bell-off-01:before {
  content: "\eb70";
}

.icon-bell-off-02:before {
  content: "\eb71";
}

.icon-bell-off-03:before {
  content: "\eb72";
}

.icon-bell-plus:before {
  content: "\eb73";
}

.icon-bell-ringing-01:before {
  content: "\eb74";
}

.icon-bell-ringing-02:before {
  content: "\eb75";
}

.icon-bell-ringing-03:before {
  content: "\eb76";
}

.icon-bell-ringing-04:before {
  content: "\eb77";
}

.icon-notification-box:before {
  content: "\eb78";
}

.icon-notification-message:before {
  content: "\eb79";
}

.icon-notification-text:before {
  content: "\eb7a";
}

.icon-thumbs-down:before {
  content: "\eb7b";
}

.icon-thumbs-up:before {
  content: "\eb7c";
}

.icon-circle:before {
  content: "\eb7d";
}

.icon-cube-01:before {
  content: "\eb7f";
}

.icon-cube-02:before {
  content: "\eb80";
}

.icon-cube-03:before {
  content: "\eb81";
}

.icon-cube-outline:before {
  content: "\eb82";
}

.icon-dice-1:before {
  content: "\eb83";
}

.icon-dice-2:before {
  content: "\eb84";
}

.icon-dice-4:before {
  content: "\eb85";
}

.icon-dice-3:before {
  content: "\eb86";
}

.icon-dice-5:before {
  content: "\eb87";
}

.icon-dice-6:before {
  content: "\eb88";
}

.icon-hexagon-01:before {
  content: "\eb89";
}

.icon-hexagon-02:before {
  content: "\eb8a";
}

.icon-octagon:before {
  content: "\eb8b";
}

.icon-pentagon:before {
  content: "\eb8c";
}

.icon-square:before {
  content: "\eb8d";
}

.icon-star-01:before {
  content: "\eb8e";
}

.icon-star-02:before {
  content: "\eb8f";
}

.icon-star-03:before {
  content: "\eb90";
}

.icon-star-04:before {
  content: "\eb91";
}

.icon-star-05:before {
  content: "\eb92";
}

.icon-star-06:before {
  content: "\eb93";
}

.icon-star-07:before {
  content: "\eb94";
}

.icon-triangle:before {
  content: "\eb95";
}

.icon-Icon-Stroke-662:before {
  content: "\eb96";
}

.icon-face-content:before {
  content: "\eb97";
}

.icon-face-frown:before {
  content: "\eb98";
}

.icon-face-happy:before {
  content: "\eb99";
}

.icon-face-neutral:before {
  content: "\eb9a";
}

.icon-face-sad:before {
  content: "\eb9b";
}

.icon-face-smile:before {
  content: "\eb9c";
}

.icon-face-wink:before {
  content: "\eb9d";
}

.icon-user-01:before {
  content: "\eb9e";
}

.icon-user-02:before {
  content: "\eb9f";
}

.icon-users-03:before {
  content: "\eba0";
}

.icon-user-03:before {
  content: "\eba1";
}

.icon-users-02:before {
  content: "\eba2";
}

.icon-user-check-01:before {
  content: "\eba3";
}

.icon-user-check-02:before {
  content: "\eba4";
}

.icon-user-down-01:before {
  content: "\eba6";
}

.icon-user-down-02:before {
  content: "\eba7";
}

.icon-user-edit:before {
  content: "\eba8";
}

.icon-user-left-01:before {
  content: "\eba9";
}

.icon-user-left-02:before {
  content: "\ebaa";
}

.icon-user-minus-01:before {
  content: "\ebab";
}

.icon-user-minus-02:before {
  content: "\ebac";
}

.icon-user-plus-01:before {
  content: "\ebad";
}

.icon-user-plus-02:before {
  content: "\ebae";
}

.icon-user-right-01:before {
  content: "\ebaf";
}

.icon-user-right-02:before {
  content: "\ebb0";
}

.icon-user-square:before {
  content: "\ebb1";
}

.icon-user-up-01:before {
  content: "\ebb2";
}

.icon-user-up-02:before {
  content: "\ebb3";
}

.icon-user-x-01:before {
  content: "\ebb4";
}

.icon-user-x-02:before {
  content: "\ebb5";
}

.icon-users-01:before {
  content: "\ebb6";
}

.icon-users-check:before {
  content: "\ebb7";
}

.icon-users-down:before {
  content: "\ebb8";
}

.icon-users-edit:before {
  content: "\ebb9";
}

.icon-users-left:before {
  content: "\ebba";
}

.icon-users-minus:before {
  content: "\ebbb";
}

.icon-users-plus:before {
  content: "\ebbc";
}

.icon-users-right:before {
  content: "\ebbd";
}

.icon-users-up:before {
  content: "\ebbe";
}

.icon-users-x:before {
  content: "\ebbf";
}

.icon-airplay:before {
  content: "\ebc0";
}

.icon-airpods:before {
  content: "\ebc1";
}

.icon-battery-charging-01:before {
  content: "\ebc2";
}

.icon-battery-charging-02:before {
  content: "\ebc3";
}

.icon-battery-empty:before {
  content: "\ebc4";
}

.icon-battery-full:before {
  content: "\ebc5";
}

.icon-battery-low:before {
  content: "\ebc6";
}

.icon-battery-mid:before {
  content: "\ebc7";
}

.icon-bluetooth-connect:before {
  content: "\ebc8";
}

.icon-bluetooth-off:before {
  content: "\ebc9";
}

.icon-bluetooth-on:before {
  content: "\ebca";
}

.icon-bluetooth-signal:before {
  content: "\ebcb";
}

.icon-chrome-cast:before {
  content: "\ebcc";
}

.icon-clapperboard:before {
  content: "\ebcd";
}

.icon-disc-01:before {
  content: "\ebce";
}

.icon-disc-02:before {
  content: "\ebcf";
}

.icon-fast-backward:before {
  content: "\ebd0";
}

.icon-fast-forward:before {
  content: "\ebd1";
}

.icon-film-01:before {
  content: "\ebd2";
}

.icon-film-02:before {
  content: "\ebd3";
}

.icon-film-03:before {
  content: "\ebd4";
}

.icon-gaming-pad-01:before {
  content: "\ebd5";
}

.icon-gaming-pad-02:before {
  content: "\ebd6";
}

.icon-hard-drive:before {
  content: "\ebd7";
}

.icon-headphones-01:before {
  content: "\ebd8";
}

.icon-headphones-02:before {
  content: "\ebd9";
}

.icon-keyboard-01:before {
  content: "\ebda";
}

.icon-keyboard-02:before {
  content: "\ebdb";
}

.icon-laptop-01:before {
  content: "\ebdc";
}

.icon-laptop-02:before {
  content: "\ebdd";
}

.icon-lightbulb-01:before {
  content: "\ebde";
}

.icon-lightbulb-02:before {
  content: "\ebdf";
}

.icon-lightbulb-03:before {
  content: "\ebe0";
}

.icon-lightbulb-04:before {
  content: "\ebe1";
}

.icon-lightbulb-05:before {
  content: "\ebe2";
}

.icon-microphone-01:before {
  content: "\ebe3";
}

.icon-microphone-02:before {
  content: "\ebe4";
}

.icon-microphone-off-01:before {
  content: "\ebe5";
}

.icon-microphone-off-02:before {
  content: "\ebe6";
}

.icon-modem-01:before {
  content: "\ebe7";
}

.icon-modem-02:before {
  content: "\ebe8";
}

.icon-monitor-01:before {
  content: "\ebe9";
}

.icon-monitor-02:before {
  content: "\ebea";
}

.icon-monitor-03:before {
  content: "\ebeb";
}

.icon-monitor-04:before {
  content: "\ebec";
}

.icon-monitor-05:before {
  content: "\ebed";
}

.icon-mouse:before {
  content: "\ebee";
}

.icon-music-note-01:before {
  content: "\ebef";
}

.icon-music-note-02:before {
  content: "\ebf0";
}

.icon-music-note-plus:before {
  content: "\ebf1";
}

.icon-pause-circle:before {
  content: "\ebf2";
}

.icon-pause-square:before {
  content: "\ebf3";
}

.icon-phone-01:before {
  content: "\ebf4";
}

.icon-phone-02:before {
  content: "\ebf5";
}

.icon-play:before {
  content: "\ebf6";
}

.icon-play-circle:before {
  content: "\ebf7";
}

.icon-play-square:before {
  content: "\ebf8";
}

.icon-podcast:before {
  content: "\ebf9";
}

.icon-power-01:before {
  content: "\ebfa";
}

.icon-power-02:before {
  content: "\ebfb";
}

.icon-power-03:before {
  content: "\ebfc";
}

.icon-printer:before {
  content: "\ebfd";
}

.icon-recording-01:before {
  content: "\ebfe";
}

.icon-recording-02:before {
  content: "\ebff";
}

.icon-recording-03:before {
  content: "\ec00";
}

.icon-repeat-01:before {
  content: "\ec01";
}

.icon-repeat-02:before {
  content: "\ec02";
}

.icon-repeat-03:before {
  content: "\ec03";
}

.icon-repeat-04:before {
  content: "\ec04";
}

.icon-rss-01:before {
  content: "\ec05";
}

.icon-rss-02:before {
  content: "\ec06";
}

.icon-shuffle-01:before {
  content: "\ec07";
}

.icon-shuffle-02:before {
  content: "\ec08";
}

.icon-signal-01:before {
  content: "\ec09";
}

.icon-signal-02:before {
  content: "\ec0a";
}

.icon-signal-03:before {
  content: "\ec0b";
}

.icon-simcard:before {
  content: "\ec0c";
}

.icon-skip-back:before {
  content: "\ec0d";
}

.icon-skip-forward:before {
  content: "\ec0e";
}

.icon-sliders-01:before {
  content: "\ec0f";
}

.icon-sliders-02:before {
  content: "\ec10";
}

.icon-sliders-03:before {
  content: "\ec11";
}

.icon-sliders-04:before {
  content: "\ec12";
}

.icon-speaker-01:before {
  content: "\ec13";
}

.icon-speaker-02:before {
  content: "\ec14";
}

.icon-speaker-03:before {
  content: "\ec15";
}

.icon-stop:before {
  content: "\ec16";
}

.icon-stop-circle:before {
  content: "\ec17";
}

.icon-stop-square:before {
  content: "\ec18";
}

.icon-tablet-01:before {
  content: "\ec19";
}

.icon-tablet-02:before {
  content: "\ec1a";
}

.icon-tv-01:before {
  content: "\ec1b";
}

.icon-tv-02:before {
  content: "\ec1c";
}

.icon-tv-03:before {
  content: "\ec1d";
}

.icon-usb-flash-drive:before {
  content: "\ec1e";
}

.icon-video-recorder:before {
  content: "\ec1f";
}

.icon-video-recorder-off:before {
  content: "\ec20";
}

.icon-voicemail:before {
  content: "\ec21";
}

.icon-volume-max:before {
  content: "\ec22";
}

.icon-volume-min:before {
  content: "\ec23";
}

.icon-volume-minus:before {
  content: "\ec24";
}

.icon-volume-plus:before {
  content: "\ec25";
}

.icon-volume-x:before {
  content: "\ec26";
}

.icon-webcam-01:before {
  content: "\ec27";
}

.icon-webcam-02:before {
  content: "\ec28";
}

.icon-wifi:before {
  content: "\ec29";
}

.icon-wifi-off:before {
  content: "\ec2a";
}

.icon-youtube:before {
  content: "\ec2b";
}

.icon-camera-01:before {
  content: "\ec2c";
}

.icon-camera-02:before {
  content: "\ec2d";
}

.icon-camera-03:before {
  content: "\ec2e";
}

.icon-camera-lens:before {
  content: "\ec2f";
}

.icon-camera-off:before {
  content: "\ec30";
}

.icon-camera-plus:before {
  content: "\ec31";
}

.icon-colors-images:before {
  content: "\ec32";
}

.icon-flash:before {
  content: "\ec33";
}

.icon-flash-off:before {
  content: "\ec34";
}

.icon-image-01:before {
  content: "\ec35";
}

.icon-image-02:before {
  content: "\ec36";
}

.icon-image-03:before {
  content: "\ec37";
}

.icon-image-04:before {
  content: "\ec38";
}

.icon-image-05:before {
  content: "\ec39";
}

.icon-image-check:before {
  content: "\ec3a";
}

.icon-image-down:before {
  content: "\ec3b";
}

.icon-image-left:before {
  content: "\ec3c";
}

.icon-image-plus:before {
  content: "\ec3d";
}

.icon-image-right:before {
  content: "\ec3e";
}

.icon-image-up:before {
  content: "\ec3f";
}

.icon-image-user:before {
  content: "\ec40";
}

.icon-image-user-check:before {
  content: "\ec41";
}

.icon-image-user-down:before {
  content: "\ec42";
}

.icon-image-user-left:before {
  content: "\ec43";
}

.icon-image-user-plus:before {
  content: "\ec44";
}

.icon-image-user-right:before {
  content: "\ec45";
}

.icon-image-user-up:before {
  content: "\ec46";
}

.icon-image-user-x:before {
  content: "\ec47";
}

.icon-image-x:before {
  content: "\ec48";
}

.icon-annotation:before {
  content: "\ec49";
}

.icon-annotation-alert:before {
  content: "\ec4a";
}

.icon-annotation-check:before {
  content: "\ec4b";
}

.icon-annotation-dots:before {
  content: "\ec4c";
}

.icon-annotation-heart:before {
  content: "\ec4d";
}

.icon-annotation-info:before {
  content: "\ec4e";
}

.icon-annotation-plus:before {
  content: "\ec4f";
}

.icon-annotation-question:before {
  content: "\ec50";
}

.icon-annotation-x:before {
  content: "\ec51";
}

.icon-inbox-01:before {
  content: "\ec52";
}

.icon-inbox-02:before {
  content: "\ec53";
}

.icon-mail-01:before {
  content: "\ec54";
}

.icon-mail-02:before {
  content: "\ec55";
}

.icon-mail-03:before {
  content: "\ec56";
}

.icon-mail-04:before {
  content: "\ec57";
}

.icon-message-alert-circle:before {
  content: "\ec58";
}

.icon-message-alert-square:before {
  content: "\ec59";
}

.icon-message-chat-circle:before {
  content: "\ec5a";
}

.icon-message-chat-square:before {
  content: "\ec5b";
}

.icon-message-check-circle:before {
  content: "\ec5c";
}

.icon-message-check-square:before {
  content: "\ec5d";
}

.icon-message-circle-01:before {
  content: "\ec5e";
}

.icon-message-circle-02:before {
  content: "\ec5f";
}

.icon-message-dots-circle:before {
  content: "\ec60";
}

.icon-message-dots-square:before {
  content: "\ec61";
}

.icon-message-heart-circle:before {
  content: "\ec62";
}

.icon-message-heart-square:before {
  content: "\ec63";
}

.icon-message-notification-circle:before {
  content: "\ec64";
}

.icon-message-notification-square:before {
  content: "\ec65";
}

.icon-message-plus-circle:before {
  content: "\ec66";
}

.icon-message-plus-square:before {
  content: "\ec67";
}

.icon-message-question-circle:before {
  content: "\ec68";
}

.icon-message-question-square:before {
  content: "\ec69";
}

.icon-message-smile-circle:before {
  content: "\ec6a";
}

.icon-message-smile-square:before {
  content: "\ec6b";
}

.icon-message-square-01:before {
  content: "\ec6c";
}

.icon-message-square-02:before {
  content: "\ec6d";
}

.icon-message-text-circle-01:before {
  content: "\ec6e";
}

.icon-message-text-circle-02:before {
  content: "\ec6f";
}

.icon-message-text-square-01:before {
  content: "\ec70";
}

.icon-message-text-square-02:before {
  content: "\ec71";
}

.icon-message-x-circle:before {
  content: "\ec72";
}

.icon-message-x-square:before {
  content: "\ec73";
}

.icon-phone:before {
  content: "\ec74";
}

.icon-phone-call-01:before {
  content: "\ec75";
}

.icon-phone-call-02:before {
  content: "\ec76";
}

.icon-phone-hang-up:before {
  content: "\ec77";
}

.icon-phone-incoming-01:before {
  content: "\ec78";
}

.icon-phone-incoming-02:before {
  content: "\ec79";
}

.icon-phone-outgoing-01:before {
  content: "\ec7a";
}

.icon-phone-outgoing-02:before {
  content: "\ec7b";
}

.icon-phone-pause:before {
  content: "\ec7c";
}

.icon-phone-plus:before {
  content: "\ec7d";
}

.icon-phone-x:before {
  content: "\ec7e";
}

.icon-send-01:before {
  content: "\ec7f";
}

.icon-send-02:before {
  content: "\ec80";
}

.icon-send-03:before {
  content: "\ec81";
}

.icon-align-center:before {
  content: "\ec82";
}

.icon-align-justify:before {
  content: "\ec83";
}

.icon-align-left:before {
  content: "\ec84";
}

.icon-align-right:before {
  content: "\ec85";
}

.icon-attachment-01:before {
  content: "\ec86";
}

.icon-attachment-02:before {
  content: "\ec87";
}

.icon-bezier-curve-01:before {
  content: "\ec88";
}

.icon-bezier-curve-02:before {
  content: "\ec89";
}

.icon-bezier-curve-03:before {
  content: "\ec8a";
}

.icon-bold-01:before {
  content: "\ec8b";
}

.icon-bold-02:before {
  content: "\ec8c";
}

.icon-bold-square:before {
  content: "\ec8d";
}

.icon-brush-01:before {
  content: "\ec8e";
}

.icon-brush-02:before {
  content: "\ec8f";
}

.icon-brush-03:before {
  content: "\ec90";
}

.icon-circle-cut:before {
  content: "\ec91";
}

.icon-code-snippet-01:before {
  content: "\ec92";
}

.icon-code-snippet-02:before {
  content: "\ec93";
}

.icon-colors:before {
  content: "\ec94";
}

.icon-command:before {
  content: "\ec95";
}

.icon-contrast-01:before {
  content: "\ec96";
}

.icon-contrast-02:before {
  content: "\ec97";
}

.icon-contrast-03:before {
  content: "\ec98";
}

.icon-crop-01:before {
  content: "\ec99";
}

.icon-crop-02:before {
  content: "\ec9a";
}

.icon-cursor-03:before {
  content: "\ec9b";
}

.icon-cursor-02:before {
  content: "\ec9c";
}

.icon-cursor-04:before {
  content: "\ec9d";
}

.icon-Icon-Stroke-926:before {
  content: "\ec9e";
}

.icon-cursor-box:before {
  content: "\ec9f";
}

.icon-cursor-click-01:before {
  content: "\eca0";
}

.icon-cursor-click-02:before {
  content: "\eca1";
}

.icon-delete:before {
  content: "\eca2";
}

.icon-dotpoints-01:before {
  content: "\eca3";
}

.icon-dotpoints-02:before {
  content: "\eca4";
}

.icon-drop:before {
  content: "\eca5";
}

.icon-dropper:before {
  content: "\eca6";
}

.icon-eraser:before {
  content: "\eca7";
}

.icon-feather:before {
  content: "\eca8";
}

.icon-figma:before {
  content: "\eca9";
}

.icon-framer:before {
  content: "\ecaa";
}

.icon-hand:before {
  content: "\ecab";
}

.icon-heading-01:before {
  content: "\ecac";
}

.icon-heading-02:before {
  content: "\ecad";
}

.icon-heading-square:before {
  content: "\ecae";
}

.icon-image-indent-left:before {
  content: "\ecaf";
}

.icon-image-indent-right:before {
  content: "\ecb0";
}

.icon-italic-01:before {
  content: "\ecb1";
}

.icon-italic-02:before {
  content: "\ecb2";
}

.icon-italic-square:before {
  content: "\ecb3";
}

.icon-left-indent-01:before {
  content: "\ecb4";
}

.icon-left-indent-02:before {
  content: "\ecb5";
}

.icon-letter-spacing-01:before {
  content: "\ecb6";
}

.icon-letter-spacing-02:before {
  content: "\ecb7";
}

.icon-line-height:before {
  content: "\ecb8";
}

.icon-magic-wand-01:before {
  content: "\ecb9";
}

.icon-magic-wand-02:before {
  content: "\ecba";
}

.icon-move:before {
  content: "\ecbb";
}

.icon-paint:before {
  content: "\ecbc";
}

.icon-paint-pour:before {
  content: "\ecbd";
}

.icon-palette:before {
  content: "\ecbe";
}

.icon-paragraph-spacing:before {
  content: "\ecbf";
}

.icon-paragraph-wrap:before {
  content: "\ecc0";
}

.icon-pen-tool-01:before {
  content: "\ecc1";
}

.icon-pen-tool-02:before {
  content: "\ecc2";
}

.icon-pen-tool-minus:before {
  content: "\ecc3";
}

.icon-pen-tool-plus:before {
  content: "\ecc4";
}

.icon-pencil-02:before {
  content: "\ecc5";
}

.icon-perspective-01:before {
  content: "\ecc6";
}

.icon-perspective-02:before {
  content: "\ecc7";
}

.icon-pilcrow-01:before {
  content: "\ecc8";
}

.icon-pilcrow-02:before {
  content: "\ecc9";
}

.icon-pilcrow-square:before {
  content: "\ecca";
}

.icon-reflect-01:before {
  content: "\eccb";
}

.icon-reflect-02:before {
  content: "\eccc";
}

.icon-right-indent-01:before {
  content: "\eccd";
}

.icon-right-indent-02:before {
  content: "\ecce";
}

.icon-roller-brush:before {
  content: "\eccf";
}

.icon-scale-01:before {
  content: "\ecd0";
}

.icon-scale-02:before {
  content: "\ecd1";
}

.icon-scale-03:before {
  content: "\ecd2";
}

.icon-scissors-01:before {
  content: "\ecd3";
}

.icon-scissors-02:before {
  content: "\ecd4";
}

.icon-scissors-cut-01:before {
  content: "\ecd5";
}

.icon-scissors-cut-02:before {
  content: "\ecd6";
}

.icon-skew:before {
  content: "\ecd7";
}

.icon-strikethrough-01:before {
  content: "\ecd8";
}

.icon-strikethrough-02:before {
  content: "\ecd9";
}

.icon-strikethrough-square:before {
  content: "\ecda";
}

.icon-subscript:before {
  content: "\ecdb";
}

.icon-text-input:before {
  content: "\ecdc";
}

.icon-transform:before {
  content: "\ecdd";
}

.icon-type-01:before {
  content: "\ecde";
}

.icon-type-02:before {
  content: "\ecdf";
}

.icon-type-square:before {
  content: "\ece0";
}

.icon-type-strikethrough-01:before {
  content: "\ece1";
}

.icon-type-strikethrough-02:before {
  content: "\ece2";
}

.icon-underline-01:before {
  content: "\ece3";
}

.icon-underline-02:before {
  content: "\ece4";
}

.icon-underline-square:before {
  content: "\ece5";
}

.icon-zoom-in:before {
  content: "\ece6";
}

.icon-zoom-out:before {
  content: "\ece7";
}

.icon-alarm-clock:before {
  content: "\ece8";
}

.icon-alarm-clock-check:before {
  content: "\ece9";
}

.icon-alarm-clock-minus:before {
  content: "\ecea";
}

.icon-alarm-clock-off:before {
  content: "\eceb";
}

.icon-alarm-clock-plus:before {
  content: "\ecec";
}

.icon-calendar:before {
  content: "\eced";
}

.icon-calendar-check-01:before {
  content: "\ecee";
}

.icon-calendar-check-02:before {
  content: "\ecef";
}

.icon-calendar-date:before {
  content: "\ecf0";
}

.icon-calendar-heart-01:before {
  content: "\ecf1";
}

.icon-calendar-heart-02:before {
  content: "\ecf2";
}

.icon-calendar-minus-01:before {
  content: "\ecf3";
}

.icon-calendar-minus-02:before {
  content: "\ecf4";
}

.icon-calendar-plus-01:before {
  content: "\ecf5";
}

.icon-calendar-plus-02:before {
  content: "\ecf6";
}

.icon-clock:before {
  content: "\ecf7";
}

.icon-clock-check:before {
  content: "\ecf8";
}

.icon-clock-fast-forward:before {
  content: "\ecf9";
}

.icon-clock-plus:before {
  content: "\ecfa";
}

.icon-clock-rewind:before {
  content: "\ecfb";
}

.icon-clock-snooze:before {
  content: "\ecfc";
}

.icon-clock-stopwatch:before {
  content: "\ecfd";
}

.icon-hourglass-01:before {
  content: "\ecfe";
}

.icon-hourglass-02:before {
  content: "\ecff";
}

.icon-hourglass-03:before {
  content: "\ed00";
}

.icon-clock-refresh:before {
  content: "\ed01";
}

.icon-watch-circle:before {
  content: "\ed02";
}

.icon-watch-square:before {
  content: "\ed03";
}

.icon-file-01:before {
  content: "\ed04";
}

.icon-file-02:before {
  content: "\ed05";
}

.icon-file-03:before {
  content: "\ed06";
}

.icon-file-04:before {
  content: "\ed07";
}

.icon-file-05:before {
  content: "\ed08";
}

.icon-file-06:before {
  content: "\ed09";
}

.icon-file-07:before {
  content: "\ed0a";
}

.icon-file-attachment-01:before {
  content: "\ed0b";
}

.icon-file-attachment-02:before {
  content: "\ed0c";
}

.icon-file-attachment-03:before {
  content: "\ed0d";
}

.icon-file-attachment-04:before {
  content: "\ed0e";
}

.icon-file-attachment-05:before {
  content: "\ed0f";
}

.icon-file-check-01:before {
  content: "\ed10";
}

.icon-file-check-02:before {
  content: "\ed11";
}

.icon-file-check-03:before {
  content: "\ed12";
}

.icon-file-download-01:before {
  content: "\ed13";
}

.icon-file-download-02:before {
  content: "\ed14";
}

.icon-file-download-03:before {
  content: "\ed15";
}

.icon-file-upload:before {
  content: "\ed16";
}

.icon-xl-file-02:before {
  content: "\ed17";
}

.icon-Icon-Stroke-1048:before {
  content: "\ed18";
}

.icon-file-heart-01:before {
  content: "\ed19";
}

.icon-file-heart-02:before {
  content: "\ed1a";
}

.icon-file-heart-03:before {
  content: "\ed1b";
}

.icon-file-minus-01:before {
  content: "\ed1c";
}

.icon-file-minus-02:before {
  content: "\ed1d";
}

.icon-file-minus-03:before {
  content: "\ed1e";
}

.icon-file-plus-01:before {
  content: "\ed1f";
}

.icon-file-plus-02:before {
  content: "\ed20";
}

.icon-file-plus-03:before {
  content: "\ed21";
}

.icon-file-question-01:before {
  content: "\ed22";
}

.icon-file-question-02:before {
  content: "\ed23";
}

.icon-file-question-03:before {
  content: "\ed24";
}

.icon-file-question-04:before {
  content: "\ed25";
}

.icon-file-x-01:before {
  content: "\ed26";
}

.icon-file-x-02:before {
  content: "\ed27";
}

.icon-file-x-03:before {
  content: "\ed28";
}

.icon-file-search-01:before {
  content: "\ed29";
}

.icon-file-search-02:before {
  content: "\ed2a";
}

.icon-file-search-03:before {
  content: "\ed2b";
}

.icon-folder:before {
  content: "\ed2c";
}

.icon-folder-check:before {
  content: "\ed2d";
}

.icon-Icon-Stroke-1070:before {
  content: "\ed2e";
}

.icon-folder-lock:before {
  content: "\ed2f";
}

.icon-Icon-Stroke-1072:before {
  content: "\ed30";
}

.icon-folder-plus:before {
  content: "\ed31";
}

.icon-folder-question:before {
  content: "\ed32";
}

.icon-folder-search:before {
  content: "\ed33";
}

.icon-folder-closed:before {
  content: "\ed34";
}

.icon-folder-x:before {
  content: "\ed35";
}

.icon-paperclip:before {
  content: "\ed36";
}

.icon-clipboard:before {
  content: "\ed37";
}

.icon-clipboard-attachment:before {
  content: "\ed38";
}

.icon-clipboard-download:before {
  content: "\ed39";
}

.icon-clipboard-check:before {
  content: "\ed3a";
}

.icon-clipboard-x:before {
  content: "\ed3b";
}

.icon-clipboard-plus:before {
  content: "\ed3c";
}

.icon-clipboard-minus:before {
  content: "\ed3d";
}

.icon-sticker-square:before {
  content: "\ed3e";
}

.icon-sticker-circle:before {
  content: "\ed3f";
}

.icon-box:before {
  content: "\ed40";
}

.icon-bus:before {
  content: "\ed41";
}

.icon-car-01:before {
  content: "\ed42";
}

.icon-car-02:before {
  content: "\ed43";
}

.icon-compass-01:before {
  content: "\ed44";
}

.icon-compass-02:before {
  content: "\ed45";
}

.icon-compass-03:before {
  content: "\ed46";
}

.icon-flag-01:before {
  content: "\ed47";
}

.icon-flag-02:before {
  content: "\ed48";
}

.icon-flag-03:before {
  content: "\ed49";
}

.icon-flag-04:before {
  content: "\ed4a";
}

.icon-flag-05:before {
  content: "\ed4b";
}

.icon-flag-06:before {
  content: "\ed4c";
}

.icon-globe-01:before {
  content: "\ed4d";
}

.icon-globe-02:before {
  content: "\ed4e";
}

.icon-globe-03:before {
  content: "\ed4f";
}

.icon-globe-04:before {
  content: "\ed50";
}

.icon-globe-05:before {
  content: "\ed51";
}

.icon-globe-06:before {
  content: "\ed52";
}

.icon-luggage-01:before {
  content: "\ed53";
}

.icon-luggage-02:before {
  content: "\ed54";
}

.icon-luggage-03:before {
  content: "\ed55";
}

.icon-map-01:before {
  content: "\ed56";
}

.icon-map-02:before {
  content: "\ed57";
}

.icon-mark:before {
  content: "\ed58";
}

.icon-marker-pin-01:before {
  content: "\ed59";
}

.icon-marker-pin-02:before {
  content: "\ed5a";
}

.icon-marker-pin-03:before {
  content: "\ed5b";
}

.icon-marker-pin-04:before {
  content: "\ed5c";
}

.icon-marker-pin-05:before {
  content: "\ed5d";
}

.icon-marker-pin-06:before {
  content: "\ed5e";
}

.icon-navigation-pointer-01:before {
  content: "\ed5f";
}

.icon-navigation-pointer-02:before {
  content: "\ed60";
}

.icon-navigation-pointer-off-01:before {
  content: "\ed61";
}

.icon-navigation-pointer-off-02:before {
  content: "\ed62";
}

.icon-passport:before {
  content: "\ed63";
}

.icon-rocket-01:before {
  content: "\ed64";
}

.icon-plane:before {
  content: "\ed65";
}

.icon-rocket-02:before {
  content: "\ed66";
}

.icon-route:before {
  content: "\ed67";
}

.icon-ticket-01:before {
  content: "\ed68";
}

.icon-ticket-02:before {
  content: "\ed69";
}

.icon-train:before {
  content: "\ed6a";
}

.icon-tram:before {
  content: "\ed6b";
}

.icon-truck-01:before {
  content: "\ed6c";
}

.icon-cloud-01:before {
  content: "\ed6d";
}

.icon-cloud-02:before {
  content: "\ed6e";
}

.icon-cloud-03:before {
  content: "\ed6f";
}

.icon-cloud-lightning:before {
  content: "\ed70";
}

.icon-cloud-moon:before {
  content: "\ed71";
}

.icon-cloud-off:before {
  content: "\ed72";
}

.icon-cloud-raining-01:before {
  content: "\ed73";
}

.icon-cloud-raining-02:before {
  content: "\ed74";
}

.icon-cloud-raining-03:before {
  content: "\ed75";
}

.icon-cloud-raining-04:before {
  content: "\ed76";
}

.icon-cloud-raining-05:before {
  content: "\ed77";
}

.icon-cloud-raining-06:before {
  content: "\ed78";
}

.icon-cloud-snowing-01:before {
  content: "\ed79";
}

.icon-cloud-snowing-02:before {
  content: "\ed7a";
}

.icon-cloud-sun-01:before {
  content: "\ed7b";
}

.icon-cloud-sun-02:before {
  content: "\ed7c";
}

.icon-cloud-sun-03:before {
  content: "\ed7d";
}

.icon-droplets-01:before {
  content: "\ed7e";
}

.icon-droplets-02:before {
  content: "\ed7f";
}

.icon-droplets-03:before {
  content: "\ed80";
}

.icon-hurricane-01:before {
  content: "\ed81";
}

.icon-hurricane-02:before {
  content: "\ed82";
}

.icon-hurricane-03:before {
  content: "\ed83";
}

.icon-lightning-01:before {
  content: "\ed84";
}

.icon-lightning-02:before {
  content: "\ed85";
}

.icon-moon-01:before {
  content: "\ed86";
}

.icon-moon-02:before {
  content: "\ed87";
}

.icon-moon-eclipse:before {
  content: "\ed88";
}

.icon-moon-star:before {
  content: "\ed89";
}

.icon-snowflake-01:before {
  content: "\ed8a";
}

.icon-snowflake-02:before {
  content: "\ed8b";
}

.icon-stars-01:before {
  content: "\ed8c";
}

.icon-stars-02:before {
  content: "\ed8d";
}

.icon-stars-03:before {
  content: "\ed8e";
}

.icon-sun:before {
  content: "\ed8f";
}

.icon-sun-setting-01:before {
  content: "\ed90";
}

.icon-sun-setting-02:before {
  content: "\ed91";
}

.icon-sun-setting-03:before {
  content: "\ed92";
}

.icon-sunrise:before {
  content: "\ed93";
}

.icon-sunset:before {
  content: "\ed94";
}

.icon-thermometer-01:before {
  content: "\ed95";
}

.icon-thermometer-02:before {
  content: "\ed96";
}

.icon-thermometer-03:before {
  content: "\ed97";
}

.icon-thermometer-cold:before {
  content: "\ed98";
}

.icon-thermometer-warm:before {
  content: "\ed99";
}

.icon-umbrella-01:before {
  content: "\ed9a";
}

.icon-umbrella-02:before {
  content: "\ed9b";
}

.icon-umbrella-03:before {
  content: "\ed9c";
}

.icon-waves:before {
  content: "\ed9d";
}

.icon-wind-01:before {
  content: "\ed9e";
}

.icon-wind-02:before {
  content: "\ed9f";
}

.icon-wind-03:before {
  content: "\eda0";
}

.icon-PDF:before {
  content: "\eda2";
}

.icon-home:before {
  content: "\eb04";
}

.icon-images:before {
  content: "\eda3";
}

.icon-camera:before {
  content: "\eda4";
}

.icon-headphones:before {
  content: "\eda5";
}

.icon-music:before {
  content: "\eda6";
}

.icon-diamonds:before {
  content: "\eda7";
}

.icon-books:before {
  content: "\eda8";
}

.icon-library:before {
  content: "\eda9";
}

.icon-file-text:before {
  content: "\edaa";
}

.icon-profile:before {
  content: "\edab";
}

.icon-folder-minus:before {
  content: "\edac";
}

.icon-folder-download:before {
  content: "\edad";
}

.icon-folder-upload:before {
  content: "\edae";
}

.icon-price-tag:before {
  content: "\edaf";
}

.icon-address-book:before {
  content: "\edb0";
}

.icon-envelop:before {
  content: "\edb1";
}

.icon-pushpin:before {
  content: "\edb2";
}

.icon-location:before {
  content: "\edb3";
}

.icon-display:before {
  content: "\edb4";
}

.icon-laptop:before {
  content: "\edb5";
}

.icon-mobile:before {
  content: "\edb6";
}

.icon-mobile2:before {
  content: "\edb7";
}

.icon-redo2:before {
  content: "\edb8";
}

.icon-forward:before {
  content: "\edb9";
}

.icon-reply:before {
  content: "\edba";
}

.icon-bubble:before {
  content: "\edbb";
}

.icon-spinner:before {
  content: "\edbc";
}

.icon-spinner2:before {
  content: "\edbd";
}

.icon-spinner3:before {
  content: "\edbe";
}

.icon-spinner4:before {
  content: "\edbf";
}

.icon-shrink2:before {
  content: "\edc0";
}

.icon-key:before {
  content: "\edc1";
}

.icon-key2:before {
  content: "\edc2";
}

.icon-lock:before {
  content: "\edc3";
}

.icon-unlocked:before {
  content: "\edc4";
}

.icon-wrench:before {
  content: "\edc5";
}

.icon-equalizer:before {
  content: "\edc6";
}

.icon-equalizer2:before {
  content: "\edc7";
}

.icon-cog:before {
  content: "\edc8";
}

.icon-cogs:before {
  content: "\edc9";
}

.icon-hammer:before {
  content: "\edca";
}

.icon-magic-wand:before {
  content: "\edcb";
}

.icon-aid-kit:before {
  content: "\edcc";
}

.icon-bug:before {
  content: "\edcd";
}

.icon-pie-chart:before {
  content: "\edce";
}

.icon-stats-dots:before {
  content: "\edcf";
}

.icon-stats-bars:before {
  content: "\edd0";
}

.icon-stats-bars2:before {
  content: "\edd1";
}

.icon-trophy:before {
  content: "\edd2";
}

.icon-gift:before {
  content: "\edd3";
}

.icon-glass:before {
  content: "\edd4";
}

.icon-glass2:before {
  content: "\edd5";
}

.login-outer .content-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../Images/pattern.svg);
  background-repeat: no-repeat;
  background-position: right 330px;
  background-size: 850px;
  height: calc(100vh - 64px);
}
.login-outer .content-outer .login-sec {
  max-width: 1150px;
  padding: 100px 0;
}
.login-outer .content-outer .login-sec .left-content {
  padding-right: 200px;
}
.login-outer .content-outer .login-sec .right-content {
  padding: 0 55px;
}
.login-outer .content-outer .login-sec .right-content p {
  color: #475760;
}

.header {
  box-shadow: 0px 0px 25px 0px rgba(45, 36, 171, 0.203);
}

.main-outer {
  height: 100vh;
}

.profile-drop-down {
  border-radius: 20px;
}
.profile-drop-down .profile-header {
  border-bottom: 1px solid #e1eef3;
  padding: 20px 10px;
}
.profile-drop-down .profile-header .profile-user {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.profile-drop-down .profile-header .profile-text h6 {
  font-size: 19px;
  color: #122028;
}
.profile-drop-down .btn-admin {
  border: 1px solid #c3bffb;
  background: #ecebfe;
  color: #3f32f1;
  font-size: 14px;
  padding: 2px 12px;
  border-radius: 50px;
  height: 30px;
  line-height: 22px;
}
.profile-drop-down .btn-admin:hover {
  background: #c3bffb;
}
.profile-drop-down .profile-body ul li button {
  background: #fff;
  border-radius: 8px;
}
.profile-drop-down .profile-body ul li button i {
  font-size: 20px;
}
.profile-drop-down .profile-body ul li button:hover {
  background: #ebf4f7;
}
.profile-drop-down .profile-body ul li a {
  color: #122028;
  border-radius: 8px;
}
.profile-drop-down .profile-body ul li a:hover {
  background: #ebf4f7;
}
.profile-drop-down .profile-body ul li a i {
  font-size: 20px;
}

.user-profile-wid {
  width: 400px;
}

.content-outer {
  overflow: auto;
}

.landing-user {
  background: url(../Images/landing-user.svg) no-repeat;
  min-height: 268px;
  background-size: cover;
  background-position: center;
}

.landing-user-inner {
  background: url(../Images/landing-user-inner.png) no-repeat top right;
  min-height: 112px;
  background-size: contain;
}

.head-text p {
  color: #475760;
  line-height: 25px;
}

.project-detail .text-para1-reg {
  line-height: 25px;
}

.project-info p {
  color: #04a344;
}

.proj-view {
  background: #F6F5FF;
  border: 1px solid #ECEBFA;
}

.breadcrum-epm ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.breadcrum-epm ul li {
  color: #122028;
  display: inline-block;
  list-style: none;
  font-size: 16px;
}
.breadcrum-epm ul li .left-arrow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.breadcrum-epm ul li .right-arrow-size {
  font-size: 12px;
  color: #bedae5;
}
.breadcrum-epm ul li .blue-icon {
  color: #3f32f1;
}
.breadcrum-epm ul li .blue-text {
  color: #3f32f1;
}
.breadcrum-epm ul li a {
  color: #3f32f1;
}

.selected {
  background: #cbe1ea;
  border-radius: 8px;
  padding: 12px;
  color: #122028 !important;
  margin-left: 12px;
}

.lightgrey-md-color {
  color: #adc6d0;
}

.text-blue {
  color: #3f32f1;
}

.table-responsive {
  overflow: auto;
  max-height: calc(100vh - 484px);
}

.all-project {
  height: calc(100vh - 201px);
}
.all-project .table-responsive {
  max-height: calc(100vh - 287px);
}

.epm-table thead {
  background: #ecebfe;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.epm-table thead tr th {
  font-weight: 600;
  font-size: 14px;
  color: #122028;
  padding: 8px;
}
.epm-table thead tr td {
  font-size: 14px;
  color: #122028;
  padding: 8px;
  font-weight: 400;
}
.epm-table tbody tr {
  border-bottom: 1px solid #e1eef3;
}
.epm-table tbody tr td {
  font-size: 14px;
  color: #122028;
  padding: 10px;
}
.epm-table tbody tr td .btn-outline {
  padding: 8px;
}
.epm-table .btn-source {
  background: #f9e6fe;
  border: 1px solid #ebb1fd;
  border-radius: 50px;
  padding: 8px 12px;
  color: #be02f8;
  font-size: 14px;
  font-weight: 600;
}
.epm-table .btn-source:hover {
  background: #ebb1fd;
}
.epm-table .btn-complete {
  background: #e6fcef;
  border: 1px solid #b2f7ce;
  border-radius: 50px;
  padding: 8px 12px;
  color: #037e35;
  font-size: 14px;
  font-weight: 600;
}
.epm-table .btn-complete:hover {
  background: #b2f7ce;
}
.epm-table .btn-review {
  background: #ecebfe;
  border: 1px solid #c3bffb;
  border-radius: 50px;
  padding: 8px 12px;
  color: #3f32f1;
  font-size: 14px;
  font-weight: 600;
}
.epm-table .btn-review:hover {
  background: #c3bffb;
}

.pagination {
  border: 1px solid #e1eef3;
  border-radius: 8px;
  padding: 8px;
}
.pagination ul li {
  margin: 0;
  padding: 0;
}
.pagination ul li a {
  text-align: center;
  color: #122028;
  border-radius: 4px;
  font-size: 14px;
  padding: 4px 8px;
}
.pagination ul li a i {
  font-size: 12px;
  color: #122028;
  margin: 4px 4px 0 0;
}
.pagination ul li a:hover {
  background: #122028;
  color: #fff;
}
.pagination ul li a.no-gap {
  padding: 0px;
}

.active-pagination a {
  background: #122028;
  color: #fff !important;
  border-radius: 8px;
  font-size: 14px;
  padding: 4px 8px;
}
.active-pagination a:hover {
  background: #122028;
  color: #fff;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  background: #fff;
}

.bid-body {
  height: 510px;
  overflow: hidden;
  overflow-y: scroll;
}

.bid-focus {
  border: 1px solid #3f32f1 !important;
  overflow: hidden;
}
.bid-focus .bid-header {
  background: #ecebfe;
  border-bottom: 1px solid #c3bffb;
}
.bid-focus .bid-header .text-para2-reg {
  color: #3f32f1;
  font-weight: 600;
}

.light-bdr {
  border: 1px solid #e1eef3;
}

.flex-right-dir {
  flex-direction: row-reverse;
}

.edit-data .edit-info {
  font-size: 14px;
  color: #475760;
}

.color-red {
  color: #f5222d;
}

.color-black {
  color: #626262;
}

.color-green {
  color: #04a344;
}

.color-blue {
  color: #3f32f1 !important;
}

.border-bottom-light {
  border-bottom: 1px solid #e1eef3;
}

.light-gray-50 {
  background: #f9fbfc;
}

.btn-attach {
  background: #d3e6ee;
  font-size: 14px;
}

.error-alert-danger,
.validation-summary-errors,
.validation-message {
  color: #f74e57;
  font-size: 14px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container {
  border: 1px solid #bedae5 !important;
  border-radius: 6px;
  min-height: 42px;
}

.select2-container--default .select2-selection--multiple {
  border: none !important;
}

.info-icon img {
  width: 80px;
}

.color-black {
  color: #192d38 !important;
}

.modal-info .modal-dialog {
  width: 840px;
}

.add-user-popover {
  width: 450px;
  position: absolute;
  right: 0px;
  top: 0px;
  background: #fff;
  height: 100%;
}
.add-user-popover textarea {
  resize: none;
}

.form-body {
  max-height: calc(100vh - 187px);
  overflow-y: auto;
  padding-bottom: 20px;
  height: 100%;
}

.des-sm-height {
  height: 160px;
}

.bid-highlight {
  background: #efbabd;
}

@media (min-width: 425px) and (max-width: 768px) {
  .landing-user {
    background-position: 70% bottom;
  }
}
@media (min-width: 320px) and (max-width: 425px) {
  .landing-user .landing-btn {
    margin-top: 20px;
    flex-wrap: wrap;
    min-height: unset;
  }
  .proj-view .project {
    flex-wrap: wrap;
    gap: 12px;
  }
  .breadcrum-epm ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */