/*
Theme Name: FREDFLIX
Theme URI: https://live.fredflix.fun/
Author: Liton
Author URI: https://www.facebook.com/profile.php?id=100080159903367
Description: The Live TV Stream Theme for WordPress is designed specifically for IPTV and live streaming websites. It offers a modern, responsive layout tailored for showcasing live TV channels, events, and on-demand content. With features like custom post types for live events, dynamic pagination, quality tags (e.g., 4K, HD), and an intuitive navigation system, this theme provides a seamless viewing experience across all devices. It's customizable, allowing for easy integration of streaming links and metadata, making it ideal for building a professional and user-friendly streaming platform.
Version: 1.0
License: GNU General Public License v2 or later
License URI: 
Tags: custom-theme, responsive
Text Domain: fredflix
Requires at least: 5.0
Requires PHP: 7.4
*/

/* Main Styles */

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #20202b; /* Body background color */
    color: #333;
}

/* Preloader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c2c5c7;
    z-index: 9999;
    display: flex;
    align-items: center;
	justify-content: center;
}

.loader-container {
    text-align: center;
}

.pre-loader-6 {
    width: 50px;
    height: 50px;
    border: 5px solid #1ed760;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.wrapper {
    background: #171c24;
    position: fixed;
    width: 100%;
    z-index: 999;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #171c24;
    z-index: 1000;
}

header .wrapper {
	border-bottom: 1px solid #282828;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* Dropdown Menu Styles */
.wrapper nav {
    position: relative;
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    align-items: center;
    justify-content: space-between;
}

nav .content {
    display: flex;
    align-items: center;
}

nav .content .links {
    margin-left: 30px;
    display: flex;
}

.content .logo img {
    height: 50px;
    width: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 100%;
    display: block;
}

.content .logo a {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}

.content .links li {
    list-style: none;
    line-height: 70px;
}

.content .links li a,
.content .links li label {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.content .links li label {
    display: none;
}

.content .links li a:hover,
.content .links li label:hover {
    background: #323c4e;
	text-decoration: none;
}

.content .current-menu-item a {
	background: #323c4e;
}

.wrapper .search-icon,
.wrapper .menu-icon {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
}

.wrapper .menu-icon {
    display: none;
}

.wrapper #show-search:checked ~ .search-icon i::before {
    content: "\f00d";
}

.wrapper .search-box {
    position: absolute;
	display: flex;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wrapper #show-search:checked ~ .search-box {
    opacity: 1;
    pointer-events: auto;
}
/* Style the select dropdown */
.search-box .post-type-select {
    padding: 10px;
    font-size: 14px;
	border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-radius: 5px;
    background-color: #dddddd;
    transition: border 0.3s ease; /* Smooth transition when focus occurs */
    cursor: pointer; /* Makes the dropdown more interactive */
}

/* Change border color when the select box is focused */
.search-box .post-type-select:focus {
    outline: none; /* Remove the outline */
}

/* Hover effect on the entire select element
.search-box .post-type-select:hover {
    border-color: #ff6600;  *//* Change the border color on hover
} */

/* Option styling within the select dropdown */
.search-box .post-type-select option:hover {
    background-color: #f0f0f0; /* Change background color of options when hovered */
}

/* Style for the selected option (if the browser supports it) */
.search-box .post-type-select option:checked {
    background-color: #1ed760; /* Highlight the selected option */
    color: white;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: #fff;
    background: #2e3846;
    padding: 0 100px 0 15px;
}

.search-box input::placeholder {
    color: #f2f2f2;
}

.search-box .go-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 60px;
    width: 70px;
    background: #171c24;
    border: none;
    outline: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

#search-results {
    display: none; /* Hide by default */
    position: absolute;
    top: 100%;
    left: 5%; /* Center horizontally */
    z-index: 9999;
    width: calc(100% - 2rem); /* Full width minus small gaps */
    max-width: max-content; /* Limit the maximum width */
    background-color: #20202b;
    border: 1px solid #333;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 300px;
    overflow-y: auto;
    padding-left: 0.5rem;
    transition: opacity 0.3s ease;
}


/* Search result items */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 0.75rem;
    border-bottom: 1px solid #333;
    transition: background-color 0.2s ease;
    margin-left: 0;
}

.search-result-item:last-child {
    border-bottom: none;
}

/* Search result thumbnail */
.search-result-thumbnail {
    width: auto;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    border: 1px solid #1ed760;
    transition: border 0.3s ease, transform 0.3s ease;
}

.search-result-item:hover .search-result-thumbnail {
    border: none; /* Removes the thumbnail border on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

/* Text link styling */
.search-result-item a {
    color: #fff; /* White text for the title */
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Hover effect on the search-result-item */
.search-result-item:hover {
    background-color: #333; /* Slightly lighter background on hover */
}

/* Change the link color when the search result item is hovered */
.search-result-item:hover a {
    color: #1ed760; /* Highlight color for link on item hover */
}

/* Hover effect for search result items */
.search-result-item:hover {
    background-color: #333; /* Slightly lighter background on hover */
}
.search-result-item a:hover {
    text-decoration: underline;
}

/* Rating styles */
.search-result-content > .rating > .stars,
.search-result-content > .rating > .rating-value,
.search-result-content > .rating > .views {
    font-size: 8px;
}

/* Scrollbar styling */
#search-results::-webkit-scrollbar {
    width: 8px;
}

#search-results::-webkit-scrollbar-track {
    background: #20202b; /* Match the background color */
}

#search-results::-webkit-scrollbar-thumb {
    background: #555; /* Scrollbar thumb color */
    border-radius: 5px;
}

#search-results::-webkit-scrollbar-thumb:hover {
    background: #1ed760; /* Thumb hover color */
}
@media (min-width: 1350px) {
    #search-results {
        left: 14%; /* Specific left gap for screens wider than 1366px */
    }
}

.wrapper input[type="checkbox"] {
    display: none;
}

/* Dropdown Menu Styles */
.content .links ul {
    position: absolute;
    background: #171c24;
    top: 80px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.content .links li:hover > ul {
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.content .links ul li a {
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 0px !important;
}

.content .links ul ul {
    position: absolute;
    top: 0;
    left: 100%; /* Position to the right of parent */
    width: 100%;
    background: #171c24;
}

.content .links ul li {
    position: relative;
}

.content .links ul li:hover > ul {
    top: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1250px) {
    .wrapper nav {
        max-width: 100%;
    }

    nav .content .links {
        margin-left: 30px;
    }

    .content .links li a {
        padding: 8px 13px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 100px);
    }

    .wrapper .search-box input {
        padding: 0 100px 0 15px;
    }
}

@media screen and (max-width: 900px) {
    .wrapper .menu-icon {
        display: block;
    }

    .wrapper #show-menu:checked ~ .menu-icon i::before {
        content: "\f00d";
    }

    nav .content .links {
        display: block;
        position: fixed;
        background: #14181f;
        height: 100%;
        width: 100%;
        top: 70px;
        left: -100%;
        margin-left: 0;
        max-width: 350px;
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
    }

    nav #show-menu:checked ~ .content .links {
        left: 0%;
    }

    .content .links li {
        margin: 15px 20px;
    }

    .content .links li a,
    .content .links li label {
        line-height: 40px;
        font-size: 20px;
        display: block;
        padding: 8px 18px;
        cursor: pointer;
    }

    .content .links li a.desktop-link {
        display: none;
    }

    /* Dropdown Responsive Styles */
    .content .links ul,
    .content .links ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
	.content .links .sub-menu {
		background: none !important;
	}
    .content .links li:hover > ul {
        max-height: 100vh; /* Adjust to fit your content */
    }

    .content .links ul li {
        margin: 7px 20px;
    }

    .content .links ul li a {
        font-size: 18px;
        line-height: 30px;
        border-radius: 5px !important;
    }
}

@media screen and (max-width: 400px) {
    .content .logo a {
        font-size: 27px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 70px);
    }

    .wrapper .search-box .go-icon {
        width: 30px;
        right: 0;
    }

    .wrapper .search-box input {
        padding-right: 30px;
    }
}

/* Header styles for when the admin bar is present (user is logged in) */
body.admin-bar header {
    margin-top: 32px; /* Adjust this value based on the height of the admin bar */
}

/* Header styles for when the admin bar is not present (user is logged out) */
body:not(.admin-bar) header {
    margin-top: 0;
}

/* Responsive Styles */
@media screen and (max-width: 900px) {
    body.admin-bar header nav .content .links {
        top: 102px;
    }
}
@media screen and (max-width: 782px) {
    html #wpadminbar {
        position: fixed;
    }
	body.admin-bar header {
		margin-top: 46px; /* Adjust this value based on the height of the admin bar */
	}
    body.admin-bar header nav .content .links {
        top: 116px;
    }
}

.login, .logout {
	background: #1ed760;
}

@media (min-width: 901px) {
	.content .current-menu-item a {
		background: transparent;
		color: #1ed760 !important;
	}
	.content .links > li > a:hover {
		background: transparent;
		color: #1ed760 !important;
	}
}

@media (min-width: 901px) {
	.login,
	.register,
	.logout,
	.account {
		display: none;
	}
}

/* Default styling */
.button-container {
	display: flex;
	align-items: center;
	gap: 10px; /* Adjust as needed */
	transition: opacity 0.3s ease;
}

/* Search icon styling */
.search-icon, .btn-login, .btn-register, .btn-logout, .btn-account {
	display: inline-flex;
	align-items: center;
	font-weight: 900;
	line-height: 70px;
	padding: 0 10px;
	cursor: pointer;
}

.btn-login:hover, .btn-register:hover, .btn-logout:hover, .btn-account:hover {
    text-decoration: none;
}
.btn-register, .btn-account{
	color: #fff;
}

/* Change the icon to cross when checkbox is checked */
#show-search:checked ~ .button-container .fa-search:before {
	content: "\f00d";
}


