/*!
Theme Name: NearMeDial
Theme URI: https://www.thekroyaard.com
Author: thekroyaard S P L
Author URI: https://www.thekroyaard.com
Description: this theme created by thekroyaard SPL, Use this theme for more faster perfomance
Version: 1.0.3
Tested up to: 5.4
Requires PHP: 5.6 or higher
Text Domain: thekroyaard_spl
*/
.stars {
    display: inline-flex;
}

.stars span {
    font-size: 24px;
    cursor: pointer;
    color: #ccc;
    transition: 0.2s;
}

/* Hover effect (smooth) */
.stars span:hover,
.stars span:hover ~ span {
    color: #ccc;
}

.stars span.active,
.stars span.hover {
    color: gold;
}

.auto-gallery{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.auto-gallery .thumb{
    width:90px;
    height:90px;
    cursor:pointer;
    overflow:hidden;
    border-radius:8px;
}

.auto-gallery .thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Popup */
.gallery-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    z-index:999999;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.gallery-popup img{
    max-width:95%;
    max-height:95vh;
    object-fit:contain;
}

.gallery-close{
    position:absolute;
    top:15px;
    right:20px;
    font-size:35px;
    color:#fff;
    cursor:pointer;
}
.custom-breadcrumb{
    font-size:14px;
    padding-bottom:10px;
	margin-top: 12px;
	margin-bottom: 12px;
    line-height:1.7;
    word-break:break-word;
	border-bottom: 1px solid #f0f0f0
}

.custom-breadcrumb a{
    color:#0073aa;
    text-decoration:none;
}

.custom-breadcrumb a:hover{
    text-decoration:underline;
}

.custom-breadcrumb .sep{
    margin:0 5px;
    color:#888;
}

.custom-breadcrumb .current{
    color:#666;
    font-weight:600;
}


.child-category-box{
    margin:25px 0;
}

.child-category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:15px;
}

.child-category-card{
    display:block;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    text-decoration:none;
    transition:.25s;
}

.child-category-card:hover{
    border-color:#0073aa;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.cat-name{
    display:block;
    font-weight:600;
    color:#222;
}

.cat-count{
    display:block;
    margin-top:6px;
    font-size:13px;
    color:#666;
}



/* Review Form */

.comment-respond,
.review-form{
background:#fff;
padding:20px;
border:1px solid #eee;
border-radius:12px;
margin-bottom:20px;
}

.comment-respond input,
.review-form input,
.comment-respond textarea,
.review-form textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
box-sizing:border-box;
font-size:15px;
margin-bottom:15px;
outline:none;
}

.comment-respond input:focus,
.review-form input:focus,
.comment-respond textarea:focus,
.review-form textarea:focus{
border-color:#444;
}

.comment-respond textarea,
.review-form textarea{
min-height:120px;
resize:vertical;
}


/* Submit Button */
.comment-respond .submit,
.review-form button{
background:#111;
color:#fff;
border:none;
padding:12px 25px;
border-radius:8px;
cursor:pointer;
font-size:15px;
}


.comment-respond .submit:hover,
.review-form button:hover{
opacity:.9;
}


/* Math Captcha */
.math-captcha-box{
background:#f8f8f8;
border:1px solid #eee;
padding:18px;
border-radius:12px;
margin-bottom:20px;
text-align:center;
}


.math-title{
font-size:15px;
font-weight:600;
margin-bottom:15px;
color:#555;
}


.math-question{
display:flex;
justify-content:center;
align-items:center;
gap:10px;
margin-bottom:18px;
}


.math-num,
.math-sign,
.math-q{
display:flex;
justify-content:center;
align-items:center;
width:45px;
height:45px;
background:#fff;
border:1px solid #ddd;
border-radius:10px;
font-size:22px;
font-weight:700;
color:#111;
}


.math-sign{
border:none;
background:transparent;
width:auto;
}


.math-input{
width:160px !important;
max-width:100%;
margin:auto;
text-align:center;
font-size:18px;
font-weight:600;
}


/* Review List */

.review-item{
background:#fff;
border:1px solid #eee;
border-radius:12px;
padding:15px;
margin-bottom:15px;
box-shadow:0 1px 3px rgba(0,0,0,.05);
}


