/* *** Colours *** */
/* ***  post list *** */
.emvy-post-list-outer {
  position: relative;
}

.emvy-post-list-outer .preloader {
  position: absolute;
  display: block;
  left: calc(50% - 20px);
  top: 60px;
  top: calc(50vh - 60px);
  width: 40px;
  height: 40px;
  background: url(img/doppelpunkt.svg) no-repeat center center;
  background-size: contain;
  -webkit-animation-name: preloaderanimation;
          animation-name: preloaderanimation;
  -webkit-animation-duration: 1.75s;
          animation-duration: 1.75s;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

@-webkit-keyframes preloaderanimation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes preloaderanimation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

.emvy-post-list-outer.loading .preloader {
  opacity: 1;
}

.emvy-post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*margin-bottom: -30px;*/
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.emvy-post-list-outer.loading .emvy-post-list {
  opacity: 0;
}

/*main > .entry > .emvy-post-list:first-child {
	margin-top: -42px;
}*/
.emvy-post-list .emvy-post-list-item {
  -ms-flex-preferred-size: calc(50% - 15px);
      flex-basis: calc(50% - 15px);
  padding-bottom: 60px;
  /*padding-right: 15px;*/
}

@media screen and (max-width: 1199px) {
  .emvy-post-list .emvy-post-list-item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-bottom: 42px;
  }
}

