@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow/Barlow-SemiBold.ttf");
  src: local("Barlow"), url("../fonts/Barlow/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Regular.ttf");
  src: local("Lato"), url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito/static/Nunito-Regular.ttf");
  src: local("Nunito"), url("../fonts/Nunito/static/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito/static/Nunito-SemiBold.ttf");
  src: local("Nunito"), url("../fonts/Nunito/static/Nunito-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito/static/Nunito-Light.ttf");
  src: local("Nunito"), url("../fonts/Nunito/static/Nunito-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("../fonts/SF/SF-Pro-Display-Regular.otf");
  src: local("Nunito"), url("../fonts/SF/SF-Pro-Display-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
.c-light-brand {
  color: #C443BE;
}
.c-blue {
  color: #8EC6F6;
}
.c-grey {
  color: #ABABAB;
}
body {
  width: 100%;
  min-height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
div {
  color: #282828;
}
main {
  flex-grow: 1;
}
header, main, footer {
  flex-shrink: 0;
}
ul, ol {
  list-style: inherit;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  min-height: 64px;
  border-radius: 60px;
  border: 1px solid transparent;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
  box-shadow: none;
  outline: none;
}
.btn.btn-primary {
  background: #AD00B5;
  border-color: #AD00B5;
  color: #fff;
}
.btn.btn-primary:hover {
  background: #68006D;
  border-color: #68006D;
  color: #fff;
  box-shadow: none;
}
.btn.btn-primary:focus {
  background: #AD00B5;
  border-color: #AD00B5;
  color: #fff;
  box-shadow: 0 0 0 4px #F200FD;
}
.btn.btn-primary:active {
  background: #68006D;
  border-color: #68006D;
  color: #fff;
  box-shadow: none;
}
.btn.btn-primary:disabled {
  opacity: 0.4;
}
.btn.btn-secondary {
  background: #fff;
  border-color: #9E1DAF;
  color: #9E1DAF;
}
.btn.btn-secondary:hover {
  background: #BE00BB;
  border-color: #BE00BB;
  color: #C443BE;
  box-shadow: none;
}
.btn.btn-secondary:focus {
  background: transparent;
  border-color: transparent;
  color: #BE00BB;
  box-shadow: 0 0 0 4px #BE00BB;
}
.btn.btn-secondary:active {
  background: #BE00BB;
  border-color: #BE00BB;
  color: #C443BE;
  box-shadow: none;
}
.btn.btn-secondary:disabled {
  opacity: 0.4;
}
.btn.btn-grey {
  background: #fff;
  border-color: #B9B9B9;
  color: #282828;
}
.btn.btn-grey:hover {
  background: #fff;
  border-color: #B9B9B9;
  color: #282828;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
}
.btn.btn-grey:focus {
  background: #fff;
  border-color: #B9B9B9;
  color: #282828;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
}
.btn.btn-grey:active {
  background: #fff;
  border-color: #B9B9B9;
  color: #282828;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
}
.btn.btn-grey:disabled {
  opacity: 0.4;
}
.btn.btn-yellow {
  background: #FFE082;
  border-color: #FFE082;
  color: #333333;
}
.btn.btn-yellow:hover {
  background: #FFE082;
  border-color: #FFE082;
  color: #333333;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
}
.btn.btn-yellow:focus {
  background: #FFE082;
  border-color: #FFE082;
  color: #333333;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
}
.btn.btn-yellow:active {
  background: #FFE082;
  border-color: #FFE082;
  color: #333333;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
}
.btn.btn-yellow:disabled {
  opacity: 0.4;
}
.btn.btn-small {
  padding: 7px 16px;
  min-height: 33px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 17px;
}
.btn.btn-medium {
  padding: 12px 24px;
  min-height: 48px;
  border-radius: 100px;
  font-size: 18px;
  line-height: 22px;
}
.form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-control {
  width: 100%;
  padding: 12px 13px;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 14px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: #282828;
}
.form-control::-webkit-input-placeholder {
  color: #ABABAB;
}
.form-control::-moz-placeholder {
  color: #ABABAB;
}
.form-control:-ms-input-placeholder {
  color: #ABABAB;
}
.form-control:-moz-placeholder {
  color: #ABABAB;
}
.form-control:disabled {
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
}
.invalid-feedback {
  margin-top: 0.25rem;
  color: #EB3333;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  text-align: left;
}
.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #EB3333;
  background-image: none;
}
.was-validated .form-control:valid, .form-control.is-valid {
  background-image: none;
}
.form-check {
  padding-left: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-check .form-check-input {
  margin-left: 0;
  margin-right: 12px;
  margin-top: 0;
  border: 1px solid #F0F0F0;
  cursor: pointer;
}
.form-check .form-check-input[type="checkbox"] {
  border-radius: 4px;
}
.form-check .form-check-input:checked {
  background-color: #9E1DAF;
  border: 1px solid #9E1DAF;
}
.form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(158, 29, 175, 0.25);
}
.form-check .form-check-label {
  color: #282828;
  cursor: pointer;
}
.form-switch {
  padding-left: 0;
}
.form-switch .form-check-input {
  width: 50px;
  min-width: 50px;
  height: 30px;
  margin-left: 0;
  border-radius: 30px;
  margin-top: 0;
  float: none;
  background-size: 39px 39px;
  cursor: pointer;
  background-color: #F0F0F0;
  border: none;
  background-image: url("/images/knob.svg");
  background-position: -4px -2px;
}
.form-switch .form-check-input[type="checkbox"] {
  border-radius: 30px;
}
.form-switch .form-check-input:focus {
  box-shadow: none;
  background-image: url("/images/knob.svg");
}
.form-switch .form-check-input:checked {
  background-image: url("/images/knob.svg");
  background-color: #9E1DAF;
  background-position: 15px -2px;
}
.form-switch .form-check-input:checked:focus {
  box-shadow: none;
  background-image: url("/images/knob.svg");
}
.form-switch .form-check-input:disabled {
  pointer-events: none;
  background: #F9F9F9;
  background-image: url("/images/knob3.svg");
  background-position: -4px -2px;
  background-size: 39px 39px;
  background-repeat: no-repeat;
}
.form-switch .form-check-input:disabled:checked {
  background-image: url("/images/knob2.svg");
  background-color: #CFCFD4;
  background-position: 15px -2px;
  background-size: 39px 39px;
  background-repeat: no-repeat;
  border: none;
  opacity: 1;
}
.form-switch label {
  cursor: pointer;
}
.choices[data-type*=select-multiple] .choices__inner {
  padding: 0 48px 0 13px !important;
}
.choices[data-type*=select-one] .choices__inner {
  padding: 0 48px 0 13px !important;
}
.choices[data-type*=text] .choices__inner {
  padding: 0 13px 0 13px !important;
}
.form-control.choices__inner {
  display: flex;
  align-items: center;
  min-height: 48px;
}
.form-control .choices__list--single {
  display: inline-flex;
  padding: 4px 16px 4px 0;
  width: 100%;
  height: 100%;
  min-height: 48px;
  align-items: center;
  border-right: 1px solid #E0E0E0;
}
.form-control .choices__list--single .choices__placeholder {
  color: #ABABAB;
  opacity: 1;
}
.form-control .choices__input {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.4px;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 0;
}
.form-control .choices__input::-webkit-input-placeholder {
  color: #ABABAB;
}
.form-control .choices__input::-moz-placeholder {
  color: #ABABAB;
}
.form-control .choices__input:-ms-input-placeholder {
  color: #ABABAB;
}
.form-control .choices__input:-moz-placeholder {
  color: #ABABAB;
}
.choices[data-type*=select-one]::after {
  border-color: #B9B9B9 transparent transparent;
  right: 19.5px;
}
.is-open .choices__inner {
  border-radius: 14px 14px 0 0;
}
.choices__list--multiple .choices__item {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.355556px;
  color: #C443BE;
  background: #F5EAFC;
  border-radius: 5px;
  padding: 0 10px 0 5px;
  margin-right: 8px;
  margin-bottom: 3px;
  margin-top: 3px;
  border: none;
  display: inline-flex;
  align-items: center;
}
.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
  margin: 0 0px 0 6px;
  padding-left: 7px;
  border-left: none;
  background-image: url("/images/remove.svg");
  background-size: 7px;
  width: 7px;
  opacity: 1 !important;
  height: 7px;
}
body {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.4px;
}
h1, .h1 {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 58px;
  letter-spacing: -0.444444px;
}
h4, .h4 {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.4px;
}
h5, .h5 {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.4px;
}
.text-small {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.355556px;
}
.text-tiny {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.4px;
}
.text-super-tiny {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.text-bold {
  font-weight: 600;
}
.brand-link {
  text-decoration: none;
  color: #9E1DAF;
  transition: all 0.25s ease-in-out;
}
.brand-link:hover {
  text-decoration: underline;
}
.dashboard-sidebar .brand-block {
  border-bottom: 1px solid #c1ccdb;
  padding-bottom: 20px;
  margin-bottom: 25px;
  position: relative;
}
.dashboard-sidebar .brand-block a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.dashboard-sidebar .brand-block a img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}
.dashboard-sidebar .brand-block a p {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: #091e42;
}
.dashboard-sidebar .brand-block .close-btn {
  position: absolute;
  align-items: center;
  justify-content: center;
  right: 0px;
  top: 5px;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: #fff;
  border: 1px solid #C1CCDB;
  border-radius: 100%;
  z-index: 2;
}
.dashboard-sidebar .brand-block .close-btn svg {
  width: 10px;
}
.dashboard-sidebar .search-block {
  position: relative;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
}
.dashboard-sidebar .search-block img {
  position: absolute;
  top: auto;
  left: 15px;
  color: #758195;
}
.dashboard-sidebar .search-block input {
  display: block;
  width: 100%;
  border-radius: 100px;
  padding-left: 45px;
  padding-right: 15px;
}
@media screen and (max-width: 991.9px) {
  .dashboard-sidebar .search-block {
    display: none;
  }
}
.dashboard-sidebar .menu {
  margin: 0;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  padding: 0 12px 0 0;
  min-height: 120px;
  max-height: calc(100vh - 301px);
  transition: 0.2s;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (min-width: 992px) {
  .dashboard-sidebar .menu {
    overflow-y: auto;
    overflow-x: hidden;
  }
  .dashboard-sidebar .menu::-webkit-scrollbar {
    height: 147px;
    width: 6px;
  }
  .dashboard-sidebar .menu::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 30px;
  }
  .dashboard-sidebar .menu::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 30px;
  }
  .dashboard-sidebar .menu:hover {
    scrollbar-color: #C443BE #F0F0F0;
  }
  .dashboard-sidebar .menu:hover::-webkit-scrollbar-track {
    background-color: #F0F0F0;
  }
  .dashboard-sidebar .menu:hover::-webkit-scrollbar-thumb {
    background-color: #C443BE;
  }
}
@media screen and (max-width: 991.9px) {
  .dashboard-sidebar .menu {
    padding-right: 0;
  }
}
.dashboard-sidebar .menu > li {
  width: 100%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  margin: 0 0 2px;
  display: block;
}
.dashboard-sidebar .menu > li > a {
  position: relative;
  display: block;
  min-height: 24px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #282828;
  text-decoration: none;
  transition: all 0.2s;
  padding: 0 10px 10px 32px;
}
.dashboard-sidebar .menu > li > a:hover {
  text-decoration: underline;
}
.dashboard-sidebar .menu > li > a:before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #dadada;
  opacity: 0;
}
.dashboard-sidebar .menu > li > a:after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
  width: 14px;
  height: 14px;
  top: 4px;
  left: 6px;
  pointer-events: none;
  background-image: url("/images/shevron.svg");
  transform: rotate(-90deg);
}
.dashboard-sidebar .menu > li .sub-menu {
  display: none;
  margin: 0;
  list-style: none;
  width: 100%;
  padding: 16px 0;
}
.dashboard-sidebar .menu > li .sub-menu > li {
  margin-bottom: 10px;
  padding-left: 35px;
  padding-right: 0;
  position: relative;
}
.dashboard-sidebar .menu > li .sub-menu > li > :before {
  content: "";
  background: #D8D8D8;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 19px;
  z-index: 1;
  transition: all 0.25s ease-in-out;
}
.dashboard-sidebar .menu > li .sub-menu > li > a {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.715;
  color: #282828;
  transition: 0.2s;
  text-decoration: none;
}
.dashboard-sidebar .menu > li .sub-menu > li:hover > :before {
  background: #AD00B5;
}
.dashboard-sidebar .menu > li .sub-menu > li:hover > a {
  color: #AD00B5;
  text-decoration: underline;
}
.dashboard-sidebar .menu > li .sub-menu > li:active > :before {
  background: #AD00B5;
}
.dashboard-sidebar .menu > li .sub-menu > li:active > a {
  color: #AD00B5;
  text-decoration: underline;
}
.dashboard-sidebar .menu > li .sub-menu > li:focus > :before {
  background: #AD00B5;
}
.dashboard-sidebar .menu > li .sub-menu > li:focus > a {
  color: #AD00B5;
  text-decoration: underline;
}
.dashboard-sidebar .menu > li.menu-item-open > a:before {
  opacity: 1;
}
.dashboard-sidebar .menu > li.menu-item-open > a:after {
  transform: rotate(0deg);
}
.dashboard-sidebar .menu > li.menu-item-open > .sub-menu {
  display: block;
}
@media screen and (max-width: 991.9px) {
  .dashboard-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100%;
    max-width: 300px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    overflow-x: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 55;
  }
  .dashboard-sidebar.dashboard-show {
    right: 0px;
  }
}
.c-light-brand {
  color: #C443BE;
}
.c-blue {
  color: #8EC6F6;
}
.c-grey {
  color: #ABABAB;
}
.body-hidden {
  overflow-y: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.body-hidden:before {
  content: "";
  background: rgba(9, 30, 66, 0.85);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.single-page {
  padding: 50px 0;
  background-color: #e5ecf2;
}
@media screen and (max-width: 991.9px) {
  .single-page .offcanvs-toggle {
    display: inline-flex;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #091E42;
    width: 36px;
    height: 36px;
    border: 1px solid #C1CCDB;
    vertical-align: middle;
    border-radius: 3px;
  }
  .single-page .offcanvs-toggle svg {
    width: 18px;
    height: 18px;
  }
}
.single-page .sticky-sidebar {
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  position: sticky;
}
@media screen and (max-width: 991.9px) {
  .single-page .sticky-sidebar {
    position: relative;
    top: auto;
  }
}
.main-content {
  background: #fff;
  color: #3d485c;
  box-shadow: 0 3px 1px 0 #9fb7cc, 15px 30px 68px -10px rgba(156, 160, 185, 0.56);
  border-radius: 10px;
  padding: 30px;
  color: #282828;
}
.main-content .date-block {
  margin: 40px 0 0;
  font-size: 13px;
  color: #405261;
  font-style: italic;
}
.main-content h1 {
  padding: 0 0 15px;
  margin: 0 0 20px;
  border-bottom: 1px solid #C1CCDB;
}
.main-content h2 {
  margin: 0 0 20px;
}
.main-content p a {
  color: #AD00B5;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.main-content p a:hover {
  text-decoration: underline;
}
.main-content img {
  max-width: 100%;
  background: rgba(0, 0, 0, 0.05);
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.main-content h3 {
  margin: 0 0 20px;
}
.main-content h4 {
  font-weight: 700;
  margin: 0;
}
.main-content h5 {
  margin: 0 0 20px;
}
.main-content h6 {
  margin: 0 0 20px;
}
.main-content a {
  color: #aa08c8;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.main-content a:hover {
  text-decoration: underline;
}
.main-content ul {
  margin: 0 0 20px;
}
.main-content ol {
  list-style-type: decimal;
  margin: 0 0 20px;
}
