/*
Theme Name:     FlixNG
Theme URI:      https://wa.me/2347080820400
Description:    A custom WordPress theme for HipHopKray, optimized for SEO and speed, with custom post types for music, videos, and albums.
Version:        1.0.0
Author:         Lugano
Author URI:     https://wa.me/2347069047498
Text Domain:    FlexNG
License:        GNU General Public License v2 or later
License URI:    https://www.gnu.org/licenses/gpl-2.0.html
Tags:           custom-post-types, SEO, responsive, music, video
Tested up to:   6.6.1
Requires PHP:   8.1
Update Date:    2024-08-27
*/

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font style for entire website - Bold Sans-Serif */
body, 
p, 
h1, h2, h3, h4, h5, h6, 
a, 
span, 
div, 
li, 
button, 
input, 
textarea {
    font-family: "Figtree" !important;
/* Bold weight */
}


a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Post List */
.post-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 5px;
}

@media (max-width: 1100px) {
    .post-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.post-image {
    position: relative;
    display: block;
}

.post-image img {
  display: block;
  width: 100% !important;
  height: 150px;
}

.post-details {
    padding: 5px;
}

.post-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #888;
    margin-bottom: 10px;
}

.post-date,
.post-comments {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: gray;
    font-size: 12px;
}

/* Better Category Badge on Thumbnails */
.post-image {
    position: relative;
}

.post-category {
    position: absolute;
    bottom: 2px;
    left: 2px;
    background: #012b02;
    color: white;
    padding: 2px 2px;
    font-size: 9px;
    font-weight: 700;
    border: 1px solid #ccc;
}

.post-category:hover {
    color: greenyellow !important;
}

.post-parts  {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: darkred;
    color: white;
    padding: 2px 2px;
    font-size: 9px;
    font-weight: 700;
    border: 1px solid #ccc;
}

.post-title {
    font-size: 15px;
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;     
}

.post-content p {
    margin-bottom: 1em;
}


/* Responsive Styles */
@media (max-width: 1100px) {
    .post-title {
        font-size: 15px; /* Adjusted for mobile */
    }

}


/* Footer Styles */
.footer {
    background-color: #012b02;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    border-top: 3px solid #012b02;
}

.footer-links a:hover {
    color: #012b02;
}


/* Responsive Styles */
@media (max-width: 1100px) {
    .footer-links {
        flex-direction: row;
        justify-content: center; /* Center the links */
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px; /* Adjust size for mobile */
        margin: 5px 10px;
    }   
    
}


#trend{
    margin-top: 10px;
}

/* Post Content */
.post-content p {
	font-size: 18px;
	font-weight: 500;
	font-family: Figtree;
}

/* Separator Line */
.separator {
    height: 1px;
    background-color: #e0e0e0;
}

/*Comment */
.comment-system * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Comment System Container */
.comment-system {
  margin: 0 auto;
  padding: 20px 0;
  color: var(--card-text);
}

/* Comment Count Header */
.comment-system .comment-count {
    font-size: 1.0em;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    font-weight: bold;
  }
