@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@100;200;300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --bgBody-clr:rgba(64, 61, 69, 1);
  --bgCmn-clr:#191C24;
  --line-clr: #42434a;
  --hover-clr: #222533;
  --text-clr: #e6e6ef;
  --accent-clr: #5e63ff;
  --secondary-text-clr: #b0b3c1;
  --popupBg:rgba(25, 28, 36, 1);
  --clrRed:rgba(224, 67, 112, 1);
  --ClrinputBdr:#A9A9A9;
  --ClrError:rgba(255, 0, 0, 1);
  --color-white: #ffffff;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-weight: 300;
  line-height: 1.4;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
textarea,
select {
  margin: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

textarea {
  overflow: auto;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}

mark {
  background: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Poppins", serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  width: 100%;
  min-height: 100%;
  color: #000000;
  background-color: var(--bgBody-clr);
}

a,
button,
input {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

p,
li {
  margin-bottom: 0;
}

button {
  border: 0;
  background-color: transparent;
}

*:focus {
  outline: none;
}

.content-wrapper {
  width: 100%;
  max-width: 1240px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}

.desk-visible {
  display: block;
}

.only-mobile {
  display: none;
}

.hide-mobile-tablet {
  display: block;
}

.only-mobile-tablet {
  display: none;
}

@media (max-width: 1023px) {
  .content-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hide-mobile-tablet {
    display: none;
  }
  .only-mobile-tablet {
    display: block;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .desk-visible {
    display: none;
  }
  .only-mobile {
    display: block;
  }
}
.aklr-btn {
  background-color: #E04370;
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  transition: 0.3s ease-in-out;
  height: 50px;
  border: none !important;
}
.aklr-btn a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aklr-btn a:hover {
  color: #fff;
}
.aklr-btn:hover {
  background-color: #F41253;
  color: #fff;
}
.aklr-btn:focus {
  border: 0px solid #fff !important;
}
.aklr-btn.aklr-btn--wht {
  background-color: #fff;
  border: 1px solid transparent;
  color: #E04370;
  border: none;
}
.aklr-btn--medium {
  border-radius: 10px;
  height: 50px;
}
.aklr-btn--medium-tran {
  border: 1px solid var(--clrRed) !important;
  background-color: transparent;
}
.aklr-btn--medium-tran:focus {
  border: 1px solid var(--clrRed) !important;
}
.aklr-btn--mediumswap {
  border-radius: 10px;
  background-color: #F41253;
}
.aklr-btn--mediumswap:hover {
  background-color: #E04370;
}
.aklr-btn--small {
  border-radius: 10px;
  height: 40px;
}
.aklr-btn--small-tran {
  border: 1px solid var(--clrRed) !important;
  background-color: transparent;
}
.aklr-btn--small-tran:focus {
  border: 1px solid var(--clrRed) !important;
}
.aklr-btn--icon {
  width: auto;
  display: inline-flex;
  padding: 0px 12px;
  align-items: center;
  border-radius: 10px;
  height: 35px;
}
.aklr-btn--icon-img {
  width: 15px;
  margin-right: 6px;
  display: flex;
}
.aklr-btn--icon-img img {
  width: 100%;
}
.aklr-btn--icon--inv {
  background-color: transparent;
}
.aklr-btn--dot {
  display: flex;
  padding: 5px 8px 5px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px dashed #FFF;
  background-color: transparent;
  height: auto;
  font-size: 13px;
  line-height: 13px;
}
.aklr-btn--dot:hover {
  background-color: transparent;
  border: 1px dashed #F41253;
}
.aklr-btn--white {
  display: flex;
  padding: 5px 8px 5px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background-color: #fff;
  color: #000;
  height: auto;
  font-size: 13px;
  line-height: 13px;
}

.aklr-imgbtn {
  background-color: #E04370;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  transition: 0.3s ease-in-out;
  height: 50px;
}
.aklr-imgbtn:hover {
  background-color: #F41253;
}
.aklr-imgbtn__img {
  width: 15px;
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.aklr-imgbtn__img img {
  width: 100%;
}
.aklr-imgbtn button {
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aklr-imgbtn input {
  background-color: #E04370;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  transition: 0.3s ease-in-out;
  height: 50px;
  color: #fff;
}
.aklr-imgbtn input:hover {
  background-color: #F41253;
}
.aklr-imgbtn input:focus {
  border: 0px solid #fff !important;
}

.aklr-combobtn {
  display: flex;
  gap: 15px;
}
.aklr-combobtn__white {
  background-color: #fff;
  padding: 8px 16px;
  border: 1px solid #E04370;
  color: #65616F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}
.aklr-combobtn__white:hover {
  text-decoration: none;
  color: #E04370;
  border: 1px solid #F41253;
}
.aklr-combobtn .aklr-btn--icon {
  padding: 8px 16px;
  height: unset;
}

@media (max-width: 767px) {
  .aklr-btn button {
    font-size: 14px;
    line-height: 22px;
  }
}
.aklr-tilte {
  margin-bottom: 15px;
}
.aklr-tilte--line .aklr-tilte__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}
.aklr-tilte__popuphead {
  font-size: 16px;
  color: #E04370;
  font-weight: 500;
  line-height: 24px;
}

.aklr-authhead {
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
  color: #fff;
  padding: 15px 0px 10px 0px;
  text-align: center;
}
.aklr-authhead__suba {
  font-size: 16px;
  line-height: 24px;
  color: #A9A9A9;
  font-weight: 400;
  padding-bottom: 15px;
}
.aklr-authhead__subb {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
}
.aklr-authhead__subc {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding-bottom: 40px;
}
.aklr-authhead__subtxt, .aklr-authhead__combosubtxta {
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  font-weight: 400;
  text-align: center;
}
.aklr-authhead__combosubtxt {
  display: flex;
  align-items: baseline;
  margin-top: 20px;
  justify-content: center;
}
.aklr-authhead__combosubtxtb {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  color: #A9A9A9;
}
.aklr-authhead__combosubtxtc {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  color: #F41253;
}
.aklr-authhead__combosubtxtc a {
  color: #F41253;
}
.aklr-authhead__combosubtxtc a:hover {
  color: #f43f72;
}
.aklr-authhead__combosubtxtc:hover {
  color: #f43f72;
}
.aklr-authhead__ntext {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  font-weight: 500;
  padding: 15px 0px;
}
.aklr-authhead__incorrrect {
  font-size: 12px;
  line-height: 20px;
  color: #F00;
  margin-top: 5px;
  margin-bottom: -10px;
  display: flex;
  justify-content: center;
}
.aklr-authhead__linedhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.aklr-authhead__linedhead .title {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
  font-weight: 500;
}
.aklr-authhead__linedhead .title-section {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 10px;
}
.aklr-authhead__linedhead .underline {
  width: 60px;
  height: 2px;
  background-color: #fff;
  margin-top: 8px;
  border-radius: 4px;
}
.aklr-authhead__linedhead .icon-section {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  width: 30%;
}
.aklr-authhead__linedhead .icona {
  width: 70%;
  cursor: pointer;
  padding: 3px;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.aklr-authhead__linedhead .icona img {
  width: 100%;
}
.aklr-authhead__linedhead .icona:hover {
  background-color: #2a2f3c;
  border-radius: 5px;
}
.aklr-authhead__linedhead .icona::after {
  display: none;
}
.aklr-authhead__linedhead .icona.show {
  background-color: #2a2f3c !important;
}
.aklr-authhead__linedhead .iconb {
  width: 70%;
  cursor: pointer;
  padding: 3px;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.aklr-authhead__linedhead .iconb img {
  width: 100%;
}
.aklr-authhead__linedhead .iconb:hover {
  background-color: #2a2f3c;
  border-radius: 5px;
}
.aklr-authhead__linedhead .iconc {
  width: 70%;
  cursor: pointer;
  padding: 3px;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.aklr-authhead__linedhead .iconc img {
  width: 100%;
}
.aklr-authhead__linedhead .iconc:hover {
  background-color: #2a2f3c;
  border-radius: 5px;
}
.aklr-authhead__linedhead .iconc::after {
  display: none;
}
.aklr-authhead__linedhead .icondrpdowna {
  display: flex;
  align-items: center;
  position: relative;
}
.aklr-authhead__linedhead .icondrpdowna .btn-secondary {
  background-color: unset;
  border: 0;
  box-shadow: unset;
}
.aklr-authhead__linedhead .icondrpdowna .btn-secondary:hover {
  background-color: #2a2f3c;
  border-radius: 5px;
}
.aklr-authhead__linedhead .icondrpdowna .icona-menu {
  background-color: #fff;
  padding: 6px;
  border-radius: 8px;
}
.aklr-authhead__linedhead .icondrpdowna .icona-menu.show {
  transition: 0.3s ease-in-out;
  top: 100% !important;
  transform: translateX(-75%) !important;
}
.aklr-authhead__linedhead .icondrpdowna .icona-menu .dropdown-item {
  color: #2a2f3c;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
}
.aklr-authhead__linedhead .icondrpdowna .icona-menu .dropdown-item:hover {
  background-color: #f43f72;
  color: #fff;
}
.aklr-authhead__linedhead .icondrpdownb {
  display: flex;
  align-items: center;
}
.aklr-authhead__linedhead .icondrpdownc {
  display: flex;
  align-items: center;
}
.aklr-authhead__linedhead .icondrpdownc .btn-secondary {
  background-color: unset;
  border: 0;
  box-shadow: unset;
}
.aklr-authhead__linedhead .icondrpdownc .btn-secondary:hover {
  background-color: #2a2f3c;
}
.aklr-authhead__linedhead .icondrpdownc .icona-menu {
  background-color: #000;
  padding: 6px;
  border-radius: 8px;
}
.aklr-authhead__linedhead .icondrpdownc .icona-menu.show {
  transition: 0.3s ease-in-out;
  top: 100% !important;
  transform: translateX(-75%) !important;
}
.aklr-authhead__linedhead .icondrpdownc .icona-menu .dropdown-item {
  color: #fff;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
}
.aklr-authhead__linedhead .icondrpdownc .icona-menu .dropdown-item:hover {
  background-color: #2a2f3c;
  color: #FFF;
}
.aklr-authhead__linedhead-SubHead {
  padding: 10px 0 0;
  font-size: 14px;
  color: #fff;
}
.aklr-authhead__linedhead--text {
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .aklr-authhead {
    font-size: 24px;
  }
  .aklr-authhead__suba {
    font-size: 14px;
    line-height: 22px;
  }
}
.aklr-icntxtcombo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.aklr-icntxtcombo.black {
  background-color: #000;
}
.aklr-icntxtcombo__img {
  width: 5%;
  display: flex;
}
.aklr-icntxtcombo__img img {
  width: 100%;
}
.aklr-icntxtcombo__text {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  position: relative;
}
.aklr-icntxtcombo__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}
.aklr-icntxtcombo__text:hover::after {
  width: 100%;
}
.aklr-icntxtcombo__text:hover {
  color: #fff;
}

.aklr-customSelect {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  /* Visible state for options */
}
.aklr-customSelect__out {
  position: relative;
}
.aklr-customSelect__trigger {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 40px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  color: #fff;
  font-size: 14px;
  width: 100%;
  height: 50px;
  margin-bottom: 16px;
}
.aklr-customSelect__arrow {
  width: 14px;
  transition: all 0.6s;
}
.aklr-customSelect__arrow img {
  width: 100%;
}
.aklr-customSelect__arrow svg {
  width: 14px;
}
.aklr-customSelect__arrow svg path {
  stroke: #fff;
}
.aklr-customSelect.open .aklr-customSelect__arrow {
  transform: rotatez(-180deg);
  transition: all 0.6s;
}
.aklr-customSelect.open .aklr-customSelect__arrow svg path {
  stroke: var(--clrRed);
}
.aklr-customSelect__options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-height: 0;
  z-index: 10;
}
.aklr-customSelect.open .aklr-customSelect__options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  min-height: 0;
  background-color: #fff;
}
.aklr-customSelect__option {
  padding: 10px;
  transition: background-color 0.3s ease;
  font-size: 12px;
}
.aklr-customSelect__option:hover {
  background-color: #E04370;
}
.aklr-customSelect--small .aklr-customSelect__trigger {
  background-color: rgb(87, 87, 87);
  border: none;
  height: auto;
  padding: 2px 8px;
  font-size: 12px;
}
.aklr-customSelect--small .aklr-customSelect__options {
  top: 25px;
}
.aklr-customSelect--small .aklr-customSelect__option {
  cursor: pointer;
  list-style: none;
  border-radius: 7px;
  width: 100%;
  display: flex;
  font-size: 11px;
  color: #000 !important;
  padding: 3px 3px;
}
.aklr-customSelect--small .aklr-customSelect__option:hover {
  color: #fff !important;
}
.aklr-customSelect--small.open .aklr-customSelect__trigger {
  background-color: #fff;
  color: var(--clrRed);
}

@media (max-width: 767px) {
  .aklr-customSelect__trigger {
    width: 100%;
  }
}
.aklr-input {
  background-color: transparent;
  width: 100%;
  margin-bottom: 20px;
  caret-color: white;
}
.aklr-input__text, .aklr-input .aklr-passwordinput {
  background-color: transparent;
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 40px;
  color: #fff;
  font-size: 14px;
  width: 100%;
  height: 50px;
}
.aklr-input__text::-moz-placeholder, .aklr-input .aklr-passwordinput::-moz-placeholder {
  color: rgb(255, 255, 255);
  font-size: 14px;
  opacity: 0.5;
}
.aklr-input__text::placeholder, .aklr-input .aklr-passwordinput::placeholder {
  color: rgb(255, 255, 255);
  font-size: 14px;
  opacity: 0.5;
}
.aklr-input__text--dash, .aklr-input .aklr-passwordinput--dash {
  border-radius: 10px;
  border: 1px solid var(--ClrinputBdr);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
}
.aklr-input__text--dash:focus, .aklr-input .aklr-passwordinput--dash:focus {
  border: 1px solid var(--ClrinputBdr) !important;
}
.aklr-input__text--dash::-moz-placeholder, .aklr-input .aklr-passwordinput--dash::-moz-placeholder {
  color: rgb(255, 255, 255);
  font-size: 14px;
  opacity: 0.5;
}
.aklr-input__text--dash::placeholder, .aklr-input .aklr-passwordinput--dash::placeholder {
  color: rgb(255, 255, 255);
  font-size: 14px;
  opacity: 0.5;
}
.aklr-input__label {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 5px;
}
.aklr-input__label-error {
  font-size: 12px;
  color: var(--ClrError);
}
.aklr-input.psword, .aklr-input .psword {
  position: relative;
}
.aklr-input.psword .aklr-passwordtoggle, .aklr-input .psword .aklr-passwordtoggle {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}
.aklr-input.psword .eye-icon_visible, .aklr-input .psword .eye-icon_visible {
  width: 24px;
  height: 24px;
  stroke: #d9d9d9;
  display: inline-block;
}
.aklr-input.psword .eye-icon_hidden, .aklr-input .psword .eye-icon_hidden {
  width: 24px;
  height: 24px;
  display: none;
}
.aklr-input--nostyle {
  width: 100%;
  height: 100% !important;
  background-color: transparent;
  border: none;
  color: #fff !important;
}
.aklr-input--nostyle:focus {
  border: none !important;
}
.aklr-input--nostyle::-moz-placeholder {
  color: rgb(255, 255, 255);
  font-size: 14px;
  opacity: 0.5;
}
.aklr-input--nostyle::placeholder {
  color: rgb(255, 255, 255);
  font-size: 14px;
  opacity: 0.5;
}

input:focus {
  border: 1px solid #fff !important;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  -webkit-box-shadow: inset 3px 0px 0px 0px transparent !important;
  -webkit-text-fill-color: white !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.aklr-perctngetxt {
  font-size: 16px;
  line-height: 24px;
  padding: 6px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
.aklr-perctngetxt.green {
  color: #22BB33;
  background-color: rgba(34, 187, 51, 0.3019607843);
}
.aklr-perctngetxt.red {
  color: #FF4C51;
  background-color: rgba(255, 76, 81, 0.3019607843);
}
.aklr-perctngetxt.curve-grn {
  color: #22BB33;
  background-color: rgba(34, 187, 51, 0.3019607843);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 14px;
}
.aklr-perctngetxt.curve-red {
  color: #FF4C51;
  background-color: rgba(255, 76, 81, 0.3019607843);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 14px;
}

.aklr-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.aklr-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.aklr-switch input:checked + .aklr-switch-slider {
  background-color: var(--clrRed);
}
.aklr-switch input:checked + .aklr-switch-slider:before {
  transform: translateX(26px);
}
.aklr-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(233, 199, 208);
  transition: 0.4s;
  border-radius: 34px;
}
.aklr-switch-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.aklr-switch__wrap {
  display: flex;
}
.aklr-switch__text {
  padding-left: 10px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.aklr-switch__text-head {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
.aklr-switch__text-SubHead {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}

.aklr-ckBox {
  align-items: center;
  width: 25px;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.aklr-ckBox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.aklr-ckBox input:checked ~ .aklr-ckBox-checkmark {
  background-color: var(--clrRed);
}
.aklr-ckBox input:checked ~ .aklr-ckBox-checkmark:after {
  display: block;
}
.aklr-ckBox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 5px;
}
.aklr-ckBox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.aklr-ckBox-checkmark:after {
  left: 9px;
  top: 2px;
  width: 7px;
  height: 16px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.aklr-ckBox:hover input:checked ~ .aklr-ckBox-checkmark {
  background-color: var(--clrRed);
}
.aklr-ckBox__wt {
  width: auto !important;
  height: 20px;
  display: flex;
}
.aklr-ckBox__txt {
  color: #fff;
  font-size: 13px;
  margin-left: 35px;
}

.im-tags {
  border: 1px solid rgb(212, 62, 144);
  background: #342513;
  display: inline-flex;
  padding: 5px 8px 5px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 12px;
  color: #D43E90;
  line-height: 12px;
  margin: 0px 6px 6px 0px;
}
.im-tags small {
  padding-left: 5px;
  cursor: pointer;
}
.im-tags small svg {
  width: 10px;
  fill: #D43E90;
}
.im-tags--yellow {
  border: 1px solid #FFAA59;
  background: #342513;
  color: #FFAA59;
}
.im-tags--yellow small svg {
  fill: #FFAA59;
}
.im-tags--more {
  border: none;
  background: #595959;
  color: #fff;
}
.im-tags--more a {
  color: #fff;
}
.im-tags--more:hover {
  background: #D43E90;
  color: #fff !important;
}
.im-tags__wrap {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
}

.aklr-DropDown {
  position: relative;
  display: inline-flex;
}
.aklr-DropDown__link {
  width: 25px;
  display: inline-block;
}
.aklr-DropDown__link img {
  width: 100%;
}
.aklr-DropDown .dropdown-menu {
  background-color: #fff;
  padding: 6px;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}
.aklr-DropDown .dropdown-item {
  color: #2a2f3c;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
}
.aklr-DropDown .dropdown-item:hover {
  background-color: #f43f72;
  color: #fff;
}
.aklr-DropDown--dark .dropdown-menu {
  background-color: #000;
}
.aklr-DropDown--dark .dropdown-item {
  color: #fff;
}
.aklr-DropDown--dark .dropdown-item:hover {
  background-color: #2a2f3c;
  color: #FFF;
}
.aklr-DropDown--dark .dropdown-item a {
  position: relative;
}

.aklr-title {
  display: flex;
  position: relative;
  padding-bottom: 10px;
}
.aklr-title__head {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
.aklr-title__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}
.aklr-title__head-sub {
  padding: 0px 0 0;
  font-size: 10px;
  color: rgb(169, 169, 169);
  margin-bottom: 10px;
}
.aklr-title__head-sub strong {
  color: #fff;
}
.aklr-title__head-b {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
.aklr-title .aklr-tooltip {
  border-radius: 50%;
  margin-left: 4px;
}

.aklr-tooltip {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
}
.aklr-tooltip img {
  width: 100%;
}
.aklr-tooltip__text {
  visibility: hidden;
  width: 120px;
  font-size: 9px;
  font-weight: normal;
  background-color: #63656a;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 125%;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 5px;
}
.aklr-tooltip:hover .aklr-tooltip__text {
  visibility: visible;
  opacity: 1;
}
.aklr-tooltip__click {
  position: relative;
  width: 25px;
  height: 25px;
  margin-left: 15px;
  background-color: #22BB33;
  border-radius: 50%;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.aklr-tooltip__click button {
  color: #fff;
  font-size: 12px;
}
.aklr-tooltip__click-text {
  visibility: hidden;
  width: 80px;
  font-size: 9px;
  font-weight: normal;
  background-color: #63656a;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 5px;
}
.aklr-tooltip__click.show .aklr-tooltip__click-text {
  visibility: visible;
  opacity: 1;
}

.aklr-authentcard {
  width: 35%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.25);
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  position: relative;
}
.aklr-authentcard__header {
  position: absolute;
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0px;
}
.aklr-authentcard__header-close {
  width: 20px;
  transition: all 0.6s ease;
  display: flex;
}
.aklr-authentcard__header-close img {
  width: 100%;
}
.aklr-authentcard__header-close:hover {
  scale: 1.1;
  transition: all 0.6sec;
}
.aklr-authentcard__header-back {
  width: 20px;
  transition: all 0.6s ease;
  display: flex;
}
.aklr-authentcard__header-back img {
  width: 100%;
}
.aklr-authentcard__header-back:hover {
  scale: 1.1;
  transition: all 0.6sec;
}
.aklr-authentcard__header-back button {
  padding: 0px;
  margin: 0px;
}
.aklr-authentcard__crdlogo {
  width: 15%;
}
.aklr-authentcard__crdlogo img {
  width: 100%;
}
.aklr-authentcard__cardwrap {
  padding: 45px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.aklr-authentcard__input {
  background-color: transparent;
  width: 100%;
  padding-bottom: 20px;
}
.aklr-authentcard__input input {
  background-color: transparent;
  border: 1px solid #E04370;
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  width: 100%;
}
.aklr-authentcard__input input::-moz-placeholder {
  color: #fff;
  font-size: 14px;
}
.aklr-authentcard__input input::placeholder {
  color: #fff;
  font-size: 14px;
}
.aklr-authentcard__codeinput {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px 0px 0px;
}
.aklr-authentcard__codeinput input {
  width: 50px;
  height: 50px;
  border: 1px solid #E04370;
  border-radius: 10px;
  text-align: center;
  font-size: 24px;
  margin: 0 16px;
  outline: none;
  background-color: transparent;
  color: #fff;
  font-weight: 500;
}
.aklr-authentcard__codeinput--incorrect input {
  border: 1px solid #F00 !important;
}
.aklr-authentcard__comboitems {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aklr-authentcard__comboitems .aklr-icntxtcombo__img {
  width: 20%;
}
.aklr-authentcard__enterPass {
  margin-top: 10px;
  width: 100%;
}
.aklr-authentcard__enterPass .aklr-input {
  margin-bottom: 0px;
}
.aklr-authentcard__enterPass .aklr-btn {
  margin-top: 20px;
  background-color: #e56489;
}
.aklr-authentcard__enterPass .aklr-btn:hover {
  background-color: #E04370;
}
.aklr-authentcard__enterPass--incorrect .aklr-input__text, .aklr-authentcard__enterPass--incorrect .aklr-passwordinput {
  border: 1px solid #F00 !important;
}
.aklr-authentcard__loading {
  width: 185px;
}
.aklr-authentcard__loading img {
  width: 100%;
}
.aklr-authentcard__imgconsole {
  margin-bottom: 30px;
  margin-top: 10px;
  width: 65%;
}
.aklr-authentcard__imgconsole img {
  width: 100%;
}
.aklr-authentcard__imgconsoleb {
  width: 30%;
  padding: 15px 0px;
}
.aklr-authentcard__imgconsoleb img {
  width: 100%;
}
.aklr-authentcard button:disabled,
.aklr-authentcard button[disabled] {
  display: none;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .aklr-authentcard {
    width: 60%;
  }
}
@media (max-width: 1023px) {
  .aklr-authentcard {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .aklr-authentcard {
    width: 100%;
  }
  .aklr-authentcard__cardwrap {
    padding: 30px 20px;
  }
}
.aklr-welcometile {
  background-color: #191C24;
  padding: 25px 0px;
  border-radius: 20px;
  width: 100%;
}
.aklr-welcometile__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.aklr-welcometile__head {
  font-size: 38px;
  line-height: 56px;
  color: #fff;
  font-weight: 500;
}
.aklr-welcometile__txt {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
}
.aklr-welcometile__rimg {
  width: 90%;
}
.aklr-welcometile__rimg img {
  width: 100%;
}
.aklr-welcometile__left {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aklr-welcometile__right {
  width: 40%;
}

@media (max-width: 767px) {
  .aklr-welcometile {
    padding: 20px 15px;
  }
  .aklr-welcometile__head {
    font-size: 24px;
    line-height: 32px;
  }
  .aklr-welcometile__txt {
    font-size: 14px;
    line-height: 22px;
  }
}
.aklr-registerscrd {
  background-color: #191C24;
  padding: 20px;
  border-radius: 20px;
}
.aklr-registerscrd .aklr-authhead__linedhead .icon {
  width: 45%;
}
.aklr-registerscrd__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aklr-registerscrd__number {
  font-size: 38px;
  line-height: 48px;
  color: #fff;
  font-weight: 600;
}
.aklr-registerscrd__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0px;
}
.aklr-registerscrd__percentage {
  font-size: 14px;
  font-weight: 400;
  color: #22BB33;
  background-color: rgba(34, 187, 51, 0.3019607843);
  padding: 2px 6px;
  border-radius: 5px;
}
.aklr-registerscrd__txt {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  font-weight: 400;
}

.aklr-cntryregstrcard {
  background-color: #191C24;
  width: 45%;
  padding: 20px;
  border-radius: 20px;
}
.aklr-cntryregstrcard__secwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}
.aklr-cntryregstrcard__secwrap:last-child {
  padding-bottom: 0;
}
.aklr-cntryregstrcard__subhead {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 15px 0px;
}
.aklr-cntryregstrcard__subtxt {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 20px;
}
.aklr-cntryregstrcard__dtlstxta {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  font-weight: 500;
}
.aklr-cntryregstrcard__dtlstxtb {
  font-size: 15px;
  color: #fff;
  line-height: 23px;
  font-weight: 400;
}
.aklr-cntryregstrcard__percntgetxt {
  font-size: 20px;
  font-weight: 500;
  width: 20%;
  display: flex;
  justify-content: center;
}
.aklr-cntryregstrcard__percntgetxt.green {
  color: #22BB33;
}
.aklr-cntryregstrcard__percntgetxt.red {
  color: #FF4C51;
}
.aklr-cntryregstrcard__cntryimg {
  width: 13%;
}
.aklr-cntryregstrcard__cntryimg img {
  width: 100%;
}
.aklr-cntryregstrcard__arwimg {
  width: 5%;
}
.aklr-cntryregstrcard__arwimg img {
  width: 100%;
}
.aklr-cntryregstrcard__dtls {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .aklr-cntryregstrcard__percntgetxt {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .aklr-cntryregstrcard .aklr-authhead__linedhead .title-section {
    width: 60%;
  }
  .aklr-cntryregstrcard .aklr-authhead__linedhead .icon {
    width: 30%;
  }
  .aklr-cntryregstrcard__percntgetxt {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .aklr-cntryregstrcard {
    width: 90%;
  }
  .aklr-cntryregstrcard__subhead {
    font-size: 14px;
    line-height: 22px;
  }
  .aklr-cntryregstrcard__dtlstxta {
    font-size: 14px;
    line-height: 22px;
  }
  .aklr-cntryregstrcard__dtlstxtb {
    font-size: 13px;
    line-height: 21px;
  }
  .aklr-cntryregstrcard__percntgetxt {
    font-size: 16px;
  }
  .aklr-cntryregstrcard .aklr-authhead__linedhead .title-section {
    width: 60%;
  }
  .aklr-cntryregstrcard .aklr-authhead__linedhead .icon {
    width: 30%;
  }
}
.aklr-circlechrtcrd {
  background-color: #191C24;
  width: 30%;
  padding: 20px;
  border-radius: 10px;
}
.aklr-circlechrtcrd.aklr-circlechrtcrd-usereng .aklr-circlechrtcrd__left {
  padding-top: 20px;
}
.aklr-circlechrtcrd.aklr-circlechrtcrd-usereng .aklr-circlechrtcrd__subtxt {
  width: 90%;
}
.aklr-circlechrtcrd__counts {
  font-size: 28px;
  line-height: 42px;
  color: #fff;
  font-weight: 500;
  padding: 10px 0px;
}
.aklr-circlechrtcrd__txt {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  padding: 20px 0px;
}
.aklr-circlechrtcrd__wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.aklr-circlechrtcrd__left {
  width: 60%;
}
.aklr-circlechrtcrd__right {
  width: 40%;
  padding: 10px;
}
.aklr-circlechrtcrd__right img {
  width: 100%;
}
.aklr-circlechrtcrd__subtxt {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
}

.aklr-graphchartcard {
  background-color: #191C24;
  width: 35%;
  padding: 20px;
  border-radius: 10px;
}
.aklr-graphchartcard.aklr-graphchartcard-mnthlyconvrtn .aklr-graphchartcard__graphimg {
  padding-top: 30px;
}
.aklr-graphchartcard__txt {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  padding: 20px 0px;
}
.aklr-graphchartcard__wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.aklr-graphchartcard__graphimg {
  width: 80%;
}
.aklr-graphchartcard__graphimg img {
  width: 100%;
}

.aklr-whitecard {
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 400px;
  padding: 20px;
  border-radius: 15px;
}
.aklr-whitecard__img {
  width: 50%;
}
.aklr-whitecard__img img {
  width: 100%;
}
.aklr-whitecard__title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: #E04370;
  text-align: center;
  padding: 10px 0px 15px 0px;
}
.aklr-whitecard__txt {
  font-size: 13px;
  line-height: 24px;
  color: #000;
  font-weight: 400;
  min-height: 90px;
  text-align: center;
}
.aklr-whitecard__txt a {
  font-size: 11px;
  color: rgb(76, 149, 232);
  text-decoration: underline;
}
.aklr-whitecard__txt small {
  padding: 5px 0;
  display: inline-block;
}
.aklr-whitecard__closebtn {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  margin: 0px;
}
.aklr-whitecard .aklr-btn {
  width: 40%;
  border-radius: 10px;
}
.aklr-whitecard__btnwrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.aklr-whitecard__btnwrap .aklr-imgbtn {
  width: 35%;
  border-radius: 10px;
}
.aklr-whitecard__btnwrap .aklr-imgbtn:hover input {
  background-color: #f41253;
}
.aklr-whitecard__btnwrap .aklr-btn--wht {
  width: 35%;
}
.aklr-whitecard__btnwrap-center {
  justify-content: center;
}
.aklr-whitecard__closeimg {
  width: 20px;
  height: 20px;
}
.aklr-whitecard__closeimg img {
  width: 100%;
}
.aklr-whitecard__closeimg:focus {
  border: none !important;
}
.aklr-whitecard__profInfo {
  border-radius: 10px;
  background-color: rgb(0, 0, 0);
  padding: 10px 15px;
  width: 85%;
  display: flex;
  justify-content: space-between;
  margin: 15px 0 25px;
}
.aklr-whitecard__profInfo h3 {
  color: #fff;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 12px;
}
.aklr-whitecard__profInfo h4 {
  color: rgb(224, 67, 112);
  font-size: 14px;
}
.aklr-whitecard__invite {
  padding: 30px 20px;
}
.aklr-whitecard__invite .aklr-whitecard__btnwrap {
  justify-content: center;
  padding-bottom: 0px;
}
.aklr-whitecard__invite .aklr-btn button, .aklr-whitecard__invite .aklr-imgbtn button {
  font-weight: normal;
}
.aklr-whitecard__invite .aklr-btn--wht {
  height: auto;
  padding: 0px;
}
.aklr-whitecard__invite .aklr-btn--wht button {
  padding: 0px;
  height: auto;
  width: auto;
  line-height: 16px;
}
.aklr-whitecard__invite .aklr-btn--wht:hover {
  border: none;
}
.aklr-whitecard__invite .aklr-whitecard__txt {
  width: 85%;
}
.aklr-whitecard__invite .aklr-whitecard__title {
  padding: 25px 0px 25px 0px;
}
.aklr-whitecard__invite .aklr-invSgnUp__mailList-main {
  margin-bottom: 20px;
  width: 80%;
}
.aklr-whitecard__invite .aklr-invSgnUp__mailList-main {
  padding: 10px;
  border-color: rgb(25, 28, 36);
}
.aklr-whitecard__invite .aklr-invSgnUp__mailList {
  max-height: 100px;
  min-height: 100px;
}
.aklr-whitecard__invite .aklr-invSgnUp__mailList::-webkit-scrollbar {
  width: 15px;
  background-color: rgba(25, 28, 36, 0.5);
  border-radius: 10px;
}
.aklr-whitecard__invite .aklr-invSgnUp__mailList::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgb(25, 28, 36);
  height: 50px;
  min-height: 40px;
}
.aklr-whitecard__invite .aklr-invSgnUp__mailList-item {
  background-color: rgb(25, 28, 36);
  color: #E04370;
  font-size: 12px;
  padding: 10px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .aklr-whitecard {
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .aklr-whitecard {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .aklr-whitecard {
    width: 90%;
  }
}
.aklr-imgdesclist__img {
  width: 6%;
}
.aklr-imgdesclist__img img {
  width: 100%;
}
.aklr-imgdesclist__title {
  font-size: 24px;
  line-height: 38px;
  color: #fff;
  font-weight: 500;
  padding: 28px 0px;
}
.aklr-imgdesclist__desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 12px;
}
.aklr-imgdesclist__listtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 8px;
}
.aklr-imgdesclist__listitem {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: flex-start;
  padding-bottom: 6px;
}
.aklr-imgdesclist__listitem::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 8px;
  margin-top: 8px;
}

.aklr-vertimgdesc__wrap {
  display: flex;
  width: 100%;
}
.aklr-vertimgdesc__img {
  width: 20px;
  display: flex;
  align-items: center;
}
.aklr-vertimgdesc__img img {
  width: 100%;
}
.aklr-vertimgdesc__descwrap {
  width: 70%;
  padding: 0px 30px 0px 10px;
}
.aklr-vertimgdesc__title {
  font-size: 16px;
  line-height: 24px;
  color: #22BB33;
  font-weight: 400;
}
.aklr-vertimgdesc__title.white {
  color: #fff;
}
.aklr-vertimgdesc__desc {
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  font-weight: 400;
}
.aklr-vertimgdesc__text {
  font-size: 10px;
  line-height: 14px;
  color: #A9A9A9;
  font-weight: 300;
  display: flex;
  align-items: flex-end;
  margin-left: auto;
}
.aklr-vertimgdesc__icon {
  width: 20px;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.aklr-vertimgdesc__icon img {
  width: 100%;
}
.aklr-vertimgdesc__logOut {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clrRed);
  font-weight: bold;
  padding: 10px 0;
  font-size: 13px;
}

@media (max-width: 767px) {
  .aklr-imgdesclist__img {
    width: 30px;
  }
  .aklr-imgdesclist__title {
    padding: 8px 0px;
  }
  .aklr-vertimgdesc__img {
    position: absolute;
  }
  .aklr-vertimgdesc__wrap {
    position: relative;
    width: 100%;
    flex-direction: column;
  }
  .aklr-vertimgdesc__descwrap {
    width: 100%;
    padding: 0px;
  }
  .aklr-vertimgdesc__title {
    margin-left: 30px;
  }
  .aklr-vertimgdesc__icon {
    margin-left: 0;
    margin-top: 10px;
  }
  .aklr-vertimgdesc__text {
    margin-left: 0;
    margin-top: 10px;
  }
}
.aklr-userstalents {
  width: 35%;
  background-color: #191C24;
  padding: 20px;
  border-radius: 15px;
}
.aklr-userstalents__txt {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  padding: 16px 0px;
  font-weight: 400;
}
.aklr-userstalents__outwrap {
  display: flex;
  justify-content: space-between;
}
.aklr-userstalents__box {
  background-color: #30333A;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.aklr-userstalents__prctgetxtwrap {
  display: flex;
  align-items: center;
  padding-top: 8px;
}
.aklr-userstalents__prctgetxtwrap .aklr-perctngetxt {
  margin-right: 12px;
}
.aklr-userstalents__prctgetxt {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}
.aklr-userstalents__txtb {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  padding: 12px 0px;
  text-align: center;
  font-weight: 400;
}
.aklr-userstalents__cnum {
  font-size: 38px;
  line-height: 56px;
  color: #fff;
  font-weight: 600;
}

.aklr-CMdropdown {
  position: relative;
  width: 200px;
}
.aklr-CMdropdown__toggle {
  width: 100%;
  padding: 10px;
  background-color: rgb(87, 87, 87);
  padding: 2px 8px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  border-radius: 7px;
  font-size: 12px;
  align-items: center;
  cursor: pointer;
}
.aklr-CMdropdown__toggle span {
  margin: 0px !important;
  font-size: 12px !important;
}
.aklr-CMdropdown__toggle--active {
  background-color: #fff;
  color: var(--clrRed);
}
.aklr-CMdropdown__toggle--active span {
  color: var(--clrRed) !important;
}
.aklr-CMdropdown__body {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 5px;
  border-radius: 7px;
  background-color: #fff;
  display: none;
  z-index: 10;
}
.aklr-CMdropdown__body.open {
  display: block;
}
.aklr-CMdropdown__body a {
  cursor: pointer;
  list-style: none;
  border-radius: 7px;
  width: 100%;
  display: flex;
  font-size: 11px;
  color: #000 !important;
  padding: 3px 3px;
}
.aklr-CMdropdown__body a:hover {
  background-color: var(--clrRed);
  color: #fff !important;
}
.aklr-CMdropdown .arrow {
  transition: transform 0.3s ease;
}
.aklr-CMdropdown .arrow svg {
  stroke: #ffffff;
}
.aklr-CMdropdown .arrow.up {
  transform: rotate(180deg);
}
.aklr-CMdropdown .arrow.up svg {
  stroke: var(--clrRed);
}

.aklr-DarkBox {
  background-color: var(--bgCmn-clr);
  border-radius: 10px;
  padding: 10px;
}
.aklr-DarkBox__in:nth-child(2) {
  margin-top: 20px;
}
.aklr-DarkBox__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.aklr-DarkBox__header-iconCol {
  display: flex;
  align-items: flex-start;
}
.aklr-DarkBox__header-iconCol-item {
  margin-left: 15px;
}
.aklr-DarkBox__header-iconCol-link {
  height: 15px;
  display: flex;
}
.aklr-DarkBox__header-iconCol-link img {
  width: 100%;
  height: 100%;
}
.aklr-DarkBox__body {
  color: #fff;
}
.aklr-DarkBox__top {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.aklr-DarkBox__Tregistered {
  width: 30%;
}
.aklr-DarkBox__Tregistered .aklr-DarkBox__body {
  height: calc(100% - 25px);
  align-items: center;
  display: flex;
  justify-content: center;
}
.aklr-DarkBox__Tregistered-count {
  height: 100%;
  font-size: 60px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aklr-DarkBox__Tdemographic {
  width: 70%;
}
.aklr-DarkBox__Tdemographic .aklr-DarkBox__body {
  display: flex;
}
.aklr-DarkBox__Tdemographic #ageChartContainer, .aklr-DarkBox__Tdemographic #genderChartContainer {
  width: 50%;
}
.aklr-DarkBox__Tdemographic #genderChartContainer .highcharts-root .highcharts-legend {
  transform: translate(212px, 64px);
}
.aklr-DarkBox__Tdemographic #genderChartContainer .highcharts-legend {
  left: 214px !important;
  top: 61px !important;
}
.aklr-DarkBox__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  width: 100%;
  gap: 20px;
}
.aklr-DarkBox__left {
  width: 65%;
}
.aklr-DarkBox__right {
  width: 35%;
}
.aklr-DarkBox__userRR {
  width: 100%;
}
.aklr-DarkBox__registeredTC {
  width: 100%;
}
.aklr-DarkBox__talentVB {
  width: 100%;
  margin-top: 20px;
}
.aklr-DarkBox__NreturningU {
  width: 45%;
}
.aklr-DarkBox__NreturningU .highcharts-grid-line {
  stroke: rgb(51, 51, 51);
}
.aklr-DarkBox__TaccountCR {
  width: 55%;
}
.aklr-DarkBox__TaccountCR #conversionChart {
  border-radius: 10px;
}
.aklr-DarkBox__TaccountCR #conversionChart .highcharts-point {
  stroke: none;
}
.aklr-DarkBox__loginBT {
  width: 55%;
}
.aklr-DarkBox__uEngagement {
  width: 45%;
}
.aklr-DarkBox__labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.aklr-DarkBox__labels-list {
  width: 50%;
  font-size: 11px;
  text-align: center;
  margin: 3px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}
.aklr-DarkBox__labels-list:nth-child(2) span {
  background-color: #ff0000;
}
.aklr-DarkBox__labels-list:nth-child(3) span {
  background-color: #a3e635;
}
.aklr-DarkBox__labels-list span {
  width: 8px;
  height: 8px;
  background-color: #f4b400;
  display: flex;
  margin-right: 5px;
}

.aklr-DarkBox__NreturningU .highcharts-series-0 .highcharts-point {
  fill: rgb(123, 97, 255);
  stroke: none;
}
.aklr-DarkBox__NreturningU .highcharts-background {
  fill: transparent !important;
}

.aklr-DarkBox__TaccountCR .highcharts-point {
  stroke: none;
}

.aklr-DarkBox__talentVB .highcharts-background {
  fill: transparent !important;
}
.aklr-DarkBox__talentVB .highcharts-point {
  stroke: none;
}

.highcharts-credits {
  display: none;
}

.aklr-DarkBox__userRR #cohortRetentionChart {
  border-radius: 10px;
}

@media (max-width: 1023px) {
  .aklr-DarkBox__top {
    flex-direction: column;
    overflow: hidden;
  }
  .aklr-DarkBox__Tregistered {
    width: 100% !important;
  }
  .aklr-DarkBox__Tdemographic {
    width: 100% !important;
  }
  .aklr-DarkBox__Tdemographic #genderChartContainer {
    margin-left: -10px;
  }
  .aklr-DarkBox__wrap {
    flex-direction: column;
  }
  .aklr-DarkBox__left {
    width: 100%;
    overflow: hidden;
  }
  .aklr-DarkBox__right {
    overflow: hidden;
    width: 100%;
  }
  .aklr-DarkBox__NreturningU {
    width: 100%;
  }
  .aklr-DarkBox__TaccountCR {
    width: 100%;
  }
  .aklr-DarkBox__uEngagement {
    width: 100%;
  }
  .aklr-DarkBox__talentVB {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .aklr-DarkBox__Tdemographic .aklr-DarkBox__body {
    flex-direction: column;
  }
  .aklr-DarkBox__Tdemographic #ageChartContainer, .aklr-DarkBox__Tdemographic #genderChartContainer {
    width: 100% !important;
    height: 200px;
  }
  .aklr-DarkBox__Tdemographic #genderChartContainer {
    margin-left: 0px;
  }
  .aklr-DarkBox__Tdemographic .highcharts-root .highcharts-legend {
    display: none;
  }
  .aklr-DarkBox__Tdemographic .highcharts-legend {
    display: none;
  }
  .aklr-DarkBox__Tdemographic .highcharts-container {
    width: 100% !important;
  }
}
.aklr-notifictnpnl {
  width: 35%;
  background-color: #403D45;
  padding: 20px 30px;
  border-radius: 10px;
}
.aklr-notifictnpnl__headwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aklr-notifictnpnl__title {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  line-height: 28px;
}
.aklr-notifictnpnl__clrbtn {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  font-weight: 400;
}
.aklr-notifictnpnl__item {
  display: flex;
  align-items: center;
  padding: 18px 0px;
  border-bottom: 1px solid #fff;
}
.aklr-notifictnpnl__item:last-child {
  border-bottom: unset;
}
.aklr-notifictnpnl__content {
  display: flex;
}
.aklr-notifictnpnl__txt {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
  padding-left: 12px;
}
.aklr-notifictnpnl__timespan {
  font-size: 12px;
  color: #a9a9a9;
  line-height: 22px;
  padding-left: 12px;
}
.aklr-notifictnpnl__picture {
  width: 22%;
}
.aklr-notifictnpnl__picture img {
  width: 100%;
}
.aklr-notifictnpnl__buttonwrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 30px 0px 10px 0px;
}
.aklr-notifictnpnl__buttonwrap .aklr-btn--mediumswap {
  height: 40px;
  width: 40%;
}

.aklr-accordion .accordion-button {
  background-color: #191C24;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  box-shadow: unset;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.aklr-accordion .accordion-button.collapsed {
  border-radius: 10px !important;
}
.aklr-accordion .accordion-button:not(.collapsed) {
  background-color: #191C24;
  color: #fff;
}
.aklr-accordion .accordion-button::after {
  background-image: url(../../../assets/images/accordion-arrow.png);
  background-position: center;
}
.aklr-accordion .accordion-body {
  background-color: #191C24;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  border: 0;
  border-bottom-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}
.aklr-accordion .accordion-item {
  background-color: unset;
}

.dxp-CN {
  display: flex;
}
.dxp-CN__box {
  position: relative;
  margin-right: 16px;
  height: 100% !important;
  display: flex;
}
.dxp-CN__Ccode {
  min-width: 105px;
  border: none;
  background-color: transparent;
  border-right: 1px solid #A9A9A9;
  border-radius: 0;
  color: #fff;
  height: 100%;
  max-width: 105px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  position: relative;
}
.dxp-CN__Ccode:after {
  width: 15px;
  height: 10px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-size: 15px;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  background-image: url('data:image/svg+xml,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.9999 1.20594L7.30754 8L0.615234 1.20595L1.80312 4.22526e-07L7.30754 5.58811L12.812 -8.08109e-08L13.9999 1.20594Z" fill="%23E04370"/></svg>');
}
.dxp-CN__id {
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: none;
}
.dxp-CN__Ctry {
  width: auto;
  margin-right: 5px;
  display: flex;
  align-items: center;
}
.dxp-CN__Ctry-img {
  width: 20px;
  height: auto;
}
.dxp-CN__Ctry-num {
  width: 50%;
  color: #fff;
}
.dxp-CN__Ctry-num-input {
  display: inline-block;
  width: 100%;
  color: #fff;
  padding: 0;
  border: none;
  background-color: transparent;
  pointer-events: none;
  margin: 0;
}
.dxp-CN__Drop {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  max-width: 350px;
  height: auto;
  padding: 12px;
  border: 1px solid #474849;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  margin-top: 0px;
  z-index: 6;
  min-width: 315px;
  scrollbar-width: none !important;
  background-color: #121212 !important;
}
.dxp-CN__Drop input {
  border-radius: 10px;
  height: 40px;
  margin-bottom: 15px;
  border-color: #474849;
}
.dxp-CN__Drop input::-moz-placeholder {
  color: rgb(255, 255, 255);
  font-size: 14px;
  opacity: 0.5;
}
.dxp-CN__Drop input::placeholder {
  color: rgb(255, 255, 255);
  font-size: 14px;
  opacity: 0.5;
}
.dxp-CN__Drop--active {
  display: block !important;
}
.dxp-CN__Drop-list {
  padding: 0;
  margin: 0;
  max-height: 250px;
  overflow: hidden;
  overflow-y: scroll;
}
.dxp-CN__Drop-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #191C24;
}
.dxp-CN__Drop-list::-webkit-scrollbar {
  width: 7px;
  background-color: #191C24;
}
.dxp-CN__Drop-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
  height: 50px;
}
.dxp-CN__Drop-item {
  display: flex;
  justify-content: flex-start;
  padding: 4px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 400;
}
.dxp-CN__Drop-item:hover {
  background-color: rgba(76, 149, 232, 0.15);
}
.dxp-CN__ctryId {
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.dxp-CN__ctryFlag {
  width: auto;
  min-width: 45px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-right: 1px solid #6C6C6C;
}
.dxp-CN__ctryFlag-img {
  width: 30px;
  height: auto;
}
.dxp-CN__ctryCode {
  min-width: 45px;
  justify-content: flex-start;
  width: auto;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-right: 1px solid #6C6C6C;
  min-width: 45px;
  justify-content: flex-start;
}
.dxp-CN__ctryName {
  border: none;
  min-width: 45px;
  width: auto;
  display: flex;
  min-height: 30px;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
}

@media (max-width: 767px) {
  .dxp-CN__Drop {
    left: -20px;
    min-width: 270px;
    max-width: 270px;
  }
}
.dxp-Country__down {
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right 20px top 21px;
  cursor: pointer !important;
  background-image: url('data:image/svg+xml,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.9999 1.20594L7.30754 8L0.615234 1.20595L1.80312 4.22526e-07L7.30754 5.58811L12.812 -8.08109e-08L13.9999 1.20594Z" fill="%23E04370"/></svg>');
}
.dxp-Country .dxeButtonEdit_Moderno {
  background-color: transparent !important;
  border-radius: 10px;
  border: 1px solid var(--ClrinputBdr);
  width: 100% !important;
  cursor: pointer !important;
}
.dxp-Country .dxeEditArea_Moderno {
  border: none;
  background: none;
  margin: 0px;
}
.dxp-Country .dxeButtonEditSys td.dxic {
  padding: 10px 10px 10px 10px !important;
  height: 50px;
}
.dxp-Country .dxeEditArea_Moderno {
  height: 100%;
  margin: 0px !important;
  padding: 0px;
  border: none !important;
  color: #fff;
  font-size: 14px;
  background-color: transparent !important;
}
.dxp-Country .dxeIIC {
  padding-left: 20px !important;
}
.dxp-Country .dxeIIC img {
  margin-left: 0px !important;
  padding-left: 0px;
}
.dxp-Country .dxeButton {
  display: none !important;
}
.dxp-Country .dxpcDropDown_Moderno {
  background-color: #121212 !important;
  border: 1px solid #474849;
  border-radius: 10px;
  padding: 10px;
}
.dxp-Country .dxpcDropDown_Moderno .dxpc-mainDiv {
  background-color: #121212 !important;
  box-shadow: none !important;
}
.dxp-Country .dxpcDropDown_Moderno .dxeListBox_Moderno {
  background-color: #121212 !important;
  border: none !important;
}
.dxp-Country .dxlbd::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #191C24;
}
.dxp-Country .dxlbd::-webkit-scrollbar {
  width: 7px;
  background-color: #191C24;
}
.dxp-Country .dxlbd::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
  height: 50px;
}
.dxp-Country .dxlbd .dxeListBoxItem_Moderno {
  border: none !important;
  vertical-align: middle;
}
.dxp-Country .dxlbd .dxeListBoxItem_Moderno.dxeI {
  padding-right: 10px !important;
}
.dxp-Country .dxlbd .dxeListBoxItemRow_Moderno {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  display: inline-table;
  margin-bottom: 5px;
}
.dxp-Country .dxlbd .dxeListBoxItemRow_Moderno td:first-child {
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.dxp-Country .dxlbd .dxeListBoxItemRow_Moderno td:last-child {
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.dxp-Country .dxlbd .dxeListBoxItemSelected_Moderno {
  background-color: rgba(76, 149, 232, 0.15) !important;
}
.dxp-Country .dxlbd .dxeListBoxItemHover_Moderno {
  background-color: rgba(76, 149, 232, 0.15) !important;
}
.dxp-Country .dxlbd .dxeListBoxItem_Moderno {
  margin-bottom: 10px;
}

.aklr-talentpgcard {
  width: calc(25% - 15px);
}
.aklr-talentpgcard--orange .aklr-talentpgcard__outer {
  border-bottom: 4px solid #FFAA59;
}
.aklr-talentpgcard--orange .aklr-talentpgcard__headiconwrap {
  background-color: #755539;
}
.aklr-talentpgcard--orange .aklr-talentpgcard__headiconwrap:hover {
  border: 1px solid #FFA147;
}
.aklr-talentpgcard--orange .aklr-talentpgcard__lgtxt.ylw {
  color: #FFD700;
}
.aklr-talentpgcard--orange .aklr-talentpgcard__lgtxt.grey {
  color: #C0C0C0;
}
.aklr-talentpgcard--blue .aklr-talentpgcard__outer {
  border-bottom: 4px solid #92C7CF;
}
.aklr-talentpgcard--blue .aklr-talentpgcard__headiconwrap {
  background-color: #496068;
}
.aklr-talentpgcard--blue .aklr-talentpgcard__headiconwrap:hover {
  border: 1px solid #92C7CF;
}
.aklr-talentpgcard--blue .aklr-talentpgcard__lgtxt.ylw {
  color: #FFD700;
}
.aklr-talentpgcard--blue .aklr-talentpgcard__lgtxt.grey {
  color: #C0C0C0;
}
.aklr-talentpgcard--blue .aklr-talentpgcard__lgtxt.pink {
  color: #E04370;
}
.aklr-talentpgcard--pink .aklr-talentpgcard__outer {
  border-bottom: 4px solid #FF8080;
}
.aklr-talentpgcard--pink .aklr-talentpgcard__headiconwrap {
  background-color: #754449;
}
.aklr-talentpgcard--pink .aklr-talentpgcard__headiconwrap:hover {
  border: 1px solid #FF8080;
}
.aklr-talentpgcard--pink .aklr-talentpgcard__lgtxt.ylw {
  color: #FFD700;
}
.aklr-talentpgcard--pink .aklr-talentpgcard__lgtxt.grey {
  color: #C0C0C0;
}
.aklr-talentpgcard--pink .aklr-talentpgcard__lgtxt.pink {
  color: #E04370;
}
.aklr-talentpgcard__outer {
  background-color: #191c24;
  padding: 20px;
  border-radius: 25px;
  border-bottom: 4px solid #B4E380;
  min-height: 205px;
}
.aklr-talentpgcard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
}
.aklr-talentpgcard__head {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.aklr-talentpgcard__prgrstxt {
  background-color: #594731;
  border-radius: 25px;
  width: 45%;
  display: flex;
  justify-content: center;
  padding: 8px 4px;
}
.aklr-talentpgcard__prgrstxt p {
  color: #F0AD4E;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}
.aklr-talentpgcard__prgrstxt.dnone {
  min-height: 34px;
  background-color: unset;
}
.aklr-talentpgcard__prgrstxt.dnone p {
  display: none;
}
.aklr-talentpgcard__headiconwrap {
  background-color: #576c49;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  padding: 6px;
  width: 15%;
  border: 1px solid transparent;
  transition: 0.3s ease-in-out;
}
.aklr-talentpgcard__headiconwrap:hover {
  border: 1px solid #b4e380;
}
.aklr-talentpgcard__headicon {
  width: 100%;
  display: flex;
}
.aklr-talentpgcard__headicon img {
  width: 100%;
}
.aklr-talentpgcard__combotxt {
  display: flex;
  align-items: center;
}
.aklr-talentpgcard__lgtxt {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 15px 10px 15px 0px;
}
.aklr-talentpgcard__smtxt {
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  padding-right: 10px;
}
.aklr-talentpgcard__xmtxt {
  font-size: 10px;
  font-weight: 400;
  color: #808080;
}
.aklr-talentpgcard__combotxtduowrap {
  display: flex;
  gap: 20px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .aklr-talentpgcard {
    width: calc(50% - 20px);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .aklr-talentpgcard {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .aklr-talentpgcard {
    width: calc(100% - 20px);
  }
}
.aklr-recenttalents {
  width: 30%;
  padding: 20px;
  background-color: #191c24;
  border-radius: 15px;
}
.aklr-recenttalents__outer .aklr-title__head-sub {
  font-size: 12px;
  color: #a9a9a9;
  font-weight: 400;
}
.aklr-recenttalents__profession {
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.3019607843);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  border-radius: 12px;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.aklr-recenttalents__profilenme {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding-bottom: 6px;
}
.aklr-recenttalents__container {
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 35px 0px 25px 0px;
}
.aklr-recenttalents__profilewrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.aklr-recenttalents__innerprofilewrap {
  display: flex;
  align-items: center;
}
.aklr-recenttalents__profileimg {
  width: 25%;
}
.aklr-recenttalents__profileimg img {
  width: 100%;
}
.aklr-recenttalents__profilesec {
  padding-left: 10px;
}

.aklr-DVV {
  width: 30%;
  background-color: rgba(18, 18, 18, 0.52);
  border-radius: 10px;
}

.aklr-DarkBox #verificationChart {
  width: 100% !important;
  height: 100% !important;
}
.aklr-DarkBox #chartLabels {
  display: flex;
  font-size: 11px;
}
.aklr-DarkBox #chartLabels span span {
  display: inline-block;
  width: 8px !important;
  height: 8px !important;
  background-color: #f4b400;
  margin-right: 5px;
}
.aklr-DarkBox .highcharts-axis-title {
  display: none;
}

.aklr-fileuploadcard {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgb(169, 169, 169);
  border-radius: 8px;
  width: calc((100% - 40px) / 3);
  margin-top: 25px;
}
.aklr-fileuploadcard__icn {
  width: 9%;
  padding-bottom: 20px;
}
.aklr-fileuploadcard__icn img {
  width: 100%;
}
.aklr-fileuploadcard__txt {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}
.aklr-fileuploadcard__outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 15px;
}

.aklr-DarkBox__RecentES {
  width: 100%;
}
.aklr-DarkBox__RecentES .aklr-title__head-sub {
  margin-bottom: 25px;
}
.aklr-DarkBox__RecentES-list {
  margin: 0px;
  padding: 0px;
}
.aklr-DarkBox__RecentES-item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
.aklr-DarkBox__RecentES-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.aklr-DarkBox__RecentES-img img {
  width: 100%;
}
.aklr-DarkBox__RecentES-email {
  font-size: 13px;
}
.aklr-DarkBox__RecentES-action {
  margin-left: auto;
}
.aklr-DarkBox__RecentES-action-btn {
  background-color: rgba(255, 76, 81, 0.3);
  color: rgb(255, 76, 81);
  border-radius: 10px;
  padding: 3px 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.aklr-DarkBox__RecentES-action-btn--reg {
  background-color: rgba(34, 187, 51, 0.3);
  color: rgb(34, 187, 51);
}

.aklr-progressBar__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.aklr-progressBar__value {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 10px;
  color: #fff;
  font-size: 12px;
}
.aklr-progressBar__progress {
  width: 100%;
  height: 12px;
  border-radius: 50px;
  background-color: #ddd;
  transition: width 300ms ease;
}
.aklr-progressBar__progress[value]::-webkit-progress-bar {
  width: 100%;
  height: 12px;
  border-radius: 50px;
  background-color: rgb(217, 217, 217);
  -webkit-transition: width 300ms ease;
  transition: width 300ms ease;
}
.aklr-progressBar__progress[value]::-webkit-progress-value {
  width: 0;
  border-radius: 50px;
  background-color: rgb(224, 67, 112);
  -webkit-transition: width 300ms ease;
  transition: width 300ms ease;
}

.aklr-fileUpload {
  background-color: var(--bgCmn-clr);
  border-radius: 10px;
  padding: 20px 15px;
  position: relative;
  margin-bottom: 25px;
}
.aklr-fileUpload__file {
  display: flex;
  align-items: normal;
  margin-bottom: 10px;
}
.aklr-fileUpload__file-icon {
  width: 40px;
  font-size: 0;
  margin-right: 10px;
}
.aklr-fileUpload__file-icon img {
  width: 100%;
  border-radius: 10px;
}
.aklr-fileUpload__file-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2px 0;
}
.aklr-fileUpload__file-name {
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
}
.aklr-fileUpload__file-size {
  font-size: 12px;
  color: rgb(169, 169, 169);
}
.aklr-fileUpload__close {
  position: absolute;
  right: 20px;
  top: 26px;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.aklr-fileUpload__close img {
  width: 100%;
}

.aklr-checkbxtxtwrap {
  padding: 0px 0px;
  display: flex;
  align-items: center;
}
.aklr-checkbxtxtwrap__checkbox {
  margin-right: 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #C0C0C0;
  border-radius: 4px;
  background-color: #C0C0C0;
  cursor: pointer;
  position: relative;
}
.aklr-checkbxtxtwrap__checkbox:checked {
  background-color: #C0C0C0;
  border: 1px solid #C0C0C0;
}
.aklr-checkbxtxtwrap__checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 12px;
  border: solid #F41253;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.aklr-checkbxtxtwrap__checkbox:focus {
  border: 1px solid #C0C0C0 !important;
}
.aklr-checkbxtxtwrap__text {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.aklr-Login {
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: center top;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .aklr-Login {
    justify-content: unset;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .aklr-Login {
    justify-content: unset;
  }
}
@media (max-width: 767px) {
  .aklr-Login {
    padding: 0px 20px;
  }
}
.aklr-LgnHdr {
  padding: 20px;
}
.aklr-LgnHdr__logo {
  width: 135px;
  display: flex;
}
.aklr-LgnHdr__logo img {
  width: 100%;
}

@media (max-width: 767px) {
  .aklr-LgnHdr {
    padding: 20px 0px;
  }
}
.aklr-LgnFtr {
  padding: 30px 0px 30px;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: end;
}
.aklr-LgnFtr span {
  font-size: 32px;
  margin-right: 8px;
  line-height: 10px;
}
.aklr-LgnFtr p {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
}

.aklr-multipleDevice {
  border-radius: var(--Radius, 10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.05) 100%), #000;
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.25);
  width: 70%;
  margin: auto;
  padding: 30px 0px 0;
}
.aklr-multipleDevice__out {
  min-height: 100vh;
  background-color: #000;
  padding: 50px 0;
}
.aklr-multipleDevice__error {
  display: flex;
  color: #fff;
  padding: 12px 0px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #F00;
}
.aklr-multipleDevice__error p {
  margin: 0px;
  padding: 0px;
  color: #fff;
}
.aklr-multipleDevice__error span {
  width: 20px;
  margin-right: 10px;
}
.aklr-multipleDevice__error span img {
  width: 100%;
}
.aklr-multipleDevice__error--success {
  background: #2B3 !important;
}
.aklr-multipleDevice__body-in {
  padding: 40px 30px 40px;
}
.aklr-multipleDevice__body-in h1 {
  color: #FFF;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 20px;
}
.aklr-multipleDevice__body-in p {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 15px;
}
.aklr-multipleDevice__box {
  display: flex;
  margin: 0px -15px 0;
  padding-top: 10px;
}
.aklr-multipleDevice__item {
  width: 33.33%;
  display: flex;
  padding: 40px 32px;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border-radius: 10px;
  background: #121212;
  margin: 0px 15px;
  min-height: 285px;
}
.aklr-multipleDevice__item .aklr-multipleDevice__icon-sgnOut {
  display: none;
}
.aklr-multipleDevice__item--signOut .aklr-multipleDevice__icon-sgnIn {
  display: none;
}
.aklr-multipleDevice__item--signOut .aklr-multipleDevice__icon-sgnOut {
  display: flex;
}
.aklr-multipleDevice__item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
}
.aklr-multipleDevice__item-body h2 {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 7px;
}
.aklr-multipleDevice__item-body h3 {
  color: #A9A9A9;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 20px;
}
.aklr-multipleDevice__item-body p {
  color: #A9A9A9;
  text-align: center;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  margin-bottom: 30px;
}
.aklr-multipleDevice__icon {
  width: 48px;
}
.aklr-multipleDevice__icon img {
  width: 100%;
  margin-bottom: 20px;
}
.aklr-multipleDevice__btn {
  padding: 12px 16px;
  display: flex;
  min-width: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #E04370;
  box-shadow: 0px 2px 3px 0px rgba(224, 67, 112, 0.3);
  color: #fff;
  transition: all 0.6s;
}
.aklr-multipleDevice__btn:hover {
  background-color: #F41253;
  color: #fff;
}
.aklr-multipleDevice__Continue {
  padding: 0px 0 0;
  text-align: right;
}
.aklr-multipleDevice__Continue--active {
  margin-top: 100px;
}
.aklr-multipleDevice__Continue-btn {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  color: #ffffff;
  border-radius: 10px;
  background: #F41253;
  box-shadow: 0px 2px 3px 0px rgba(224, 67, 112, 0.3);
  width: 100px;
  margin-left: auto;
  transition: all 0.6s;
}
.aklr-multipleDevice__Continue-btn:hover {
  color: #ffffff;
}
.aklr-multipleDevice__Continue-btn--inactive {
  background: rgba(128, 128, 128, 0.3) !important;
  color: #808080 !important;
  box-shadow: none;
}
.aklr-multipleDevice__Continue-btn--inactive:hover {
  color: #808080;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .aklr-multipleDevice {
    width: 90%;
  }
}
@media (max-width: 1023px) {
  .aklr-multipleDevice {
    width: 90%;
  }
}
@media (max-width: 1023px) {
  .aklr-multipleDevice {
    width: 100%;
  }
  .aklr-multipleDevice__out {
    padding: 30px 15px;
  }
  .aklr-multipleDevice__error {
    padding: 20px 10px;
  }
  .aklr-multipleDevice__error span {
    width: 50px;
  }
  .aklr-multipleDevice__box {
    flex-direction: column;
    margin: 0px;
  }
  .aklr-multipleDevice__item {
    width: 100%;
    margin: 0px 0px 20px;
  }
}
.aklr-progress {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  margin-right: 10px;
}
.aklr-progress__out {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
.aklr-progress__Bar {
  height: 15px;
  background-color: #fff;
  width: 0%;
  transition: width 0.3s ease-in-out;
}
.aklr-progress__questionCount {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
.aklr-progress__questionBox {
  display: none;
  width: 100%;
}
.aklr-progress__questionBox.active {
  display: block;
}
.aklr-progress__questionBox .aklr-passwordinput {
  font-size: 14px !important;
}
.aklr-progress__completionMessage {
  display: none;
}
.aklr-progress__completionMessage .aklr-authentcard__cardwrap {
  padding: 0px !important;
}
.aklr-progress__buttons2 {
  width: 100%;
}

.aklr-sidemenu {
  width: 300px;
  transition: width 0.3s ease;
  overflow: hidden;
  background-color: #191C24;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px;
}
.aklr-sidemenu.collapsed {
  width: 70px;
  padding: 10px;
}
.aklr-sidemenu.collapsed .aklr-sidemenu__menuitemimg {
  width: 100%;
  padding: 6px 10px;
  transition: 0.3s ease-in-out;
}
.aklr-sidemenu.collapsed .aklr-sidemenu__menuitemimg:hover {
  background-color: #E04370;
  border-radius: 25px;
  padding: 6px 6px;
}
.aklr-sidemenu.collapsed .aklr-sidemenu__menuitem {
  padding: unset;
}
.aklr-sidemenu.collapsed .aklr-sidemenu__menuitem:hover {
  background-color: unset;
}
.aklr-sidemenu.collapsed .aklr-sidemenu__footericns {
  flex-direction: column;
  gap: 30px;
}
.aklr-sidemenu.collapsed .aklr-sidemenu__footerimg {
  width: 50%;
}
.aklr-sidemenu.collapsed .aklr-sidemenu__menuitemtxt {
  opacity: 0;
}
.aklr-sidemenu__menu {
  padding: 20px 0px 80px 0px;
  gap: 15px;
  display: flex;
  flex-direction: column;
}
.aklr-sidemenu__menuitem {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0px;
}
.aklr-sidemenu__menuitem:hover {
  background-color: #E04370;
  border-radius: 25px;
  padding: 8px 8px;
}
.aklr-sidemenu__menuitemimg {
  width: 8%;
  flex-shrink: 0;
}
.aklr-sidemenu__menuitemimg img {
  width: 100%;
}
.aklr-sidemenu__menuitemtxt {
  padding-left: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.aklr-sidemenu__menuitemtxt .badge {
  background-color: #FF0000;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
}
.aklr-sidemenu__footericns {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  transition: flex-direction 0.3s ease;
}
.aklr-sidemenu__footerimg {
  width: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.aklr-sidemenu__footerimg:hover {
  transform: scale(1.1);
}
.aklr-sidemenu__footerimg img {
  width: 100%;
}

.aklr-dash__sideBar {
  box-sizing: border-box;
  height: 100%;
  position: fixed;
  width: 250px;
  padding: 40px 10px 0px;
  background-color: var(--bgCmn-clr);
  border-right: 1px solid var(--line-clr);
  top: 0;
  z-index: 200;
  align-self: start;
  transition: 300ms ease-in-out;
  overflow-x: hidden;
  text-wrap: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.aklr-dash__sideBar-logo {
  text-decoration: none;
  display: flex;
  height: 100px;
  align-items: flex-start;
  padding-left: 5px;
}
.aklr-dash__sideBar-logo--web {
  width: 140px;
}
.aklr-dash__sideBar-logo--mob {
  display: none;
}
.aklr-dash__sideBar::-webkit-scrollbar {
  display: none;
}
.aklr-dash__sideBar.open ~ .aklr-dash__body {
  left: 60px;
  width: calc(100% - 60px);
}
.aklr-dash__sideBar .aklr-dash__sideBar-item {
  overflow: hidden;
}
.aklr-dash__sideBar.open {
  padding: 40px 10px 0px;
  width: 50px;
  display: flex;
  flex-direction: column;
}
.aklr-dash__sideBar.open .aklr-dash__sideBar-item {
  overflow: hidden;
}
.aklr-dash__sideBar.open .aklr-dash__sideBar-btm--mob {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0s;
  transition-delay: 0s;
}
.aklr-dash__sideBar.open .aklr-dash__sideBar-link:hover {
  padding: 0px 5px;
  background-color: transparent;
}
.aklr-dash__sideBar.open .aklr-dash__sideBar-item.active .aklr-dash__sideBar-link {
  background-color: transparent;
  padding: 0px 5px;
}
.aklr-dash__sideBar.open .Expand {
  display: none;
}
.aklr-dash__sideBar.open .Collapse {
  display: flex;
}
.aklr-dash__sideBar.open .aklr-dash__sideBar-item-count {
  text-indent: -100px;
  overflow: hidden;
  position: absolute;
  right: 5px;
  top: 0;
  width: 8px;
  height: 8px;
}
.aklr-dash__sideBar .Collapse {
  display: none;
}
.aklr-dash__sideBar.open .aklr-dash__sideBar-logo--web {
  display: none;
}
.aklr-dash__sideBar.open .aklr-dash__sideBar-logo--mob {
  display: flex;
  width: 20px;
  margin-top: 20px;
}
.aklr-dash__sideBar-list {
  margin: 0px;
}
.aklr-dash__sideBar-item {
  margin-bottom: 20px;
}
.aklr-dash__sideBar-item:first-child {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0px;
}
.aklr-dash__sideBar-item .aklr-dash__sideBar-SubMenu {
  display: grid;
  grid-template-rows: 0fr !important;
}
.aklr-dash__sideBar-item .aklr-dash__sideBar-SubMenu.show {
  grid-template-rows: 1fr !important;
}
.aklr-dash__sideBar-item.active .aklr-dash__sideBar-link.active2 {
  background-color: #65616f;
  padding: 5px 5px;
}
.aklr-dash__sideBar-item.active .aklr-dash__sideBar-link {
  background-color: var(--clrRed);
  padding: 5px 5px;
  transition: 0.4s ease-in-out;
  color: var(--color-white);
}
.aklr-dash__sideBar-item-fav {
  margin-left: auto;
}
.aklr-dash__sideBar-item-fav svg {
  margin: 0px !important;
}
.aklr-dash__sideBar-item-fav.fav-active svg path {
  stroke: none;
  fill: #ffd700;
}
.aklr-dash__sideBar-item-count {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: 20px;
  height: 20px;
  background-color: rgb(255, 0, 0);
  border-radius: 50%;
  justify-content: center;
  font-size: 11px;
}
.aklr-dash__sideBar-item-favList {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
}
.aklr-dash__sideBar-link {
  text-decoration: none;
  color: var(--color-white);
  display: flex;
  align-items: center;
  padding: 0px 5px;
  transition: 300ms ease-in-out;
  border-radius: 7px;
  font-size: 12px;
  position: relative;
  min-height: 19px;
}
.aklr-dash__sideBar-link:hover {
  background-color: var(--clrRed);
  padding: 5px 5px;
  transition: 0.4s ease-in-out;
  color: var(--color-white);
}
.aklr-dash__sideBar-link svg {
  width: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}
.aklr-dash__sideBar-SubMenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: 300ms ease-in-out;
}
.aklr-dash__sideBar-SubMenu > .aklr-dash__sideBar-SubMenu-list {
  overflow: hidden;
}
.aklr-dash__sideBar-SubMenu-item {
  position: relative;
  position: relative;
  padding: 20px 0 0px 0px;
}
.aklr-dash__sideBar-SubMenu-item:last-child {
  padding-bottom: 0px;
}
.aklr-dash__sideBar-SubMenu-item.active .aklr-dash__sideBar-SubMenu-link {
  background-color: var(--clrRed);
  color: #fff;
}
.aklr-dash__sideBar-SubMenu-link {
  font-size: 13px;
  color: #fff;
  position: relative;
  display: flex;
  padding: 2px 0 2px 25px;
  border-radius: 7px;
}
.aklr-dash__sideBar-SubMenu-link::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 6px;
  left: 7px;
}
.aklr-dash__sideBar-SubMenu-link:hover {
  background-color: var(--clrRed);
  color: #fff;
}
.aklr-dash__sideBar-btm {
  display: flex;
  justify-content: space-between;
  justify-content: space-between;
  padding: 7px 15px;
  position: sticky;
  bottom: 0;
  background-color: #191c24;
  margin: 0px -10px;
  border-top: 1px solid #282d3b;
}
.aklr-dash__sideBar-btm .Collapse svg {
  width: 20px;
}
.aklr-dash__sideBar-btm svg {
  width: 16px;
}
.aklr-dash__sideBar-btm--mob {
  transition-property: opacity;
  transition-duration: 300ms;
  transition-delay: 300ms;
}
.aklr-dash__sideBar-btm a:last-child:hover svg path {
  fill: var(--clrRed);
}
.aklr-dash__sideBar-btm a.fav-active svg path {
  stroke: none;
  fill: var(--clrRed);
}

.aklr-dash__sideBar-submenu {
  list-style-type: none;
  padding: 8px 0px;
}
.aklr-dash__sideBar-submenu li {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 10px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.aklr-dash__sideBar-submenu li .aklr-dotindicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 16px;
}
.aklr-dash__sideBar-submenu li a {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding-left: 8px;
  position: relative;
  top: 0;
}
.aklr-dash__sideBar-submenu li:hover a {
  font-weight: 600;
  color: #fff;
}
.aklr-dash__sideBar-submenu li.active {
  background-color: #e04370;
  padding: 5px 5px;
  border-radius: 5px;
}
.aklr-dash__sideBar-submenu li:hover {
  background-color: #e04370;
  border-radius: 5px;
}

@media (max-width: 1023px) {
  .aklr-dash {
    position: relative;
  }
  .aklr-dash__sideBar {
    width: 50px;
    z-index: 200;
    position: absolute;
  }
  .aklr-dash__sideBar-logo--web {
    display: none;
  }
  .aklr-dash__sideBar-logo--mob {
    display: flex;
    width: 20px;
    margin-top: 20px;
  }
  .aklr-dash__sideBar-item {
    overflow: hidden;
  }
  .aklr-dash__sideBar-item.active .aklr-dash__sideBar-link {
    padding: 0px 5px;
    background-color: transparent;
  }
  .aklr-dash__sideBar .Expand {
    display: none;
  }
  .aklr-dash__sideBar .Collapse {
    display: flex;
  }
  .aklr-dash__sideBar .aklr-dash__sideBar-item-count {
    text-indent: -100px;
    overflow: hidden;
    position: absolute;
    right: 5px;
    top: 0;
    width: 8px;
    height: 8px;
  }
  .aklr-dash__sideBar.open {
    width: 250px;
  }
  .aklr-dash__sideBar.open .aklr-dash__body {
    left: 0;
  }
  .aklr-dash__sideBar.open .aklr-dash__sideBar-btm--mob {
    opacity: 1;
    transition-property: opacity;
    transition-duration: 300ms;
    transition-delay: 300ms;
  }
  .aklr-dash__sideBar.open .Expand {
    display: flex;
  }
  .aklr-dash__sideBar.open .Collapse {
    display: none;
  }
  .aklr-dash__sideBar.open .aklr-dash__sideBar-item-count {
    display: flex;
    align-items: center;
    margin-left: auto;
    width: 18px;
    height: 18px;
    background-color: rgb(255, 0, 0);
    border-radius: 50%;
    justify-content: center;
    font-size: 11px;
    text-indent: unset;
  }
  .aklr-dash__sideBar.open .aklr-dash__sideBar-logo--web {
    display: flex;
  }
  .aklr-dash__sideBar.open .aklr-dash__sideBar-logo--mob {
    display: none;
    width: 20px;
    margin-top: 20px;
  }
  .aklr-dash__sideBar-btm--mob {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0ms;
    transition-delay: 0ms;
  }
  .aklr-dash__sideBar.open.extra-class .aklr-dash__sideBar-list .aklr-dash__sideBar-item .aklr-dash__sideBar-link:hover {
    background-color: var(--clrRed) !important;
    padding: 5px 5px;
    transition: 0.4s ease-in-out;
    color: var(--color-white);
  }
  .aklr-dash__sideBar.open.extra-class .aklr-dash__sideBar-list .aklr-dash__sideBar-item.active .aklr-dash__sideBar-link {
    background-color: var(--clrRed);
    padding: 5px 5px;
    transition: 0.4s ease-in-out;
    color: var(--color-white);
  }
  .aklr-dash__sideBar.open.extra-class .aklr-dash__sideBar-list .aklr-dash__sideBar-item.active .aklr-dash__sideBar-link.active2 {
    background-color: #65616f;
    padding: 5px 5px;
  }
  .aklr-dash__body {
    left: 0px !important;
    width: 100% !important;
    padding-left: 65px !important;
  }
}
.aklr-dash__body {
  position: relative;
  width: calc(100% - 260px);
  left: 260px;
  overflow-y: scroll;
  transition: 300ms ease-in-out;
  padding: 10px 15px 15px 0;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.aklr-dash__body::-webkit-scrollbar {
  display: none;
}
.aklr-dash__contentArea-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
}

.aklrPopupMsg {
  border-radius: 10px;
  background: var(--popupBg) !important;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: none !important;
}
.aklrPopupMsg .dxpc-header {
  background: none !important;
  border-bottom: 1px solid var(--clrRed);
  padding: 15px;
}
.aklrPopupMsg .dxpc-headerText {
  color: #fff;
}
.aklrPopupMsg .dxpc-content {
  padding: 15px 15px !important;
}
.aklrPopupMsg .dxpc-content span {
  color: #fff !important;
}
.aklrPopupMsg .dxpc-closeBtn {
  width: 21px;
  height: 21px;
  background-image: url(../images/aklr-close.png);
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.7;
}
.aklrPopupMsg .dxpc-closeBtn img {
  display: none;
}
.aklrPopupMsg .dxpc-closeBtn.dxpc-closeBtnHover {
  background-image: url(../images/aklr-close.png) !important;
  opacity: 1;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.aklrPopupMsg--nopd {
  padding: 0px;
}
.aklrPopupMsg--nopd .dxpc-content {
  padding: 0px !important;
}

.popupImportComplete {
  background-color: transparent !important;
  border: none !important;
}
.popupImportComplete .dxpc-content {
  padding: 0px !important;
}

.aklr-dbfooter {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding: 30px 0 0;
}
.aklr-dbfooter__left-txt {
  font-size: 14px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
}
.aklr-dbfooter__left-txt span {
  font-size: 30px;
  color: #fff;
  line-height: 10px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}
.aklr-dbfooter__menu {
  list-style: none;
  display: flex;
}
.aklr-dbfooter__menu li {
  padding: 0px 15px;
}
.aklr-dbfooter__menu li:last-child {
  padding-right: 0px;
}
.aklr-dbfooter__menu a {
  font-size: 14px;
  color: #fff;
}
.aklr-dbfooter__menu a:hover {
  color: var(--clrRed);
}

@media (max-width: 767px) {
  .aklr-dbfooter {
    flex-direction: column-reverse;
  }
  .aklr-dbfooter__menu {
    margin-bottom: 10px;
  }
}
.aklr-settingstab {
  background-color: #191C24;
  padding: 20px;
  border-radius: 10px;
}
.aklr-settingstab__tabouter {
  display: flex;
  justify-content: space-between;
}
.aklr-settingstab__tabouter .nav-link {
  color: #fff !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  border: 0;
}
.aklr-settingstab__tabouter .nav-link:hover {
  color: #E04370 !important;
}
.aklr-settingstab__tabouter .nav-item {
  margin: 0px 25px;
}
.aklr-settingstab__tabouter .nav-item:first-child {
  margin-left: 0;
}
.aklr-settingstab__tabouter .nav-tabs {
  border-bottom: 0;
}
.aklr-settingstab__tabouter .nav-tabs .nav-link.active {
  background-color: #191C24;
  color: #E04370 !important;
  position: relative;
}
.aklr-settingstab__tabouter .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #E04370;
  margin: auto;
  width: 100%;
}
.aklr-settingstab .tab-content {
  padding: 30px 0px 0;
}
.aklr-settingstab .tab-pane {
  font-size: 14px;
  color: #fff;
  line-height: 22px;
  font-weight: 400;
}
.aklr-settingstab__adminbtn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.aklr-settingstab__adminbtn .super-admin-btn {
  color: #E04370;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  background-color: #30333A;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: 0.3s ease-in-out;
}
.aklr-settingstab__adminbtn .super-admin-btn:hover {
  border: 1px solid #E04370;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .aklr-settingstab__tabouter {
    flex-direction: column-reverse;
  }
  .aklr-settingstab__tabouter .nav-tabs {
    justify-content: space-between;
  }
  .aklr-settingstab__tabouter .nav-item {
    margin: 0;
    padding: 30px 0 0;
  }
  .aklr-settingstab__tabouter .nav-link {
    padding: 0px;
  }
  .aklr-settingstab__adminbtn {
    justify-content: end;
  }
}
.aklr-input__wrap {
  display: flex;
  justify-content: space-between;
}
.aklr-input__wrap .aklr-input {
  width: 49%;
}

@media (max-width: 767px) {
  .aklr-input__wrap {
    display: flex;
    flex-direction: column;
  }
  .aklr-input__wrap .aklr-input {
    width: 100%;
  }
}
.aklr-actionBtn {
  display: flex;
  justify-content: end;
}
.aklr-actionBtn .aklr-btn {
  width: 150px;
}
.aklr-actionBtn .aklr-btn--small-tran {
  margin-right: 20px;
}

.aklr-dashHeader {
  background-color: rgb(18, 18, 18);
  display: flex;
  justify-content: space-between;
  padding: 10px 32px;
  border-radius: 10px 10px 0 0;
}
.aklr-dashHeader__main {
  position: sticky;
  top: 0px;
  z-index: 100;
}
.aklr-dashHeader__search {
  display: flex;
  align-items: center;
}
.aklr-dashHeader__search-icon {
  margin-right: 10px;
}
.aklr-dashHeader__search-text {
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
}
.aklr-dashHeader__advanceSearch a {
  display: flex;
}
.aklr-dashHeader__right-list {
  display: flex;
  align-items: center;
}
.aklr-dashHeader__right-item {
  margin: 0px 10px;
}
.aklr-dashHeader__right-item:last-child {
  margin-right: 0px;
}
.aklr-dashHeader__right-link {
  position: relative;
  display: flex;
}
.aklr-dashHeader__right-link img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.aklr-dashHeader__right-prof-notif {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #2B3;
  border-radius: 50%;
  bottom: -2px;
  right: 7px;
}
.aklr-dashHeader .dropdown-menu {
  border: 0px;
  padding: 0px;
  border-radius: 10px;
  background-color: transparent;
  width: 250px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  top: 15px !important;
}
.aklr-dashHeader__filter {
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  background-color: rgb(18, 18, 18);
  padding: 10px 20px 20px;
  border-radius: 0px 0px 10px 10px;
  color: #fff;
  font-size: 12px;
}
.aklr-dashHeader__filter-in {
  display: flex;
  justify-content: flex-end;
}
.aklr-dashHeader__filter-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: rgb(18, 18, 18);
  padding: 1px;
  border-radius: 5px;
  min-width: 70px;
  margin-right: 20px;
}
.aklr-dashHeader__filter-btn a {
  color: rgb(18, 18, 18);
}
.aklr-dashHeader__filter-date {
  font-size: 12px;
  display: flex;
  cursor: pointer;
  transition: all 0.5s;
}
.aklr-dashHeader__filter-date span {
  padding-right: 7px;
}
.aklr-dashHeader__filter-date span a {
  color: #fff;
  font-size: 12px;
}
.aklr-dashHeader__filter-date svg {
  width: 10px;
}
.aklr-dashHeader__filter-date:hover {
  color: var(--clrRed);
}
.aklr-dashHeader__filter-box {
  flex-wrap: wrap;
  max-width: 24%;
}
.aklr-dashHeader__filter--contents .aklr-dashHeader__filter-in {
  justify-content: space-between;
  width: 100%;
}
.aklr-dashHeader__filter-compare {
  display: flex;
  align-items: center;
}
.aklr-dashHeader__filter-compare-head {
  padding: 0px 20px 0px 0px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: rgb(169, 169, 169);
}
.aklr-dashHeader__filter-btns .aklr-btn--dot {
  margin-bottom: 10px;
}
.aklr-dashHeader__filter-btns .aklr-btn {
  width: 100px;
}
.aklr-dashHeader__filter-log {
  white-space: nowrap;
  padding-left: 20px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.aklr-dashHeader__filter-log span {
  display: flex;
  justify-content: space-between;
}
.aklr-dashHeader__filter-log span:first-child {
  margin-bottom: 10px;
}
.aklr-dashHeader__filter-log small {
  color: rgb(169, 169, 169);
  padding-right: 7px;
}
.aklr-dashHeader__filter-invitation {
  margin-top: 10px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .aklr-dashHeader {
    padding: 10px 15px;
  }
  .aklr-dashHeader__search-text {
    display: none;
  }
}
.aklr-MyAccount {
  background-color: rgb(25, 28, 36);
  border-radius: 10px;
}
.aklr-MyAccount__header {
  padding: 20px;
  display: flex;
  align-items: center;
}
.aklr-MyAccount__profImg {
  margin-right: 15px;
}
.aklr-MyAccount__profImg img {
  border-radius: 50%;
}
.aklr-MyAccount__profName {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.aklr-MyAccount__proCat {
  font-size: 16px;
  color: #fff;
}
.aklr-MyAccount__body {
  padding: 10px 10px;
  border-top: 1px solid rgb(169, 169, 169);
  border-bottom: 1px solid rgb(169, 169, 169);
}
.aklr-MyAccount__action {
  padding: 20px 20px;
}
.aklr-MyAccount__list {
  list-style: none;
}
.aklr-MyAccount__item {
  color: #fff;
  width: 100%;
  display: flex;
}
.aklr-MyAccount__item:last-child .aklr-MyAccount__link {
  margin-bottom: 0px;
}
.aklr-MyAccount__link {
  color: #fff !important;
  padding: 10px;
  width: 100%;
  border-radius: 7px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.aklr-MyAccount__link:hover {
  background-color: var(--clrRed);
}
.aklr-MyAccount__link svg {
  margin-right: 10px;
  width: 18px;
}

.aklr-RecentDevices {
  display: none;
}
.aklr-RecentDevices--active {
  display: block;
}

.aklr-recentdevc {
  background-color: #191C24;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}
.aklr-recentdevc__tablewrap {
  padding: 48px 0px 20px 0px;
}
.aklr-recentdevc__table {
  width: 100%;
}
.aklr-recentdevc__table tr:last-child td {
  border-bottom: 0px;
}
.aklr-recentdevc__tablehead {
  width: 100%;
  padding: 0px 25px 25px 25px;
  border-bottom: 1px solid #808080;
}
.aklr-recentdevc__tablehead table {
  width: 100%;
}
.aklr-recentdevc__headitmimgtxt {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.aklr-recentdevc__headitmimgtxt p {
  padding-right: 10px;
}
.aklr-recentdevc__headitmimgtxt a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.aklr-recentdevc__headitmimgtxt img {
  width: 26px;
  height: auto;
  padding: 6px;
}
.aklr-recentdevc__headitmimgtxt img:hover {
  background-color: #2a2f3c;
  border-radius: 5px;
}
.aklr-recentdevc__imgtxt {
  display: flex;
  align-items: center;
}
.aklr-recentdevc__imgtxt img {
  width: 22px;
  height: auto;
}
.aklr-recentdevc__imgtxt p {
  font-size: 16px;
  line-height: 24px;
  color: #a9a9a9;
  padding-left: 15px;
}
.aklr-recentdevc__tableheaditm {
  width: 25%;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
}
.aklr-recentdevc__tableheaditm.t-alignr {
  text-align: end;
}
.aklr-recentdevc__tablerow {
  width: 100%;
  border-bottom: 1px solid #808080;
  padding: 18px 25px;
}
.aklr-recentdevc__tablerow table {
  width: 100%;
}
.aklr-recentdevc__tablerow.b-none {
  border-bottom: none;
}
.aklr-recentdevc__tableitm {
  width: 25%;
  vertical-align: middle;
  font-size: 16px;
  line-height: 24px;
  color: #a9a9a9;
}
.aklr-recentdevc__tableitm.t-alignr {
  text-align: end;
}
.aklr-recentdevc__pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.aklr-recentdevc__paginationnum {
  padding: 0px 6px;
  color: #a9a9a9;
}
.aklr-recentdevc__paginationnum span {
  color: #a9a9a9;
}
.aklr-recentdevc__prevarw {
  width: 20px;
  height: 20px;
  /* padding: 4px; */
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.aklr-recentdevc__prevarw a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a9a9a9;
  font-size: 22px;
  width: 100%;
  height: 100%;
  line-height: 21px;
}
.aklr-recentdevc__prevarw img {
  width: 75%;
}
.aklr-recentdevc__prevarw:hover {
  background-color: #2a2f3c;
  border-radius: 5px;
}
.aklr-recentdevc__nxtarw {
  width: 20px;
  height: 20px;
  /* padding: 4px; */
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.aklr-recentdevc__nxtarw a {
  display: flex;
  justify-content: center;
  color: #a9a9a9;
  font-size: 22px;
  width: 100%;
  height: 100%;
  line-height: 21px;
}
.aklr-recentdevc__nxtarw img {
  width: 75%;
}
.aklr-recentdevc__nxtarw:hover {
  background-color: #2a2f3c;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .aklr-recentdevc__tablewrap {
    padding: 0px;
  }
  .aklr-recentdevc__tablehead {
    display: none;
  }
  .aklr-recentdevc__tablerow {
    display: block;
    padding: 20px 0px;
  }
  .aklr-recentdevc__tableitm {
    display: block;
    margin: 5px 0;
    width: 100%;
  }
  .aklr-recentdevc__tableitm.t-alignr {
    text-align: start;
  }
}
.aklr-PlDetails {
  padding: 0px;
}
.aklr-PlDetails__Pic {
  height: 150px;
  background-color: #ccc;
  width: 150px;
  margin: 20px 0 50px;
  border-radius: 50%;
}
.aklr-PlDetails__body {
  padding-bottom: 30px;
}

.aklr-stngSecurity__body {
  width: 80%;
  margin: 0px auto;
  padding: 60px 0 0;
}
.aklr-stngSecurity__boxWrap {
  display: flex;
  justify-content: space-between;
}
.aklr-stngSecurity__box {
  width: 48%;
  margin-bottom: 70px;
}
.aklr-stngSecurity__list {
  list-style: none;
}
.aklr-stngSecurity__item {
  margin-bottom: 30px;
}
.aklr-stngSecurity__logOut {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: var(--clrRed);
  font-weight: bold;
  padding: 15px 0 20px;
}
.aklr-stngSecurity__logOut:hover {
  color: var(--clrRed);
}
.aklr-stngSecurity__form {
  padding-top: 30px;
}
.aklr-stngSecurity__form-action {
  padding-top: 15px;
}
.aklr-stngSecurity__form-action input {
  border: none;
}
.aklr-stngSecurity__form--SecQtn .aklr-input__label {
  color: rgb(128, 128, 128);
}
.aklr-stngSecurity__form .aklr-input__text {
  background-image: url("../images//aklr-lock-logo.png");
  background-position: 12px 15px;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 35px;
}
.aklr-stngSecurity__form .aklr-input__text:not(:-moz-placeholder) ~ label {
  top: 15px;
  left: 35px;
  font-size: 14px;
  z-index: 1;
  opacity: 0;
  letter-spacing: 3px;
}
.aklr-stngSecurity__form .aklr-input__text:focus ~ label, .aklr-stngSecurity__form .aklr-input__text:not(:placeholder-shown) ~ label {
  top: 15px;
  left: 35px;
  font-size: 14px;
  z-index: 1;
  opacity: 0;
  letter-spacing: 3px;
}
.aklr-stngSecurity__form .aklr-input__text:-webkit-input-placeholder {
  color: transparent;
}
.aklr-stngSecurity__form .aklr-input__text:-moz-placeholder {
  color: transparent;
}
.aklr-stngSecurity__form-label {
  position: absolute;
  top: 15px;
  left: 35px;
  transition: all 300ms ease-in-out;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.4);
}
.aklr-stngSecurity__timeOut {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.aklr-stngSecurity__timeOut p {
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 767px) {
  .aklr-stngSecurity__body {
    padding: 50px 0 0;
    width: 100%;
  }
  .aklr-stngSecurity__boxWrap {
    flex-direction: column;
  }
  .aklr-stngSecurity__box {
    width: 100%;
    margin-bottom: 30px !important;
  }
  .aklr-stngSecurity__boxWrap:last-child .aklr-stngSecurity__box.mb-0 {
    margin-bottom: 30px !important;
  }
  .aklr-stngSecurity__item:last-child {
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
  .aklr-stngSecurity__timeOut {
    padding-bottom: 0px;
  }
}
.aklr-stngNotfn__table {
  border: none !important;
  margin: 0px;
}
.aklr-stngNotfn__table-respHead {
  display: none;
}
.aklr-stngNotfn__table-cntr {
  text-align: center;
}
.aklr-stngNotfn__table th {
  font-weight: 500;
  border: none !important;
}
.aklr-stngNotfn__table th, .aklr-stngNotfn__table td {
  color: #fff;
  font-size: 12px;
}
.aklr-stngNotfn__table td {
  padding-bottom: 50px;
}
.aklr-stngNotfn__table-spacerL {
  padding-bottom: 100px !important;
}
.aklr-stngNotfn__table-labelBold {
  font-weight: 500;
}
.aklr-stngNotfn__table-cntr small {
  display: none;
}
.aklr-stngNotfn__body {
  margin: 15px 0;
  padding: 15px 0;
  border-top: 1px solid rgb(128, 128, 128);
  border-bottom: 1px solid rgb(128, 128, 128);
}
.aklr-stngNotfn__time {
  margin-bottom: 20px;
}
.aklr-stngNotfn__time span {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
}
.aklr-stngNotfn__time .dropdown a {
  background-color: rgb(87, 87, 87);
  padding: 2px 8px;
  color: #fff;
  display: flex;
  border-radius: 10px;
  font-size: 12px;
  align-items: center;
}
.aklr-stngNotfn__time .dropdown a svg {
  margin-left: 5px;
  width: 10px;
}

@media (max-width: 767px) {
  .aklr-stngNotfn__table-respHead {
    display: block;
    font-weight: 600;
  }
  .aklr-stngNotfn__table-head {
    display: none;
  }
  .aklr-stngNotfn__table th {
    display: none;
  }
  .aklr-stngNotfn__table td {
    display: block;
    width: 100% !important;
    padding: 0 0 25px;
  }
  .aklr-stngNotfn__table .aklr-switch {
    margin-bottom: 10px;
  }
  .aklr-stngNotfn__table .aklr-switch__wrap .aklr-switch {
    margin-right: 10px;
  }
  .aklr-stngNotfn__table-cntr {
    display: inline-flex !important;
    align-items: flex-start;
  }
  .aklr-stngNotfn__table-cntr small {
    display: flex;
    width: 70px;
  }
  .aklr-stngNotfn__table .aklr-ckBox {
    margin-top: -6px;
    margin-left: 10px;
  }
  .aklr-stngNotfn__table .aklr-switch__text {
    padding-left: 0px;
  }
  .aklr-stngNotfn__table-PriorityNotifi {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .aklr-stngNotfn__table-PriorityNotifi td {
    width: auto !important;
    padding-bottom: 0px !important;
  }
  .aklr-stngNotfn__table-PriorityNotifi td:first-child {
    width: 100% !important;
  }
  .aklr-stngNotfn__table-labelBold {
    margin-bottom: 10px;
  }
}
.aklr-searchovrlay {
  background-color: #191C24;
  width: 40%;
  padding: 0px;
  border-radius: 15px;
}
.aklr-searchovrlay .padb-none {
  padding-bottom: 0;
}
.aklr-searchovrlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #a9a9a9;
  padding: 10px;
  border-radius: 12px;
}
.aklr-searchovrlay__searchinput {
  background-color: transparent;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  border: 0;
  width: 100%;
  padding: 0px 8px;
}
.aklr-searchovrlay__searchinput:focus {
  border: 0 !important;
}
.aklr-searchovrlay__srchbtn {
  width: 5%;
}
.aklr-searchovrlay__srchbtn img {
  width: 100%;
}
.aklr-searchovrlay__clsbtn {
  width: 5%;
  cursor: pointer;
}
.aklr-searchovrlay__clsbtn img {
  width: 100%;
}
.aklr-searchovrlay__line {
  height: 1px;
  background-color: #a9a9a9;
  margin: 10px 0px 15px;
}
.aklr-searchovrlay__searchcontent h3 {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.aklr-searchovrlay__popularsrchs h4 {
  font-size: 10px;
  line-height: 13px;
  color: #a9a9a9;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 0px 10px 0px;
}
.aklr-searchovrlay__srchtags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.aklr-searchovrlay__srchtags .aklr-btn--icon {
  box-shadow: rgba(224, 67, 112, 0.3) 0px 1px 2px 0px, rgba(224, 67, 112, 0.15) 0px 1px 3px 1px;
  font-size: 13px;
}
.aklr-searchovrlay__srchtags .aklr-btn--icon:hover {
  box-shadow: rgba(244, 18, 83, 0.3) 0px 1px 2px 0px, rgba(244, 18, 83, 0.15) 0px 1px 3px 1px;
}
.aklr-searchovrlay__strfavoriteswrap {
  margin-left: -12px;
}
.aklr-searchovrlay__strfavoriteswrap .aklr-btn--icon {
  font-size: 13px;
}
.aklr-searchovrlay .tag-btn {
  background-color: #E04370;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  margin-right: 12px;
}
.aklr-searchovrlay .aklr-btn {
  margin-right: 10px;
  height: auto;
  padding: 7px 12px;
}
.aklr-searchovrlay .aklr-btn--icon-img {
  margin: 0px 0px 0px 5px;
}
.aklr-searchovrlay__srchtagsimg {
  height: 12px;
  margin-right: 6px;
  display: flex;
  align-items: center;
}
.aklr-searchovrlay__srchtagsimg img {
  width: 100%;
}
.aklr-searchovrlay__favorites {
  display: flex;
  align-items: center;
  padding: 15px 0px 15px 8px;
}
.aklr-searchovrlay__favorites h4 {
  font-size: 10px;
  line-height: 13px;
  color: #a9a9a9;
  font-weight: 400;
  padding-left: 10px;
}
.aklr-searchovrlay__fvrtsimg {
  width: 4%;
  display: flex;
  align-items: center;
}
.aklr-searchovrlay__fvrtsimg img {
  width: 100%;
}
.aklr-searchovrlay__strfavorites {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
  padding-left: 12px;
}
.aklr-searchovrlay__strfavorites .aklr-btn--icon-img {
  width: 15px;
}
.aklr-searchovrlay__strfavorites:first-child {
  padding-top: 0;
}
.aklr-searchovrlay__strfavorites .strfavtagstar {
  width: 25px;
  height: 25px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s ease;
  border-radius: 6px;
}
.aklr-searchovrlay__strfavorites .strfavtagstar.active {
  background-color: #F41253;
}
.aklr-searchovrlay__strfavorites .strfavtagstar:hover {
  background-color: #F41253;
  box-shadow: rgba(224, 67, 112, 0.25) 0px 1px 2px 0px, rgba(224, 67, 112, 0.3) 0px 2px 6px 2px;
}
.aklr-searchovrlay__strfavorites .strfavtag {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
}
.aklr-searchovrlay__strfavorites .strfavtag:hover {
  background-color: #F41253;
}
.aklr-searchovrlay__strfavorites .starfavtagimg {
  display: flex;
  align-items: center;
  width: 18px;
}
.aklr-searchovrlay__strfavorites .starfavtagimg img {
  width: 100%;
}
.aklr-searchovrlay__strfavorites p {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  font-weight: 400;
  padding-left: 10px;
  width: 70%;
}
.aklr-searchovrlay__pages h4 {
  font-size: 10px;
  line-height: 13px;
  color: #a9a9a9;
  font-weight: 400;
  text-transform: uppercase;
}
.aklr-searchovrlay__pggrid {
  display: flex;
  width: 100%;
  padding: 10px 0px 0px 10px;
  margin-bottom: -10px;
}
.aklr-searchovrlay__pggridleft {
  width: 50%;
}
.aklr-searchovrlay__pggridright {
  width: 50%;
}
.aklr-searchovrlay__pgitem {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.aklr-searchovrlay__pgitemimg {
  width: 15px;
  display: flex;
  align-items: center;
}
.aklr-searchovrlay__pgitemimg img {
  width: 100%;
}
.aklr-searchovrlay__pgitemtxt {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  line-height: 24px;
  padding-left: 10px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.aklr-searchovrlay__pgitemtxt:hover {
  color: #F41253;
}
.aklr-searchovrlay__recentSearch {
  width: 100%;
}
.aklr-searchovrlay__recentSearch h4 {
  font-size: 12px;
  line-height: 16px;
  color: #a9a9a9;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0px 0px 12px 0px;
}
.aklr-searchovrlay__recentSearch-list {
  margin: 0px;
}
.aklr-searchovrlay__recentSearch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.aklr-searchovrlay__recentSearch-item:last-child {
  margin-bottom: 0px;
}
.aklr-searchovrlay__recentSearch-icon {
  width: 35px;
  display: flex;
}
.aklr-searchovrlay__recentSearch-icon img {
  width: 100%;
}
.aklr-searchovrlay__recentSearch-head {
  font-size: 14px;
  margin-bottom: 2px;
  color: #fff;
}
.aklr-searchovrlay__recentSearch-head-sub {
  font-size: 11px;
  color: #A9A9A9;
}

@media (max-width: 767px) {
  #ContentPlaceHolder1_popUpSearch_PW-1 {
    width: 100% !important;
  }
  .aklr-searchovrlay__srchtags {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.aklr-dashbrdbanner {
  margin: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #eb3a5d;
}
.aklr-dashbrdbanner__outer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aklr-dashbrdbanner__title {
  width: 55%;
  font-size: 30px;
  line-height: 35px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.aklr-dashbrdbanner__txt {
  width: 55%;
  font-size: 12px;
  color: #fff;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.aklr-dashbrdbanner__link {
  width: 55%;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 24px;
}
.aklr-dashbrdbanner__link:hover {
  color: #fff;
  text-decoration: underline;
}
.aklr-dashbrdbanner__contwrap {
  display: flex;
  flex-direction: column;
  align-content: flex-end;
  align-items: flex-end;
  padding-right: 60px;
  width: 75%;
  margin-left: auto;
}
.aklr-dashbrdbanner__wrap {
  width: 100%;
  margin-bottom: 0px !important;
}
.aklr-dashbrdbanner__wrap .slick-dots {
  bottom: 10px;
}
.aklr-dashbrdbanner__wrap .slick-dots li button:before {
  content: " ";
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.aklr-dashbrdbanner__wrap .slick-prev,
.aklr-dashbrdbanner__wrap .slick-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #333;
  font-size: 20px;
  z-index: 10;
}
.aklr-dashbrdbanner__wrap .slick-prev:hover,
.aklr-dashbrdbanner__wrap .slick-next:hover {
  background: rgba(255, 255, 255, 0.8);
}
.aklr-dashbrdbanner__wrap .slick-prev {
  left: 10px;
}
.aklr-dashbrdbanner__wrap .slick-next {
  right: 10px;
}
.aklr-dashbrdbanner__wrap .slick-prev, .aklr-dashbrdbanner__wrap .slick-next {
  background-color: unset;
}
.aklr-dashbrdbanner__wrap .slick-prev:hover, .aklr-dashbrdbanner__wrap .slick-next:hover {
  background-color: unset;
}
.aklr-dashbrdbanner__wrap .slick-prev:before, .aklr-dashbrdbanner__wrap .slick-next:before {
  content: " ";
}
.aklr-dashbrdbanner__wrap .slick-arrow img {
  width: 20px;
}
.aklr-dashbrdbanner__item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 175px;
}
.aklr-dashbrdbanner__item img {
  width: 100%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .aklr-dashbrdbanner__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .aklr-dashbrdbanner__title {
    font-size: 32px;
    line-height: 40px;
    width: 68%;
  }
  .aklr-dashbrdbanner__txt {
    width: 68%;
  }
  .aklr-dashbrdbanner__link {
    width: 68%;
  }
  .aklr-dashbrdbanner__wrap.slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .aklr-dashbrdbanner__wrap .slick-dots {
    bottom: -55px;
  }
}
@media (max-width: 1023px) {
  .aklr-dashbrdbanner__item {
    min-height: auto !important;
  }
  .aklr-dashbrdbanner .slick-arrow {
    display: none !important;
  }
}
.DXP-pagination .pagingTbl {
  border: none;
}
.DXP-pagination .pagingButtons a {
  color: #a9a9a9;
  border-radius: 5px;
  display: flex;
  padding: 0px;
  justify-content: center;
  align-items: center;
  height: auto;
}
.DXP-pagination .pagingButtons a.aspNetDisabled {
  color: #E04370;
  cursor: default;
}
.DXP-pagination .pagingButtons a:hover {
  background-color: #313339;
}
.DXP-pagination .pagingButtons td {
  border: none;
}
.DXP-pagination .pagingButtons td.firstBtn {
  border-left: none;
}

.aklr-pagination {
  display: flex;
  justify-content: end;
  margin: 30px 0 0;
}
.aklr-pagination a, .aklr-pagination .active-page {
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  width: 25px;
  height: 25px;
  font-size: 12px;
  border-radius: 5px;
  color: rgb(255, 255, 255);
}
.aklr-pagination .active-page {
  background-color: rgb(224, 67, 112);
}

.aklr-fltrdropdwn {
  border-radius: 10px;
  background-color: #403d45;
}
.aklr-fltrdropdwn__outer {
  padding: 30px 40px 40px 40px;
}
.aklr-fltrdropdwn__outer .aklr-authhead {
  text-align: left;
  font-size: 42px;
  border-bottom: 1px solid #615D66;
}
.aklr-fltrdropdwn__outer .aklr-switch__text {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.aklr-fltrdropdwn__outer .aklr-switch__wrap {
  padding: 15px 0px;
}
.aklr-fltrdropdwn__container {
  padding: 30px 0px;
}
.aklr-fltrdropdwn__accordionitem {
  background-color: #403d45;
  border: 1px solid #f43f72 !important;
  border-radius: 8px !important;
  margin: 20px 0px;
}
.aklr-fltrdropdwn__aftrSwitch {
  display: none;
}
.aklr-fltrdropdwn__aftrSwitch.active {
  display: block;
}
.aklr-fltrdropdwn__accordionbody {
  background-color: transparent;
  min-height: 150px;
  max-height: 200px;
  overflow-y: auto;
  padding: 0;
  margin: 0px 15px 20px;
}
.aklr-fltrdropdwn__accordionbody::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #403d45;
}
.aklr-fltrdropdwn__accordionbody::-webkit-scrollbar {
  width: 7px;
  background-color: #403d45;
}
.aklr-fltrdropdwn__accordionbody::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f43f72;
  height: 50px;
}
.aklr-fltrdropdwn__accordionbtn {
  background-color: transparent;
  color: #fff;
  padding-left: 45px;
  position: relative;
}
.aklr-fltrdropdwn__accordionbtn:not(.collapsed) {
  background-color: transparent;
  color: #fff;
  box-shadow: unset;
}
.aklr-fltrdropdwn__accordionbtn:focus {
  box-shadow: unset;
  border: 0px solid transparent;
}
.aklr-fltrdropdwn__accordionbtn::after {
  content: "";
  position: absolute;
  background-image: url(../images/accordion-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s ease-in-out;
  transform: translateY(-25%) rotate(0deg);
  top: 50%;
  left: 15px;
  width: 20px;
  height: 20px;
}
.aklr-fltrdropdwn__accordionbtn:not(.collapsed)::after {
  transform: translateY(-75%) rotate(180deg);
  background-image: url(../images/accordion-arrow.png) !important;
}
.aklr-fltrdropdwn__chkboxwrap {
  margin-bottom: 15px;
}
.aklr-fltrdropdwn__chkbox {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.aklr-fltrdropdwn__chkbox input {
  width: 20px;
  height: 20px;
}
.aklr-fltrdropdwn__chkbox span {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  padding-left: 8px;
}
.aklr-fltrdropdwn__chkbox.aklr-ckBox {
  width: auto;
  height: 25px;
}
.aklr-fltrdropdwn__chkbox.aklr-ckBox:hover .aklr-ckBox-checkmark {
  background-color: #b04163;
}
.aklr-fltrdropdwn__chkbox .aklr-ckBox-checkmark {
  background-color: #C0C0C0;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translate(0px, -50%);
}
.aklr-fltrdropdwn__chkbox .aklr-ckBox-checkmark::after {
  left: 6.5px;
  top: 2px;
  width: 6px;
  height: 12px;
}
.aklr-fltrdropdwn__chkboximg {
  width: 35px;
  padding-left: 10px;
  display: flex;
  align-items: center;
}
.aklr-fltrdropdwn__chkboximg img {
  width: 100%;
}
.aklr-fltrdropdwn__chkboxtxt {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  padding-left: 8px;
}
.aklr-fltrdropdwn .aklr-actionBtn .aklr-btn {
  width: auto;
  padding: 0px 20px;
}
.aklr-fltrdropdwn__label {
  color: #fff;
}
.aklr-fltrdropdwn__dropdown {
  position: relative;
}
.aklr-fltrdropdwn .dxeButtonEditSys {
  width: 100% !important;
}
.aklr-fltrdropdwn .dxeButtonEdit_Moderno {
  background-color: #403d45;
  border: 1px solid #f43f72 !important;
  border-radius: 8px !important;
  margin: 8px 0px 0;
}
.aklr-fltrdropdwn .dxeIIC {
  display: none;
}
.aklr-fltrdropdwn .dxeButton {
  display: none;
}
.aklr-fltrdropdwn .dxeButtonEdit_Moderno td.dxic {
  padding: 0px !important;
}
.aklr-fltrdropdwn .dxeButtonEdit_Moderno .dxeEditArea_Moderno {
  background-color: transparent !important;
  height: 40px;
  color: #fff;
  padding: 0px 10px;
  cursor: pointer;
}
.aklr-fltrdropdwn .dxeButtonEdit_Moderno .dxeEditArea_Moderno:focus {
  border: none !important;
}
.aklr-fltrdropdwn .dxpcDropDown_Moderno {
  top: 100% !important;
}
.aklr-fltrdropdwn .dxpcDropDown_Moderno .dxpc-mainDiv {
  background-color: #191c24;
}
.aklr-fltrdropdwn .dxeListBox_Moderno {
  padding: 10px !important;
}
.aklr-fltrdropdwn .dxeListBox_Moderno {
  background-color: transparent !important;
  border: none !important;
}
.aklr-fltrdropdwn .dxeListBox_Moderno div.dxlbd {
  padding: 0px 10px 0 0 !important;
}
.aklr-fltrdropdwn .dxeListBoxItem_Moderno {
  border: none !important;
  vertical-align: middle;
  color: #fff;
}
.aklr-fltrdropdwn .dxeListBoxItemHover_Moderno {
  background-color: var(--clrRed);
}
.aklr-fltrdropdwn .dxlbd::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #403d45;
}
.aklr-fltrdropdwn .dxlbd::-webkit-scrollbar {
  width: 7px;
  background-color: #403d45;
  border-radius: 10px;
}
.aklr-fltrdropdwn .dxlbd::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f43f72;
  height: 50px;
}
.aklr-fltrdropdwn .dxeListBoxItemSelected_Moderno {
  background-color: #2b2d33;
}
.aklr-fltrdropdwn .aklr-ContryMultyList {
  border: none;
  width: 100% !important;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxe {
  padding: 0px !important;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno {
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno .dxichCellSys {
  padding: 0px !important;
  vertical-align: middle;
  width: 20px;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno .dxichCellSys .dxICBFocused_Moderno {
  outline: none !important;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno .dxichTextCellSys {
  padding: 0px !important;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno .dxichTextCellSys .dx-wrap {
  display: flex;
  justify-content: left;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  align-items: center;
  line-height: 22px;
  padding-left: 10px;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno .dxichTextCellSys .dx-wrap img {
  width: 35px;
  border-radius: 5px;
  margin: 0px 10px 0px 0px;
  padding: 0px !important;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno .dxichTextCellSys .dxAIFFE:focus {
  outline: none !important;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno .dxichSys {
  background-color: #C0C0C0;
  width: 20px;
  height: 20px;
  background-image: none !important;
  position: relative;
  border-radius: 5px;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno .dxichSys.dxWeb_edtCheckBoxChecked_Moderno {
  background-color: var(--clrRed);
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno .dxichSys.dxWeb_edtCheckBoxChecked_Moderno::after {
  left: 7px;
  top: 2px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  content: "";
  position: absolute;
}
.aklr-fltrdropdwn .aklr-ContryMultyList .dxeBase_Moderno tr:hover .dxichSys {
  background-color: #b04163;
}

.aklr-filterDate {
  width: 100%;
  border-radius: 10px;
  background-color: rgb(18, 18, 18);
}
.aklr-filterDate__head {
  font-size: 16px;
  color: #fff;
  border-bottom: 1px solid #a9a9a9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.aklr-filterDate__body {
  padding: 10px;
  display: flex;
  gap: 15px;
}
.aklr-filterDate__options {
  width: 60%;
  padding-right: 20px;
  min-height: 400px;
  max-height: 400px;
  overflow: auto;
}
.aklr-filterDate__options::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #403d45;
}
.aklr-filterDate__options::-webkit-scrollbar {
  width: 7px;
  background-color: #403d45;
  border-radius: 10px;
}
.aklr-filterDate__options::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f43f72;
  height: 50px;
}
.aklr-filterDate__options-list {
  margin: 0px;
  padding: 0px;
}
.aklr-filterDate__options-link {
  font-size: 13px;
  padding: 15px 10px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.aklr-filterDate__options-link:hover {
  background-color: #a23453;
  color: #fff;
}
.aklr-filterDate__choose {
  width: 40%;
}
.aklr-filterDate__choose-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.aklr-filterDate__choose-box {
  width: 35%;
}
.aklr-filterDate__choose-box-head {
  font-size: 11px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 700;
}
.aklr-filterDate__choose-input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--clrRed);
  background-color: transparent;
  color: #fff;
  padding: 3px;
  font-size: 12px;
  text-align: center;
}
.aklr-filterDate__choose-input:focus {
  border: 1px solid var(--clrRed) !important;
}
.aklr-filterDate__choose-spacer {
  color: #fff;
  font-weight: 700;
  padding: 0px 8px;
  letter-spacing: -2px;
}
.aklr-filterDate .aklr-switch {
  position: absolute;
  right: 10px;
}
.aklr-filterDate__action {
  padding: 15px;
  border-top: 1px solid #a9a9a9;
  display: flex;
  align-items: center;
  justify-content: end;
}
.aklr-filterDate__action .aklr-btn {
  width: 85px;
  height: 30px;
  margin-left: 10px;
  font-size: 12px;
  border: 1px solid var(--clrRed) !important;
  border-radius: 5px !important;
}
.aklr-filterDate__action .aklr-btn:focus {
  border: 1px solid var(--clrRed) !important;
}

.aklr-fltrmodule {
  background-color: #191c24;
  border-radius: 15px;
}
.aklr-fltrmodule__container {
  padding: 20px;
}
.aklr-fltrmodule__innerwrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-top: 15px;
}
.aklr-fltrmodule__fltrinputs {
  display: flex;
  gap: 15px;
  width: 60%;
}
.aklr-fltrmodule__inputgrp {
  display: flex;
  flex-direction: column;
  width: 30%;
}
.aklr-fltrmodule__inputgrp .aklr-customSelect__trigger {
  border-radius: 10px;
}
.aklr-fltrmodule__inputgrp .aklr-customSelect__arrow {
  display: flex;
}
.aklr-fltrmodule__inputlbl {
  font-size: 14px;
  color: white;
  font-weight: 400;
  padding-bottom: 10px;
}
.aklr-fltrmodule__actions {
  display: flex;
  justify-content: flex-end;
  width: 40%;
  gap: 15px;
}
.aklr-fltrmodule__actions .aklr-btn--wht {
  width: 20%;
}
.aklr-fltrmodule__actions .aklr-btn--wht button {
  display: flex;
  justify-content: center;
}
.aklr-fltrmodule__actions .aklr-btn {
  border-radius: 10px;
}
.aklr-fltrmodule__actions .aklr-btn--medium {
  width: 35%;
}
.aklr-fltrmodule__actionimg {
  width: 40%;
  display: flex;
}
.aklr-fltrmodule__actionimg img {
  width: 100%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .aklr-fltrmodule__actionimg {
    width: 80%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .aklr-fltrmodule__actions .aklr-btn button {
    padding: 8px;
  }
  .aklr-fltrmodule__actionimg {
    width: 80%;
  }
  .aklr-fltrmodule__inputgrp {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .aklr-fltrmodule__innerwrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .aklr-fltrmodule__fltrinputs {
    width: 100%;
  }
  .aklr-fltrmodule__inputgrp {
    width: 100%;
  }
  .aklr-fltrmodule__fltrinputs {
    flex-direction: column;
  }
  .aklr-fltrmodule__actions {
    width: 70%;
    justify-content: flex-start;
    padding-top: 10px;
  }
  .aklr-fltrmodule__actions .aklr-btn button {
    padding: 8px;
  }
  .aklr-fltrmodule__actions .aklr-btn--wht {
    width: 25%;
  }
  .aklr-fltrmodule__actionimg {
    width: 65%;
  }
}
.aklr-talentpgcardwrap__outer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0px -7.5px;
  margin-bottom: 15px;
}

.aklr-exportdatapopup {
  width: 35%;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.aklr-exportdatapopup__header {
  display: flex;
  justify-content: flex-end;
}
.aklr-exportdatapopup__clsbtn {
  width: 7%;
  display: flex;
}
.aklr-exportdatapopup__clsbtn img {
  width: 100%;
}
.aklr-exportdatapopup .aklr-combobtn {
  justify-content: flex-end;
  padding-top: 25px;
}
.aklr-exportdatapopup .aklr-tilte__popuphead {
  padding-bottom: 15px;
  border-bottom: 1px solid #403D45;
}
.aklr-exportdatapopup .aklr-exportdatapopup__wrapb {
  display: none;
}
.aklr-exportdatapopup__searcharea {
  padding-bottom: 15px;
  border-bottom: 1px solid #403D45;
}
.aklr-exportdatapopup__input {
  border: 1px solid #A9A9A9;
  border-radius: 10px;
  width: 100%;
  padding: 8px 16px;
}
.aklr-exportdatapopup__input:focus {
  border: 1px solid #A9A9A9 !important;
  border-radius: 10px;
}
.aklr-exportdatapopup__input::-moz-placeholder {
  font-size: 12px;
  color: #A9A9A9;
  font-weight: 400;
}
.aklr-exportdatapopup__input::placeholder {
  font-size: 12px;
  color: #A9A9A9;
  font-weight: 400;
}
.aklr-exportdatapopup__innersubhead {
  font-size: 14px;
  color: #888690;
  font-weight: 400;
  padding: 15px 0px;
}
.aklr-exportdatapopup__radioinput {
  accent-color: #E04370;
}
.aklr-exportdatapopup__radiogroup {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-bottom: 15px;
  padding-top: 10px;
}
.aklr-exportdatapopup__radiolabel {
  font-size: 12px;
  color: #000;
  font-weight: 700;
  padding-left: 6px;
}
.aklr-exportdatapopup__radiooption {
  display: flex;
  align-items: center;
}
.aklr-exportdatapopup__optionrow {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  align-items: center;
}
.aklr-exportdatapopup__selectdropdown {
  width: 25%;
  border-radius: 6px;
  background-color: #808080;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 2px 4px;
}
.aklr-exportdatapopup__optionssec {
  padding-top: 10px;
}
.aklr-exportdatapopup__optionlabel {
  font-size: 12px;
  color: #000;
  font-weight: 400;
  padding-left: 8px;
}
.aklr-exportdatapopup__checkboxcontainer {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: auto;
}
.aklr-exportdatapopup__checkboxcontainer input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.aklr-exportdatapopup__customcheckbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #c0c0c0;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
}
.aklr-exportdatapopup .aklr-exportdatapopup__checkboxcontainer input:checked ~ .aklr-exportdatapopup__customcheckbox:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #F41253;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.aklr-exportdatapopup.export-as .aklr-exportdatapopup__wrapb {
  display: none;
}
.aklr-exportdatapopup.export-as .aklr-tilte__popuphead {
  border-bottom: unset;
}
.aklr-exportdatapopup.export-as .aklr-exportdatapopup__innercontainerb {
  display: none;
}
.aklr-exportdatapopup.export-as .aklr-exportdatapopup__radiogroup {
  padding-bottom: 60px;
}
.aklr-exportdatapopup.export-as .aklr-combobtn {
  padding-top: 60px;
}
.aklr-exportdatapopup.export-as .aklr-btn--icon-img {
  display: none;
}
.aklr-exportdatapopup.export-as .aklr-btn--icon {
  width: 95px;
}
.aklr-exportdatapopup.export-as .aklr-combobtn__white {
  width: 95px;
}
.aklr-exportdatapopup.export-success {
  padding: 20px 20px 60px 20px;
}
.aklr-exportdatapopup.export-success .aklr-exportdatapopup__header {
  width: 100%;
}
.aklr-exportdatapopup.export-success .aklr-exportdatapopup__wrapa {
  display: none;
}
.aklr-exportdatapopup.export-success .aklr-exportdatapopup__wrapb {
  display: block;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 25px;
}
.aklr-exportdatapopup.export-success .aklr-exportdatapopup__pstrimg {
  width: 75%;
}
.aklr-exportdatapopup.export-success .aklr-exportdatapopup__pstrimg img {
  width: 100%;
}
.aklr-exportdatapopup.export-success .aklr-exportdatapopup__phrase {
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  color: #E04370;
}
.aklr-exportdatapopup.export-success .aklr-exportdatapopup__blacktxt {
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.aklr-talentsclientreview {
  padding: 20px;
  background-color: #191C24;
}
.aklr-talentsclientreview__wrap {
  background-color: #191C24;
}
.aklr-talentsclientreview__wrap .slick-list {
  padding-left: 0px !important;
  padding-right: 26% !important;
}
.aklr-talentsclientreview__tile {
  background-color: #403D45;
  border: 1px solid #E04370;
  padding: 20px;
  border-radius: 10px;
  width: 95%;
}
.aklr-talentsclientreview__txt {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  min-height: 64px;
}
.aklr-talentsclientreview__profilewrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
.aklr-talentsclientreview__profilename {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
.aklr-talentsclientreview__profilename p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  padding-right: 6px;
}
.aklr-talentsclientreview__profilesubtxt {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.aklr-talentsclientreview__profileimg {
  width: 20%;
  padding-right: 12px;
  display: flex;
}
.aklr-talentsclientreview__profileimg img {
  width: 100%;
}
.aklr-talentsclientreview__profilenmeicon {
  width: 10%;
  display: flex;
}
.aklr-talentsclientreview__profilenmeicon img {
  width: 100%;
}
.aklr-talentsclientreview__quote {
  width: 10%;
  display: flex;
  padding-bottom: 10px;
}
.aklr-talentsclientreview__quote img {
  width: 100%;
}

.aklr-filterDate__choose-calendar {
  position: relative;
}
.aklr-filterDate__choose-calendar .dxpc-ddSys {
  left: unset !important;
  border-spacing: 0px;
  right: 0px !important;
  top: 100% !important;
}
.aklr-filterDate__choose-calendar .dxeCalendarDay_Moderno {
  padding: 12px 12px !important;
  border-radius: 100%;
}
.aklr-filterDate__choose-calendar .dxeEditArea_Moderno {
  background-color: transparent !important;
  margin: 0px !important;
  color: #fff;
  text-align: center;
  line-height: 18px !important;
}
.aklr-filterDate__choose-calendar .dxeEditArea_Moderno:focus {
  border: none !important;
}
.aklr-filterDate__choose-calendar .dxeButtonEdit_Moderno td.dxic {
  padding: 0px !important;
}
.aklr-filterDate__choose-calendar .dxeButtonEditSys {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--clrRed);
  background-color: transparent;
  color: #fff;
  padding: 3px;
  font-size: 12px;
  text-align: center;
  position: relative;
}
.aklr-filterDate__choose-calendar .dxeButtonEditButton_Moderno {
  padding: 0 !important;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 0;
  height: 100%;
  border: none !important;
  box-shadow: none !important;
}
.aklr-filterDate__choose-calendar .dxeButtonEditButton_Moderno img {
  display: none !important;
}
.aklr-filterDate__choose-calendar .dxeButtonEditButtonHover_Moderno {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  line-height: normal !important;
}
.aklr-filterDate__choose-calendar .dxeButtonEditButtonPressed_Moderno {
  background: none !important;
  border: none !important;
}

.dxeCalendar_Moderno {
  font-family: "Circular Std" !important;
  border: 0px !important;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
  background-color: #191919 !important;
  color: #cdcaca !important;
  font: 12px "Circular Std" !important;
}
.dxeCalendar_Moderno td {
  font-size: 12px;
  font-weight: 500;
  font-family: "Circular Std" !important;
}
.dxeCalendar_Moderno .dxeCalendarHeader_Moderno {
  background-color: #eb2866;
  padding: 8px 6px;
  border: none;
}
.dxeCalendar_Moderno .dxeCalendarHeader_Moderno td.dxe {
  color: #ffffff;
}
.dxeCalendar_Moderno .dxeCalendarToday_Moderno {
  box-shadow: inset 0 0 0 1px #E04370 !important;
}
.dxeCalendar_Moderno .dxeCalendarSelected_Moderno {
  background-color: #E04370 !important;
  color: #fff !important;
}
.dxeCalendar_Moderno .dxeCalendarSelected_Moderno:hover {
  background-color: #E04370 !important;
}
.dxeCalendar_Moderno td.dxe {
  padding: 0;
  color: #191919;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
}
.dxeCalendar_Moderno .dxeCalendarButton_Moderno {
  background: none;
  box-shadow: none;
  border: none;
  padding: 8px 11px 7px;
  min-width: 37px;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
}
.dxeCalendar_Moderno .dxeCalendarButton_Moderno:hover {
  color: #E04370;
}
.dxeCalendar_Moderno .dxeCalendarFooter_Moderno {
  padding-right: 15px;
  text-align: right;
  background: #181818;
  border-top: 1px solid #2a2a2a;
}
.dxeCalendar_Moderno .dxeCalendarHover_Moderno {
  background-color: #2c2c2c !important;
  color: #fff !important;
}
.dxeCalendar_Moderno td.dxMonthGridWithWeekNumbers {
  padding: 0px !important;
  min-width: 320px;
}
.dxeCalendar_Moderno td.dxMonthGridWithWeekNumbers > table > tbody > tr > td:first-child {
  font-size: 11px;
  text-align: right;
  padding: 8px 10px 8px 10px;
  color: #6d6c6c;
  background-color: #222121;
}
.dxeCalendar_Moderno .dxeCalendarDayHeader_Moderno {
  padding: 10px 4px 10px;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
}
.dxeCalendar_Moderno .dxeCalendarWeekend_Moderno {
  color: #f5852a !important;
}
.dxeCalendar_Moderno .dxEditors_edtCalendarPrevYear_Moderno {
  background-image: url(../images/calendar-doubleArrow.png);
  background-position: left 5px top 0px;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
  background-size: cover;
}
.dxeCalendar_Moderno .dxEditors_edtCalendarNextYear_Moderno {
  background-image: url(../images/calendar-doubleArrow.png);
  background-position: left -38px top 0px;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
  background-size: cover;
}
.dxeCalendar_Moderno .dxEditors_edtCalendarPrevMonth_Moderno {
  background-image: url(../images/calendar-singleArrow.png);
  background-position: left 5px top 0px;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
  background-size: cover;
}
.dxeCalendar_Moderno .dxEditors_edtCalendarNextMonth_Moderno {
  background-image: url(../images/calendar-singleArrow.png);
  background-position: left -38px top 0px;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
  background-size: cover;
}

.aklr-DarkBox__body .country-report {
  width: 100% !important;
  margin: 0px !important;
}
.aklr-DarkBox__body .country-report td {
  border: none !important;
  font-size: 12px !important;
}
.aklr-DarkBox__body .country-report td:last-child {
  text-align: right !important;
}
.aklr-DarkBox__body .country-report td:nth-child(3) {
  text-align: center !important;
}
.aklr-DarkBox__body .country-report .country-flag {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none !important;
}

.aklr-DarkBox__registeredTC .aklr-DarkBox__body {
  min-height: 335px;
  max-height: 335px;
  overflow: auto;
}
.aklr-DarkBox__registeredTC .aklr-DarkBox__body::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #403d45;
}
.aklr-DarkBox__registeredTC .aklr-DarkBox__body::-webkit-scrollbar {
  width: 7px;
  background-color: #403d45;
  border-radius: 10px;
}
.aklr-DarkBox__registeredTC .aklr-DarkBox__body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f43f72;
  height: 50px;
}

.aklr-invuploadfiles__outer {
  margin-bottom: 25px;
}
.aklr-invuploadfiles__cardwrap {
  display: flex;
  gap: 20px;
}
.aklr-invuploadfiles .aklr-title {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .aklr-invuploadfiles__cardwrap {
    flex-direction: column;
    gap: 0;
  }
  .aklr-invuploadfiles .aklr-fileuploadcard {
    width: 100%;
  }
}
.aklr-attchdfiles {
  padding: 30px 20px;
  background-color: #191C24;
  border-radius: 10px;
}
.aklr-attchdfiles__head {
  font-size: 24px;
  font-weight: 700;
  color: #E04370;
  padding-bottom: 15px;
}
.aklr-attchdfiles__subtxt {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 30px;
}
.aklr-attchdfiles__srchbar {
  display: flex;
  border: 1px solid #a9a9a9;
  padding: 10px;
  border-radius: 8px;
}
.aklr-attchdfiles__srchinput {
  width: 100%;
  background-color: #191C24;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.aklr-attchdfiles__srchinput::-moz-placeholder {
  color: #a9a9a9;
  font-size: 14px;
}
.aklr-attchdfiles__srchinput::placeholder {
  color: #a9a9a9;
  font-size: 14px;
}
.aklr-attchdfiles__srchinput:focus {
  border: none !important;
}
.aklr-attchdfiles__srchicn {
  width: 22px;
  display: flex;
  align-items: center;
  padding-right: 6px;
}
.aklr-attchdfiles__srchicn img {
  width: 100%;
}
.aklr-attchdfiles__table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0px;
}
.aklr-attchdfiles__table th, .aklr-attchdfiles__table td {
  padding: 20px 10px;
}
.aklr-attchdfiles__table th:first-child, .aklr-attchdfiles__table td:first-child {
  padding-left: 0px;
}
.aklr-attchdfiles__colheada, .aklr-attchdfiles__colheadb, .aklr-attchdfiles__colheadc, .aklr-attchdfiles__colheadd {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  border-bottom: 1px solid #a9a9a9;
  padding: 10px 0px;
}
.aklr-attchdfiles__colheada, .aklr-attchdfiles__colheadc {
  width: 30%;
}
.aklr-attchdfiles__colheadb, .aklr-attchdfiles__colheadd {
  width: 20%;
}
.aklr-attchdfiles__colcwrap {
  display: flex;
  align-items: center;
}
.aklr-attchdfiles__elmnticn {
  width: 20px;
  display: flex;
}
.aklr-attchdfiles__elmnticn input {
  width: 20px;
}
.aklr-attchdfiles__elmnticn img {
  width: 100%;
}
.aklr-attchdfiles__cola, .aklr-attchdfiles__colb, .aklr-attchdfiles__colc, .aklr-attchdfiles__cold {
  padding: 20px 0px;
  border-bottom: 1px solid #a9a9a9;
}
.aklr-attchdfiles__cola, .aklr-attchdfiles__colc {
  width: 30%;
}
.aklr-attchdfiles__colb, .aklr-attchdfiles__cold {
  width: 20%;
}
.aklr-attchdfiles__cola {
  font-size: 14px;
  color: #a9a9a9;
  font-weight: 400;
}
.aklr-attchdfiles__colb, .aklr-attchdfiles__colc {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
.aklr-attchdfiles__colheadd {
  text-align: center;
}
.aklr-attchdfiles__secdwrap {
  display: flex;
  justify-content: center;
}
.aklr-attchdfiles__trshicn {
  width: 15px;
}
.aklr-attchdfiles__trshicn input {
  width: 15px;
  border: none !important;
}
.aklr-attchdfiles__trshicn img {
  width: 100%;
}
.aklr-attchdfiles__trshicn:focus {
  border: none;
}

@media (max-width: 767px) {
  .aklr-attchdfiles__table-main {
    overflow-y: scroll;
  }
}
.aklr-dash__invitation-bottomBox {
  display: flex;
  gap: 15px;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__RecentES {
  width: 40%;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__TotalIS {
  width: 60%;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__TotalIS .highcharts-background {
  fill: #30333a;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__TotalIS .highcharts-grid-line {
  stroke: #4a4c58;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__TotalIS .highcharts-yaxis-labels {
  color: #fff;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__TotalIS .highcharts-yaxis-labels text {
  fill: #fff !important;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__TotalIS .highcharts-legend-item text {
  fill: #fff !important;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__TotalIS .highcharts-series .highcharts-point {
  fill: #776bd8;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__TotalIS .highcharts-xaxis .highcharts-axis-line {
  stroke: #a9a9a9;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__TotalIS .highcharts-title {
  fill: #fff !important;
}
.aklr-dash__invitation-bottomBox .aklr-DarkBox__TotalIS .highcharts-xaxis-labels text {
  fill: rgba(255, 255, 255, 0.8) !important;
  font-size: 9px !important;
}
.aklr-dash__invitation-send {
  min-height: calc(100vh - 0px);
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .aklr-dash__invitation-bottomBox {
    flex-direction: column;
  }
  .aklr-dash__invitation .aklr-DarkBox {
    width: 100%;
  }
  .aklr-dash__invitation-send {
    background-size: cover;
    padding: 15px;
  }
}
.aklr-invSgnUp {
  width: 475px;
}
.aklr-invSgnUp__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  margin: 0px auto 15px;
}
.aklr-invSgnUp__logo img {
  width: 100%;
}
.aklr-invSgnUp__heading {
  text-align: center;
  background: linear-gradient(90deg, #EB3A5D 17.52%, #F27734 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 7px;
}
.aklr-invSgnUp__heading-sub {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.aklr-invSgnUp__body {
  background-color: rgb(38, 38, 41);
  padding: 10px;
  margin-top: 25px;
  border-radius: 10px;
}
.aklr-invSgnUp__top {
  padding: 15px 0px;
  border-bottom: 1px solid rgb(169, 169, 169);
  display: flex;
  align-items: center;
}
.aklr-invSgnUp__top .aklr-input {
  margin-bottom: 0px;
}
.aklr-invSgnUp__top .aklr-btn--icon {
  margin-left: 15px;
  gap: 8px;
  white-space: nowrap;
  height: 42px;
}
.aklr-invSgnUp__action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 10px;
  gap: 25px;
}
.aklr-invSgnUp__action .aklr-btn--icon {
  white-space: nowrap;
  height: 42px;
}
.aklr-invSgnUp__action-btn {
  color: #fff;
  transition: all 0.5s;
}
.aklr-invSgnUp__action-btn:hover {
  color: #F41253;
  transition: all 0.5s;
}
.aklr-invSgnUp__mailList {
  max-height: 200px;
  min-height: 200px;
  overflow-y: scroll;
}
.aklr-invSgnUp__mailList-main {
  border: rgb(169, 169, 169) 1px solid;
  border-radius: 5px;
  padding: 15px;
}
.aklr-invSgnUp__mailList::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #403d45;
}
.aklr-invSgnUp__mailList::-webkit-scrollbar {
  width: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.aklr-invSgnUp__mailList::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  height: 50px;
  min-height: 40px;
}
.aklr-invSgnUp__mailList-item {
  width: 90%;
  padding: 15px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  margin-bottom: 7px;
  position: relative;
}
.aklr-invSgnUp__mailList-item .aklr-whitecard__closeimg {
  position: absolute;
  right: 10px;
  width: 15px;
  height: 15px;
}

@media (max-width: 767px) {
  .aklr-invSgnUp {
    width: 100%;
  }
  .aklr-invSgnUp__top {
    flex-direction: column;
  }
  .aklr-invSgnUp__top .aklr-btn {
    margin: 15px 0 0 0;
    width: 100%;
  }
}
.aklr-invtabstatus__srchbar {
  display: flex;
  border: 1px solid #a9a9a9;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0px 0px;
}
.aklr-invtabstatus__srchinput {
  width: 100%;
  background-color: #403d45;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.aklr-invtabstatus__srchinput::-moz-placeholder {
  color: #a9a9a9;
  font-size: 14px;
}
.aklr-invtabstatus__srchinput::placeholder {
  color: #a9a9a9;
  font-size: 14px;
}
.aklr-invtabstatus__srchinput:focus {
  border: none !important;
}
.aklr-invtabstatus__srchicn {
  width: 22px;
  display: flex;
  align-items: center;
  padding-right: 6px;
}
.aklr-invtabstatus__srchicn img {
  width: 100%;
}
.aklr-invtabstatus__table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0px 0px;
}
.aklr-invtabstatus__table tr:last-of-type .aklr-invtabstatus__colcell {
  border-bottom: unset;
}
.aklr-invtabstatus__table tr:last-of-type .aklr-invtabstatus__colnmecell {
  border-bottom: unset;
}
.aklr-invtabstatus__colheadicnwrap {
  display: flex;
  align-items: center;
}
.aklr-invtabstatus__colheadicnwrap p {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}
.aklr-invtabstatus__colheadicnwrap .aklr-sort-link {
  display: flex;
}
.aklr-invtabstatus__elmnticn {
  width: 18px;
  display: flex;
  cursor: pointer;
  align-self: flex-end;
  margin-right: 10px;
}
.aklr-invtabstatus__elmnticn img {
  width: 100%;
}
.aklr-invtabstatus__colheadicn {
  border-bottom: 1px solid #a9a9a9;
  padding: 10px 0px;
}
.aklr-invtabstatus__tableouter {
  background-color: #191C24;
  border-radius: 8px;
  padding: 0px 20px 20px;
}
.aklr-invtabstatus__colhead {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  border-bottom: 1px solid #a9a9a9;
  padding: 20px 8px;
}
.aklr-invtabstatus__colheadx {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  border-bottom: 1px solid #a9a9a9;
  padding: 10px 0px;
  text-align: left;
}
.aklr-invtabstatus__colnmecell {
  vertical-align: middle;
  border-bottom: 1px solid #a9a9a9;
  padding: 16px 8px;
}
.aklr-invtabstatus__colnmecell.unreg .aklr-invtabstatus__profileimg {
  display: none;
}
.aklr-invtabstatus__colnmecellwrap {
  display: flex;
  align-items: center;
}
.aklr-invtabstatus__colnmecellwrap p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.aklr-invtabstatus__profileimg {
  width: 17%;
  padding-right: 8px;
  display: flex;
}
.aklr-invtabstatus__profileimg img {
  width: 100%;
}
.aklr-invtabstatus__regbtn {
  border-radius: 10px;
  padding: 3px 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.aklr-invtabstatus__regbtn.red {
  background-color: rgba(255, 76, 81, 0.3);
  color: rgb(255, 76, 81);
}
.aklr-invtabstatus__regbtn.green {
  background-color: rgba(34, 187, 51, 0.3);
  color: rgb(34, 187, 51);
}
.aklr-invtabstatus__actionwrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aklr-invtabstatus__actionwrap.dnone {
  display: none;
}
.aklr-invtabstatus__actionbtnimg {
  width: 25px;
  align-items: center;
  display: flex;
  cursor: pointer;
  padding-right: 6px;
}
.aklr-invtabstatus__actionbtnimg:focus {
  border: none !important;
}
.aklr-invtabstatus__actionbtnimg img {
  width: 100%;
}
.aklr-invtabstatus__colcell {
  vertical-align: middle;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  border-bottom: 1px solid #a9a9a9;
  padding: 16px 8px;
}
.aklr-invtabstatus__colcell a {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}
.aklr-invtabstatus__colcell-imgName {
  display: flex;
  align-items: center;
}
.aklr-invtabstatus__colcell-imgName-img {
  height: 32px;
  width: 32px;
  margin-right: 5px;
  overflow: hidden;
  border-radius: 7px;
  display: flex;
  align-items: center;
}
.aklr-invtabstatus__colcell-imgName-img img {
  width: 100%;
}
.aklr-invtabstatus__colcell-imgName span {
  white-space: nowrap;
}
.aklr-invtabstatus__colcell:nth-child(2) {
  height: 70px;
}
.aklr-invtabstatus__colcell-URL {
  width: 70%;
  overflow-x: scroll;
}
.aklr-invtabstatus__actiontxt {
  width: 25px;
  height: 25px;
  margin-left: 15px;
  background-color: #22BB33;
  border-radius: 50%;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aklr-invtabstatus__actiontxt p {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.aklr-invtabstatus__resentcount {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}
.aklr-invtabstatus__resentcount span {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 12px;
  background-color: rgba(224, 67, 112, 0.3019607843);
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .aklr-invtabstatus__tableouter {
    overflow-y: scroll;
  }
  .aklr-invtabstatus__colcell {
    padding: 14px 10px;
  }
  .aklr-invtabstatus__colnmecell {
    padding: 14px 10px;
  }
  .aklr-invtabstatus__actionbtnimg {
    width: 25px;
  }
  .aklr-invtabstatus__profileimg {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .aklr-invtabstatus__tableouter {
    overflow-y: scroll;
  }
  .aklr-invtabstatus__colcell {
    padding: 14px 10px;
  }
  .aklr-invtabstatus__colnmecell {
    padding: 14px 10px;
  }
  .aklr-invtabstatus__actionbtnimg {
    width: 25px;
  }
  .aklr-invtabstatus__profileimg {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .aklr-invtabstatus__tableouter {
    overflow-y: scroll;
  }
  .aklr-invtabstatus__colcell {
    padding: 14px 10px;
  }
  .aklr-invtabstatus__colnmecell {
    padding: 14px 10px;
  }
  .aklr-invtabstatus__actionbtnimg {
    width: 25px;
  }
  .aklr-invtabstatus__profileimg {
    width: 40px;
  }
}
.aklr-invemailselection {
  background-color: #191C24;
  width: 350px;
  padding: 20px;
}
.aklr-invemailselection__headsec {
  display: flex;
  align-items: center;
}
.aklr-invemailselection__searchsec {
  display: flex;
  align-items: center;
  border: 1px solid #a9a9a9;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
}
.aklr-invemailselection__srchinput {
  background-color: #191C24;
  border: none;
  color: #fff;
  font-size: 14px;
  width: 100%;
  padding-left: 10px;
}
.aklr-invemailselection__srchinput:focus {
  border: none !important;
}
.aklr-invemailselection__srchinput::-moz-placeholder {
  font-size: 12px;
  color: #a9a9a9;
}
.aklr-invemailselection__srchinput::placeholder {
  font-size: 12px;
  color: #a9a9a9;
}
.aklr-invemailselection__srchicon {
  width: 16px;
  display: flex;
}
.aklr-invemailselection__srchicon img {
  width: 100%;
}
.aklr-invemailselection__closeicon {
  padding-left: 12px;
  padding-right: 0;
  width: 9%;
  display: flex;
}
.aklr-invemailselection__closeicon img {
  width: 100%;
}
.aklr-invemailselection__emaillist {
  margin: 20px 0px 20px 0px;
  height: 350px;
  overflow-y: scroll;
}
.aklr-invemailselection__emaillist::-webkit-scrollbar {
  width: 12px;
}
.aklr-invemailselection__emaillist::-webkit-scrollbar-track {
  background: #2d2c34;
  border-radius: 10px;
}
.aklr-invemailselection__emaillist::-webkit-scrollbar-thumb {
  background-color: #403D45;
  border-radius: 3px;
}
.aklr-invemailselection__emaillist .aklr-ckBox-checkmark {
  top: 12px;
  left: 12px;
}
.aklr-invemailselection__emaillist .aklr-checkbxtxtwrap .aklr-ckBox__wt {
  padding: 14px 12px;
  height: auto !important;
  border-radius: 10px;
}
.aklr-invemailselection__emaillist .aklr-checkbxtxtwrap .aklr-ckBox__wt.hovered {
  background-color: #a53759;
}
.aklr-invemailselection__emaillist .aklr-checkbxtxtwrap .aklr-ckBox__wt:hover {
  background-color: #a53759;
}
.aklr-invemailselection__btn {
  display: flex;
  justify-content: center;
}
.aklr-invemailselection__btn .aklr-btn--icon {
  padding: 0px 20px;
  height: 45px;
  width: 130px;
}
.aklr-invemailselection .aklr-ckBox input {
  width: 20px;
  height: 20px;
}
.aklr-invemailselection .aklr-ckBox .aklr-ckBox-checkmark {
  width: 20px;
  height: 20px;
}
.aklr-invemailselection .aklr-ckBox .aklr-ckBox-checkmark:after {
  left: 7px;
  top: 2px;
  width: 6px;
  height: 14px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .aklr-invemailselection {
    width: 350px;
  }
  .aklr-invemailselection__closeicon {
    width: 12%;
  }
  .aklr-invemailselection__emaillist {
    margin: 20px 6px 20px 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .aklr-invemailselection {
    width: 350px;
  }
  .aklr-invemailselection__closeicon {
    width: 14%;
  }
  .aklr-invemailselection__emaillist {
    margin: 20px 6px 20px 12px;
  }
}
@media (max-width: 767px) {
  .aklr-invemailselection {
    width: 300px;
  }
  .aklr-invemailselection__closeicon {
    width: 14%;
  }
  .aklr-invemailselection__emaillist {
    margin: 20px 7px 20px 12px;
  }
}
.aklr-Login .aklr-authentcard .aklr-btn input {
  background-color: transparent;
  color: #fff;
  border: unset;
}