:root {
  --blue-color: rgba(0, 139, 208, 1);
  --green-color: rgba(0, 144, 53, 1);
  --text-color: rgba(17, 31, 39, 1);
  --red-color: rgba(255, 12, 16, 1);
  --gray-color: rgba(136, 143, 147, 1);
  --font-default: "PT Sans", sans-serif;
  --font-titles: "Manrope", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: var(--text-color);
  font-family: var(--font-default);
  background-image: url("/images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  line-height: 1.3;
}

h1 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: var(--font-titles);
}

p {
  line-height: 1.3;
  margin: 20px 0px;
  padding: 0;
}
p:first-child {
  margin-top: 0px;
}
p:last-child {
  margin-bottom: 0px;
}

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

ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0 0 0 20px;
}

.dashboardContainer {
  display: flex;
  position: relative;
  width: 100%;
  max-width: calc(90vw - 100px);
  padding: 50px;
  flex-direction: column;
  background-color: white;
  border-radius: 20px;
  align-self: center;
}
.dashboardContainer a.applicationTemplates,
.dashboardContainer .applicationTemplates {
  background: none;
  border-radius: unset;
  color: var(--green-color);
  text-decoration: underline;
  padding: 2px 0px 0px 0px;
  font-weight: 400;
}
.dashboardContainer a.applicationTemplates:hover,
.dashboardContainer .applicationTemplates:hover {
  background: none;
}

.tabsNavigation {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  border-bottom: 1px solid var(--gray-color);
}
.tabsNavigation div {
  display: flex;
  position: relative;
}
.tabsNavigation .tabsNavigationContent {
  width: 100%;
  max-width: 90vw;
  padding: 0px 0px 15px 0px;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.tabsNavigation .tabsNavigationContent .tabsNavigationItem {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 35px;
  border-radius: 7px;
}
.tabsNavigation .tabsNavigationContent .tabsNavigationItem.active {
  background-color: var(--blue-color);
}
.tabsNavigation .tabsNavigationContent .tabsNavigationItem.active .tabsNavigationLink {
  color: white;
}
.tabsNavigation .tabsNavigationContent .tabsNavigationItem .tabsNavigationLink,
.tabsNavigation .tabsNavigationContent .tabsNavigationItem a.tabsNavigationLink {
  color: var(--blue-color);
  text-decoration: none;
  width: 100%;
  text-align: center;
}
.tabsNavigation .logoutButton {
  background: transparent;
  color: var(--red-color);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.contentContainer {
  width: 100%;
  max-width: 80vw;
  flex-direction: column;
  padding: 0px 0px 100px 0px;
}

.screenTitle {
  display: block;
  font-size: 55px;
  font-weight: 700;
  font-family: var(--font-titles);
  color: var(--green-color);
}
.screenTitle.blue {
  color: var(--blue-color);
}
.screenTitle h1 {
  display: inline;
}

.column {
  flex-direction: column;
}

.documentBlock {
  justify-content: space-between;
  background-color: white;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);
  padding: 17px 25px;
  width: calc(100% - 50px);
  max-width: 750px;
  gap: 35px;
}
.documentBlock .button {
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 3px 32px 5px 32px;
}

button,
.button,
a.button {
  color: white;
  text-decoration: none;
  padding: 4px 35px;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: linear-gradient(to right, rgb(11, 217, 87), rgb(24, 131, 144), rgb(52, 116, 253));
  outline: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-default);
  cursor: pointer;
  overflow: hidden;
}
button:hover,
.button:hover,
a.button:hover {
  background: linear-gradient(to left, rgb(11, 217, 87), rgb(24, 131, 144), rgb(52, 116, 253));
}

.errorsList {
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--red-color);
  font-size: 16px;
  font-weight: 400;
}

.pageContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 60vh;
  margin: 0 auto;
  padding: 150px 0px 0px 0px;
  gap: 100px;
}
.pageContainer.mainPage {
  padding: 97px 0px 0px 0px;
}
.pageContainer.mainPage .bannerBlock {
  width: 100%;
  height: 365px;
}
.pageContainer.mainPage .bannerBlock img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageContainer.mainPage .screenTitle {
  max-width: 50vw;
}
.pageContainer.mainPage .screen1 {
  gap: 50px;
}
.pageContainer.mainPage .screen1 .tabsBlock {
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.pageContainer.mainPage .screen1 .tabsBlock .tabItem {
  flex-direction: column;
  background-color: #f6f6f6;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1);
  width: calc(33% - 50px - 12.5px);
  min-width: 315px;
  padding: 35px 25px;
  border-radius: 10px;
  gap: 25px;
}
.pageContainer.mainPage .screen1 .tabsBlock .tabItem .tabTitle {
  font-family: var(--font-titles);
  font-size: 35px;
  font-weight: 600;
  color: var(--green-color);
}
.pageContainer.mainPage .screen1 .tabsBlock .tabItem .tabText {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-color);
}
.pageContainer.mainPage .screen2 {
  max-width: unset;
  padding: 0px;
}
.pageContainer.mainPage .screen2 .screenTitle {
  position: absolute;
  left: 10vw;
  top: 2vw;
  max-width: 30vw;
  z-index: 1;
}
.pageContainer.mainPage .screen2 .roadmapImage {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.pageContainer.mainPage .screen2 .roadmapImage img {
  width: 100%;
  height: 100%;
}
.pageContainer.loginPage, .pageContainer.registerPage {
  min-height: 60vh;
  align-items: center;
  justify-content: center;
}
.pageContainer.loginPage .contentContainer, .pageContainer.registerPage .contentContainer {
  align-items: center;
}
.pageContainer.loginPage .screenTitle, .pageContainer.registerPage .screenTitle {
  margin: 0px 0px 35px 0px;
}
.pageContainer.loginPage .instructionBlock, .pageContainer.registerPage .instructionBlock {
  position: absolute;
  top: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
  transform: translate(0px, calc(-100% - 10px));
}
.pageContainer.loginPage .instructionBlock .registerInstruction, .pageContainer.registerPage .instructionBlock .registerInstruction {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pageContainer.loginPage .instructionBlock .registerInstruction .icon, .pageContainer.registerPage .instructionBlock .registerInstruction .icon {
  width: 21px;
  height: 21px;
  background-image: url("/images/question_icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pageContainer.loginPage .instructionBlock .registerInstruction .text, .pageContainer.registerPage .instructionBlock .registerInstruction .text {
  color: var(--green-color);
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
}
.pageContainer.loginPage form, .pageContainer.registerPage form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  background-color: white;
  padding: 35px 25px;
  min-width: 420px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
}
.pageContainer.loginPage .typeSelector, .pageContainer.registerPage .typeSelector {
  gap: 15px;
}
.pageContainer.loginPage .typeSelector button, .pageContainer.registerPage .typeSelector button {
  opacity: 0.5;
}
.pageContainer.loginPage .typeSelector button.active, .pageContainer.registerPage .typeSelector button.active {
  opacity: 1;
}
.pageContainer.loginPage .formTitle, .pageContainer.registerPage .formTitle {
  font-size: 27px;
  color: var(--green-color);
  font-weight: 600;
}
.pageContainer.loginPage .formContent, .pageContainer.registerPage .formContent {
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.pageContainer.loginPage .inputsBlock, .pageContainer.registerPage .inputsBlock {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pageContainer.loginPage input, .pageContainer.registerPage input {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  border: none;
  border-bottom: 1px solid var(--gray-color);
  text-align: center;
}
.pageContainer.loginPage input::-moz-placeholder, .pageContainer.registerPage input::-moz-placeholder {
  text-align: center;
}
.pageContainer.loginPage input::placeholder, .pageContainer.registerPage input::placeholder {
  text-align: center;
}
.pageContainer.loginPage input:focus-visible, .pageContainer.registerPage input:focus-visible {
  outline: none;
}
.pageContainer.loginPage .linkButton,
.pageContainer.loginPage a.linkButton, .pageContainer.registerPage .linkButton,
.pageContainer.registerPage a.linkButton {
  color: var(--green-color);
  font-size: 20px;
  font-weight: 400;
  text-decoration: underline;
}
.pageContainer.loginPage .notRegisteredBlock, .pageContainer.registerPage .notRegisteredBlock {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.pageContainer.loginPage .dNone, .pageContainer.registerPage .dNone {
  display: none;
}
.pageContainer.loginPage .loginFormItem, .pageContainer.registerPage .loginFormItem {
  flex-direction: column;
  gap: 5px;
  max-width: 245px;
}
.pageContainer.loginPage ul.error, .pageContainer.registerPage ul.error {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--red-color);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.pageContainer.loginPage ul.error li, .pageContainer.registerPage ul.error li {
  display: flex;
}
.pageContainer.passwordPage .buttonsBlock {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pageContainer.abonentsPage .contentContainer {
  gap: 50px;
}
.pageContainer.abonentsPage .screenContent {
  flex-direction: column;
  gap: 50px;
}
.pageContainer.abonentsPage .screenContent .contentTitle {
  font-family: var(--font-titles);
  font-size: 35px;
  font-weight: 700;
  color: var(--green-color);
}
.pageContainer.abonentsPage .list {
  flex-direction: column;
  gap: 5px;
}
.pageContainer.abonentsPage .list .listTitle {
  font-weight: 700;
  margin: 0px 0px 0px 0px;
}
.pageContainer.abonentsPage .list .listItem {
  display: block;
}
.pageContainer.abonentsPage .list .listItem .text {
  display: inline;
}
.pageContainer.abonentsPage .list .listItem .text.bold {
  font-weight: 700;
}
.pageContainer.abonentsPage .list .listItem .text p {
  display: inline;
}
.pageContainer.abonentsPage .list .listItem .text a {
  display: inline;
}
.pageContainer.abonentsPage .abonentsBlock {
  flex-direction: column;
  gap: 25px;
}
.pageContainer.abonentsPage .abonentsBlock .blockTitle {
  font-size: 27px;
  font-family: var(--font-titles);
  color: var(--green-color);
  font-weight: 700;
  max-width: 750px;
}
.pageContainer.abonentsPage .abonentsBlock .blockDescription {
  flex-direction: column;
  gap: 5px;
  max-width: 750px;
}
.pageContainer.abonentsPage .abonentsBlock .blockContent.twoBlocks {
  gap: 25px;
}
.pageContainer.abonentsPage .abonentsBlock .blockContent.twoBlocks .whiteBlock {
  flex-direction: column;
  width: calc(50% - 12.5px - 25px - 25px);
  gap: 25px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);
  padding: 35px 25px;
}
.pageContainer.abonentsPage .abonentsBlock .blockContent.twoBlocks .whiteBlock .whiteBlockTitle {
  font-weight: 700;
}
.pageContainer.abonentsPage .abonentsBlock .blockContent.twoBlocks .whiteBlock .whiteBlockContent {
  flex-direction: column;
  gap: 10px;
}
.pageContainer.abonentsPage .abonentsBlock .blockContent.twoBlocks .whiteBlock .button {
  align-self: center;
}
.pageContainer.abonentsPage .abonentsBlock .blockContent.list {
  flex-direction: column;
  gap: 5px;
}
.pageContainer.abonentsPage .abonentsBlock .blockContent.commo {
  max-width: 500px;
}
.pageContainer.abonentsPage .abonentsBlock .blockContent.commo .commoBlock {
  gap: 25px;
}
.pageContainer.abonentsPage .abonentsBlock .blockContent.commo .commoBlock .line {
  min-width: 8px;
  width: 8px;
  height: 100%;
  background-color: var(--green-color);
}
.pageContainer.abonentsPage .abonentsBlock .blockContent.commo .commoBlock .commoContent {
  font-size: 20px;
  font-weight: 400;
}
.pageContainer.aboutPage {
  min-height: 60vh;
}
.pageContainer.aboutPage .blocksList {
  flex-direction: column;
  gap: 50px;
}
.pageContainer.aboutPage .contentContainer {
  gap: 50px;
}
.pageContainer.aboutPage .contentBlock {
  gap: 25px;
}
.pageContainer.aboutPage .contentBlock .image {
  justify-content: center;
  align-items: center;
  min-width: 365px;
  max-width: 365px;
  height: 445px;
  border-radius: 10px;
  background-color: #f6f6f6;
  overflow: hidden;
}
.pageContainer.aboutPage .contentBlock .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageContainer.aboutPage .textBlock {
  flex-direction: column;
  gap: 20px;
}
.pageContainer.aboutPage .textBlock.halfTextBlock {
  width: calc(50% - 12.5px);
}
.pageContainer.aboutPage .textBlock .title {
  font-family: var(--font-titles);
  font-size: 27px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--green-color);
}
.pageContainer.aboutPage .textBlock .text {
  display: block;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1;
}
.pageContainer.aboutPage .galleryBlock {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--gray-color);
}
.pageContainer.aboutPage .galleryBlock .arrowBack {
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 50px;
  height: 50px;
  background: url("/images/arrowSlider.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 10px;
  transform: rotate(180deg);
  cursor: pointer;
}
.pageContainer.aboutPage .galleryBlock .arrowNext {
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 50px;
  height: 50px;
  background: url("/images/arrowSlider.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 10px;
  cursor: pointer;
}
.pageContainer.aboutPage .galleryBlock .galleryImagesBlock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35vw;
}
.pageContainer.aboutPage .galleryBlock .galleryImagesBlock img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.pageContainer.aboutPage .galleryBlock .galleryImagesBlock img.active {
  opacity: 1;
  pointer-events: auto;
}
.pageContainer.aboutPage .documentsList {
  gap: 10px;
}
.pageContainer.documentsPage .contentContainer {
  gap: 50px;
}
.pageContainer.documentsPage .contentBlock {
  gap: 50px;
}
.pageContainer.documentsPage .documentsBlock {
  gap: 25px;
}
.pageContainer.documentsPage .documentBlockTitle {
  font-size: 35px;
  font-weight: 700;
  color: var(--green-color);
}
.pageContainer.documentsPage .documentsList {
  gap: 10px;
}
.pageContainer.contactsPage .contentContainer {
  gap: 50px;
}
.pageContainer.contactsPage .contactsBlock {
  gap: 25px;
}
.pageContainer.contactsPage .whiteBlock {
  flex-direction: column;
  gap: 25px;
  width: calc(100% - 12.5px);
  background-color: white;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);
  padding: 35px 25px;
}
.pageContainer.contactsPage .whiteBlock .whiteBlockTitle {
  font-size: 27px;
  font-weight: 700;
  color: var(--green-color);
}
.pageContainer.contactsPage .whiteBlock .contactsList {
  gap: 10px;
}
.pageContainer.contactsPage .whiteBlock .contactItem {
  display: block;
}
.pageContainer.contactsPage .whiteBlock .contactItem .text {
  display: inline;
}
.pageContainer.contactsPage .whiteBlock .contactItem .text.bold {
  font-weight: 700;
}
.pageContainer.contactsPage .mapBlock {
  flex-direction: column;
  width: 100%;
  gap: 25px;
}
.pageContainer.contactsPage .mapBlock .mapTitle {
  font-size: 35px;
  font-weight: 700;
  color: var(--green-color);
}
.pageContainer.contactsPage .mapBlock .map {
  background-color: #f6f6f6;
  border-radius: 20px;
  height: 500px;
  overflow: hidden;
}
.pageContainer.user {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  padding: 150px 0px 100px 0px;
}
.pageContainer.user .user {
  flex-direction: column;
  gap: 25px;
}
.pageContainer.user .userBlock {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
}
.pageContainer.user .userInfo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pageContainer.user .userInfo .userInfoTitle {
  position: relative;
  display: flex;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.pageContainer.user .userInfo .userInfoContent {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pageContainer.user .userInfo .userInfoContent .userInfoColumn {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.pageContainer.user .userInfo .userInfoContent .userInfoColumn .userInfoRow {
  position: relative;
  display: flex;
  gap: 10px;
}
.pageContainer.user .userInfo .userInfoContent .userInfoColumn .userInfoRow .userInfoLabel {
  position: relative;
  display: flex;
  font-weight: 500;
}
.pageContainer.user .userInfo .userInfoContent .userInfoColumn .userInfoRow .userInfoValue {
  position: relative;
  display: flex;
}
.pageContainer.user .userPassword {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pageContainer.user .userPassword .userPasswordTitle {
  position: relative;
  display: flex;
  font-size: 18px;
  font-weight: 600;
}
.pageContainer.user .userPassword .userPasswordForm {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
}
.pageContainer.user .userPassword .userPasswordForm .userPasswordField {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pageContainer.user .userPassword .userPasswordForm .userPasswordField label {
  position: relative;
  display: flex;
  font-size: 14px;
  font-weight: 500;
}
.pageContainer.user .userPassword .userPasswordForm .userPasswordField input {
  position: relative;
  display: flex;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}
.pageContainer.user .userPassword .userPasswordForm .userPasswordField .userPasswordError {
  position: relative;
  display: flex;
  color: #dc2626;
  font-size: 14px;
  margin-top: 4px;
}
.pageContainer.user .userPassword .userPasswordForm .userPasswordButton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  color: white;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.pageContainer.user .userPassword .userPasswordSuccess {
  position: relative;
  display: flex;
  padding: 16px;
  background: #dcfce7;
  border-left: 4px solid #22c55e;
  color: #15803d;
}
.pageContainer.user .tabsNavigation .tabsNavigationContent .tabsNavigationItem.active {
  background: linear-gradient(to right, rgb(11, 217, 87), rgb(24, 131, 144), rgb(52, 116, 253));
}
.pageContainer.user .tabsNavigation .tabsNavigationContent .tabsNavigationItem.active .tabsNavigationLink {
  color: white;
}
.pageContainer.user .tabsNavigation .tabsNavigationContent .tabsNavigationItem .tabsNavigationLink {
  color: var(--green-color);
}
.pageContainer.user .breadcrumbLink {
  color: var(--green-color);
}
.pageContainer.user .applications {
  flex-direction: column;
}
.pageContainer.user .applications form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.pageContainer.user .applications .formGroup {
  flex-direction: column;
  gap: 10px;
}
.pageContainer.user .applications .additionalLabel {
  font-size: 16px;
  color: var(--gray-color);
  max-width: 450px;
}
.pageContainer.user .applications .documentsUpload {
  flex-direction: column;
  gap: 10px;
}
.pageContainer.user .applications .formActions {
  gap: 10px;
}
.pageContainer.user .applications .buttonsBlock {
  gap: 20px;
}
.pageContainer.user .hint {
  color: var(--gray-color);
  font-size: 12px;
}
.pageContainer.applications {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
}
.pageContainer.applications .applicationsHeader {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.pageContainer.applications .applicationsHeader h1 {
  font-size: 24px;
  font-weight: 600;
}
.pageContainer.applications .applicationsAlert {
  position: relative;
  display: flex;
  padding: 16px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: 8px;
}
.pageContainer.applications .applicationsEmpty {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
}
.pageContainer.applications .applicationsList {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pageContainer.applications .applicationsCard {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.pageContainer.applications .applicationsCardHeader {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pageContainer.applications .applicationsCardId {
  font-weight: 600;
  font-size: 16px;
}
.pageContainer.applications .applicationsCardDate {
  font-size: 14px;
  color: #666;
}
.pageContainer.applications .applicationsCardStatus {
  position: relative;
  display: flex;
}
.pageContainer.applications .applicationsCardStatusBadge {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
.pageContainer.applications .applicationsCardStatusBadge.in_process {
  background: #fff3cd;
  color: #856404;
}
.pageContainer.applications .applicationsCardStatusBadge.completed {
  background: #d4edda;
  color: #155724;
}
.pageContainer.applications .applicationsCardStatusBadge.rejected {
  background: #f8d7da;
  color: #721c24;
}
.pageContainer.applications .applicationsCardSection {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pageContainer.applications .applicationsCardSectionTitle {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}
.pageContainer.applications .applicationsCardDocuments {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pageContainer.applications .applicationsCardDocument {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e9ecef;
}
.pageContainer.applications .applicationsCardDocument .button {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pageContainer.applications .applicationsCardDocumentName {
  font-size: 14px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70%;
}
.pageContainer.applications .applicationsCardComment {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.pageContainer.applications .applicationsPagination {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.pageContainer.verifyEmailPage {
  min-height: 70vh;
}
.pageContainer.verifyEmailPage .verifyEmailContent {
  display: block;
}
.pageContainer.registerInstructionPage .instructionsBlock {
  flex-direction: column;
  gap: 40px;
}
.pageContainer.registerInstructionPage .instructionItem {
  display: block;
}

@media (max-width: 1680px) {
  .pageContainer.mainPage .screen1 .tabsBlock .tabItem {
    min-width: unset;
    width: calc(33% - 15px - 50px);
    gap: 1vw;
  }
  .pageContainer.mainPage .screen1 .tabsBlock .tabItem .tabTitle {
    font-size: 2vw;
  }
  .pageContainer.mainPage .screen1 .tabsBlock .tabItem .tabText {
    font-size: 1.1vw;
  }
  .pageContainer.aboutPage .textBlock .title {
    font-size: 2vw;
  }
  .pageContainer.contactsPage .whiteBlock .whiteBlockTitle {
    font-size: 2vw;
  }
  .pageContainer.contactsPage .mapBlock .mapTitle {
    font-size: 2vw;
  }
}
@media (max-width: 1440px) {
  .pageContainer.mainPage .screen1 .tabsBlock .tabItem {
    min-width: unset;
    width: calc(33% - 15px - 50px);
    gap: 1vw;
  }
  .pageContainer.mainPage .screen1 .tabsBlock .tabItem .tabTitle {
    font-size: 2vw;
  }
  .pageContainer.mainPage .screen1 .tabsBlock .tabItem .tabText {
    font-size: 18px;
  }
  .screenTitle {
    font-size: 3.7vw;
  }
}
@media (max-width: 1280px) {
  .pageContainer.mainPage .screen1 .tabsBlock {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }
  .pageContainer.mainPage .screen1 .tabsBlock .tabItem {
    min-width: unset;
    width: 100%;
    max-width: 350px;
    gap: 10px;
  }
  .pageContainer.mainPage .screen1 .tabsBlock .tabItem .tabTitle {
    font-size: 24px;
  }
  .pageContainer.mainPage .screen1 .tabsBlock .tabItem .tabText {
    font-size: 18px;
  }
  .pageContainer.aboutPage .textBlock .title {
    font-size: 24px;
  }
  .pageContainer.contactsPage .whiteBlock .whiteBlockTitle {
    font-size: 24px;
  }
  .pageContainer.contactsPage .mapBlock {
    gap: 10px;
  }
  .pageContainer.contactsPage .mapBlock .mapTitle {
    font-size: 24px;
  }
}
@media (max-width: 980px) {
  body {
    font-size: 17px;
  }
  .pageContainer.mainPage .contentContainer {
    gap: 3vw;
  }
  .pageContainer.aboutPage .contentContainer {
    gap: 25px;
  }
  .pageContainer.aboutPage .blocksList {
    gap: 25px;
  }
  .pageContainer.aboutPage .contentBlock {
    flex-direction: column;
    gap: 25px;
  }
  .pageContainer.aboutPage .textBlock {
    gap: 10px;
  }
  .pageContainer.aboutPage .textBlock.halfTextBlock {
    width: 100%;
  }
  .pageContainer.contactsPage .contactsBlock {
    flex-direction: column;
  }
  .pageContainer.contactsPage .whiteBlock {
    width: calc(100% - 50px);
  }
  .pageContainer.abonentsPage .abonentsBlock .blockContent.twoBlocks {
    flex-direction: column;
  }
  .pageContainer.abonentsPage .abonentsBlock .blockContent.twoBlocks .whiteBlock {
    width: calc(100% - 50px);
  }
  .pageContainer.registerPage .screenTitle, .pageContainer.loginPage .screenTitle {
    margin: 0px 0px 3vw 0px;
  }
  .contentContainer {
    gap: 3vw;
  }
  .tabsNavigation {
    justify-content: flex-start;
  }
  .tabsNavigation .tabsNavigationContent {
    max-width: unset;
  }
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .pageContainer.mainPage .bannerBlock {
    height: 25vw;
  }
  .pageContainer.mainPage .screenTitle {
    max-width: unset;
  }
  .pageContainer.mainPage .contentContainer.screen1 {
    padding: 0px 0px 6vw 0px;
  }
  .pageContainer.mainPage .contentContainer.screen2 .screenTitle {
    max-width: 50vw;
    font-size: 6vw;
    line-height: 1;
  }
  .pageContainer.user {
    align-items: flex-start;
    width: calc(100% - 10vw);
    padding: 150px 5vw;
    overflow-x: auto;
  }
  .pageContainer.user .dashboardContainer {
    padding: 50px 25px;
    min-width: 625px;
    align-self: flex-start;
  }
  .pageContainer.registerPage .typeSelector, .pageContainer.loginPage .typeSelector {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .screenTitle {
    font-size: 35px;
  }
}
@media (max-width: 640px) {
  .screenTitle {
    font-size: 5vw;
  }
  .contentContainer {
    max-width: 90vw;
  }
  .documentBlock {
    flex-direction: column;
    gap: 10px 30px;
  }
  .pageContainer {
    gap: 10vw;
  }
  .pageContainer.mainPage .screen2 .screenTitle {
    left: 5vw;
  }
  .pageContainer.aboutPage .galleryBlock .galleryImagesBlock {
    height: 45vw;
  }
  .pageContainer.contactsPage .whiteBlock {
    width: calc(100% - 50px);
  }
}
@media (max-width: 480px) {
  .screenTitle {
    font-size: 24px;
  }
  .pageContainer.aboutPage .contentBlock .image {
    min-width: unset;
    max-width: unset;
    width: 90vw;
    height: 110vw;
  }
  .pageContainer.registerPage form, .pageContainer.loginPage form {
    min-width: unset;
    width: calc(100% - 50px);
  }
  .pageContainer.registerPage form {
    margin: 20px 0px 0px 0px;
  }
}/*# sourceMappingURL=style.css.map */