
html {
   scroll-behavior: smooth
}

body {
   background-color: var(--bg);
   color: var(--sec_txt);
   display: flex
}

main {
   flex-grow: 1;
   max-width: 100%
}

section:nth-child(odd):not(header+section) {
   background-color: rgba(var(--border-rgb), .15);
}

section:nth-child(odd):not(header+section)+footer {
   padding-top: 1rem
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
   font-weight: 700;
   color: var(--prim_txt);
   overflow: hidden;
   text-overflow: ellipsis
}

a {
   color: var(--link_txt)
}

a:hover {
   color: var(--link_txt)
}

hr {
   border-color: var(--border) !important
}

.inline-img {
   border: 1px solid var(--border);
   border-radius: .75rem;
   margin-bottom: 1rem;
   width: auto;
   max-width: 100%;
   display: block
}

.form.subscribe {
   text-align: center;
   background-image: radial-gradient(circle, transparent 50%, rgba(var(--link_txt-rgb), .15));
   border: 1px solid var(--link_txt);
   border-radius: .75rem;
   margin-bottom: 1rem;
   padding: 1.5rem
}

input.form-control,
textarea.form-control {
   background-color: var(--bg) !important;
   color: var(--prim_txt) !important;
   border: 1px solid var(--border);
   box-shadow: none !important
}

input.form-control:focus,
textarea.form-control:focus {
   border-color: var(--link_txt)
}

input.form-control::placeholder,
textarea::placeholder {
   color: var(--sec_txt) !important
}

input.form-control,
textarea.form-control,
.btn,
.btn-group>.btn {
   border-radius: .5rem
}

.btn-group {
   text-decoration: none !important
}

.btn-group,
.btn-group>.btn:first-child {
   width: 100%
}

.btn-group>.btn:last-child:not(.outline) {
   background-image: linear-gradient(rgba(0, 0, 0, .15), rgba(0, 0, 0, .15))
}

.btn:not(.outline) {
   background-color: var(--btn_bg);
   color: var(--btn_txt) !important;
   border: 1px solid var(--btn_bg)
}

.btn.outline {
   background-color: transparent;
   color: var(--btn_bg) !important;
   border: 1px solid var(--btn_bg)
}

.stars {
   color: #ffce1c
}

.terms {
   font-size: .6rem;
   margin: 0
}

.nav {
   background-color: var(--navbar_bg);
   height: calc(50px + 1rem)
}

.nav .container,
.nav form {
   position: relative;
   display: flex;
   justify-content: space-between;
   align-items: center
}

.nav a:not(li a) {
   font-size: 1.5rem;
   color: #fff
}

.nav .container>a:nth-of-type(2) {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap
}

.nav img {
   width: auto;
   max-width: 100%;
   height: auto;
   max-height: 50px
}

.nav+nav:not(.d-none.d-lg-block) {
   text-align: center;
   border-bottom: 1px solid var(--border)
}

.nav-list {
   padding-top: 1rem !important;
   padding-bottom: 1rem !important
}

.nav-list li {
   width: auto !important;
   scroll-snap-align: unset !important
}

.nav-list li:not(:last-child) {
   margin-right: 0 !important
}

.nav-list .fa-angle-down {
   transition: .15s
}

.nav-list .fa.active {
   transform: rotate(180deg)
}

.nav-list ul {
   background-color: var(--bg);
   overflow: hidden;
   z-index: 2
}

.nav-list ul ul {
   left: 0;
   transition: .15s
}

.nav-list li li>*:not(ul) {
   padding: .75rem;
   display: flex;
   align-items: center
}

.nav-list li li:not(:last-child)>*:first-child {
   border-bottom: 1px solid var(--border)
}

.nav-list li li b {
   flex-grow: 1;
   overflow: hidden;
   text-overflow: ellipsis
}

.nav-list li li a {
   text-align: left;
   flex-grow: 1;
   overflow: hidden;
   text-overflow: ellipsis
}

.nav-list li li .fa {
   background-color: rgba(var(--border-rgb), .5);
   border-radius: 50%;
   width: 30px;
   min-width: 30px;
   height: 30px;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer
}