/* Hide text and adjust icon sizes */
@media (min-width: 901px) {
	.btn-login span,
	.btn-register span,
	.btn-logout span,
	.btn-account span {
		display: none;
	}
	
	.btn-login, .btn-register, .btn-logout, .btn-account {
		justify-content: center;
	}
	
	.button-container .search-icon {
		width: 35px;
		transition: transform 0.3s ease, margin-right 0.3s ease; /* Add transition for smooth effect */
	}
	
	/* Move the search icon to the right when checked */
	#show-search:checked ~ .button-container .search-icon {
		transform: translateX(90px); /* Optional: If you want to move it horizontally */
	}
}

/* Hide the text by default */
.btn-login .login-text,
.btn-logout .logout-text,
.btn-register .register-text,
.btn-account .account-text {
    display: none;
    margin-left: 5px; /* Optional spacing */
}

/* Show the text only when hovering over the button */
.btn-login:hover .login-text,
.btn-logout:hover .logout-text,
.btn-register:hover .register-text,
.btn-account:hover .account-text {
    display: inline;
}

/* Hide text and adjust icon sizes */
@media (max-width: 900px) {
	.search-icon{
		display: block;
	}
	
	.btn-login,
	.btn-register,
	.btn-logout,
	.btn-account {
		display: none;
	}
	
	/* Move the search icon to the right when checked */
	#show-search:checked ~ .button-container .search-icon {
		margin-right: 0; /* Move the icon to the right */
		transform: none; /* Optional: If you want to move it horizontally */
	}
}

/* Hide login and register buttons when search is active */
#show-search:checked ~ .button-container a {
	opacity: 0;
	pointer-events: none;
}


main {
	padding-top: 70px; /* Adjust this value based on your header height */
    background-color: #333; /* Main background color */
    color: #333;
    position: relative; /* Position relative for pseudo-element */
}

main::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(32, 32, 43, 0.8); */ /* Dark overlay color */
    z-index: 1; /* Ensure it's behind the content */
}

.hero {
    background: url(assets/img/Stmify-bg.png) no-repeat;
    background-position: center !important;
    background-size: cover !important;
}

/* Apply lazy-loaded image here */
/* .lazy-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
} */

