/*
Theme Name: New Custom Theme
Theme URI: https://example.com
Author: Webnow
Author URI: https://example.com
Description: Custom professional WordPress theme.
Version: 1.0
Text Domain: new-custom-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
 
:root {
    --site-bg: #0f1628;
    --site-text: #9ca3af;
    --bg-color-2: #1a2542;
    --bg-color-2-text: #9ca3af;
    --site-headings: #ffffff;
    --primary-color: #0073ff;
    --primary-color-hover: #0073ff;
    --header-bg: #141d35;
    --header-text: #ffffff;
    --footer-bg: #141d35;
    --footer-text: #4b5563;
    --container-width: 1200px;
    --primary-font: 'Inter', sans-serif;
}
*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body {
    margin: 0;
	padding:0;
	font-family: var(--primary-font);
    background: var(--site-bg);
    color: var(--site-text);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 10px 0;
    letter-spacing: 0;
    padding: 0;
    text-transform: inherit;
    font-weight: bold;
}
h1 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-top: 0;
}
h2 {
    font-size: 1.8rem;
    line-height: 1.25;
}
h3 {
    font-size: 1.6rem;
    line-height: 1.25;
}
h4 {
    font-size: 1.5rem;
    line-height: 1.25;
}
h5 {
    font-size: 1.3rem;
    line-height: 1.25;
}
h6 {
   font-size: 1.1rem;
    line-height: 1.25;
}
p {
    margin: 0 0 0.75rem;
    line-height: 1.625;
    font-size: 0.75rem;
}
ol,
ul {
    box-sizing: border-box;
    padding-left: 30px;
    margin-top: 24px;
    margin-bottom: 24px;
}
ol li {
    list-style: decimal;
}
ul li {
    list-style: disc;
}
li {
   margin-bottom: 4px;
}
a {
    color: var(--primary-color);
    text-decoration: none;
} 
a:hover {
    text-decoration: underline;
    color: var(--primary-color-hover);
}
strong,
b {
    font-weight: bold;
}
p {
    font-size: 16px;
	margin: 0 0 15px;
	padding:0;
}
.aligncenter {
    display: block;
    margin: auto;
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.body-content table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    table-layout: inherit;
}
.body-content td,
.body-content th {
    border: 1px solid;
    padding: 8px;
    font-size: 16px;
    line-height: 24px;
	color: var(--site-text);
	text-align: left;
}
.body-content th {
    font-weight: bold;
}
.body-content dl {
    margin: 20px;
    padding: 0;
    font-family: Arial, sans-serif;
    border: 1px solid var(--site-text);;
    border-radius: 5px;
    background-color: var(--site-text);;
	font-size: 16px;
}
.body-content dt {
    font-weight: bold;
    margin: 10px 0 5px;
    padding: 10px;
    background-color: var(--site-text);;
    border-bottom: 1px solid var(--site-text);;
}
.body-content dd {
    margin: 0 0 10px 20px;
    padding: 10px;
    border-left: 2px solid var(--site-text);;
    background-color: var(--site-text);
}
.chi-poissy-content-area blockquote {
    padding: 40px;
    background: var(--bg-color-2);
    border-left: 5px solid var(--bg-color-2-text);
    position: relative;
    margin: 20px auto;
    font-style: italic;
    quotes: "“" "”" "‘" "’";
    text-align: inherit;
}
.chi-poissy-content-area blockquote::before,
.chi-poissy-content-area blockquote::after {
    position: absolute;
    font-size: 3em;
    color: var(--bg-color-2-text);
    font-family: serif;
    line-height: 1;
    z-index: 1;
}
.chi-poissy-content-area blockquote::before {
    content: open-quote;
    top: 10px;
    left: 20px;
}
.chi-poissy-content-area blockquote::after {
    content: close-quote;
    bottom: 10px;
    right: 20px;
}
.chi-poissy-content-area blockquote p {
    display: inline;
    position: relative;
    z-index: 2;
}

/* =========================
   HEADER
========================= */
.site-header {
    background: var(--header-bg);
    color: var(--header-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    padding-bottom: 15px;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-right-text {
    color: var(--header-text);
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}
.header-right-text sup {
    color: var(--header-text);
    font-size: 14px;
    line-height: 20px;
    opacity: 0.7;
}
.header-branding {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.header-branding-title{
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin:0;
}
.header-branding-title a{
    text-decoration: none;
    color: var(--header-text);
}
.header-branding-favicon img {
    max-width: 2.5rem;
    height: auto;
}
.header-branding-tagline {
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--header-text);
    font-weight: normal;
}
/* ===============================
   Hero Section
================================= */

.new_custom_top_author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.new_custom_top_author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.new_author_image {
    line-height: 0;
}
.new_author_image img {
    max-width: 60px;
    height: 60px;
    border-radius: 100%;
}
.new_name_author_out {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}
.new_modifyDetails {
    margin-bottom: 12px;
}
.hero-section {
    padding: 56px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--header-bg) 0%, var(--site-bg) 100%);
    color: var(--site-text);
}