.nav-list li li .fa:hover {
   background-color: var(--border)
}

#sidebar {
   position: fixed;
   background-color: rgba(var(--bg-rgb), .8);
   z-index: 1021
}

#sidebar.active {
   top: 0;
   right: 0;
   bottom: 0;
   left: 0
}

#sidebar .close {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 300px;
   cursor: pointer
}

#sidebar .close+* {
   position: sticky;
   top: 0;
   background-color: var(--bg);
   border-right: 1px solid var(--border);
   padding: 1.5rem;
   width: 300px;
   height: 100vh;
   overflow: auto;
   transition: .15s
}

#sidebar:not(.active) .close+* {
   margin-left: -300px
}

.icons {
   margin: -2px;
   display: flex;
   justify-content: center
}

.icons>* {
   margin: 2px;
   width: calc(25% - 4px)
}

.icons img {
   border-radius: 25%;
   width: 100%
}

.icons+.icons {
   margin-top: calc(3rem - 2px);
}

.icons+.icons>* {
   width: calc(12.5% - 4px)
}

.swiper {
   position: relative
}

.swiper-shadow {
   position: absolute;
   top: 0;
   right: -15px;
   bottom: 0;
   background-image: linear-gradient(to right, rgba(var(--bg-rgb), 0), var(--bg));
   width: 15px;
   z-index: 1
}

.swiper-shadow:first-child {
   left: -15px;
   background-image: linear-gradient(to right, var(--bg), rgba(var(--bg-rgb), 0));
}

.list {
   list-style: none;
   margin: 0;
   padding: 0
}

.list.cols {
   margin: -7.5px;
   display: flex;
   flex-wrap: wrap;
   justify-content: center
}

.cols>li {
   margin: 7.5px;
   width: calc(100% - 15px)
}

.swiper>.list,
.table-swiper>div {
   margin-left: -15px;
   padding-left: 15px;
   width: calc(100% + 30px);
   overflow: auto;
   white-space: nowrap;
   scroll-snap-type: x mandatory;
   scroll-padding: 15px
}

.swiper>.list>li {
   margin-right: 15px;
   width: calc(100% - 30px);
   display: inline-flex;
   white-space: normal;
   vertical-align: top;
   scroll-snap-align: start
}

.table-swiper {
   margin-bottom: 1rem
}

*+.table-swiper {
   margin-top: 1rem
}

.table-swiper table {
   margin-right: 15px;
   width: calc(100% - 15px);
   display: inline-table
}

.table-swiper tr>* {
   border: 1px solid var(--border);
   padding: .5rem .75rem;
   overflow: hidden;
   text-overflow: ellipsis
}

.table-swiper th {
   color: var(--prim_txt)
}

*::-webkit-scrollbar {
   display: none
}

.breadcrumb {
   font-size: .8rem;
   background-color: transparent;
   border-bottom: 1px solid var(--border);
   border-radius: 0;
   margin: 0;
   padding: .75rem 0
}

.breadcrumb li::before,
.breadcrumb li.active {
   color: var(--sec_txt) !important
}

.styled-list {
   background-color: rgba(var(--border-rgb), .5);
   border-radius: .75rem;
   margin-bottom: 1rem;
   padding: 1.5rem;
   width: 100%
}

.styled-list li {
   counter-increment: item;
   position: relative;
   color: var(--prim_txt);
   padding-left: calc(18px + 1rem)
}

.styled-list li:not(:last-child) {
   margin-bottom: .5rem
}

.styled-list li::before {
   content: '';
   position: absolute;
   top: 3px;
   left: 0;
   font-size: .8rem;
   background-color: var(--btn_bg);
   color: var(--btn_txt);
   border-radius: 50%;
   width: 18px;
   height: 18px;
   display: inline-flex;
   justify-content: center;
   align-items: center
}

ol.styled-list li::before {
   content: counter(item)
}

.check-list li::before {
   content: '✓' !important
}

div:has(+.b-l-1) {
   margin: 0 0 1rem auto;
   width: calc(80px + .5rem);
   display: flex;
   justify-content: space-between
}