.event-container {
	background: linear-gradient(rgba(0, 0, 0, 0), #2c2c2c);
}

.container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home .container:first-child {
	padding-top: 20px;
}

.home .container:last-child {
    padding-bottom: 40px;
}

/* Heading Home Page Styles */
.welcome {
    margin-top: 25px;
    color: white;
    margin-bottom: 20px;
}

.home .welcome:first-child {
	margin-top: 0;
	margin-bottom: 0;
}

.welcome h2 {
    font-size: 20px;
    padding-left: 10px;
    border-left: solid 3px #1ed760;
}

.welcome p {
    font-weight: bold;
}

.event-container .welcome p {
	font-weight: normal;
    font-size: 13.8px;
}
.live-event {
    position: relative;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    color: white;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.live-event h2 {
    flex: 1;
    text-align: center;
    margin: 0;
}
.event-container h1 > .text { 
	font-size: 35px !important; 
}
.live-event a {
    text-decoration: none;
    color: #1ed760;
    font-weight: bold;
}
.front-item {
	padding: 0 10px;
}
@media only screen and (max-width: 600px) {
	.event-container h1 span{
		Display: none;
	}
}
@media only screen and (max-width: 900px) {
	.event-container p{
		Display: none;
	}
	.event-container h1 {
		margin-bottom: 10px;
	}
}

/* Event Item Styles */
.event-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.event-wrapper .container {
	width: 90%;
    max-width: 1200px;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 10px;
	gap: 2%;
}
.card {
    position: relative; /* Add relative positioning to allow absolute positioning for the image */
    width: 8%;
    border-radius: 1rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: all 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
}

/* Styling for the .live image inside the card */
.card .live {
    position: absolute; /* Absolute position to place it in the top-right corner */
    top: 10px; /* Adjust top distance as needed */
    right: 10px; /* Adjust right distance as needed */
    width: 40px; /* Set the size of the image */
    height: 40px; /* Set the size of the image */
    object-fit: contain; /* Ensure the image maintains its aspect ratio */
    z-index: 10; /* Ensure it's above other content in the card */
}

/* Other card styling... */
.card > .row {
    display: flex;
    align-items: center;
    padding: 15px;
    width: 100%;
    position: relative; /* Changed from absolute to relative for better positioning */
    background: linear-gradient(rgba(0, 0, 0, 0), #000);
}

.card > .row .icon {
    background: #223;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.card > .row .description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    height: 80px;
    width: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease 0.3s;
}

/* Show the description when the parent row is hovered */
/* .card > .row:hover .description {
    opacity: 1;
    transform: translateY(0);
} */

.description a {
    text-decoration: none;
}
.description a:hover {
    text-decoration: none;
}
.description a h2 {
    margin: 0;
    font-size: 15px;
    color: #fff;
	transition: color 0.3s ease;
}
.description a:hover h2 {
    color: #1ed760;
}
.description span {
    color: #ffcc00;
    padding: 4px 0;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
}

.event-wrapper input {
	display: none;
}
.event-wrapper input:checked + label {
	width: 60%;
}
.event-wrapper input:checked + label .description {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.event-wrapper input + label .meta-banner {
	display: none;
    opacity: 0;
    visibility: hidden;
	bottom: -1px;
    right: -1px;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.event-wrapper input:checked + label .meta-banner {
    opacity: 1;
    visibility: visible;
	bottom: -1px;
    right: -1px;
}

/* Responsive Styles */
@media only screen and (max-width: 400px) {
	.card {
		height: 113px;
	}
	.card > .row {
		padding: 2px;
	}
	.card > .row .icon {
		font-size: 10px;
		width: 60px;
		height: 20px;
	}
	.card .live {
		top: 5px; /* Adjust top distance as needed */
		right: 3px; /* Adjust right distance as needed */
		width: 15px; /* Set the size of the image */
		height: 15px; /* Set the size of the image */
	}
	.event-wrapper .meta-banner {
        width: 65px;
    }
}
@media only screen and (min-width: 401px) {
	.card {
		height: 170px;
	}
	.card > .row {
		padding: 4px;
	}
	.card > .row .icon {
		font-size: 12px;
		width: 40px;
		height: 20px;
	}
	.card .live {
		top: 5px; /* Adjust top distance as needed */
		right: 5px; /* Adjust right distance as needed */
		width: 20px; /* Set the size of the image */
		height: 20px; /* Set the size of the image */
	}
	.event-wrapper .meta-banner {
        width: 80px;
    }
	.description a h2 {
        font-size: 12px;
    }
}
@media only screen and (min-width: 600px) {
	.card {
		height: 200px;
	}
	.card > .row {
		padding: 8px;
	}
	.card > .row .icon {
		font-size: 15px;
		width: 50px;
		height: 30px;
	}
	.card .live {
		top: 8px; /* Adjust top distance as needed */
		right: 8px; /* Adjust right distance as needed */
		width: 30px; /* Set the size of the image */
		height: 30px; /* Set the size of the image */
	}
	.event-wrapper .meta-banner {
        width: 85px;
    }
}

@media only screen and (min-width: 768px) {
	.description a h2 {
		font-size: 18px;
	}
	.card {
		height: 221px;
	}
	.card > .row {
		padding: 10px;
	}
	.card > .row .icon {
		font-size: 18px;
		width: 45px;
		height: 35px;
	}
	.card .live {
		top: 10px; /* Adjust top distance as needed */
		right: 10px; /* Adjust right distance as needed */
		width: 40px; /* Set the size of the image */
		height: 40px; /* Set the size of the image */
	}
	.event-wrapper .meta-banner {
        width: 90px;
    }
	
}
@media only screen and (min-width: 992px) {
	.card {
		height: 289px;
	}
	.card > .row {
		padding: 15px;
	}
	.card > .row .icon {
		font-size: 20px;
		width: 40px;
		height: 40px;
	}
	.event-wrapper .meta-banner {
        width: 100px;
    }
}
@media only screen and (min-width: 1200px) {
	.card {
		height: 396px;
	}

}

/* Styling for the welcome section */
.container.welcome span {
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    margin-left: auto; /* Push the span to the right */
}

.container.welcome span a {
    text-decoration: none;
    background-color: #1ed760;
    padding: 3px 10px;
    border-radius: 5px;
    color: white;
    margin-left: 5px;
}

.container.welcome span a:hover {
    color: #666; /* Corrected typo from 'read' to 'red' */
}

.container.welcome .nav_items_module {
    display: flex;
    align-items: center;
}

.container.welcome .nav_items_module a {
    display: inline-block;
    color: #ffffff; /* Button text color */
    margin-left: 10px; /* Adjust spacing between buttons */
    font-size: 18px;
    cursor: pointer; /* Ensure cursor pointer */
}

.container.welcome .nav_items_module a i {
    font-size: 20px;
}

.container.welcome .nav_items_module a i:hover {
    color: #1ed760;
}

/* Styling for the latest content section */
.content-wrapper,
.fm-content,
.archive-content {
    display: flex;
    overflow: hidden;
    width: 100%;
    gap: 1.5%;
}

.item-wrapper,
.fm-item,
.archive-item {
    border-radius: 5px;
    width: calc(20% - 14px);
	min-width: calc(93% / 5);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.item-wrapper:hover h2, .fm-item:hover h2, .archive-item:hover h2 {
	color: #1ed760;
}

.fm-item {
	width: calc(12.5% - 14px);
    min-width: calc(89% / 8);
}

.premium-icon {
    position: absolute;
    top: 10px;
    left: 10px; /* Position premium icon on the left */
    background-color: #ffcc00;
    padding: 3px 5px; /* Adjust padding to make the icon smaller */
    border-radius: 50%; /* Rounded shape */
    font-size: 10px; /* Adjust font size */
}

.premium-icon i {
    color: #fff;
}

.quality-tag {
    position: absolute;
    top: 10px;
    right: 10px; /* Position quality tag on the right */
    background-color: #874ed8;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
}

.meta-banner {
    position: absolute;
    bottom: 7px;
    right: -1px;
	border: none !important;
    width: 70px;
    height: auto;
    opacity: 1;
    transition: opacity 0.3s ease; /* Smooth transition */
}

/* Hides .meta-banner when hovering over .leatest-item */
.leatest-item1:hover .meta-banner,
.fm-item:hover .meta-banner {
    opacity: 0 !important;
}

.all-content-title {
	display: flex;
}

/* Responsive adjustments for .meta-banner size */
@media (min-width: 1025px) {
    .meta-banner {
        width: 70px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .meta-banner {
        width: 60px;
    }
}

	.hero .welcome {
		text-align: center;
	}
	.hero .welcome {
		display: block;
	}
	.hero .container h1 {
		border-left: none;
		font-size: 35px;
	}
@media (max-width: 768px) {
    .meta-banner {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .meta-banner {
        width: 30px;
    }
	.welcome h2 {
		font-size: 15px;
	}
	.container.welcome span {
		font-size: 10px;
	}
	.main-content .content-item h2 {
    font-size: 14px;
	}
	.main-content .content-item span {
    font-size: 8px;
	}
	.content-wrapper h2, .fm-content h2, .archive-content h2 {
		font-size: 13px;
	}
}

.content-wrapper h2,
.fm-content h2,
.archive-content h2 {
    font-size: 15px;
    margin: 5px 0;
    color: white;
    transition: color 0.3s ease-in-out; /* Transition for color change */
}

.content-wrapper .item-wrapper a,
.fm-content .fm-item a,
.archive-content .archive-item a {
    color: #1ed760; /* Link color */
    text-decoration: none;
    transition: color 0.3s ease-in-out; /* Transition for color change */
    cursor: pointer; /* Ensure cursor pointer */
}

.content-wrapper .item-wrapper a:hover h2, 
.fm-content .fm-item a:hover h2,  
.archive-content .archive-item a:hover h2 {
    color: #1ed760; /* Title hover color */
}

.img-wrapper {
    border-radius: 5px; /* Ensure the image wrapper has the border radius */
    overflow: hidden; /* This will prevent the image from overflowing */
    position: relative; /* Ensure relative positioning */
    display: inline-block; /* Ensure inline-block for positioning */
}

.content-wrapper .item-wrapper img, 
.fm-content .fm-item img, 
.archive-content .archive-item img {
    max-width: 100%;
	height: auto;
    border-radius: 5px;
	border: 2px solid #1ed760;
    /* display: block; */ /* Ensure the image is a block-level element */
    transition: transform 0.3s ease-in-out; /* Transition for zoom effect */
}

.content-wrapper .item-wrapper:hover img,
.fm-content .fm-item:hover img,
.archive-content .archive-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
	border: none;
	filter: blur(1.5px); /* Adjust blur intensity */
}

.img-wrapper .fa-play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px; /* Adjust size */
    color: #1ed760; /* Adjust color */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
}

.img-wrapper:hover .fa-play-circle {
    opacity: 1;
}

.post-excerpt {
	color: white;
}
/* Responsive Styles */
 
 @media (max-width: 768px) {
    .item-wrapper {
        min-width: calc(96% / 3);
    }
			
    .fm-item {
        min-width: calc(93% / 5);
    }
}
 @media (max-width: 480px) {
	.quality-tag {
		padding: 1px 5px;
		font-size: 7px;
	}
	.premium-icon {
    padding: 2px 3px;
    font-size: 7px;
	}
	.img-wrapper .fa-play-circle {
		font-size: 25px;
	}
 }

/* Footer Styles */
footer {
    background-color: #20202b;
    color: #fff;
    font-family: Arial, sans-serif;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
}

/* Footer top Widget Styles */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Add some gap between flex items */
}

.flex-child-ft {
    flex: 1;
	min-width: 200px; /* Ensure flex items don't get too small */
}

.flex-child-ft img {
    max-width: 150px;
	height: auto;
    margin-bottom: 15px;
}

.flex-child-ft h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.flex-child-ft p {
    margin-bottom: 15px;
}

.flex-child-ft ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flex-child-ft ul li {
    margin-bottom: 10px;
}

.flex-child-ft ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.flex-child-ft ul li a:hover {
    color: #1ed760;
}

.flex-child-ft p a {
    color: #1ed760;
    text-decoration: none;
    transition: color 0.3s;
}

.flex-child-ft p a:hover {
    text-decoration: underline;
}

.social-icons {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px; /* Spacing between icons */
}

.share-text {
    opacity: 0; /* Initially hidden */
    position: absolute;
    left: -50px; /* Move text to the left */
    transition: opacity 0.3s ease-in-out, left 0.3s ease-in-out;
    white-space: nowrap;
    font-size: 14px;
}

.social-icons:hover .share-text {
    opacity: 1; /* Show text on hover */
    left: -60px; /* Adjust position */
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #1ed760;
}

.badge {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: flex-start;
    margin-top: 15px;
}

/* Optional: Add a rule to ensure consistent sizing */
.badge .cloudflare-badge img,
.badge .dmca-badge img {
    max-width: 100%;
    height: auto;
    display: block;
	align-items: flex-end;
}

.footer-disclaimer {
	border-top: 1px solid #323232;
}
.light .footer-disclaimer {
    border-top: 1px solid #d5d5d5;
}
.ft-copyright {
    background-color: #161625;
    padding: 15px 0;
    text-align: center;
}

.ft-left p {
    margin: 0;
    color: #8a8a8a;
}

.copyright {
	width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fa-moon {color: #f1c40f;}

.fa-sun {color: #f39c12;}

.checkbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.checkbox:checked + .checkbox-label .ball {
  transform: translateX(24px);
}

/* Styling for Footer Links */
.ft-copyright {
	border-top: 1px solid #282828;
}
.ft-copyright a {
    color: #1ed760; /* Change this to your preferred link color */
    text-decoration: none;
}

.ft-copyright a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 1024px) {
    .flex-child-ft {
        width: 32%; /* Three items per row */
    }
}

@media (max-width: 768px) {
    .flex-child-ft {
        width: 48%; /* Two items per row */
    }
}

@media (max-width: 480px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }
    .flex-child-ft {
        width: 100%;
    }
}

/* Footer scroll to top Styles */
.scroll-to-top {
	position: fixed;
    bottom: 5px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 10px;
    border-radius: 10%;
    cursor: pointer;
    font-size: 15px;
    display: none;
}

.scroll-to-top:hover {
    background-color: #555;
}

body.scroll-active .scroll-to-top {
    display: block;
}

/* Archive Page Styles */
.archive-container {
    flex-direction: column; /* Arrange items in a column */
}

.archive-content {
    display: flex;
    flex-wrap: wrap; /* Wrap items to next line */
    justify-content: flex-start; /* Align items at the start of the container */
	padding: 0 10px;
}
.archive-content p {
	color: white;
}
.archive-item {
	width: calc(20% - 16px);
    min-width: calc(94% / 5);
	margin: 10px 0;
}

/*.fm-archive-item {
	width: calc(12.5% - 16px);
    min-width: calc(100% / 9);
}*/

/* Media Queries */
@media (max-width: 1305px) {
	.archive-item ul {
		display: none;
	}
}
@media (max-width: 768px) {
    .archive-item {
	width: calc(33.333% - 14px); /* Display 3 items per row on smaller screens */
    min-width: calc(97% / 3);
    }
	
/*.fm-archive-item {
	width: calc(20% - 11px);
	min-width: calc(100% / 6);
	}*/
}

/* Archive Page Head Title Styles */
.archive-head {
	position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0; /* Add padding around the header */
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center align horizontally */
    align-items: center; /* Center align vertically */
    text-align: center; /* Center align text */
}

.archive-head h2 {
	font-size: 20px; /* Font size for the heading */
    font-weight: bold; /* Make the font bold */
    color: white; /* Color for the heading text */
    margin: 0; /* Remove default margin */
}

 /* Blog Archive Page Styles */
.blog-item-style {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    width: 100%;
}

.blog-item-style img {
    margin-right: 30px;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    height: auto;
	width: 25%;
    vertical-align: middle;
	border: 2px solid #1ed760;
}

/* Hover Effect */
.blog-item-style:hover img {
	border: 2px solid transparent; /* Default border is transparent */
    transform: scale(1.1); /* Zoom effect */
}

.blog-item-style .blog-it-infor {
    padding: 20px 20px 20px 0;
	width: 75%;
}

.blog-item-style .blog-it-infor h2 {
	color: white;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    text-transform: none;
}

/* Hover Effect on h2 */
.blog-item-style:hover h2 {
    color: #1ed760; /* Change the color of the title on hover */
}

.blog-item-style:hover a {
	text-decoration: none;
}

/* Media Query for Mobile Screens */
@media (max-width: 768px) {
    .blog-item-style {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .blog-item-style img {
		margin-top: 20px;
        margin-right: 0; /* Remove right margin for centering */
        width: 50%; /* Adjust image size */
	}
	.blog-item-style:hover img{
        transform: scale(1.1); /* Apply zoom effect without moving */
    }
	.blog-item-style .blog-it-infor {
		padding-left: 20px;
	}
}
 
 /* Archive Page Pagination Styles */
.pagination {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Center align the pagination within the container */
    padding: 20px 0; /* Add padding around the container */
}

.pagination ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    display: flex; /* Use flexbox to arrange items horizontally */
    align-items: center; /* Center align items vertically */
}

.pagination li {
    font-size: 12px;
    font-weight: bold;
    margin: 0 5px; /* Add horizontal margin between list items */
}

.pagination a {
    text-decoration: none; /* Remove underline from links */
    color: white; /* Set link color */
    padding: 7px 12px; /* Add padding to links */
    border: 1px solid white; /* Add border to links */
    border-radius: 5px; /* Add rounded corners */
    display: block; /* Make links block-level elements */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effect */
}

.pagination a:hover {
    background-color: #1ed760; /* Change background color on hover */
	text-decoration: none; /* Remove underline from links */
}

.pagination .dots {
    color: #999; /* Set color for unavailable item */
    padding: 7px 12px; /* Add padding to unavailable item */
    border: 1px solid #ddd; /* Add border to unavailable item */
    border-radius: 5px; /* Add rounded corners */
    display: block; /* Make unavailable item block-level element */
    pointer-events: none; /* Disable pointer events on unavailable item */
}

.pagination .current {
	padding: 7px 12px;
	border-radius: 5px;
    color: white; /* Text color for current page */
    border: 1px solid #1ed760; /* Border color for current page */
}

/* Media Queries */
@media (min-width: 769px) {
	.pagination .current {
    background-color: #1ed760; /* Background color for current page */
	}	
}

@media (max-width: 768px) {
    .pagination .first-page,
    .pagination .last-page,
    .pagination .page-numbers {
        display: none !important; /* Ensure these items are completely hidden */
	}

	.pagination li.first-page,
    .pagination li.last-page,
    .pagination li.page-numbers {
        display: none !important; /* Hide the entire list item */
    }

    .pagination li {
        margin: 0; /* Remove any extra margin from list items */
        padding: 0; /* Remove padding */
    }
    .pagination .next,
    .pagination .prev {
        display: block !important; /* Center items on smaller screens */
		margin: 0 5px; /* Add horizontal margin between list items */
	}
    .pagination .current {
        display: block !important; /* Center items on smaller screens */
		margin: 0 5px; /* Add horizontal margin between list items */
		border: 1px solid white; /* Border color for current page */
	}
}

/* Error page styles */
.error-page {
    max-width: 600px;
    padding: 20px;
    color: #ffffff; /* Text color */
}

.error-page h1 {
    font-size: 120px;
    font-weight: bold;
    margin: 0;
    color: #1ed760; /* Green color for the error code */
}

.error-page h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
}

.error-page p {
    font-size: 18px;
    margin: 10px 0 30px;
}

.error-page .home-button {
    text-decoration: none; /* Remove underline from link */
    background-color: #1ed760; /* Button background color */
    color: #ffffff; /* Button text color */
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.error-page .home-button:hover {
    background-color: #17c653; /* Darker green on hover */
}

/* Single template */
.single_head {
  background-color: #20202b;
}

.mid.sp_flex { 
  display: flex;
  align-items: flex-start;
  gap: 25px; /* Space between the image and content */
  padding: 25px;
  width: 90%; /* Responsive width */
  max-width: 1200px; /* Limit max width to 1200px */
  margin: 0 auto; /* Center the container horizontally */
}

.image {
  flex: 0 0 50%; /* The image will take up 50% of the width */
}

.image .main_img {
  width: 100%; /* Ensures the image covers the half-width */
  height: auto;
  position: relative;
  border-radius: 5px;
}
.blog-content {
  flex: 0 0 50%; /* The content will take up the remaining 50% */
  display: table-row-group;
}
.post_content .social-tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
	border-top: 1px solid #000000;
}
.post_content .social-icons a i {
    color: white; /* Change this to your preferred hover color */
}
.post_content .social-icons a i:hover {
    color: #1ed760; /* Change this to your preferred hover color */
}
.right-it {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.right-it h4 {
	margin-right: 5px;
}
.right-it a {
	margin-left: 5px;
}
.cat a {
    display: initial;
    font-size: 14px;
    padding: 0 20px;
    background-color: #1ed760;
    color: #fff;
    border-radius: 20px;
    width: 85px;
    text-align: center;
}

.blog-content h1 {
  margin-top: 10px;
  font-size: 24px;
  color: white;
  text-decoration: none;
}

.author_dtails {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.auth_img {
  margin-right: 10px;
}

.auth_img img {
  border-radius: 50%;
  border: 7px solid #fff;
  width: 60px;
  height: 60px;
}

.auth_desc h4 a {
  font-size: 16px;
  color: white;
}

.post_infos {
  gap: 10px;
  margin-top: 10px;
}

.post_infos li {
  list-style: none;
  display: inline-block;
  margin: 0 5px 0 3px;
  color: white !important;
  font-size: 14px;
}

.post_infos li a {
  color: white !important;
  font-size: 14px;
  text-decoration: none;
}

.post_infos li a:hover {
  color: #1ed760 !important;
}

.post_infos i {
  margin-right: 5px;
}

.post-views-count {
  font-weight: bold;
}

/* General comments section wrapper */ 
.comments .comment-body {
	align-items: center;
	text-align: left;
	display: flex; 
	margin: 10px 0; 
	padding: 20px; 
	background-color: rgba(255, 255, 255, .05);
    border-radius: 8px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
} 
.comment-body img {
    margin: 30px 25px 30px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
 
/* Comment author name */ 
.comment-body .comment-author {
	font-weight: bold;
	color: #ffffff;
	font-size: 1.1em;
 } 
/* Date and time of the comment */ 
.comment-body .comment-date {
	font-size: 0.9em;
	color: #777;
 } 
/* Comment text */ 
.comment-body .comment-text {
	margin-top: 10px;
	font-size: 1em;
	line-height: 1.5;
	color: white;
 } 
/* Reply link */ 
.comment-body .reply-link {
	margin-top: 5px;
	display: inline-block;
	font-size: 0.9em;
	color: #1ed760;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
 } 
.comment-reply:hover { color: #17c856; } 
/* Nested comments (replies) */ 
.comments .children {
	margin: 15px 0 0 20px;
	padding-left: 20px;
 } 
 .comments .children .reply-link {
	 display: none;
 }
 
 @media (max-width: 768px) {
	.comments .comment-body { 
         flex-direction: column;
	}
	.comment-body img {
        margin-right: 0;
    }
 }
 
/* Clear floats */ 
.comment:after {
	content: "";
	display: table;
	clear: both;
 }
/* Remove numbering and bullets from ordered and unordered lists */
.comment-template ol,
.comment-template ul {
    list-style: none; /* Removes bullets or numbers */
    margin: 0; /* Removes default margins */
    padding: 0; /* Removes default padding */
}

/* Adjust individual list items if necessary */
.comments-wrapper li {
    margin-bottom: 15px; /* Add space between comments */
}

/* Add your custom styles for the comment form */
.comment-template form {
    margin: 20px 0;
	border: none;
}
.comment-template .comment-form {
    background-color: transparent;
    padding: 0;
    margin: 5px 0;
    width: 100%;
}
.comment-template h3 {
    color: white;
}
.comment-template .row {
    margin-left: -15px;
    margin-right: -15px;
}
.comment-template .col-md-4, .comment-template .col-md-12 {
	
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}
.comment-template .comment-form form input, .comment-template .comment-form form textarea {
    font-size: 12px;
    color: #abb7c4;
    font-weight: 300;
    text-transform: none;
    border: 1px solid white;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: 42px;
    background: none;
    margin-bottom: 30px;
}
.comment-template .comment-form form input[type="text"]:hover,
.comment-template .comment-form form input[type="email"]:hover,
.comment-template .comment-form form input[type="url"]:hover,
.comment-template .comment-form form textarea:hover {
    border: 1px solid #1ed760;
}
.comment-template .comment-form form input[type="text"],
.comment-template .comment-form form input[type="email"],
.comment-template .comment-form form input[type="url"] {
    padding: 15px;
}
.comment-template .comment-form form input[type="text"],
.comment-template .comment-form form input[type="email"],
.comment-template .comment-form form input[type="url"], 
.comment-template .comment-form form textarea {
    background-color: #f0f0f0; /* Change background color */
    color: #333; /* Change text color */
    padding: 10px; /* Add padding */
    border: 1px solid #ccc; /* Border color */
    border-radius: 5px; /* Optional: Add rounded corners */
    font-size: 14px; /* Change font size */
}

.comment-form form input[type="text"]:focus, .comment-form form input[type="email"]:focus, .comment-form form input[type="url"]:focus, .comment-form form textarea:focus {
    outline: none; /* Remove the default outline */
}

.comment-template .comment-form form textarea {
    height: 245px;
    padding: 15px;
	margin-bottom: 0;
}
.comment-template .comment-form form p, .comment-template .comment-form form p input[type="checkbox"] {
	margin: 0;
}
.comment-template .comment-form-cookies-consent {
    display: flex;
    align-items: center;
}

.comment-template .comment-form form p input[type="checkbox"] {
    margin-right: 10px; /* Space between checkbox and label */
}

.comment-template .comment-form form input.submit {
    background-color: #1ed760;
    padding: 0 45px;
    height: 46px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    font-family: 'Dosis', sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
	cursor: pointer;
    margin-bottom: -10px;
}

.comment-template .comment-form form input.submit:hover {
	border: 1px solid transparent;
}
@media (min-width: 992px) {
    .col-md-4 {
        width: 33.33333333%;
		float: left;
    }
}

/* Media query for screen sizes 900px or smaller */
@media (max-width: 900px) {
  .mid.sp_flex {
    flex-direction: column; /* Stack image on top and content below */
    align-items: center; /* Center align elements */
    text-align: center; /* Center text content */
  }

  .image, 
  .blog-content {
    flex: 0 0 100%; /* Both image and content take up 100% width */
  }

  .image .main_img {
    width: 100%; /* Ensure image takes full width */
  }

  .author_dtails {
    justify-content: center; /* Center author details */
  }

  .post_infos {
    justify-content: center; /* Center post info */
  }
}




.full_post_area {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.has_sidebar {
    display: flex;
    flex-direction: row;
	gap: 15px; /* Space between the image and content */
}
.col_1 {
	width: 75%;
	color : white;
}
.post_content {
    padding: 15px;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}

/* Style for paragraphs */
.post_content p {
    margin-bottom: 20px;
}

.content-fullwidth ul,
.post_content ul {
    margin-left: 25px;
}

.post_content ol {
    margin-left: 25px;
}

/* Style for links */
.post_content a {
    color: #1ed760;
    text-decoration: none;
    font-weight: bold;
}

.post_content a:hover {
    text-decoration: underline;
}

/* Image styles */
.post_content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Sidebar styles */
.sidebar {
    width: 25%;
}

.author_about,
.cats {
    padding: 20px;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 8px;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}

/* Author section */
.sidebar .author_about {
    padding: 8%;
    margin-bottom: 20px;
    text-align: center;
}
.author_about .image {
    margin: 10px 0;
    margin-bottom: 30px;
    display: block;
}
.sidebar .author_about a.image img {
    width: 110px;
    height: 110px;
    border: 10px solid #fff;
    -webkit-box-shadow: 0 0 50px #ccc;
    box-shadow: 0 0 50px #ccc;
    margin: auto;
    border-radius: 50%;
}
.full_post_area .sidebar .author_about span {
    text-align: center;
    background-color: #00c828;
    color: #eee;
    font-size: 12px;
    border-radius: 50px;
    padding: 0 10px;
}
.author_about h3 a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.author_about p {
    color: #ccc;
	margin: 25px 0;
    padding-top: 10px;
    font-size: 14px;
    line-height: 24px;
}
.num_posts_comments a {
	color: white;
}
.author_social {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
/* Category section */
.cats h3 {
    color: white;
    margin-bottom: 15px;
    margin-top: 0;
}

.cats ul {
    list-style: none;
    padding: 0;
}

.cats ul li {
    margin-bottom: 15px;
}

.cats ul li a {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #333;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cats ul li a:hover {
    background-color: #1ed760;
}

.cats ul li img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Parent container for each post */
.similar-posts {
    margin-bottom: 20px; /* Spacing between posts */
    border: 1px solid #ddd; /* Optional border */
    padding: 10px;
    border-radius: 5px;
    background-color: #e3e3e3; /* Optional background */
}

/* Image container */
.similar-posts img {
    flex-shrink: 0;
    max-width: 100%;
    height: auto;
    border-radius: 5px; /* Optional rounded corners */
    margin-right: 15px; /* Space between image and content */
	border: 2px solid #1ed760;
}

.similar-posts:hover img{
	border: 2px solid transparent; /* Default border is transparent */
}
/* Title Hover Effect inside Similar Posts */
.similar-post-text {
	margin-top: 10px;
}
.similar-posts .similar-post-text h2 {
	color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: none;
    transition: color 0.3s ease; /* Smooth color change on hover */
}

/* Hover Effect on h2 inside Similar Posts */
.similar-posts .similar-post-text:hover h2 {
    color: #1ed760; /* Change the color of the title on hover */
}

.similar-posts .similar-post-text:hover a {
	text-decoration: none;
}
/* Ads section */
.ad_sec {
    background-color: #333;
    padding: 15px;
    margin-top: 20px;
    border-radius: 6px;
}

.adsbygoogle iframe {
    max-width: 100%;
    height: auto;
}

/* Media query for screen sizes 900px or smaller */
@media (max-width: 900px) {
  .has_sidebar {
    flex-direction: column; /* Stack image on top and content below */
    align-items: center; /* Center align elements */
    text-align: center; /* Center text content */
  }

  .col_1 {
    width: 100%;
  }

  .sidebar {
    width: 100%; /* Ensure image takes full width */
  }
}

/* Single template */
.single-hero {
    width: 100%;
    height: auto;
	background-position: center;
    background-size: cover;
}

.single-hero .similar-wraper {
	border-top: none !important;
}

.single-page {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.left-section img {
	width: 150px;
	height: auto;
    border-radius: 5px;
	border: 1px solid #1ed760;
}
.fm-radio-single img {
	width: 85.72px;
}

.middle-section {
    flex: 1;
    padding-left: 15px;
	margin: 10px 0;
}

.middle-section h2 {
	font-size: 20px;
    font-weight: bold;
    color: white; /* Title color */
    margin: 0;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
}

.stars i {
    color: #1ed760; /* Star icon color */
    margin-right: 2px;
}

.rating-value {
    font-size: 14px;
    color: white;
    margin-left: 10px;
    background-color: #1ed760;
	padding: 2px 10px;
	border-radius: 10px;
}

.views {
    font-size: 12px;
    color: white;
    margin-left: 10px;
}

.right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 20px;
	margin: 10px 10px;
}

.right-section i {
    font-size: 24px;
    color: #1ed760; /* Icon color */
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.right-section #favorite-btn .remove {
    color: gold;
}

.right-section i:hover {
    color: #fff;
}
.rating-popup-content,
.modal-content{
	border-radius: 3px;
}
.popup-actions button {
    outline: none; /* Removes the default outline */
    border: 1px solid; /* Optionally remove the border */
	padding: 0 5px;
    cursor: pointer; /* Change cursor to pointer on hover */
}
.content-wraper {
	border-top: 1px solid #2e2c2c;
}

/* Media Queries */
@media (max-width: 600px) {
	.left-section img {
		width: 100px;
	}
	.fm-radio-single img {
		width: 57.44px;
	}
	.middle-section {
		padding-left: 10px;
		margin: 3px 0;
	}
	.middle-section h2 {
		font-size: 15px;
		margin-bottom: 5px;
	}
	.stars i,
	.stars i.selected,
	.rating-popup-content i	{
		font-size: 12px;
	}	
	.right-section {
		margin: 10px 10px 10px 0;
	}
	.right-section i {
		font-size: 14px;
		margin-bottom: 0px;
	}
	.rating-value {
		font-size: 8px;
		margin-left: 5px;
		padding: 1px 7px;
	}
	.views {
		font-size: 8px;
		margin-left: 5px;
	}
	.rating-popup-content{
		
	}
}

/* iframe sections */
.iframe-specs .iframe-head {
  display: flex;
  justify-content: space-between; /* Space between items */
  align-items: center; /* Vertically center the items */
  width: 100%; /* Make sure the container takes the full width */
    background-color: #1ed760;
	border-radius: 4px 4px 0 0;
    padding: 0 10px;
}

.iframe-specs .copy-btn {
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	margin-left: auto; /* Ensures the button is pushed to the right */
    background: transparent;
}

.iframe-specs .copy-btn:hover {
    color: #666;
}
.iframe-head .iframe-src {
	color: white;
}
/* Basic styling */
.iframe-specs {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.iframe-heading {
    display: inline-block;
    margin-right: 10px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.iframe-specs > label {
    cursor: pointer;
    padding: 0 10px;
    margin: 10px 5px;;
    font-weight: bold;
    border: 1px solid #1ed760;
    border-radius: 5px;
    display: inline-block;
	float: right;
}
@media (max-width: 600px) {
	.iframe-specs > label {
		font-size: 12px;
	}
}
/* Default selected state for Free */
.iframe-specs .selected {
    background-color: #1ed760;
    color: white;
}

/* Style to make radio buttons visually hidden */
.iframe-specs input[type="radio"] {
    position: absolute;
    left: -9999px;
}

/* Add styles for when the radio buttons are selected */
.iframe-specs #free:checked + label[for="free"],
.iframe-specs #premium:checked + label[for="premium"] {
    background-color: #1ed760;
    color: white;
}


.iframe-specs .iframe-list {
	font-weight: bold;
    margin-right: 5px;
}
/* Hide all iframe sections initially */
.iframe-specs .iframe {
    display: none;
}

.iframe-specs textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #1ed760; /* Default border color */
    font-size: 14px;
    border-radius: 0 0 4px 4px;
	background-color: #c2c5c7; /* Dark background */
    color: #171c24; /* White text */
    resize: none; /* Prevent resizing */
    outline: none; /* Remove default focus outline */
    transition: border-color 0.3s ease-in-out; /* Smooth transition */
}

/* Change border color when clicked (focused) */
.iframe-specs textarea:focus {
    border-color: #ffcc00; /* Change this to your preferred color */
}


/* Show the correct iframe when the respective radio button is selected */
.iframe-specs #free:checked ~ .free-iframe,
.iframe-specs #premium:checked ~ .premium-iframe {
    display: block;
}

/* Show the free iframe when the Free radio button is selected */
.iframe-specs #free:checked ~ .free-iframe {
    display: block;
}

/* Show the premium iframe when the Premium radio button is selected */
.iframe-specs #premium:checked ~ .premium-iframe {
    display: block;
}


/* Tab Navigation styling */
.iframe-specs .iframe-tabs input[type="radio"] {
    position: absolute;
    left: -9999px;
}

.iframe-specs .iframe-tabs label,
.iframe-specs .iframe-tabs2 label {
    cursor: pointer;
    padding: 2px 10px;
    display: inline-block;
	border-radius: 4px 4px 0 0;
}

.iframe-specs .iframe-tabs input:checked + label {
    background-color: #1ed760;
    color: white;
}

/* Tab Content - hide all sections initially */
.iframe-specs .iframe-section {
    display: none;
}

.iframe-tabs input#iframe-tab-1:checked ~ .iframe-content #iframe-content-1,
.iframe-tabs input#iframe-tab-2:checked ~ .iframe-content #iframe-content-2,
.iframe-tabs input#iframe-tab-3:checked ~ .iframe-content #iframe-content-3,
.iframe-tabs input#iframe-tab-4:checked ~ .iframe-content #iframe-content-4,
.iframe-tabs input#iframe-tab-5:checked ~ .iframe-content #iframe-content-5,
.iframe-tabs input#iframe-tab-6:checked ~ .iframe-content #iframe-content-6,
.iframe-tabs input#iframe-tab-7:checked ~ .iframe-content #iframe-content-7,
.iframe-tabs input#iframe-tab-8:checked ~ .iframe-content #iframe-content-8,
.iframe-tabs input#iframe-tab-9:checked ~ .iframe-content #iframe-content-9,
.iframe-tabs input#iframe-tab-10:checked ~ .iframe-content #iframe-content-10,
.iframe-tabs input#iframe-tab-11:checked ~ .iframe-content #iframe-content-11,
.iframe-tabs input#iframe-tab-12:checked ~ .iframe-content #iframe-content-12, 
.iframe-tabs input#iframe-tab-13:checked ~ .iframe-content #iframe-content-13,
.iframe-tabs input#iframe-tab-14:checked ~ .iframe-content #iframe-content-14,
.iframe-tabs input#iframe-tab-15:checked ~ .iframe-content #iframe-content-15 {
    display: block;
}

/* Second Tab Navigation styling */
.iframe-tabs2 input[type="radio"] {
    position: absolute;
    left: -9999px;
}

.iframe-tabs2 input:checked + label {
    background-color: #1ed760;
    color: white;
}

/* Hide all iframe sections initially */
.iframe-section2 {
    display: none;
}

.iframe-tabs2 input#iframe-tab2-1:checked ~ .iframe-content2 #iframe-content2-1,
.iframe-tabs2 input#iframe-tab2-2:checked ~ .iframe-content2 #iframe-content2-2,
.iframe-tabs2 input#iframe-tab2-3:checked ~ .iframe-content2 #iframe-content2-3,
.iframe-tabs2 input#iframe-tab2-4:checked ~ .iframe-content2 #iframe-content2-4,
.iframe-tabs2 input#iframe-tab2-5:checked ~ .iframe-content2 #iframe-content2-5,
.iframe-tabs2 input#iframe-tab2-6:checked ~ .iframe-content2 #iframe-content2-6,
.iframe-tabs2 input#iframe-tab2-7:checked ~ .iframe-content2 #iframe-content2-7,
.iframe-tabs2 input#iframe-tab2-8:checked ~ .iframe-content2 #iframe-content2-8,
.iframe-tabs2 input#iframe-tab2-9:checked ~ .iframe-content2 #iframe-content2-9,
.iframe-tabs2 input#iframe-tab2-10:checked ~ .iframe-content2 #iframe-content2-10,
.iframe-tabs2 input#iframe-tab2-11:checked ~ .iframe-content2 #iframe-content2-11,
.iframe-tabs2 input#iframe-tab2-12:checked ~ .iframe-content2 #iframe-content2-12,
.iframe-tabs2 input#iframe-tab2-13:checked ~ .iframe-content2 #iframe-content2-13,
.iframe-tabs2 input#iframe-tab2-14:checked ~ .iframe-content2 #iframe-content2-14,
.iframe-tabs2 input#iframe-tab2-15:checked ~ .iframe-content2 #iframe-content2-15 {
    display: block;
}


.content-fullwidth {
    align-items: flex-start;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-fullwidth p {
    margin: 0;
    color: #fff;
}
.keyword {
    display: flex;
    align-items: flex-start;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
	color: #171c24;
	padding: 5px 0;
}
.keyword a {
	margin-left: 5px;
}

/* Live batton styling */

.live-batton .live-scroll {
	display: block; margin-bottom: 0;
}
.live-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Adjust spacing between elements */
    text-decoration: none;
}
.live-tv-icon {
    flex: 0 0 auto; /* Keep icon fixed on the left */
}
.live-text {
    font-size: 16px;
    font-weight: bold;
    flex: 1; /* Center the text */
    text-align: center;
}

.livestream {
    width: 20px; /* Adjust size as needed */
    height: auto;
    flex: 0 0 auto; /* Keep image fixed on the right */
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.live-link,
.live-tv-icon,
.livestream {
    animation: blink 1s infinite;
}

/* General table styling */
#schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    text-align: left;
    background-color: #333; /* Dark background for table */
    color: #fff; /* White text for contrast */
}

/* Table header */
#schedule-table thead th {
    background-color: #444; /* Green header */
    color: #fff;
    padding: 12px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #20202b;
}

/* Table rows */
#schedule-table tbody tr {
    border-bottom: 1px solid #444;
    transition: background-color 0.2s ease;
}

/* Table rows hover effect */
#schedule-table tbody tr:hover {
    background-color: #444;
}
#schedule-table tbody .run {
    background: #1ed760;
}
/* Table cells */
#schedule-table td {
    padding: 12px 15px;
    color: #ddd;
}

/* Status cell styling */
#schedule-table td.status {
    font-weight: bold;
    text-align: center;
}

