/*-----------------------------------------------------------------------------------*/
/*	Header 
/*-----------------------------------------------------------------------------------*/

/*Divider*/
.big-hr-divider {
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

/*Rainbow */
.rainbow {
  /* background-image: url(../assets/images/miscellaneous/ribon.png); */
  background-image: url(../../../../assets/images/miscellaneous/ribon.png);
  background-repeat: repeat-x;
  height: 10px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/*Header BG */
.header-bg,
.pm-top-nav,
.dropdown-menu,
.pm-search-form input {
  background-color: #6e00ff;
  background: linear-gradient(90deg, #0b60ea 0%, #8815f4 60%);
}

/*Menu*/
.pm-top-nav ul.nav li {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top-width: 1px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 5px 2px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}

.pm-top-nav {
  border-top-color: rgba(255, 255, 255, 0.2) !important;
  border-top-width: 1px;
  border-top-style: solid;
  padding-top: 0;
}

.pm-top-nav .dropdown-menu {
  border-color: #f2f2f200;
}

.pm-top-nav ul.nav li a,
header form#search.pm-search-form button i.fa,
#pm-search {
  color: #ffffff;
}

.pm-top-nav ul.nav li:hover {
  color: #ffffff;
  background: #f97316;
}

header form#search.pm-search-form .input-group,
header form#search.pm-search-form button {
  border: 1px solid #639cf8;
  background-color: #3b82f6;
}

#pm-search::placeholder {
  color: #fff;
}

/* Search */
.input-group:hover .fa-search,
.input-group:focus-within .fa-search {
  color: #ffffff !important;
  transform: scale(1.1);
  /* Optional for subtle grow */
  text-shadow: 0 0 5px rgba(59, 130, 246, 0.4);
  /* Optional glow */
  transition: all 0.2s ease;
}

/*-----------------------------------------------------------------------------------*/
/*	Video Thumbs
/*-----------------------------------------------------------------------------------*/

.pm-video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px !important;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: #000;
  /* Dark background behind image for better contrast */
}

/* 2. The Image: The "Slow Zoom" effect on hover */
.pm-video-thumb img {
  transition: transform 0.6s ease !important;
  display: block;
  width: 100%;
}

.pm-video-thumb:hover img {
  transform: scale(1.1);
  /* Zooms in slightly */
  opacity: 0.8;
  /* Dims slightly to make play icon pop */
}

/* 3. The Hover State: Lifting the thumbnail up */
.pm-video-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* 4. Adding a Play Icon Overlay (Optional) */
/* .pm-video-thumb::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
} */

.pm-video-thumb:hover::after {
  opacity: 1;
}

/*-----------------------------------------------------------------------------------*/
/*	Article 
/*-----------------------------------------------------------------------------------*/
/* Target the sidebar article images specifically */
.pm-sidebar-articles .media-object {
  border-radius: 6px !important;
  /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
  /* Deep, visible shadow */
  transition: all 0.3s ease !important;
  margin-bottom: 5px;
  /* Adds space so the shadow isn't cut off */
  display: inline-block !important;
}

/* Hover effect for a "Premium" feel */
.pm-sidebar-articles li.media:hover .media-object {
  transform: scale(1.05);
  /* Slight zoom on hover */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3) !important;
}

/*-----------------------------------------------------------------------------------*/
/*	Related Video Lists - Video Watch Page + Layout 
/*-----------------------------------------------------------------------------------*/

#pm-related ul.pm-ul-sidelist-videos li {
  margin-bottom: 0;
}

#content {
  /* margin: 0; */
  /* padding: 0; */
  /* position: relative; */
  /* background: #7acf80; */
  border-radius: 8px;
}