div:has(+.b-l-1)>i {
   margin: 0;
   width: 40px;
   height: 40px
}

.b-l-1 {
   background-color: var(--bg);
   border: 1px solid var(--border);
   border-radius: .75rem;
   overflow: hidden
}

.b-l-1>.list {
   display: flex;
   white-space: nowrap
}

.b-l-1>.list>li {
   padding: 1rem 1rem .5rem 1rem;
   width: 25%;
   min-width: 25%;
   display: flex;
   flex-direction: column;
   white-space: normal;
   transition: .15s
}

.b-l-1>.list>li:nth-child(odd) {
   background-color: rgba(var(--border-rgb), .15)
}

.b-l-1>.list>li.shrink {
   padding: 0 !important;
   width: 0 !important;
   min-width: 0 !important;
   max-width: 0 !important
}

.b-l-1 .spacer,
.b-l-2 .spacer {
   text-align: center;
   color: #fff;
   border: 1px solid var(--border);
   border-radius: .75rem;
   display: block;
   overflow: hidden
}

.b-l-1 .spacer div {
   text-align: left;
   font-size: .9rem;
   font-weight: 700;
   background-color: rgba(0, 0, 0, .15);
   padding: .25rem .75rem;
   width: 100%;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap
}

.rating-tags {
   margin-bottom: auto;
   padding: 1rem 0;
   display: flex;
   align-items: flex-start
}

.rating-tags>div:nth-child(2) {
   padding-left: .5rem;
   width: 60%;
   align-self: center
}

.rating-tags .tags li {
   font-size: .8rem;
   padding-left: calc(13px + .5rem);
   width: 100%;
   overflow: hidden;
   text-overflow: ellipsis
}

.rating-tags .tags li>*::before {
   font-size: .6rem;
   width: 13px;
   height: 13px
}

.rating {
   text-align: center;
   background-color: rgba(var(--border-rgb), .25);
   color: var(--prim_txt);
   border-radius: .75rem;
   padding: .5rem 0;
   flex-grow: 1
}

.rating .stars i {
   font-size: .8rem;
   margin: 0 1px;
}

.rating .stars i:nth-child(2),
.rating .stars i:nth-child(4) {
   transform: scale(1.25)
}

.rating .stars i:nth-child(3) {
   transform: scale(1.5)
}

.bonus {
   position: relative;
   text-align: center;
   background-color: rgba(var(--btn_bg-rgb), .1);
   border-radius: .75rem;
   margin-bottom: calc(19px + .5rem);
   padding: 1rem 1.5rem 0 1.5rem
}

.bonus:has(.code) {
   margin-top: 12.5px
}

.bonus span:not(.btn) {
   font-size: .8rem;
   font-weight: 700;
   color: var(--link_txt)
}

.bonus .btn {
   margin-top: 1rem;
   margin-bottom: -19px
}

.bonus .btn:not(:last-child) {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap
}

.bonus .code {
   position: absolute;
   top: -12.5px;
   right: 8px;
   font-size: .6rem !important;
   background-color: var(--bg);
   background-image: linear-gradient(rgba(var(--link_txt-rgb), .05), rgba(var(--link_txt-rgb), .05));
   margin: 0;
   cursor: pointer
}

.bonus+.terms {
   text-align: center
}

.b-l-2 .item {
   position: relative;
   background-color: var(--bg);
   background-image: linear-gradient(rgba(var(--border-rgb), .15), rgba(var(--border-rgb), .15));
   border: 1px solid var(--border);
   border-radius: .75rem;
   display: flex;
   align-items: stretch
}

.b-l-2 .item>div {
   width: 25%;
   min-width: 25%
}

.b-l-2 .item>div:first-child {
   text-align: center
}

.b-l-2 .item>div:not(.bonus) {
   padding: 1rem;
   display: flex;
   flex-direction: column;
   justify-content: center
}

.b-l-2 .spacer {
   text-decoration: none;
   color: var(--prim_txt)
}

.b-l-2 .spacer div {
   background-color: var(--bg);
   border-top: 1px solid var(--border);
   padding: .25rem .75rem;
   display: flex;
   justify-content: space-between;
   align-items: center
}