/* Time direction cell styling */
#schedule-table td.time-direction {
    color: #ccc;
    font-style: italic;
}

/* Live status style */
#schedule-table td.status.live {
    color: #ff4747; /* Bright red for live status */
}

/* Not live status style */
#schedule-table td.status:not(.live) {
    color: #999; /* Grey for not live status */
}

/* Responsive table for smaller devices */
@media (max-width: 768px) {
    #schedule-table {
        font-size: 14px;
    }

    #schedule-table thead th,
    #schedule-table td {
        padding: 10px;
    }

    /* Adjust for smaller screens - Stack layout */
    #schedule-table thead {
        display: none; /* Hide the table header */
    }

    #schedule-table tbody tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #444;
    }

    #schedule-table td {
        display: block;
        text-align: left;
        padding: 10px 15px;
        border-bottom: 1px solid #444;
        font-size: 14px;
    }

    #schedule-table td::before {
        content: attr(data-label); /* Use the 'data-label' attribute for headers */
        float: left;
        font-weight: bold;
        color: #1ed760;
    }

    #schedule-table td:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 480px) {
    #schedule-table {
        font-size: 12px;
    }

    #schedule-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* Modal styles */
.content-wrapper-items {
	border-top: 1px solid #2e2c2c;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal-comment {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.modal .comment-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal .comment-close:hover,
.modal .comment-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.add-and-comment {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    gap: 10px; /* Adds some space between the text and the button */
}

.add-and-comment p {
    margin: 0; /* Remove default margin from the paragraph */
	color: white;
	font-size: 20px;
	font-weight: bold;
}

.btn-show-form {
    display: inline-flex;
    align-items: center;
    padding: 10px 0 10px 0;
    font-size: 16px;
    color: #fff;
    background-color: #333; /* Button background color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-show-form i {
    font-size: 18px;
    transition: color 0.3s ease;
}

/* Add hover color for the icon */
.btn-show-form:hover i {
    color: #1ed760; /* Change this to your desired hover color */
}

.report-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.report-text {
    position: absolute;
    opacity: 0; /* Hide text by default */
    margin-left: 5px; /* Space between icon and text */
    transition: opacity 0.3s ease-in-out;
}

.report-container:hover .report-text {
    opacity: 1; /* Show text on hover */
}

.toggle-comments-button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #545454;
    font-size: 14px;
    font-weight: bold;
	padding: 5px 10px;
    border-radius: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.light  .toggle-comments-button {   color: #171c24; border: 1px solid #ddd; }

.toggle-comments-button:hover {
    transform: translateY(-1px);
	
}

.toggle-comments-button i {
    transition: transform 0.3s ease;
}

/* Optional: rotate icon when active (e.g., showing comments) */
.toggle-comments-button.active i {
    transform: rotate(180deg);
}

/* Comment form */
.comment-form {
    background-color: #fff;
    padding: 0 20px 20px 20px;
    margin: 5px 0;
    width: 100%;
}

.modal-comment .comment-form form {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0;
}

.comment-form select {
	padding-left: 0;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form select,
.comment-form textarea {
    width: 100%;
	padding: 5px 10px;
}

.comment-form .form-submit {
    text-align: center;
	padding: 0 5px;
}
.comment-form .form-submit input[type="submit"]{
	padding: 0 5px;
	cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .comment-form {
        padding: 10px;  /* Reduce padding */
    }

    .comment-form form {
        padding: 20px;
    }

    .comment-form textarea {
        min-height: 150px;
    }

    .comment-form .form-submit input[type="submit"] {
        width: 100%; /* Full width submit button */
    }
}

.report-specs {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
	margin-top: 20px;
    margin-bottom: 20px;
    max-height: 400px;               /* Limit height */
    overflow-y: hidden;              /* Hide scrollbar by default */
    position: relative;              /* Required for absolute children if any */
}

.report-specs:hover {
    overflow-y: auto;                /* Show scrollbar on hover */
}

.report-specs::-webkit-scrollbar {
    width: 8px;
    position: absolute;              /* Make it feel like absolute (visually) */
}

.report-specs::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.report-specs::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.light .report-specs::-webkit-scrollbar-thumb {
    background-color: #ccc;  /* light gray thumb */
}

.light .report-specs::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;  /* slightly darker on hover */
}

.total-reports {
	color: white;
	margin-bottom: 10px;
	font-weight: bold;
}
.light .total-reports {
	color: #171c24;;
}

.report-specs ol, .report-specs ul, .report-specs li {
    list-style: none;
}

.custom-comment {
    background-color: #3e3e3e;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    font-family: Arial, sans-serif;
}
.light .custom-comment {
background-color: #d7d7d7;
}
.custom-comment .vcard {
	display: flex;
}

.custom-comment .comment-meta {
    display: grid;
    align-items: center;
    margin: 10px 0 10px 10px;
	width: 100%;
}
.custom-comment .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.custom-comment .comment-author img {
    border-radius: 50%;
    margin-right: 10px;
}

.custom-comment .comment-author .fn {
    font-weight: bold;
    font-size: 1.1em;
    color: #1ed760;
    margin-right: 10px;
}

.meta .like-button {
	background: none;
	border: none;
	color: #1ed760;
	cursor: pointer;
	font-size: 14px;
	margin-left: auto;
}

.comment-actions {
	margin-left: auto;
}

.custom-comment .comment-date {
    font-weight: normal;
}

.custom-comment p {
	font-weight: normal;
}

.custom-comment .comment-content {
    font-size: 15px;
    line-height: 1.5;
}

.custom-comment .comment-issue {
    margin-top: 10px;
    background-color: #333;
    padding: 8px 12px;
    border-left: 3px solid #1ed760;
    border-radius: 5px;
    font-size: 14px;
    color: #f1f1f1;
}

.light .custom-comment .comment-issue {
	background-color: #fff;
	color: #171c24;
}
.custom-comment .reply-link {
    display: block;
    margin-top: 12px;
    text-align: right;
    color: #1ed760;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.custom-comment .reply-link:hover {
    color: #17c454;
    text-decoration: underline;
}

.custom-comment ol.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.report-specs ol.children {
    margin-left: 30px; /* Indent child comments */
    padding-left: 0;
}

.custom-comment ol.comment-list li.comment {
    margin-bottom: 20px;
}

.custom-comment .comment-content {
    margin-top: 10px;
}

.children .custom-reply {
	display: none;
}

#custom-comment-list .hidden-comment {
    display: none;
}

#custom-comment-list .visible-comment {
    display: block;
}