ul.pm-ul-sidelist-videos li {
  background: #fbfbfb;
  border-radius: 8px;
  height: auto;
  padding: 8px;
  /* transition: all 0.3s ease; */
  /* border: 1px solid #eee; */

  border-left: none !important;
  border-right: none !important;

  transition: background 0.2s ease;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

/* Enhancing the hover state to make it interactive */
ul.pm-ul-sidelist-videos li:hover {
  background: #f0f0f0 !important;
}

/* Cleaning up the very top of the list */
ul.pm-ul-sidelist-videos li:first-child {
  border-top: none;
}

#video-wrapper {
  /* width: 100%; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.pm-video-description .dl-horizontal {
  /* line-height: 1.9em; */
  /* font-weight: bold; */
  margin: 10px 0;
  /* padding: 0; */
}

/*-----------------------------------------------------------------------------------*/
/*	Tag Cloud
/*-----------------------------------------------------------------------------------*/

/* .tagcloud a {  */
.dl-horizontal dd a {
  display: inline-block;
  /*optional font size*/
  font-size: 11px !important;
  color: #111;
  line-height: 15px;
  text-shadow: 0 1px 0 #fff;
  word-wrap: break-word;
  background-color: #dddddd;
  margin-top: 2px;
  margin-right: 4px;
  margin-bottom: 2px;
  margin-left: 0;
  padding-top: 2px;
  padding-right: 10px;
  padding-bottom: 2px;
  padding-left: 10px;
  border-right-width: 3px;
  border-right-style: solid;
  border-right-color: #666666;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.tagcloud-vid a {
  display: inline-block;
  font-size: 11px !important;
  color: #111;
  padding: 2px 10px;
  margin: 0 4px 2px 0;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  line-height: 15px;
  text-shadow: 0 1px 0 #fff;
  word-wrap: break-word;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #818181;
}

/* .tagcloud a:hover, .tagcloud-vid a:hover { */
.dl-horizontal dd a:hover,
.tagcloud-vid a:hover {
  background: #333;
  color: #fff;
  text-shadow: 0 1px 0 #000;
  text-decoration: none;
}

/*-----------------------------------------------------------------------------------*/
/*	Description, Widgets and Carousel Divider with Shadow
/*-----------------------------------------------------------------------------------*/

.widget,
.pm-featured-list-row {
  border-radius: 8px;
}

/* .readmore-js-toggle, .readmore-js-section, .description.pm-video-description {
	background-image: url(../images/section-shadow.png); */

.pm-video-description,
ul.pm-ul-carousel-videos,
.widget {
  background-image: url("https://www.ephremtube.com/play/templates/apollo/img/section-shadow.png") !important;
  background-repeat: no-repeat!important;
  background-position: center bottom!important;
  padding-bottom: 20px;
}

a.readmore-js-toggle {
  text-align: center;
  display: block;
  /* Essential for width/margin auto to work */
  background: #fafafa;
  width: 120px;
  padding: 10px 2px;
  margin: 0 auto;

  /* Border Settings */
  border-top: 1px solid transparent;
  border-left: 1px solid #ddd;
  /* 3px Left */
  border-right: 1px solid #ddd;
  /* 3px Right */
  border-bottom: 1px solid #ddd;
  /* 3px Bottom */

  /* Optional: Smooth the corners slightly if you like */
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;

  text-decoration: none;
}



/*-----------------------------------------------------------------------------------*/
/*	Single Video Statistics - Video Watch page
/*-----------------------------------------------------------------------------------*/

.top-content-wrapper {
  background: #16191d;
  border-radius: 8px;
}

.top-content-wrapper .widget-title {
  color: #78869b;
  padding-top: 15px;
  margin-bottom: 15px;
  /* text-align: left; */
  border-bottom: #79879b;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-bottom: 15px;
}

.top-content-wrapper span.suffix {
  color: #78869b;
}

.pm-single-video-statistics {
  display: flex;
}

.pm-single-video-statistics .views,
.pm-single-video-statistics .comments,
.pm-single-video-statistics .likes {
  width: 90px;
  border-left: 1px solid #78869b;
  border-right: 1px solid #78869b;
  display: inline-block;
  float: left;
  text-align: center;
  line-height: 1.25;
}