.b-l-2 h4,
.b-l-3 h4 {
   white-space: nowrap
}

.b-l-2 h4 a {
   color: var(--prim_txt)
}

.b-l-2 .data-table tbody {
   margin: 0
}

.b-l-2 .data-table tr {
   margin: 0 !important;
   width: 100%;
   display: flex;
   align-items: center
}

.b-l-2 .data-table tr:not(:first-child) {
   border-top: 0
}

.b-l-2 .data-table tr>* {
   font-size: .8rem;
   padding: .25rem 0 !important;
   width: 50%
}

.b-l-2 .data-table td {
   text-align: right
}

.b-l-2 .bonus {
   display: flex;
   flex-direction: column
}

.b-l-2 .bonus .btn {
   position: relative;
   z-index: 1
}

.b-l-2 .item+.terms {
   text-align: center;
   padding: .5rem 0
}

.b-l-2 .item+.terms:last-child {
   padding-bottom: 0
}

.b-l-3>div:not(.item) {
   margin-top: calc(-50px - 1rem);
   padding-top: calc(50px + 1rem)
}

.b-l-3>div:not(:first-child) {
   margin-top: calc(-50px - 1rem + 3rem)
}

.b-l-3 .item {
   border: 1px solid var(--border);
   border-radius: .75rem;
   overflow: hidden
}

.b-l-3 .item>* {
   padding: 1.5rem
}

.b-l-3 .item>a {
   background-image: linear-gradient(var(--border), transparent);
   color: var(--prim_txt);
   display: flex;
   justify-content: space-between
}

.b-l-3 .item>a img {
   border: 1px solid var(--border);
   border-radius: min(25%, .75rem);
   margin-bottom: -100%;
   width: 25%;
   max-width: 100px;
   height: 100%;
   box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)
}

.b-l-3 .item>div {
   background-color: rgba(var(--border-rgb), .15)
}

.b-l-3 .item>div[style] {
   background-image: linear-gradient(135deg, rgba(0, 0, 0, .25), transparent)
}

.b-l-3 .item>a+div {
   border-top: 1px solid var(--border)
}

.b-l-3 .item>div>span:first-child {
   font-size: .8rem;
   font-weight: 700
}

.b-l-3 .item>div[style]>span:first-child,
.b-l-3 .item>div[style] .terms {
   color: rgba(255, 255, 255, .75)
}

.b-l-3 .item>a+div>.h4:nth-child(2) {
   color: #fff;
   max-width: calc(100% - min(25%, 100px))
}

.b-l-3 article {
   background-color: rgba(var(--border-rgb), .35);
   margin-top: 1.5rem;
   border-radius: .75rem;
   padding: 1.5rem
}

.b-l-3 .item>div[style] article {
   background-color: rgba(0, 0, 0, .15);
   color: rgba(255, 255, 255, .75)
}

.b-l-3 article .styled-list {
   background-color: transparent;
   border: 1px solid var(--border)
}

.b-l-3 .item>div[style] article .styled-list {
   border-color: rgba(255, 255, 255, .15)
}

.b-l-3 .item>div[style] article .styled-list li {
   color: rgba(255, 255, 255, .75)
}

.b-l-3 .item>div[style] article .styled-list li::before {
   background-color: #fff;
   color: rgba(0, 0, 0, .5)
}

.b-l-3 article>*+:last-child {
   margin-top: 1.5rem
}

.b-l-3 .item>div:not([style]) article>*+:last-child:not(.styled-list+*) {
   border-top: 1px solid var(--border);
   margin-left: -1.5rem;
   padding: 1.5rem 1.5rem 0 1.5rem;
   width: calc(100% + 3rem)
}

.b-l-3 .item>div[style] article .btn {
   background-color: transparent;
   color: #fff !important;
   border-color: #fff
}

.b-l-3 .item>div[style] article .btn:not(.outline) {
   background-color: #fff !important
}

.b-l-3 article+.terms {
   margin-top: 1.5rem
}

.data-table {
   width: 100%
}

.data-table tbody {
   margin: -.5rem;
   display: flex;
   flex-wrap: wrap
}