.load-more-comments-wrap {
    text-align: center;
    background-color: #3e3e3e;
    padding: 20px;
    overflow: hidden;
	border-radius: 10px;
}
.light .load-more-comments-wrap {
	background-color: #d7d7d7;
}
#loadMoreComments {
    background-color: #1ed760;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}


.similar-wraper {
	border-top: 1px solid #2e2c2c;
}

/* General Styles */
.all-page {
	padding-bottom: 50px;
}
.page-head h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1ed760;
    font-size: 20px;
    font-weight: bold;
}

.login-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #1ed760;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.login-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1ed760;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.login-button:hover {
    background-color: #17c056;
}

.form-footer {
    text-align: center;
    margin-top: 10px;
}

.form-footer a {
    color: #1ed760;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}
/* Media Queries */
@media (max-width: 768px) {
    .login-container {
        width: 90%;
		max-width: 300px;
    }

    .archive-head h2 {
        font-size: 1.5rem;
    }

    .form-group input {
        padding: 8px;
    }

    .login-button {
        padding: 8px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .login-container {
        width: 90%;
		max-width: 200px;
    }

    .archive-head h2 {
        font-size: 1.2rem;
    }

    .form-group input {
        padding: 6px;
    }

    .login-button {
        padding: 6px;
        font-size: 12px;
    }

    .form-footer a {
        font-size: 14px;
    }
}

.subscription-container {width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.subscription-plan {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 20px;
    padding: 20px;
    width: 29%;
    box-sizing: border-box;
    text-align: center;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-header h3 {
    color: #1ed760;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 24px;
    color: #fff;
}

.plan-features {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
    color: #fff;
}

.plan-features li {
    margin-bottom: 10px;
}

.subscribe-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1ed760;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-button:hover {
    background-color: #17c056;
}

/* Media Queries */
@media (max-width: 768px) {
    .subscription-plan {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .subscription-plan {
        width: 90%;
    }
}

/* Profile Page Styles */
.profile-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center contents */
    padding: 20px;
    margin: 0 auto; /* Center container on the page */
}

.profile-sidebar {
    width: 25%;
    max-width: 300px;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px; /* Add padding around the sidebar content */
}

.profile-picture img {
    width: 50%;
	margin-bottom: 15px;
    border-radius: 50%;
    border: 2px solid #1ed760;
}

.redbtn{
	width: 30%;
	text-decoration: none;
}

.profile-info {
    color: #fff;
    margin-top: 20px; /* Adjust top margin for profile info */
}

.profile-info h3 {
    color: #1ed760;
}

.profile-content {
    width: 70%;
    max-width: 800px;
    padding: 20px; /* Add padding around the profile content */
}

.profile-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.profile-section h3 {
    color: #1ed760;
    margin-bottom: 20px;
}

.profile-section p {
    color: #fff;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #1ed760;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    box-sizing: border-box;
}

.profile-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1ed760;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    box-sizing: border-box;
    margin-top: 10px;
}

.profile-button:hover {
    background-color: #17c056;
}

.profile-button-link {
	text-decoration: none;
    color: #fff;
}

/* Media Queries */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
    }
    .profile-sidebar, .profile-content {
        width: 100%;
        max-width: 400px; /* Adjusted to 100% for responsiveness */
    }
    .profile-info {
        margin-top: 10px; /* Adjusted top margin for smaller screens */
    }
}

@media (max-width: 480px) {
    .profile-sidebar, .profile-content {
        width: 100%;
        max-width: 275px; /* Adjusted to 100% for responsiveness */
    }
    .profile-container {
        padding: 10px;
    }
    .profile-section {
        padding: 10px;
    }
}

/* Wishlist Page Styles */
.wishlist-section h3 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    color: #1ed760;
    margin-bottom: 20px;
	margin-top: 19px;
}

