body, html {
  margin: 0;
  padding: 0;
}

body, button, input {
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1180px;
  margin: auto;
  position: relative;
}

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

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.page {
  background: rgba(224, 42, 254, 0.09);
}

.floating-btn {
  align-items: center;
  animation: pulse 2s infinite;
  background-color: #127ccf;
  border-radius: 50%;
  bottom: 20px;
  box-shadow: 0 0 0 rgba(18, 124, 207, 0.4);
  display: flex;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: 20px;
  transition: 0.5s;
  width: 60px;
  z-index: 20;
}
.floating-btn div {
  position: absolute;
  left: -86px;
  font-size: 18px;
  font-weight: 500;
  display: none;
}
.floating-btn:hover div {
  display: block;
}

.floating-btn:hover {
  animation: none;
  background-color: #0a66c2;
}

.floating-btn:hover img {
  transform: rotate(20deg);
}

.floating-btn img {
  height: 24px;
  transform: rotate(0);
  transition: 0.3s;
  width: 24px;
  margin-left: -3px;
  margin-top: -1px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(18, 124, 207, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(18, 124, 207, 0);
  }
  to {
    box-shadow: 0 0 0 0 rgba(18, 124, 207, 0);
  }
}
.monopay-button {
  display: block;
  background: #000;
  color: #FFF;
  padding: 15px;
  border-radius: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
  font-size: 22px;
  text-decoration: none;
  cursor: pointer;
}
.monopay-button span {
  display: inline-block;
  background: #FFF;
  color: #000;
  padding: 2px 10px;
  border-radius: 10px;
  margin-left: 5px;
}

.Mind {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.Mind h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.Mind__Button {
  display: inline-block;
  margin: 20px auto;
  background: #FF79B2;
  color: white;
  padding: 8px 32px 8px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
}
.Mind__Contact a {
  color: #FF79B2;
  text-decoration: underline;
}

.Popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 515;
  overflow-wrap: break-word;
}
.Popup a {
  color: #BE35CA;
  text-decoration: none;
  font-weight: 600;
}
.Popup__Close {
  cursor: pointer;
}
.Popup._active {
  display: block;
}
.Popup--Large .Popup__Content {
  font-size: 20px;
}
.Popup--Large .Popup__Popup {
  width: 900px;
  top: calc(50% - 200px);
  left: calc(50% - 450px);
  font-size: 20px;
}
.Popup__Popup {
  position: absolute;
  top: calc(50% - 90px);
  left: calc(50% - 260px);
  background: white;
  border-radius: 15px;
  width: 520px;
  padding: 30px;
  z-index: 2;
}
.Popup__Background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.Popup__Content {
  color: #000;
  margin-bottom: 30px;
  font-size: 16px;
}
.Popup__Buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.Popup__Buttons button {
  background: none;
  border: none;
  outline: none;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 18px;
}
.Popup__Buttons button:nth-child(1) {
  color: #000;
  background: none;
}
.Popup__Buttons button:nth-child(2) {
  background: #000;
  color: white;
  border-radius: 25px;
}

@media (max-width: 920px) {
  .Popup--Large .Popup__Popup {
    left: 15px;
    width: calc(100% - 30px);
  }
}
@media (max-width: 550px) {
  .Popup__Popup {
    left: 15px;
    width: calc(100% - 30px);
  }
}
.FooterContent {
  background: #FFD5EF;
  padding-bottom: 20px;
  padding-top: 30px;
  position: relative;
  overflow: hidden;
}
.FooterContent__Web {
  position: absolute;
  top: 0;
}
.FooterContent__Web--Left {
  left: 0;
}
.FooterContent__Web--Right {
  right: 0;
}
.FooterContent__Wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.FooterContent__Item {
  margin-left: 32px;
  margin-right: 32px;
  color: #000;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
}
.FooterContent__Rights {
  margin-top: 32px;
  font-size: 12px;
  color: #000;
  text-align: center;
}
.FooterContent__Partners {
  margin-top: 32px;
  font-size: 14px;
  color: #000;
  text-align: center;
  margin-bottom: 8px;
}