.data-table tr {
   border-bottom: 1px solid var(--border);
   margin: .5rem;
   width: calc(50% - 1rem)
}

.data-table tr:nth-child(-n+2) {
   border-top: 1px solid var(--border)
}

.data-table tr>* {
   display: block
}

.data-table th {
   font-size: .8rem;
   font-weight: 400
}

.data-table tr:nth-child(-n+2) th {
   padding-top: 1rem
}

.data-table td {
   font-weight: 700;
   color: var(--prim_txt);
   padding-bottom: 1rem
}

.code {
   text-align: center;
   background-color: rgba(var(--link_txt-rgb), .05);
   color: var(--link_txt);
   border: 1px dashed var(--link_txt);
   border-radius: .25rem;
   margin-top: .25rem;
   padding: .25rem .5rem;
   display: block;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap
}

.tags {
   text-align: left;
   display: flex;
   flex-wrap: wrap;
   flex-grow: 1
}

.tags li {
   position: relative;
   padding-left: calc(18px + .5rem);
   width: 50%
}

.tags li:not(:last-child) {
   margin-bottom: .5rem
}

.tags li>*:not([href="#"]) {
   text-decoration: none;
   color: var(--prim_txt)
}

.tags li>*::before {
   content: '✓';
   position: absolute;
   top: 3px;
   left: 0;
   font-size: .8rem;
   background-color: rgba(16, 193, 104, .1);
   color: #10C168;
   border-radius: 50%;
   width: 18px;
   height: 18px;
   display: inline-flex;
   justify-content: center;
   align-items: center
}

.tags li a[href="#"]::before {
   visibility: hidden
}

.brands-list li:not(:first-child) {
   margin-top: .5rem
}

.brands-list a {
   text-decoration: none;
   background-image: linear-gradient(var(--border), transparent);
   color: var(--prim_txt);
   border: 1px solid var(--border);
   border-radius: .75rem;
   padding: .5rem 1rem .5rem .5rem;
   display: flex;
   align-items: center
}

.brands-list img {
   border: 1px solid var(--border);
   border-radius: min(25%, .75rem);
   width: min(25%, 50px);
   min-width: min(25%, 50px)
}

.brands-list span {
   font-weight: 700;
   margin: 0 1rem;
   display: block;
   flex-grow: 1;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap
}

.brands-list a:hover span {
   text-decoration: underline
}

.brands-list .fa {
   color: var(--sec_txt)
}

.faq-list {
   border: 1px solid var(--border);
   border-radius: .75rem;
   overflow: hidden
}

.faq-list>li {
   transition: .15s
}

.faq-list>li:not(:first-child) {
   border-top: 1px solid var(--border)
}

.faq-list>li>div {
   padding: 1rem
}

.faq-list>li>div:first-child {
   display: flex;
   align-items: center;
   cursor: pointer
}

.faq-list>li>div:first-child h3 {
   font-size: 1rem;
   margin: 0 1rem 0 0
}

.faq-list>li>div:first-child i,
div:has(+.b-l-1)>i {
   position: relative;
   background-color: rgba(var(--border-rgb), .5);
   color: var(--prim_txt);
   border: 1px solid var(--border);
   border-radius: .5rem;
   margin-left: auto;
   width: 40px;
   min-width: 40px;
   height: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer
}

.faq-list>li:hover>div:first-child i,
.faq-list>li.active>div:first-child i,
div:has(+.b-l-1)>i:hover {
   background-color: transparent
}

.faq-list>li>div:first-child i::before {
   content: '';
   background-color: var(--prim_txt);
   border-radius: 10rem;
   width: 18px;
   height: 2px
}

.faq-list>li>div:first-child i::after {
   content: '';
   position: absolute;
   top: 10px;
   left: 18px;
   background-color: var(--prim_txt);
   border-radius: 10rem;
   width: 2px;
   height: 18px;
   display: block;
   transition: .15s
}

.faq-list>li.active>div:first-child i::after {
   transform: rotate(90deg)
}

.faq-list>li>div:last-child {
   background-color: rgba(var(--border-rgb), .15);
   border-top: 1px solid var(--border)
}

