@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: 'swap';
  font-weight: 400;
  src: url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-regular.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-regular.eot?#iefix") format("embedded-opentype"), url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-regular.woff2") format("woff2"), url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-regular.woff") format("woff"), url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-regular.ttf") format("truetype"), url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-regular.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: 'swap';
  font-weight: 700;
  src: url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-700.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-700.eot?#iefix") format("embedded-opentype"), url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-700.woff2") format("woff2"), url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-700.woff") format("woff"), url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-700.ttf") format("truetype"), url("https://img.lrytas.lt/lib/fonts/OpenSans/open-sans-v16-latin_latin-ext-700.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

.grid--main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 32px 1fr 32px 1fr 32px 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-gap: 32px 16px;
      grid-template-areas: "two two smallpostone" 
 "two two smallposttwo"
 "single1 single2 single3"
 "single4 single5 single6"; }
  .grid--main .col:first-child {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: two; }
  .grid--main .col:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    grid-area: smallpostone; }
  .grid--main .col:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
    grid-area: smallposttwo; }
  .grid--main .col:nth-child(4) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: single1; }
  .grid--main .col:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
    grid-area: single2; }
  .grid--main .col:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
    grid-area: single3; }
  .grid--main .col:nth-child(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    grid-area: single4; }
  .grid--main .col:nth-child(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
    grid-area: single5; }
  .grid--main .col:nth-child(9) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
    grid-area: single6; }

.grid:not(.grid--main) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  overflow: hidden; }
  .grid:not(.grid--main) .col {
    width: 33.333%;
    padding: 0 8px;
    margin-bottom: 32px; }

.row {
  margin-left: -8px;
  margin-right: -8px; }
  .row:after {
    content: '';
    display: table;
    clear: both; }
  .row .col {
    float: left;
    width: 25%;
    padding: 0 8px; }

@media (max-width: 768px) {
  .row .col,
  .grid:not(.grid-main) .col {
    width: 50%;
    margin-bottom: 16px; } }

@media (max-width: 480px) {
  .grid--main {
    display: block; }
  .col {
    margin-bottom: 16px;
    padding: 0 7px; }
    .col--large {
      padding: 0; }
  .row,
  .grid:not(.grid-main) {
    margin-left: 0;
    margin-right: 0; }
    .row .col,
    .grid:not(.grid-main) .col {
      width: 100%; } }

.post__media {
  display: block;
  text-decoration: none;
  background-color: whitesmoke;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative; }
  .post__media:before {
    content: '';
    display: block;
    padding-bottom: 66.6%; }

