.o-flex {
    display: flex;
}
.o-align-center {
    align-items: center;
}
.o-justify-between {
    justify-content: space-between;
}
.o-justify-center {
    justify-content: center;
}
.o-center {
	display: flex;
    align-items: center;
    justify-content: center;
}
.o-column {
	flex-direction: column;
}
.o-w-33 {
    width: 33.33%;
}
.o-w-50 {
    width: 50%;
}
.o-w-100 {
    width: 100%;
}
.o-gap-25 {
    gap: .25rem;
}
.o-gap-05 {
    gap: .5rem;
}
.o-p-05 {
    padding: .5rem;
}
.o-m-05 {
    margin: .5rem;
}
.o-gap-1 {
    gap: 1rem;
}
.o-p-1 {
    padding: 1rem;
}
.o-m-1 {
    margin: 1rem;
}
.o-border-red {
    border: 2px solid #da251e;
}
.o-border-r-10 {
    border-radius: 10px;
}
.o-bold {
    font-weight: 700;
}
.o-fsz-75 {
    font-size: .75rem;
}
.o-p-img {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1rem;
	margin-bottom: 1rem;
}
.o-p-img img {
    width: 100%;
    height: auto;
}
.o-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 4px;
    font-size: 18px;
    line-height: 19px;
    transition: all .2s ease-in-out;
}
.o-btn.o-btn--red {
    border: 1px solid #8A051C;
    color: #ffffff;
    background: linear-gradient(180deg, #DB3353 0%, #A30020 90.18%);
}
.o-h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
}

