@keyframes slideDown {
  0% {
    max-height: 0px;
  }
  100% {
    max-height: 100vw;
  }
}
@keyframes slideUp {
  0% {
    max-height: 100vw;
  }
  100% {
    max-height: 0;
  }
}
.updates-page {
  max-width: 960px;
  margin: 0 auto;
}

.update {
  border-radius: 5px;
  margin-top: 20px;
  border: 1px solid #dddddd;
}
.update__header {
  padding: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.update__title {
  font-size: 18px;
  line-height: 1em;
  color: #000000;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  margin: 0;
}
.update__arrow {
  margin-left: auto;
  right: 30px;
  width: 30px;
  pointer-events: none;
  transition: transform 300ms;
  display: flex;
}
.update__arrow-img {
  width: 80%;
  height: 80%;
  margin: auto;
}
.update__arrow.rotate {
  transform: rotate(180deg);
  transform-origin: center;
}
.update__body {
  position: relative;
  overflow: hidden;
  animation-name: slideUp;
  animation-duration: 500ms;
  max-height: 0;
}
.update__body.open {
  animation-name: slideDown;
  animation-duration: 500ms;
  max-height: none;
  border-top: 2px solid #dddddd;
}
.update__content {
  padding: 20px 30px;
}
.update__content-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-family: "Roboto", sans-serif;
}
.update__content-link {
  color: #0e53a7;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
.update__content-link:hover {
  color: #0e53a7;
  opacity: 0.8;
}
.update__content-date {
  margin-left: auto;
  font-size: 18px;
  color: #000000;
  font-weight: 300;
}
.update__content-size, .update__content-date {
  font-size: 16px;
  color: #000000;
}
.update__content-size {
  margin-left: 20px;
}
.update__content .item-description .head {
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 20px;
}
.update__content .block-description p, .update__content .block-description li {
  font-size: 18px;
  line-height: 1.2em;
  color: #000000;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 600px) {
  .update__title {
    font-size: 18px;
  }
  .update__arrow {
    width: 30px;
  }
  .update__arrow-img {
    width: 30px;
  }
  .update__content-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .update__content-link {
    font-size: 18px;
  }
  .update__content-size, .update__content-date {
    font-size: 14px;
    margin: 0;
    margin-top: 10px;
  }
  .update__content .item-description .head {
    font-size: 16px;
  }
}

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