.faq-list ol,
.faq-list ul {
   margin-bottom: 1rem
}

.faq-list>li>div:last-child>*:last-child {
   margin-bottom: 0
}

.news-list {
   justify-content: flex-start !important
}

.news-list li:nth-child(n+14),
.col-lg-8 .news-list li:nth-child(n+5) {
   display: none
}

.news-list a {
   text-decoration: none;
   font-size: .8rem;
   background-color: rgba(var(--border-rgb), .15);
   color: var(--sec_txt);
   border: 1px solid var(--border);
   border-radius: .75rem;
   padding: 1rem;
   height: 100%;
   display: flex;
   overflow: hidden
}

.news-list .spacer {
   background-color: var(--border);
   background-size: auto 100%;
   background-position: center;
   background-repeat: no-repeat;
   border: 1px solid var(--border);
   border-radius: .75rem;
   padding-top: calc(40% - 2px);
   width: 40%;
   min-width: 40%
}

.news-list a>div:nth-child(2) {
   margin-left: 1rem;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   overflow: hidden
}

.news-list h4 {
   font-size: 1rem;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden
}

.news-list a:hover h4 {
   text-decoration: underline
}

.ratings-list li {
   width: calc(50% - 22.5px) !important
}

.ratings-list a {
   text-align: center;
   text-decoration: none;
   background-color: rgba(var(--border-rgb), .15);
   color: var(--sec_txt);
   border: 1px solid var(--border);
   border-radius: .75rem;
   width: 100%;
   display: block;
   overflow: hidden
}

.ratings-list div:first-child {
   padding: .75rem
}

.ratings-list b {
   color: var(--prim_txt);
   display: block;
   overflow: hidden;
   text-overflow: ellipsis
}

.ratings-list .stars {
   border-top: 1px solid var(--border);
   padding: .25rem
}

#article img {
   border: 1px solid var(--border);
   border-radius: .75rem;
   width: 100%
}

#article>*:last-child {
   margin-bottom: 0
}

#reviews form {
   background-color: rgba(var(--border-rgb), .15);
   border: 1px solid var(--border);
   border-radius: .75rem;
   padding: 1rem
}

#reviews form .stars {
   margin: 0 -.25rem
}

#reviews form .stars * {
   font-size: 1.75rem;
   padding: 0 .25rem;
   cursor: pointer
}

#reviews form+*+* {
   display: flex;
   align-items: center
}

#reviews form+*+*>div {
   width: 50%
}

#reviews form+*+*>div>div {
   display: flex;
   flex-direction: column;
   justify-content: space-around
}

#reviews form+*+* .stars {
   text-align: right;
   font-size: .6rem
}

#reviews form+*+* .stars .fa-star-o {
   display: none
}

#reviews form+*+* .stars+* {
   margin-left: 1rem;
   flex-grow: 1
}

#reviews form+*+* .stars+* span {
   background-color: var(--border);
   border-radius: 10rem;
   width: 100%;
   height: 6px;
   display: block;
   overflow: hidden
}

#reviews form+*+* .stars+* span i {
   background-color: #ffce1c;
   width: 0;
   height: 6px;
   display: block;
   cursor: pointer
}

#reviews li {
   background-color: rgba(var(--border-rgb), .15);
   border: 1px solid var(--border);
   border-radius: .75rem;
   padding: 1rem;
   width: calc(50% - 22.5px);
   flex-direction: column
}

#reviews li>div:first-child {
   display: flex
}

#reviews li>div:first-child>div:first-child {
   flex-grow: 1
}

#reviews li b {
   color: var(--prim_txt)
}

#reviews li p {
   font-size: .8rem;
   min-height: 3.6rem !important
}

#reviews li p:not(:hover) {
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden
}