.o-btn.o-btn--red:hover {
    background: linear-gradient(180deg, #DB3353 0%, #BD0327 90.18%);
}
.o-btn.o-btn--red:active {
    background: linear-gradient(180deg, #DB3353 0%, #DB3353 90.18%);
}
.o-btn.o-btn--red:focus {
    outline: 2px solid #2B96C1;
}
.o-table {
    margin-top: 1rem;
    width: 100%;
    overflow-x: auto;
}
.js-hidden {
    display: none;
}
.c-video {
    width: 100%;
    margin: 1.5rem 0;
}
.c-video > iframe {
	width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
}
.c-single-post {
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);

}
.c-single-post__img {
	width: 150px;
    height: 100%;
    object-fit: cover;
}
.c-single-post__content > a {
	line-height: normal;
    color: #333333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; 
    overflow: hidden;
}
.c-single-post__content > a:hover {
    color: #289dcc;
}
.c-pros-cons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
}
.c-pros-cons__set {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: .5rem;
}
.c-pros-cons__set.o-pros::before, .c-pros-cons__set.o-cons::before {
	content: '';
    position: absolute;
    left: 0;
    top: -4px;
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--pros-cons-bg);
}
.c-pros-cons__set.o-pros {
    --pros-cons-bg: #15c70c;
}
.c-pros-cons__set.o-cons {
	--pros-cons-bg: #f03c18;
}
.c-pros-cons__title {
	font-size: 1.25rem;
    font-weight: bold;
}
.c-pros-cons__list {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.c-pros-cons__list > li {
    position: relative;
    display: flex;
    gap: .25rem;
    padding-left: 30px;
}
.c-pros-cons__list > li::before {
    position: absolute;
    left: 0;
}
.c-pros-cons__set.o-pros > .c-pros-cons__list > li::before {
    content: '✅';
}
.c-pros-cons__set.o-cons > .c-pros-cons__list > li::before {
    content: '❌';
}
.c-brand-circle {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 2rem;
}
.c-brand-cirle__item {
    border: 2px solid #da251e;
    border-radius: 10px;
    width: 100%;
    padding: .5rem;
}
.c-brand-bottom {
	position: fixed;
    z-index: 10;
    bottom: 8px;
    left: 8px;
    display: none;
    flex-direction: column;
    width: calc(100% - 16px);
    gap: .5rem;
    padding: .5rem;
    border: 1px solid #FDC037;
    background-color: #ffffff;
    border-radius: 5px;
}
.c-brand-bottom.js-active {
    display: flex;
}
.c-brand-bottom__heading {
	display: flex;
    gap: .5rem;
}
.c-brand-bottom__img {
	min-width: 48px;
    height: 48px;
}
.c-brand-bottom__info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.c-brand-bottom__info a {
	font-size: 1.125rem;
    line-height: normal;
    font-weight: bold;
    color: #289dcc;
}
.c-brand-bottom > .o-btn.o-btn--red:hover {
	color: white;
    text-decoration: none;
}
.c-brand-bottom__rate {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .25rem;
	font-size: .75rem;
    font-weight: 600;
    color: #42403C;
}
.c-brand-bottom__rate::before {
    content: '';
    display: block;
    width: 80px;
    height: 15px;
    mask-image: url(../img/icons/star.svg);
    mask-repeat: repeat;
    mask-size: contain;
    background: linear-gradient(to right, #fcc749 var(--rate) 0%, #4a4a4a var(--rate) 100% )
}
.c-brand-bottom__bonus {
    color: #42403C;
}
.c-brand-bottom__close {
	position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: .5rem;
    right: .5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: transparent;
}
.c-brand-bottom__close > span {
    position: absolute;
    display: block;
    width: 18px;
    height: 4px;
    border-radius: 2px;
    background-color: #CF0027;
}
.c-brand-bottom__close > span:first-of-type {
    rotate: 45deg;   
}
.c-brand-bottom__close > span:last-of-type {
    rotate: 135deg;
}
.c-brand-bottom__close:hover {
	background-color: none;
}
.wp-block-search__inside-wrapper img {
    margin-bottom: 0;
}

.panel-grid.panel-has-style .brand-rev.panel-row-style {
    flex-direction: column;
}

.panel-grid.panel-has-style {
    border: 2px solid #da251e;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
}

.panel-grid.panel-has-style:first-of-type {
    padding: 0 10px 10px 10px;
    border: 5px solid #ffcb08;
}

.panel-grid.panel-has-style:first-of-type .panel-grid.panel-has-style:first-of-type {
    border-radius: 0;
    padding: 6px 14px;
    background-color: #ffcb08;
    width: fit-content;
    font-weight: 700;
    margin: 0 auto 10px auto;
}

.panel-grid.panel-has-style:first-of-type .panel-grid.panel-has-style:first-of-type p {
    margin: 0;
}

.panel-grid.panel-has-style .panel-grid.panel-has-style {
    border: none;
}

@media (min-width: 768px) {
    .panel-grid.panel-has-style .brand-rev.panel-row-style {
        flex-direction: row;
    }
    .c-pros-cons {
        flex-direction: row;
    }
    .c-pros-cons__set {
		width: 50%;
    }
    .c-brand-bottom {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        max-width: 94%;
        left: 3%;
        padding: 1rem 4rem;
    }
    .c-brand-bottom__info {
        gap: .25rem;
    }
    .c-brand-bottom__info > a, .c-brand-bottom__bonus {
        line-height: normal;
        font-size: 1.375rem;
    }
    .c-brand-bottom__rate {
        font-size: 1rem;
    }
    .c-brand-bottom__img {
        min-width: 80px;
        height: 80px;
    }
    .c-brand-bottom > .o-btn.o-btn.o-btn--red {
        margin-left: auto;
        min-width: 195px;
    }
}
@media (min-width: 1024px) {
    .o-flex-lg {
        display: flex;
    }
    .o-align-center-lg {
        align-items: center;
    }
    .o-justify-between-lg {
        justify-content: space-between;
    }
    .o-center-lg {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .o-column-lg {
        flex-direction: column;
    }
    .o-w-33-lg {
        width: 33.33%;
    }
    .o-p-img {
        grid-template-columns: 1fr 1fr;
    }
    .c-brand-circle {
        flex-direction: row;
    }
    .c-brand-circle__item {
        width: 33.33%;
    }
}
@media (min-width: 1190px) {
    .c-brand-bottom {
		max-width: 1140px;
        left: calc((100% - 1140px) / 2);
    }
}