@font-face {
  font-family: "Lato";
  src: url("/local/components/elros/organization.information.ref/templates/.default/fonts/Lato-Regular.ttf")
    format("truetype");
  font-style: normal;
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Lato";
  src: url("/local/components/elros/organization.information.ref/templates/.default/fonts/Lato-Medium.ttf")
    format("truetype");
  font-style: normal;
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Lato";
  src: url("/local/components/elros/organization.information.ref/templates/.default/fonts/Lato-Bold.ttf")
    format("truetype");
  font-style: normal;
  font-display: swap;
  font-weight: 700;
}
* {
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
p {
  font-style: normal;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
}

h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 56px;
}

h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 40px;
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none !important;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.primary[disabled="disabled"],
.primary:disabled {
  cursor: not-allowed;
}
.primary {
  transition:
    border 0.3s ease-in-out,
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out;
}
.primary svg path {
  transition: fill 0.3s ease-in-out;
}
.primary {
  background: linear-gradient(
    112deg,
    #9930df 0%,
    #c0448f 40.99%,
    #f15c3b 80.85%
  );
  color: #ffffff;
  border: 1px solid;
  padding: 10px 20px;
  width: 160px;
}
.primary:hover {
  background: linear-gradient(112deg, #c0448f 0%, #f15c3b 80.85%);
}
.primary:active {
  background: linear-gradient(
    112deg,
    #7011af 0%,
    #c60078 40.99%,
    #b52100 80.85%
  );
}
.primary[disabled="disabled"],
.primary:disabled {
  background: #f5f5f5;
  color: #e2e2e2;
}

.outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: white;
  cursor: pointer;
  overflow: hidden;
  font-size: 20px;
  font-weight: 500;
}
.outline span {
  position: relative;
  z-index: 10;
  background: linear-gradient(
    112deg,
    #9930df 0%,
    #c0448f 40.99%,
    #f15c3b 80.85%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition:
    background 0.3s ease-in-out,
    fill 0.3s ease-in-out;
}
.outline::before,
.outline::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}
.outline::before {
  background: linear-gradient(
    112deg,
    #9930df 0%,
    #c0448f 40.99%,
    #f15c3b 80.85%
  );
  opacity: 1;
}
.outline::after {
  background: linear-gradient(112deg, #c0448f 0%, #f15c3b 80.85%);
  opacity: 0;
}
.outline:hover::after {
  opacity: 1;
}
.outline:hover span {
  background: linear-gradient(112deg, #c0448f 0%, #f15c3b 80.85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.outline:active::before,
.outline:active::after {
  background: linear-gradient(
    112deg,
    #7011af 0%,
    #c60078 40.99%,
    #b52100 80.85%
  );
  opacity: 1;
}
.outline:active span {
  background: linear-gradient(
    112deg,
    #7011af 0%,
    #c60078 40.99%,
    #b52100 80.85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.outline svg path {
  fill: url(#grad-main);
  transition: fill 0.3s ease-in-out;
}
.outline:hover svg path {
  fill: url(#grad-hover);
}
.outline:active svg path {
  fill: url(#grad-pressed);
}

.outline-cancel {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #f5f5f5;
  cursor: pointer;
  overflow: hidden;
}
.outline-cancel span {
  position: relative;
  z-index: 10;
  background: linear-gradient(
    112deg,
    #9930df 0%,
    #c0448f 40.99%,
    #f15c3b 80.85%
  );
  font-size: 14px;
  font-weight: 500;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition:
    background 0.3s ease-in-out,
    fill 0.3s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.outline-cancel::before,
.outline-cancel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}
.outline-cancel::before {
  background: linear-gradient(
    112deg,
    #9930df 0%,
    #c0448f 40.99%,
    #f15c3b 80.85%
  );
  opacity: 1;
}
.outline-cancel::after {
  background: linear-gradient(112deg, #c0448f 0%, #f15c3b 80.85%);
  opacity: 0;
}
.outline-cancel:hover::after {
  opacity: 1;
}
.outline-cancel:hover span {
  background: linear-gradient(112deg, #c0448f 0%, #f15c3b 80.85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.outline-cancel:active::before,
.outline-cancel:active::after {
  background: linear-gradient(
    112deg,
    #7011af 0%,
    #c60078 40.99%,
    #b52100 80.85%
  );
  opacity: 1;
}
.outline-cancel:active span {
  background: linear-gradient(
    112deg,
    #7011af 0%,
    #c60078 40.99%,
    #b52100 80.85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.primary_checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1.5px solid #f5f5f5;
  background: white;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.primary_checkbox:hover {
  border: 1.5px solid #f15c3b;
}
.primary_checkbox:checked {
  background: #f15c3b;
  border-color: #f15c3b;
  background-image: url("../../images/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px 21px;
}

section {
  margin-bottom: 24px;
  background-color: none;
}

.fst_container {
  width: clamp(1200px, 87.5vw, 1402px);
  margin: 0 auto;
}

.select_btn {
  display: none;
  visibility: hidden;
}

#for_pt {
  margin-block: 32px;
}
#for_pt .page_title {
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
}

.page_title_section {
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
}

.container-basic-info {
  width: clamp(1200px, 87.5vw, 1402px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 12px;
  background: #f5f5f5;
  transition: opacity 0.3s ease-in-out;
  padding-bottom: 24px;
}
.container-basic-info .btns_block {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  gap: 12px;
  padding: 24px;
}
.container-basic-info .title_n_btns {
  display: flex;
  align-self: stretch;
  padding: 24px;
  justify-content: space-between;
  gap: 24px;
}
.container-basic-info .title_n_btns .subheader {
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  max-width: 1150px;
}
.container-basic-info .title_n_btns .btns_block_with_title {
  display: flex;
  gap: 12px;
}
.container-basic-info .icon {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.container-basic-info .icon img {
  position: absolute;
  top: 25%;
  left: 25%;
  transition: opacity 0.3s ease-in-out;
  width: 24px;
  height: 24px;
}
.container-basic-info .icon .old {
  opacity: 1;
  z-index: 1;
}
.container-basic-info .icon .new {
  opacity: 0;
  z-index: 2;
}
.container-basic-info .icon.show-new .old {
  opacity: 0;
}
.container-basic-info .icon.show-new .new {
  opacity: 1;
}

.articles_container {
  display: flex;
  padding-inline: 12px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  padding: 0 24px;
}
.articles_container.with_img {
  flex-direction: row;
  gap: 12px;
}
.articles_container .img_block {
  display: flex;
  min-width: 280px;
  max-height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}
.articles_container .img_block img {
  width: 360px;
  flex-shrink: 0;
}
.articles_container .articles_list {
  display: grid;
  padding-left: 0;
  margin-bottom: 0;
  grid-template-columns: repeat(2, 49.5%);
  align-self: stretch;
  gap: 12px;
  width: 100%;
}

.articles_container .articles_list.single_articles {
  grid-template-columns: repeat(1, 100%);
}

.articles_container .articles_list article {
  display: flex;
  padding: 12px;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 8px;
  background: #ffffff;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
}
.articles_container .articles_list article .info_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.articles_container .articles_list article .info_block .title {
  color: #424242;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.articles_container .articles_list article .info_block .info {
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.icon_block {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.icon_block .icon_in_article {
  cursor: pointer;
  position: relative;
  display: flex;
  width: 24px;
}
.icon_block .icon_in_article img {
  transition: opacity 0.3s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.icon_block .icon_in_article .old {
  opacity: 1;
  z-index: 1;
}
.icon_block .icon_in_article .new {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}
.icon_block .icon_in_article.show-new .old {
  opacity: 0;
}
.icon_block .icon_in_article.show-new .new {
  opacity: 1;
}

.cloud {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: -50px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}
.cloud.visible {
  opacity: 1;
  visibility: visible;
}
.cloud div {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
}
.cloud div span {
  display: flex;
  align-self: center;
  align-self: stretch;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #424242;
  text-align: center;
  white-space: nowrap;
}

.btn_container {
  width: clamp(1200px, 87.5vw, 1402px);
  margin: 0 auto;
  margin-bottom: 60px;
}
.btn_container .outline {
  width: 100%;
  gap: 4px;
}

.download_list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-left: 0;
}

.link_n_icon {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: #f5f5f5;
  border-radius: 4px;
}
.link_n_icon .trash_link {
  align-self: center;
  cursor: pointer;
}
.link_n_icon .trash_link path {
  transition: fill 0.3s ease-in-out;
}
.link_n_icon .trash_link:hover path {
  fill: red;
}
.download_link {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 125px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.download_link span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  max-width: 12ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
}

.subheader_n_job {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.subheader_n_job .job_block {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.subheader_n_job .job_block .job_label {
  color: #616161;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.subheader_n_job .job_block .job_name {
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.pop-up {
  position: fixed;
  top: 50px;
  left: 49.6%;
  transform: translate(-50%);
  z-index: 1000;
}

.pop-up .container_in_pop-up {
  width: clamp(1200px, 87.5vw, 1402px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 12px;
  border: 1.5px solid #f5f5f5;
  background: #f5f5f5;
}
.pop-up .container_in_pop-up .line_white {
  height: 2px;
  background: #ffffff;
  align-self: stretch;
  margin: 0 24px;
}

.line_white {
  height: 2px;
  background: #ffffff;
  align-self: stretch;
  margin: 12px 0px;
  border: 1.5px solid #ffffff;
}

.title_form_n_btns {
  display: flex;
  padding: 24px;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.title_form_n_btns .avatar_n_input {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 80%;
}
.title_form_n_btns .avatar_n_input .avatar {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  max-width: 74px;
  max-height: 74px;
  min-width: 74px;
  min-height: 74px;
  padding: 24px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 50px;
  background: #fff;
  padding: 0;
  align-self: flex-start;
}
.title_form_n_btns .avatar_n_input .avatar .avatar_icon {
  -o-object-fit: cover;
  object-fit: cover;
}
.title_form_n_btns .avatar_n_input .avatar .avatar_loaded {
  z-index: 1001;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.title_form_n_btns .avatar_n_input .avatar .delete_avatar {
  position: absolute;
  height: 42px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1002;
}
.title_form_n_btns .avatar_n_input .avatar .delete_avatar.visible {
  opacity: 1;
}
.title_form_n_btns .avatar_n_input .title_input {
  display: flex;
  flex-direction: column;
  padding: 12px;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  border-radius: 8px;
  background: #ffffff;
}
.title_form_n_btns .avatar_n_input .title_input .line {
  align-self: stretch;
  height: 1px;
  background: #e2e2e2;
}
.title_form_n_btns .avatar_n_input .title_input .upper-input {
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  max-height: 76px;
}
.title_form_n_btns .avatar_n_input .title_input .lower-input {
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  max-height: 76px;
}
.title_form_n_btns .btns_block {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.scrollbar {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin: 24px 12px 24px 24px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.input_list {
  display: grid;
  grid-template-columns: repeat(2, 49.5%);
  align-items: flex-start;
  padding-right: 12px;
  gap: 12px;
  align-self: stretch;
  max-height: 60vh;
  padding-left: 0;
}
.input_list .inputs_n_trash {
  display: flex;
  padding: 12px;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 8px;
  background: #ffffff;
  height: 100%;
  position: relative;
}
.input_list .inputs_n_trash .input_block {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.input_list .inputs_n_trash .input_block .line {
  align-self: stretch;
  height: 1px;
  background: #e2e2e2;
  margin-block: 8px;
}
.input_list .inputs_n_trash .input_block .upper_tarea {
  color: #616161;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  height: 21px;
}
.input_list .inputs_n_trash .input_block .lower_tarea {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  height: 21px;
}
.input_list .inputs_n_trash .input_block .loader_container {
  display: flex;
  gap: 12px;
  height: 100%;
}
.input_list .inputs_n_trash .input_block .loader_container.nogap {
  gap: 0;
}
.input_list .inputs_n_trash .input_block .loader_block {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}
.input_list .inputs_n_trash .input_block .loader_block .icon_in_input {
  cursor: pointer;
  display: flex;
  padding: 6px;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  background: #e8ffdb;
}
.input_list .inputs_n_trash .input_block .loader_block .icon_in_input span {
  color: #53b121;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.input_list .inputs_n_trash .input_block .loader_block input {
  display: none;
}

textarea {
  height: 21px;
  min-height: 21px;
  outline: none;
  display: flex;
  border: 1px solid #fff;
  width: 100%;
  height: 19px;
  resize: none !important;
  overflow: hidden !important;
}

.overlay_local {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;

  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
}
.overlay_local.second_layer {
  z-index: 1003 !important;
}

.pop-up_delete {
  position: fixed;
  top: 200px;
  left: 50%;
  transform: translate(-50%);
  z-index: 1004;
  display: flex;
  flex-direction: column;
  padding: 36px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 73px 20px 0 rgba(0, 0, 0, 0),
    0 47px 19px 0 rgba(0, 0, 0, 0.01),
    0 26px 16px 0 rgba(0, 0, 0, 0.05),
    0 12px 12px 0 rgba(0, 0, 0, 0.09),
    0 3px 6px 0 rgba(0, 0, 0, 0.1);
  width: 444px;
}
.pop-up_delete[hidden] {
  display: none !important;
}
.pop-up_delete .question_in_pop-up {
  text-align: center;
}
.pop-up_delete .question_in_pop-up .black {
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}
.pop-up_delete .question_in_pop-up .red {
  color: #a82525;
}
.pop-up_delete .btns_block {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.outline-cancel_delete {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}
.outline-cancel_delete span {
  position: relative;
  z-index: 10;
  background: linear-gradient(
    112deg,
    #9930df 0%,
    #c0448f 40.99%,
    #f15c3b 80.85%
  );
  font-size: 14px;
  font-weight: 500;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition:
    background 0.3s ease-in-out,
    fill 0.3s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.outline-cancel_delete::before,
.outline-cancel_delete::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}
.outline-cancel_delete::before {
  background: linear-gradient(
    112deg,
    #9930df 0%,
    #c0448f 40.99%,
    #f15c3b 80.85%
  );
  opacity: 1;
}
.outline-cancel_delete::after {
  background: linear-gradient(112deg, #c0448f 0%, #f15c3b 80.85%);
  opacity: 0;
}
.outline-cancel_delete:hover::after {
  opacity: 1;
}
.outline-cancel_delete:hover span {
  background: linear-gradient(112deg, #c0448f 0%, #f15c3b 80.85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.outline-cancel_delete:active::before,
.outline-cancel_delete:active::after {
  background: linear-gradient(
    112deg,
    #7011af 0%,
    #c60078 40.99%,
    #b52100 80.85%
  );
  opacity: 1;
}
.outline-cancel_delete:active span {
  background: linear-gradient(
    112deg,
    #7011af 0%,
    #c60078 40.99%,
    #b52100 80.85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.opacity {
  opacity: 50%;
}

.title_n_btns.no_padding {
  padding: 6px 0;
}

@media (max-width: 1400px) {
  .fst_container,
  .btn_container,
  .container-basic-info {
    width: 100%;
  }
  .pop-up {
    width: 100%;
  }
  .pop-up .container_in_pop-up {
    width: 85%;
  }
  .container-basic-info .title_n_btns {
    flex-direction: column-reverse;
  }
  .container-basic-info .title_n_btns .btns_block_with_title {
    justify-content: flex-end;
  }
  .input_list .inputs_n_trash .input_block .loader_container {
    flex-direction: column;
  }
}
@media (max-width: 1100px) {
  body {
    width: 100%;
  }
  .articles_container.with_img {
    flex-direction: column;
  }
  .articles_container.with_img .img_block {
    max-width: 240px;
    min-width: 240px;
  }
  .articles_container .articles_list {
    grid-template-columns: repeat(1, 100%);
  }
  .fst_container,
  .btn_container,
  .container-basic-info {
    width: 100%;
  }
  .pop-up .container_in_pop-up {
    width: 90%;
  }
  .title_form_n_btns {
    flex-direction: column;
  }
  .title_form_n_btns .avatar_n_input {
    width: 100%;
  }
  .title_form_n_btns .btns_block {
    align-self: flex-end;
  }
  .input_list {
    grid-template-columns: repeat(1, 100%);
  }
}
@media (max-width: 700px) {
  #for_pt .page_title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
  }
  section {
    margin-bottom: 8px;
  }
  .container-basic-info > * {
    padding: 12px !important;
  }
  .container-basic-info .title_n_btns .subheader {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
  }
  .articles_container .articles_list {
    gap: 6px;
  }
  .articles_container .articles_list article {
    flex-direction: column;
  }
  .articles_container .articles_list article .icon_block {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .pop-up .container_in_pop-up {
    height: 85vh;
  }
  .pop-up .container_in_pop-up .line_white {
    margin: 0 12px;
  }
  .input_list {
    max-height: 50vh;
  }
  .title_form_n_btns {
    padding: 12px;
  }
  .scrollbar {
    margin: 12px;
  }
  .title_form_n_btns {
    gap: 8px;
  }
  .title_form_n_btns .avatar_n_input {
    flex-direction: column;
  }
  .title_form_n_btns .avatar_n_input .avatar {
    align-self: center;
  }
  .title_form_n_btns .btns_block {
    flex-direction: column;
    width: 100%;
    gap: 6px;
  }
  .title_form_n_btns .btns_block button {
    width: 100%;
  }
  .input_list {
    gap: 6px;
  }
  .pop-up_delete {
    padding: 24px;
    width: 350px;
  }
  .pop-up_delete .question_in_pop-up .black {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
  }
  .pop-up_delete .btns_block {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 6px;
  }
  .pop-up_delete .btns_block button {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .articles_container.with_img .img_block {
    align-self: center;
  }
  .subheader_n_job {
    gap: 8px;
  }
  .subheader_n_job .job_block {
    gap: 2px;
    flex-direction: column;
  }
  .scrollbar {
    overflow-x: auto;
  }
  .scrollbar .input_list {
    overflow: unset;
  }
  .scrollbar .input_list .inputs_n_trash {
    width: 500px;
  }
  .pop-up_delete {
    padding: 16px;
    width: 280px;
  }
  .pop-up_delete .question_in_pop-up .black {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
  }
}
.container.no_bg-color {
  background: none;
  border: none;
  padding: 0;
}

.links_list {
  display: grid;
  grid-template-columns: repeat(4, 23.6%);
  gap: 24px;
  align-self: stretch;
  padding-left: 0;
}
.links_list a {
  display: flex;
  max-width: 332px;
  height: 120px;
  padding: 24px;
  align-items: flex-start;
  border-radius: 8px;
  position: relative;
  background: #f5f5f5;
  transition: background-color 0.3s ease;
}
.links_list a span {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #424242;
}
.links_list a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(
    112deg,
    rgba(201, 119, 255, 0.1) 0%,
    rgba(255, 125, 204, 0.1) 40.99%,
    rgba(255, 138, 112, 0.1) 80.85%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}
.links_list a:hover {
  background: #fff;
}
.links_list a:hover::before {
  opacity: 1;
}

@media (max-width: 1400px) {
  .links_list {
    display: grid;
    grid-template-columns: repeat(3, 32%);
  }
  .links_list a {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 1100px) {
  body {
    width: 100%;
  }
  .links_list {
    display: grid;
    grid-template-columns: repeat(2, 50%);
  }
  .links_list a {
    width: 100%;
  }
}
@media (max-width: 719px) {
  #for_pt .page_title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
  }
  .links_list {
    grid-template-columns: repeat(1, 100%);
    gap: 8px;
  }
  .links_list a {
    width: 100%;
    height: 90px;
    padding: 12px;
  }
}
.loader {
  display: none;
  top: 150px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2001;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 15px auto;
  position: fixed;
  background: #f15c3b;
  box-shadow:
    -24px 0 #f15c3b,
    24px 0 #f15c3b;
  box-sizing: border-box;
  animation: shadowPulse 2s linear infinite;
}

@keyframes shadowPulse {
  33% {
    background: #f15c3b;
    box-shadow:
      -24px 0 #9930df,
      24px 0 #f15c3b;
  }
  66% {
    background: #9930df;
    box-shadow:
      -24px 0 #f15c3b,
      24px 0 #f15c3b;
  }
  100% {
    background: #f15c3b;
    box-shadow:
      -24px 0 #f15c3b,
      24px 0 #9930df;
  }
}

/*Signature*/
.key_icon_block {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
.key_icon_block img {
  cursor: pointer;
}

.cloud_key {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}
.cloud_key.visible {
  opacity: 1;
  visibility: visible;
}
.cloud_key .cloud_container {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  min-width: 307px;
  height: 84px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
}
.cloud_key .cloud_container .title_n_name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  align-self: stretch;
  margin-bottom: auto;
}
.cloud_key .cloud_container .cloud_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.cloud_key .cloud_container .cloud_title span {
  color: #757575;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cloud_key .cloud_container .name {
  color: #424242;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cloud_key .cloud_container .uniq_key {
  color: #757575;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.cloud_key svg {
  position: absolute;
  top: 83px;
}

.content .content__container img{
  border-radius: 0px !important;
}

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