.emvy-post-list[ersterpostfullwidth="ja"] .emvy-post-list-item:first-child {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/*.emvy-post-list .emvy-post-list-item:nth-child(2n) {
	padding-left: 15px;
	padding-right: 0;
}
.emvy-post-list .emvy-post-list-item:nth-child(2n+1) {
	padding-right: 15px;
}
.emvy-post-list[ersterpostfullwidth="ja"] .emvy-post-list-item:nth-child(2n) {
	padding-right: 15px;
	padding-left: 0;
}
.emvy-post-list[ersterpostfullwidth="ja"] .emvy-post-list-item:nth-child(2n+1) {
	padding-left: 15px;
	padding-right: 0;
}*/
.emvy-post-list .emvy-post-list-item .emvy-post-list-imagecontainer {
  position: relative;
  padding-top: 53.2%;
  /* width to height ratio */
  overflow: hidden;
  background: #e8e8e8;
}

.emvy-post-list .emvy-post-list-item .emvy-post-list-imagecontainer img {
  position: absolute;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.emvy-post-list .emvy-post-list-item .emvy-post-list-imagecontainer .headline_on_image {
  position: absolute;
  bottom: 50px;
  color: #176525;
  /*background-color: $color-lightgreen;*/
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 42px;
  padding-top: 7px;
  padding-bottom: 7px;
}

@media screen and (max-width: 1199px) {
  .emvy-post-list .emvy-post-list-item .emvy-post-list-imagecontainer .headline_on_image {
    font-size: 24px;
    line-height: 28px;
  }
}

.emvy-post-list .emvy-post-list-item .emvy-post-list-imagecontainer .headline_on_image span {
  background: #A8FF00;
  padding: 2px;
  -webkit-box-shadow: 30px 0 0 #A8FF00, -15px 0 0 #A8FF00;
          box-shadow: 30px 0 0 #A8FF00, -15px 0 0 #A8FF00;
}

@media screen and (min-width: 1200px) {
  .emvy-post-list[ersterpostfullwidth="ja"] .emvy-post-list-item:first-child .emvy-post-list-imagecontainer .headline_on_image {
    font-size: 54px;
    line-height: 54px;
  }
}

.emvy-post-list .emvy-post-list-item .emvy-post-list-imagecontainer .headline_on_image:empty {
  display: none;
}

.emvy-post-list[type="articles"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-datetitlewrapper {
  display: inline-block;
  margin-left: 11px;
}

.emvy-post-list[type="articles"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-cat {
  font-size: 16px;
  line-height: 26px;
  color: #349946;
  text-transform: uppercase;
  margin-top: 21px;
  display: inline-block;
}

.emvy-post-list .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-cat .divider:after {
  content: ", ";
}

.emvy-post-list .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-cat .divider:last-child {
  display: none;
}

.emvy-post-list .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-date {
  font-size: 16px;
  line-height: 26px;
  color: #262626;
  margin-bottom: 11px;
}

.emvy-post-list .emvy-post-list-item .emvy-post-list-textcontainer .item-title {
  margin-bottom: 15px;
}

.emvy-post-list .emvy-post-list-item .emvy-post-list-textcontainer .item-title a {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #349946;
}

/* Termine */
.emvy-post-list[type="termine"] {
  margin-bottom: 15px;
}

.emvy-post-list[type="termine"] .emvy-post-list-item {
  -ms-flex-preferred-size: calc( 33.33% - (15px * 2 / 3));
      flex-basis: calc( 33.33% - (15px * 2 / 3));
  padding: 15px;
  padding-top: 0;
  padding-bottom: 30px;
  padding-top: calc(53.2% / 3);
  /* width to height ratio */
  position: relative;
  margin-bottom: 15px;
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

@media (max-width: 1499px) {
  .emvy-post-list[type="termine"] .emvy-post-list-item {
    -ms-flex-preferred-size: calc( 50% - ( 21px / 2 ));
        flex-basis: calc( 50% - ( 21px / 2 ));
    padding-top: calc(53.2% / 2);
    /* width to height ratio */
  }
}

@media (max-width: 1280px) {
  .emvy-post-list[type="termine"] .emvy-post-list-item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-top: 53.2%;
    /* width to height ratio */
  }
}

@media (max-width: 1023px) {
  .emvy-post-list[type="termine"] .emvy-post-list-item {
    -ms-flex-preferred-size: calc( 50% - ( 21px / 2 ));
        flex-basis: calc( 50% - ( 21px / 2 ));
    padding-top: calc(53.2% / 2);
    /* width to height ratio */
  }
}

@media (max-width: 767px) {
  .emvy-post-list[type="termine"] .emvy-post-list-item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-top: 53.2%;
    /* width to height ratio */
  }
}

.emvy-post-list[type="termine"] .emvy-post-list-item:hover {
  opacity: 0.7;
}

.emvy-post-list[type="termine"] .emvy-post-list-item:nth-child(3n+3) {
  margin-right: 0;
}

.emvy-post-list[type="termine"] .emvy-post-list-item {
  background: #349946;
  color: #ffffff;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="green"] {
  background: #349946;
  color: #ffffff;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="green"] a {
  color: #ffffff;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="darkgreen"] {
  background: #176525;
  color: #ffffff;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="darkgreen"] a {
  color: #ffffff;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="lightgreen"] {
  background: #A8FF00;
  color: #176525;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="lightgreen"] a {
  color: #176525;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="white"] {
  background: #ffffff;
  color: #176525;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="white"] a {
  color: #176525;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .whole-tile-linked {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer {
  position: absolute;
  top: 6px;
  width: calc(100% - 30px);
  height: calc(100% - 6px);
  pointer-events: none;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-caticoncatwrapper {
  display: inline-block;
  position: absolute;
  right: 0;
  -webkit-transform: rotateZ(-8deg);
          transform: rotateZ(-8deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  top: 5px;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-caticoncatwrapper.visible {
  opacity: 1;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-caticoncatwrapper .emvy-post-list-caticon {
  width: 50px;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-caticoncatwrapper .emvy-post-list-caticon svg {
  max-height: 48px;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-caticoncatwrapper .emvy-post-list-cat {
  margin-top: 0;
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-datetitlewrapper {
  position: absolute;
  bottom: 0;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-date {
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 2px;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .item-title a {
  font-weight: 600;
  font-size: 17px;
  line-height: 23px;
}

@media screen and (max-width: 767px) {
  .emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .item-title a {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
  }
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-date, .emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .item-title a, .emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer {
  color: #ffffff;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-cat {
  color: #A8FF00;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-caticon svg * {
  fill: #A8FF00;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="green"] .emvy-post-list-textcontainer .emvy-post-list-date, .emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="green"] .emvy-post-list-textcontainer .item-title a, .emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="green"] .emvy-post-list-textcontainer {
  color: #ffffff;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="green"] .emvy-post-list-cat {
  color: #A8FF00;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="green"] .emvy-post-list-caticon svg * {
  fill: #A8FF00;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="darkgreen"] .emvy-post-list-textcontainer .emvy-post-list-date, .emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="darkgreen"] .emvy-post-list-textcontainer .item-title a, .emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="darkgreen"] .emvy-post-list-textcontainer {
  color: #ffffff;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="darkgreen"] .emvy-post-list-cat {
  color: #A8FF00;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="darkgreen"] .emvy-post-list-caticon svg * {
  fill: #A8FF00;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="lightgreen"] .emvy-post-list-textcontainer .emvy-post-list-date, .emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="lightgreen"] .emvy-post-list-textcontainer .item-title a, .emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="lightgreen"] .emvy-post-list-textcontainer {
  color: #176525;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="lightgreen"] .emvy-post-list-cat {
  color: #349946;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="lightgreen"] .emvy-post-list-caticon svg * {
  fill: #349946;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="white"] .emvy-post-list-textcontainer .emvy-post-list-date, .emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="white"] .emvy-post-list-textcontainer .item-title a, .emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="white"] .emvy-post-list-textcontainer {
  color: #176525;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="white"] .emvy-post-list-cat {
  color: #349946;
}

.emvy-post-list[type="termine"] .emvy-post-list-item[colortheme="white"] .emvy-post-list-caticon svg * {
  fill: #349946;
}

.emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-excerpt, .emvy-post-list[type="termine"] .emvy-post-list-item .emvy-post-list-textcontainer .emvy-post-list-link {
  display: none;
}

.emvy-post-list-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  display: none;
}

.emvy-post-list-pagination[pagination="ja"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagination-item {
  position: relative;
  margin: 0 7px;
  color: #349946;
  cursor: pointer;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.pagination-item:hover {
  color: #262626;
}

.pagination-item.active {
  color: #ffffff;
}

.pagination-item.active:after {
  content: " ";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 15px;
  background: #349946;
  z-index: -1;
}

.pagination-prev {
  width: 10px;
  background-image: url("data:image/svg+xml, %3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='-348.2 281.8 20.6 33.4' enable-background='new -348.2 281.8 20.6 33.4' xml:space='preserve'%3E%3Cpath fill='%23176525' d='M-347.2,297.3c-0.7,0.7-0.7,1.8,0,2.4l14.4,14.5c0.7,0.7,1.9,0.7,2.5,0l1.7-1.7c0.7-0.7,0.7-1.8,0-2.5 l-11.4-11.4l11.4-11.5c0.7-0.7,0.7-1.9,0-2.5l-1.7-1.7c-0.7-0.7-1.8-0.7-2.5,0L-347.2,297.3z'/%3E%3Cpath fill='%23FFFFFF' d='M-347.2,297.3l0.4,0.4l0,0L-347.2,297.3z M-347.2,299.7l0.4-0.4l0,0L-347.2,299.7z M-332.8,314.2l-0.4,0.4 l0,0l0,0L-332.8,314.2z M-328.5,310l0.4-0.3l0,0l0,0L-328.5,310z M-340,298.5l-0.4-0.4l-0.4,0.4l0.4,0.4L-340,298.5z M-328.5,287 l0.4,0.4l0,0l0,0L-328.5,287z M-332.8,282.8l-0.3-0.4l0,0l0,0L-332.8,282.8z M-347.5,296.9c-0.9,0.9-0.9,2.3,0,3.2l0.7-0.7 c-0.5-0.5-0.5-1.3,0-1.7L-347.5,296.9z M-347.5,300.1l14.4,14.5l0.7-0.7l-14.4-14.5L-347.5,300.1z M-333.1,314.6 c0.9,0.8,2.3,0.9,3.2,0l-0.7-0.7c-0.5,0.5-1.3,0.5-1.8,0L-333.1,314.6z M-329.9,314.5l1.7-1.7l-0.7-0.7l-1.7,1.7L-329.9,314.5z M-328.2,312.8c0.9-0.9,0.8-2.3,0-3.2l-0.7,0.7c0.5,0.6,0.5,1.4,0,1.8L-328.2,312.8z M-328.2,309.6l-11.4-11.4l-0.7,0.7l11.4,11.4 L-328.2,309.6z M-339.6,298.9l11.4-11.5l-0.7-0.7l-11.4,11.5L-339.6,298.9z M-328.2,287.4c0.8-0.9,0.9-2.3,0-3.2l-0.7,0.7 c0.5,0.5,0.5,1.3,0,1.8L-328.2,287.4z M-328.2,284.1l-1.7-1.7l-0.7,0.7l1.7,1.7L-328.2,284.1z M-329.9,282.4c-0.9-0.9-2.3-0.8-3.2,0 l0.7,0.7c0.6-0.5,1.4-0.5,1.8,0L-329.9,282.4z M-333.1,282.4l-14.4,14.5l0.7,0.7l14.4-14.5L-333.1,282.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  margin-right: 15px;
}

.pagination-prev:hover {
  background-image: url("data:image/svg+xml, %3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='-348.2 281.8 20.6 33.4' enable-background='new -348.2 281.8 20.6 33.4' xml:space='preserve'%3E%3Cpath fill='%23349946' d='M-347.2,297.3c-0.7,0.7-0.7,1.8,0,2.4l14.4,14.5c0.7,0.7,1.9,0.7,2.5,0l1.7-1.7c0.7-0.7,0.7-1.8,0-2.5 l-11.4-11.4l11.4-11.5c0.7-0.7,0.7-1.9,0-2.5l-1.7-1.7c-0.7-0.7-1.8-0.7-2.5,0L-347.2,297.3z'/%3E%3Cpath fill='%23FFFFFF' d='M-347.2,297.3l0.4,0.4l0,0L-347.2,297.3z M-347.2,299.7l0.4-0.4l0,0L-347.2,299.7z M-332.8,314.2l-0.4,0.4 l0,0l0,0L-332.8,314.2z M-328.5,310l0.4-0.3l0,0l0,0L-328.5,310z M-340,298.5l-0.4-0.4l-0.4,0.4l0.4,0.4L-340,298.5z M-328.5,287 l0.4,0.4l0,0l0,0L-328.5,287z M-332.8,282.8l-0.3-0.4l0,0l0,0L-332.8,282.8z M-347.5,296.9c-0.9,0.9-0.9,2.3,0,3.2l0.7-0.7 c-0.5-0.5-0.5-1.3,0-1.7L-347.5,296.9z M-347.5,300.1l14.4,14.5l0.7-0.7l-14.4-14.5L-347.5,300.1z M-333.1,314.6 c0.9,0.8,2.3,0.9,3.2,0l-0.7-0.7c-0.5,0.5-1.3,0.5-1.8,0L-333.1,314.6z M-329.9,314.5l1.7-1.7l-0.7-0.7l-1.7,1.7L-329.9,314.5z M-328.2,312.8c0.9-0.9,0.8-2.3,0-3.2l-0.7,0.7c0.5,0.6,0.5,1.4,0,1.8L-328.2,312.8z M-328.2,309.6l-11.4-11.4l-0.7,0.7l11.4,11.4 L-328.2,309.6z M-339.6,298.9l11.4-11.5l-0.7-0.7l-11.4,11.5L-339.6,298.9z M-328.2,287.4c0.8-0.9,0.9-2.3,0-3.2l-0.7,0.7 c0.5,0.5,0.5,1.3,0,1.8L-328.2,287.4z M-328.2,284.1l-1.7-1.7l-0.7,0.7l1.7,1.7L-328.2,284.1z M-329.9,282.4c-0.9-0.9-2.3-0.8-3.2,0 l0.7,0.7c0.6-0.5,1.4-0.5,1.8,0L-329.9,282.4z M-333.1,282.4l-14.4,14.5l0.7,0.7l14.4-14.5L-333.1,282.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.pagination-next {
  width: 10px;
  background-image: url("data:image/svg+xml, %3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='-348.5 281.9 20.6 33.4' enable-background='new -348.5 281.9 20.6 33.4' xml:space='preserve'%3E%3Cpath fill='%23176525' d='M-328.8,299.8c0.7-0.7,0.7-1.8,0-2.4l-14.4-14.5c-0.7-0.7-1.9-0.7-2.5,0l-1.7,1.7c-0.7,0.7-0.7,1.8,0,2.5 l11.4,11.4l-11.4,11.5c-0.7,0.7-0.7,1.9,0,2.5l1.7,1.7c0.7,0.7,1.8,0.7,2.5,0L-328.8,299.8z'/%3E%3Cpath fill='%23FFFFFF' d='M-328.8,299.8l-0.4-0.4l0,0L-328.8,299.8z M-328.8,297.3l-0.4,0.4l0,0L-328.8,297.3z M-343.2,282.9l0.4-0.4 l0,0l0,0L-343.2,282.9z M-347.5,287.1l-0.4,0.3l0,0l0,0L-347.5,287.1z M-336,298.5l0.4,0.4l0.4-0.4l-0.4-0.4L-336,298.5z M-347.5,310l-0.4-0.4l0,0l0,0L-347.5,310z M-343.2,314.3l0.3,0.4l0,0l0,0L-343.2,314.3z M-328.5,300.1c0.9-0.9,0.9-2.3,0-3.2 l-0.7,0.7c0.5,0.5,0.5,1.3,0,1.7L-328.5,300.1z M-328.5,297l-14.4-14.5l-0.7,0.7l14.4,14.5L-328.5,297z M-342.9,282.5 c-0.9-0.8-2.3-0.9-3.2,0l0.7,0.7c0.5-0.5,1.3-0.5,1.8,0L-342.9,282.5z M-346.1,282.5l-1.7,1.7l0.7,0.7l1.7-1.7L-346.1,282.5z M-347.8,284.2c-0.9,0.9-0.8,2.3,0,3.2l0.7-0.7c-0.5-0.6-0.5-1.4,0-1.8L-347.8,284.2z M-347.8,287.5l11.4,11.4l0.7-0.7l-11.4-11.4 L-347.8,287.5z M-336.4,298.2l-11.4,11.5l0.7,0.7l11.4-11.5L-336.4,298.2z M-347.8,309.7c-0.8,0.9-0.9,2.3,0,3.2l0.7-0.7 c-0.5-0.5-0.5-1.3,0-1.8L-347.8,309.7z M-347.8,312.9l1.7,1.7l0.7-0.7l-1.7-1.7L-347.8,312.9z M-346.1,314.6c0.9,0.9,2.3,0.8,3.2,0 l-0.7-0.7c-0.6,0.5-1.4,0.5-1.8,0L-346.1,314.6z M-342.9,314.6l14.4-14.5l-0.7-0.7l-14.4,14.5L-342.9,314.6z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center 5px;
  cursor: pointer;
  margin-left: 15px;
}

.pagination-next:hover {
  background-image: url("data:image/svg+xml, %3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='-348.5 281.9 20.6 33.4' enable-background='new -348.5 281.9 20.6 33.4' xml:space='preserve'%3E%3Cpath fill='%23349946' d='M-328.8,299.8c0.7-0.7,0.7-1.8,0-2.4l-14.4-14.5c-0.7-0.7-1.9-0.7-2.5,0l-1.7,1.7c-0.7,0.7-0.7,1.8,0,2.5 l11.4,11.4l-11.4,11.5c-0.7,0.7-0.7,1.9,0,2.5l1.7,1.7c0.7,0.7,1.8,0.7,2.5,0L-328.8,299.8z'/%3E%3Cpath fill='%23FFFFFF' d='M-328.8,299.8l-0.4-0.4l0,0L-328.8,299.8z M-328.8,297.3l-0.4,0.4l0,0L-328.8,297.3z M-343.2,282.9l0.4-0.4 l0,0l0,0L-343.2,282.9z M-347.5,287.1l-0.4,0.3l0,0l0,0L-347.5,287.1z M-336,298.5l0.4,0.4l0.4-0.4l-0.4-0.4L-336,298.5z M-347.5,310l-0.4-0.4l0,0l0,0L-347.5,310z M-343.2,314.3l0.3,0.4l0,0l0,0L-343.2,314.3z M-328.5,300.1c0.9-0.9,0.9-2.3,0-3.2 l-0.7,0.7c0.5,0.5,0.5,1.3,0,1.7L-328.5,300.1z M-328.5,297l-14.4-14.5l-0.7,0.7l14.4,14.5L-328.5,297z M-342.9,282.5 c-0.9-0.8-2.3-0.9-3.2,0l0.7,0.7c0.5-0.5,1.3-0.5,1.8,0L-342.9,282.5z M-346.1,282.5l-1.7,1.7l0.7,0.7l1.7-1.7L-346.1,282.5z M-347.8,284.2c-0.9,0.9-0.8,2.3,0,3.2l0.7-0.7c-0.5-0.6-0.5-1.4,0-1.8L-347.8,284.2z M-347.8,287.5l11.4,11.4l0.7-0.7l-11.4-11.4 L-347.8,287.5z M-336.4,298.2l-11.4,11.5l0.7,0.7l11.4-11.5L-336.4,298.2z M-347.8,309.7c-0.8,0.9-0.9,2.3,0,3.2l0.7-0.7 c-0.5-0.5-0.5-1.3,0-1.8L-347.8,309.7z M-347.8,312.9l1.7,1.7l0.7-0.7l-1.7-1.7L-347.8,312.9z M-346.1,314.6c0.9,0.9,2.3,0.8,3.2,0 l-0.7-0.7c-0.6,0.5-1.4,0.5-1.8,0L-346.1,314.6z M-342.9,314.6l14.4-14.5l-0.7-0.7l-14.4,14.5L-342.9,314.6z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}
/*# sourceMappingURL=block.css.map */