@charset "UTF-8";
:root {
  --primary-color: #C53523;
  --secondary-color: #050505;
  --dark-bg-color: #000000;
  --light-bg-color: #F4F5F7;
  --text-color: #FFFFFF;
  --text-gray-color: #939393;
  --border-color: #E2E2E2;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-md: 18px;
  --font-size-xl: 24px;
  --line-height-base: 120%;
  --radius-base: 12px;
  --bs-success-color: #0CA55E;
  --bs-error-color: #C53523;
  --bs-processing-color: #00A2FF;
}

.tag {
  display: flex;
}
.tag.tag-banner {
  width: 12px;
  height: 12px;
}
.tag.tag-tabs {
  width: 20px;
  height: 20px;
}

.tag-price {
  background: url(../img/tags/price-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-date {
  background: url(../img/tags/calendar-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-note {
  background: url(../img/tags/note-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-name {
  background: url(../img/tags/fluent-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-entity {
  background: url(../img/tags/business-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-inn {
  background: url(../img/tags/inn-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-scan {
  background: url(../img/tags/scanne-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-mail {
  background: url(../img/tags/package-black-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-share {
  background: url(../img/tags/share-black-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-alert {
  width: 22px;
  height: 22px;
  background: url(../img/tags/alert-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-exit {
  background: url(../img/tags/logout-tag.svg) no-repeat center;
  background-size: contain;
}

.tag-edit {
  background: url(../img/tags/edit-tag.svg) no-repeat center;
  background-size: contain;
}

:root {
  --primary-color: #C53523;
  --secondary-color: #050505;
  --dark-bg-color: #000000;
  --light-bg-color: #F4F5F7;
  --text-color: #FFFFFF;
  --text-gray-color: #939393;
  --border-color: #E2E2E2;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-md: 18px;
  --font-size-xl: 24px;
  --line-height-base: 120%;
  --radius-base: 12px;
  --bs-success-color: #0CA55E;
  --bs-error-color: #C53523;
  --bs-processing-color: #00A2FF;
}

body {
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
}
body strong {
  font-weight: 500;
}

.container {
  max-width: 1264px;
}

:root {
  --primary-color: #C53523;
  --secondary-color: #050505;
  --dark-bg-color: #000000;
  --light-bg-color: #F4F5F7;
  --text-color: #FFFFFF;
  --text-gray-color: #939393;
  --border-color: #E2E2E2;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-md: 18px;
  --font-size-xl: 24px;
  --line-height-base: 120%;
  --radius-base: 12px;
  --bs-success-color: #0CA55E;
  --bs-error-color: #C53523;
  --bs-processing-color: #00A2FF;
}

.btn {
  padding: 8px;
  height: 50px;
  border-radius: var(--radius-base);
  font-weight: 600;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-base);
  text-align: center;
}
@media (min-width: 768px) {
  .btn {
    height: 60px;
  }
}
.btn:disabled, .btn.disabled {
  background: #E5E5E5 !important;
  border-color: #E5E5E5 !important;
  color: #BFBFBF !important;
  pointer-events: none;
}
.btn:active {
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}
.btn.btn-small {
  height: 48px;
  font-size: var(--font-size-lg);
  font-weight: 400;
}
.btn.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #F9F9F9;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
  box-shadow: none;
  background: #AC2818;
  border-color: #AC2818;
}
.btn.btn-outline-light {
  height: 48px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(226, 226, 226, 0.7);
  color: var(--text-color);
  border-radius: 12px;
}
.btn.btn-outline-light:hover {
  background: #4B4B4B;
  border-color: #4B4B4B;
  color: var(--text-color);
}
.btn.btn-cancel {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--primary-color);
  padding: 0;
  height: auto;
  margin-top: 24px;
  border: none;
  outline: none;
  box-shadow: none;
}
.btn.btn-cancel:active, .btn.btn-cancel:focus {
  border: none;
  outline: none;
  box-shadow: none;
  color: #AC2818;
}
.btn.btn-cancel:hover {
  color: #AC2818;
}
@media (min-width: 768px) {
  .btn.btn-cancel {
    font-size: 16px;
    margin-top: 38px;
  }
}

:root {
  --primary-color: #C53523;
  --secondary-color: #050505;
  --dark-bg-color: #000000;
  --light-bg-color: #F4F5F7;
  --text-color: #FFFFFF;
  --text-gray-color: #939393;
  --border-color: #E2E2E2;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-md: 18px;
  --font-size-xl: 24px;
  --line-height-base: 120%;
  --radius-base: 12px;
  --bs-success-color: #0CA55E;
  --bs-error-color: #C53523;
  --bs-processing-color: #00A2FF;
}

.form-group {
  margin-bottom: 12px;
  position: relative;
}
.form-group .form-label {
  font-size: var(--font-size-base);
  line-height: 24px;
  color: #000;
  margin-bottom: 4px;
  width: 100%;
}
.form-group .form-label span {
  color: #FF5959;
}
.form-group textarea {
  height: auto !important;
}
.form-group .form-control {
  padding: 8px 18px;
  height: 56px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  line-height: 24px;
  color: #000;
}
.form-group .form-control:focus {
  box-shadow: 0 0 0 3px #ECECEC;
  outline: none;
}
.form-group .form-control::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-copy {
  position: relative;
}
.form-copy:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: url(../img/tags/copy.svg) no-repeat center;
  background-size: contain;
}
.form-copy .form-control {
  cursor: pointer;
  padding: 8px 36px 8px 18px;
}

.form-login .btn {
  width: 100%;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .form-answer .btn {
    width: 200px;
  }
}

.error-message {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #FF5959;
  position: absolute;
  left: 0;
}

:root {
  --primary-color: #C53523;
  --secondary-color: #050505;
  --dark-bg-color: #000000;
  --light-bg-color: #F4F5F7;
  --text-color: #FFFFFF;
  --text-gray-color: #939393;
  --border-color: #E2E2E2;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-md: 18px;
  --font-size-xl: 24px;
  --line-height-base: 120%;
  --radius-base: 12px;
  --bs-success-color: #0CA55E;
  --bs-error-color: #C53523;
  --bs-processing-color: #00A2FF;
}

.main {
  background: url(../img/backgrounds/upd_login.png) no-repeat center right fixed;
  background-size: cover;
  height: 100%;
}

.main-doc {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-color);
  text-align: center;
}

.main-title {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: var(--dark-bg-color);
  margin-bottom: 16px;
}
.main-title._big {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
}
@media (min-width: 768px) {
  .main-title._big {
    font-size: 32px;
  }
}

.main-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.main-login .upd-wrapper {
  margin: auto;
  max-width: 1004px;
}
@media (min-width: 768px) {
  .main-login .upd-wrapper {
    background: var(--light-bg-color);
  }
}
.main-login .main-logo {
  margin: 0 auto 27px;
  display: block;
}

.main-page main {
  background: #FDFFFE;
  border-radius: 16px;
}
.main-page .upd-wrapper {
  padding: 18px 0;
}
@media (min-width: 768px) {
  .main-page .upd-wrapper {
    padding: 18px;
  }
}

.upd-wrapper {
  border-radius: 30px;
  padding: 18px;
}
@media (min-width: 768px) {
  .upd-wrapper {
    background: var(--text-color);
  }
}

.main-header {
  width: 100%;
  padding: 18px 0;
}
@media (min-width: 768px) {
  .main-header {
    padding: 24px 0 50px;
  }
}

.main-footer {
  width: 100%;
  padding: 24px 0;
}

.login-form_wrapper {
  height: 100%;
  background: #FDFFFE;
  border-radius: 16px;
  padding: 30px 16px 18px 16px;
}
@media (min-width: 768px) {
  .login-form_wrapper {
    border-radius: 20px;
    padding: 48px 30px 32px 30px;
  }
}

.modal .modal-content {
  border-radius: 16px;
}
.modal .modal-header, .modal .modal-body, .modal .modal-footer {
  border: none;
}

:root {
  --primary-color: #C53523;
  --secondary-color: #050505;
  --dark-bg-color: #000000;
  --light-bg-color: #F4F5F7;
  --text-color: #FFFFFF;
  --text-gray-color: #939393;
  --border-color: #E2E2E2;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-md: 18px;
  --font-size-xl: 24px;
  --line-height-base: 120%;
  --radius-base: 12px;
  --bs-success-color: #0CA55E;
  --bs-error-color: #C53523;
  --bs-processing-color: #00A2FF;
}

.box-number_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .box-number_wrapper {
    flex-wrap: nowrap;
    margin-bottom: 36px;
  }
}

.box-number {
  display: block;
  padding: 12px 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-base);
  position: relative;
  overflow: hidden;
  width: 100%;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
}
.box-number:not(:last-child) {
  margin-bottom: 6px;
}
@media (min-width: 576px) {
  .box-number:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .box-number {
    width: calc((100% - 16px) / 3);
    margin-bottom: 0;
  }
}
.box-number:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 37px;
  height: 28px;
}

.box-number:nth-child(1) {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-color);
}
.box-number:nth-child(1):before {
  background: url(../img/numbers/1.svg) no-repeat center right;
  background-size: contain;
}

.box-number:nth-child(2) {
  color: var(--secondary-color);
}
.box-number:nth-child(2):before {
  background: url(../img/numbers/2.svg) no-repeat center right;
  background-size: contain;
}

.box-number:nth-child(3) {
  background-color: var(--dark-bg-color);
  border-color: var(--dark-bg-color);
  color: var(--text-color);
}
.box-number:nth-child(3):before {
  background: url(../img/numbers/3.svg) no-repeat center right;
  background-size: contain;
}

.box-image_wrapper {
  display: flex;
  flex-direction: column;
  background: var(--text-color);
  border-radius: 16px;
  padding: 1rem;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .box-image_wrapper {
    border-radius: 0;
    padding: 0;
    margin: 0;
    background: none;
  }
}

.box-image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  color: var(--text-color);
}
@media (min-width: 768px) {
  .box-image {
    border-radius: 20px;
    padding: 24px 24px 32px;
  }
}

.box-image_img {
  margin-bottom: 16px;
  width: 36px;
  height: 36px;
}
@media (min-width: 768px) {
  .box-image_img {
    width: 48px;
    height: 48px;
  }
}

.box-image_title {
  font-weight: 600;
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .box-image_title {
    font-size: var(--font-size-xl);
  }
}

.box-image_text {
  font-weight: 400;
  font-size: var(--font-size-base);
  line-height: 26px;
}
@media (min-width: 768px) {
  .box-image_text {
    font-size: var(--font-size-lg);
  }
}

.box-image:not(:last-child) {
  margin-bottom: 16px;
}

.box-image:nth-child(1) {
  background: url(../img/backgrounds/box-image-1.png) no-repeat center;
  background-size: cover;
}

.box-image:nth-child(2) {
  background: url(../img/backgrounds/box-image-2.png) no-repeat center;
  background-size: cover;
}

.box-image:nth-child(3) {
  background: url(../img/backgrounds/box-image-3.png) no-repeat center;
  background-size: cover;
}

.upd-request-list {
  margin-top: 40px;
  padding: 18px 16px;
  background: var(--text-color);
  box-shadow: 1px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  counter-reset: box-counter;
}
@media (min-width: 768px) {
  .upd-request-list {
    padding: 36px;
    border-radius: 25px;
  }
}
.upd-request-list .upd-banner-list {
  justify-content: start;
}

.upd-request-title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: var(--dark-bg-color);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .upd-request-title {
    font-size: 20px;
  }
}

.upd-request-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  background: var(--light-bg-color);
  border-radius: 16px;
  position: relative;
  counter-increment: box-counter;
}
@media (min-width: 768px) {
  .upd-request-item {
    padding: 30px 36px 36px;
    border-radius: 25px;
  }
}
.upd-request-item:after {
  content: "№" counter(box-counter);
  position: absolute;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  text-align: right;
  color: rgba(0, 0, 0, 0.1);
  top: 16px;
  right: 16px;
}
@media (min-width: 768px) {
  .upd-request-item:after {
    font-size: 24px;
    line-height: 24px;
    top: 30px;
    right: 36px;
  }
}
.upd-request-item:not(:last-child) {
  margin-bottom: 10px;
}
.upd-request-item .upd-banner-list {
  margin-top: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .upd-request-item .upd-banner-list {
    margin-top: 36px;
  }
}
.upd-request-item .upd-banner-item:not(:last-child) {
  margin-right: 60px;
}
.upd-request-item .upd-banner-item-title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.7);
}
@media (min-width: 768px) {
  .upd-request-item .upd-banner-item-title {
    font-size: 18px;
  }
}

.upd-request-item-content {
  display: inline-flex;
  align-items: start;
  flex-direction: column;
}
@media (min-width: 768px) {
  .upd-request-item-content {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
  }
}
.upd-request-item-content .upd-request-item-title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: var(--dark-bg-color);
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .upd-request-item-content .upd-request-item-title {
    font-size: 24px;
    margin-bottom: 0;
  }
}

:root {
  --primary-color: #C53523;
  --secondary-color: #050505;
  --dark-bg-color: #000000;
  --light-bg-color: #F4F5F7;
  --text-color: #FFFFFF;
  --text-gray-color: #939393;
  --border-color: #E2E2E2;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-md: 18px;
  --font-size-xl: 24px;
  --line-height-base: 120%;
  --radius-base: 12px;
  --bs-success-color: #0CA55E;
  --bs-error-color: #C53523;
  --bs-processing-color: #00A2FF;
}

.upd-banner {
  background: var(--dark-bg-color);
  color: var(--text-color);
  padding: 18px;
  border-radius: 16px;
  position: relative;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .upd-banner {
    padding: 30px 36px 36px;
    border-radius: 25px;
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .upd-banner:before {
    content: "";
    width: 144px;
    height: 155px;
    position: absolute;
    top: -20%;
    right: 0;
    background: url(../img/icons/doc.png) no-repeat center;
    background-size: contain;
  }
}

.upd-banner-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: start;
  justify-content: start;
}
@media (min-width: 768px) {
  .upd-banner-list {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.upd-banner-list .upd-banner-item:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .upd-banner-list .upd-banner-item:not(:last-child) {
    margin-bottom: 0;
  }
}

.upd-banner-subtitle {
  font-weight: 500;
  font-size: var(--font-size-base);
  line-height: 120%;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .upd-banner-subtitle {
    margin-bottom: 8px;
    font-size: var(--font-size-lg);
  }
}

.upd-banner-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
}
@media (min-width: 768px) {
  .upd-banner-title {
    font-size: 32px;
  }
}

.upd-banner-content {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .upd-banner-content {
    margin-bottom: 48px;
  }
}

.upd-banner-item-content {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--text-gray-color);
  margin-bottom: 6px;
  text-decoration: none;
}
.upd-banner-item-content._blue {
  color: #00A2FF;
}

.upd-banner-block {
  padding: 16px 18px;
  background: #FFFFFF;
  border-radius: 12px;
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .upd-banner-block {
    margin-top: 36px;
  }
}

.upd-banner-form {
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .upd-banner-form {
    margin-top: 36px;
  }
}

.upd-banner-item-title {
  font-weight: 500;
  font-size: 20px;
  color: var(--text-color);
}

:root {
  --primary-color: #C53523;
  --secondary-color: #050505;
  --dark-bg-color: #000000;
  --light-bg-color: #F4F5F7;
  --text-color: #FFFFFF;
  --text-gray-color: #939393;
  --border-color: #E2E2E2;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-md: 18px;
  --font-size-xl: 24px;
  --line-height-base: 120%;
  --radius-base: 12px;
  --bs-success-color: #0CA55E;
  --bs-error-color: #C53523;
  --bs-processing-color: #00A2FF;
}

.upd-tabs {
  margin-top: 30px;
}
.upd-tabs .upd-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  border: none;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .upd-tabs .upd-tabs-nav {
    flex-wrap: nowrap;
  }
}
.upd-tabs .upd-tabs-nav .nav-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15.5px;
  border: 1px solid #E2E2E2;
  border-radius: 12px;
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .upd-tabs .upd-tabs-nav .nav-link {
    padding: 8px;
    font-size: 16px;
  }
}
.upd-tabs .upd-tabs-nav .nav-link:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .upd-tabs .upd-tabs-nav .nav-link:not(:last-child) {
    margin-bottom: 0;
    margin-right: 8px;
  }
}
.upd-tabs .upd-tabs-nav .nav-link:hover {
  border-color: var(--primary-color);
}
.upd-tabs .upd-tabs-nav .nav-link.active {
  font-weight: 600;
  background: rgba(197, 53, 35, 0.1);
  border: 1px solid rgba(197, 53, 35, 0.7);
}
.upd-tabs .tab-content {
  background: var(--light-bg-color);
  border-radius: 16px;
  padding: 16px;
}
@media (min-width: 768px) {
  .upd-tabs .tab-content {
    border-radius: 30px;
    padding: 18px;
  }
}
.upd-tabs .tab-pane-content {
  background: #FDFFFE;
  border-radius: 16px;
  padding: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .upd-tabs .tab-pane-content {
    border-radius: 20px;
    padding: 24px;
  }
}
.upd-tabs .tab-pane-title {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--dark-bg-color);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .upd-tabs .tab-pane-title {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 18px;
  }
}
.upd-tabs .tab-pane-title._small {
  font-size: var(--font-size-md);
  font-weight: 500;
}
.upd-tabs .tab-alert {
  display: flex;
  align-content: center;
  align-items: center;
  padding: 12px 14px;
  background: #EEEEEE;
  border-radius: 12px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .upd-tabs .tab-alert {
    padding: 16px 18px;
    margin-bottom: 24px;
  }
}
.upd-tabs .tab-alert.tab-alert-border {
  background: #FAEBE9;
  border: 1px solid #C53523;
  flex-direction: column;
}
.upd-tabs .tab-pane-img {
  border-radius: 16px;
}

:root {
  --primary-color: #C53523;
  --secondary-color: #050505;
  --dark-bg-color: #000000;
  --light-bg-color: #F4F5F7;
  --text-color: #FFFFFF;
  --text-gray-color: #939393;
  --border-color: #E2E2E2;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-md: 18px;
  --font-size-xl: 24px;
  --line-height-base: 120%;
  --radius-base: 12px;
  --bs-success-color: #0CA55E;
  --bs-error-color: #C53523;
  --bs-processing-color: #00A2FF;
}

.upd-status {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  padding: 6px 12px;
  background: var(--light-bg-color);
  color: var(--text-color);
  border-radius: 8px;
}
.upd-status._success {
  background: var(--bs-success-color);
}
.upd-status._cancel {
  background: var(--bs-error-color);
}
.upd-status._processing {
  background: var(--bs-processing-color);
}

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