/* http://meyerweb.com/eric/tools/css/reset/
   v2.0-modified | 20110126
   License: none (public domain)
*/
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* * {
  cursor: none;
} */
/* make sure to set some focus styles for accessibility */
/* :focus {
  outline: 0;
} */
strong {
  font-weight: 600;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

input:focus {
    outline: none !important;
}
*:focus {
  outline: none;
}
ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

.orange-text {
    color: #FCA723;
}


blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

em {
  font-style: italic;
}

body {
  background: #393939;
  font-family: 'Exo 2', sans-serif;
}
body * {
    font-family: 'Exo 2', sans-serif;
}

.wrapper {
  width: 100%;
  max-width: 1055px;
  padding: 0 30px;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (max-width: 767px) {
    .wrapper {
      padding: 0 15px;
    }
}


@media (min-width: 1200px) {
    .container {
      width: 1250px !important;
    }
}

/*HEADER*/
.header {
    background: #302749;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 20;
    -webkit-filter: unset;
    filter: unset;
    -webkit-transition: -webkit-filter .2s ease;
    transition: -webkit-filter .2s ease;
    -o-transition: filter .2s ease;
    transition: filter .2s ease;
    transition: filter .2s ease,-webkit-filter .2s ease;
}

.header__top {
    display: flex;
    align-items: center;
    padding: 12px 0;
    justify-content: space-between;
}

/*.header__top .main-navigation {*/
/*    margin-left: auto;*/
/*     margin-right: auto; */
/*}*/

.main-navigation {
    display: none;
  }

@media (min-width: 767px) {
    .main-navigation {
      display: block;
    }
  }

.header__logo {
    font-family: 'Exo 2', sans-serif;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    text-decoration: none;
    transition: ease-in-out 0.3s;
    text-transform: uppercase;
}

.header__logo span {
    font-weight: 400;
    margin-left: 15px;
}

.header--scroll {
    -webkit-filter: drop-shadow(0 4px 4px rgba(82,82,82,.25));
    filter: drop-shadow(0 4px 4px rgba(82,82,82,.25));
}

/*HEADER*/

/*MENU*/
.main-menu {
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-item:not(:last-child) {
    margin-right: 30px;
}

.menu-item a {
    font-family: 'Exo 2', sans-serif;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration: none;
    transition: ease-in-out 0.3s;
}

@media only screen and (max-width: 767px){
    .menu-item a {
        font-size: 26px;
    }
}

.menu-item a:hover {
    color: #FFC31C;
}

/*MENU*/

/*ToTop*/
.to-top {
    align-items: center;
    background: #e9e5e9;
    border: 1.5px solid #302749;
    border-radius: 50%;
    bottom: 30px;
    box-sizing: border-box;
    display: flex;
    height: 56px;
    justify-content: center;
    opacity: 0;
    position: fixed;
    right: 30px;
    transition: .3s ease-in-out;
    visibility: hidden;
    width: 56px;
    z-index: 10;
}

.to-top:hover {
    background: #FFC31C;
}

.to-top.show {
    opacity: 1;
    visibility: visible;
}

/* @media (max-width: 576px) {
	.ticket__pictures-item {
		flex: 1 0 50%;
		margin-bottom:25px;
	}
} */


/*Footer*/
.footer {
    background: #302749;
    padding: 15px 0;
    margin-top: 50px;
}

.footer-menu .main-menu {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}


@media (main-width: 768px) {
    .footer-menu .main-menu .pll-parent-menu-item {
        display: none !important;
    }
}



/*.footer-menu .main-menu li+li {*/
/*    margin-right: 0;*/
/*    margin-top: 15px;*/
/*}*/

.tags-page__header-line {
    background: #5e5676;
    padding: 20px;
    border-radius: 5px;
    font-family: 'Exo 2', sans-serif;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.all-tags {
    padding: 0;
    margin: 0;
}

.all-tags__item:not(:last-child) {
    margin-bottom: 10px;
}

.all-tags__link {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: #464646;
    font-size: 16px;
    line-height: 130%;
    text-decoration: none;
    transition: ease-in-out 0.3s;
}

.all-tags__link:hover {
    color: #F8CD16;
}


.tags-page__header {
    margin-bottom: 50px;
}

@media only screen and (min-width: 991px){
    .tags-list-border-left {
        border-left: 1px solid #5e5676;
    }
}

@media only screen and (max-width: 1024px){
    .tags-page__header {
        margin-bottom: 30px;
        margin-top: 30px;
    }
}

.footer__social-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
    margin-bottom: 20px;
}

.copyright {
    margin-top: 30px;
}

.copyright__text {
    font-family: 'Exo 2', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
/*Footer*/

.social-links {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.social-links__item:not(:last-child) {
    margin-right: 20px;
}

.cookie {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9;
    right: 0;
}

/* Home Page */
.home-page {
    margin-top: 40px;
}

.last-post-category__image {
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.last-post-category__link {
    text-decoration: none;
}

.last-post-category__title {
    font-family: 'Exo 2', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #464646;
    transition: ease-in-out 0.3s;
    margin-bottom: 15px;
    margin-top: 20px;
}

.last-post-category__title:hover {
    color: #FFC31C;
}

.last-post-category__description {
    color: #B5B5D4;
}

.tags-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.tags-wrapper .tag--accent, .tags-wrapper .tag:hover {
    color: #F8CD16;
}

.tags-wrapper .tag:before {
    color: #FCA723;
}

.tags-wrapper .tag--accent a {
    color: #FCA723;
    text-decoration: none;
}

.tags-wrapper .tag {
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}
.tags-wrapper .tag, .text-tag {
    font-weight: 600;
    font-size: 10px;
    line-height: 115%;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption img {
	width: 100%;
    height: 100%;
}

.tags-wrapper .tag:before {
    content: "#";
}

.last-post-category__top {
    margin-bottom: 25px;
}

.recent-posts {
    padding-top: 26px;
    border: solid #B5B5D4;
    border-width: 1px 0;
}

/*.cat-page */
.recent-posts {
    position: sticky;
    border: 1px solid #B5B5D4;
    padding: 10px;
    border-radius: 5px;
    top: 80px;
}

.cat-page .recent-posts__item-content a {
    font-size: 12px;
}

.recent-posts__title {
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 130%;
    color: #464646;
    transition: ease-in 0.3s;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #B5B5D4;
}

.recent-posts__item {
    display: grid;
    grid-template: 1fr/minmax(54px,54px) 1fr;
    grid-column-gap: 16px;
    margin-bottom: 15px;
}

.recent-posts__item-img img {
    border-radius: 5px;
    width: 55px;
    height: 55px;
}

.recent-posts__item-content a {
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    color: #464646;
    transition: ease-in 0.3s;
    display: inline-block;
}

.recent-posts__item-content a:hover {
    color: #F8CD16;
}

.recent-posts__item-category a {
    color: #FCA723;
}

.recent-posts__item-img {
    margin-top: 5px;
}

.search-full {
    margin-left: 20px;
}

.search-full__form {
    display: flex;
    align-items: center;
    position: relative;
}

.search-full__button {
    position: absolute;
    right: 0;
    color: #52418E;
}

.tags-list__wr {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
    margin-bottom: 32px;
    transition: border-color .4s ease;
    align-items: center;
}

.tags-list__title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 32px;
    margin: 0;
    color: #464646;
    transition: ease-in-out 0.3s;
}

@media only screen and (max-width: 767px){
    .tags-list__title {
        font-size: 24px;
    }
}

.tags-list__go-to-link {
    border: 2px solid #cbccd1;
    padding: 10px 14px;
    background-color: #fff;
    color: #F8CD16;
    transition: color .3s ease,border-color .3s ease;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}
.card-default {
    border: none;
    text-decoration: none;
}

.card-default__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 5px;
}

.card-default__picture {
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.card-default__title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: #464646;
    font-size: 16px;
    line-height: 130%;
    transition: ease-in-out 0.3s;
}

.card-default__title:hover {
    color: #F8CD16;
}

.news-block__info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 5px 0;
}

.news-block__category a {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 115%;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #F8CD16;
    display: inline-block;
    transition: ease-in-out 0.3s;
}

.news-block {
    padding-bottom: 15px;
}

.card-default__link {
    text-decoration: none;
}

.card-default__date {
    color: #B5B5D4;
    font-family: 'Exo 2', sans-serif;
    font-size: 11px;
}

.post-section__main-image img {
    width: 100%;
    height: 100%;
}

.post-section__title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    color: #464646;
    font-size: 40px;
    line-height: 130%;
    margin: 20px 0;
}

@media only screen and (max-width: 1023px){
    .post-section__title {
        font-size: 30px;
    }
}

.post-section__content {
    max-width: 700px;
    margin: 20px auto;
}

.post-section__content ul {
    list-style: disc;
    padding: 0;
    margin-left: 15px;
}

.post-section__content ol {
    list-style: auto;
    padding: 0;
    margin-left: 15px;
}


.breadcrumbs {
    margin: 10px 0;
}

.breadcrumbs__list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.category-date {
    display: flex;
}

.breadcrumbs__link {
    color: #464646;
    text-decoration: none;
    transition: ease-in-out 0.3s;
}

.breadcrumbs__link:hover {
    color: #d9b621;
}


.breadcrumbs__item:last-child {
    color: #B5B5D4;
}

.breadcrumbs__item {
    position: relative;
}

.breadcrumbs__item:not(:last-child) {
    margin-right: 20px;
}

.breadcrumbs__item:not(:last-child)::after {
    content: "";
    background: url("../images/arr.svg") no-repeat;
    width: 5px;
    height: 7px;
    right: -13px;
    position: absolute;
    top: 10px;
}

.category-date span {
    padding: 0 10px;
    color: #464646;
}

.category-link {
    color: #FCA723;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    font-size: 16px;
    transition: ease-in-out 0.3s;
}

.search-full__field {
    font-family: 'Exo 2', sans-serif;
    border: 1px solid #52418E;
    background: #2F2954;
    color: rgba(255, 255, 255, 0.4);
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}

.search-full__field:focus {
    border: 1px solid #F8CD16;
}

.current-menu-item a {
    color: #F8CD16;
}

.search-full__button {
    background: url("../images/search.svg") no-repeat;
    width: 30px;
    height: 30px;
    border: none;
    background-position: center;
}

.search-full__field::placeholder {
    font-family: 'Exo 2', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.date {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    color: #B5B5D4;
    font-size: 16px;
}

.post-section__content p img {
    width: 100%;
    height: 100%;
}

.post-section__content p a {
    text-decoration: none;
    color: #302749;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
}

.tags__link {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 115%;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #F8CD16;
    margin-bottom: 10px;
    display: inline-block;
    transition: ease-in-out 0.3s;
}

.news-block__date {
    color: #B5B5D4;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
}

.tags__link:hover {
    color: #F8CD16;
}

.like-news {
    margin: 20px 0 50px 0;
}

.like-news__image img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.like-news__date {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #B5B5D4;
}

.like-news__category {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    color: #FCA723;
    text-decoration: none;
    transition: ease-in-out 0.3s;
    text-transform: uppercase;
}

.like-news__category:hover {
    color: #52418E;
}

.like-news__line {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 5px;
}

.like-news__title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: #464646;
    text-decoration: none;
    display: inline-block;
    transition: ease-in-out 0.3s;
}

.like-news__title:hover {
    color: #d9b621;
}

.like-news__heading {
    color: #302749;
    font-family: 'Exo 2', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.post-section__tags {
    /*border-bottom: 1px solid #B5B5D4;*/
    border-top: 1px solid #B5B5D4;
    padding: 10px 0 15px 0;
}

.tags__list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -10px;
}

.tags__item:not(:last-child) {
    margin-right: 10px;
}

.post-section__content p {
    font-family: 'Exo 2', sans-serif;
    color: #464646;
}

.post-section__content h3 a, h2 a {
    text-decoration: none;
    color: #302749;
    font-family: 'Exo 2', sans-serif;
}


/* Category */
.category-top-news {
    margin-bottom: 30px;
}
.category-top-news__wr {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 0 0 20px rgb(36 61 68 / 10%);
}
.category-top-news__line {
    background: #f2f2f2;
    display: flex;
    border-radius: 0 12px 0 0;
}
.category-top-news__footer.mobile {
    display: none;
}
.category-top-news__category {
    align-items: flex-end;
    display: flex;
    position: relative;
}
.category-top-news__category-image {
    border: 1.5px solid #984499;
    border-radius: 6px;
    box-shadow: inset 0 0 0 3px #fff;
    box-sizing: border-box;
    padding: 2px;
    position: absolute;
}

.category-top-news__category-deskription {
    margin-top: 10px;
}
.category-top-news__image img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 0;
}
@media only screen and (min-width: 1024px){
    .category-top-news__content {
        padding: 0 40px;
    }
}
.category-top-news__link {
    font-family: 'Exo 2', sans-serif;
    transition: .3s ease-out;
    font-size: 24px;
    text-decoration: none;
    font-weight: 700;
    color: #464646;
    transition: ease-in-out 0.3s;
}

.category-top-news__category-deskription {
    margin-top: 10px;
}

.category-top-news__footer.desktop {
    display: block;
}

.category-top-news__category {
    align-items: flex-end;
    display: flex;
    position: relative;
}

.category-top-news__footer {
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomleft: 12px;
    -moz-border-radius-bottomright: 12px;
    background: #fff;
    border-bottom-left-radius: 12px;
    -webkit-border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    -webkit-border-bottom-right-radius: 12px;
    border-top-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    border-top-right-radius: 0;
    -webkit-border-top-right-radius: 0;
    padding: 5px 40px 30px;
}

@media only screen and (max-width: 1023px){
    .category-top-news__footer.desktop {
        display: none;
    }
}

@media only screen and (max-width: 1023px){
    .category-top-news__content {
        background: #fff;
        padding: 70px 15px 30px;
    }
}

@media only screen and (max-width: 1023px){
    .category-top-news__footer {
        padding: 30px 15px 20px;
    }
}

@media only screen and (max-width: 1023px){
    .category-top-news__footer.mobile {
        border-radius: 0;
        display: block;
    }
}

@media only screen and (max-width: 1023px){
    .category-top-news__line {
        flex-direction: column;
    }
}

@media only screen and (max-width: 1023px){
    .category-top-news__image img {
        -moz-border-radius-topleft: 0;
        -moz-border-radius-topright: 0;
        -moz-border-radius-bottomleft: 0;
        -moz-border-radius-bottomright: 0;
        border-bottom-left-radius: 0;
        -webkit-border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        -webkit-border-bottom-right-radius: 0;
        border-top-left-radius: 0;
        -webkit-border-top-left-radius: 0;
        border-top-right-radius: 0;
        -webkit-border-top-right-radius: 0;
        height: 100%;
        width: 100%;
    }
}

.news-block__image img {
    width: 100%;
    height: 100%;
}


.category-top-news__link:hover {
    color: #F8CD16;
}


.category-top-news__date {
    margin-top: 20px;
    text-transform: lowercase;
}

.category-top-news__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.category-top-news__link {
    font-family: 'Exo 2', sans-serif;
    transition: .3s ease-out;
}

/* Category */


@media only screen and (max-width: 1023px){
    .breadcrumbs__mobile {
        display: block;
        margin-bottom: 0;
        margin-top: 60px;
        padding: 0;
    }
}

.breadcrumbs__mobile {
    display: none;
}

@media only screen and (max-width: 1023px){
    .breadcrumbs {
        display: none;
    }
}
.breadcrumbs {
    margin-bottom: 30px;
    margin-top: 20px;
}

/* .ribbon-news {
    margin: 50px 0;
} */

.news-block__image img {
    border-radius: 5px;
}

.news-block__tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 5px;
}

.news-block__link {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: #464646;
    font-size: 16px;
    text-decoration: none;
    line-height: 130%;
    transition: ease-in-out 0.3s;
    display: inline-block;
    width: 100%;
}

.news-block__link:hover {
    color: #F8CD16;
}

.list-news__image img {
    width: 100%;
    border-radius: 5px;
}


.subscribe {
    margin: 30px 0 30px;
    border-radius: 6px;
    background-color: #f2f2f2;
}

[class^=col-] .subscribe__left {
    padding: 22px 43px 40px;
}

.subscribe__left {
    padding: 40px 0 52px 64px;
}

.subscribe .mailing-block__title {
    margin-bottom: 10px;
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    text-align: center;
    color: #000;
}

.subscribe .mailing-block__text {
    margin-bottom: 24px;
}

.mailing-block__text {
    margin-bottom: 27px;
    color: #000;
    text-align: center;
    width: 100%;
}

.mailing-block__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}