.post__title {
  margin-top: 16px;
  font-size: 18px;
  line-height: 22px; }
  .post__title .title {
    color: #333; }
  .post__title .post-subheadline {
    font-size: 14px; }
  .post__title .comments,
  .post__title .post-subheadline {
    color: #e5202e; }

.post__summary {
  display: block;
  font-size: 18px;
  line-height: 22px;
  color: #333;
  margin: 10px 0; }

.post__extra {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .post__extra .icon {
    display: block;
    text-decoration: none; }
    .post__extra .icon img {
      display: inline-block;
      vertical-align: middle; }
    .post__extra .icon + .icon {
      margin-left: 16px; }

.post--large .post__title {
  font-size: 24px;
  line-height: 28px; }
  .post--large .post__title .post-subheadline {
    font-size: 16px; }

.animate {
  -ms-transform: translateY(100%);
      transform: translateY(100%);
  animation: moveUp 0.65s ease forwards; }

@keyframes moveUp {
  0% { }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.post-label {
  display: block;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  height: 25px;
  line-height: 26px;
  background: #e5202e;
  padding: 0 9px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 1; }

@media (max-width: 480px) {
  .post:not(.post--large) .post__media {
    float: left;
    position: relative;
    width: 134px;
    margin-right: 16px; }
    .post:not(.post--large) .post__media:before {
      display: block;
      content: '';
      padding-bottom: 67.16418%; }
  .post:not(.post--large) .post__title {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    color: #333; }
  .post:not(.post--large):after {
    content: '';
    display: table;
    clear: both; }
  .post.post--large .post__title,
  .post.post--large .post__summary,
  .post.post--large .post__extra {
    padding: 0 7px; } }

.ad {
  margin: 0 auto;
  width: 100% !important;
  height: auto !important; }
  .ad iframe {
    display: block;}
  .ad--vertical {
    width: 300px;
    height: 600px;
    background: #e5202e; }
  .ad--horizontal {
    width: 1200px;
    height: 250px;
    background: #e5202e; }
  .ad--small {
    width: 300px;
    height: 250px;
    background: #e5202e; }
  .ad--mobile {
    display: none;
    margin: 16px auto; }
  .ad--all {
    margin: 16px auto; }
  .ad + .ad {
    margin-top: 16px; }

@media (max-width: 480px) {
  .ad.ad--mobile {
    display: block; } }

.supertags {
  display: none;
  margin: 32px 0; }
  .supertags .page-title .title {
    text-transform: none; }
  .supertags .post .post__title {
    font-size: 14px;
    line-height: 18px; }
  .supertags .more {
    padding-bottom: 0;
    padding-top: 30px;
    margin-bottom: 0;
    border: 0; }

@media (max-width: 768px) {
  .supertags .post .post__title {
    height: 55px;
    overflow: hidden; } }

@media (max-width: 480px) {
  .supertags .post .post__title {
    height: auto; } }

.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: none; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #e5202e; }

.hamburger-box {
  width: 31px;
  height: 22px;
  display: inline-block;
  vertical-align: top;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 31px;
    height: 4px;
    background-color: #e5202e;
    border-radius: 0;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -9px; }
  .hamburger-inner::after {
    bottom: -9px; }

.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 9px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 18px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 9px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 9px, 0) rotate(-45deg); }

body {
  font-family: "Open Sans", Arial, sans-serif;
  margin: 0; }

html.is-menu-open,
html.is-menu-open body {
  overflow: hidden;
  position: relative;
  height: 100%; }

* {
  box-sizing: border-box; }

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

h1,
h2,
h3,
h4,
p {
  margin: 0; }

a {
  text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto 15px auto; }

.page-wrap .page-content,
.page-wrap .page-side {
  float: left; }

.page-wrap .page-content {
  width: 884px; }

.page-wrap .page-side {
  width: 300px;
  margin-left: 16px;
  margin-top: 16px; }

.page-wrap__inner:after {
  content: '';
  display: table;
  clear: both; }

.section {
  margin-bottom: 30px; }
  .section.filtered .page-title {
    display: none; }

#section-main {
  margin-bottom: 64px; }

.page-title.section-title {
  margin-bottom: 11px; }

.more {
  display: block;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 18px;
  text-align: right; }
  .more:after {
    content: '';
    display: table;
    clear: both; }

.btn.btn--more {
  display: block;
  float: right;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  color: #333;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 1px; }
  .btn.btn--more .arrow {
    display: inline-block;
    height: 8px;
    width: 12px;
    background: url("https://img.lrytas.lt/lib/gfx/new/icons/arrow.png") no-repeat center center/cover; }

.page-header {
  padding: 40px 0; }

.page-title {
  margin-bottom: 16px; }
  .page-title .title,
  .page-title .title a {
    display: block;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    color: #333; }
  .page-title .subtitle {
    display: none;
    color: #e5202e;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    margin-top: 6px; }

.page-nav ul {
  overflow: hidden; }
  .page-nav ul li {
    float: left; }
    .page-nav ul li a {
      display: block;
      font-size: 18px;
      color: #444; }
      .page-nav ul li a.active {
        color: #e5202e;
        font-weight: 700; }
    .page-nav ul li + li {
      margin-left: 16px; }

.hamburger {
  display: none; }

@media (max-width: 1216px) {
  .page-wrap .page-content {
    width: 100%;
    padding: 0 16px;
    float: none; }
  .page-wrap .page-side {
    display: none; }
  .page-wrap .ad--horizontal {
    display: none; } }

@media (max-width: 786px) {
  .page-header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    height: 80px; }
    .page-header .page-title {
      margin: 0; }
      .page-header .page-title .title {
        font-size: 18px;
        line-height: 14px;
        margin: 0; }
      .page-header .page-title .subtitle {
        display: block; }
  .page-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    z-index: 1;
    box-shadow: 0px 0px 12px 3px rgba(119, 120, 121, 0.25);
    background: #fff;
    display: none; }
    .page-nav:before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 5px 7px 5px;
      border-color: transparent transparent #ffffff transparent;
      position: absolute;
      top: -7px;
      right: 18px; }
    .page-nav ul li {
      float: none; }
      .page-nav ul li a {
        padding: 22px 30px;
        font-size: 14px;
        line-height: 14px;
        text-transform: uppercase;
        font-weight: 700; }
        .page-nav ul li a:hover, .page-nav ul li a:active, .page-nav ul li a:focus, .page-nav ul li a.active {
          background: #f5f5f5; }
      .page-nav ul li + li {
        margin: 0; }
    .page-nav.active {
      display: block; }
  .hamburger {
    display: block; } }

@media (max-width: 480px) {
  .page-title .title {
    font-size: 18px;
    line-height: 18px; }
  .page-wrap .page-content {
    padding: 0; }
  .section-title,
  .page-header {
    padding: 0 7px; }
  .more {
    margin: 0;
    padding: 0 7px;
    border: 0; } }

.postsWidget__nav {
  height: 44px;
  position: relative;
  border-bottom: 1px solid #e5e5e5; }
  .postsWidget__nav .nav-link {
    display: -ms-flexbox;
    display: flex;
    float: left;
    width: 50%;
    height: 100%;
    text-align: center;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    font-size: 12px;
    letter-spacing: 1px;
    color: #aaa;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease; }
    .postsWidget__nav .nav-link.active, .postsWidget__nav .nav-link:hover {
      color: #e5202e; }
    .postsWidget__nav .nav-link:last-child:after {
      content: '';
      display: block;
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 50%;
      height: 1px;
      background: #e5202e;
      transition: left 0.3s ease; }
    .postsWidget__nav .nav-link:last-child.active:after {
      left: 50% !important; }
    .postsWidget__nav .nav-link:first-child.active ~ .postsWidget__nav .nav-link:last-child:after {
      left: 0; }
  .postsWidget__nav:after {
    content: '';
    display: table;
    clear: both; }

.postsWidget__extra {
  padding: 13px 0; }
  .postsWidget__extra:after {
    content: '';
    display: table;
    clear: both; }

.postsWidget .postsWidgetTabs__tab {
  display: none; }

.postsWidget .postsWidgetTabs__tab.active {
  display: block; }

.postsWidget .widgetPost {
  display: block;
  margin-top: 16px; }
  .postsWidget .widgetPost__media {
    float: left;
    position: relative;
    display: block;
    width: 134px;
    background-color: #0fa4ef;
    margin-right: 16px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center; }
    .postsWidget .widgetPost__media:before {
      display: block;
      content: '';
      padding-bottom: 66.666%; }
  .postsWidget .widgetPost__content .title {
    font-size: 14px;
    line-height: 16px;
    color: #333; }
    .postsWidget .widgetPost__content .title a {
      display: block;
      text-decoration: none;
      color: inherit; }
  .postsWidget .widgetPost--video .widgetPost__media .play {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(51, 51, 51, 0.6);
    height: 45px;
    width: 45px;
    border-radius: 100%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .postsWidget .widgetPost--video .widgetPost__media .play:after {
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 0 7px 11px;
      border-color: transparent transparent transparent #ffffff; }
  .postsWidget .widgetPost:after {
    content: '';
    display: table;
    clear: both; }