.review-item strong{
display:block;
font-size:16px;
margin-bottom:8px;
}


.review-item p{
margin:0;
line-height:1.8;
color:#444;
}


/* Message */
.review-msg{
background:#f5f5f5;
padding:15px;
border-radius:10px;
margin-bottom:15px;
}


/* Load More */

#load-more-review{
width:100%;
padding:12px;
background:#111;
color:#fff;
border:none;
border-radius:10px;
cursor:pointer;
}


#load-more-review:hover{
opacity:.9;
}


/* Mobile */

@media(max-width:768px){
.math-num,
.math-sign,
.math-q{
width:40px;
height:40px;
font-size:20px;
}

.math-input{
width:100% !important;
}
}

.review-section {
	display: grid;
	grid-template-columns: 40% 59%;
padding: 20px 10px;
	align-items: center;
	background: #f7f7f7;
	justify-content: space-between;
}

   .ultra-like-btn {
            color: black;
            padding: 20px 6px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 2px;
            transition: background 0.2s, color 0.2s;
		 width: 100%;
        }
        .ultra-like-btn:hover:not(:disabled) {
            color: black;
        }
        .ultra-like-btn.has-voted {
          
            color: blue;
            cursor: not-allowed;
            opacity: 0.85;
        }

.rating-box{
	background: navy;
	padding: 10px;
	border-radius: 2px;
}
.rating-box p{
	color: white;
	font-size: 18px;
	font-weight: bold;
	margin: 0;
}

.business-box{background:#fff;border-radius:8px;margin:15px 0;}
.business-table{width:100%;border-collapse:collapse;}
.business-table td{padding:10px;border-bottom:1px solid #ddd;}
.business-table td:first-child{font-weight:bold;width:40%;}

.contact-buttons button{margin:3px;padding:6px 10px;color:#fff;border:none;border-radius:5px;cursor:pointer;font-size:13px;}
.btn-call{background:green;}
.btn-wa{background:#25D366;}
.btn-email{background:#0073aa;}
.btn-web{background:#333;}

.popup-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);justify-content:center;align-items:center;z-index:9999;}
.popup-box{background:#fff;padding:20px;border-radius:8px;width:90%;max-width:300px;text-align:center;}
.popup-options div{padding:8px;background:#eee;margin:5px 0;cursor:pointer;border-radius:5px;}

.status-badge {
   
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 4px;
    color: #fff;
}
.post-outer .status-badge {
    font-size: 11px;
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 4px;
    color: #fff;
}

.status-active {
    background: #28a745;
}

.status-closed {
    background: #dc3545;
}

.verified-inline {
    color: #28a745;
    margin-left: 6px;
}
.post-outer .verified-inline {
    background: #28a745;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
}

.faq-heading{
font-size:18px;
font-weight:bold;
text-decoration: underline;
margin-bottom:4px;
}
.lyrics-faq-box {
border-top: 2px solid #f7f7f7;
	padding-top: 1.2em
}

.faq-item {
border-bottom:1px solid #eee;
padding:10px 0;

}

.faq-question {
font-weight:bold;
color:#555;
margin-bottom:5px;
}

.faq-answer {
color:#555;
}
#cse-loader {
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 20px;
    color: #555;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#multiSearchForm .button-group button {
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
	color: white;
	font-weight: bold;
	background: #0073aa;
}
#multiSearchForm .button-group button:hover {
background: #005177;
	color:white
}
.button-group {
    flex-basis: 100%;
}
.gsc-control-cse {
    padding: 0 !important;
    margin: 0 !important;
}
.aligncenter {
	background: #eee;
	max-width: 98%;
	padding: 1%;
	margin: 10px 0
}

.page-title {
	font-size: 22px;
	margin: 12px 0px 20px 0px;
	padding-bottom: 10px;
	border-bottom: 2px solid #eee
}

.youtube-player {
	position: relative;
    padding-bottom: 300px;
    height: 0;
    overflow: hidden;
    background: #000;
    margin-top: 1em
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 300px;
    z-index: 100;
    background: 0 0
}

.youtube-player img {
    object-fit: cover;
    display: block;
    left: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    max-height: 250px;
    cursor: pointer;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    transition: .4s
}

.youtube-player img:hover {
    -webkit-filter: brightness(75%)
}

.youtube-player .play {
    background-color: red;
    border-radius: 6px;
    height: 50px;
    width: 80px;
    left: 48.5%;
    top: 52.5%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    cursor: pointer
}

.play:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -16px;
    border-left: 30px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent
}


#gotoLyricsBTN,
#gotoYTvideoBTN {
    display: none
}
#gotoLyricsBTN:before {
	content:'㊂';
}
#gotoYTvideoBTN:before {
	content:'🎞️';
}
.postlyricsbutton {
    background: #f1f1f1;
	cursor: pointer;
	padding: 0 4px
}