@media (max-width: 767px){
    .mailing-block__form {
        flex-direction: column;
    }
}

.input-field {
    width: 100%;
}

.button__primary, .comment-respond form .form-submit .submit {
    background-color: #534ff1;
    color: #fff;
    padding: 13px 27px;
    -webkit-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
    opacity: 1;
}

.button, .comment-respond form .form-submit .submit {
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 17px;
}

.input-field .input {
    width: 100%;
    background-color: #fff;
    color: #333;
    border-radius: 6px;
    padding: 8.5px 18px;
    outline: 0;
    border: 1.5px solid transparent;
}

.input-field__helper-text {
    visibility: hidden;
    position: absolute;
    width: 100%;
    bottom: -30px;
    left: 0;
}

.input-field__error-text {
    display: block;
    padding-left: 18px;
    font-size: 14px;
    line-height: 20px;
    position: relative;
}

.comment-respond form .form-submit .mailing-block__form .submit, .mailing-block__form .button, .mailing-block__form .comment-respond form .form-submit .submit {
    margin-left: 10px;
}


@media (max-width: 767px){
    .comment-respond form .form-submit .mailing-block__form .submit, .mailing-block__form .button, .mailing-block__form .comment-respond form .form-submit .submit {
        margin-left: 0;
        width: 100%;
    }
}

