<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.content .--release {
  /*box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);*/
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  position: relative;
  margin-bottom: 16px;
  border: 1px solid #ddd;
}

h2, h3 {
  font-weight: 700;
}

.content .--release .status-strip &gt; span {
  padding: 2px 8px;
  font-size: 13px;
  background-color: #377BC4;
  color: white;
}

.content .--release .status-strip {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 14px;
}

.content .--release &gt; .release-content {
  max-height: 0;
  transition: all ease .3s;
  overflow: hidden;
}

.content .--release.active &gt; .release-content {
  max-height: 4000px;
}

.content .--release.past {
  background-color: rgba(55,123,196,.04);
}

.content .--release:last-of-type {
  margin-bottom: 0;
}

.content .--release &gt; .release-button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  cursor: pointer;
  background-color: white;
  transition: all ease .3s;
}

.content .--release &gt; .release-button &gt; .release-button-info &gt; h2 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.4;
}

.content .--release &gt; .release-button &gt; .release-button-info {
  display: flex;
  align-items: center;
}

.content .--release &gt; .release-button:after {
  font-size: 25px;
  margin-left: auto;
  content: "\e64b";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  transform: rotate(0);
  transition: all ease .3s;
}

.content .--release.active &gt; .release-button:after {
  transform: rotate(180deg);
}

.release-content &gt; div {
  border-top: 1px solid lightgray;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -15px;
}

.release-content &gt; div &gt; div {
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid lightgray;
  border-radius: 25px;
  padding: 10px 10px 10px 25px;
  font-size: 15px;
}

.release-content &gt; div &gt; div h3 {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.4;
}

.release-content &gt; div &gt; div ul li {
  margin-bottom: 5px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  position: relative;
}

.release-content &gt; div &gt; div ul li:before {
  content: '';
  position: absolute;
  left: -12px;
  top: 8px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #377BC4;
}

.release-content &gt; div &gt; div ul li ul {
  margin-left: 10px;
  margin-top: 4px;
}

.release-content &gt; div &gt; div ul li ul li:before {
  background-color: white;
  border: 1px solid #377BC4;
}

.past-releases {
  margin: 15px 0;
}

.pdf-link {
  text-decoration: none;
  font-weight: 700;
  color: #377BC4;
}

.pdf-link:before {
  content: "\e6a4";
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: 700;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  margin-right: 5px;
  color: #333333;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pdf-link:hover:before {
  text-decoration: none;
}

.release-notes-intro {
  line-height: 1.4;
}

.release-notes-intro h2 {
  font-size: 18px;
  margin-bottom: 7px;
  line-height: 1.4;
}

.release-notes-intro a {
  color: #377BC4;
}

.release-notes-intro p {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.dropdownmenus &gt; li &gt; button {
  margin-bottom: 16px!important;
}

ul.dropdownmenus {
  padding-bottom: 16px;
}

li.scheduled.--release .release-button {
  background-color: #CAE1FF;
}

li.scheduled.--release .release-button:hover {
  background-color: #b6cbe6;
}

li.current.--release .release-button:hover {
  background-color: #f0f6ff;
}

li.recent-past.--release .release-button {
  background-color: #eeeeee;
}

li.recent-past.--release .release-button:hover {
  background-color: #dddddd;
}

li.distant-past.--release .release-button {
  background-color: #DCDCDC;
}

li.distant-past.--release .release-button:hover {
  background-color: #c6c6c6;
}


@media (max-width: 1024px) {
  .content .--release &gt; .release-button:hover {
    background-color: white;
  }
}

@media (max-width: 767px) {
  .content .--release &gt; .release-button {
    padding: 10px 15px 10px 10px;
  }
  .content .--release &gt; .release-button &gt; .release-button-info h2 {
    margin-bottom: 7px;
    font-size: 24px;
    line-height: 1;
  }
  .content .--release &gt; .release-button &gt; .release-button-info  {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .content .--release .status-strip {
    margin-left: 0;
  }
  .content .--release.active &gt; .release-content {
    max-height: 4000px;
  }
  .past-releases {
    margin: 30px 0;
    text-align: center;
  }
  .release-content &gt; div &gt; div {
    width: 100%;
  }
}
</pre></body></html>