@media (max-width: 575px) {

   .nav-list ul {
      position: fixed;
      top: calc(50px + 1rem);
      left: 0;
      width: 100vw;
      height: calc(100vh - 50px - 1rem) !important;
      overflow-y: auto
   }

   .nav-list ul ul:not(.active) {
      left: 100vw
   }

   .nav-list li li:first-child {
      position: sticky;
      top: 0;
      background-color: var(--bg)
   }

   .nav-list li li .fa {
      width: 40px;
      height: 40px
   }

   .b-l-1>.list {
      transform: translateX(calc(-62.5% - 75%))
   }

   .b-l-1::before,
   .b-l-1::after {
      width: 12.5%
   }

   .b-l-1>.list>li {
      width: 75%;
      min-width: 75%
   }

   .ratings-list li,
   #reviews li {
      width: calc(66.66% - 25px) !important
   }
}

@media (min-width: 576px) {
   .nav-list>li>ul {
      top: calc(100% - 1rem + 2px);
      border: 1px solid var(--border);
      width: 300px;
      box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)
   }

   .nav-list ul {
      position: absolute;
      border-radius: .5rem
   }

   .nav-list ul ul {
      top: 0;
      width: 298px;
      min-height: 100%
   }

   .nav-list ul ul:not(.active) {
      left: 298px
   }
}

@media (max-width: 767px) {
   .b-l-3 .item:not(:has(>div[style])) {
      border-radius: 0;
      border-left: 0;
      border-right: 0;
      margin-left: -15px;
      width: calc(100% + 30px)
   }

   .b-l-2 .item>div:first-child {
      border-right: 1px solid var(--border);
      padding: 0;
      width: 40%;
      min-width: 40%
   }

   .b-l-2 .spacer {
      border: none;
      border-radius: 0;
      height: 100%;
      display: flex;
      flex-direction: column
   }

   .b-l-2 img {
      margin: auto !important;
      width: 60% !important
   }

   .b-l-2 .bonus {
      border-radius: 0;
      margin: 0 !important;
      width: 60% !important;
      min-width: 60% !important
   }

   .b-l-2 .item>div:not(:first-child, .bonus) {
      display: none
   }

   .b-l-2 .item+.terms {
      padding: 1.75rem 0 .5rem 0;
   }

   .b-l-2 .terms+.item:has(.code) {
      margin-top: 11.5px
   }
}

@media (min-width: 768px) {
   .b-l-2 .item>div:nth-child(n+2):not(.bonus) {
      padding-left: 0
   }

   .b-l-2 .bonus {
      margin: 1rem 1rem calc(1rem + 19px) 0;
      min-width: calc(25% - 1rem) !important
   }

   .b-l-2 .bonus:has(.code) {
      margin-top: calc(1rem + 12.5px)
   }

}

@media (max-width: 991px) {

   h1,
   h2 {
      font-size: 1.75rem
   }

   h4,
   .h4 {
      font-size: 1.25rem
   }

   .nav .container>a:nth-of-type(2) {
      margin: 0 1rem
   }

   .nav .container>div {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: var(--navbar_bg);
      padding: .5rem 15px;
      display: none
   }

   .b-l-3 .item:has(>div[style])>* {
      padding: 1rem
   }

   .b-l-3 .item:has(>div[style])>a h4 {
      font-size: 1rem !important
   }

   .b-l-3 .item>div[style] article {
      margin-top: 1rem;
      padding: 1rem
   }

   .b-l-3 .item>div[style] article>*:not(:last-child) {
      display: none
   }

   .b-l-3 .item>div[style] article>*+:last-child {
      margin-top: 0
   }

   .b-l-3 .item>div[style] article .btn.outline:last-child {
      display: none
   }

   .b-l-3 .item>div[style] article+.terms {
      margin-top: 1rem
   }

   .news-list li.divider,
   #brand h1 span {
      display: none
   }

   #article img {
      border: 0;
      border-bottom: 1px solid var(--border);
      border-radius: 0;
      margin-left: -15px;
      width: calc(100% + 30px)
   }
}