.subscribe__right {
    position: relative;
    height: 100%;
}

.subscribe__right img {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    width: auto;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.button.button__primary {
    border: none;
    background: #302749;
}

.list-news__category {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 115%;
    letter-spacing: .06em;
    text-decoration: none;
    color: #F8CD16;
    text-transform: uppercase;
}

.list-news__line {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 5px;
    align-items: center;
}

.list-news__time {
    color: #B5B5D4;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
}

.list-news__link {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: #464646;
    font-size: 16px;
    text-decoration: none;
    line-height: 130%;
    transition: ease-in-out 0.3s;
    display: inline-block;
}

.list-news__link:hover {
    color: #d9b621;
}

.search-page__form {
    background: #5e5676;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.search-form-page__wr {
    display: flex;
}

.search-form-page__input-search {
    width: 100%;
}


.search-page__count {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: #464646;
    font-size: 16px;
    text-decoration: none;
    line-height: 130%;
    margin-bottom: 10px;
}

.list-news__item {
    padding-bottom: 15px;
}

.search-page__count span {
    padding: 0 5px;
}

.animate-charcter {
    text-transform: uppercase;
    background-image: linear-gradient(-225deg,#ffffff 0%,#f7f7f8 29%,#ff1361 67%,#fff800 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
}

@media only screen and (max-width: 767px){
    .animate-charcter {
        font-size: 35px;
    }
}

 #toggle.on {
    right: 15px;
}

@media (max-width: 767px){
    #toggle {
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 767px){
    #toggle .span {
        height: 2px;
        background: #FFFFFF;
        margin: 7px auto;
        backface-visibility: hidden;
    }
}
@media (max-width: 767px){
    .footer__logo {
        text-align: center;
    }
    .footer-menu .main-menu {
        display: flex;
        flex-direction: column;
    }
    .footer-menu .menu-item:not(:last-child) {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    .footer-menu .main-menu li+li {
        margin-top: 0;
    }
    .footer__social-title {
        text-align: center;
        margin-top: 30px;
    }
    .social-links {
        justify-content: center;
    }
    .breadcrumbs__mobile {
        display: block;
    }
    .breadcrumbs__item:not(:last-child)::after {
        top: 7px;
    }
    .search-header.search-header__mobile {
        position: absolute;
        top: 110px;
        left: 0;
        right: 0;
    }
    .search-full__form {
        justify-content: center;
    }
    .search-full__field {
        min-width: 220px;
    }
}

.search-form-page__input-submit {
    background: #302749 url("../images/search.svg") no-repeat;
    width: 30px;
    height: 30px;
    border: none;
    background-position: center;
}

.search-form-page__input-search {
    padding: 0 15px;
}



#toggle.on #one {
    transform: rotate(45deg) translateX(5px) translateY(7px);
}