.disclaimer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.disclaimer-content {
    color: #fff;
}

.disclaimer-content h3 {
    margin-bottom: 10px;
}

.disclaimer-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.disclaimer-container ul {
    box-sizing: border-box;
    margin-left: 40px;
}

/* Media Queries */
@media (max-width: 768px) {
    .disclaimer-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .disclaimer-container {
        padding: 10px;
    }
}

/* Contact Page Styles */
.contact-container {
    width: 86%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.contact-info, 
.contact-form {
    width: 48%;
    color: #fff;
}

.contact-info h3, 
.contact-form h3 {
    color: #1ed760;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info p a {
    color: #1ed760;
    text-decoration: none;
}

.contact-info p a:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #1ed760;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    box-sizing: border-box;
}

.password-container {
    position: relative;
}

.password-input {
    width: 100%;
    padding: 8px 40px 8px 8px; /* Add padding to the left for the icon */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.eye-icon {
    position: absolute;
    right: 10px; /* Position it 10px from the right */
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    cursor: pointer;
    color: #1ed760; /* Change color as needed */
}

.form-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 1px solid #1ed760;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
	margin-bottom: -7px;
}

.form-group input[type="checkbox"]:checked {
    background-color: #1ed760; /* Customize color for checked state */
    border-color: #1ed760;
}