.DownPrintBTN2 {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-gap: 2%;
	margin-bottom: 1.8em;
    background: #eee
}
.lyricsprintbtn {
    font-size: 100%;
    width: -webkit-fill-available;
    border: none;
    height: 30px;
    cursor: pointer;
    padding-top: 4px;
    padding-bottom: 4px;
    box-shadow: inset 0 -4px 10px rgba(0, 0, 0, .5)
}

.lyricsprintbtn:hover {
    background: #e1e1e1
}

.lyricsdesign {
    background: #fff;
    text-transform: capitalize;
    padding-left: 12px;
    padding-right: 10px;
    max-height: 400px;
    overflow: auto;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, .5)
}

.lyricsdesign::-webkit-scrollbar {
    width: 5px
}

.lyricsdesign::-webkit-scrollbar-thumb {
    background: #888
}
#block-19 {
	min-height: 250px;
	background: #eee;
}
.overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        color: #b50000;
		font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 10;
			border-radius: 6px
    }
.hamburger-menu, .close-menu {
display: none;
}
.search-box .tk-loading-icon {
	position: absolute;
	background: #f7f7f7;
	z-index:9999;
}
.search-item {
	padding: 0 10px;
	margin-bottom: 10px
}
.post-outer .cat-links a,
.post-outer .tags-links a {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.related-posts {
    list-style: none
}

.related-posts .related-title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box
}

.post-inner .entry-footer {
    background: #f7f7f7;
    padding: 4px 10px;
    margin: 2.2em 0 0
}

.post-inner .entry-footer .cat-links a,
.post-inner .entry-footer .tags-links a {
    background: #fff;
    border-radius: 6px;
    padding: 0 6px;
    text-decoration: none;
    color: #000;
    margin: 6px;
    display: inline-block;
    font-weight: 500;
    font-size: 90%
}


.post-inner .entry-footer .cat-links a:hover,
.post-inner .entry-footer .tags-links a:hover {
    color: #b50000
}

.tk-play-icon {
    display: inline-block
}



.therkoyaard_sidebar_ads {
    margin-top: 1.8em;
    margin-bottom: 1.8em;
    background: #f7f7f7;
    min-height: 250px;
    position: sticky;
    z-index: 0;
    top: 10px
}

.tk-rightsign-icon::before {
    content: '⇨';
    color: #000
}

.tk-play-icon {
    transform: rotate(270deg)
}

.tk-play-icon::after {
    content: ' ▼ ';
    color: #000;
    font-size: 20px
}
.tk-pause-icon::after {
    content: ' ❙❙ ';
    color: #000;
    font-size: 20px;
	font-weight: 800
}

.audio-player,
.tksearchButton {
    text-align: center
}

#copyLinkButton {
    transition: background-color .3s
}

.search-music-icon-post::before {
    content: ' ♪ '
}


.menu-toggle,
.play-pause {
    color: #000;
    cursor: pointer
}

.entry-content td a,
.post-outer a {
    text-decoration: none
}