#toggle.on #two {
    opacity: 0;
}

#toggle.on #three {
    transform: rotate(-45deg) translateX(6px) translateY(-9px);
}

#toggle {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 999;
    width: 30px;
    height: 30px;
    cursor: pointer;
    float: right;
    transition: all 0.3s ease-out;
    visibility: inherit;
    opacity: 1;
} 

#resize {
    visibility: hidden !important;
}

#resize {
    z-index: 2;
    position: fixed;
    top: 0px;
    background: #302749;
    width: 100%;
    height: 100vh;
    transition: all 0.3s ease-out;
    display: table;
    visibility: hidden;
    opacity: 0;
    left: 0;
    display: none;
}

#resize.active {
    visibility: visible !important;
    opacity: 1;
    display: block;
}

@media (max-width: 767px){
    .menu-item:not(:last-child) {
        margin-right: 0 !important;
        margin-bottom: 40px;
    }
}

.menu-item:not(:last-child) {
    margin-right: 25px;
}

.noscroll {
    overflow: hidden;
}

@media (max-width: 767px){
    .menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

}

@media (max-width: 1400px){
      .search-header__desktop {
        display: none;
    }  
}


@media (min-width: 768px){
    #resize.active {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}

.resize__logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto 0;
    text-align: center;
    top: 50px;
}

