/* ----------------Download Button Styles---------------------------------*/

.mt-download-btn,
.mt-video-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* Download Button Styling */
.mt-download-btn {
    color:var(--theme-palette-color-8);
    background:var(--theme-palette-color-1);
    border: none;
}

.mt-download-btn span {
    position: relative;
    z-index: 3;
}


.mt-download-btn:hover {
    color:var(--theme-palette-color-8);
    background:var(--theme-palette-color-1);
}

/* Progress Bar Animation */
.mt-download-btn.progress::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color:var(--theme-palette-color-2);
    animation: progress 6s ease-in-out forwards;
    z-index: 1;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}


/* -----------------custom-widget-css--------------------------------- */

.file-info-box {
    position: relative;
    border: 1px solid var(--theme-palette-color-5);
    border-radius: 12px;
    padding: 25px 26px 25px;
    background: var(--theme-palette-color-8);
    margin-top: 30px;
}

.file-info-box::before {
    content: "File Info";
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--theme-palette-color-8);
    padding: 0 10px;
    font-size: 12px;
    color: var(--theme-palette-color-3);
    font-weight: 500;
	  border-radius: 15px;
}

.file-info-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px !important;
}

.file-info-box li {
    display: flex;
	  align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    color: var(--theme-palette-color-3);
    font-size: 15px;
	  justify-content: space-between;
}

.file-info-box li strong {
    font-weight: 600;
    color: var(--theme-palette-color-3);
    flex-shrink: 0;
	  white-space: nowrap;
	  
}

.designed-by {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
}
.designed-by span{
    font-weight: 600;
}

/* ------------------custom sidebar tags--------------------------- */

.post-tags-sidebar {
    margin-top: 20px;
}
.post-tags-sidebar h3 {
    font-size: 1rem;
    margin-bottom: 20px;
	  line-height:1.5em;
	  color:var(--theme-palette-color-3);
}
.post-tags-sidebar ul {
    list-style: none;
    padding-left: 0;
}
.post-tags-sidebar ul li {
    display: inline-block;
    margin: 0 10px 10px 0;
}
.post-tags-sidebar ul li a {
   font-size:0.75rem;
    font-weight: 500;
	  line-height:1.5em;
    background:var(--theme-palette-color-7);
	padding: 5px 10px;
  border: 1px solid var(--theme-palette-color-5);
  border-radius: 6px;
}
.post-tags-sidebar ul li a:hover {
    background:var(--theme-palette-color-1);
    color:var(--theme-palette-color-8);
}

/* Ads Styling CSS */

.adsbygoogle {
  display: block;
  margin: 10px auto;
  text-align: center;
}

/* Hide both by default */
.ad-desktop, .ad-mobile {
  display: none;
  text-align: center; /* Center ads horizontally */
}

/* Show desktop ad only on larger screens */
@media (min-width: 769px) {
  .ad-desktop { display: block; }
}

/* Show mobile ad only on smaller screens */
@media (max-width: 768px) {
  .ad-mobile { display: block; }
}