.form-group input[type="checkbox"]:checked::before {
    content: "âœ”";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    margin-top: -7px;
}

.contact-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #1ed760;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    box-sizing: border-box;
    margin-top: 10px;
}

.contact-button:hover {
    background-color: #17c056;
}
/* Media Queries */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-info, .contact-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 10px;
    }
}

/* About us */
h3 {
     color: #1ed760;
    margin-top: 20px;
}

p {
    margin: 10px 0;
}

a {
    color: #1ed760;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.back-to-home {
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* Ensure the term link has no underline */
.term-archive {
    padding: 15px;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 16px; /* Space between items */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
	margin-bottom: 20px;
}

.term {
    width: calc(20% - 16px);
    min-width: calc(100% / 6);
    display: flex;
    align-items: center; /* Align items vertically */
    text-decoration: none; /* Remove underline from link */
    color: white; /* Ensure text color is visible */
    padding: 10px; /* Add some padding */
    border: 1px solid #1ed760; /* Optional: add a border */
    border-radius: 4px; /* Optional: add rounded corners */
    background-color: #282828; /* Ensure sufficient contrast */
    transition: background-color 0.3s, transform 0.3s ease; /* Smooth transitions */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    overflow: hidden; /* Ensure content doesn't overflow */
}

/* Ensure the term photo style is correct */
.term-photo {
    width: 25%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
}

/* Container for term name and post count */
.term-details {
    margin-left: 5px; /* Space between image and text */
	width: 75%; /* Make image responsive */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    flex: 1; /* Allow this container to take up remaining space */
}

/* Term name and total post count styles */
.term-name {
    font-weight: bold; /* Optional: make the term name bold */
    font-size: 12px;
    margin-bottom: 2px; /* Space below term name */
}

.total {
    font-size: 10px; /* Adjust font size */
    color: #ccc; /* Optional: different color for the post count */
}

/* Optional: add hover effect */
.term:hover {
    background-color: #1a1a1a; /* Change background color on hover */
    text-decoration: none; /* Remove underline from link */
    transform: scale(1.1); /* Scale effect on hover */
    border: 2px solid #1ed760; /* Optional: add a border */
}

.term-archive p {
	color: white;
}
/* Media query for screens 900px or less */
@media (max-width: 900px) {
    .term {
        width: calc(33.333% - 11px); /* Adjust width for smaller screens */
        min-width: calc(100% / 4); /* Adjust min-width */
        display: flex;
        justify-content: center; /* Center the term content horizontally */
    }

    .term-photo {
        display: none; /* Hide the .term-photo element */
    }

    .total {
        display: inline; /* Ensure the .total element is visible */
		margin-bottom: 4px;
    }

    .term-details {
		margin-left: 0; /* Space between image and text */
        display: flex;
        flex-direction: row; /* Arrange items in a single row */
        align-items: center; /* Center content vertically */
        justify-content: center; /* Center content horizontally */
    }

    .term-name {
        margin-right: 5px; /* Add some space between the term name and the total */
    }
}


/* Media query for screens 600px or less */
@media (max-width: 600px) {
    .term {
        width: calc(50% - 8px); /* Adjust width for smaller screens */
        min-width: calc(100% / 3); /* Adjust min-width */
    }
    .total {
        display: block; /* Ensure the .total element is displayed as a block */
        margin-top: 5px; /* Space between term name and post count */
    }
}

/* Light styles */
body {
  visibility: hidden;
}
.dark {
	background-color: #20202b;
}
.light {
	background-color: white;
}
.light,
.dark {
  visibility: visible;
}

.light header .wrapper {
	border-bottom: 1px solid #d7d7d7;
}
.light .content .links li a:hover,
.light .content .links li label:hover {
    background: #b9b9b9;
}

@media screen and (min-width: 901px) {

	.light .content .current-menu-item a {
		background: transparent;
		color: #1ed760 !important;
	}
	.light .content .links > li > a:hover {
		background: transparent;
		color: #1ed760 !important;
	}
}

@media screen and (max-width: 900px) {
    .light nav .content .links {
		background: #f0f0f0;
	}
}
.light #search-results, .light .wrapper, .light .ft-copyright, .light .content .links ul, .light .content .links ul ul {
	background: #9b9c9d;
}

.light .search-box input {
    color: #171c24;
	background: #dddddd;
}

.light .search-box .go-icon {
    color: #171c24;
	background: #9b9c9d;
}