@media (max-width: 1200px) {
  .FooterContent__Web {
    bottom: 0;
    top: auto;
    height: 100%;
    opacity: 0.6;
  }
  .FooterContent__Web img {
    height: 100%;
    object-fit: cover;
  }
  .FooterContent__Web--Left {
    display: none;
  }
  .FooterContent__Wrapper {
    flex-direction: column;
  }
  .FooterContent__Item {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.FooterCookie {
  position: fixed;
  text-align: center;
  bottom: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  background: rgba(46, 0, 50, 0.49);
}
.FooterCookie__Wrapper {
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.FooterCookie * {
  color: #FFFFFF;
}
.FooterCookie p {
  font-size: 14px;
}
.FooterCookie button {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 20px;
  padding: 6px 18px;
  background: #BE35CA;
  margin-left: 18px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .FooterCookie {
    padding-left: 15px;
    padding-right: 15px;
  }
  .FooterCookie__Wrapper {
    height: auto;
    flex-direction: column;
  }
  .FooterCookie button {
    margin-top: 15px;
  }
}
.Header {
  height: 100px;
  background: #FFD5EF;
  color: #000;
}
.Header__Mobile {
  display: none;
  width: 40px;
  height: 40px;
}
.Header__Mobile img {
  width: 100%;
  height: 100%;
}
.Header__Container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  height: 100%;
  margin: auto;
}
.Header__Logo {
  font-size: 48px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Header__Logo img {
  max-width: 280px;
}
.Header__Navbar__Item {
  font-size: 20px;
  color: #000;
  margin-left: 37px;
  text-decoration: none;
  font-weight: 300;
}
.Header__Navbar__Item._active {
  font-weight: 600;
}
.Header__Navbar__Item--Button {
  padding: 8px 32px;
  color: #000;
  border: 2px solid #FF79B2;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
}
.Header__Navbar .Header__Navbar__Item--Button {
  display: none;
}
@media (max-width: 1200px) {
.Header__Navbar._active .Header__Navbar__Item--Button {
  display: inline-block;
  margin: 15px auto auto;
}
}
.Header__Navbar._buttons .Header__Navbar__Item--Button {
  display: inline-block;
}

@media (max-width: 1200px) {
  .Header__Container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1320px) {
  .Header__Mobile {
    display: block;
    cursor: pointer;
  }
  .Header__Logo {
    font-size: 30px;
  }
  .Header__Logo img {
    max-width: 150px;
  }
  .Header__Navbar {
    position: absolute;
    height: 0;
    text-align: center;
    z-index: 5;
    display: block;
    width: 100%;
    transition: 0.3s;
    overflow: hidden;
    left: 0;
    top: 100px;
    background: #FFD5EF;
    padding-left: 30px;
    padding-right: 30px;
  }
  .Header__Navbar__Item {
    display: block;
    margin-top: 20px;
    margin-left: 0;
  }
  .Header__Navbar__Item--Button {
    display: inline-block;
    padding-left: 80px;
    padding-right: 80px;
    margin-top: 50px;
  }
  .Header__Navbar._active {
    height: 350px;
    padding-top: 10px;
  }
}
.HeaderPayment {
  position: relative;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.HeaderPayment__Flag {
  position: absolute;
  width: 100%;
  height: 100%;
}
.HeaderPayment__Flag div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 25px;
}
.HeaderPayment__Flag div:nth-child(1) {
  background: #0057b8;
}
.HeaderPayment__Flag div:nth-child(2) {
  top: 25px;
  background: #ffd700;
}
.HeaderPayment__Button {
  position: relative;
  z-index: 15;
  font-weight: bold;
  font-size: 18px;
  background: #FFF;
  padding: 3px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.Pricing h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #000;
}
.Pricing p {
  font-size: 16px;
  color: #000;
  opacity: 0.5;
  text-align: center;
}
.Pricing__Content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-right: -15px;
  margin-left: -15px;
}
.Pricing__Help {
  margin-top: 15px;
  display: block;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
.Pricing__Help a {
  color: #FF79B2;
}
.Pricing__Wrapper {
  padding-top: 30px;
}

.Pricing__Periods {
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 222px;
  background: white;
  border-radius: 30px;
  padding: 15px 0;
  position: relative;
}
.Pricing__Periods__Plank {
  position: absolute;
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  border-radius: 30px;
  background: #FF79B2;
  z-index: 0;
  left: 0;
  transition: 0.3s;
}
.Pricing__Periods__Plank._active {
  left: 50%;
}
.Pricing__Periods__Item {
  cursor: pointer;
  position: relative;
  z-index: 1;
  width: 50%;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}
.Pricing__Periods__Item._active {
  color: #FFFFFF;
}


.pricing__title {
  padding-top: 15px;
  text-align: center;
}

.pricing__title h1 {
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 700;
}

.pricing__title p {
  color: #807D80;
}

.pricing__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-right: -15px;
  margin-left: -15px;
}

.pricing__content {
  margin-top: 24px;
}

.pricing__item {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  background: #FFF;
  box-shadow: 0 4px 2px 2px rgba(0, 0, 0, 0.05), 0 4px 10px 10px rgba(0, 0, 0, 0.04);
}

.pricing__item__wrapper {
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3%;
  flex: 0 0 33.3%;
  margin-bottom: 30px;
}

.pricing__item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing__item h3 {
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.pricing__item h3 span {
  padding: 4px 8px;
  background: #FF79B2;
  border-radius: 15px;
  margin-left: 8px;
  margin-top: 2px;
  font-size: 12px;
  text-transform: uppercase;
  color: white;
  font-weight: 400;
  font-family: Poppins, sans-serif;
}

.pricing__item p {
  font-size: 16px;
  color: #807D80;
  text-align: left;
}

.pricing__item__title__price {
  display: flex;
  align-items: center;
  font-size: 36px;
  font-weight: 600;
}

.pricing__item__title__price span {
  font-size: 18px;
  color: #807D80;
  font-weight: 500;
  margin-left: 8px;
}

.pricing__item__features {
  color: #000;
}

.pricing__item__features h4 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 15px;
}

.pricing__item__features ul {
  padding-left: 0;
}

.pricing__item__features li {
  background: url(/images/price-list.svg) no-repeat left top;
  list-style: none;
  vertical-align: top;
  font-size: 14px;
  line-height: 21px;
  color: #000;
  padding: 0 10px 10px 33px;
  font-weight: 500;
}

.pricing__item__payment-gateways {
  mix-blend-mode: exclusion;
}

.pricing__item__payment-gateways img {
  margin-right: 7px;
  width: 40px;
  height: 40px;
}

.pricing__item__button {
  color: #000;
  border-radius: 12px;
  padding: 8px 32px;
  border: 2px solid #000;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  opacity: 0;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
}
.pricing__item__button__wrapper {
  display: flex;
  justify-content: center;
}

.pricing__item {
  border: 2px solid transparent;
  transition: 0.5s;
  cursor: pointer;
}

.pricing__item:hover {
  border: 2px solid #FF79B2;
}
.pricing__item:hover .pricing__item__button {
  opacity: 1;
}

.pricing__item__wrapper:nth-child(5) {
  width: 39%;
  flex: 0 0 39%;
}
.pricing__item__wrapper:nth-child(5) .pricing__item__features ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /*max-height: 100px;*/
}

@media (max-width: 1200px) {
  .Pricing {
    padding-left: 15px;
    padding-right: 15px;
  }
  .pricing__row {
    flex-direction: column;
  }
  .pricing__item__wrapper {
    width: 100%;
    flex: 0 0 100%;
  }
  .pricing__item__button {
    opacity: 1;
  }
  .pricing__item__wrapper:last-child {
    width: 100%;
    flex: 0 0 100%;
  }
  .pricing__item__wrapper:last-child .pricing__item__features ul {
    display: block;
    max-height: none;
  }
}
.Login__Background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}
.Login__Background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.LoginForm {
  position: relative;
  z-index: 100;
  padding: 15px 15px 15px;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.LoginForm h1 {
  text-align: center;
  font-size: 32px;
  color: white;
}
.LoginForm h1 a {
  color: #FF79B2;
  font-size: 72px;
  line-height: 72px;
  text-decoration: none;
}
.LoginForm__Wrapper {
  width: 100%;
  background: #FFF;
  max-width: 540px;
  margin: 30px auto 0;
  padding: 30px;
  border-radius: 30px;
}
.LoginForm h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}
.LoginForm__Other {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.LoginForm__Other a {
  color: #FF79B2;
  text-decoration: none;
}
.LoginForm__Input__Wrapper {
  position: relative;
  margin-top: 10px;
}
.LoginForm__Input__Wrapper label {
  width: 100%;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.LoginForm__Input__Wrapper input {
  width: 100%;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid #000;
  padding: 12px 25px;
  font-family: Poppins, sans-serif;
}
.LoginForm__Input__Wrapper input::placeholder {
  font-family: Poppins, sans-serif;
}
.LoginForm__Input__Wrapper span {
  position: absolute;
  right: 15px;
  top: 39px;
  cursor: pointer;
}
.LoginForm__Input__Wrapper a {
  text-align: right;
  color: #FF79B2;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  width: 100%;
  display: block;
  text-decoration: none;
}
.LoginForm__Buttons__Item {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
.LoginForm__Buttons button {
  width: 280px;
  border: none;
  background: #FF79B2;
  display: flex;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 7px 0;
  font-family: Poppins, sans-serif;
  cursor: pointer;
}
.LoginForm__Buttons > span {
  display: block;
  color: #807D80;
  text-align: center;
  margin-top: 3px;
  margin-bottom: 3px;
}
.LoginForm__Buttons a {
  width: 250px;
  border: 2px solid #FF79B2;
  border-radius: 15px;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF79B2;
  font-size: 18px;
  font-weight: 500;
  padding: 7px 0;
  text-decoration: none;
}
.LoginForm__Buttons a img {
  margin-right: 15px;
}
.LoginForm__Confirm {
  font-size: 12px;
  margin-top: 15px;
  margin-bottom: 1px;
}
.LoginForm__Confirm a {
  color: #FF79B2;
  text-decoration: none;
}
.LoginForm__Error {
  color: red;
  margin-top: 8px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .LoginForm h1 {
    font-size: 24px;
  }
  .LoginForm h1 a {
    font-size: 42px;
  }
}
.Home__Additional {
  margin-bottom: 100px;
  margin-top: 50px;
}
.Home__Additional h2 {
  margin-bottom: 5px;
  font-size: 32px;
}
.Home__Additional p {
  margin-bottom: 30px;
}
.Home__Additional a {
  color: #BE35CA;
  text-decoration: none;
}

.HomeHeader {
  position: relative;
  padding-top: 110px;
  text-align: left;
}
.HomeHeader__Content p {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  text-align: center;
  max-width: 540px;
  width: 100%;
  margin: auto;
  display: block;
}
.HomeHeader__Content h1 {
  color: #000;
  font-weight: 800;
  font-size: 72px;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
}
.HomeHeader__Content img {
  max-width: 670px;
  width: 100%;
  display: block;
  margin: auto;
}
.HomeHeader__Content__Buttons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.HomeHeader__Content__Buttons a {
  padding: 8px 32px;
  color: #000;
  border: 2px solid #FF79B2;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-right: 15px;
  margin-left: 15px;
}
.HomeHeader__Content__Buttons a._active {
  font-weight: 600;
  color: white;
  background: #FF79B2;
}

@media (max-width: 1200px) {
  .HomeHeader {
    padding-top: 50px;
  }
  .HomeHeader__Content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .HomeHeader__Content h1 {
    font-size: 32px;
  }
  .HomeHeader__Content__Buttons {
    display: block;
  }
  .HomeHeader__Content__Buttons a {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
  }
}
.HomeStages {
  position: relative;
  margin-top: 100px;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 100px;
}
.HomeStages__Web {
  position: absolute;
  left: 0;
  top: 90px;
  opacity: 0.7;
  z-index: -1;
}
.HomeStages h2 {
  font-weight: 700;
  font-size: 32px;
  padding-left: 100px;
  padding-right: 100px;
  text-align: center;
  line-height: 53px;
  margin-bottom: 30px;
}
.HomeStages__Row {
  display: flex;
  flex-direction: row;
  padding-left: 100px;
  padding-right: 100px;
}
.HomeStages__Image {
  width: 100%;
}
.HomeStages__Image__Wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.HomeStages__Image__Button {
  padding: 8px 32px;
  border: 2px solid #FF79B2;
  border-radius: 12px;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  color: white;
  background: #FF79B2;
  font-weight: 600;
}
.HomeStages__Steps {
  padding-left: 30px;
  padding-top: 15px;
}
.HomeStages__Steps__Item {
  display: flex;
  cursor: pointer;
  margin-top: 30px;
}
.HomeStages__Steps__Item__Number {
  background: #FFFFFF;
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF79B2;
  margin-right: 17px;
  position: relative;
}
.HomeStages__Steps__Item._active .HomeStages__Steps__Item__Number {
  background: #FF79B2;
  color: #FFFFFF;
}
.HomeStages__Steps__Item:not(:last-child) .HomeStages__Steps__Item__Number::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #FF79B2;
  position: absolute;
  top: 69px;
  left: 27px;
}
.HomeStages__Steps__Item__Content {
  text-align: left;
}
.HomeStages__Steps__Item__Content h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}
.HomeStages__Steps__Item__Content p {
  font-size: 14px;
  color: #000;
  margin-bottom: 50px;
}
.HomeStages__Examples {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 450px;
  margin: auto;
}
.HomeStages__Examples__Col {
  width: 33%;
  flex: 0 0 33%;
}
.HomeStages__Examples__Col div {
  padding: 8px;
  height: 220px;
  width: 100%;
}
.HomeStages__Examples__Col img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .HomeStages {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 60px;
    margin-top: 15px;
  }
  .HomeStages h2 {
    padding-left: 0;
    padding-right: 0;
  }
  .HomeStages__Row {
    padding-left: 0;
    padding-right: 0;
  }
  .HomeStages__Web {
    display: none;
  }
  .HomeStages h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 45px;
  }
  .HomeStages__Row {
    flex-direction: column;
  }
  .HomeStages__Image {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  .HomeStages__Steps {
    margin-top: 30px;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    order: 1;
  }
}
@media (max-width: 600px) {
  .HomeStages__Examples__Col {
    width: 100%;
    flex: 0 0 100%;
  }
  .HomeStages__Examples__Col div {
    height: auto;
  }
  .HomeStages__Examples__Col img {
    object-fit: initial;
  }
  .HomeStages__Examples__Col:nth-child(2), .HomeStages__Examples__Col:nth-child(3) {
    display: none;
  }
}

