

/* Start:/bitrix/templates/digital-doc/include/journal/journal.css?17660834803673*/
.journal {
  display: flex;
  padding: 30px 0;
  gap: 30px;
}

.post-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-info__text {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.post-info__current {
  font-weight: 500;
  font-size: 16px;
}
.post-info__date {
  font-family: "Dewberry", "DIN Pro", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 90%;
}
.post-info__img {
  max-width: 35vw;
  width: 500px;
  border-radius: 8px;
}

.catalog-section {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.product-item-list-col-3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-item {
  display: flex;
  gap: 20px;
}
.product-item__content {
  width: 100%;
}

.description {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.description__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.description__hero * {
  color: black;
}
.description__name {
  font-size: 18px;
  font-weight: 400;
}
.description__name a {
  text-decoration: none;
  color: black;
}
.description__name a:hover {
  color: #6C7076;
}

.news-tags a {
  font-weight: 400;
  font-size: 14px;
  color: #005fb0;
  text-decoration: none;
  transition: all 0.2s ease;
}
.news-tags a:hover {
  color: #00284a;
}

.more-btn {
  white-space: nowrap;
  height: fit-content;
}

.more {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.more .btn {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  border-radius: 8px;
}
.more .btn__img {
  width: 50px;
  min-width: 50px;
}
.more .btn__desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.more .btn__desc h3 {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
}
.more .btn__desc span {
  font-weight: 500;
  font-size: 14px;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip__content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: black;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease;
  z-index: 1;
  font-family: "DIN Pro", sans-serif;
  text-transform: capitalize;
}
.tooltip__trigger {
  width: 25px;
  min-width: 25px;
  height: 25px;
  border-radius: 6px;
}
.tooltip__arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}
.tooltip:hover .tooltip__content {
  visibility: visible;
  opacity: 1;
}

.content_r video {
  max-width: 500px;
  margin: 20px 0 20px auto;
  display: flex;
}

@media screen and (max-width: 1440px) {
  .description__name {
    font-size: 14px;
  }
  .post-info__date {
    font-size: 38px;
  }
  .post-info__current {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .post-info__text {
    justify-content: center;
  }
  .post-info__img {
    max-width: 100%;
    width: 100%;
  }
  .post-info__pic {
    display: flex;
    justify-content: center;
  }
  .journal {
    flex-direction: column;
  }
  .catalog-section {
    border-radius: 8px;
    padding: 12px;
  }
  .description__content {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .product-item {
    gap: 10px;
  }
}

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

/* End */


/* Start:/bitrix/templates/digital-doc/include/modal/modal.css?17660834802831*/
.openModal {
  cursor: pointer;
}

.modal-overlay-custom {
  backdrop-filter: blur(10px);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.modal-overlay-custom .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-overlay-custom.auth p a {
  color: unset;
}

.modal-block {
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
  height: 100%;
  padding: 25px 25px 30px;
  border-radius: 16px;
  background: #fff;
  max-height: calc(80dvh - 32px);
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 30rem;
}
.modal-block.video {
  max-width: unset;
}
.modal-block.video .modal-block__section {
  padding-right: 0;
}
.modal-block.video .modal-block__section video {
  max-height: 80vh;
}
.modal-block__head {
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.modal-block__head h3 {
  font-size: 18px;
  font-weight: 500;
  color: black;
  margin: 0;
  line-height: 1;
  text-transform: capitalize;
}
.modal-block__content {
  overflow-y: auto;
  position: relative;
  max-height: calc(100vh - 64px);
}
.modal-block__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-block p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.vote-answer-item input[type=checkbox] {
  visibility: visible !important;
  position: relative !important;
}

.auth-form {
  display: flex;
  justify-content: center;
}
.auth-form .bx-system-auth-form {
  width: 100%;
}
.auth-form label, .auth-form noindex, .auth-form .bx-auth-lbl, .auth-form .bx-auth-serv-icons {
  display: none;
}
.auth-form table {
  width: 100%;
}
.auth-form table tr:nth-of-type(3) {
  display: flex;
}
.auth-form input:focus-visible {
  outline: none;
  border-color: black;
  border-style: solid;
}
.auth-form input[type=text], .auth-form input[type=password] {
  height: 32px;
}
.auth-form tbody {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-form tr:nth-child(5), .auth-form tr:nth-child(6), .auth-form tr:nth-child(7) {
  display: none;
}
.auth-form td, .auth-form label {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.auth-form .errortext {
  font-size: 14px;
}

.auth-extras {
  display: flex;
  gap: 16px;
  margin-left: auto;
  margin-right: auto;
}

.my-registration {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  color: #000;
}
.my-registration:hover {
  color: #000;
}

.voting-form-box {
  border: none;
  padding: 0;
}

/* End */


/* Start:/bitrix/templates/digital-doc/include/startScreen/startScreen.css?17660834801823*/
.start-screen {
  position: fixed;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: var(--bg);
  align-items: center;
  transition: all 1s ease-in-out;
  overflow-y: auto;
  opacity: 0;
}
.start-screen.active {
  left: 0;
  transition: unset;
  opacity: 1;
}
.start-screen__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding: 20px 5vw;
  min-height: 100vh;
  justify-content: center;
}
.start-screen__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.start-screen__desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.start-screen__desc h2 {
  font-weight: 400;
  font-size: clamp(30px, 4vw, 60px);
  line-height: 120%;
  margin-top: 20%;
}
.start-screen__desc button {
  margin-left: auto;
}
.start-screen__pic {
  width: fit-content;
  max-width: 50vw;
  max-height: 80vh;
  border-radius: 8px;
  margin-left: -5vw;
}
.start-screen__label {
  font-family: "Dewberry", sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 2vw, 20px);
  line-height: 120%;
  text-align: right;
  color: #59C0D0;
}
.start-screen__logo {
  max-width: 40vw;
}

@media screen and (min-width: 1920px) {
  .start-screen__content {
    padding: 20px 80px;
  }
  .start-screen__pic {
    margin-left: -80px;
  }
}
@media screen and (max-width: 768px) {
  .start-screen__hero {
    grid-template-columns: 1fr;
  }
  .start-screen__hero-pics {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .start-screen__desc {
    margin-top: 0;
  }
  .start-screen__desc h2 {
    margin-top: 0;
  }
  .start-screen__pic {
    width: calc(100% + 10vw);
    max-width: unset;
    max-height: unset;
    margin: 0 -5vh;
  }
  .start-screen__logo {
    max-width: 60vw;
  }
}

/* End */
/* /bitrix/templates/digital-doc/include/journal/journal.css?17660834803673 */
/* /bitrix/templates/digital-doc/include/modal/modal.css?17660834802831 */
/* /bitrix/templates/digital-doc/include/startScreen/startScreen.css?17660834801823 */