#resize #menu {
    height: 100vh;
    vertical-align: middle;
    width: 100%;
}

.document {
    margin-top: 50px;
}

.document ul {
    list-style: disc;
}

.privacy-policy {
    margin-top: 20px;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    display: block;
    line-height: 130%;
}

@media (max-width: 767px){
    .main-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    .privacy-policy {
        text-align: center;
    }
}

.error-page__image {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 70px;
    font-size: 76px;
}

.error-page__title {
    text-align: center;
    font-size: 22px;
}

.error-page__subtitle {
    text-align: center;
    font-size: 18px;
}

.error-page__link {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 115%;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #F8CD16;
    border: 1px solid #F8CD16;
    padding: 10px;
    margin-top: 120px;
    display: inline-block;
    border-radius: 5px;
    transition: ease-in-out 0.3s;
}

.error-page__link:hover {
    color: #ffffff;
    background: #F8CD16;
}


.error-page__content {
    text-align: center;
}

.custom-ss-nav, .custom-ss-nav-two {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: 0 auto;
    align-items: center;
    width: 100%;
}

@media (max-width: 767px){
    .custom-ss-nav, .custom-ss-nav-two {
        display: none;
    }
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc !important;
    margin: 0 3px;
}
.owl-dots button.owl-dot.active {
    background-color: #000 !important;
}



button.owl-prev {
    /*margin-right: 20px;*/
    background: no-repeat;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    /*min-height: 33px;*/
    transition: ease-in-out 0.3s;
    height: 35px;
    width: 35px;
    position: absolute;
    left: -40px;
}

button.owl-prev:hover, button.owl-next:hover {
    border: 1px solid #F8CD16;
}

.tags-list {
    position: relative;
}


button.owl-next {
    /*margin-right: 20px;*/
    background: no-repeat;
    border: 1px solid #464646;
    border-radius: 50%;
    display: flex;
    /*min-height: 33px;*/
    transition: ease-in-out 0.3s;
    height: 35px;
    width: 35px;
    position: absolute;
    right: -40px;
}

.last-posts__link {
    text-decoration: none;
}