.audio-player,
.footer-inner,
.site-main .page,
.site-main .post-outer,
.related-posts li a,
.site-branding,
.tksearch {
    position: relative
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.primary-menu > li {
    position: relative;
	margin: 10px 0;
}

.primary-menu > li:hover > ul {
    display: block;
    animation: fadeIn 0.3s ease;
	background: black;
	border-radius: 0 6px 6px 0px;
}

.primary-menu > li:has(ul) > a:after {
    content: '▼';
    display: inline-block;
	float: inline-end;
    margin-top: 4px;
    font-size: 60%;
}

.primary-menu ul li:has(ul) > a:after {
    content: '▸';
    display: inline-block;
    margin-left: 10px;
    font-size: 100%;
}

.primary-menu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    background-color: #b50000;
    z-index: 999;
    margin: 0;
    list-style: none;
    font-size: 90%;
	width: -webkit-fill-available
}

.primary-menu ul ul {
    top: 0;
    left: 100%;
    padding: 0;
    font-size: 100%;
	
}

.primary-menu ul li {
    position: relative;
}

.primary-menu ul li:hover > ul {
    display: block;
    animation: fadeIn 0.3s ease;
}

.primary-menu ul li a {
    z-index: 999;
    color: white;
	border: 0;
	border-left: 4px solid #b50000;
	border-bottom: 1px solid;
	border-radius: 0
}

.primary-menu a {
    display: block;
    padding: 6px 10px;
    text-decoration: none;
    color: black;
    border: 1px solid;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.primary-menu a:hover,
.primary-menu a:active,
.primary-menu li:hover > a,
.primary-menu li:active > a,
.primary-menu ul li:hover > a,
.primary-menu ul li:active > a,
.primary-menu ul ul li:hover > a,
.primary-menu ul ul li:active > a,
.primary-menu ul li.active > a,
.primary-menu ul ul li.active > a {
    background-color: #b50000;
    color: white;
    border-radius: 6px;
	
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.post-outer .UsableBtn,
.post-outer hr,
.post-outer table {
    display: none
}

.sticky,
embed,
iframe,
object {
    display: block
}

.search-box form {
    background: #eee;
	display: flex;
	flex-wrap: wrap;
    max-width: 100%;
	padding: 2px;
	gap: 2px;
	border-radius: 2px
}

.search-box input {
    border: 0;
    outline: 0;
	min-width: 50px
}

.search-box button {
    background: #fff;
    border: 0;
	 padding: 10px;
    cursor: pointer;
    font-size: 16px;
}

input[type=range],
input[type=range]:hover {
    background: linear-gradient(to right, red 0, #000 var(--seekbar-progress), #959695 var(--seekbar-progress), red 100%);
}

.tksearchTerm {
    flex: 1;
    border: none;
    padding: 0px 10px;
    font-size: 16px;
    outline: none;
}

.searchbtn {
    display: none
}

textarea {
    overflow: auto
}


embed,
iframe,
object {
    width: 100%
}

#searchable_text_btn:hover {
    background: #000
}

#searchable_text_btn {
    padding: 0 10px;
    background: #b50000;
    border: 0;
    border-radius: 6px;
    color: #fff;
    cursor: pointer
}

.searchable_text_btn:after {
    color: #fff;
    content: '•••'
}

.UsableBtn {
	display: grid;
	grid-template-columns: 49% 49%;
	align-items: center;
	gap: 2%;
	border-top: 3px solid #f7f7f7;
	border-bottom: 3px solid #f7f7f7;
}

.UsableBtn button {
    padding: 10px;
    font-size: 90%;
    font-weight: 700;
    border-radius: 6px;
    border: 0;
    color: #fff;
    cursor: pointer;
	margin: 6px 0
}

.footer-inner ul li {
    list-style: none;
    border-left: 2px solid #fff;
    display: contents;
    margin: 0;
    padding: 0
}

.audio-player  .RTDLbutton {
    background: #b50000; color: white;
	    padding: 8px;
    font-size: 90%;
    font-weight: 700;
    border-radius: 6px;
    border: 0;
    color: #fff;
    cursor: pointer;
}

.UsableBtn .Sharebtn {
    background: #0a013d;
}
.UsableBtn .copylinkbtn {
    background: #000;
}

.UsableBtn .copylinkbtn.copied {
    background: purple
}

.audio-player .RTDLbutton:hover,
.UsableBtn .Sharebtn:hover,
.UsableBtn .copylinkbtn:hover{
    opacity: .8
}

.audio-player {
    padding: 6px 0;
    border-radius: 0px;
		display: grid;
	grid-template-columns: 49% 49%;
	align-items: center;
	gap: 2%;
	border-top: 3px solid #f7f7f7;
	border-bottom: 3px solid #f7f7f7;
	margin: 1.8em 0;
}

blockquote,
html {
    background: #f7f7f7
}

hr,
input[type=range],
input[type=range]:hover {
    background-color: #ccc
}

.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 6px 6px 0px;
    border-radius: 6px;
	position: relative;
	background: #eee;
	max-height: 22px
}

