

/* Start:/bitrix/templates/digital-doc/include/section/section.css?17576823777134*/
.krhead {
  padding: 40px 10px;
  position: relative;
  width: 100px;
  min-width: 100px;
}
.krhead p {
  font-family: "Dewberry", "DIN Pro", sans-serif;
  font-weight: 600;
  font-size: 48px;
  margin: 0;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  white-space: nowrap;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
}
.krhead p span {
  font-size: 32px;
}

.product-item {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}
.product-item__content {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.product-item__date {
  height: 80px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.product-item__date span {
  font-family: "Dewberry", "DIN Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
.product-item__block {
  display: grid;
  grid-template-columns: 1.51fr 0.5fr 0.75fr;
  grid-template-areas: "description expert rest";
  gap: 20px;
  background: white;
  width: 100%;
  border-radius: 0 16px 0 0;
}
.product-item__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 30px 0;
}
.product-section .product-item {
  margin: 0;
}
.product-section .product-item__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  background-color: white;
}
.product-section .krhead p {
  font-size: 32px;
}
.product-section .description__hero {
  padding-bottom: 500px;
}
.product-section__name {
  font-family: "Dewberry", "DIN Pro", sans-serif;
  font-size: 32px;
  padding: 20px 20px 0;
  display: flex;
  justify-content: center;
}

.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;
}

.description {
  margin-top: -80px;
  width: 100%;
  grid-area: description;
}
.description__hero {
  position: relative;
  padding-bottom: 50%;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}
.description__hero:hover .description__img {
  filter: grayscale(0);
}
.description__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease;
  filter: grayscale(1);
}
.description__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.description__header * {
  font-family: "FavoritCondC", "DIN Pro", sans-serif;
}
.description__content {
  padding: 16px;
  font-weight: 400;
  width: 100%;
}
.description__content * {
  color: black;
}
.description__content img {
  max-width: 100%;
}
.description__name {
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.description a:hover {
  color: #eeeeee;
}
.description__news-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.description__news {
  height: 100%;
  transition: all 0.5s ease;
  overflow: hidden;
  max-height: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.description__news a{
 /* white-space: nowrap;
  overflow: hidden;
  max-width: 200px;
  display: inline-block;
  text-overflow: ellipsis;*/
}
.description__buttons {
  display: flex;
  gap: 12px;
}
.description__buttons-bottom {
  padding: 20px;
}

.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;
}

.expert {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-area: expert;
  padding: 20px 0;
}
.expert__wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.expert__img {
  position: absolute;
  bottom: 30%;
  left: 20%;
  width: 40%;
  z-index: 1;
}
.expert__bg {
  position: relative;
  width: 100%;
  z-index: 0;
}
.expert__bottom {
  bottom: 7%;
  right: 7%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 86%;
}
.expert__bottom p {
  font-size: 12px;
  color: white;
}
.expert__button {
  width: 40px;
  bottom: 7%;
  right: 7%;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}
.expert__button img {
  width: 100%;
}
.expert__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: all 0.5s ease;
}
.expert__text.active {
  opacity: 1;
}
.expert__text h4 {
  font-size: 20px;
  color: black;
}
.expert__text p {
  color: black;
}

.product-item__rest {
  grid-area: rest;
}

@media (max-width: 1200px) {
  .krhead {
    width: 48px;
    min-width: 48px;
  }
  .krhead p {
    font-size: 32px;
    right: 6px;
  }
  .krhead p span {
    font-size: 16px;
  }
  .product-item__block {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "description rest" "description expert";
  }
  .product-item__date {
    height: 80px;
  }
  .more .btn {
    padding: 12px 8px;
    gap: 12px;
  }
  .more .btn__img {
    width: 40px;
  }
  .more .btn__desc {
    gap: 6px;
  }
  .more .btn__desc h3 {
    font-size: 16px;
  }
  .more .btn__desc span {
    font-size: 14px;
  }
  .description {
    margin-top: -80px;
  }
  .description__name {
    font-size: 24px;
  }
  .expert {
    padding: 0 20px 20px 0;
  }
  .expert__bottom p {
    font-size: 16px;
  }
  .expert__button img {
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .krhead, .product-section .krhead {
    padding: 20px 6px;
    width: 40px;
    min-width: 40px;
  }
  .krhead p, .product-section .krhead p {
    font-size: 20px;
  }
  .krhead p span, .product-section .krhead p span {
    font-size: 14px;
  }
  .product-item__block {
    grid-template-columns: 1fr;
    grid-template-areas: "description" "rest" "expert";
    margin-top: 0;
  }
  .product-item__date {
    height: 40px;
  }
  .product-item__date span {
    font-size: 20px;
  }
  .description {
    margin-top: 0;
    max-width: unset;
  }
  .description__name {
    font-size: 24px;
  }
  .more {
    padding: 0 12px;
  }
  .expert {
    padding: 0 20px 20px;
    max-width: 400px;
  }
  .expert__bottom p {
    font-size: 18px;
  }
  .expert__button img {
    width: 40px;
  }
  .product-section {
    grid-template-columns: 1fr;
  }
  .product-section .description__hero {
    padding-bottom: 50%;
  }
}

/* End */


/* Start:/bitrix/templates/digital-doc/include/modal/modal.css?17453972952831*/
.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/authOnlyMaterial/authOnlyMaterial.css?1745237999741*/
.ao {
  background: white;
  box-shadow: 0px -40px 30px 0px rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  position: relative;
  z-index: 10;
  border: 1px solid black;
}
.ao p {
  color: black;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
}
.ao__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.ao__buttons {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px 20px;
}
.ao__agitation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  position: relative;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 586px) {
  .ao__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* End */
/* /bitrix/templates/digital-doc/include/section/section.css?17576823777134 */
/* /bitrix/templates/digital-doc/include/modal/modal.css?17453972952831 */
/* /bitrix/templates/digital-doc/include/authOnlyMaterial/authOnlyMaterial.css?1745237999741 */