.last-posts__category a {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 115%;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #FCA723;
    display: inline-block;
    transition: ease-in-out 0.3s;
}

.last-posts__img img {
    border-radius: 5px;
}

.last-posts__category {
    margin: 10px 0 5px 0;
}

.last-posts {
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding-bottom: 30px;
    border-top: 1px solid rgba(0,0,0,.1);
    padding-top: 30px;
    position: relative;
}

.last-posts__title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: #464646;
    font-size: 16px;
    text-decoration: none;
    line-height: 130%;
    transition: ease-in-out 0.3s;
    display: inline-block;
}

.category-top-news__category-name {
    margin-left: 95px;
}

@media only screen and (max-width: 1023px){
    .category-top-news__category-image {
        bottom: -45px;
    }
}

@media only screen and (max-width: 1023px){
    .category-top-news__category-deskription {
        display: none;
    }
}

.category-top-news__category-image {
    border: 1.5px solid #984499;
    border-radius: 6px;
    box-shadow: inset 0 0 0 3px #fff;
    box-sizing: border-box;
    padding: 2px;
    position: absolute;
}

.banner {
    padding-bottom: 30px;
}

.banner__image img {
    width: 100%;
}

.banner__image {
    width: 100%;
}


@media (max-width: 767px){
    .banner__image img {
        width: 100%;
        /*height: 61px;*/
    }
}

/*.owl-item.active.center {*/
/*    -webkit-transform: scale(1.2);*/
/*    transform: scale(1.2);*/
/*}*/

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}


.last-post-category__top-image img {
	width: 100%;
	height: 100%;
}


.pagination__list {
	margin: 0;
	padding:0;
}

.pagination {
	margin-left: 10px;
}

.pagination__link:not(:last-child) {
	margin-right: 20px;
}

a.pagination__link {
    color: #302749;
    padding: 7px 15px;
    border: 1px solid #302749;
    text-decoration: none;
    display: inline-block;
}

@media only screen and (max-width: 1023px){
    .pagination {
        padding: 20px 0;
    }
}

.pagination__link.active {
    background: #302749;
    color: #fff;
    padding: 10px 15px;
}

.wheel__wrapper {
    padding: 50px 0;
    position: relative;
}

.wheel__list {
    width: 100%;
    max-width: 500px;
    min-height: 500px;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    border: 15px solid #dde;
    overflow: hidden;
    transition: 5s;
    position: relative;
    margin: 0 auto;
}

.wheel__list div {
    height: 50%;
    width: 349px;
    position: absolute;
    clip-path: polygon(100% 0, 50% 100%, 0 0);
    transform: translateX(-50%);
    transform-origin: bottom;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    left: 60px;
}

.wheel__list .wheel__list_20 {
    background: #3f51b5;
    left: 50%;
}
.wheel__list .wheel__list_30 {
    background: #ff9800;
    transform: rotate(73deg);
}
.wheel__list .wheel__list_40 {
    background: #e91e63;
    transform: rotate(146deg);
}
.wheel__list .wheel__list_50 {
    background: #4caf50;
    transform: rotate(219deg);
}
.wheel__list .wheel__list_100 {
    background: #f44336;
    transform: rotate(290deg);
}

.wheel__arrow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 3;
}

.wheel__arrow::before {
    content: '';
    background: url("../images/arrow-down.png") no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    left: -15px;
    top: 25px;
    background-size: cover;
}

#wheel__spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: #e2e2e2;
    text-transform: uppercase;
    border: 8px solid #fff;
    font-weight: bold;
    font-size: 20px;
    color: #000;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    letter-spacing: 1px;
}




@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');
:root {
    /* Colors */ 
    --white_color : rgb(255, 255, 255);
    --gold_color: rgb(255, 215, 0);
    --green_color: rgb(45, 252, 26);
    --body_background: linear-gradient(to right, #141e30, #243b55);
    --spin_background: linear-gradient(to right, #fc4a1a, #f7b733);
}
/*-----------------  Base  -----------------*/


/*-----------------  Styling Start  -----------------*/

.containers {
    width: 100%;
    max-width: 34.37rem;
    margin-top: 3rem;
    max-height: 90vh;
    /* position: absolute; */
    /* transform: translate(-50%, -50%); */
    top: 50%;
    left: 50%;
    padding: 3rem;
    border-radius: 1rem;
    margin: 50px auto;
}
.wheel_box {
  position: relative;
  width: 100%;
  height: 100%;
}
#spinWheel {
  max-height: inherit;
  width: inherit;
  transform: rotate(270deg);
}
#spin_btn {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 26%;
  width: 26%;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  background: var(--spin_background);
  color: var(--white_color);
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  border: 1px solid #000;
  box-shadow: 0 0 0 3px rgb(0 0 0 / 50%); 
}

#spin_btn:disabled {
    background: rgb(144 144 144 / 80%);
}