span.views,
span.comments {
  padding-left: 5px;
}

.pm-single-video-statistics i {
  font-style: normal;
  font-size: 22px;
  display: block;
  color: #78869b;
  font-weight: 900;
  font-family: "Arimo";
}

.pm-single-video-statistics .suffix {
  font-style: normal;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.pm-single-video-statistics .likes {
  border-left: 0;
}

.pm-single-video-statistics .comments {
  width: 98px;
}

.pm-single-video-statistics .views {
  border-right: 0;
}

/*-----------------------------------------------------------------------------------*/
/*	Footer
/*-----------------------------------------------------------------------------------*/

.footer-logo__wrapper {
  background-color: #16191d;
}

.footer-logo__inner {
  background-color: #0b0c0f;
  border-top-color: #a855f7;
  border-top-style: solid;
  border-top-width: 5px;
}

@media (min-width: 576px) {
  .footer-logo__inner {
    -webkit-clip-path: polygon(20% 0%, 80% 0, 90% 100%, 10% 100%);
    clip-path: polygon(20% 0%, 80% 0, 90% 100%, 10% 100%);
  }
}

.container-footer {
  background-color: #0b0c0f;
  border: none;
}

p.footer-text__logo {
  font-size: calc(0.9rem + 2.5vw);
  font-family: "Orbitron", Verdana, Geneva, sans-serif;
  font-weight: 600;
  text-shadow: 0 1px 0 #fff;
}

.row-footer-horizontal {
  border-top-color: #78869b !important;
}

p.footer-text__logo,
.footer-info__micro,
.font-italic,
p.h6,
.container-footer footer a,
.row-footer-horizontal p,
.container-footer footer .row-footer-vertical .list-social-sites i {
  color: #78869b !important;
}

.container-footer footer a,
.navbar-pmuser .dropdown-menu li a,
.pm-top-nav ul.nav li .mico,
.navbar-pmuser #pm-social-notifications-show i.mico.mico-notifications_active,
.pm-top-nav ul.nav li a:hover {
  color: #d3d7de;
}


/*-----------------------------------------------------------------------------------*/
/*	Miscellaneous
/*-----------------------------------------------------------------------------------*/

/* .tagcloud { */

/* .dl-horizontal dd {
	overflow: hidden;
	padding: 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px dotted #DDD;
	background-color: #F9F9F9;
 } */

/* .show-more-description { */
/* .pm-video-description {
	background-image: none!important;
	background-image: none!important;
	background-image: none!important;
	background-image: none!important;
	background-image: none!important;
} */

/* a.show-now { */
/* .readmore-js-expanded {
	position: relative;
	background: #F7F7F7;
	background-image: -ms-linear-gradient(top, #FFF, #F0F0F0);
	background-image: -moz-linear-gradient(top, #FFF, #F0F0F0);
	background-image: -o-linear-gradient(top, #FFF, #F0F0F0);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#F0F0F0));
	background-image: -webkit-linear-gradient(top, #FFF, #F0F0F0);
	background-image: linear-gradient(top, #FFF, #F0F0F0);
	text-transform: uppercase;
	font-weight: bold;
	font-size: 11px;
	-webkit-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
	min-width: 70px;
	color: #555;
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	border-top-width: 3px!important;
	border-right-width: 1px!important;
	border-bottom-width: 1px!important;
	border-left-width: 1px!important;
	border-top-style: solid!important;
	border-right-style: solid!important;
	border-bottom-style: solid!important;
	border-left-style: solid!important;
	border-top-color: #646464!important;
	border-right-color: #ddd!important;
	border-bottom-color: #ddd!important;
	border-left-color: #ddd!important;
	width: 100px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
} */
/* a.show-now:hover { */
/* .readmore-js-expanded:hover { 
	border-top-width: 3px!important;
	border-top-style: solid!important;
	border-top-color: #00b8f9!important;
} */