@media (max-width: 1230px) {
  .HomeWindow {
    padding-bottom: 30px;
  }
  .HomeWindow__Row {
    display: block;
  }
  .HomeWindow__FAQ, .HomeWindow__Scroll {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
  }
  .HomeWindow__Scroll {
    margin-top: 30px;
  }
}
@media (max-width: 930px) {
  .HomeWindow {
    margin-top: 50px;
  }
}
.HomeExamples {
  margin-top: 120px;
  margin-bottom: 50px;
}
.HomeExamples h3 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 30px;
}
.HomeExamples__Wrapper {
  padding-left: 15px;
  padding-right: 15px;
}
.HomeExamples__Row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.HomeExamples__Item {
  border: 4px solid #BE35CA;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.HomeExamples__Item__Wrapper {
  padding-left: 15px;
  padding-right: 15px;
  height: 300px;
  max-width: 33.3%;
  flex: 0 0 33.3%;
  margin-bottom: 30px;
}
.HomeExamples__Item__Before, .HomeExamples__Item__After {
  max-width: 50%;
  flex: 0 0 50%;
  height: 100%;
}
.HomeExamples__Item__Before img, .HomeExamples__Item__After img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .HomeExamples__Row {
    display: block;
  }
  .HomeExamples__Item {
    height: 350px;
  }
  .HomeExamples__Item__Wrapper {
    height: 350px;
    max-width: 100%;
    flex: auto;
    width: 100%;
  }
}
.Balances {
  min-height: calc(100vh - 221px);
  padding-top: 110px;
  padding-bottom: 150px;
}
.Balances i {
  font-style: normal;
}
.Balances__Empty {
  margin-top: 30px;
  font-size: 28px;
  font-weight: 500;
}
.Balances__Wrapper {
  padding: 34px 24px 31px 24px;
  color: #000;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0 4px 10px 10px rgba(0, 0, 0, 0.04), 0 4px 2px 2px rgba(0, 0, 0, 0.05);
  border-radius: 26px;
}
.Balances__ColF {
  max-width: 40%;
  flex: 0 0 40%;
  padding-left: 12px;
  padding-right: 12px;
}
.Balances__ColS {
  padding-left: 12px;
  padding-right: 12px;
  max-width: 60%;
  flex: 0 0 60%;
}
.Balances__Data._small {
  max-width: 252px;
  flex: 0 0 252px;
}
.Balances__Data__Title {
  margin-top: 15px;
}
.Balances__Data__Title h4 {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
}
.Balances__Data__Wrapper {
  display: flex;
  padding-right: 12px;
}
.Balances__Data__Limit, .Balances__Data__Tariff {
  margin-top: 10px;
  font-size: 28px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
}
.Balances__Data__Limit span, .Balances__Data__Tariff span {
  font-size: 17px;
  line-height: 21px;
  color: #848199;
  font-weight: 500;
}
.Balances__Data__Tariff, .Balances__Data__Until {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Balances__Data__Until {
  margin-top: 21px;
}
.Balances__Data__Until div {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #848199;
}
.Balances__Data__Until div span {
  color: #000;
}
.Balances__Data__Description {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #848199;
  margin-top: 8px;
}
.Balances__List {
  padding-left: 29px;
}
.Balances__List ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.Balances__List ul li {
  background: url("/images/price-list.svg") no-repeat left top;
  list-style: none;
  margin: 0 0 10px;
  padding: 0 10px 3px 33px;
  vertical-align: top;
  font-weight: 500;
  font-size: 15px;
  color: #848199;
}
.Balances__List ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1240px) {
  .Balances {
    padding-bottom: 150px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .Balances__Wrapper {
    margin-bottom: 30px;
  }
  .Balances__ColF {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 24px;
  }
  .Balances__ColS {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 550px) {
  .Balances {
    padding-top: 30px;
  }
  .Balances__List {
    padding-left: 0;
  }
  .Balances__Data._small {
    max-width: 100%;
    flex: auto;
  }
  .Balances__Data__Wrapper {
    flex-direction: column;
    padding-right: 24px;
  }
}
.Billing__Card__Item {
  padding-left: 135px;
  padding-right: 70px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 0;
  margin-left: 0;
  padding-top: 36px;
}
.Billing__Card__Item__Content {
  margin-top: 15px;
}
.Billing__Card__Item__Content > div:first-child {
  font-size: 14px;
  line-height: 24px;
  color: rgba(46, 0, 50, 0.6);
  margin-bottom: 8px;
}
.Billing__Card__Item__Content > div:last-child {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.Billing__Card__Buttons {
  margin-top: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.Billing__Button {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  border: 1px solid #BE35CA;
  background: none;
  width: 118px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #BE35CA;
  font-size: 20px;
  line-height: 24px;
  height: 36px;
  margin-right: 15px;
}
.Billing__Button:last-child {
  margin-right: 0;
}
.Billing__Add {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.Billing__Add button {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  background: #BE35CA;
  color: #FFFFFF;
  padding: 18px 40px;
}
.Billing__Modal__Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}
.Billing__Modal__Header h5 {
  font-weight: 600;
  font-size: 17px;
  line-height: 140%;
  color: #000;
}
.Billing__Modal__Header button {
  border: 0;
  background: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}
.Billing__Modal__Content__Item {
  position: relative;
  margin-top: 15px;
}
.Billing__Modal__Content__Item label {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(46, 0, 50, 0.7);
  margin-bottom: 5px;
}
.Billing__Modal__Content__Item label span {
  display: block;
  height: 16px;
  margin-left: 6px;
}
.Billing__Modal__Content__Item input {
  padding: 8px 12px;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 6px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(46, 0, 50, 0.7);
  display: block;
  width: 100%;
}
.Billing__Modal__Content__Item--Card, .Billing__Modal__Content__Item--Hint, .Billing__Modal__Content__Item--Eye {
  position: absolute;
  right: 15px;
  top: calc(50% + 4px);
}
.Billing__Modal__Content__Item--Eye {
  right: 38px;
  cursor: pointer;
}
.Billing__Modal__Content--Left {
  margin-right: 8px;
  max-width: calc(50% - 8px);
}
.Billing__Modal__Content--Right {
  margin-left: 8px;
  max-width: calc(50% - 8px);
}
.Billing__Modal__Actions {
  display: flex;
  align-items: center;
  margin-top: 48px;
}
.Billing__Modal__Actions--Cancel, .Billing__Modal__Actions--Update {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
}
.Billing__Modal__Actions--Cancel {
  background: none;
  color: #000;
  margin-left: 12px;
  margin-right: 24px;
}
.Billing__Modal__Actions--Update {
  background: #BE35CA;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
}

.popup-content[role=dialog] {
  max-width: 484px;
  padding: 32px;
  margin-left: 15px;
  border-radius: 13px;
  margin-right: 15px;
}

.popup-content[role=tooltip] {
  font-size: 12px;
  padding: 5px 10px;
}
.popup-content[role=tooltip] .popup-arrow {
  filter: none;
}

@media (max-width: 1240px) {
  .popup-content[role=dialog] {
    width: calc(100% - 30px);
  }
  .popup-overlay {
    overflow-y: scroll;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .Billing {
    width: 100%;
    padding: 30px 15px 150px;
  }
  .Billing__Card__Item {
    padding-left: 0;
    padding-right: 0;
  }
  .Billing__Modal__Content--Right, .Billing__Modal__Content--Left {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    flex: 0 0 100%;
    margin-left: 0;
  }
}
.Communication {
  min-height: calc(100vh - 221px);
  padding-top: 110px;
  padding-bottom: 150px;
}
.Communication__Wrapper {
  padding: 36px 24px;
  min-height: 400px;
  color: #000;
  background: #FFFFFF;
  box-shadow: 0 4px 10px 10px rgba(0, 0, 0, 0.04), 0 4px 2px 2px rgba(0, 0, 0, 0.05);
  border-radius: 26px;
}
.Communication__Title {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin-bottom: 24px;
  font-weight: 700;
}
.Communication__Content {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 75px;
}
.Communication__Content._small {
  margin-right: 27px;
}
.Communication__Content__Item {
  display: flex;
}
.Communication__Content__Item__Label h3 {
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
}
.Communication__Content__Item__Label p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 22px;
  color: #9F9F9F;
}
.Communication__Checkbox {
  margin-right: 24px;
  width: 24px;
  flex: 0 0 24px;
  height: 24px;
  display: block;
  content: "";
  border-radius: 4px;
  border: 2px solid #BE35CA;
}
.Communication__Item {
  margin-top: 45px;
}
.Communication__Item:first-child {
  margin-top: 24px;
}
.Communication__Item._small {
  margin-top: 24px;
}
.Communication__Item input {
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
.Communication__Item input:checked ~ label .Communication__Checkbox {
  background: #BE35CA;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Communication__Item input:checked ~ label .Communication__Checkbox img {
  width: 17px;
  height: 12px;
}

@media (max-width: 1240px) {
  .Communication {
    padding: 30px 15px 150px;
  }
  .Communication__Wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .Communication__Content {
    margin-bottom: 70px;
    margin-right: 15px;
  }
  .Communication__Content._small {
    margin-right: 0;
  }
}
.Dropdown {
  margin-bottom: 15px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.04), 0 3px 1px 2px rgba(0, 0, 0, 0.05);
}
.Dropdown__Title {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.Dropdown__Title__Wrapper {
  display: flex;
  align-items: center;
}
.Dropdown__Title__Icon {
  margin-right: 25px;
  height: 24px;
}
.Dropdown__Title__Icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Dropdown__Title__Open {
  transition: 0.2s;
}
.Dropdown__Title__Hint {
  position: absolute;
  right: 70px;
  font-size: 12px;
  line-height: 12px;
  color: #808080;
  top: calc(50% - 6px);
}
.Dropdown__Content {
  transition: 0.3s;
  max-height: 0;
  overflow: hidden;
}
.Dropdown._active .Dropdown__Content {
  max-height: 420px;
  padding: 0 0 30px 0;
}
.Dropdown._large .Dropdown__Content {
  max-height: 800px;
  padding: 0 0 30px 0;
}
.Dropdown._active .Dropdown__Title__Open {
  transform: rotate(180deg);
}

@media (max-width: 1240px) {
  .Dropdown__Content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .Dropdown._active .Dropdown__Content {
    max-height: 1000px;
    padding: 0 20px 20px 20px;
  }
  .Dropdown._large .Dropdown__Content {
    max-height: 1400px;
    padding: 0 20px 20px 20px;
  }
}
@media (max-width: 550px) {
  .Dropdown__Title {
    padding-bottom: 25px;
  }
  .Dropdown__Title__Hint {
    top: calc(100% - 20px);
    right: 30px;
  }
}
.EditButton {
  cursor: pointer;
  margin-top: 18px;
  padding-left: 0;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  outline: none;
  color: #BE35CA;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 10px;
}
.EditButton img {
  margin-right: 11px;
}

.alert-custom {
  padding: 1rem;
  border: 1px solid #4caf50;
  background-color: #dff0d8;
  border-radius: 4px;
  margin-bottom: 20px;
  color: #4caf50;
}

.History {
  min-height: calc(100vh - 221px);
  padding-top: 110px;
  padding-bottom: 200px;
}
.History .Profile__Page {
  padding-left: 45px;
}
.History__Wrapper {
  padding: 30px 24px;
  min-height: 400px;
  color: #000;
  background: #FFFFFF;
  box-shadow: 0 4px 10px 10px rgba(0, 0, 0, 0.04), 0 4px 2px 2px rgba(0, 0, 0, 0.05);
  border-radius: 26px;
}
.History__Table {
  border-spacing: 0;
}
.History__Table thead {
  width: 100%;
}
.History__Table td {
  padding-left: 10px;
  padding-right: 10px;
}
.History__Table th {
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 0 0 24px;
}
.History__Table th:nth-child(1) {
  width: 120px;
}
.History__Table th:nth-child(2) {
  width: 150px;
}
.History__Table th:nth-child(3) {
  width: 160px;
}
.History__Table th:nth-child(4) {
  width: 160px;
}
.History__Table th:nth-child(5) {
  width: 150px;
}
.History__Table th:nth-child(6) {
  width: 140px;
}
.History__Table th:nth-child(7) {
  width: 100px;
}
.History__Table--Image {
  width: 50px;
}
.History__Table--Image img {
  width: 100%;
}
.History__Table--Actions button {
  cursor: pointer;
  background: #BE35CA;
  text-align: center;
  border-radius: 30px;
  border: none;
  outline: none;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  padding: 6px 26px;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 12px;
  white-space: nowrap;
  margin-top: 8px;
}
.History__Table--Actions button._danger {
  background: rgb(167, 20, 28);
}
.History__Table--Actions span {
  color: #000;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}
.History td {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #9F9F9F;
}
.History td:nth-last-child(1) {
  padding-left: 21px;
}
.History td:nth-last-child(2) {
  padding-left: 26px;
}
.History__Pagination {
  margin-top: 50px;
  position: relative;
}
.History__Pagination__Pages {
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.History__Pagination__Pages > a {
  text-decoration: none;
  margin-right: 4px;
  margin-left: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #656565;
  transition: 0.3s;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
}
.History__Pagination__Pages > a._active {
  background: #BE35CA;
  color: #FFFFFF;
}
.History__Pagination__Pages > a:not(._disabled) {
  cursor: pointer;
}
.History__Pagination__Pages > a:not(._disabled):not(._active):hover {
  background: rgba(190, 53, 202, 0.15);
}
.History__Pagination__Count {
  position: absolute;
  right: 0;
  top: 0;
}
.History__Pagination__Count__Title {
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 5px 16px;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.History__Pagination__Count__Title div {
  margin-left: 6px;
}
.History__Pagination__Count__Title div img {
  width: 9px;
}
.History__Pagination__Count__Options {
  max-height: 0;
  position: absolute;
  width: 100%;
  background: #FFFFFF;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  transition: 0.3s;
}
.History__Pagination__Count__Options a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  padding-top: 4px;
  padding-bottom: 3px;
  cursor: pointer;
}
.History__Pagination__Count._active .History__Pagination__Count__Title {
  border-radius: 10px 10px 0 0;
}
.History__Pagination__Count._active .History__Pagination__Count__Options {
  max-height: 150px;
  padding-top: 4px;
  padding-bottom: 4px;
  box-shadow: 0 4px 10px 10px rgba(0, 0, 0, 0.02), 0 4px 2px 2px rgba(0, 0, 0, 0.03);
}
.History__Empty {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}
.History__Empty h3 {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
}
.History__Empty p {
  font-size: 14px;
  margin-bottom: 30px;
  color: #9F9F9F;
}
.History__Empty a {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  padding: 18px 40px;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 1240px) {
  .History {
    padding-left: 15px;
    padding-right: 15px;
  }
  .History .Profile__Page {
    padding-left: 15px;
  }
  .History__Wrapper {
    padding: 30px 15px 15px;
  }
}
@media (max-width: 768px) {
  .History {
    padding-top: 30px;
    padding-bottom: 250px;
  }
  .History .Profile__Page {
    padding-left: 0;
  }
  .History__Wrapper {
    padding: 30px 15px 15px;
  }
  .History__Table {
    min-width: 768px;
  }
  .History__Table__Wrapper {
    overflow-x: scroll;
  }
  .History__Pagination {
    justify-content: space-between;
  }
  .History__Pagination__Count {
    position: relative;
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .History__Pagination__Pages {
    justify-content: start;
  }
}
.Profile {
  min-height: 100vh;
}
.Profile__Wrapper {
  display: flex;
  flex-direction: row;
  min-height: calc(100vh - 221px);
  padding-top: 110px;
  padding-bottom: 150px;
}
.Profile__Data {
  padding-left: 15px;
  display: flex;
  align-items: center;
}
.Profile__Row {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  flex-direction: row;
  margin-left: -15px;
  margin-right: -15px;
}
.Profile__Row__Wrapper {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
.Profile__Col8 {
  flex: 0 0 66.6%;
  max-width: 66.6%;
}
.Profile__Col6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.Profile__Col4 {
  flex: 0 0 33.3%;
  max-width: 33.3%;
}
.Profile__Col5 {
  flex: 0 0 41.6%;
  max-width: 41.6%;
}
.Profile__Col3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.Profile__Page {
  flex: 0 0 953px;
  max-width: 953px;
  padding-left: 58px;
}
.Profile__Title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.Profile__Title h1 {
  font-size: 26px;
  line-height: 31px;
  font-weight: 400;
}
.Profile__Title__Button {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 6px 26px;
  text-decoration: none;
}
.Profile__Button {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 6px 26px;
  text-decoration: none;
}

.ProfileEdit {
  margin-top: -30px;
}
.ProfileEdit__Personal, .ProfileEdit__Security {
  padding-top: 50px;
}
.ProfileEdit__Personal h2, .ProfileEdit__Security h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.ProfileEdit__Avatar {
  margin-top: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.ProfileEdit__Avatar img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 15px;
}
.ProfileEdit__Avatar label {
  color: #FF79B2;
  font-weight: 500;
}
.ProfileEdit__Avatar input {
  display: none;
  opacity: 0;
}
.ProfileEdit__Inputs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.ProfileEdit__Input {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 15px;
  width: 50%;
  flex: 0 0 50%;
}
.ProfileEdit__Input label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.ProfileEdit__Input input, .ProfileEdit__Input select {
  min-height: 43px;
  font-size: 16px;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 8px 15px;
  background: none;
  width: 100%;
}
.ProfileEdit__Button {
  display: flex;
  justify-content: end;
}
.ProfileEdit__Button button {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  padding: 8px 16px;
  background: #FF79B2;
  font-size: 18px;
  border-radius: 8px;
  margin-top: 30px;
}

@media (max-width: 1240px) {
  .ProfileEdit__Input {
    width: 100%;
    flex: 0 0 100%;
  }
  .Dropdown__Title {
    margin-bottom: 15px;
  }
  .Profile__Data {
    padding-bottom: 15px;
    display: block;
  }
  .Profile__Data > * {
    margin-top: 10px;
  }
  .Profile__Page {
    flex: 0 0 66%;
    max-width: 66%;
    padding-left: 25px;
  }
  .Profile__Col8, .Profile__Col6, .Profile__Col4, .Profile__Col5, .Profile__Col3 {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .Profile__Wrapper {
    display: block;
    padding-top: 30px;
  }
  .Profile__Page {
    max-width: 100%;
    padding-left: 0;
    margin-left: 0;
    padding-top: 30px;
  }
  .Profile__Title {
    flex-direction: column;
  }
  .Profile__Title a {
    display: inline-block;
    margin-top: 15px;
  }
}
.Settings {
  min-height: calc(100vh - 221px);
  padding-top: 110px;
  padding-bottom: 150px;
}
.Settings__Avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.Settings__Avatar img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.Settings__Item {
  margin-top: 20px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 20px;
}
.Settings__Item div:first-child {
  font-size: 14px;
  line-height: 24px;
  color: rgba(46, 0, 50, 0.6);
  margin-bottom: 5px;
}
.Settings__Item div:last-child {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.Settings__Item__Confirm {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  padding: 7px 30px;
  margin-top: 8px;
}
.Settings__Item__Confirm--Message {
  margin-top: 5px;
  font-size: 12px;
  color: #0b5ed7;
  margin-bottom: 5px;
}
.Settings__Avatar {
  margin-top: 20px;
  display: inline-block;
  cursor: pointer;
}
.Settings__Avatar p {
  font-size: 14px;
  line-height: 24px;
  color: rgba(46, 0, 50, 0.6);
  margin-bottom: 5px;
}
.Settings__Avatar__Area {
  margin-top: 8px;
  border: 1px dashed #9F9F9F;
  border-radius: 8px;
  width: 142px;
  padding: 24px;
  display: flex;
}
.Settings__Avatar__Area__Image img {
  display: block;
  width: 36px;
  height: 36px;
  margin: auto;
}
.Settings__Avatar__Area__Image img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Settings__Avatar__Area__Image div {
  font-size: 12px;
  color: #9F9F9F;
  margin-top: 15px;
  text-align: center;
}
.Settings__Personal__Error {
  margin-top: 15px;
  font-size: 14px;
  color: red;
  padding-left: 15px;
}
.Settings__Personal__Success {
  margin-top: 15px;
  font-size: 14px;
  color: #0b5ed7;
  padding-left: 15px;
}
.Settings__Personal__Inputs {
  width: 100%;
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.Settings__Personal__Input {
  margin-bottom: 15px;
  width: 50%;
  flex: 0 0 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.Settings__Personal__Input--Large {
  width: 100%;
  flex: 0 0 100%;
}
.Settings__Personal__Input > div {
  width: 100%;
}
.Settings__Personal__Input label {
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}
.Settings__Personal__Input input, .Settings__Personal__Input select {
  display: block;
  width: 100%;
  font-size: 18px;
  padding: 9px 18px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.Settings__Personal__Input select {
  box-shadow: none;
  color: #000;
  padding: 9px 18px;
  background-color: #FFF;
  background-image: none;
  cursor: pointer;
}
.Settings__Personal__Input > button {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  width: 100%;
  text-align: center;
  padding: 12px 30px;
  margin-top: 25px;
}
.Settings__Personal__Button {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
  padding-right: 15px;
}
.Settings__Button {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  padding: 7px 30px;
}
.Settings__Change {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.Settings__Change a {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 20px;
  color: #FFF;
  line-height: 24px;
  padding: 14px 35px;
  border-radius: 7px;
  display: block;
  text-decoration: none;
}
.Settings .Settings__Content {
  padding-left: 15px;
}

#personal-data-avatar {
  display: none;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

@media (max-width: 1240px) {
  .Settings {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 150px;
  }
  .Settings .Settings__Content {
    padding-left: 0;
    padding-right: 20px;
  }
  .Settings__Personal__Inputs {
    width: 100%;
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .Settings__Personal__Input {
    margin-bottom: 15px;
    width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .Settings {
    padding-top: 30px;
  }
  .Settings__Personal__Button {
    justify-content: start;
    margin-top: 15px;
  }
}
.Sidebar {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  flex: 0 0 227px;
  max-width: 227px;
}
.Sidebar__Subscription {
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.Sidebar__Subscription h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.Sidebar__Profile {
  padding-right: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.Sidebar__Profile__Wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Sidebar__Profile__Burger {
  display: none;
}
.Sidebar__Profile__Data {
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}
.Sidebar__Profile__Avatar {
  margin-right: 7px;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  overflow: hidden;
}
.Sidebar__Profile__Avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Sidebar__Profile__Content {
  margin-left: 10px;
}
.Sidebar__Profile__Content h4 {
  font-weight: 500;
  font-size: 18px;
  color: #000;
}
.Sidebar__Menu {
  padding-right: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 25px;
  padding-bottom: 5px;
}
.Sidebar__Logout {
  padding-right: 15px;
  padding-top: 24px;
}
.Sidebar__Logout__Button {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  background: #FF79B2;
  padding: 10px 0 10px 50px;
  text-align: left;
  color: white;
  font-weight: 600;
  font-size: 16px;
}
.SidebarItem {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.SidebarItem__Icon {
  margin-right: 15px;
}
.SidebarItem__Content {
  font-size: 16px;
  line-height: 24px;
  color: rgba(37, 37, 37, 0.7);
}
.SidebarItem__Content._active {
  color: #FF79B2;
}

@media (max-width: 1240px) {
  .Sidebar {
    flex: 0 0 33%;
    max-width: 33%;
  }
}
@media (max-width: 768px) {
  .Sidebar {
    border: none;
    max-width: 100%;
  }
  .Sidebar__Profile__Burger {
    display: block;
    width: 24px;
    height: 24px;
  }
  .Sidebar__Profile__Burger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .Sidebar:not(._active) .Sidebar__Menu, .Sidebar:not(._active) .Sidebar__Logout {
    display: none;
  }
}
.Edit__Wrapper {
  padding: 24px 16px 24px;
  color: #2e0032;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0 4px 10px 10px rgba(0, 0, 0, 0.0392156863), 0 4px 2px 2px rgba(0, 0, 0, 0.0509803922);
  border-radius: 26px;
}
.Edit__Content {
  padding-left: 12px;
  padding-right: 12px;
}

.Transactions {
  min-height: calc(100vh - 221px);
  padding-top: 110px;
  padding-bottom: 200px;
}
.Transactions .Profile__Page {
  padding-left: 45px;
}
.Transactions__Wrapper {
  padding: 30px 24px;
  min-height: 400px;
  color: #000;
  background: #FFFFFF;
  box-shadow: 0 4px 10px 10px rgba(0, 0, 0, 0.04), 0 4px 2px 2px rgba(0, 0, 0, 0.05);
  border-radius: 26px;
}
.Transactions__Table {
  border-spacing: 0;
}
.Transactions__Table thead {
  width: 100%;
}
.Transactions__Table th {
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 0 0 24px;
}
.Transactions__Table th:nth-child(1) {
  width: 416px;
}
.Transactions__Table th:nth-child(2) {
  width: 160px;
}
.Transactions__Table th:nth-child(3) {
  width: 120px;
}
.Transactions__Table th:nth-child(4) {
  width: 120px;
}
.Transactions__Table .Transactions__Table--Amount {
  color: #000;
  font-size: 18px;
  font-weight: 800;
}
.Transactions__Table .Transactions__Table--Left {
  color: #000;
  font-size: 18px;
  font-weight: 800;
}
.Transactions__Table .Transactions__Table--Date > div {
  text-align: center;
  background: #FEEEFF;
  border-radius: 10px;
  padding: 12px 20px;
  width: fit-content;
}
.Transactions__Table .Transactions__Table--Date > div > div {
  margin-top: 8px;
  font-weight: 800;
  font-size: 22px;
  line-height: 32px;
  color: #000;
}
.Transactions__Table .Transactions__Table--Date > div > span {
  font-size: 16px;
  color: #878787;
  font-weight: 600;
}
.Transactions__Table .Transactions__Table--Description {
  padding-right: 80px;
}
.Transactions__Table .Transactions__Table--Description h4 {
  margin-bottom: 8px;
  color: #000;
  font-size: 18px;
}
.Transactions__Table .Transactions__Table--Description p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #878787;
}
.Transactions td {
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #9F9F9F;
}
.Transactions__Empty {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}
.Transactions__Empty h3 {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
}
.Transactions__Empty p {
  font-size: 14px;
  margin-bottom: 30px;
  color: #9F9F9F;
}
.Transactions__Empty a {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  padding: 18px 40px;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 1240px) {
  .Transactions {
    padding-left: 15px;
    padding-right: 15px;
  }
  .Transactions .Profile__Page {
    padding-left: 15px;
  }
  .Transactions__Wrapper {
    padding: 30px 15px 15px;
  }
}
@media (max-width: 768px) {
  .Transactions {
    padding-top: 30px;
    padding-bottom: 250px;
  }
  .Transactions .Profile__Page {
    padding-left: 0;
  }
  .Transactions__Wrapper {
    padding: 30px 15px 15px;
  }
  .Transactions__Table {
    min-width: 768px;
  }
  .Transactions__Table__Wrapper {
    overflow-x: scroll;
  }
}
.Profile__Api__Empty {
  margin-top: 70px;
  margin-bottom: 100px;
  text-align: center;
}
.Profile__Api__Empty h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.Profile__Api__Empty p {
  font-size: 24px;
  margin-bottom: 15px;
}
.Profile__Api__Faq li {
  margin-bottom: 15px;
  line-height: 26px;
}
.Profile__Api__Faq a {
  color: #BE35CA;
  text-decoration: none;
}
.Profile__Api__Faq span {
  display: inline-block;
  line-height: 15px;
  background-color: #f4f4f4;
  padding: 5px;
  font-family: monospace;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
}
.Profile__Api__Error {
  margin-bottom: 30px;
  background-color: rgba(255, 0, 0, 0.15);
  border: 1px solid #ff0000;
  padding-left: 15px;
  border-radius: 4px;
  color: #ff0000;
}
.Profile__Api__Error ul {
  list-style: none;
  padding: 0;
}
.Profile__Api__Error li {
  margin: 5px 0;
}
.Profile__Api__Token {
  background-color: #f2f2f2; /* Background color for the container */
  border: 1px solid #ccc; /* Border around the container */
  padding: 20px; /* Padding for spacing */
  margin: 15px 0; /* Margin to separate it from other elements */
  border-radius: 4px; /* Rounded corners for better appearance */
}
.Profile__Api__Token__Data {
  display: flex;
  margin-bottom: 20px; /* Margin below the header */
}
.Profile__Api__Token__Data button {
  margin-left: 15px;
  padding: 4px 10px; /* Padding for the button */
  border: none; /* Remove button border */
  border-radius: 4px; /* Rounded corners for the button */
  cursor: pointer; /* Add pointer cursor on hover */
  font-size: 14px;
  background: #f44336;
  color: #fff;
}
.Profile__Api__Token h2 {
  font-size: 1.3rem; /* Header font size */
  word-break: break-all;
}
.Profile__Api__Token .Profile__Api__Webhook input {
  width: 100%; /* Take up the full width of the container */
  padding: 8px 15px; /* Padding for input elements */
  margin: 8px 0; /* Margin between input elements */
  border: 1px solid #ccc; /* Border for input elements */
  border-radius: 4px; /* Rounded corners for input elements */
  font-size: 16px;
}
.Profile__Api__Token .Profile__Api__Webhook button {
  background-color: #BE35CA; /* Button background color */
  color: #fff; /* Button text color */
  padding: 7px 16px; /* Padding for the button */
  border: none; /* Remove button border */
  border-radius: 4px; /* Rounded corners for the button */
  cursor: pointer; /* Add pointer cursor on hover */
  font-size: 16px;
}

.api-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 15px 100px;
}
.api-container h1 {
  margin-bottom: 20px;
}
.api-container .api-routes {
  padding-top: 50px;
  padding-bottom: 50px;
}
.api-container .api-route {
  flex: 1;
  display: flex;
  flex-direction: row;
  margin-left: -15px;
  margin-right: -15px;
  background-color: rgba(0, 0, 0, 0.0392156863);
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 18px;
  margin-bottom: 70px;
  overflow: hidden;
}
.api-container .api-route .api-route-text {
  width: 50%;
  flex: 0 0 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.api-container .api-route .api-route-text h2 {
  font-size: 20px;
  margin-bottom: 25px;
}
.api-container .api-route .api-route-text h2 span {
  display: inline-block;
  margin-right: 15px;
  color: #BE35CA;
  font-weight: bold;
}
.api-container .api-route .api-route-text span {
  font-weight: bold;
  display: inline-block;
  line-height: 12px;
  background-color: #f4f4f4;
  padding: 5px;
  font-family: monospace;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
}
.api-container .api-route .api-route-text a {
  color: #BE35CA;
  text-decoration: none;
}
.api-container .api-route .api-route-text a:hover {
  text-decoration: underline;
}
.api-container .api-route .api-route-text ul {
  font-size: 16px;
  line-height: 28px;
}
.api-container .api-route .api-route-text ul li {
  margin-bottom: 12px;
}
.api-container .api-route .api-route-text img {
  max-width: 150px;
  text-align: left;
  display: block;
  margin-top: 15px;
}
.api-container .api-route .api-route-code {
  width: 50%;
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
}
.api-container .api-route .api-route-code h3 {
  margin-bottom: 15px;
}
.api-container .api-route .api-route-code .method-example {
  margin-bottom: 50px;
}
.api-container .api-route .api-route-code .api-route-code-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.api-container .api-route .api-route-code .api-route-code-content .api-route-code-dropdown {
  position: relative;
  display: flex;
  gap: 10px;
}
.api-container .api-route .api-route-code .api-route-code-content .api-route-code-dropdown .api-route-code-dropdown-item {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.api-container .api-route .api-route-code .api-route-code-content .api-route-code-dropdown .api-route-code-dropdown-item:hover {
  background-color: #BE35CA;
  color: #fff;
}
.api-container .api-route .api-route-code .api-route-code-content .api-route-code-copy img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.api-container .api-route .api-route-code .method-example pre {
  margin: 0;
  padding: 0;
}
.api-container .api-route .api-route-code .method-example pre code {
  font-family: monospace;
}

@media (max-width: 768px) {
  .api-route .api-route-text {
    padding: 10px;
  }
  .api-route .api-route-code {
    padding: 10px;
  }
}
.Upload__Title {
  margin-bottom: 48px;
}
.Upload__Title h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 53px;
}
.Upload__Title p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: rgba(24, 4, 50, 0.5);
  margin-top: 8px;
}
.Upload__Title p a {
  font-weight: 500;
  text-decoration: none;
  color: #BE35CA;
}

.UploadDone {
  padding-top: 110px;
  padding-bottom: 100px;
}
.UploadDone__Wrapper {
  width: 830px;
  position: relative;
  margin: 48px auto auto;
}
.UploadDone__Image {
  position: absolute;
  top: 90px;
  left: 30px;
  width: 793px;
  height: 590px;
}
.UploadDone__Image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.UploadDone__Text {
  font-size: 26px;
  color: #FFFFFF;
  margin-top: -100px;
  margin-left: 20px;
  text-align: center;
}

@media (max-width: 1240px) {
  .UploadDone {
    padding-left: 15px;
    padding-right: 15px;
  }
  .UploadDone__Wrapper {
    width: calc(100% - 30px);
    height: calc(85vw - 30px);
  }
  .UploadDone__Background {
    height: calc(85vw - 30px);
  }
  .UploadDone__Background img {
    width: 100%;
    height: 100%;
  }
  .UploadDone__Image {
    width: 93%;
    left: 3.6%;
    top: 11%;
    height: calc(73vw - 40px);
  }
  .UploadDone__Text {
    color: black;
    margin-top: 15px;
    font-size: 16px;
  }
}
#input-file-upload {
  display: none;
}

#drag-file-element {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.UploadDragAndDrop {
  display: flex;
  align-content: center;
  align-items: center;
  text-align: center;
  max-width: 448px;
  flex: 0 0 448px;
}
.UploadDragAndDrop__Preview {
  width: 100%;
  height: 100%;
  padding: 36px;
  border: 1px dashed rgba(190, 53, 202, 0.29);
}
.UploadDragAndDrop__Preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.UploadDragAndDrop__Area {
  padding: 145px 36px;
  background: #F8F8FF;
  border: 1px dashed rgba(190, 53, 202, 0.29);
  font-family: "Mulish", sans-serif;
  transition: 0.3s;
}
.UploadDragAndDrop__Area._active {
  background: rgba(190, 53, 202, 0.05);
}
.UploadDragAndDrop__Area h5 {
  margin-top: 25px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0F0F0F;
  margin-bottom: 0;
}
.UploadDragAndDrop__Area h5 span {
  color: #BE35CA;
  text-decoration: underline;
  cursor: pointer;
}
.UploadDragAndDrop__Area p {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #676767;
  margin-top: 10px;
  white-space: nowrap;
}

@media (max-width: 550px) {
  .UploadDragAndDrop {
    flex: auto;
  }
  .UploadDragAndDrop__Area {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .UploadDragAndDrop__Area p {
    white-space: normal;
  }
}
.UploadPreview {
  padding-top: 110px;
  display: none;
}
.UploadPreview._active {
  display: block;
}
.UploadPreview__Wrapper {
  width: 830px;
  position: relative;
  margin: 48px auto auto;
}
.UploadPreview__Image {
  position: absolute;
  top: 90px;
  left: 30px;
  width: 793px;
  height: 590px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.UploadPreview__Image img {
  max-height: 100%;
  max-width: 100%;
  width: initial;
  height: initial;
}
.UploadPreview__Brushes {
  position: absolute;
  width: 46px;
  top: 0;
  right: -75px;
}
.UploadPreview__Brushes__Icon {
  cursor: pointer;
  width: 46px;
  height: 46px;
  margin-bottom: 15px;
}
.UploadPreview__Brushes__Icon img {
  width: 46px;
  height: 46px;
}
.UploadPreview__Brushes__Eraser img:nth-child(2) {
  display: none;
}
.UploadPreview__Brushes__Eraser._active img:nth-child(1) {
  display: none;
}
.UploadPreview__Brushes__Eraser._active img:nth-child(2) {
  display: block;
}
.UploadPreview__Brush {
  width: 36px;
  height: 36px;
  border: 2px solid #2E0032;
  border-radius: 50%;
  margin: 15px auto auto;
  position: relative;
  cursor: pointer;
}
.UploadPreview__Brush:before {
  content: "";
  display: block;
  position: absolute;
  background: #2E0032;
  border-radius: 50%;
}
.UploadPreview__Brush._active {
  border-color: #FF79B2;
}
.UploadPreview__Brush._active:before {
  background: #FF79B2;
}
.UploadPreview__Brush--Small:before {
  left: 13px;
  top: 13px;
  width: 6px;
  height: 6px;
}
.UploadPreview__Brush--Medium:before {
  left: 9px;
  top: 9px;
  width: 14px;
  height: 14px;
}
.UploadPreview__Brush--Large:before {
  left: 5px;
  top: 5px;
  width: 22px;
  height: 22px;
}
.UploadPreview__Draw {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0.66;
  overflow: hidden;
  touch-action: none;
}
.UploadPreview__Draw__Point {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFF;
  z-index: 2;
}
.UploadPreview__Point {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: yellow;
  margin-left: -25px;
  margin-top: -25px;
  z-index: 33;
}

@media (max-width: 1240px) {
  .UploadPreview {
    padding-left: 15px;
    padding-right: 15px;
  }
  .UploadPreview__Wrapper {
    width: calc(100% - 30px);
  }
  .UploadPreview__Background {
    height: calc(85vw - 30px);
  }
  .UploadPreview__Background img {
    width: 100%;
    height: 100%;
  }
  .UploadPreview__Image {
    width: 93%;
    left: 3.6%;
    top: 11%;
    height: calc(73vw - 40px);
  }
  .UploadPreview__Brushes {
    position: relative;
    right: auto;
    top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .UploadPreview__Brushes > div {
    margin: 15px;
  }
  .UploadPreview__Point {
    display: none;
  }
}
.UploadProcessing {
  padding-top: 100px;
  padding-bottom: 110px;
}
.UploadProcessing__Wrapper {
  background: #FFFFFF;
  border-radius: 16px;
  position: relative;
  min-height: 200px;
  padding: 24px 48px 0;
  overflow: hidden;
  box-shadow: 0 4px 10px 10px rgba(0, 0, 0, 0.04), 0 4px 2px 2px rgba(0, 0, 0, 0.05);
}
.UploadProcessing__Background {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.UploadProcessing__Background div {
  height: 100%;
  margin-left: -100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(190, 53, 202, 0.1607843137);
  z-index: 0;
}
.UploadProcessing__Background img {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 200px;
}
.UploadProcessing__Content {
  position: relative;
  z-index: 1;
  font-family: "Work Sans", sans-serif;
}
.UploadProcessing__Content h3 {
  font-size: 32px;
  line-height: 120%;
  font-weight: 500;
}
.UploadProcessing__Content__Time {
  display: flex;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  color: #4D4648;
  font-size: 24px;
  margin-top: 10px;
}
.UploadProcessing__Content__Time div {
  margin-right: 15px;
  margin-left: 15px;
  min-width: 80px;
}
.UploadProcessing__Content__Time > span {
  content: "";
  display: block;
  width: 4px;
  border-radius: 50%;
  height: 4px;
  background: #4D4648;
}
.UploadProcessing__Content a {
  color: #FF79B2;
}
.UploadProcessing__Bar {
  border-radius: 64px;
  height: 6px;
  background: #FF79B2;
  margin-top: 25px;
  width: 0;
}

@media (max-width: 1240px) {
  .UploadProcessing {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 992px) {
  .UploadProcessing__Wrapper {
    padding: 20px;
  }
  .UploadProcessing__Content h3 {
    font-size: 32px;
  }
  .UploadProcessing__Content__Time {
    font-size: 20px;
  }
}
.UploadStages {
  padding-right: 0;
  width: 100%;
  padding-left: 160px;
  padding-bottom: 30px;
}
.UploadStages__Item {
  display: flex;
  cursor: pointer;
  position: relative;
}
.UploadStages__Item__Number {
  background: rgba(190, 53, 202, 0.5);
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-right: 17px;
  position: relative;
}
.UploadStages__Item {
  margin-bottom: 82px;
}
.UploadStages__Item:not(:last-child) .UploadStages__Item__Number::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #BE35CA;
  position: absolute;
  top: 69px;
  left: 27px;
}
.UploadStages__Item__Content {
  text-align: left;
}
.UploadStages__Item__Content h4 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}
.UploadStages__Item__Content h4 span {
  color: #BE35CA;
}
.UploadStages__Item__Content p {
  font-size: 18px;
  line-height: 24px;
  color: rgba(24, 4, 50, 0.5);
  position: absolute;
}

@media (max-width: 1240px) {
  .UploadStages {
    padding-left: 15px;
  }
}
@media (max-width: 992px) {
  .UploadStages {
    padding-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 550px) {
  .UploadStages__Item h4 {
    font-size: 18px;
  }
  .UploadStages__Item p {
    font-size: 14px;
    line-height: 18px;
  }
}
.UploadDragAndDrop label {
  width: 100%;
}

.UploadPage {
  display: none;
  padding-top: 110px;
}
.UploadPage._active {
  display: block;
}
.UploadPage__Instruction {
  padding-top: 80px;
  padding-bottom: 50px;
  width: 800px;
  margin: auto;
  max-width: 100%;
}
.UploadPage__Instruction img {
  max-width: 100%;
  width: 800px;
}
.UploadPage__ReqsLink {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  color: rgba(24, 4, 50, 0.5019607843);
  cursor: pointer;
}
.UploadPage__ReqsLink a {
  color: #FF79B2;
  text-decoration: underline;
}
.UploadPage__Error {
  font-size: 14px;
  color: red;
  display: block;
  margin-top: 10px;
  text-align: center;
}
.UploadPage__Error a {
  color: red;
  text-decoration: underline;
  font-weight: 700;
}
.UploadPage__Title h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-family: "Mulish", sans-serif;
}
.UploadPage__Wrapper {
  background: #FFFFFF;
  padding: 41px 40px 20px 48px;
  box-shadow: 0 4px 10px 10px rgba(0, 0, 0, 0.04), 0 4px 2px 2px rgba(0, 0, 0, 0.05);
  border-radius: 26px;
}
.UploadPage__Row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.UploadPage__Button {
  display: block;
  text-decoration: none;
  margin: 15px auto auto;
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  color: #FFFFFF;
  background: #FF79B2;
  width: 445px;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 18px;
  font-weight: bold;
  font-size: 18px;
}
.UploadPage__Button--Clear {
  margin-top: 22px;
  margin-bottom: 15px;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  color: #FF79B2;
  font-size: 18px;
}

@media (max-width: 1240px) {
  .UploadPage {
    padding-left: 15px;
    padding-right: 15px;
  }
  .UploadPage__Wrapper {
    padding: 30px 15px 20px 30px;
  }
}
@media (max-width: 992px) {
  .UploadPage__Row {
    flex-direction: column;
  }
}
@media (max-width: 550px) {
  .UploadPage__Wrapper {
    padding-left: 15px;
  }
  .UploadPage__Button {
    width: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.Payment {
  max-width: 1200px;
  margin: auto;
  padding: 110px 15px;
  min-height: calc(100vh - 220px);
}
.Payment h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.Payment .pricing__item__wrapper {
  width: 100%;
  flex: 0 0 100%;
}
.Payment__Errors {
  margin-top: 15px;
  margin-bottom: 15px;
  color: red;
}
.Payment__Title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
.Payment__Membership {
  width: 33.3%;
  flex: 0 0 33.3%;
}
.Payment__Text {
  width: 66.6%;
  flex: 0 0 66.6%;
  padding-left: 15px;
  padding-right: 15px;
}
.Payment__Content {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}
.Payment__Content h4 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 600;
  vertical-align: center;
}
.Payment__Content h4 a {
  display: inline-block;
  color: #FF79B2;
  font-size: 16px;
  margin-left: 15px;
  font-weight: 500;
  text-decoration: none;
  vertical-align: center;
}
.Payment__Content p {
  font-size: 16px;
  line-height: 24px;
}
.Payment__Content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}
.Payment__Content ul {
  padding-left: 0;
}
.Payment__Content ul li {
  background: url("/images/price-list.svg") no-repeat left top;
  padding: 0 10px 0 33px;
  list-style: none;
  margin: 0 0 13px;
  vertical-align: top;
  font-weight: 500;
  font-size: 15px;
}
.Payment__Price {
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 30px;
}
.Payment__Warning {
  color: #000;
  font-size: 14px;
  margin-bottom: 15px;
}
.Payment__Buttons {
  display: block;
}
.Payment__Button {
  cursor: pointer;
  background: #FF79B2;
  text-align: center;
  color: #FFFFFF;
  border-radius: 30px;
  border: none;
  outline: none;
  margin-right: 15px;
  padding: 15px 30px;
  margin-top: 15px;
  display: inline-block;
  text-decoration: none;
}

.Payment__Filter__Dropdown {
  position: absolute;
  z-index: 61;
  width: 350px;
  max-width: 100%;
  display: none;
  margin-top: -20px;
}
.Payment__Filter__Dropdown._active {
  display: block;
}
.Payment__Filter__Dropdown div {
  background: #FFF;
  padding: 10px 15px;
  cursor: pointer;
}

.Payment__Filter__Title {
  cursor: pointer;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 350px;
  max-width: calc(100% - 60px);
  background: white;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  border: 2px solid #FF79B2;
}

.Payment__Filter__Title img {
  margin-left: 15px;
}

@media (max-width: 1200px) {
  .Payment {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .Payment__Buttons {
    display: block;
  }
  .Payment__Button {
    margin-top: 15px;
    margin-right: 0;
    display: block;
  }
}
.Payment__Button--world {
  display: none;
}

.Payment__Button--ua {
  display: none;
}

.Payment__Button--ru {
  display: none;
}

.select2-container .select2-selection--single {
  height: 46px !important;
}

.select2-container * {
  outline: none !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #FF79B2 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  margin-top: 7px !important;
  color: #000 !important;
  font-size: 16px;
  font-weight: 500;
}

.Payment__Filter {
  margin-bottom: 15px;
}

.Payment__Filter label {
  display: block;
  font-weight: 500;
  margin-top: 30px;
  color: #000;
  margin-bottom: 10px;
}

@media (max-width: 1230px) {
  .Payment {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .Payment__Content {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
  }
  .Payment__Text, .Payment__Membership {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    flex: 0 0 100%;
  }
  .Payment .pricing__item__wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .Payment__Text {
    display: flex;
    flex-direction: column;
  }
  .Payment__Explore {
    margin-top: 30px;
    order: 2;
  }
  .Payment__Filter {
    margin-bottom: 0;
  }
  .Payment__Filter label {
    margin-top: 0;
  }
  .Payment__Target {
    order: 1;
  }
}
.Page {
  width: 60%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 60px;
  min-height: calc(100vh - 220px);
}
.Page h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}
.Page li {
  white-space: normal !important;
}
.Page li p {
  margin-bottom: 0;
}
.Page__Affiliate {
  max-width: 300px;
  margin: 50px auto 80px;
  font-weight: normal;
  font-style: normal;
}
.Page__InputGroup {
  margin-bottom: 15px;
}
.Page__InputGroup label {
  font-size: 18px;
  color: #FFD5EF;
  margin-bottom: 5px;
  display: block;
}
.Page__InputGroup input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  max-width: 300px;
}
.Page__InputGroup input:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.Page__InputGroup button {
  border: 2px solid #BE35CA;
  background: #BE35CA;
  margin-top: 10px;
  cursor: pointer;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  max-width: 300px;
}

.custom-alert, .custom-alert-success, .custom-alert-danger {
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}
.custom-alert ul, .custom-alert-success ul, .custom-alert-danger ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}
.custom-alert ul li, .custom-alert-success ul li, .custom-alert-danger ul li {
  list-style: none;
}

/* Custom alert danger styles */
.custom-alert-danger {
  border-color: #dc3545;
  color: #721c24;
  background-color: #f8d7da;
}
.custom-alert-danger ul li {
  color: #721c24;
}

.custom-alert-success {
  border-color: #28a745;
  color: #155724;
  background-color: #d4edda;
}
.custom-alert-success ul li {
  color: #155724;
}

@media (max-width: 1200px) {
  .Page {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.Examples {
  min-height: calc(100vh - 221px);
  padding-top: 100px;
  padding-bottom: 100px;
}
.Examples__Header {
  text-align: center;
  margin-bottom: 30px;
}
.Examples__Header h1 {
  font-weight: 800;
  font-size: 72px;
  margin-bottom: 0px;
}
.Examples__Header p {
  text-align: center;
  font-size: 16px;
  margin: auto;
}
.Examples__Row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-left: -15px;
  margin-right: -15px;
}
.Examples__Col {
  max-width: 25%;
  flex: 0 0 25%;
  padding-left: 15px;
  padding-right: 15px;
}
.Examples__Item {
  cursor: pointer;
  margin-bottom: 30px;
}
.Examples__Item__Wrapper {
  position: relative;
}
.Examples__Item__Before, .Examples__Item__After {
  width: 100%;
  top: 0;
  left: 0;
  transition: 0.3s;
  position: absolute;
}
.Examples__Item__Before img, .Examples__Item__After img {
  width: 100%;
  object-fit: cover;
}
.Examples__Item__Before {
  position: relative;
  z-index: 3;
}
.Examples__Item__After {
  opacity: 0;
  z-index: 4;
}
.Examples__Item:hover .Examples__Item__After {
  opacity: 1;
}
.Examples__Footer {
  margin-top: 30px;
}
.Examples__Footer p {
  text-align: center;
}

@media (max-width: 1200px) {
  .Examples {
    padding: 50px 15px;
  }
  .Examples h1 {
    font-size: 36px;
  }
  .Examples__Col {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

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