.new-date-author-cl{
    display: inline-block;
    background-color: rgb(59 130 246 / 0.1);
    border: 1px solid rgb(59 130 246 / 0.3);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 0;
    text-transform: uppercase;
}
span.date-status {
    width: 0.5rem;
    height: 0.5rem;
    margin-right: 4px;
    display: inline-block;
    background-color: rgba(34, 197, 94, 1);
    border-radius: 100%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse{
    50%{
        opacity:.5
    }
}
.hero-title h1 {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--site-headings);
}
.hero-title span {
    color: var(--primary-color);
}
.smi-expand-intro-text .dashicons {
    height: auto;
}
.hero-features {
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.hero-feature-item {
    display: inline-flex;
    margin: 0;
    font-size: 14px;
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--site-text);
    font-weight: 300;
    gap: 6px;
    text-align: left;
}
.hero-feature-item svg {
    width: 16px;
    height: 16px;
    color: rgba(34, 197, 94, 1);
}
.hero-feature-item-text{
    opacity: 0.6;
}
.into-text-outer {
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: 42rem;
    margin: auto;
    margin-bottom: 1.5rem;
}  
.smi-intro-fade {
    opacity: 0;
}
div.smi-expand-intro-text {
    color: var(--primary-color);
}
 
.section-title h2,
.section-title h3{
    margin:0 0 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
    color: var(--site-headings);
}