.play-pause {
    display: inline-block;
    border: none;
    margin-right: %;
	min-width: 30px;
	line-height: 1
}

.play-pause i {
    pointer-events: none
}

.loading {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    padding: 20px
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    outline: 0;
    cursor: pointer;
    margin: 0;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0;
    height: 0;
    background: #b50000;
    cursor: pointer
}

input[type=range]::-moz-range-thumb {
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #000;
    cursor: pointer
}

input[type=range]::-webkit-slider-thumb:hover {
    background: #000;
    width: 0;
    height: 0
}

input[type=range]::-moz-range-thumb:hover {
    background: #000;
    width: 0;
    height: 0
}

.original-credit {
    font-weight: 700;
    color: #fff;
    background: #016194;
    padding: 10px;
    border-bottom: 3px dashed;
    border-radius: 6px
}

.original-credit::after {
    content: ' ⇩'
}



@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

body {
display: grid;
grid-template-columns: minmax(280px, 25%) 1fr;
justify-content: center;
margin: 0 auto;
line-height: 1.6;
text-rendering: optimizeSpeed;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
max-width: 1080px;
}
body .site-footer {
	grid-column: 1/-1; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}
.site-content {
	width: -webkit-fill-available;
    padding: 16px 10px 30px 10px;
    margin: 0px auto;
    background-color: #fff;
    gap: 1%;
}

.post-outer {
    display: grid;
    background-color: #fff;
    gap: 0em 1%;
	grid-template-columns: auto;
}

.site-main {
  background: #fff;
	width: unset;
}
.pagination {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    height: 40px;
    overflow: hidden;
    align-items: center;
}
.nav-previous a, .nav-next a {
    padding: 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}
.nav-previous a:hover, .nav-next a:hover {
    background: #005177;
	color:white
}

pre::-webkit-scrollbar {
    width: 10px
}

pre::-webkit-scrollbar-thumb {
    background: #888
}

.entry-content td {
    border: 2px dashed;
    border-radius: 6px;
    padding: 6px
}

a:active,
a:focus,
a:hover,
html {
    outline: 0
}

body,
input {
    color: #404040;
    font-family: apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    word-break: break
}

td {
    font-size: 15px;
    padding: 5px;
    border: 1px solid #d9d9d9
}

blockquote {
    margin: 2.2em 0;
    padding: 2px 10px;
    border-left: 10px solid #e1e1e1;
    border-right: 10px solid #e1e1e1;
    border-radius: 10px 0;
    font-size: 90%
}

hr {
    box-sizing: content-box;
    border: 0;
    height: 1px;
    overflow: visible;
    clear: both
}

a:active,
a:focus,
a:hover {
    color: #191970
}
pre {
	font-size: 15px;
    background: #eee;
    padding: 4px 10px;
    max-height: 250px;
    overflow: auto;
    max-width: 100%;
    display: block;
    border: none;
    border-radius: 0;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    box-shadow: inset 0 0 8px #030303;
}
.site-header {
    background: #fff;
	padding: 10px 0;
	position: relative;
}
.header-inner {
  background: #fff;
	border-right: 2px solid #eee;
	height: fit-content;
	padding: 0px 10px 26px 10px;   
  position: sticky;
  top: 10px;
}


.post-outer article {
	display: flex;
border: 3px solid #eee;
	margin-bottom: 1.8em
}
.post-outer .post-content {
	display: block;
	margin: 0 10px
}
.post-outer .post-thumbnail{
	background: #eee;
	display: flex;
    align-items: center;
	padding: 10px 10px 10px 7px
}