.light .wrapper .search-icon, .light .wrapper .menu-icon, .light .btn-register, .light .btn-account {
	color: #171c24;;
}

.light main, .light .btn-show-form {
    background-color: #fff;
}
.light .search-box input::placeholder{
    color: #171c24;
}
.light #search-results {
	border: 1px solid #fff;
}
.light .search-result-item {
	border-bottom: 1px solid #fff;
}
.light .search-result-item:hover {
    background-color: #fff; /* Slightly lighter background on hover */
}
/* Change the link color when the search result item is hovered */
.light .search-result-item:hover a {
    color: #1ed760; /* Highlight color for link on item hover */
}
.light #search-results::-webkit-scrollbar-track {
    background: #9b9c9d; /* Match the background color */
}
.light .event-container {
    background: linear-gradient(rgba(0, 0, 0, 0), #ebebeb);
}
.light .card > .row {
    background: linear-gradient(rgba(0, 0, 0, 0), #ffffff);
}
.light .card > .row .icon {
    background: #b3b3b3;
    color: #171c24;
}
.light .item-wrapper:hover h2, .light .fm-item:hover h2, .light .archive-item:hover h2,
.light .main-content .content-item:hover h2 {
	color: #1ed760;
}
.light .description a:hover h2,
.light .post_infos li a:hover {
	color: #1ed760 !important;
}

.light .post_infos li a {
	color: #171c24 !important;
}

.light .container.welcome span a:hover, .light .iframe-specs .copy-btn:hover {
    color: white;
}

.light .player-audio-container, .light .comment-template .comment-form form input.submit, .light .cat a, .light .full_post_area .sidebar .author_about span, .light .container.welcome span a, .light .iframe-specs .copy-btn, .light .iframe-specs .iframe-tabs input:checked + label, .light .iframe-tabs2 input:checked + label, .light .iframe-head .iframe-src, .light .rating-value, .light .description a h2, .light .live-event h2, .light h4, .light p, .light .search-result-item a, .light .profile-info, .light .similar-posts .similar-post-text h2, .light .blog-item-style .blog-it-infor h2, .light .post_content .social-icons a i, .light .comment-body .comment-text, .light .comment-body .comment-author, .light .num_posts_comments a, .light .author_about h3 a, .light .content .links li a, .light .content .links li label, .light .welcome, .light .main-content .content-item a h2, .light .content-wrapper h2, .light .fm-content h2, .light .blog-content h1, .light .auth_desc h4 a, .light .col_1, .light .cats ul li a, .light .archive-content h2, .light .container.welcome span, .light .container.welcome .nav_items_module a, .light .flex-child-ft h4, .light .flex-child-ft ul li a, .light .btn-show-form, .light .add-and-comment p, .light .social-icons a, .light .middle-section h2, .light .views, .light .archive-head h2, .light .contact-info, .light .contact-form, .light .form-group label, .light .form-group input, .light .form-group textarea, .light .form-group select, .light .profile-section p, .light .plan-price, .light .plan-features, .light .disclaimer-content, .light .post-excerpt, .light .archive-content p, .light .content-fullwidth p, .light .term-archive p, .light .error-page h2,  .light .error-page p, .light .cats h3 {
	color: #171c24;
}
.light .right-section i:hover {
    color: #171c24;
}
.light .comment-template .comment-form form .row input, .light .comment-template .comment-form form .row textarea, .light .comment-template .comment-form form input.submit {
	border: 1px solid #171c24;
}
.light .comment-template .comment-form form input.submit:hover {
	border: 1px solid transparent;
}
.light .comment-template .comment-form form .row input:hover, .light .comment-template .comment-form form .row textarea:hover {
	border: 1px solid #1ed760;
}
.light .auth_img img {
	border: 7px solid #171c24;
}
.light .sidebar .author_about a.image img {
	border: 10px solid #171c24;
}
.light .blog-item-style:hover h2,
.light .similar-posts .similar-post-text:hover h2,
.light .main-content .content-item a:hover  h2,
.light .post_content .social-icons a i:hover,
.light .flex-child-ft ul li a:hover,
.light .social-icons a:hover {
  color: #1ed760;
}

.light footer, .light .single_head {
	color: #171c24;
    background-color: #c2c5c7;
}

.light .stmify-player, .light .player-audio-container {
	color: #171c24;
	background: linear-gradient(rgba(0, 0, 0, 0), #ebebeb);
}
.light .ft-left p {
    color: #343131;
}
.light .ft-copyright {
	border-top: 1px solid #d7d7d7;
}
.light .scroll-to-top {
    background-color: white;
    color: #333;
}
.light .scroll-to-top:hover {
    background-color: #bdbdbd;
}
.light .similar-wraper, .light .content-wraper {
    border-top: 1px solid #d9d8d8;
}

.light .batton-container {
	border-bottom: 1px solid #d9d8d8;
}
.light .content-wrapper-items {
	border-top: 1px solid #d9d8d8;
}
.light .cats ul li a {
	background-color: #e3e3e3;
}

.light .sidebar .author_about a .image img {
    box-shadow: 0 0 50px #3a3a3a;
	border: 7px solid #171c24;
}
.light .cats ul li a:hover {
	background-color: #1ed760;
}

.light .form-group input, .light .form-group textarea, .light .form-group select {
	background-color: #f0f0f0;
}
.light .term {
    color: #171c24;
	background-color: #f0f0f0;
}

.light .total {
    color: #4a5464;
}
.light .post_infos li {
    color: #171c24 !important;
}
.light #schedule-table thead th {
    background-color: #ccc;
    color: #444;
    border-bottom: 1px solid #d9d8d8;
}
.light #schedule-table {
    background-color: #ffffff;
}
.light #schedule-table td {
    color: #444;
}
.light #schedule-table tbody tr {
    border-bottom: 1px solid #d9d8d8;
}
.light #schedule-table tbody tr:hover {
    background-color: #ccc;
}

.light .blog-item-style {
	background-color: rgb(2 2 2 / 5%);
}

.light .pagination .dots,
.light .pagination a {
    color: #171c24;
	border: 1px solid #171c24;
}

.light .pagination a:hover {
	color: #171c24;
    background-color: #1ed760;
}
.light .pagination .current {
	color: #171c24;
}
.light .issue-overlay, 
.light .iframe-container iframe {
	background: #DDD;
}

/* Dark styles */
.dark #loader {
    background-color: #20202b;
}

.dark .search-box .post-type-select {
	color: #fff;
    background: #2e3846;
	border: none;
    border-left: 2px solid #272d36;
    border-right: 2px solid #272d36;
}

.dark .options .active-stream {
    color: #1ed760;
}

.dark .options {
    background-color: #303030;
}
.dark .options li {
    border: 1px solid #545454;
    background-color: #3e3e3e;
	color: white;
}
.dark p,
.dark .content-fullwidth ul,
.dark .share-text,
.dark .options li a{
	color: white;
}
.dark .options .active-stream,
.dark .options li:hover {
    background-color: #545454;
}
.dark .batton-container {
	border-bottom: 1px solid #2e2c2c;;
}
.dark h4, .dark .keyword {
    color: White;
}
.dark .post_content .social-tags {
	border-top: 1px solid white;
}
.dark .checkbox-label .ball {
    background-color: #111;
}

.dark .checkbox-label {
    background-color: #fff;
}
.dark .modal-comment .comment-form input[type="text"], .dark .modal-comment .comment-form input[type="email"], .dark .modal-comment .comment-form input[type="url"], .dark .modal-comment .comment-form select, .dark .modal-comment .comment-form textarea, .dark .modal-comment .comment-form input[type="submit"]{
	border: 1px solid #fff; /* Change background color */
}
.dark .popup-actions button,
.dark .modal-comment .comment-form input[type="text"], .dark .modal-comment .comment-form input[type="email"], .dark .modal-comment .comment-form input[type="url"], .dark .modal-comment .comment-form select, .dark .modal-comment .comment-form textarea, .dark .modal-comment .comment-form input[type="submit"],
.dark .comment-template .comment-form form input[type="text"],
.dark .comment-template .comment-form form input[type="email"],
.dark .comment-template .comment-form form input[type="url"], 
.dark .comment-template .comment-form form textarea {
    background-color: rgba(255, 255, 255, .05); /* Change background color */
	color: white;
}
.dark .comment-template .comment-form form input[type="text"]:hover,
.dark .comment-template .comment-form form input[type="email"]:hover,
.dark .comment-template .comment-form form input[type="url"]:hover, 
.dark .comment-template .comment-form form textarea:hover {
    border: 1px solid #1ed760; /* Change background color */
}

.dark .rating-popup-content,
.dark .modal-content,
.dark .modal-comment,
.dark .modal-comment .comment-form form {
    background-color: #333;
    border: 1px solid #4c4c4c;
}
.dark .rating-popup-content .close-popup:hover,
.dark .modal-content,
.dark .content-fullwidth,
.dark .modal-content .close:hover,
.dark .modal .comment-close:hover {
	color: white;
}
.dark .comment-form {
    background-color: #333;
	color: white;
}

.dark .popup-actions button, .dark .modal-comment .comment-form form input[type="text"]:focus, .dark .modal-comment .comment-form form input[type="email"]:focus, .dark .modal-comment .comment-form form input[type="url"]:focus, .dark .modal-comment .comment-form form textarea:focus, .dark .modal-comment .comment-form form select:focus {
    outline: none; /* Remove the default outline */
}
/* Style the dropdown options background */
.dark .comment-form-issue select option {
    background-color: #333; /* Change this to your desired option background color */
    color: #ffffff; /* Text color */
}

.dark .similar-posts {
    border: 1px solid #303030;
    background-color: #333;
}

.dark .iframe-specs > label,
.dark .iframe-list,
.dark .iframe-specs .iframe-tabs label,
.dark .iframe-specs .iframe-tabs2 label {
	color: white;
}
.dark .iframe-specs textarea {
	background-color: #20202b;
	color: white;
}

header, main, footer {
    display: none;
}