.how-rate-section {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.rating-card {
    background: var(--bg-color-2);
    color: var(--bg-color-2-text);
    text-align: center;
    transition: 0.3s ease;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.rating-card-img {
    line-height: 0;
    margin-bottom: 1rem;
}
.rating-card-img img {
    max-width: 3rem;
}
.rating-card h4 {
    margin: 0 0 0.5rem;
    font-size: 16px;
    line-height: 24px;
    color: var(--site-headings);
}

.rating-card p {
    color: var(--bg-color-2-text);
    font-size: 15px;
}
.rating-card p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin: 0;
}
.payment-section {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-title h4 {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1rem;
    margin: 0 0 1rem;
    color: var(--site-text);
}

.payment-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    gap: 1rem;
}
span.payment-item {
    padding: 0.375rem 0.75rem;
    padding-right: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
/* ===============================
   FOOTER Section
================================= */

.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.site-info {
    text-align: center;
    font-size: 14px;
}

.responsible-box {
    background-color: var(--bg-color-2);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(113, 63, 18, 0.3);
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.responsible-box-icon img {
    max-width: 2.5rem;
    margin-top: 0.125rem;
}
.responsible-box-cont h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #f59e0b;
}
.responsible-text p {
    font-size: 0.875rem;
    color: var(--bg-color-2-text);
    line-height: 1.625;
}
.responsible-text p strong{
    color: var(--site-headings);
}
.responsible-text p:last-child{
    margin-bottom:0;
}
.footer-legal-inr {
    max-width: 48rem;
    margin: auto;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.625;
}
.footer-legal-inr p {
    font-size: 0.75rem;
}
.footer-legal-inr p:last-child{
    margin-bottom:0;
}

.body-content{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
div.accordionButton h3, div.accordionButton h4, div.accordionButton h5, div.accordionButton h6{
    color: var(--site-text) !important;
}




/* BM STYLING CSS START */
div.toplist-ocf__wrapper {
    margin: 40px 0;
}
div.toplist-ocf__wrapper:last-child {
    margin-bottom: 0;
}
div.toplist-ocf__wrapper:first-child {
    margin-top: 0;
}
body .toplist-ocf__offer-logo-wrapper:before {
	display: none
}
 
body .toplist-ocf__offer-logo {
    border: 0;
    border-radius: 0;
}
 
body .toplist-ocf__offer-key-feature {
    display: none;
}
 
body .toplist-ocf__offer-extra {
    background: transparent;
	  position: unset;
}
 
body .toplist-ocf__offer-ribbon {
    font-size: 13px;
    line-height: 26px;
    font-weight: 600;
    height: 30px;
    padding-left: 22px;
    letter-spacing: 1px;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
    width: 100%;
    background: linear-gradient(to right, #1c4548, #1a2643);
    border-radius: 16px 16px 0px 0px;
    text-transform: uppercase;
    border-color: rgb(255 255 255 / 0.05);
    border-bottom: 0 !important;
    border: 1px solid rgb(255 255 255 / 0.05);
}

body .toplist-ocf__offer-rating {
    text-align: left;
}

body .toplist-ocf__offer-ribbon:before, .toplist-ocf__offer-ribbon:after {
	display: none;
}
 
body .toplist-ocf__offer-cta-btn {
    color: #fff;
    border-radius: 10px;
    background: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
 
body .toplist-ocf__offer-cta-btn:hover {
    color: #fff;
    background: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
 
body .toplist-ocf__offer {
    background: rgb(26 37 66 / var(--tw-bg-opacity, 1));
	border-color: rgb(255 255 255 / 0.05);
}

body .toplist-ocf__offers {
    position: relative;
}
 
body .toplist-ocf__offer-bonus {
	  font-family: 'Fira Sans', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
}
/* BM STYLING CSS END */
 
@media screen and (min-width: 992px) {
/* BM STYLING CSS START */
body .toplist-ocf__offer {
    gap: 16px;
    grid-template-columns: 110px 123px auto 170px;
	  padding: 24px 22px;
}
 
body .toplist-ocf__offer-cta-btn {
    height: 46px;
}
body .toplist-ocf__offer-bonus {
    text-align: left;
}
body .toplist-ocf__offer-extra {
	  flex-direction: revert;
	  justify-content: left;
}
body .toplist-ocf__offer-cta-btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.5px;
    height: 52px;
}
body .toplist-ocf__offer-brand-name {
    font-family: 'Fira Sans', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
/* BM STYLING CSS END */
 
}

@media screen and (max-width: 991px) {

.table-auto {
    overflow-x: auto;
    width: 100%;
}
.body-content table:not(.campaign-compact-table) {
    display: block;
    overflow: auto;
}
.body-content .table-auto table:not(.campaign-compact-table) {
    display: table;
}
.body-content table:not(.campaign-compact-table) th,
.body-content table:not(.campaign-compact-table) td {
    white-space: nowrap;
}

/* BM STYLING STAR */
body .toplist-ocf__offer-extra {
    align-items: baseline;
	  padding: 0;
}
body .toplist-ocf__offer-bonus {
    font-size: 20px;
    line-height: 28px;
    text-align: left;
}
body .toplist-ocf__offer {
    padding: 16px;
}
body .toplist-ocf__offer-logo img {
    height: 64px;
}
body .toplist-ocf__offer-brand-name {
    font-size: 18px;
    line-height: 28px;
}
body .toplist-ocf__offer-main {
    gap: 4px;
}
/* BM STYLING END */

}

 
@media screen and (max-width: 767px) {
h1 {
    font-size: 1.875rem;
}
.body-content{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.rating-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.hero-title h1 {
    font-size: 1.875rem;
    line-height: 1.25;
}	
	
.smi-trimmed-content {
    font-size: 1rem;
    line-height: 1.5rem;
}
	
.how-rate-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
	
.footer-legal-inr p {
	margin-bottom: 0.75rem;
}



}
 