﻿/* === header.css === */
header {
  border-bottom: 3px solid #f0f0f0;
  background: #32373c;
  width: 100%;
}
header .container {
  height: 64px;
}
header .logo {
  display: inline-block;
  position: relative;
  left: calc(50% - 32px);
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  text-align: center;
}
header .logo img {
  position: relative;
}
.logo svg,
.logo img {
  width: 80px;
  padding-top: 18px;
  box-sizing: content-box;
}
header .search {
  display: none;
  position: absolute;
  background: #666;
  width: 100%;
  left: 0;
  z-index: 999;
  padding: 12px 16px;
  line-height: 75px;
  top: 64px;
  text-align: center;
  box-sizing: border-box;
}
header input[type="search"] {
  padding: 12px;
  width: 250px;
}
header input[type="submit"] {
  padding: 12px;
}
header .icon-search,
header .toggle-nav {
  position: absolute;
  width: auto;
  height: 64px;
  z-index: 1;
  top: 0;
}
header .icon-search {
  right: 0;
}
header .icon-search > * {
  width: 64px;
  height: 64px;
  padding: 20px;
  box-sizing: border-box;
  fill: #fff;
}
header .toggle-nav {
  padding: 20px;
  box-sizing: border-box;
  left: 0;
}
header .toggle-nav .hamburger-icon {
  width: 28px;
  height: 24px;
  position: relative;
  display: inline-block;
}
header .toggle-nav .hamburger-icon span,
header .toggle-nav .hamburger-icon span:after,
header .toggle-nav .hamburger-icon span:before {
  width: 28px;
  height: 2px;
  border-radius: 0;
  background-color: #fff;
  position: absolute;
}
header .toggle-nav.active .hamburger-icon span {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
header .toggle-nav.active .hamburger-icon span:before {
  transform: translate3d(0, -10px, 0) rotate(-90deg);
}
header .toggle-nav.active .hamburger-icon span:after {
  opacity: 0;
}
header .toggle-nav .hamburger-icon span {
  top: 0;
}
header .toggle-nav .hamburger-icon span:after,
header .toggle-nav .hamburger-icon span:before {
  content: "";
  display: block;
}
header .toggle-nav .hamburger-icon span:before {
  top: 10px;
}
header .toggle-nav .hamburger-icon span:after {
  top: 20px;
}
header ul.menu,
header ul.menu li,
header ul.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header ul.menu {
  box-sizing: border-box;
  position: absolute;
  display: none;
  overflow: auto;
  height: auto;
  right: 0;
  z-index: 999;
  background: #333;
  color: #fff;
  padding: 20.5px;
  width: 100%;
}
header ul.menu li {
  float: left;
  width: 100%;
}
header ul.menu li a {
  text-decoration: none;
}
header ul.menu a:active,
header ul.menu a:focus,
header ul.menu a:hover,
header ul.menu li.sfHover,
header ul.menu li:hover {
  outline: 0;
}
header ul.menu ul li {
  float: none;
  display: block;
  position: relative;
  top: 0;
  right: 0;
}
header ul.menu li:after {
  content: none;
}
header ul.menu .menu-item-has-children {
  position: unset;
  width: 100%;
}
header ul.menu .menu-item-has-children a {
  position: relative;
  box-sizing: border-box;
  color: #ddd;
}
header ul.menu .menu-item-has-children .menu-item-has-children > a {
  color: #777;
  font-size: 0.85rem !important;
}
header ul.menu > li.menu-item-has-children > .sub-menu .sub-menu li > a:after,
header
  ul.menu
  > li.menu-item-has-children
  > .sub-menu
  > li:not(.menu-item-has-children)
  > a:after,
header ul.menu > li.menu-item-has-children > a:after {
  position: absolute;
  right: 0;
}
header ul.menu > li.menu-item-has-children > a:after {
  content: url("data:image/svg+xml; utf8,");
  top: 24px;
  opacity: 0.9;
}
header ul.menu > li.menu-item-has-children > .sub-menu .sub-menu li > a:after,
header
  ul.menu
  > li.menu-item-has-children
  > .sub-menu
  > li:not(.menu-item-has-children)
  > a:after {
  content: url("data:image/svg+xml; utf8,");
  top: 12px;
  opacity: 0.6;
}
header ul.menu > li.menu-item-has-children .sub-menu li > a:after {
  font-size: 0.8em;
  color: #ddd;
}
header ul.menu > li.menu-item-has-children > a.active:after {
  transform: rotate(-270deg);
}
header ul.menu .menu-item-has-children ul {
  min-width: 10em;
  width: auto;
}
header .sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.5s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: max-height 0.5s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: max-height 0.5s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: max-height 0.5s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
header .active ~ .sub-menu {
  max-height: 100vh;
  overflow: visible;
  opacity: 1;
}
header .active ~ .sub-menu .sub-menu {
  max-height: 100vh;
  overflow: visible;
  opacity: 1;
}
header ul.menu .sub-menu > .menu-item-has-children > a {
  cursor: auto;
}
header ul.menu > li > a {
  font-weight: 600;
  color: #ddd;
  padding: 20px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  display: block;
  width: 100%;
}
header .sub-menu > li a {
  font-size: 14px;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 24px 12px 12px;
  line-height: 21px;
}
header .sub-menu .sub-menu > li > a {
  color: #ddd;
  padding-left: 24px;
}
@media screen and (min-width: 640px) {
  ul.menu > .menu-item-has-children > .sub-menu {
    min-width: 12em;
  }
  .search {
    width: 360px;
    position: absolute;
    top: 100%;
    right: 0;
    left: unset;
  }
  header ul.menu .menu-item-has-children .sub-menu a {
    color: #444;
    padding-left: 0;
  }
  header
    ul.menu
    > li.has-mega-menu
    .menu-item-has-children
    .sub-menu
    li
    > a:after {
    font-size: 0.85em;
    color: #777;
  }
  header ul.menu > li > a {
    font-weight: 500;
    color: #fff;
    border-bottom: 0;
    padding: 0 14px;
    line-height: 64px;
    height: 64px;
    display: block;
  }
  header .sub-menu {
    max-height: 100vh;
    overflow: visible;
    opacity: 1;
  }
  header .sub-menu > .menu-item-has-children > a {
    display: block;
    font-weight: 600;
    color: #444 !important;
    margin-bottom: 10px !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 21px;
    padding: 10px 0;
    text-transform: uppercase;
  }
  header ul.menu > li {
    line-height: 64px;
    width: auto;
  }
  header ul.menu .menu-item-has-children:hover .sub-menu .sub-menu {
    visibility: visible !important;
    opacity: 1 !important;
    position: unset !important;
    left: 0 !important;
  }
  header ul.menu li:hover ul {
    left: 0;
    top: auto;
    z-index: 99;
  }
  header ul.menu li:hover > a {
    color: #222;
  }
  header ul.menu li:hover li {
    background: initial;
  }
  header ul.menu li:hover {
    background: #fff;
    visibility: inherit;
  }
  header ul.menu .menu-item-has-children {
    width: auto;
  }
  header ul.menu .menu-item-has-children:not(.has-mega-menu) {
    position: relative;
  }
  header li.has-mega-menu:hover > .sub-menu {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 2em;
  }
  header ul.menu ul li {
    width: 100%;
  }
  header .logo {
    position: absolute;
    z-index: 99999;
    left: 0;
    margin-left: 16px;
  }
  header ul.menu {
    position: unset;
    display: table !important;
    margin: 0 auto;
    padding: 0;
    background: initial;
    width: auto;
  }
  header .toggle-nav {
    display: none !important;
  }
  header ul.menu .menu-item-has-children:hover > ul {
    visibility: visible;
    opacity: 1;
  }
  header li.menu-item-has-children .sub-menu {
    position: absolute;
    top: 0;
    z-index: 100;
    left: 0;
    right: 0;
    max-width: 220px;
    margin: auto;
    background: #eee;
  }
  header li.has-mega-menu .sub-menu {
    width: 100%;
    max-width: 920px;
  }
  header ul.menu > .menu-item-has-children > .sub-menu {
    min-width: 24em;
    width: auto;
    padding: 20px;
    box-shadow: unset;
    visibility: hidden;
    opacity: 0;
  }
  header ul.menu .menu-item-has-children .sub-menu .sub-menu {
    padding-left: 0;
  }
  header ul.menu li {
    padding: 0;
  }
  header .sub-menu .sub-menu > li a {
    color: #555 !important;
    font-size: 14px !important;
    font-weight: 400;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 10px 10px 0 !important;
    line-height: 21px;
    box-sizing: border-box;
  }
  header ul.menu > li.menu-item-has-children > a:after {
    content: none;
  }
  header ul.menu li.menu-item-has-children .sub-menu li a:after {
    color: #555;
  }
  header ul.menu > li.menu-item-has-children > .sub-menu .sub-menu li > a:after,
  header
    ul.menu
    > li.menu-item-has-children
    > .sub-menu
    > li:not(.menu-item-has-children)
    > a:after {
    content: url("data:image/svg+xml; utf8,");
    top: 12px;
    opacity: 0.5;
  }
}

/* === cards.css === */
.casino-card-slider {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
}

.casino-card-slider .top-heading-card-promo {
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 0.8rem;
  background-color: #fff !important;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 8px 0 0;
  flex: 0 0 104.7px;
  max-width: 100%;
  border:1px solid #ddd;
}

.casino-card-slider .top-heading-card-promo:last-child {
  margin-right: 0;
}

.top-heading-card-promo-title {
  text-align: center;
  margin-bottom: 0.8rem;
  margin-top: 16px;
  letter-spacing: -0.5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 4rem;
  color: #1c1c1c;
}

.top-heading-card-promo-buttons a {
    padding: calc(0.667em + 2px) calc(0.667em + 2px);
  width: 100%;
}

/* === listing.css === */
.toplist {
  padding: 0;
  margin-top: 2rem;
}

.toplist-main {
  position: relative;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

li.toplist-main, 
.toplist.casino-banner .toplist-main{
  padding: 2rem;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 0.8rem;
}

li.toplist-main {
  margin-bottom: 3rem;
}

.toplist.casino-banner .toplist-main { background-color:#f2f2f2}

.toplist-main .toplist-main-inner {
  max-width: 29rem;
}

.toplist-main,
.toplist-main .logo {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

.toplist-main .logo {
  position: relative;
  -webkit-box-align: start;
  align-items: flex-start;
}
.toplist-main .logo img {
  width: 16rem;
  border-radius: 8px;
  margin: 1rem 1rem 1.5rem;
  height: auto;
}
.toplist-main .logo-info {
  justify-content: center;
}

.toplist-main .title-rating .toplist-badges,
.toplist-main .title-rating .toplist-title {
  display: block;
}

.toplist-main .toplist-title {
  width: 100%;
  white-space: nowrap;
}
.toplist-main .toplist-title a,
.toplist-main .toplist-title span {
  display: -webkit-box;
  display: flex;
  color: #000;
  font-weight: 700;
}
.toplist-main .toplist-title a {
  color: #00863a !important;
}

.toplist-main .title-rating {
  display: grid;
}

.toplist-main .toplist-oneliner {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
}

.toplist .info p {
  font-size: 1.2rem;
  color: #666;
  line-height: 2.1rem;
  padding-top: 0.6rem;
  margin-bottom: 0;
}

.info {
  width: 100%;
}

.toplist-cta {
  margin-top: 2rem;
  text-align: center;
}

.toplist-cta a.wp-block-button__link {
    height: 54px;
    display: flex;
    align-items: center;
	justify-content:center;
	width: 209.66px;
    margin-left: auto;
    margin-right: auto;
}

.custom-label {
  position: absolute;
  top: -12px;
  border-radius: 8px 8px 0 0;
  background-color: #00863a;
  padding: 0px 8px;
  color: #fff;
  width: 162px;
  letter-spacing: -0.5px;
  line-height: 28px;
}
.custom-label svg {
    display: block;
    float: left;
    width: 18px;
    margin-right: 8px;
    margin-top: 5px;}

.custom-label span {
  line-height: 28px;
}

.reviewread {
  font-size: 1em;
  padding: 0.667em 1.333em;
}

@media screen and (min-width: 640px) {
  .custom-label {
    left: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .custom-label {
    left: auto;
    right: auto;
  }
 li.toplist-main .info .toplist_name {
    display: none;
  }
	
	
}

@media only screen and (min-width: 864px) {
	
  li.toplist-main .toplist-main-inner, .toplist.casino-banner .toplist-main-inner {
    max-width: unset;
    display: flex;
    grid-column-gap: 2rem;
    width: 100%;
  }
	
  li.toplist-main, .toplist.casino-banner  .toplist-main{
    text-align: unset;
  }
	li.toplist-main, .toplist.casino-banner .toplist-main{
    padding: 2.4rem;
  }
	
  .toplist-main .logo img {
    margin: 12px 0 0 0;
  }
  .toplist-main .title-rating {
    -webkit-box-pack: center;
    justify-content: center;
  }
  li.toplist-main .title-rating .toplist-badges,
  li.toplist-main .title-rating .toplist-title {
    display: none;
  }
}

@media only screen and (max-width: 863px) {
		
  .toplist-main .logo img {
    width: 10rem;
  }
  .toplist-main .logo-info {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin-bottom: 1rem;
  }
  li.toplist-main .info .toplist_name {
    display: none;
  }
}



/**ДЛЯ ОБЗОРА**/
.toplist-single-header .toplist-cta a.wp-block-button__link {background-color: #0e863b;}
.toplist-single-header .logo-container {position: relative;}


.toplist-single-header .toplist-main .logo-container img {width: 18rem;padding:2rem;}
.toplist-single-header .logo-info .logo-container {background:#fff;display:block;padding-bottom:3.2rem;padding-top:1.6rem;}
.toplist-single-header .logo-info{padding-top:1.6rem;}



.reviewread {
    display: inline-block;
    margin: 1.2rem 0;
	line-height:3.2rem;
}

.toplist-single-header .custom-label {width: 100%;left:0;top:-24px;text-align:center;}
.toplist-single-header .custom-label svg {position: absolute;}


.toplist-single-header {margin-top:0;}
.toplist-single-header h1 {margin-bottom:1.6rem;margin-top:0rem;}
.toplist-single-header .toplist-oneliner {margin-bottom:1.2rem;}

.toplist .info p {
    font-size: 1.3rem;
    line-height: 2.1rem;
}

.toplist-single-header .toplist-cta {text-transform:uppercase;}
.toplist-single-header .toplist-cta i {margin-right:8px;font-size:2.4rem;}


@media only screen and (max-width: 1119px) {
	h1.toplist-title a{ justify-content: center;}
}
@media only screen and (min-width: 1120px) {
  .toplist-single-header .toplist-main {
    text-align: unset;
  }
  .toplist-single-header .toplist-main .toplist-main-inner {
    max-width: unset;
    display: flex;
    grid-column-gap: 3.2rem;
    width: 100%;
  }
}

/* === starratings.css === */
.star-ratings-sprite, .star-ratings-sprite-rating{background:url(/wp-content/uploads/2021/11/star-rating-sprite-1.png) repeat-x;}
.star-ratings-sprite{margin:auto;font-size:0;line-height:0;overflow:hidden;text-indent:-999em;width:82.5px;height:16.5px;background-size:16.5px 37.5px;margin-top:1.3rem}
.star-ratings-sprite-rating{background-position:0 100%;float:left;display:block;height:15.5px;background-size:16.5px 37.5px}
.star-ratings-sprite-single{margin:0 0 12px 0!important}

/* === grid.css === */
ul.grid {
  padding-left: 0;
  margin-bottom: 0 !important;
  display: flex;
  flex-wrap: wrap;
  text-align:center;
  justify-content: center;
}

.grid .item {
  border-radius: 0.8rem;
  border: 1px solid #ddd;
  display: flex;
  width: calc(50% - 12px);
  margin: 0 16px 16px 0;
  text-align: center;
  padding: 12px;
  background: #f2f2f2;
}



.grid .item:nth-child(2n) {
  margin-right: 0;
}


.grid a.item-soft span {
  height: auto !important;
  color: #333;
  height: 56px;
  display: inherit;
}
.grid a {
  width: 100%;
}
.grid .item-soft img {
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 2rem;
}


@media screen and (min-width: 720px) {
  .all-soft .grid .item {
    width: calc(20% - 12px);
    margin: 0 12px 12px 0;
  }
  .all-soft .grid .item:nth-child(2n) {
    margin-right: 12px;
  }
  .all-soft .grid .item:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1120px) {
  .grid .item {
    width: calc(20% - 14px);
    margin: 0 16px 16px 0;
  }
  .grid .item:nth-child(2n) {
    margin-right: 16px;
  }
  .grid .item:nth-child(5n) {
    margin-right: 0;
  }
  .all-soft .grid .item {
    width: calc(12.5% - 14px);
    margin: 0 16px 16px 0;
  }
  .all-soft .grid .item:nth-child(2n),
  .all-soft .grid .item:nth-child(5n) {
    margin-right: 16px;
  }
  .all-soft .grid .item:nth-child(8n) {
    margin-right: 0;
  }
}
.grid .item:last-child {
  margin-right: 0;
}

/* === faq.css === */
.faq {
	display: block
}

.faq .accordion {
	color: #000!important;
	background-color: #fff;
	cursor: pointer;
	padding: 20px 25px 25px 25px;
	width: auto;
	text-align: left;
	border: none;
	outline: 0;
	transition: .4s;
	margin-bottom: 0;
	overflow: hidden
    margin-top: 1.2rem;
    display: flex;
	justify-content: space-between;
}

.faq .panel {
	padding: 0 25px 25px;
	background-color: #f5f5f5;
	display: none;
	overflow: hidden;
	margin-bottom: 25px;
	transition: max-height .2s ease-out
}

.faq .accordion:after {
	content: "\02795";
	color: #777;
	float: right;
    display: flex;
    align-items: center;
	margin-left: 1.2rem;
}

/* === bonuscode.css === */
.bonuscode {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
}

.bonuscode label {
  font-size: 0;
}

.bonuscode input,
.bonuscode button {
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  overflow-wrap: break-word;
  height: 54px;
  font-size: 14px;
  border: 1px solid #32383c;
  margin:0;
}

.bonuscode button {
  background: url(/wp-content/uploads/2021/11/file.svg) no-repeat;
  background-size: 24px 24px;
  background-position: 8px;
  background-color: #f2f2f2;
  border-radius: 0 0.8rem 0.8rem 0;
  padding: 21px;
}

.bonuscode input {
  border-right: none;
  border-radius: 0.8rem 0 0 0.8rem;
  padding: 0.729em 0.667em;
}

.bonus-code {
  text-align: center;
  display: block;
  font-size: 1.2rem;
  color: #666;
}

.copied::after{position:absolute;top:12%;right:110%;display:block;content:"Промокод скопирован";font-size:.75em;padding:2px 3px;color:#fff;background-color:#22a;border-radius:3px;opacity:0;will-change:opacity,transform;animation:showcopied 1.5s ease}

@keyframes showcopied{0%{opacity:0;transform:translateX(100%)}70%{opacity:1;transform:translateX(0)}100%{opacity:0}}


/* === comments.css === */
#comments-template .wp-block-group__inner-container{padding-top:0;padding-bottom:0}textarea#comment{width:100%}.comments-title{font-size:2rem;font-weight:600;padding-top:1.2rem}.comment-form-comment{width:100%}#comment,input#author,input#email{font-size:13px;line-height:1;color:#555;background:#fff;border:1px solid #ddd;transition:all .25s linear;min-height:48px}.comment-form{display:flex;flex-wrap:wrap}#comments textarea{height:96px}input.submit{height:48px}.comment-form-author,.comment-form-email{display:grid;width:48%}.comment-form-author input,.comment-form-email input{width:100%}.comment-form-author{margin-right:4%}.comment-respond,.commentlist .comment{background:#f2f2f2;padding:2.4rem}.commentlist .comment{margin-bottom:3.2rem}.comment-notes,.comment-respond label{font-size:1.4rem;font-weight:600;color:#555}.count-comments{text-transform:capitalize}.comment-meta.commentmetadata{font-size:1.3rem;color:#555}.comment-text{padding-top:1.2rem}

/* === breadcrumbs.css === */
.container-breadcrumbs {background: #f2f2f2;}
#breadcrumbs{margin-bottom:0;line-height:38px;font-size:1.4rem}
#breadcrumbs a{text-decoration:none;color:#333;}


/* === hiddenitem.css === */
.read-more-state {
  display: none;
}

.read-more-state:checked ~ ul.grid .hidden-icon-item {
  opacity: 1;
  max-height: 999em;
display: flex!important;}

.main-review-table .read-more-state:checked ~ .hidden-icon-item {
  opacity: 1;
  max-height: 999em;
display: inline!important;
}


.read-more-state ~ .read-more-trigger:before {
  content: 'Показати більше »';
}


.read-more-state:checked ~ .read-more-trigger:before {
  content: 'Показати менше';
}

.read-more-trigger {
  cursor: pointer;
  color: #444;
  font-size: .9em;
	width:100%;text-align:center;margin-top:1.2rem;
margin-bottom: .4rem;DISPLAY: block;}


.main-review-table .read-more-trigger {
	width:auto;
	text-align:left;
	margin-top:1.2rem;
margin-bottom: .4rem;  font-size:1em;
}

.hidden-icon-item {
  opacity: 0;
  max-height: 0;
  transition: .25s ease;
  display: none!important;
}

/* === category.css === */
.blog-grid {
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-top: 3.2rem;
    display: block;
    clear: both;
    width: 100%;
}
.blog-grid h2 a {
    font-size: 1.6rem;
    margin-top: 0.8rem;
    color: #333;
    font-weight: 600;
}

.blog-grid h2 {    margin-top: 0;
}

.blog-grid-post {margin-bottom:3.2rem}
.blog-grid .postmetadata {font-size:.85em;color:#666;}
.blog-grid-img img {width:100%;height:auto;}
.blog-grid-excerpt p {
    line-height: 2.1rem;
    font-size: 13px;
    letter-spacing: 0px;
    color: #555;
}

.blog-grid-post-content {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 30%);
    backface-visibility: hidden;
    transform: rotateY(0deg);
    transition: transform .6s cubic-bezier(.39,.2,.37,1.44);
    z-index: 2;
    border-radius: 4px;
    width: 100%;
}
.blog-grid-post-content-container {padding:0 1.2rem 1.2rem;}
@media only screen and (min-width: 968px) {
	.blog-grid {
	    display: flex;
    flex-wrap: wrap;

}
	.blog-grid li {
    width: 23.5%;
    display: inline-flex;
    margin-left: 2% !important;
}
.blog-grid li:nth-child(4n+1) {
    margin-left: 0% !important;
}
}
.moretag {margin-top:1.2rem;    display: block; font-size:1.4rem;}



/* === sidebar.css === */
p.title-sidebar-right ~ p {display:none;}
.title-sidebar-right {
    padding: 0 2.4rem;
}
.sidebar-right .wp-block-latest-posts__list{
    background: #f2f2f2;
    padding: 3.2rem 2.4rem;
    margin-top: -1.8rem;
	list-style:none;
}
.sidebar-group .wp-block-group__inner-container { padding-top: 0;}

.sidebar-group .title-sidebar-right {margin-bottom:0;}

.wp-block-latest-posts__list li {display:flex;margin-bottom:3.2rem;font-size:1.3rem;border-bottom:1px solid #ddd;padding-bottom:2.4rem;line-height:2.1rem;letter-spacing:0;}
.wp-block-latest-posts__list li a {color:#000;font-weight:600;}

.wp-block-latest-posts__list li:last-child {border-bottom:none;padding-bottom:0;margin-bottom:1.2rem;
}

.wp-block-latest-posts__list li img {margin-right:1.2rem;margin-top:.6rem;}

.wp-block-latest-posts__list li > div  {
    display: flex;
}

.sidebar-right .meta-info {color:#555;padding-top:.6rem;display:block;font-weight:400;}

/* === footer.css === */
.footer {
  position: relative;
  padding-top: 45px;
  margin-top: 6.4rem;
  background: #32383c;
}
.footer,
.footer a {
  color: #f0f0f0;
}
.footer .container.footer-menu {
  position: relative;
  padding: 10px 0;
  text-align: left;
  
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-left:15px;
  
}
.footer .container.footer-menu li {
  display: inline-block;
}
.footer .container.footer-menu li:not(:last-child) {
  margin-right: 20px;
}

.footer ul.menu {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.footer ul.menu > li {
  line-height: 32px;
  padding: 0;
  float: none;
}
.footer ul.menu > li > a {
  line-height: 21px;
  padding: 0;
  height: auto;
}


.footer .widget-title {
  font-weight: 600;
  line-height: 32px;
}

.footer .widget {
  margin-bottom: 4rem;
}

.footer .copyright {
  padding: 30px 15px;
}
.footer .copyright p {
  color: #ddd;
  text-align: center;
}