.post-outer .post-thumbnail img{
	width: 150px;
	border-radius: 6px
}

.post-outer .entry-header {
display: block;
   align-items: center;
    margin: 12px 0px;
	border-bottom: 2px solid gray;
}
.post-outer .entry-summary {
	display: -webkit-box;
}

.post-inner .entry-header {
    margin-bottom: 1.4em
}


.single .post-thumbnail {
	height: 140px;
	width: 140px;
	border: 2px solid #eee;
}
.single .post-thumbnail img{
	height: 140px;
	width: 140px;
	overflow: hidden;
}

.post-inner .entry-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.post-inner .entry-header .post-thumbnail {
    grid-row: 1;
    grid-column: 1;
    max-width: 140px;
	margin-top: 6px
}

/* Title ko Right me rakha */
.post-inner .entry-header .entry-title {
    grid-row: 1;
    grid-column: 2;
    margin: 0;
}
.post-inner .entry-header .entry-meta {
    grid-row: 2;
    grid-column: 1 / span 2;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.post-outer .entry-title {
    overflow: hidden;
	margin: 0;
	padding-bottom: 10px
}

.post-outer .entry-title a {
    display: block;
    color: #000;
		font-size: 20px;
	font-weight: 600;
}
.post-outer .entry-title a:hover {
    display: block;
    color: #b50000
}

.post-outer .entry-footer {
    background: #eee;
    margin: 6px;
    padding: 4px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 2%;
    font-size: 90%
}
.page .post-inner h1 {
	margin:0
}

.footer-inner,
.site-branding {
    align-items: center;
}

.post-outer .cat-links a,
.post-outer .tags-links a {
    background: #fff;
    padding: 0 6px;
    color: #000;
    font-weight: 500;
    display: -webkit-box;
    text-overflow: ellipsis
}

.post-outer .cat-links a::before {
    content: ' ⟡ '
}

.post-outer .tags-links a::before {
    content: ' 𝄞 '
}



.site-footer {
    display: grid;
    grid-template-columns: auto;
	padding: 0 10px;
	background-color: white
}

.footer-inner {
    display: grid;
    grid-template-columns: 50% 50%;
	padding: 2.2em 0px;
    width: 100%;
    margin: auto;
	border-top: 3px solid #eee;
}

.footerdesign-left,
.footerdesign-right {
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.author,
.posted-on {
    background: #f7f7f7;
    padding: 0 6px
}

.footerdesign-left a {
    color: #404040;
    text-decoration: none;
	padding: 4px 10px;
    text-decoration: none;
    border: 1px solid;
    border-radius: 6px;
}

.author,
.footerdesign-right {
    text-align: right
}
.author {
	margin-left: auto;
	display:none
}
.author::before {
    content: ' ✎ '
}

.footerdesign-right a {
    color: #404040;
    text-decoration: none;
	padding: 4px 10px;
    text-decoration: none;
    border: 1px solid;
    border-radius: 6px;
	display: inline-block;
	margin: 2px;
	transition: background-color 0.3s ease;
}

.related-posts {
	background: white;
	border-top: 2px solid #eee;
	margin-top: 2.2em;
	margin-bottom: .6em
}

.related-posts h2 {
    font-size: 22px;
    padding: 4px 0px 8px;
    border-bottom: 2px solid #000;
}

.related-posts h2::after {
    content: ' ⇩ '
}

.footerdesign-right li {
    padding-left: 2%;
    padding-right: 2%;
    border-left: 3px solid #fff
}

.footerdesign-right li:last-child {
    padding-right: 0
}

.footerdesign-right a:hover {
    border: 1px solid #b50000;
	background-color: #b50000;
	color: white
}

.searchbtn .tk-search-icon {
    display: flex;
    transform: rotate(270deg);
    font-size: 28px;
    cursor: pointer;
	line-height:0;
}

.searchbtn .tk-search-icon::before {
    content: '⌕';
}

.tk-loading-icon {
    display: inline-block;
    font-size: 22px;
    animation: .5s ease-in-out infinite flip
}

.tk-loading-icon::before {
    content: '⊶'
}

.entry-meta {
    font-size: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 6px
}

.posted-on {
    text-align: left;
	display:none
}

.posted-on::before {
    content: ' ● '
}

.post-outer p {
    margin: 0em 0px 16px 0;
}


.site-branding {
    grid-template-columns: auto;
    margin: 0 auto;
	padding: .4em 0 1.6em 0;
}
 
.related-posts img {
    width: 35px;
    height: auto;
    border-radius: 50%;
    border: 4px solid #eee;
    overflow: hidden;
    display: block;
    object-fit: cover;
}
.related-posts ul {
    grid-template-columns: 49% 49%;
    padding: 0;
    gap: 10px 2%;
    display: grid;
	margin-bottom: 0
}

.related-posts li {
    margin-top: %;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    
}

.related-posts li a {
    color: #404040;
    text-decoration: none;
    grid-template-columns: 40px auto;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    margin: 2%;
    display: grid;
	grid-template-columns: auto;
    align-items: center;
    gap: 0%;
    width: 96%
}

.related-posts li a:hover {
    text-decoration: none;
    color: #b50000
}

.related-posts .related-title {
    text-overflow: ellipsis;
    overflow: hidden;
	margin-right: 6px
}

.thekroyaard_ads_in_post {
    margin-top: 2.2em;
    margin-bottom: .4em;
    min-height: 250px;
    background: #f7f7f7
}

.site-logo {
    margin: 0 10px 20px;
    padding-top: 6px;
	max-width: 250px;
}
.site-logo img{
height: auto;
	width: 100%;
}
.header-search-box {
	margin: 1em 0;
	
}
 .header_rightside_ads {
        display: block;
        text-align: center;
        min-height: 240px;
        background-color: #f0f0f0;
        position: relative;
        overflow: hidden;
	 margin: 0 auto;
    }


@keyframes flip {
    from {
        transform: rotateY(0)
    }
    to {
        transform: rotateY(360deg)
    }
}

@media (max-width:750px) {
	body {
		 grid-template-columns: 100%;
	}
	.header-search-box {
    display: grid;
    grid-template-columns: auto auto;
    position: absolute;
    right: 16px;
    align-items: center
}
	.site-header {
		z-index: 9999;
		padding-bottom: 0
	}
	.header-inner {
    border-right: 0px solid #eee;
		padding-bottom: 0
}
	.searchbtn {
		display: block;
    font-size: 24px;
    background: #fff;
    outline: 0;
    border: none;
}
.search-box form {
    border-bottom: 2px solid
}
.header-search-box.search-open {
    background-color: #f7f7f7;
    height: -webkit-fill-available;
    margin: 10px 0
}
.search-box {
    display: none
}
.search-box.show-search-button {display: block;}
	.post-outer .post-thumbnail img{
	width: 150px;
	border-radius: 6px
}
	.primary-menu {
    font-weight: 700;
    margin: 0;
    padding: 0;
		background: black
}

.primary-menu a {
    display: block;
    text-decoration: none;
    color: #fff;
	border:0;
	    font-size: 95%;
}
	.primary-menu ul {
	border:0;
	border-radius:0;
		width: -webkit-fill-available;
}
	
	.primary-menu>li{
    display: block;
}
.primary-menu li:hover > a {
		border-radius: 0 6px 0 0
	}
	.primary-menu ul li:hover > a {
		border-radius: 0;
		width: -webkit-fill-available;
	}
	
	.site-branding {
		 display: grid;
		padding: 6px 0px 20px;
		 grid-template-columns: 10% auto 10%;
    margin: 0 auto;
		justify-content: space-between;
		justify-items: center;
}
    
    .site-logo {
        margin: 0 10px
    }
   .site-content {
	  display: grid;
    grid-template-columns: 100%;
		 gap: 0;
		 width: -webkit-fill-available;
}

	.site-footer {
padding: 0
}
	.related-posts {
	background: white;

}
    .related-posts ul {
        grid-template-columns: 49% 49%;
    }
    .post-outer {
        gap: 0em 2%
    }
    .post-outer .entry-title,
    .post-outer .entry-title a {
        font-size: 100%;
        height: auto;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis
    }
 .thekroyaard_ads_in_post {
        margin-left: 0;
        margin-right: 0
    }
    .therkoyaard_sidebar_ads {
        min-height: 100px;
        margin-top: 1em;
        margin-bottom: .4em
    }
    .widget-area {
        margin-top: 0;
        margin-bottom: .6em
    }
	
	.hamburger-menu {
		display: block;
text-align: left;
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}
	.hamburger-menu::before {
		content:'☰'
	}
	
	.main-menu-background {
    position: fixed;
		margin-top: 0;
    top: 0;
    left: -110%;
    height: 100%;
		overflow: auto;
    width: 250px;
    background-color: #000;
    background-image: linear-gradient(black, #cc1202);
    transition: left 0.3s ease;
    z-index: 1000;
}

/* When menu is open */
.main-menu-background.show {
    left: 0;
}
	.header_menu_seacrhBox{
		margin-top: 10px;
		border-left: 0;
		padding: 0;
		background-color: transparent;
	}


	.main-menu-background::-webkit-scrollbar {
        width: 4px
    }
    .main-menu-background::-webkit-scrollbar-thumb {
        background: #b50000
    }
    .main-menu-background::-webkit-scrollbar-thumb:hover {
        background: #b50000
    }
	.close-menu {
		display: block;
    position: absolute;
    top: 24px;
    right: 6px;
    background: #f7f7f7;
    border: none;
    color: #000;
    cursor: pointer;
    z-index: 1001;
    padding: 0 6px;
}
	.close-menu::before{
		content:'⇐';
		font-size: 18px
	}

.close-menu:hover {
	opacity: .8
}
	.lyricsdesign {
    max-height: 100%;
}
}

@media (max-width:480px) {
	.post-outer .entry-meta-right {
		display: block;
		margin-bottom: 4px
	}
	.verified-inline {
		margin: 0
	}
.post-outer .entry-summary {
	display: none;
}
	.post-outer .post-thumbnail{
	background: #eee;
	display: flex;
    align-items: center;
	padding: 10px 4px 10px 1px
}
.post-outer .post-thumbnail img{
	width: 80px;
	border-radius: 6px
}
	.post-outer .entry-header {
   align-items: center;
    margin: 0px 0px;
	border-bottom: 0px solid gray;
}
	.post-outer .entry-title {
    overflow: hidden;
	margin: 0;
	padding-bottom: 2px;
		border-bottom: 2px solid #eee;
		
}
	 .post-outer .entry-title a {
        font-size: 100%;
        height: auto;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
		 
    }
	.post-outer .entry-meta {
		display:block;
	}
	.post-outer article {
		background: #fff;
  box-shadow: inset 0 -6px 20px rgba(0, 0, 0, 0.2);
	}

	.site-branding {
		 grid-template-columns: 10% 60% 10%;
    margin: 0 auto;
		justify-content: space-between;
}
    .site-logo {
        margin: 6px
    }
    .post-outer,
    .related-posts ul,
    .tags-related-item ul {
        grid-template-columns: 100%
    }
	
.post-inner .entry-header {
        display: block;
    }
.post-inner .entry-header .post-thumbnail {
        width: 100%;
	margin-top: 1.8em;
        margin-bottom: 15px;
        margin-left: auto;
	margin-right: auto
    }
.post-inner .entry-header .entry-title {
        margin-bottom: 15px;
    }
	
    .entry-content td {
        padding: 4px
    }
	.review-section {
	display: block;
	align-items: center;
	text-align: ce
}
	
    .tksearchTerm {
        width: 200px
    }
	.site-footer {
    display: grid;
    grid-template-columns: auto;
	padding: 0 6px;
	background-color: white;
		background-image: linear-gradient(180deg, white, white, white, white, white, white, white, white, white, white, white, #b50000);
}
    .footer-inner,
    .footer-inner li a {
        display: grid;
        grid-template-columns: 100%;
        width: 98%;
        text-align: center
    }
    .footer-inner li a {
        margin: 4px auto 10px;
        padding: 1%
    }
    .footerdesign-right ul {
        margin: 0;
        padding: 0
    }
}