@media (min-width: 992px) {

   .nav .container>a:nth-of-type(2) {
      margin: 0 2rem
   }

   .nav .container>a:nth-of-type(3) {
      display: none
   }

   .nav .container>div {
      flex-grow: 1;
      display: block !important
   }

   .nav form a {
      display: none
   }

   .b-l-3 .item>div[style] article>*+:last-child:not(.styled-list+*) {
      border-top: 1px solid rgba(255, 255, 255, .15);
      margin-left: -1.5rem;
      padding: 1.5rem 1.5rem 0 1.5rem;
      width: calc(100% + 3rem)
   }

   .faq-list>li>div {
      padding: 1.5rem
   }

   .news-list:not(.col-lg-8 *) li:not(.divider) {
      width: calc(33.33% - 15px)
   }

   .news-list:not(.col-lg-8 *) li:first-child {
      width: calc(50% - 15px) !important
   }

   .news-list:not(.col-lg-8 *) li:nth-child(-n+3):not(:first-child) {
      width: calc(25% - 15px) !important
   }

   .news-list:not(.col-lg-8 *) li:nth-child(-n+3):not(:first-child) a {
      flex-direction: column
   }

   .news-list:not(.col-lg-8 *) li:nth-child(-n+3):not(:first-child) a>div:nth-child(2) {
      margin: 1rem 0 0 0
   }

   .news-list:not(.col-lg-8 *) li:first-child h4 {
      font-size: 1.5rem;
      -webkit-line-clamp: 4
   }

   .col-lg-8 .news-list li {
      width: calc(50% - 15px) !important
   }

   .col-lg-8 .news-list a {
      padding: .5rem
   }

   .col-lg-8 .news-list a>div:nth-child(2) {
      margin-left: .5rem
   }

   .ratings-list li {
      width: calc(33.33% - 20px) !important
   }

}

@media (max-width: 1199px) {
   .container {
      max-width: 100% !important
   }

   .b-l-1,
   .b-l-2>:not(.swiper) {
      position: relative;
      margin-left: -15px;
      width: calc(100% + 30px)
   }

   .b-l-1 {
      border-left: 0;
      border-right: 0;
      border-radius: 0
   }

   .b-l-1::before,
   .b-l-1::after {
      content: '';
      position: absolute;
      top: 1px;
      bottom: 1px;
      z-index: 1
   }

   .b-l-1::before {
      left: 0;
      background-image: linear-gradient(to right, var(--bg), transparent)
   }

   .b-l-1::after {
      right: 0;
      background-image: linear-gradient(to left, var(--bg), transparent)
   }

   .b-l-2 .item {
      border: 0;
      border-top: 1px solid var(--border);
      border-radius: 0
   }

   .b-l-2 .item:last-child {
      border-bottom: 1px solid var(--border);
   }

   .b-l-2 .item+.terms {
      border-top: 1px solid var(--border)
   }
}

@media (min-width: 1200px) {
   .b-l-1>.list {
      transform: translateX(-50%)
   }
}

@media (min-width: 576px) and (max-width: 767px) {

   .b-l-1::before,
   .b-l-1::after {
      width: 25%
   }

   .b-l-1>.list {
      transform: translateX(calc(-25% - 50%))
   }

   .b-l-1>.list>li {
      width: 50%;
      min-width: 50%
   }

   .news-list li:not(.divider) {
      width: calc(50% - 15px)
   }

   .news-list li:not(.divider) a {
      flex-direction: column
   }

   .news-list a>div:nth-child(2) {
      margin: 1rem 0 0 0
   }
}

@media (min-width: 768px) and (max-width: 991px) {

   .b-l-1::before,
   .b-l-1::after {
      width: 16.66%
   }

   .b-l-1>.list {
      transform: translateX(calc(-16.66% - 33.33%))
   }

   .b-l-1>.list>li {
      width: 33.33%;
      min-width: 33.33%
   }

   .b-l-2 .item>div:not(:nth-child(2)) {
      width: 30%;
      min-width: 30%
   }

   .b-l-2 .item>div:nth-child(2) {
      width: 40%;
      min-width: 40%
   }

   .b-l-2 .item>div:nth-child(3) {
      display: none
   }

   .news-list li:not(.divider) {
      width: calc(50% - 15px)
   }

}

@media (min-width: 992px) and (max-width: 1199px) {

   .b-l-1::before,
   .b-l-1::after {
      width: 12.5%
   }

   .b-l-1>.list {
      transform: translateX(calc(-12.5% - 25%))
   }

   .b-l-1>.list>li {
      width: 25%;
      min-width: 25%
   }
}