body.dark-mode .comment-system .comment-count {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Comments Container */
.comment-system .comments-container {
  margin-bottom: 20px;
}

/* Individual Comment Styling */
.comment-system .comment {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.comment-system .comment:last-child {
  border-bottom: none;
}
body.dark-mode .comment-system .comment {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comment-system .avatar {
  margin-right: 15px;
}
.comment-system .avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-system .comment-content {
  flex: 1;
}
.comment-system .comment-header {
  margin-bottom: 5px;
  font-size: 0.9em;
  color: #555;
}
body.dark-mode .comment-system .comment-header {
  color: #ccc;
}
.comment-system .comment-header .author {
  font-weight: bold;
  color: #333;
}
body.dark-mode .comment-system .comment-header .author {
  color: var(--card-text);
}
.comment-system .comment-header .mystery {
  font-style: italic;
  color: #999;
  margin-left: 5px;
}
body.dark-mode .comment-system .comment-header .mystery {
  color: #aaa;
}
.comment-system .comment-header .date {
  float: right;
  color: #aaa;
}
body.dark-mode .comment-system .comment-header .date {
  color: #bbb;
}

.comment-system .comment-body {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #444;
}
body.dark-mode .comment-system .comment-body {
  color: #ccc;
}

/* Action Buttons */
.comment-system .comment-actions {
  margin-bottom: 10px;
}
.comment-system .comment-actions button {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    margin-right: 10px;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .comment-system .comment-actions button:hover {
    color: var(--accent-color);
  }
.comment-system .like-btn.active {
  color: #e0245e;
}
.comment-system .comment-actions .like-btn:hover {
    color: #e0245e;
  }

/* Reply Form Styling */
.comment-system .reply-form {
  margin-top: 10px;
}
.comment-system .reply-form input,
.comment-system .reply-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  font-family: Figtree;
  margin-bottom: 5px;
  resize: vertical;
}
body.dark-mode .comment-system .reply-form input,
body.dark-mode .comment-system .reply-form textarea {
  border: 1px solid #444;
  background: var(--card-bg);
  color: var(--card-text);
}
.comment-system .reply-form button {
  padding: 6px 12px;
  background-color: #012b02;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.comment-system .reply-form button:hover {
  background-color: var(--button-bg-hover);
}
body.dark-mode .comment-system .reply-form button:hover {
  background-color: var(--button-bg-hover);
}

/* Nested Replies */
.comment-system .replies {
  margin-left: 65px;
  border-left: 2px solid #f0f0f0;
  padding-left: 15px;
  margin-top: 10px;
}
.comment-system .replies:last-of-type >.replies {
    border-bottom: 1px solid var(--comment-bottom-border);
  }

body.dark-mode .comment-system .replies:last-of-type >.replies {
    border-bottom: #333;
  }

body.dark-mode .comment-system .replies {
  border-left: 2px solid rgba(255,255,255,0.1);
}

/* Responsive adjustments for mobile (minimal nested replies) */
@media (max-width: 600px) {
  .comment-system .replies {
    margin-left: 15px;
    padding-left: 5px;
    border-left: 2px solid #f0f0f0;
  }
}

/* Top-level Comment Form */
.comment-system .comment-form {
  margin-top: 20px;
}
.comment-system .comment-form input,
.comment-system .comment-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  font-family: Figtree;
  margin-bottom: 10px;
  resize: vertical;
}
body.dark-mode .comment-system .comment-form input,
body.dark-mode .comment-system .comment-form textarea {
  border: 1px solid #444;
  background: var(--card-bg);
  color: var(--card-text);
}
.comment-system .comment-form button {
  padding: 8px 16px;
  background-color: #012b02;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.comment-system .comment-form button:hover {
  background-color: var(--button-bg-hover);
}
body.dark-mode .comment-system .comment-form button:hover {
  background-color: var(--button-bg-hover);
}


/* Headings */
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    margin-top: 1em; /* Space above headings */
    margin-bottom: 1em; /* Space below headings */
    line-height: 1.4; /* Improve spacing for headings */
}

/* Links */
.post-content a {
    color: #012b02; /* Red color for links */
    text-decoration: none; /* Remove underline */
}

.post-content a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Lists */
.post-content ul, .post-content ol {
    padding-left: 20px; /* Indent lists */
}

.post-content li {
    margin-bottom: 10px; /* Space between list items */
}

/*Pages */

.page-content p {
	    padding: 10px; 
}
	.page-content ul, .page-content ol, .page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
	    padding: 5px;
    padding-left: 20px; /* Indent lists */
}

/* Primary post media images — match YouTube embed sizing */

.post-content figure.wp-block-image,
.post-content p:has(> img:only-child),
.post-content p:has(> a > img:only-child),
.post-content .post-image-container {
    position: relative;
    margin: 0 0 15px 0;
    padding-bottom: 56.25%;
}

.post-content .wp-block-image img,
.post-content figure.wp-block-image img,
.post-content p:has(> img:only-child) img,
.post-content p:has(> a > img:only-child) img,
.post-content .post-image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.post-tags {
  display: inline-flex;          /* keeps tags in a row */
  font-size: 15px;
  margin: 30px 0;
  gap: 2px;
  color: #333;
  text-align: left;
  white-space: nowrap;           /* prevent wrapping */
}