.fa-solid {
  position: absolute;
  top: -8%;
  left: 43.7%;
  font-size: 4rem;
  color: var(--green_color);
  transform: rotate(-225deg);
}
#text {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gold_color);
  font-weight: 500;
}


.owl-carousel .owl-item img {
    height: 100%;
}


.views {
    margin-left: 10px;
}

.views__image {
    margin-right: 5px;
    display: flex;
    align-items: center;
}



.header-notification {
    background: #9189a8;
    padding: 5px 0;
    text-align: center;
    color: #fff;
}


.side-bar-banner img {
    width: 100%;
}





/* Last styles */

.dashboard-sidebar,
.gallery-section,
.content-view,
.pros-cons,
.table--responsive--md,
.get-started,
.how-to-play,
.lower-casinos,
.details-content {
    background: #302749;
    /*background: #5a4c7f;*/
    padding: 20px;
    border-radius: 5px;
    color: #fff;
}

.gallery-section h3,
.pros-cons h3,
.content-view h3 {
    color:  #FCA723;
}

.dashboard-user .amount {
    color:  #FCA723;
}

.dashboard-user .text-start {
    color:  #FCA723;
}

.pros-cons,
.table--responsive--md,
.get-started,
.how-to-play,
.lower-casinos {
    margin-top: 15px;
}

.details-content .title {
    color: #FCA723;
}

.lower-casinos__header {
    color: #FCA723;
}

.lower-casinos__item {
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 5px;
    padding: 15px;
    height: 100%;
}

.lower-casinos__title {
    color: #FCA723;
}


.lower-casinos__rating {
    color: #ff0000;
    margin-bottom: 0;
}

.lower-casinos__list {
    color: #ff0000;
    padding-left: 0px;
    margin-bottom: 0;
    margin-top: 10px;
}


.how-to-play img {
    border-radius: 5px;
}

.how-to-play__title {
    color: #FCA723;
}

.how-to-play__step-title {
    color: #7ED321;
}

.get-started__title {
    color: #FCA723;
}

.get-started__step-number {
    max-width: 24px;
    height: 24px;
    background: #FCA723;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    border-radius: 50%;
    margin-right: 5px;
    color: #000;
}


.provider__title .title {
    color: #FCA723;
}


.table--responsive--md tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}


/*.pros-cons .pros-cons__item:nth-child(1) h4 {*/
/*    color: #7ED321;*/
/*}*/

.pros-cons .pros-cons__title {
    margin-bottom: 15px;
}

.pros-cons__title {
    color: #FCA723;
}

.pros-cons .green .pros-cons__title {
    color: #7ED321;
}

.pros-cons .red .pros-cons__title {
    color: red;
}

.pros-cons__item {
    border: 1px solid rgba(255, 255, 255, 0.17);
    padding: 15px;
    border-radius: 5px;
    height: 100%;
}

.pros-cons__list {
    padding-left: 0;
}

.table--responsive--md .table tbody tr td {
    color: #7ED321;
    vertical-align: middle;
    padding: 10px 15px;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.17);
}


.subcategory-list {
    border: 1px solid #B5B5D4;
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.subcategory-item a {
    /*color: #FCA723;*/
    color: #6DAE01;
    text-decoration: none;
    /*border-bottom: 1px solid #FCA723;*/
    border-bottom: 1px solid #6DAE01;
    font-weight: bold;
}

.subcategory-item a:hover {
    border-bottom: none;
    color: #FCA723;
}



.post-list__item a {
    /*background: #5a4c7f;*/
    background: #6DAE01;
    width: 100%;
    display: inline-block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: ease-out 0.3s;
}

.post-list__title span {
    color: #6DAE01;
}

.post-list__item a:hover {
    color: #fff;
    background: #302749;
}



.gallery-slider .owl-dots button.owl-dot.active {
    background-color: #6DAE01 !important;
}


.cmn--btn {
    width: 100%;
    background: #6DAE01;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 25px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    transition: ease-out 0.3s;
}

.cmn--btn:hover {
    background: #8ab93a;
    color: #fff;
}


.expert_rating__start {
    color: #6DAE01;
}


.content-view table {
    margin: 0;
    border: none;
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    margin-bottom: 25px;
}

.content-view table tbody {
    font-size: 15px;
}

.content-view table tbody tr td {
    font-size: 16px;
}

.content-view table tbody tr td {
    color: #fff;
    vertical-align: middle;
    padding: 10px 15px;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.17);
}

.last-post-category__top-image img,
.banner__image img,
.header-banner img {
    border-radius: 5px;
}



/*top header-banner*/

.header-banner {
    display: flex;
    justify-content: center;
}
.header-banner__wrapper {
    max-width: 800px;
    width: 100%;
}

.header-banner__link {
    display: inline-block;
}

.header-banner__link i {
    color: #000;
    font-size: 30px;
    transition: color 0.3s ease-in-out;
}

.header-banner__link:hover i {
    color: #FCA723;
}

