@charset "UTF-8";
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #636975;
  line-height: 24px;
  font-weight: 400;
  background: #fff;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #636975;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #1b2430;
}

h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #1b2430;
}

h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #1b2430;
}

h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #1b2430;
}

h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1b2430;
}

h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #1b2430;
}

p.sm {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
p.ex {
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
}

.caption {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

.main {
  overflow: hidden;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  border-radius: 12px;
}
.button.primary {
  background-color: #3cb2d9;
  color: #fff;
  padding: 14px 20px;
}
.button.primary:disabled {
  color: #d0d5dd;
  background-color: #e8ecfb;
  pointer-events: none;
}
.button.primary:hover {
  opacity: 1;
  background-color: #259bc2;
}
.button.secondary {
  color: #1b2430;
  background-color: #fff;
  border: 1px solid #e8ecfb;
  padding: 14px 20px;
}
.button.secondary:disabled {
  color: #d0d5dd;
  background-color: #e8ecfb;
  pointer-events: none;
}
.button.secondary:hover {
  opacity: 1;
  background-color: #e8ecfb;
}
.button.uniq {
  color: #f04438;
  background-color: #fff;
  padding: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
}
.button.uniq:hover {
  opacity: 1;
  background-color: #fff;
}
.button.set {
  color: #259bc2;
  background-color: #fff;
  border: 1px solid #259bc2;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}
.button.set:hover {
  opacity: 1;
  background-color: #259bc2;
  color: #fff;
}
.button span {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button span img {
  width: 100%;
}
.button svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  color: inherit;
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 12px 16px;
}
.search__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.search__icon svg {
  width: 100%;
  height: 100%;
  color: #636975;
}
.search input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #1b2430;
  background: #fff;
  border: 1px solid #e8ecfb;
  border-radius: 12px;
  padding: 14px 16px 14px 50px;
}
.search input::-webkit-input-placeholder {
  color: #636975;
}
.search input::-moz-placeholder {
  color: #636975;
}
.search input:-ms-input-placeholder {
  color: #636975;
}
.search input::-ms-input-placeholder {
  color: #636975;
}
.search input::placeholder {
  color: #636975;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.input.active button img.show {
  display: none;
}
.input.active button img.hide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input.pass input {
  padding-right: 48px;
}
.input__outer {
  display: block;
}
.input__outer .caption {
  color: #636975;
  margin-bottom: 8px;
}
.input input {
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1b2430;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #e8ecfb;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 13px 16px;
}
.input input::-webkit-input-placeholder {
  color: #636975;
}
.input input::-moz-placeholder {
  color: #636975;
}
.input input:-ms-input-placeholder {
  color: #636975;
}
.input input::-ms-input-placeholder {
  color: #636975;
}
.input input::placeholder {
  color: #636975;
}
.input input:focus {
  border-color: #3cb2d9;
}
.input button {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.input button img {
  width: 100%;
  pointer-events: none;
}
.input button img.show {
  display: block;
}
.input button img.hide {
  display: none;
}

.check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 24px;
  position: relative;
}
.check input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.check input:checked ~ span {
  background-color: #3cb2d9;
}
.check input:checked ~ span::before {
  -webkit-transform: translate(16px, -50%);
          transform: translate(16px, -50%);
}
.check span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 77px;
  background-color: rgba(120, 120, 128, 0.16);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.check span::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 0px 0.774194px rgba(0, 0, 0, 0.04), 0px 2.32258px 6.19355px rgba(0, 0, 0, 0.15), 0px 2.32258px 0.774194px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 0px 0px 0.774194px rgba(0, 0, 0, 0.04), 0px 2.32258px 6.19355px rgba(0, 0, 0, 0.15), 0px 2.32258px 0.774194px rgba(0, 0, 0, 0.06);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px -20px 8px rgba(230, 230, 230, 0.01), 0px -11px 7px rgba(230, 230, 230, 0.05), 0px -5px 5px rgba(230, 230, 230, 0.09), 0px -1px 3px rgba(230, 230, 230, 0.1);
          box-shadow: 0px -20px 8px rgba(230, 230, 230, 0.01), 0px -11px 7px rgba(230, 230, 230, 0.05), 0px -5px 5px rgba(230, 230, 230, 0.09), 0px -1px 3px rgba(230, 230, 230, 0.1);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
.nav .auto__container {
  max-width: 900px;
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navItem {
  width: calc(33.3% - 6px);
  padding: 12px 12px 16px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navItem.active svg {
  color: #4568dc;
}
.navItem.active h6 {
  color: #4568dc;
}
.navItem.notif .navItem__icon span {
  opacity: 1;
}
.navItem__icon {
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
  position: relative;
}
.navItem__icon svg {
  width: 100%;
  height: 100%;
  color: #636975;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navItem__icon span {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 2px 5px;
  background-color: #4568dc;
  border-radius: 50px;
  color: #fff;
  -webkit-transform: translate(5px, -5px);
          transform: translate(5px, -5px);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
}
.navItem h6 {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #636975;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.cartEmpty {
  min-height: calc(100vh - 236px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 50px;
}
.cartEmpty__image {
  width: 60%;
  max-width: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
.cartEmpty__image img {
  width: 100%;
}
.cartEmpty__content {
  width: 72%;
  max-width: 380px;
  margin-bottom: 24px;
  text-align: center;
}
.cartEmpty .button {
  width: 100%;
  max-width: 440px;
}
.cartEmpty h5 {
  margin-bottom: 16px;
}
.cartEmpty p {
  color: #636975;
}
.cartBtn {
  background: #ffffff;
  border: 1px solid #e8ecfb;
  border-radius: 12px;
  margin-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 12px;
}
.cartBtn:hover {
  background-color: #e8ecfb;
}
.cartBtn.notif span {
  opacity: 1;
}
.cartBtn__icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.cartBtn__icon svg {
  width: 100%;
  height: 100%;
  color: #636975;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.cartBtn__icon span {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 2px 5px;
  background-color: #4568dc;
  border-radius: 50px;
  color: #fff;
  -webkit-transform: translate(5px, -5px);
          transform: translate(5px, -5px);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
}

.login {
  padding: 25px 0;
  background-color: #f9faff;
  min-height: 100vh;
}
.login.big {
  padding: 40px 0;
}
.login.uniq {
  padding: 0;
}
.login__inner-title {
  text-align: center;
  margin-bottom: 24px;
}
.login__inner-title h2,
.login__inner-title h4 {
  margin-bottom: 10px;
  color: #3cb2d9;
}
.login__inner-title p {
  color: #636975;
}
.login__inner-logo {
  width: 176px;
  margin: 0 auto 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login__inner-logo img {
  width: 100%;
}
.login__inner-text {
  max-width: 500px;
  margin: 0 auto 24px;
  text-align: center;
}
.login__inner-text p {
  font-weight: 500;
  color: #1b2430;
}
.login__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.login__inner-foot .button {
  width: 100%;
  margin-bottom: 24px;
}
.login__inner-foot .button:last-child {
  margin: 0;
}
.login__inner-foot p {
  width: 100%;
  margin-bottom: 24px;
}
.login__inner-foot p:last-child {
  margin: 0;
}
.login__inner-foot p a,
.login__inner-foot p button {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #3cb2d9;
  background-color: unset;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.login__inner h3 {
  margin-bottom: 8px;
  font-weight: 600;
  color: #1b2430;
}
.loginStep {
  display: none;
}
.loginStep.active {
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
  display: block;
}
.login__head {
  padding: 16px 0;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login__back {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.login__back svg {
  width: 100%;
  height: 100%;
  color: #636975;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.loginForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.loginForm.big {
  margin-bottom: 32px;
}
.loginForm__pass {
  padding: 14px 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #3cb2d9;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.loginForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 18px;
}
.loginForm__num {
  width: 56px;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 16px;
}
.loginForm__num input {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e8ecfb;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #636975;
  text-align: center;
  padding: 16px;
}
.loginForm .input__outer {
  margin-bottom: 18px;
}
.loginForm .input__outer:last-child {
  margin: 0;
}
.loginForm .button {
  margin-bottom: 8px;
}
.loginForm .button:last-child {
  margin: 0;
}
.loginForm > p {
  width: 100%;
  margin-bottom: 24px;
  text-align: center;
}
.loginForm > p:last-child {
  margin: 0;
}
.loginForm > p a,
.loginForm > p button {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #3cb2d9;
  background-color: unset;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.loginDivider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 24px;
}
.loginDivider::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #d0d5dd;
  content: "";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loginDivider p {
  position: relative;
  z-index: 2;
  padding: 0 12px;
  background-color: #f9faff;
}
.loginImage {
  padding-bottom: 45%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.loginImage__wrapper {
  max-width: 500px;
  margin: 0 auto 24px;
}
.loginImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.loginSocial {
  max-width: 500px;
  margin: 0 auto 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.loginSocial .button {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 20px;
}
.loginSocial .button:last-child {
  margin: 0;
}

.badges {
  padding: 16px 0;
}
.badges__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.badges__title {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.badges__link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #3cb2d9;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.badgesItem {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
}
.badgesItem:last-child {
  margin: 0;
}
.badgesItem__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
}
.badgesItem__head .caption {
  color: #636975;
}
.badgesItem__head .caption:last-child {
  color: #12b76a;
}
.badgesItem__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.badgesItem__row h4 {
  font-weight: 500;
}
.badgesItem__row p {
  color: #636975;
}
.badgesItem__content {
  width: calc(100% - 58px);
  margin-left: 14px;
}
.badgesItem__content p {
  margin-bottom: 4px;
  color: #1b2430;
}
.badgesItem__content .caption {
  color: #636975;
}
.badgesItem__share {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3cb2d9;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.badgesItem__share svg {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.circle {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
}
.circle .bg {
  fill: none;
  stroke-width: 4px;
  stroke: #d0d5dd;
}
.circle .progress {
  fill: none;
  stroke-width: 4px;
  stroke: #4568dc;
  stroke-linecap: round;
  stroke-dasharray: 232.36;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.circle .progress.one {
  stroke-dashoffset: 44;
  stroke: #12b76a;
}
.circle .progress.two {
  stroke-dashoffset: 205;
}
.circle .text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.circle svg {
  width: 44px;
  height: 44px;
}

@-webkit-keyframes one {
  from {
    stroke-dashoffset: 232.36;
  }
  to {
    stroke-dashoffset: 44;
    stroke: #12b76a;
  }
}

@keyframes one {
  from {
    stroke-dashoffset: 232.36;
  }
  to {
    stroke-dashoffset: 44;
    stroke: #12b76a;
  }
}
@-webkit-keyframes two {
  from {
    stroke-dashoffset: 232.36;
  }
  to {
    stroke-dashoffset: 140;
  }
}
@keyframes two {
  from {
    stroke-dashoffset: 232.36;
  }
  to {
    stroke-dashoffset: 140;
  }
}
@-webkit-keyframes appear {
  0%, 50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes appear {
  0%, 50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.setting {
  background-color: #f9faff;
}
.setting__inner {
  min-height: 100vh;
  padding: 16px 0 120px;
}
.setting__back {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.setting__back svg {
  width: 100%;
  height: 100%;
  color: #636975;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.setting__head {
  padding: 16px 0;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.setting__head.sm {
  padding: 12px 0;
  position: relative;
}
.setting__head.sm::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% + 60px);
  height: 1px;
  content: "";
  background-color: #e8ecfb;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.setting__head.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.setting__download {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.setting__download:hover {
  opacity: 1;
}
.setting__download:hover svg {
  color: #636975;
}
.setting__download svg {
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  color: #1b2430;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.setting__tabs {
  padding: 16px;
  background: #ffffff;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
}
.setting__tabs-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2px;
  background: #f8f8f8;
  border-radius: 100px;
}
.setting__tabs button {
  width: 33.3%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1b2430;
  padding: 4px 6px;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 100px;
}
.setting__tabs button.active {
  font-weight: 600;
  color: #fff;
  background-color: #3cb2d9;
}
.setting__content {
  margin-bottom: 16px;
}
.setting__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.setting__form .input__outer {
  width: 100%;
  margin-bottom: 16px;
}
.setting__form .input__outer:last-child {
  margin: 0;
}
.setting__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.settingItem {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
}
.settingItem:last-child {
  margin: 0;
}
.settingItem.sm .settingItem__row {
  padding: 0;
}
.settingItem__name {
  width: calc(100% - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.settingItem__name h5 {
  margin-bottom: 4px;
}
.settingItem__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  margin-bottom: 8px;
}
.settingItem__row:hover {
  opacity: 1;
}
.settingItem__row:hover .settingItem__arrow svg {
  color: #1b2430;
}
.settingItem__row:last-child {
  margin: 0;
}
.settingItem__arrow {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.settingItem__arrow svg {
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  color: #636975;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.settingItem p {
  color: #1b2430;
  font-weight: 400;
}
.settingDoc {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
}
.settingDoc__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(100% - 24px);
}
.settingDoc__name {
  width: calc(100% - 36px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.settingDoc__icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 12px;
}
.settingDoc__icon svg {
  width: 100%;
  height: 100%;
  color: #292d32;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.settingDoc__dots {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.settingDoc__dots:hover {
  opacity: 1;
}
.settingDoc__dots:hover svg {
  color: #1b2430;
}
.settingDoc__dots svg {
  width: 100%;
  height: 100%;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.settingDoc h6 {
  font-weight: 600;
  margin-bottom: 4px;
  color: #1b2430;
}
.settingDoc p {
  margin-bottom: 4px;
  color: #1b2430;
}
.settingDoc p:last-child {
  margin: 0;
}
.settingDoc p.ex {
  color: #636975;
}
.settingRec {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
}
.settingRec:last-child {
  margin: 0;
}
.settingRec__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
.settingRec__row:last-child {
  margin: 0;
}
.settingRec__row p {
  color: #636975;
}
.settingRec__row p:last-child {
  text-align: end;
}
.settingRec__row p.green {
  color: #12b76a;
}
.settingRec__row p.base {
  color: #1b2430;
}
.settingRec h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #1b2430;
}
.settingRec p {
  margin-bottom: 4px;
  color: #1b2430;
}
.settingRec p:last-child {
  margin: 0;
}
.settingRec p.ex {
  color: #636975;
}
.settingOrder {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
}
.settingOrder:last-child {
  margin: 0;
}
.settingOrder__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 8px;
  margin-bottom: 8px;
  position: relative;
}
.settingOrder__item::before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 60px);
  height: 1px;
  background-color: #e8ecfb;
  content: "";
}
.settingOrder__items {
  margin-bottom: 12px;
}
.settingOrder__item p {
  color: #1b2430;
}
.settingOrder__name {
  width: calc(100% - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.settingOrder__name p {
  width: calc(100% - 60px);
}
.settingOrder__image {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 12px;
  border-radius: 8px;
  overflow: hidden;
}
.settingOrder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.settingOrder__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.settingOrder__price span {
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 2px 5px;
  background-color: #4568dc;
  border-radius: 50px;
  color: #fff;
  margin-right: 20px;
}
.settingOrder__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8px;
}
.settingOrder__row:last-child {
  margin: 0;
}
.settingOrder__row p {
  color: #636975;
}
.settingOrder__row p:last-child {
  color: #1b2430;
}
.settingOrder__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #e8ecfb;
}
.settingOrder__total h5 {
  color: #636975;
}
.settingOrder__total h5:last-child {
  color: #1b2430;
}
.settingOrder > h5 {
  margin-bottom: 12px;
}
.setting .search {
  margin-bottom: 16px;
}

.home {
  background: #f9faff;
}
.home__inner {
  min-height: 100vh;
  padding: 16px 0 120px;
}
.homeChart__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f8f8f8;
  border-radius: 50px;
  padding: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
}
.homeChart__btn {
  font-family: "Inter", sans-serif;
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1b2430;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  background-color: transparent;
}
.homeChart__btn.active {
  background: #3cb2d9;
  color: #fff;
}
.homeChart__chart {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.homeChart__chart.hidden {
  display: none;
}
.homeChart__nodata .button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.homeChart__nodata-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Inter";
  font-weight: 400;
  min-height: 122px;
  font-size: 12px;
  line-height: 16px;
  color: #259bc2;
}
.homeChart__nodata svg {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
}
.homeChart__nodata.hidden {
  display: none;
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
}
.profile__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.profile__head-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #259bc2;
  padding: 8px 12px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border: 1px solid #3cb2d9;
  border-radius: 12px;
}
.profile__head-link:hover {
  background-color: #259bc2;
  color: #fff;
}
.profile__head h3 {
  margin-bottom: 4px;
}
.profile__head p {
  color: #636975;
}
.profile__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 16px;
}
.profile__row .caption {
  margin-bottom: 4px;
  color: #12b76a;
}
.profileStatus {
  padding: 8px;
  border: 1px solid #e8ecfb;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.profileStatus__icon {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
}
.profileStatus__icon img {
  width: 100%;
}
.profileStatus__info {
  width: calc(100% - 40px);
}
.profileStatus h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4px;
}
.profileStatus h5 span {
  margin-right: 4px;
}
.profileStatus h5 span:last-child {
  margin: 0;
}
.profileProgress {
  width: calc(100% - 33px);
  height: 8px;
  border-radius: 6px;
  background-color: #d0d5dd;
  position: relative;
}
.profileProgress__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4568dc;
  border-radius: 6px;
}
.profileProgress__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.profileProgress__outer .caption {
  color: #636975;
  white-space: nowrap;
  width: 25px;
  margin-left: 8px;
}

.clients {
  padding: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
  border-radius: 12px;
}
.clients__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.clients__head-icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 12px;
}
.clients__head-icon img {
  width: 32px;
  height: 32px;
}
.clients__head-info {
  width: calc(100% - 60px);
}
.clients__head .caption {
  margin-bottom: 4px;
  color: #636975;
}
.clients__head h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1b2430;
}
.clients__head h5 span {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #12b76a;
  padding: 4px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.customer__head {
  margin-bottom: 16px;
}
.customer__head h5 {
  margin-bottom: 8px;
}
.customer__head .caption {
  color: #636975;
}
.customer__slider {
  margin: 0 -8px;
}
.customer__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 16px;
}
.customer__foot .button {
  width: 100%;
}
.customerItem {
  padding: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.customerItem__title {
  margin-bottom: 8px;
}
.customerItem__title .caption {
  margin-bottom: 4px;
  color: #636975;
}
.customerItem__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.customerItem__num {
  width: calc(50% - 8px);
}
.customerItem__num h2 {
  color: #1e1b39;
  margin-bottom: 4px;
}
.customerItem__num h6 {
  color: #04ce00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.customerItem__num h6 span {
  width: 15px;
  height: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 3px;
  margin-top: 3px;
}
.customerItem__num h6 span img {
  width: 100%;
}
.customerItem__chart {
  width: calc(50% - 8px);
  max-width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customerItem__chart img {
  width: 100%;
}
.customer .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.customer .slick-slide {
  height: unset !important;
  margin: 0 8px;
}
.customer .slick-list {
  overflow: visible !important;
}

.promotions {
  background-color: #f9faff;
}
.promotions.detail {
  background-color: #fff;
}
.promotions.detail .promotions__inner {
  padding: 0;
}
.promotions.badge .promotions__inner {
  padding: 0;
}
.promotions.cart .promotions__inner {
  padding: 0 0 180px;
}
.promotions__inner {
  min-height: 100vh;
  padding: 16px 0 120px;
}
.promotions__back {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.promotions__back svg {
  width: 100%;
  height: 100%;
  color: #636975;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.promotions__head {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.promotions__head.sm {
  padding: 12px 0;
  position: relative;
}
.promotions__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -8px;
}
.promotionsItem {
  width: calc(50% - 16px);
  margin: 8px;
  padding: 16px;
  background-color: #fff;
  -webkit-box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
          box-shadow: 0px 36px 14px rgba(219, 219, 219, 0.01), 0px 20px 12px rgba(219, 219, 219, 0.05), 0px 9px 9px rgba(219, 219, 219, 0.09), 0px 2px 5px rgba(219, 219, 219, 0.1);
  border-radius: 12px;
}
.promotionsItem.big {
  width: 100%;
}
.promotionsItem__image {
  padding-bottom: 50%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
.promotionsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.promotionsItem__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.promotionsItem__spin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.promotionsItem__spin button {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #ffffff;
  border: 1px solid #e8ecfb;
  border-radius: 4px;
  position: relative;
}
.promotionsItem__spin button:hover {
  background-color: #e8ecfb;
}
.promotionsItem__spin button.minus::after {
  display: none;
}
.promotionsItem__spin button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #1b2430;
  content: "";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.promotionsItem__spin button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 50%;
  background-color: #1b2430;
  content: "";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.promotionsItem__spin button svg {
  width: 100%;
  height: 100%;
  color: #636975;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.promotionsItem__spin input {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1b2430;
  width: 24px;
  text-align: center;
  margin: 0 4px;
}
.promotionsItem__spin h5 {
  min-width: 24px;
  text-align: center;
  margin: 0 4px !important;
}
.promotionsItem h5 {
  margin-bottom: 8px;
  color: #1b2430;
  font-weight: 600;
}
.promotionsItem h6 {
  font-weight: 600;
  color: #636975;
}
.promotionsItem .button {
  border-radius: 8px;
  padding: 8px 12px;
}
.promotions .search {
  margin-bottom: 16px;
}

.article {
  min-height: calc(100vh - 56px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 140px;
}
.article__image {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 68%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.article__image-wrapper {
  width: 100%;
  margin-bottom: 16px;
}
.article__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.article__foot {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px;
  background-color: #fff;
}
.article__foot.big {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.article__foot-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.article__foot .button {
  width: calc(100% - 64px);
}
.article__foot .button.primary {
  width: 100%;
}
.article__foot .button.secondary {
  padding: 12px 20px;
}
.article h4,
.article h5 {
  margin-bottom: 8px;
  color: #1b2430;
}
.article p {
  color: #1b2430;
}

@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 16px;
  }

  .cartEmpty {
    min-height: calc(100vh - 176px);
  }

  .navItem__icon {
    width: 24px;
    height: 24px;
  }
  .navItem h6 {
    font-size: 10px;
    line-height: 12px;
  }

  .setting__inner {
    padding: 8px 0 90px;
  }
  .setting__head.sm::before {
    width: calc(100% + 32px);
  }

  .home__inner {
    padding: 16px 0 100px;
  }

  .promotions.cart .promotions__inner {
    padding: 0 0 140px;
  }
  .promotions__inner {
    padding: 8px 0 90px;
  }
  .promotions__row {
    margin: 0;
  }
  .promotionsItem {
    width: 100%;
    margin: 0 0 16px 0;
  }
  .promotionsItem:last-child {
    margin: 0;
  }

  .article {
    padding-bottom: 110px;
  }
  .article__image {
    border-radius: 0;
  }
  .article__image-wrapper {
    width: calc(100% + 32px);
    margin: 0 -16px 12px;
  }
  .article__foot {
    padding: 16px;
  }
}
@media (max-width: 380px) {
  .settingOrder__name p {
    width: calc(100% - 42px);
  }
  .settingOrder__image {
    width: 34px;
    height: 34px;
    margin-right: 8px;
  }
  .settingOrder__price span {
    margin-right: 12px;
  }
  .settingOrder p {
    font-size: 14px;
    line-height: 18px;
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}