.post-tags p {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;      /* prevent wrapping, force horizontal */
  align-items: center;
  gap: 5px;
}

.post-tags a {
  display: inline-block;
  background: #012b02;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 13px;
  white-space: nowrap;    /* keep each tag on one line */
}

.post-tags a:hover {
  background: #000;
  color: #fff;
  transform: none;
}

/* Wrapper for the content and sidebar */
.content-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
}

/* Pagination Container */
.pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Pagination Links */
.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 16px;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    background-color: #012b02; /* Red background for the links */
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Active Pagination Link */
.pagination .current {
    background-color: #012b02; /* Darker color for the active page */
    color: #fff; /* Red text for the active page */
    border: 2px solid #012b02; /* Red border for the active page */
    font-weight: bold;
    padding: 8px 16px; /* Adjust padding to account for border */
    border-radius: 4px;
}

/* Hover Effects */
.pagination a:hover {
    background-color: #012b02; /* Slightly darker red on hover */
    color: #fff;
}

/* Previous/Next Text */
.pagination .prev, .pagination .next {
    font-weight: bold;
    margin-top: 10px;
}

/* Additional Styling for Mobile */
@media (max-width: 768px) {
    .pagination a {
        padding: 6px 12px;
        font-size: 13px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    }

    .pagination .current {
        padding: 5px 10px;
        font-size: 13px;
    }
}

/* Style for the Page Title */
.page-title {
    background-color: #012b02; /* Red background */
    color: #fff; /* White text color */
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 5px;
}


/* Handle raw YouTube iframes in paragraphs */
.post-content p:has(> iframe[src*="youtube"]) {
    position: relative;
    margin: 0 0 15px 0;
    padding-bottom: 56.25%;
}

.youtube-embed iframe,
.entry-content iframe,
.entry-content .wp-block-embed iframe,
.wp-block-embed iframe,
iframe[src*="youtube"],
.post-content iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

.macknaija-title {
  border: 0.5px solid #012b02;
  border-radius: 5px 5px 0px 0px;
  text-align: center;
}

.new-entry-tt {
  font-size: 20px;
  background: #012b02;
  color: white;
  padding: 10px;
  border-radius: 5px 5px 0px 0px;
  font-family: Figtree;
}

.entrymetang {
    font-size: 10px;
    color: grey;
    margin: 5px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-bottom: 1px solid #012b02;
    border-radius: 0px 0px 5px 5px;
    margin-bottom: 0px;
}
			.entrytime {
				margin-right: 0;
				color: grey!important;
			}
			.entrycat {
				margin-left: 0 ;
				color: grey!important;
			}

.mndivi {
				border: 2px solid #301934;
				height: 10px;
			}
			.rmp-results-widget {
				display: flex;
				align-items: center;
			}
			.rmp-results-widget__vote-count {
				margin-left: 2px;
			}

.vadnav {
			border: 1px solid #333;
			margin: 4px;
			padding: 4px;
			display: inline-block;
			color: white;
			background: #012b02;
			box-shadow: 0px 0px 1.5px 0px;
			border-radius: 3px;
		}
		.vadnav a {
			color: white;
		}

/* Main site wrapper */
	.site-wrapper {
    width: 100%;
}

.gencontainer{
    width:100%;
    max-width:1100px;
    margin:0 auto;
    background:#fff;
    box-sizing:border-box;
    box-shadow:0 0 2px rgba(0,0,0,.1);
}


.thenewheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 70px;         
    overflow: hidden;
}

/* Logo */
.dlogo {
    display: flex;
    align-items: center;
}

.dlogo img {
    max-height: 100px;       
    width: auto;
    display: block;
    margin: -15px 0px;       
}

/* Desktop Navigation */
.dlnavi {
    display: flex;
}

