@font-face {
  font-family: "Inter";
  src: local("Inter Regular"), local("Inter-Regular"), url("/static/fonts/Inter/Inter-Regular.woff2") format("woff2"), url("/static/fonts/Inter/Inter-Regular.woff") format("woff"), url("/static/fonts/Inter/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: local("Inter Medium"), local("Inter-Medium"), url("/static/fonts/Inter/Inter-Medium.woff2") format("woff2"), url("/static/fonts/Inter/Inter-Medium.woff") format("woff"), url("/static/fonts/Inter/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: local("Inter SemiBold"), local("Inter-SemiBold"), url("/static/fonts/Inter/Inter-SemiBold.woff2") format("woff2"), url("/static/fonts/Inter/Inter-SemiBold.woff") format("woff"), url("/static/fonts/Inter/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: local("Inter Bold"), local("Inter-Bold"), url("/static/fonts/Inter/Inter-Bold.woff2") format("woff2"), url("/static/fonts/Inter/Inter-Bold.woff") format("woff"), url("/static/fonts/Inter/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
:root {
  --white-bg: #FAFCFB;
  --mint-bg: #EEFDF2;
  --green-linear-button: linear-gradient(152.68deg, #538E3E -4.16%, #4C8239 104.8%);
  --green: #0C6D26;
  --green-linear: linear-gradient(100.46deg, #003B1A 7.67%, #006732 49.93%, #008F47 86.67%);
  --green-text: #3F4C42;
  --grey-dark: #6B6D6B;
  --black: #010B04;
  --orange-linear: linear-gradient(100.26deg, #FF6B04 -7.45%, #F06504 104.99%);
}

.button-primary {
  text-transform: uppercase;
  background: var(--orange-linear);
  border: none;
  color: white;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.75;
  text-align: center;
  padding: 2px 30px;
  border-radius: 4px;
  display: inline-block;
}
.button-border {
  text-transform: uppercase;
  border: 1px solid rgb(255, 107, 4);
  background: none;
  color: rgb(255, 107, 4);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.75;
  text-align: center;
  padding: 2px 30px;
  border-radius: 4px;
  display: inline-block;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.content {
  min-height: calc(100vh - 192px);
}

@media (max-width: 900px) {
  .content {
    min-height: calc(100vh - 167px);
  }
}
.header {
  padding: 16px 0;
  background: var(--white-bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__inner nav {
  display: flex;
  align-items: center;
  transform: translateX(-60px);
}
.header__inner nav a {
  text-transform: uppercase;
  padding-bottom: 4px;
}
.header__inner nav a + a {
  margin-left: 32px;
}
.header__active-link {
  color: var(--green);
  border-bottom: 2px solid var(--green);
}
.header__account {
  display: flex;
  align-items: flex-end;
}
.header__account .stock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 32px;
}
.header__account .stock span {
  font-size: 12px;
  line-height: 1.33;
  margin-bottom: 2px;
  color: var(--black);
}
.header__account .stock p {
  font-size: 16px;
  font-weight: 700;
  color: #FF6B04;
}
.header__account .burger {
  width: 28px;
  height: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-10px);
  cursor: pointer;
}
.header__account .burger:hover:after {
  opacity: 1;
}
.header__account .burger:after {
  content: "";
  display: block;
  width: 57px;
  height: 57px;
  border-radius: 100%;
  background: #EEFDF2;
  position: absolute;
  z-index: -1;
  opacity: 0;
  transition: 0.2s;
}
.header__account .burger span {
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background: var(--black);
}
.header__account .burger span:after, .header__account .burger span:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background: var(--black);
  left: 0;
  position: absolute;
}
.header__account .burger span:after {
  bottom: 0;
}
.header__account .burger span:before {
  top: 0;
}
.header__account .dropdown {
  position: relative;
}
.header__account .dropdown-toggler {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 100;
  width: 259px;
  padding: 25px 0;
  flex-direction: column;
  box-shadow: 0 0 10px 0 rgba(103, 159, 117, 0.1019607843);
  border-radius: 16px;
  background: white;
}
.header__account .dropdown-toggler__show {
  display: flex !important;
}
.header__account .dropdown-toggler a {
  padding: 6px 32px;
}
.header__account .dropdown-toggler a:nth-child(3), .header__account .dropdown-toggler a:nth-child(5) {
  margin-top: 16px;
}
.header__account .dropdown-toggler .logout {
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.header__account .dropdown-toggler .logout img {
  width: auto;
  margin-right: 8px;
}

@media (max-width: 900px) {
  .header img[alt="Logo Main"] {
    width: 215px;
  }
}
@media (max-width: 850px) {
  .header__inner nav {
    transform: initial;
  }
}
@media (max-width: 750px) {
  .header {
    box-shadow: 0px 2px 4px 0px rgba(17, 1, 101, 0.1019607843);
  }
  .header nav {
    display: none;
  }
  .header .dropdown {
    display: none;
  }
  .header .stock {
    margin-right: 0;
  }
}
.block-white-small {
  box-shadow: 2px 12px 20px 0 rgba(0, 0, 0, 0.05);
  padding: 24px;
  border-radius: 16px;
  background: white;
}

.footer {
  background: var(--green);
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer nav {
  display: flex;
  align-items: center;
}
.footer nav a {
  color: white;
}
.footer nav a + a {
  margin-left: 32px;
}
.footer__copyright {
  font-size: 12px;
  color: white;
}

@media (max-width: 900px) {
  .footer {
    font-size: 14px;
  }
  .footer img {
    width: 160px;
  }
}
@media (max-width: 750px) {
  .footer-person {
    display: none;
  }
  .footer {
    flex-direction: column;
  }
  .footer nav {
    margin: 20px 0;
  }
}
.main {
  margin-bottom: 150px;
}
.main__slider {
  display: none;
}
.main__content {
  background: var(--green-linear);
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  padding: 55px 0 96px 64px;
}
.main__content-left {
  max-width: 477px;
  width: 100%;
  color: white;
}
.main__content-left h1 {
  max-width: 370px;
}
.main__content-left p {
  margin-top: 24px;
  margin-bottom: 32px;
}
.main__content-right {
  width: 50%;
  position: relative;
}
.main__sticker-img3, .main__sticker-img4, .main__sticker-img5 {
  z-index: 0;
}
.main__sticker-img3 {
  position: absolute;
  bottom: -102px;
  right: -13vw;
  transform: rotate(15deg);
  width: 25vw;
}
.main__sticker-img4 {
  position: absolute;
  bottom: -88px;
  right: 1vw;
  transform: rotate(4deg);
  z-index: 1;
  border-radius: 100%;
  box-shadow: 0 0 16px 6px rgba(0, 0, 0, 0.25);
  width: 25vw;
}
.main__sticker-img5 {
  width: 25vw;
  position: absolute;
  bottom: -98px;
  right: 18.6vw;
  transform: rotate(-23deg);
}
.main__list {
  display: flex;
  justify-content: space-between;
  transform: translateY(-32px);
  position: relative;
  z-index: 2;
}
.main__list-item h3 {
  margin-bottom: 24px;
}
.main__list-item:nth-child(2) {
  margin: 0 32px;
}
.main__list-item p {
  color: var(--green-text);
}

@media (max-width: 1000px) {
  .main__content {
    padding-top: 40px;
    padding-bottom: 50px;
    padding-right: 60px;
  }
  .main__content-left {
    max-width: 300px;
  }
  .main__content-left h1 {
    font-size: 36px;
  }
  .main__content-left p {
    font-size: 16px;
  }
  .main__sticker-img3 {
    width: 29vw;
    right: -15vw;
  }
  .main__sticker-img4 {
    width: 30vw;
    right: 1vw;
  }
  .main__sticker-img5 {
    width: 28vw;
  }
  .main__list-item {
    padding: 20px;
  }
  .main__list-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .main__list-item p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .main__slider {
    padding-top: 30px;
    background: var(--white-bg);
    display: block;
    transform: translateY(-40px);
    border-radius: 40px 40px 0 0;
  }
  .main__slider-dots {
    bottom: auto;
    top: 32px;
  }
  .main__slider-dots .glide__bullet {
    width: 10px;
    height: 10px;
    background: #FC6A04;
    opacity: 0.3;
  }
  .main__slider-dots .glide__bullet:hover {
    border: none;
  }
  .main__slider-dots .glide__bullet--active {
    width: 26px;
    border-radius: 7px;
    opacity: 1;
  }
  .main__content {
    height: 340px;
  }
  .main__content-left {
    display: none;
  }
  .main__content-right {
    width: 100%;
  }
  .main__sticker-img3, .main__sticker-img4, .main__sticker-img5 {
    width: 33vw;
  }
  .main__sticker-img4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .main__sticker-img3 {
    top: 50%;
    right: -11vw;
    transform: translate(-34%, -50%) rotate(15deg);
  }
  .main__sticker-img5 {
    left: 3vw;
    top: 50%;
    transform: translate(-10%, -50%) rotate(-23deg);
  }
  .main__list {
    display: none;
  }
  .main__list-item {
    background: var(--white-bg);
    border-radius: 0;
    box-shadow: initial;
    padding-top: 32px;
  }
  .main__list-item h3, .main__list-item p {
    text-align: center;
  }
  .main__list-item h3 {
    font-size: 22px;
  }
}
@media (max-width: 550px) {
  .main {
    margin-bottom: 100px;
  }
  .main__sticker-img3, .main__sticker-img4, .main__sticker-img5 {
    width: 50vw;
  }
  .main__sticker-img3 {
    right: -42vw;
  }
  .main__sticker-img5 {
    left: -19vw;
  }
}
.manage-sticker {
  margin-bottom: 150px;
}
.manage-sticker h2 {
  max-width: 420px;
  margin: 0 auto;
}
.manage-sticker__items {
  max-width: 788px;
  width: 100%;
  margin: 62px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.manage-sticker__item {
  padding: 40px 32px;
  width: 47%;
  background: white;
  position: relative;
  box-shadow: 2px 12px 20px 0 rgba(103, 159, 117, 0.1);
}
.manage-sticker__item:nth-child(3), .manage-sticker__item:nth-child(4) {
  margin-top: 64px;
}
.manage-sticker__item h3 {
  color: var(--green);
}
.manage-sticker__item p {
  color: var(--green-text);
}
.manage-sticker__item span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  background: var(--green);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .manage-sticker__item {
    padding: 30px 24px;
    width: 48%;
  }
  .manage-sticker__item:nth-child(3), .manage-sticker__item:nth-child(4) {
    margin-top: 32px;
  }
  .manage-sticker__item h3 {
    font-size: 20px;
  }
  .manage-sticker__item p {
    font-size: 16px;
  }
}
@media (max-width: 550px) {
  .manage-sticker {
    padding: 0 15px;
    margin-bottom: 100px;
  }
  .manage-sticker h2 {
    font-size: 22px;
  }
  .manage-sticker__item {
    width: 100%;
    padding: 24px 20px;
    margin-top: 32px;
    border-radius: 10px !important;
  }
  .manage-sticker__item span {
    font-size: 20px;
    width: 30px;
    height: 30px;
    top: -12px;
  }
  .manage-sticker__item h3 {
    font-size: 16px;
  }
  .manage-sticker__item p {
    font-size: 15px;
  }
  .manage-sticker__item:first-child {
    margin-top: 0;
  }
}
.why-need-stickers {
  margin-bottom: 130px;
}
.why-need-stickers h2 {
  max-width: 490px;
  margin: 0 auto;
}
.why-need-stickers__list {
  margin-top: 54px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.why-need-stickers__item {
  width: 31%;
  margin-left: 32px;
}
.why-need-stickers__item h3 {
  margin-bottom: 18px;
}
.why-need-stickers__item:first-child {
  margin-left: 0;
}
.why-need-stickers__item:nth-child(4), .why-need-stickers__item:nth-child(5) {
  margin-top: 32px;
}
.why-need-stickers__item:nth-child(4) {
  margin-left: 0;
}

@media (max-width: 1000px) {
  .why-need-stickers__item {
    width: 47.5%;
  }
  .why-need-stickers__item h3 {
    font-size: 20px;
  }
  .why-need-stickers__item p {
    font-size: 16px;
  }
  .why-need-stickers__item:nth-child(3) {
    margin-left: 0;
    margin-right: 32px;
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .why-need-stickers h2, .why-need-stickers__list {
    display: none;
  }
}
.call-to-action {
  max-width: 808px;
  width: 100%;
  margin: 0 auto 150px;
  padding: 0 15px;
}
.call-to-action__inner {
  background: var(--green-linear);
  padding: 46px 0 56px 48px;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.call-to-action__content-left {
  max-width: 260px;
  width: 100%;
  color: white;
}
.call-to-action__content-left h2 {
  color: white;
}
.call-to-action__content-left p {
  margin-bottom: 50px;
  margin-top: 10px;
}
.call-to-action__sticker-img-4 {
  max-width: 301px;
  position: absolute;
  right: -49px;
  bottom: -72px;
  transform: rotate(6deg);
  z-index: 1;
}
.call-to-action__sticker-img-5 {
  max-width: 245px;
  position: absolute;
  right: 143px;
  bottom: -77px;
  transform: rotate(-18deg);
}

@media (max-width: 650px) {
  .call-to-action__content-left {
    max-width: 360px;
  }
  .call-to-action__content-left h2 {
    text-align: start;
  }
  .call-to-action__inner {
    height: 450px;
  }
}
@media (max-width: 470px) {
  .call-to-action__inner {
    padding: 32px 32px 24px 32px;
    height: 500px;
  }
  .call-to-action__content-left h2 {
    font-size: 26px;
  }
  .call-to-action__content-left p {
    font-size: 16px;
  }
}
.login {
  background: var(--mint-bg);
}
.login__inner {
  max-width: 326px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.login__inner h3 {
  margin-bottom: 4px;
}
.login__inner p {
  text-align: inherit;
  color: var(--grey-dark);
  font-size: 16px;
}
.login__inner form {
  margin-top: 54px;
}
.login__inner form button {
  width: 100%;
  margin-top: 48px;
}
.login__inner a {
  margin-top: 22px;
  display: inline-block;
  width: 100%;
}
.login__inner span {
  margin-top: 44px;
  display: block;
  color: var(--grey-dark);
}
.login__inner span a {
  display: contents !important;
  color: #3327C2;
}

.input {
  position: relative;
  margin-bottom: 20px;
}
.input input {
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  font-size: 16px;
  padding: 14px 12px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.input input:focus {
  outline: none;
  border-color: #00B74A;
}
.input input::placeholder {
  color: #757575;
}
.input input:focus + label,
.input input:not(:placeholder-shown) + label {
  transform: translateY(-6px);
  font-size: 12px;
  color: var(--grey-dark);
  background: white;
  padding: 2px;
}
.input label {
  position: absolute;
  pointer-events: none;
  left: 12px;
  top: 0;
  transition: 0.3s ease all;
  padding: 16px 0;
  color: #757575;
}

.file {
  height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #EBEBEB;
  background: white;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.file:after {
  content: "";
  display: block;
  height: 100%;
  background: #EBEBEB;
  width: 1px;
  position: absolute;
  left: 48px;
  top: 0;
}
.file__imit-btn {
  padding-right: 16px;
}
.file__imit-btn img {
  min-width: 16px;
}
.file label {
  margin-left: 18px;
  font-size: 14px;
  font-weight: 300;
  color: #757575;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 83%;
  overflow: hidden;
}

.registration-success {
  padding-top: 104px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--green);
  transform: translateY(100vh);
  opacity: 0;
  transition: 0.2s;
}
.registration-success__inner {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}
.registration-success h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 30px;
}
.registration-success p {
  color: white;
  margin-top: 36px;
  text-align: center;
}
.registration-success__icon {
  width: 128px;
  height: 128px;
  border-radius: 100px;
  margin: 50px auto;
  border: 3px solid white;
  position: relative;
}
.registration-success__icon:after {
  content: "";
  display: block;
  border-left: 16px solid white;
  border-bottom: 16px solid white;
  width: 65px;
  height: 40px;
  position: absolute;
  top: 37px;
  left: 32px;
  transform: rotate(-45deg);
}

.capture {
  padding: 108px 15px;
  display: flex;
  max-width: 860px;
  margin: 0 auto;
  justify-content: space-between;
}
.capture .button-border {
  border-color: #25D366;
  color: #25D366;
  display: flex;
  align-items: center;
}
.capture .button-border img {
  margin-right: 6px;
  width: auto;
}
.capture__content-left {
  margin: 0 !important;
  padding-top: 12px;
  position: relative;
}
.capture__content-left:after {
  content: "";
  display: block;
  width: 1px;
  height: 370px;
  background: #EBEBEB;
  position: absolute;
  right: -86px;
  top: 68px;
}
.capture__content-right {
  max-width: 326px;
  width: 100%;
}
.capture__content-right h4 {
  color: var(--grey-dark);
  font-weight: 700;
  line-height: 1.69;
  margin-bottom: 24px;
}

@media (max-width: 860px) {
  .capture__content-left:after {
    display: none;
  }
}
@media (max-width: 750px) {
  .capture {
    flex-direction: column;
    align-items: center;
    justify-content: initial;
  }
  .capture .button-border {
    padding: 2px 16px;
  }
  .capture__content-right {
    margin-top: 40px;
  }
}
.stickers__list {
  overflow: auto;
}
.stickers__item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.0509803922);
  background: white;
  justify-content: space-between;
  margin-top: 16px;
}
.stickers__item img {
  max-width: 32px;
  margin-right: 12px;
}
.stickers__item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stickers__item-info h5 {
  font-size: 14px;
  line-height: 1.5;
  color: #0C6D26;
}
.stickers__item-info span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
}
.stickers__item-left {
  display: flex;
  align-items: center;
}
.stickers__item-date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.stickers__item-date h5 {
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
  text-align: end;
}
.stickers__item-date span {
  font-size: 14px;
  line-height: 1.5;
  text-align: end;
  color: #757575;
}

.select {
  width: 100%;
  height: 44px;
  padding-left: 12px;
  border: 1px solid #EBEBEB;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 300;
  color: #757575;
  cursor: pointer;
}

.person-data {
  padding-top: 108px;
}

.captured-badges {
  padding-top: 80px;
}
.captured-badges span {
  margin-top: 0 !important;
}
.captured-badges form {
  margin-top: 32px;
  margin-bottom: 80px;
  display: flex;
}
.captured-badges form .input, .captured-badges form button {
  margin: 0;
}
.captured-badges form .input {
  width: 100%;
}
.captured-badges form .input label {
  white-space: nowrap;
  font-size: 15px;
}
.captured-badges form .input input {
  border-radius: 6px 0 0 6px;
}
.captured-badges form button {
  width: auto;
  background: var(--green-linear-button);
  border: none;
  padding: 0 16px;
  border-radius: 0 6px 6px 0;
  color: white;
}
.captured-badges form button img {
  width: 16px;
}

.mobile-control {
  background: #FAFCFB;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.1019607843);
  display: none;
  z-index: 3;
}
.mobile-control__inner {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.mobile-control__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
}
.mobile-control__link img {
  margin-bottom: 10px;
}
.mobile-control__capture {
  display: flex;
  flex-direction: column;
  color: var(--green);
  transform: translateY(-32px);
}
.mobile-control__capture a {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: var(--green-linear-button);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

@media (max-width: 750px) {
  .mobile-control {
    display: block;
  }
}
.mobile-sidebar {
  padding: 32px;
  background: white;
  position: fixed;
  top: 76px;
  left: 0;
  bottom: 0;
  max-width: 500px;
  width: 100%;
  height: calc(100vh - 165px);
  overflow: auto;
  display: none;
  transform: translateY(100vh);
  transition: 0.3s ease;
}
.mobile-sidebar__show {
  transform: translateY(0);
}
.mobile-sidebar__close-btn {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
}
.mobile-sidebar__close-btn:after, .mobile-sidebar__close-btn:before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--black);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 2px;
}
.mobile-sidebar__close-btn:after {
  transform: rotate(45deg);
}
.mobile-sidebar__close-btn:before {
  transform: rotate(-45deg);
}
.mobile-sidebar .logout {
  font-weight: 700;
  margin-top: 36px;
}
.mobile-sidebar__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 46px;
}
.mobile-sidebar__block h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: -0.02em;
  text-align: left;
}
.mobile-sidebar__block a {
  margin-top: 12px;
}

@media (max-width: 750px) {
  .mobile-sidebar {
    display: block;
  }
}
.change-password__invalid {
  border: 1px solid red !important;
}

.notification {
  background: var(--green);
  padding: 24px 28px;
  padding-top: 62px;
  display: flex;
  border-radius: 2px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: -200px;
  max-width: 367px;
  width: 100%;
  transition: 0.2s;
  align-items: center;
}
.notification__content {
  margin-left: 16px;
  position: relative;
}
.notification__content h5 {
  font-weight: 700;
  font-size: 16px;
  color: white;
}
.notification__content p {
  font-size: 14px;
  color: white;
}
.notification__show {
  top: 40px;
}
.notification__error {
  background: red;
}
.notification__close-btn {
  background: none;
  border: none;
  width: 18px;
  height: 18px;
  position: absolute;
  top: -16px;
  right: -16px;
}
.notification__close-btn:after, .notification__close-btn:before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: white;
  position: absolute;
}
.notification__close-btn:after {
  transform: rotate(45deg);
}
.notification__close-btn:before {
  transform: rotate(-45deg);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 48px;
}
.pagination__links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__links a {
  background: var(--green-text);
  padding: 8px;
  color: white;
  margin: 12px 2px 0;
  border-radius: 4px;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 1;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  color: var(--black);
  min-height: 100vh;
  background-color: var(--white-bg);
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: var(--green-text);
}

ul {
  list-style-type: none;
}

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

button {
  cursor: pointer;
}

h1 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--grey-dark);
}

h3 {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
}

p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}

span {
  line-height: 1.5;
  color: white;
}

/*# sourceMappingURL=styles.css.map */