.header-banner__image {
    object-fit: contain;
    width: 100%;
}

.header-banner__text {
    margin: 0;
    color: #FCA723;
    text-transform: uppercase;
    line-height: 20px;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 1px 0px 0 #000000, 1px 1px 0 rgba(0, 0, 0, 0.15);
}


.owl-next,
.owl-prev {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-page-review .user-thumb img {
    width: 100%;
}



/* category-post-list */
.category-post-list {
    color: #000000;
    text-decoration: none;
    transition: ease-in-out 0.3s;
}

.category-post-list:hover {
    color: #FCA723;
}

.category-post-list__title {
    padding-top: 10px;
    font-size: 16px;
}

.category-post-list__thumb img {
    border-radius: 5px;
}


/* Category Slider */

.category-post-slider .owl-dots button.owl-dot {
    width: 30px;
    height: 4px;
    border-radius: 0;
}

.category-post-slider .owl-dots button.owl-dot.active {
    background-color: #302749 !important;
}



.pll-parent-menu-item {
    position: relative;
}

@media (max-width: 767px) {
    .pll-parent-menu-item {
        display: flex;
    }
}
  
@media (min-width: 768px) {
    .pll-parent-menu-item .sub-menu {
        position: absolute;
        top: 125%;
        left: -10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        background-color: #302749;
        padding: 10px;
        border-radius: 0 0 5px 5px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 767px) {
    .pll-parent-menu-item .sub-menu {
        display: flex;
        gap: 15px;
        padding-left: 15px;
    }
}




  .pll-parent-menu-item .sub-menu li {
    margin: 0;
  }
  
  .pll-parent-menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  
  
  
.cat-footer {
    margin-top: 35px;
}

.cat-footer__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.cat-footer__desc {
    max-height: 85px;
    overflow: hidden;
    position: relative;
}


.cat-footer__toggle {
    border: none;
    background: transparent;
}

.cat-footer__toggle--close {
    display: none;
}

.cat-footer__desc--open,
.cat-footer__toggle--open.cat-footer__desc {
  max-height: none;
  overflow: visible;
}


.cat-footer__desc::before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), to(#fff));
    background-image: linear-gradient(180deg, transparent, transparent 70%, #fff);
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}


.cat-footer__desc--open::before {
    content: none;
}



/* Page Review */

blockquote {
    background-color: #f2f2f2;
    padding: 10px;
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    word-break: break-word;
    font-family: proxima-nova;
}

blockquote p {
    padding: 0;
    margin: 0;
}

blockquote a {
    color: #fca723;
}


.page-review .main-content ol li a,
.page-review .main-content ul li a {
    color: #fca723;
}

.page-review ol {
    list-style: decimal;
}

.page-review p a {
    color: #fca723;
}

.page-review__titleline {
    position: relative;
}

.page-review__titleline::after {
    content: '';
    height: 2px;
    background: #302749;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 15px;
}

.page-review__titleline span {
    background: #fff;
    z-index: 1;
    position: relative;
    padding-right: 15px;
}

.reviews{display:grid;gap:20px;margin-bottom: 35px;}
.review-card{display:grid;grid-template-columns:320px 1fr;gap:24px;align-items:center;
  padding:20px;border:1px solid #e6e6e6;border-radius:10px;background:#fff}
.review-card__brand{display:flex;flex-direction:column;gap:16px}
.review-card__logo{
    max-width:220px;
    height: 100%;
    width: 100%;
}
.review-card__badge{display:inline-flex;align-items:center;gap:10px;background:#f5e7f3;
  color:#6d2b63;border-radius:8px;padding:6px 10px;font-weight:700}
.review-card__score{font-size:18px;line-height:1}
.rv-stars .fa{font-size:18px;opacity:.9}
.rv-stars .fa.checked{color:#302749}      /* активні зірки */
.rv-stars .fa:not(.checked){color:#cbb6c7}/* порожні зірки */

.review-card__main{display:grid;gap:12px}
.review-card__suptitle{font-size:20px;font-weight:600;color:#5b5b5b}
.review-card__title{font-size:42px;font-weight:800;color:#302749;line-height:1.1}
.review-card__desc{
    color: #555;
    line-height: 1.6;
    font-size: 12px;
    padding-top: 5px;
    padding-left: 10px;
}
.review-card__btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 22px;
  background:#6aa84f;color:#fff;border-radius:10px;font-weight:800;text-decoration:none}
.review-card__btn:hover{filter:brightness(.95); color:#FCA723;}
@media (max-width: 900px){.review-card{grid-template-columns:1fr}}


.page-review .accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 5px;
}

.page-review .active, .page-review .accordion:hover {
  background-color: #ccc;
}

.page-review .accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.page-review .active:after {
  content: "\2212";
}

.page-review .panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}


.footer-menu {
    text-align: center;
}

.footer-menu__link {
    color: #fff;
    font-size: 12px;
}