.mnmovies-scroll {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.navidl {
    display: inline-block;
}

.navidl a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-family: Figtree, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.navidl a:hover {
    color: #012b02;
}

/* Hide mobile nav on desktop */
.mobile-nav {
    display: none;
}

@media (max-width: 768px) {

    .thenewheader {
        justify-content: center;
    }

    .dlogo img {
        max-height: 100px;
        margin: -15px 0px;
    }

    /* Hide desktop menu */
    .dlnavi {
        display: none !important;
    }

    /* Show mobile menu */
    .mobile-nav {
        display: block !important;
        visibility: visible !important;
        border-bottom: 1px solid #e5e5e5;
        background: #fff;
    }

    .mnmoviesnav {
        padding: 15px;
			  
        overflow-x: auto;
        white-space: nowrap;
    }

    .mnmoviesnav .mnmovies-scroll {
        display: flex;
        justify-content: flex-start;
        gap: 15px;
    }

    .navidl a {
        font-size: 13px;
    }
}

.homepage-body{
    width:100%;
    max-width:1100px; /* same width as your header */
    margin:20px auto;
    box-sizing:border-box;
}

.main-content{
    flex:1;
    min-width:0;
}

.sidebar{
    width:300px;
    flex-shrink:0;
}

@media (max-width:1100px){
    .content-wrapper{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }
}

.viewall {
				background: #012b02;
				color: white;
				padding: 5px;
				float:right;
				font-size: 12px;
				font-weight: 600;
				font-family: Figtree;
				border-radius: 5px;
				margin-right: 10px;
			}

.mnheadtitle {
			font-weight: 700; 
			margin-left: 5px; 
			margin-right: 5px; 
			margin-bottom: 5px; 
			background: #012b02; 
			color: white; 
			padding: 6px; 
			text-align:center; 
			font-size: 16px;
			display: block;
			font-family: Figtree!important;
			}
			
.mnheadtitle h1 {
    margin: 0; /* Removes default browser margins */
    font-size: 24px;
}	

.post-list-sidebar{
    width:100%;
    overflow:hidden;
    box-sizing:border-box;
}

.sidebar-scroll-grid{
    display:flex;
    overflow-x:auto;
    overflow-y:hidden;
    gap:12px;
    width:100%;
    max-width:100%;
    padding:10px 0;
    box-sizing:border-box;
    scrollbar-width:thin;
}

.sidebar-grid-item{
    flex:0 0 150px;
    min-width:150px;
    max-width:150px;

    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;

    text-decoration:none;
    color:inherit;
    box-sizing:border-box;
}

.sidebar-grid-image{
    width:100%;
}

.sidebar-grid-image img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}

.sidebar-grid-content{
    padding:10px;
}

.sidebar-grid-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:12px;
    color:#888;
    margin-bottom:8px;
}

.sidebar-grid-title{
    font-size:15px;
    font-weight:700;
    line-height:1.4;
    color:#111;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* Mobile */
@media (max-width:768px){

    .sidebar-grid-item{
        flex:0 0 130px;
        min-width:130px;
        max-width:130px;
    }

    .sidebar-grid-image img{
        height:100px;
    }

    .sidebar-grid-title{
        font-size:13px;
    }

}

.post-list-sidebar {
    flex: 0 0 350px;   /* fixed sidebar width */
    max-width: 350px;
    width: 350px;
    overflow: hidden;
}
.sidebar {
    width: 350px;
    flex-shrink: 0;
}

.fa-clock,
.fa-comment {
    font-weight: normal !important;
}

@media (max-width: 768px) {
    .sidebar-grid-meta {
        font-size: 10px !important;
        gap: 6px !important;
    }

    .sidebar-grid-meta i {
        font-size: 10px !important;
    }

    .sidebar-grid-meta .date,
    .sidebar-grid-meta .comments {
        font-size: 10px !important;
    }
}

@media (max-width: 1100px) {

    .content-wrapper {
        display: block !important;
    }

    .content-wrapper .main-content,
    .content-wrapper .post-list-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    .post-list-sidebar {
        margin-top: 20px;
    }

    .sidebar-scroll-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .sidebar-grid-item {
        min-width: 180px;
        flex: 0 0 180px;
    }

    .sidebar-grid-image img {
        width: 100%;
        height: 100px;
        object-fit: cover;
    }
}

.post-item,
.sidebar-grid-item {
    height: auto !important;
    min-height: unset !important;
}

.post-details,
.sidebar-grid-content {
    padding-bottom: 10px !important;
}

.post-list {
    gap: 15px !important;
}

.post-item {
    margin-bottom: 0 !important;
}

		input[type=search] {
			padding: 15px;
			width: 100%;
			border: 0px solid #e5e5e5;
			/*border-radius: 5px 0px 0px 5px; */
			background: #fff;
			font-size: 15px;
			font-family: Figtree;
		}
			input[type=text] {
			padding: 10px;
			width: 80%;
			border: 1px solid black;
			font-size: 15px;
			font-family: Figtree;
		}
			textarea {
				border: 1px solid black;
			}
		input[type=submit] {
			min-width: 100px;
			background: #012b02!important;
		}

.sbtn {
	padding: 15px;
    border: none;
    background-color: #012b02;
    color: white;
    cursor: pointer;
	font-weight: 700;
	font-family: Figtree;
	font-size: 15px;
	display: flex;
	align-items:center;
	/* border-radius: 0px 5px 5px 0px; */
	/* margin: 5px; */
		}
		
.telegram-wrapper {
  text-align: center; /* replaces <center> */
}

.telegram-btn {
  max-width: 35%;     /* never exceed screen width */
  height: auto;        /* keep aspect ratio */
  border: 2px solid #012b02;
  display: inline-block;
}

/* Optional: add breathing room on very small screens */
@media (max-width: 480px) {
  .telegram-btn {
    max-width: 100%;
  }
}

.rmp-widgets-container {
  border: 1px solid #012b02;
}

.mnmovies-tg {
			display: inline-block;
			padding: 10px;
			margin: 5px;
			text-align: center;
			text-transform: uppercase;
			text-decoration: none;
			font-size: 17px;
			font-weight: 600;
			color: white;
			background: #012b02;
		}
		.mnmovies-tg:hover {
			border-radius: 10px;
			transition: 5ms;
		}
		.mnmovies-tg a {
			color: white;
		}
		.mnmovies-tg a:hover {
			color: white;
			text-decoration: none;
		}

.generatelinks, .fastdl {
				background: #012b02;
				display: inline-block;
				border: 1px solid #301934;
				border-radius: 3px;
				padding: 12px;
	margin: 2px;
				margin-top: 3px;
				margin-bottom: 3px;
				color: white!important;
				font-weight: 700!important;
				font-size: 12px!important;
			}
			.generatelinks:hover {
				background: white;
				color: black!important;
				border: 2px solid #301934;
				text-decoration: none!important;
			}
			.fastdl:hover {
				background: white;
				color: black!important;
				border: 2px solid #012b02;
				text-decoration: none!important;
			}
			.generatelinks:after {
				content: " \f061";
				font-family: 'FontAwesome';
			}		

/* Related section header */
.mnheadtitle#related {
	 text-align: left;        /* text sits on the left */
}

/* Card style */
.post-item {
  border: 1px solid #012b02;/* rounded corners */ }


/* Hide sidebar only on single post pages when screen is small */
@media (max-width: 768px) {
  .single-post .post-list-sidebar {
    display: none !important;
  }


/* Boxed style for main-content */
.content-wrapper {
  width: 100%;              /* stretch across available space */
  max-width: 1100px;        /* optional: control max width */
  margin: 0 auto;           /* center the box */
  background: #fff;         /* box background */

	
  padding: 10px;            /* inner spacing */
  box-sizing: border-box;
}

}

/* Container Padding Fix - Desktop + Mobile */
.container,
.homepage-body,
.content-wrapper,
.footer {
    padding-left: 5px !important;
    padding-right: 5px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}



/* Tight padding on small mobile */
@media (max-width: 480px) {
    .container,
    .homepage-body,
    .content-wrapper {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}

/* General Styles for Homepage Body */
.homepage-body {
    background-color: #fff;
    max-width: 1100px;
 
}

.single-disclaimer {
  align-items: left;
  padding: 10px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2rem;
  color: #333;
  border: 1px solid #000;
  border-left: 5px solid #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	margin-top: 20px;
	margin-bottom: 10px;
}

.single-disclaimer a {
  text-decoration: underline;
  font-weight: 700;
}


  
 .install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 15px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
}
.install-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 4px;
}
.install-text {
  flex: 1;
  font-size: 14px;
  margin-right: 20px;
}
.install-btn {
  background: green;
  color: #fff;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 4px;
}
.close-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
}