html {
  background-color: #FFF;
  position: relative;
  min-height: 100%;
}
body {
	background-color: #FFF;
  margin-bottom: 300px;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  .container {
    max-width: 1140px !important;
  }
}

* {
  font-family: "Montserrat", sans-serif;
}

.rtl * {
  font-family: "Tajawal", sans-serif;
}

.fa {
  font-family: "FontAwesome";
}

.far, .fas {
  font-family: "Font Awesome 5 Free";
}

.right {
  float: right;
}
.rtl .right {
  float: left;
}

.text-rtl {
  direction: rtl;
  text-align: right;
  unicode-bidi: plaintext;
}

.text-ltr {
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
}

.default-banner {
  height: 400px;
  background: url(../img/assets/images/header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

h1 {
  font-weight: 700!important;
  margin-bottom: 1.5rem!important;
}
h2 {
  padding-top:80px;
  margin-bottom:25px!important;
  font-weight: 600!important;
  color: #4a4a4a !important;
}

h6 {
  font-weight: 600!important;
  font-size: 1.125rem;
}

a {
  color: #444444;
}

a:hover {
  text-decoration: none;
  color: #f58529;
}

.btn-link {
  text-decoration: none !important;
}

.btn-link:hover {
  color: #f58529 !important;
  text-decoration: none;
}

.bttn-primary {
  color: #ffffff;
  background-color: transparent;
  padding: 8px 18px;
}

.bttn-primary:hover {
  color: #f58a2c;
}

.bttn-primary-with-border {
  color: #ffffff;
  background-color: transparent;
  padding: 8px 18px;
  border: 1px solid #fff;
  border-radius: .25rem;
}

.bttn-primary-with-border:hover {
  border-color: #f58a2c;
  color: #f58a2c;
  border: 1px solid #f58a2c;
}

.bttn-sec {
  color: #000;
  border: 1px solid #d6d6d6;
  background-color: transparent;
  padding: 5px 15px;
  height: 35px;
}

.bttn-ora {
  border: 1px solid #f16922;
  color: #f16922;
  background-color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
}
.bttn-ora:hover{
  color:#fff;
  background-color: #f16922;
  text-decoration:none;
}
.nav-active {
  color: #f58a2c !important;
  /*font-weight: 800;*/
}
.nav-active span {
  /*border-bottom: 2px solid #f58a2c;*/
}

ul {
  padding: 0;
  list-style: none;
}

.bttn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 1rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/**********************************************/
/* Footer Related */
/**********************************************/
.footer {
  background: #1a1a1a;
  color: white;
  padding: 20px 0 10px 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 300px;
}

.footer a:hover {
  text-decoration: none;
  color: #fff;
}

.footer .container ul li a:hover {
  color: #f16922;
}
                
.footer a {
  color: #fff;  
  font-size: 14px;
  line-height: 30px;
}

.footer .container #footer_intro {
  font-size: 12px;
  width: 345px; 
  margin-top: 10px;
}

.footer #footer_rights {
  /*margin-top: 10px;*/
  font-size: 14px;
}
 
.footer .container .footermenu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
                                    
.footer .container .lang a {
  margin-right: 10px;
  font-size: 14px;
}
                                    
.footer .container #social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;  
  margin-top: 10px;
}
                                                                
.footer .container #social .s-icon {
  /*background: #f58a2c;*/
  border-radius: 5px;
  height: 35px;
  width: 35px;
  margin-left: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: bottom;
  transition: .3s ease;
  color: white;
}
                                    
.footer .container #social .s-icon:hover {
 border-radius: 50%;
 transform: scale(1.1);
}
                                    
.footer .container #social #fb:hover {
  background: #3b5998;
}
                                    
.footer .container #social #ln:hover {
  background: #0e76a8;
}

.footer .container #social #ig:hover {
  background: linear-gradient(135deg, #515bd4, #8134af, #dd2a7b, #feda77, #f58529)
}
                                    
.footer .container #social #tw:hover {
  background: #3cf;
}

.footer #logo {
  height: 50px;
}
                                    
@media (max-width: 768px) {
  .newsletter,
  .creators,
  .home .contents,
  .subscribe {
    padding-left: 20px;
    padding-right: 20px;
  }

}
                                    
@media (max-width: 768px) {
  .footer .container #footer_intro {
    margin-bottom: 2rem;
  }
  .footer .container .footermenu {
    margin-bottom: 2rem;
  }
  .footer .container ul li {
    margin-bottom: 10px;
  }
  .footer .bottomrow .col-md-5 {
    margin-bottom: 0px;
  }
  .footer #logo {
    height: 35px;
  }
}

@media (max-width: 770px) {
  .footer .container #footer_intro {
    display: none;
  }
}
/**********************************************/
/* audioplayer Related */
/**********************************************/

.audio-player {
  display:none;
  position:fixed;
  width:100%;
  bottom:0px;
  left:0px;
  background-color:#f1f3f4;
  z-index:10;
  direction:ltr;
}

.loader {
  border: 2px solid white; /* Light grey */
  border-top: 2px solid #f6904a; /* Blue */
  border-radius: 50%;
  width: 23px;
  height: 23px;
	margin: auto auto;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
progress[value]::-webkit-progress-value {
	background-color: #F68E1E;
}
progress::-moz-progress-bar { background: #F68E1E; }
.amplitude-paused {
	background-size: contain;
	background-repeat:no-repeat;
}
.amplitude-paused #pause_icon {
	display:none;
}
.amplitude-playing {
	background-size: contain;
	background-repeat:no-repeat;
}
.amplitude-playing #play_icon {
	display:none;
}
.amplitude-not-muted #volume_mute_icon {
	display:none;
}
.amplitude-muted #volume_icon{
	display:none;
}
.amplitude-playback-speed-10 #speed_15 {
	display:none;
}
.amplitude-playback-speed-10 #speed_20 {
	display:none;
}
.amplitude-playback-speed-15 #speed_10 {
	display:none;
}
.amplitude-playback-speed-15 #speed_20 {
	display:none;
}
.amplitude-playback-speed-20 #speed_10 {
	display:none;
}
.amplitude-playback-speed-20 #speed_15 {
	display:none;
}
.progressbar_container {
	width: 75%;
	margin: auto 0;
}
.progressbar_container span {
	display: none;
}
.progressbar_wrapper {
	margin: auto auto;
}
/***Responsive*********************************/
.play_buttons_container {
	width: 8%;
	margin-left: 1%;
}

/*customised range*/ input[type="range"].range 
{ 
		margin-left:-35%;
     cursor: pointer;
     width: 100px !important;
     -webkit-appearance: none; 
     z-index: 200; 
     width:50px; 
     border: 1px solid #e6e6e6; 
     background-color: #e6e6e6; 
     background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#e6e6e6), to(#d2d2d2)); 
     background-image: -webkit-linear-gradient(right, #e6e6e6, #d2d2d2); 
     background-image: -moz-linear-gradient(right, #e6e6e6, #d2d2d2); 
     background-image: -ms-linear-gradient(right, #e6e6e6, #d2d2d2); 
     background-image: -o-linear-gradient(right, #e6e6e6, #d2d2d2); 
}

/*customised range when focusing on input */ input[type="range"].range:focus
{
 border: 0 !imporant; 
	outline: none !important; 
}

/*customised range slider icon*/ input[type="range"].range::-webkit-slider-thumb 
{
     -webkit-appearance: none; 
     width: 10px; 
     height: 10px; 
background-color: #555; 
     background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, #ff9933)); 
     background-image: -webkit-linear-gradient(right, #ff9933); 
     background-image: -moz-linear-gradient(right, #ff9933); 
     background-image: -ms-linear-gradient(right, #ff9933); 
     background-image: -o-linear-gradient(right, #ff9933); 
}

/*setting round corners to the range */ input[type="range"].round {
     -webkit-border-radius: 20px; 
     -moz-border-radius: 20px; 
     border-radius: 20px; 
}


/* set range from 0 - 1 vertically (lowest on top) */ .vertical-lowest-first
{
     -webkit-transform:rotate(90deg); 
     -moz-transform:rotate(90deg); 
     -o-transform:rotate(90deg); 
     -ms-transform:rotate(90deg); 
     transform:rotate(90deg); 
}

/* set range from 1 - 0 vertically (highest on top) */ .vertical-heighest-first
{
     -webkit-transform:rotate(270deg); 
     -moz-transform:rotate(270deg); 
     -o-transform:rotate(270deg); 
     -ms-transform:rotate(270deg); 
     transform:rotate(270deg); 
}

.audio-player .row {
  flex-wrap:nowrap!important;
}

@media (max-width: 770px) {
	.progressbar_wrapper {
		display: none;
	}

	.play_buttons_container {
		width: 22%;
	}
	.progressbar_wrapper {
		width: 25%;
		padding-left: 4%;
		font-size: 14px;
		margin: auto;
	}
	.progressbar_container {
		width: 4%;
		margin: auto 0;
	}
	.progressbar_container progress {
		display: none;
	}
	.progressbar_container span {
		display: block;
	}
	.episode_container {
		width: 40%;
		padding-left: 4%;
	}
	.episode_img_container {
		width:30%;
		max-width: 50px;
		padding-left:0px;
		padding-right: 2px;
	}
	.episode_text_container {
		width:65%;
		padding-right: 1px;
	}
  .volume_container .row {
    margin-top:10px!important;
    margin-left:10px!important;
  }
  .audio-player {
    padding-bottom: 1rem;
    padding-top: 0.5rem;
  }
}

.episode-title-ellipsis {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.episode_description_ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-align: justify;
  font-size: 14px;
}

.btn-outline-secondary:hover i {
    color: #fff;
}

/**/
.resp-sharing-button {
  border-radius: 5px;
  transition: 25ms ease-out;
  padding: 0.5em 0.75em;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif
}

.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: top
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle
}

.resp-sharing-button__icon {
  display: inline-block
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
  stroke: #fff;
  fill: none
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
  margin: 0.5em
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none
}

.resp-sharing-button--facebook {
  background-color: #3b5998
}
.resp-sharing-button--facebook:hover {
  background-color: #2d4373
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--twitter {
  background-color: #55acee
}

.resp-sharing-button--twitter:hover {
  background-color: #2795e9
}

.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}

.resp-sharing-button--email {
  background-color: #777
}

.resp-sharing-button--email:hover {
  background-color: #5e5e5e
}

.resp-sharing-button--email {
  background-color: #777777;
  border-color: #777777;
}

.resp-sharing-button--email:hover,
.resp-sharing-button--email:active {
  background-color: #5e5e5e;
  border-color: #5e5e5e;
}

.resp-sharing-button--whatsapp {
  background-color: #25D366
}
.resp-sharing-button--whatsapp:hover {
  background-color: #1da851
}

.resp-sharing-button--whatsapp {
  background-color: #25D366;
  border-color: #25D366
}
.resp-sharing-button--whatsapp:hover,
.resp-sharing-button--whatsapp:active {
  background-color: #1da851;
  border-color: #1da851
}

.home_channel {
  text-align: center;
  white-space: nowrap;
  width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home_channel_description {
  text-align: justify;
  width: 300px;
  line-height: 20px!important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
}

.navbar {
  padding-right: 0!important;
  padding-left: 0!important;
	z-index: 100;
}

.dropdown-container {
  background-color: transparent!important;
}

.hdr-act {
  animation: sticky-down 0.7s;
  color: #000;
  /*background-color:white;*/
}

.hdr-act .navbar-dark .navbar-nav .nav-link {
  color: #000;
}

.hdr-act .navbar-dark .navbar-nav .dropdown button {
  color: #000;
}

.hdr-act .navbar-dark .navbar-nav .show .nav-link {
  color: #000;
}

.hdr-act .navbar-dark .navbar-nav .nav-link:hover {
  color: #f58a2c;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #f58a2c!important;
}

.navbar-dark .navbar-nav .show .nav-link:hover {
  color: #f58a2c;
}

.hdr-act .navbar-dark .navbar-nav .show .nav-link:hover {
  color: #f58a2c;
}

.hdr-act .nav-item .fa {
  color: #000;
}

.hdr-act .bttn-primary {
  color: #000;
}

.hdr-act .bttn-primary:hover {
  color: #f58a2c;
}

header {
  font-weight: 500;
  padding: 0px 10px;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  margin-right: 10px;
}

.navbar-dark .navbar-nav .dropdown button {
  color: #fff;
  margin-right: 10px;
}

.mobile-loggedin-user-links {
  display: none;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
  }
}

.navbar-brand img {
  height: 35px;
}

.arb {
  margin-right: 20px;
}

.nav-item .fa {
  color: #fff;
  font-size: 16px;
  margin-right: 5px;
}

.login-icon {
  font-size:25px!important;
}

@media (max-width: 991px) {
  .navbar-collapse .right {
    float: left;
  }
  .navbar-dark .navbar-toggler-icon {
    background-image: url(../img/assets/images/hamblack.svg)!important;
  }
  .navbar-dark .navbar-nav .nav-link {
    color: #000;
  }
  .nav-item .fa {
    color: #000;
  }
  .navbar-nav .bttn {
    color: #000;
    background-color: transparent;
    border: 1px solid #000;
  }
  header {
    padding: 0;
  }
  .fixed-top {
    /*background-color: #fff;*/
  }
  .loggedin-user-dropdown {
    display: none;
  }
  .mobile-loggedin-user-links {
    display: block!important;
  }
}

button:focus {
  outline: none !important;
}
/* home */


.blogs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 75vh;
  background: url(../img/assets/images/bg.jpg) no-repeat;
  background-size: cover;
  color: #fff;
}


.carousel-caption {
  padding-bottom: 2rem;
}

.carousel-caption p {
  font-weight: 400;
  line-height:35px;
}

.carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    margin-left: 3px;
    border-radius: 50%;
    text-indent: -999px;
    background-color: #fff;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #f16922;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.blogpage h1 {
  padding-right: 20px;
}

.home .contents p {
  line-height: 30px;
}
/* home */
span a {
  color: #f27131;
  font-size: 14px;
}

span a:hover {
  color: #f27131;
}

/* shows */
/* subscribe */

.subscribe img {
  margin-right: 35px;
  max-width: 170px;
  max-height: 45px;
  width: auto;
  height: auto;
}

.subscribe ul {
  display: flex;
  justify-content: center;
}

.subscribe ul li {
  list-style: none;
  align-items: center;
  display: flex;
}

@media (max-width: 768px) {
  .subscribe ul {
    display: block;
    padding-top: 0px;
    flex-wrap: wrap;
  }
  .subscribe ul li {
    margin-bottom: 30px;
  }
}
/* subscribe */
/* blog */


.blog .card-body {
  line-height: 30px;
}

.blog span a {
  text-transform: uppercase;
  font-size: 12px;
}

.card-columns {
  margin-top: 65px;
  display: flex;
}

@media (max-width: 767px) {
  .card-columns {
    display: block;
  }
}
/* blog */
/* creator */

.creators {
  margin: 10px 0;
}

.creators h2,
.newsletter h2,
.newsletter p {
  margin-bottom: 35px;
}

.creators .cards {
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;
  border: none;
}

.creators img {
  border-radius: 50%;
  width: 50%;
  border: 4px solid #ece7e4;
  justify-self: center!important;
}

@media (max-width: 767px) {
  .creators .card img {
    width: 50%;
  }
}
/* creator */

.testimonial {
  margin: 0 0 50px 0;
}

.testimonial .cardcontainer {
  margin-top: 35px;
  display: flex;
}

@media (max-width: 991px) {
  .testimonial .cardcontainer {
    display: block;
  }
  .testimonial .card {
    margin-bottom: 25px;
  }
}

.testimonial .card {
  padding: 25px;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: 3px 3px 20px 15px #dfdfdf5e;
  margin-left: 20px;
  margin-right: 20px;
}

.testimonial .card .profile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.testimonial .card .profile img {
  border-radius: 50%;
  border: 4px solid #f37b38;
}

.testimonial .card .names {
  margin-left: 15px;
}

.newsletter .form-control {
  padding: 1.4rem .75rem;
}

.newsletter {
  padding-bottom: 95px;
}

@media (max-width: 768px) {
  .newsletter .btn-outline-secondary {
    padding: 0 10px;
  }
}


.wrapper .black img{
  width:70%;
}
.navbar .black,.wrapper .black{
  display:none;
}
@media (max-width: 991px) {
  .navbar .black{
    display:block;
  }
  .navbar .yt{
    display:none;
  }
}
@media (max-width: 767px) {
  .wrapper .black{
    display: block;
  }
  .welcome {
    display: none;
  }
  .cred .logo {
    display: block!important;
  }
}

                                    @media (max-width: 768px) {
                                        .newsletter,
                                        .creators,
                                        .home .contents,
                                        .subscribe {
                                            padding-left: 20px;
                                            padding-right: 20px;
                                        }
                                    }
                                    
.aboutus .row img {
  width: 100%;
}

.flip-card {
  background-color: transparent;
  width: 360px;
  height: 360px;
  perspective: 1000px;
  margin-bottom: 30px;
}

.flip-card img {
  border-radius: 50%;
  width: 65%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
/*transform: rotateY(180deg);*/
}

.flip-card-front p {
  font-size: 12px;
}

.flip-card-back p {
  font-size: 13px;
  line-height: 20px!important;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #ffffff;
  color: black;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #eeeeee;
  border-radius: 2px;
}

.flip-card-back {
  /*background-color: darkorange;*/
  /*color: white;*/
  transform: rotateY(180deg);
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.flip-card-back .caps {
  text-transform: uppercase;
}

.events {
  padding-top: 50px;
  padding-bottom: 50px;
}

.events .col-md {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categories {
  box-shadow: inset 0px -1px 6px 0px #acacac44;
}

.categories ul li {
  padding: 15px 10px;
}

.categories ul li a {
  color: #444444;
}

.categories ul li a:hover {
  color: #f69132;
}

.showlist {
  background: url(../img/assets/images/showbg.jpg) no-repeat;
  background-size: 100%;
  background-position: 20% 0%;

}

.showlist img {
  height: 300px;
  width: 300px;
  border-radius: 4px;
}

.showlist ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .c-arabic h2,.c-english h2{
    text-align:center;

  }
}

@media (max-width: 975px) {
  .categories a {
    font-size: 14px;
  }
}
@media (max-width: 750px) {
  .categories a {
    font-size: 12px;
  }
}

.flexx {
  display: flex;
}

@media (max-width: 768px) {
  .flexx {
    display: block;
  }
  .flexx .bttn {
    margin-top: 20px;
  }
}

.title-mobile {
  font-size: 12px;
}

.title-mobile .er {
  font-size: 14px;
  font-weight: 500;
}

.streaming .col-md ul li img {
  height: 25px;
  margin-right: 10px;
}

.streaming .col-md ul {
  display: flex;
}

.podcastv2 {
  background: url(../img/assets/images/aboutbg.jpg) no-repeat;
  background-position: top;
}

@media (max-width: 500px) {
  .podcastv2 .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.podv2header {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.podv2header .overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.podv2header #content {
  z-index: 999;
}

.podv2header h1 {
	color: #444444;
}

.channel-page-thumb {
  border:0px;
  border-radius:4px;
  width:320px;
  height:320px;
}

.podcast-content {
  padding-top: 80px;
}

@media (max-width: 1060px),
@media (min-width: 701px) {
  .channel-page-thumb {
    width:220px!important;
    height:220px!important;
  }
  .flexx {
  display: block!important;
  }
}

@media (max-width: 780px) {
  .channel-page-thumb {
    border:0px;
    border-radius:4px;
    width:220px!important;
    max-width:220px!important;
    height:220px!important;
  }

  .title-padding {
    margin-left: unset
  }

  .channel-titles {
    font-size: 20px;
    padding-top: 5px
  }
  .comment_section {
    max-height: 120px !important;
  }
}

.labheader {
  position: relative;
  height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/assets/images/labbg.jpg) no-repeat;
  background-size: cover;
  color: #fff;
}

.labheader .overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.labheader #content {
  z-index: 999;
}

.adv .col-md {
  margin-bottom: 80px;
}

.labs {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
}


.adv .labs {
  background-color: transparent;
  width: 380px;
  height: 300px;
  perspective: 1000px;
}

.labs-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

.labs-front {
  position: absolute;
  width: 100%;
  height: 100%;
}

.labs-front {
  background-color: #ffffff;
  color: black;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
}

.labs-front h5 {
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 30px;
}

.labs-front img {
  margin-bottom: 20px;
}

.Info {

  text-align: center;
}

.events p {
  line-height: 30px;
}



.Info h2 {
  margin-bottom: 20px;
}

.download img {
  margin-right: 20px;
}

.download {
  margin-bottom:80px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .download {
    display: block;
  }
}

.app {
  width: 135px;
  height: 45px;
}

.dapp {
  margin-right: 30px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 15px;
}

.contactdetails .flex {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contactdetails .img img {
  width: 100%;
  height: 60px;
}

.contactdetails .text-center,
.fillforms .text-center {
  margin-bottom: 15px;
}

.contactdetails .flexi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  justify-content: center;
}

.contactdetails .flexi i {
  padding: 0 5px;
  font-size: 20px;
}



.fillforms .form-group {
  margin-bottom: 1rem;
  display: flex;
}

.rtl .advertisers-form .form-group #name {
  margin-left: 10px;
  margin-right: 0px!important;
}

.rtl .contactus-form .form-group #name,
.rtl .contactus-form .form-group #phone {
  margin-left: 10px;
  margin-right: 0px!important;
}

.fillforms form {
  width: 85%;
  margin: 0 auto;
}

.fillforms .submit {
  margin-top: 50px;
}

@media (max-width: 1000px) {
  .fillforms form {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 425px) {
  .fillforms .form-group {
    display: block;
  }
  .fillforms .form-control {
    margin-bottom: 1rem;
  }
}
/*EOF contact us */

.hackora {
  color: #f58a2c;
}
/* login page */

#login {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

#login .btn-login {
  display: flex;
  position: relative;
  align-items: center;
  height: 50px;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #f26d22;
  color: #fff;
  transition: 0.3s;
  justify-content: center;
}

#login .btn-login i {
  position: absolute;
  right: 10px;
  vertical-align: middle;
  color: #fff;
}

#login .btn-login:active {
  background-color: #cc732a;
  transform: scale(.98);
}

#login .btn-ext {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #fff;
  text-align: left;
  color: #555;
  transition: 0.3s;
  border: 1px solid #babacc!important;
  box-shadow:0px 0px 10px 2px #e3e3e3;
}


#login .btn-ext:active {
  box-shadow: 0px 0px 2px 3px #f58529;
}

#login .container-fluid .row .background,
#login .container-fluid .row .container {
  height: 100vh;
}

#login .container-fluid .row .background {
  background: url(../img/assets/images/login.jpg) no-repeat;
  background-size: cover;
  padding-left: 80px;
}

#login .container-fluid .row .background .logo {
  position: relative;
  z-index: 99999;
}

#login .container-fluid .row .background .overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.575);
}

#login .container-fluid .row .background .intro {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#login .container-fluid .row .background .intro h6 {
  line-height: 28px;
}

#login .container-fluid .row .container {
  display: flex;
  justify-content: center;

}

#login .container-fluid .row .container .cardlogo {
  display: none;
}

#login .container-fluid .row .container .form-control {
  height: 45px;
  border-radius: 5px;
  /* box-shadow: 0px 0px 6px 2px #dadadab4; */
}

#login .container-fluid .row .container .form-control:focus {
  box-shadow: none;
}
/* login page */

@media (max-width: 768px) {
  #login h2 {
    font-size: 1.5rem;
  }
  #login h5 {
    font-size: 1rem;
  }
  #login .container-fluid .row .container .cardlogo {
    display: block;
    align-self: flex-start;
  }
  #login .container-fluid .row .container {
    position: absolute;
    top: 50%;
    right: 50%;
    height: 90%;
    width: 80%;
    border-radius: 30px;
    transform: translate(50%, -50%);
    box-shadow: 0px 0px 20px #444444c2;
    padding: 30px;
  }
  #login .container-fluid .row .background .logo {
    text-align: center;
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
  }
  #login .container-fluid .row .background .logo img {
    width: 150px;
  }
}

@media (max-width: 576px) {
  #login .container-fluid .row .container {
    height: 90%;
    width: 90%;
    padding: 10px;
  }
}

.blogpage {
  height: 75vh;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: url(../img/assets/images/blogheader.jpg) no-repeat;
  background-size: cover;
  color: #fff;
}

@media (max-width: 425px) {
  .blogpage {
    height: 95vh;
  }
}

.post_meta-wrap {
  border-top: 1px solid rgb(255, 255, 255);
  padding: 33px 0 33px;
  display: flex;
  justify-content: space-between;
}

.post_meta-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  text-transform: capitalize;
}

.post_meta-wrap .meta-wrapper:first-child>*:not(:last-child) {
  margin-right: 30px;
}

.meta-wrapper>* {
  display: inline-block;
}

.meta-wrapper * {
  line-height: 30px;
  color: inherit;
}

.post_date {
  margin-bottom: 30px;
  width: 60px;
  background-color: #f27131;
  min-width: fit-content;
  height: 60px;
  padding: 0 9px;
  border-radius: 5px;
  display: flex;
  font-size: 12px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  flex-direction: column;
  line-height: 1;
  font-weight: 700;
  justify-content: center;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 15%);
}

.entry-content {
  padding: 50px 0;
  width: 70%;
  margin: 0 auto;
}

.has-cyan-bluish-gray-color {
  margin-bottom: 50px;
}

.entry-content p {
  line-height: 30px;
  margin-bottom: 30px;
}

.share {
  font-weight: bold;
  margin-right: 20px;
}

.twitter-color {
  color: #009ded;
}

.fb-color {
  color: #1d4594;
}

.insta-color {
  color: rgb(202 39 141);
}

.red-color {
  color: red;
}

.entry-content a {
  margin-right: 15px;
  font-size: 25px;
}

.previous {
  color: #f27131;
  text-decoration: none;
  font-size: 20px !important;
  display: block;
  margin-top: 50px;
}

.previous:hover {
  text-decoration: none;
}

.bloglist span a {
  text-transform: uppercase;
  font-size: 12px;
}

.carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/*
@media (max-width: 768px) {
  .carousel-caption {
    bottom: 25%!important;
  }
}
*/

@media (max-width: 425px) {
  /*
  .carousel-caption {
    bottom: 5%!important;
  }
  */
  .carousel-caption h1 {
    font-size: 30px;
  }
  .carousel-caption p {
    display:none;
  }
  .carousel-indicators {
    bottom: 10px!important;
  }
  .carousel-item img {
    height:300px;
  }
}

.no-pad {
  padding-top: 0;
}

.welcome {
  background: url(../img/assets/images/login.jpg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100% 100%;
  flex: 1;
  top: 0;
  bottom: 0;
  right: 0;
}
.welcome h2,.welcome p{

  color:#fff !important;
}
  
  .cred{
    background:#fff;
  }
  .cred .logo {
    display: none;
  }
  .btn-ext img{
    width:20px;
    margin-right:10px;
  }
  .ora{
    color:#f16922;
  }
  .ora:hover{
    color:#f16922;
  }

.episodeslist {
  box-shadow: inset 20px 0px 20px 0px #fff, inset -20px 0px 20px -4px #fff;
  margin: 15px 0;
}

.latest .MagicScroll {
  padding: 15px 0;
}

.latest h1 {
	font-size: 25px;
}

/*
.episode-channel_view-thumb {
	max-width: 160px;
	max-height: 160px;
	width:100%;
	height:100%;
	display: block;
	float:left;
	overflow:hidden;
	margin: 0px 15px 20px;
}
  
.episodes-channel-mobile {
  margin-left: -10px !important;
}

.episode-channel_view-title {
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	line-height: 19px;
	height: 19px;
	white-space: nowrap;
}

.episode-channel_view_created {
	font-size:0.8rem;
}
*/

div.podcasters-icon {
	text-align: left;
}

.podcasters-heading {
	color: #000;
	font-weight: bold;
	text-align: center;
	margin-top:17px;
}
img.podcasters-icon {
	text-align: left;
	max-width: 30px;
}

.punchout {
	margin: 0 auto;
	font-size: 28px;
	background-color: #eeeded;
	text-align:center;
	padding: 22px;
	border-radius: 6px;
	box-shadow: 1px 1px #f0f0f0;
}

.punchout p {
  font-weight:bold;
  text-transform:uppercase;
  font-size:0.9em;
}

.hak-bg-color-primary {
	background-color: #f57a00;
}

.services-text {
  font-size: 18px;
}

.services-card {
  border: 0;
}

.hero-services > h1{
  text-align: center;
  font-size: 3.2rem;
  color: #FFF;
  font-weight: bold;
  padding-top: 160px;
}

.hero-services h2 {
  font-size:3.2rem;
  color: #FFF;
  font-weight: bold;
  text-align:center;
  padding-top:190px;
}

.package-header {
  font-weight: bold;
  text-align: left;
  margin-top: 17px;
  font-size: 16px;
}

@media (max-width:1024px) {
  .new-hakawati {
    font-size: 12px;
  }
  .sign-in-header {
    font-size: 1.5rem !important
  }
  .ride {
    width: 100% !important;
  }
  .accept-terms {
    font-size: 10px
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .form-width {

  }
  .package-header {
    font-size: 0.8rem;
  }
  .collapse-mobile {
    width: 104%;
  }
  .advertise-cards {
    margin: 20px 0px;
  }
}

.service-list {
  margin-bottom: 0;
  padding: 0;
  padding-left: 0.7rem;
  text-align: justify;
}

.service-icon {
 color: #666666;
}

.service-description {
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 0!important;
}

.advertise-cards {
  padding: 1rem;
}

.service-heading {
	color: #000;
	font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: auto;
  margin-top: 0px;
}

.advertisers-heading {
	color: #000;
	font-weight: bold;
	text-align: left;
	margin-top:17px;
}

.price-head {
  font-weight: 400 !important;
  color: #999999 !important;
  margin-top: 0 !important;
  font-size: 0.9rem !important;
}
.price {
  color: #f37322 !important;
  margin-top: 0 !important;
  font-size: 3rem !important;
  font-weight: 700 !important;
}

.package-link:hover {
  text-decoration: none;
}

.btn-collapse {
  text-align-last: justify;
  white-space: nowrap;
  padding-left: 0;
}

.btn-outline-warning {
  color: #f37322;
  border-color: #f37322;
}
.btn-outline-warning:hover {
  color: #fff;
  background-color: #f37322;
  border-color: #f37322;
}
.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show>.btn-outline-warning.dropdown-toggle {
    color: #fff;
    background-color: #f37322;
    border-color: #f37322;
}

.fa-check {
  color: #2cba54;
}

.card-heading {
  color: #333333 !important;
}

.btn-link:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f078";
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #adadad;
}

.btn-link:hover {
  text-decoration: none;
  background-color: #f4f4f4;
}

.btn-link:focus {
  text-decoration: none;
}

.creative-about {
	font-size: 1rem;
}
.creative-carousel-inner {
	height: 353px !important;
}

.creative-carousel-caption {
	top: 106px !important;
}

.creative-person {
	padding: 20px;
	border: 1px solid #ccc;
	margin: 20px;
	border-radius: 4px;
}
.creative-pic {
	width: 60px;
	height: 60px;
	float:right;
}
.creative-name {
	font-size: 1.3rem;
}
.creative-role {
	font-size: 0.7rem;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom:10px;
}
.creative-description {
	font-size: 0.8rem;
}

.team-card {
  height: 25em;
  background-color: #f7f7f7; 
  border-radius: 8px;
}

.team-pic {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin-top: -35%;
}

.shows img {
  width: 270px;
  height: 270px;
  border-radius: 4px;
}

@media (min-width: 1200px) {
  /*
  .shows .showslist {
    width: 1150px;
  }
  */
  .latest .latest-episodeslist {
    width: 1150px;
  }
}

@media (max-width: 1130px) {
  /*
  .shows .showslist {
    width: 950px;
  }
  */
  .latest .latest-episodeslist {
    width: 950px;
  }
}

@media (max-width: 770px) {
  .shows img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 500px) {
  .shows img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 430px) {
  /*
  .shows .showslist {
    width: 350px;
  }
  */
  .latest .latest-episodeslist {
    width: 350px;
  }
  .shows img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 400px) {
  /*
  .shows .showslist {
    width: 325px;
  }
  */
  .latest .latest-episodeslist {
    width: 325px;
  }
  .shows img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 365px) {
  /*
  .shows .showslist {
    width: 310px;
  }
  */
  .latest .latest-episodeslist {
    width: 310px;
  }
  .shows img {
    width: 108px;
    height: 108px;
  }
}

@media (max-width: 340px) {
  /*
  .shows .showslist {
    width: 260px;
  }
  */
  .latest .latest-episodeslist {
    width: 260px;
  }
  .shows img {
    width: 108px;
    height: 108px;
  }
}

.latest .container {
}

.latest h2 {
  padding-top: 20px!important;
}

.latest .episodelist-card:hover {
  color: #444444!important;
}

.latest .episode-date span {
  font-size: 0.65rem!important;
  margin-bottom: 0px!important;
  padding-bottom: 0px!important;
}

.latest .episode-title h1 {
  font-size: 20px!important;
  margin-bottom: 0px!important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.latest .channel-name p {
  font-size: 15px!important;
  margin-bottom: 0px!important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
}

.latest .episode-description p {
  font-size: 12px!important;
  line-height: 20px!important;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 60px;
  display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
}

@media (max-width: 500px) {
  .shows h2 {
    font-size: 18px;
  }
  .latest h2 {
    font-size: 18px;
  }
  .latest .episode-title h1 {
    font-size: 15px!important;
  }
  .latest .channel-name p {
    font-size: 12px!important;
  }
  .latest .episode-description p {
    font-size: 9px!important;
  }
  .latest .listen-now button {
    font-size: 10px;
  }
  .subscribe h2 {
    font-size: 18px;
  }
}
.subscribe ul {
  display: flex;
}

.back-yt {
  background-color:white;
}

.back-trans {
  background-color:transparent;
}

.channel-heading {
	border-bottom: 0px solid #ccc;
	margin-bottom: 0px;
	line-height: 2.5em;
	font-size: 25px;
}
.channel-heading .breadcrumb {
	background-color: transparent;
  margin-bottom:0px;
  padding-top:0px;
  padding-bottom:0px;
}

.channel-heading .breadcrumb i {
  margin-left:7px;
  margin-right:7px;
  color:#ccc;
  font-size:21px;
}

.channel-heading .breadcrumb li {
	color: #444444;
}

.flexx {
  display: flex;
}

.episodeslist {
  box-shadow: inset 20px 0px 20px 0px #fff, inset -20px 0px 20px -4px #fff;
  margin: 15px 0;
}

.podcastv2 .bttn-sec:hover {
  color: #f58529;
}

.podcastv2 .bttn-sec .fa:hover {
  color: #000;
}

.title-mobile {
  font-size: 12px;
}

.title-mobile .er {
  font-size: 14px;
  font-weight: 500;
}

#comments_wrapper::-webkit-scrollbar {
  /*width: 10px;*/
}

#comments_wrapper::-webkit-scrollbar-track {
  /*background: #eeeeee;*/
}

#comments_wrapper::-webkit-scrollbar-thumb {
  /*background: #f16922;*/
}

#comments_wrapper::-webkit-scrollbar-thumb:hover {
  /*background: #555;*/
}

#comments_wrapper .col-md-4 {
  color: #f16922;
}

#comments_wrapper {
  margin-bottom: 20px;
}

#remaining_episodes_wrapper::-webkit-scrollbar {
  /*width: 10px;*/
}

#remaining_episodes_wrapper::-webkit-scrollbar-track {
  /*background: #eeeeee;*/
}

#remaining_episodes_wrapper::-webkit-scrollbar-thumb {
  /*background: #f16922;*/
}

#remaining_episodes_wrapper::-webkit-scrollbar-thumb:hover {
  /*background: #555;*/
}

#remaining_episodes_wrapper {
  margin-bottom: 60px;
  height:500px;
  overflow-y:auto;
  overflow-x:hidden;
}

.jump-icons-section .episode_jump_icon {
  height: 30px;
}

.jump-icons-section {
  width: 95%;
  margin-left: 0px;
}

.breadcrumb {
	background-color: #FFF;
  padding: 0;
}

/**********************************************/
/* Discover heading */
/**********************************************/
.breadcrumb-item+.breadcrumb-item::before {
		content: '';
}
.discover-heading {
	border-bottom: 0px solid #ccc;
	margin-top: 20px;
	margin-bottom: 0px;
	line-height: 3rem;
	max-height: 3rem;
	font-size: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
	text-overflow: ellipsis;
  color: #f58a2c;
}
.discover-heading .breadcrumb {
	background-color: #FFF;
  margin-bottom:0px;
  padding-top:0px;
  padding-bottom:0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.discover-heading .breadcrumb i {
  margin-left:7px;
  margin-right:7px;
  color:#ccc;
  font-size:21px;
}
  
@media (max-width: 780px) {
.discover-heading {
    margin-bottom: 0px;
    line-height: 1.6rem;
    max-height: 3.2rem;
    font-size: 1rem;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

/**********************************************/
/* Categories Related */
/**********************************************/

.explore-category-link {
  border:1px solid #ccc;
  border-radius:4px;
  padding:20px 7px;
  margin:7px;
  height:150px;
  display:block;
  text-align:center;
  vertical-align:middle;
  font-size:1.4em;
}

.explore-category-link img {
  width:65px;
  height:65px;
}

.explore-download-to-mobile {
  border-left: 1px solid #ccc;
} 

.explore-category-section {
  margin-bottom:50px;
}

.browse-category {
  margin-bottom:36px;
}

.browse-category img {
  border-radius:4px;
  width:320px;
  height:320px;
}

.browse-channel-name {
  font-size:18px;
  font-weight:bold;
  color: #212529!important;
}

@media (max-width: 975px) {
  .browse-category img {
    height:170px;
    width:170px;
  }
  .category-channel-description {
    font-size:14px;  
  }
}

/**********************************************/
/* Dashboard Related */
/**********************************************/
.episode-link {
  color: #666666;
}
.episode-link:hover {
  color: #ff9933;
}
.channel-link {
  font-size: 1rem;
  color: #212529;
}
.channel-link:hover {
  color: #ff9933;
}
.episodes-number {
  font-size: 0.8rem;
  font-weight:100;
  color:#787878;
}
.channel-thumb {
	width: 160px;
	display: block;
	float:left;
	overflow:hidden;
	margin: 0px 15px 20px;
  border-radius: 4px;
}
.view-hakawati {
  font-size: 0.8rem;
  white-space: nowrap;
}
.show-edit-btn {
  color: #666666 !important;
}
.show-edit-btn:hover {
  color: #f37322 !important;
}
.show-edit-btn i {
  font-size:13px;
}
.chosen-container-multi .chosen-choices {
  border-radius: 8px !important;
}
@media (max-width: 700px) {
  .chosen-select {
    width: 325px !important;
  }
}
h1.channel-title {
	font-size: 14px;
	color: #000;
	font-weight: bold;
	margin: 0px;
	line-height: 19px;
	height: 19px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.btn-update-status {
  font-size:12px; 
  width: 100%
}
.edit-form {
  border-radius: 8px;
  color: #888888;
}
.btn-outline-warning {
  color: #f37322;
  border-color: #f37322;
}
.btn-outline-warning:hover {
  color: #fff;
  background-color: #f37322;
  border-color: #f37322;
}
.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show>.btn-outline-warning.dropdown-toggle {
    color: #fff;
    background-color: #f37322;
    border-color: #f37322;
}
.form-text {
  width: 32%; 
  cursor: pointer; 
  color:#f37322;
}
.delete-link:before {
  content: "\f1f8";
  font-size: 11px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}
.delete-link {
  font-size: 12px;
  color: #666 !important;
} 
.btn-warning {
  color: #fff;
  background-color: #f37322;
  border-color: #f37322;
}
.btn-warning:hover {
  color: #fff;
  background-color: #df712c;
  border-color: #df712c;
}
.btn-warning.focus, .btn-warning:focus {
  color: #fff;
  background-color: #f37322;
  border-color: #f37322;
  box-shadow: 0 0 0 0.2rem rgba(222,170,12,.5);
}
.btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show>.btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #f37322;
  border-color: #f37322;
}
.text-justify {
	text-align: justify;
}

.menu-separator-line {
	position: absolute;
	left: 0px;
	border-bottom: 2px solid orange;
}
.main_container {
	margin-top: 100px;
	background-color: #FFF;
}
.heading-language {
	margin-top: 11px;
}

.display-none {
  display: none;
}
@media (max-width: 700px) {
  .hak-navbar-dropdown {
    width: 98% !important;
  }
  .user-nav {
    margin-right: 1em;
  }
  .dropdown-mobile {
    display: block;
  }
  .js-NavbarDropdown {
    display: none;
  }
}
.hak-navbar-dropdown {
  width: 110%;
}

.hak-navbar-dropdown ul {
	background-color: white;
	list-style-type: none;
	padding: 0px;
	border-radius: 4px;
	margin-top: -7px;
}
.navbar-expand-lg .user-nav {
  flex-direction: column!important;
}
@media (max-width: 27em) {
	.hak-navbar-dropdown ul {
		margin-top:0px;
	}
}
.user-nav-link:active > i {
  color: #fff !important
}
.user-nav-link {
  color: #4a4a4a !important;
}
.dropdown-mobile {
  display: none;
}
.channel-dropzone {
	padding: 4px !important;
}
.channel-dropzone-style .dz-message {
	margin: 7px !important;
}
.image-form:hover {
  color: #ff9933;
}
.change-image {
  width: 100%; 
  cursor: pointer; 
  color:#f37322;
}
.change-image p {
  font-size: 0.5rem;
}
.main-container-margin {
  margin-top: 120px;
  padding-bottom: 40px;
}

.main-container-margin h2 {
  padding-top: 20px;
}
.upload-list-item {
  padding: .5rem;
}
.audio-title-ellipsis {
  white-space: nowrap;
  width: 102%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.audio-date {
  font-size: 10px;
}
.asset-list {
  font-size: 0.75rem;
  color: #212529;
}
.asset-list:hover {
  color: #f37322;
}
#user_image {
  height:128px;
  width:128px;
  border-radius:50%;
}
.navbar .dropdown-item i {
  /*color: #ff9933;*/
  color: #ff7f00;
}
.navbar .mobile-loggedin-user-links i {
  /*color: #ff9933;*/
  color: #ff7f00;
}
#channel_image {
  height:160px;
  width:160px;
  border-radius: 4px;
}
.create-show-form {
  border-radius: 8px; 
}
.resize-none {
  resize: none;
}
#episode_image {
  height:100px;
  width:100px;
  border-radius: 4px;
}
.text-20 {
  font-size: 20px;
}
.text-16 {
  font-size: 16px;
}
.text-14 {
  font-size: 14px;
}
.text-12 {
  font-size: 12px;
}
.text-10 {
  font-size: 10px;
}
.text-8 {
  font-size: 8px;
}
.text-6 {
  font-size: 6px;
}
.channel-title-episode {
  font-size: 1rem;
}
.channel-title-episode:hover {
  color: #ff9933 !important;
}
.remainig_episode_image {
  width:80px;
  height:80px;
  border-radius: 4px;
}
.subscription-title {
  font-size: 2rem;
}
.btn.focus, .btn:focus {
  box-shadow: unset !important; 
}
.subscription-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: justify;
}

h2.episode-title {
	font-size: 15px;
	font-weight: bold;
	color: #000;
  margin: 5px 0;
	line-height: 30px;
	height: 40px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
  width: 150%;
}

.total-episodes {
  font-size: 1em;
  color: #adadad;
}

.episode-card {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 40px;
}
.episode-author {
	font-size: 15px;
	color: #9f9f9f;
	font-weight: 400;
	line-height: 17px;
}
.episode-thumb-wrapper {
	display: block;
	float: left;
  margin-right: 11.7em;
  margin-bottom: 4em;
}

.episode-thumb {
	width: 320px;
	height: 350px;
	display: block;
	margin: 0px 15px 20px;
}
.episode-cover-img {
	border-radius:4px;
	width:100%;
}
.episode-cover-img-2 {
	border-radius:4px;
}
.episode-buttons:hover {
	cursor: pointer;
}

.episode-description {
	font-size: 1rem;
  margin: 5px 0;
}

.channel-description-section button { 
  color: #ff7f00!important;
}

.channel-description-collapsed {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-align: justify;
	font-size: 14px;
	line-height: 1.5rem;
}

.channel-description {
  text-align: justify;
	font-size: 14px;
	line-height: 1.5rem;
}

.episode-channel_view_created {
	font-size:0.8rem;
}


/**********************************************/
/* Episode Channel view Related */
/**********************************************/
h1.episode-channel_view-title {
	font-size: 14px;
	color: #000;
	font-weight: bold;
	margin-bottom: 0px!important;
	line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

h4.episode-channel_view-title {
  font-size: 1.5rem
}

.episode-channel_view-author {
	font-size: 12px;
	color: #9f9f9f;
	font-weight: 400;
	line-height: 17px;
}
.episode-thumb-channel_view-wrapper {
	width: 160px;
	height: 224px;
	display: block;
	float: left;
	margin: 0px 15px 20px;
}
.episode-channel_view-thumb {
	max-width: 160px;
	max-height: 160px;
	width:100%;
	height:100%;
	display: block;
	overflow:hidden;
	margin: 0px 0px 20px;
}
.episode-channel_view-cover-img {
	border-radius:4px;
	width:100%;
}

/***************************************************************/
.home-category-overview {
	margin-top: 10px;
	/**margin-left: 17px;*/
}
/***************************************************************/
.episode-episode_view-thumb {
	max-width: 80px;
	max-height: 80px;
	width: 100%;
	height: 100%;
	display: block;
	float:left;
	overflow:hidden;
	margin: 0px 15px 20px;
}
/**********************************************/
/* Category Related */
/**********************************************/
.category {
	font-size: 1.4em;
}
@media (max-width: 1000px) {
	.category {
		font-size: 1.0em;
	}
}
@media (max-width: 700px) {
  .episodes-channel-mobile {
    margin-left: -10px !important;
  }
  .footer-mobile {
    padding-left: 1em !important;
  }
  .podcast-commentary {
    margin-left: 75px;
    margin-bottom: 1em
  }

  .avid-pro-img {
    margin-left: 5em
  }

  .episode-thumb {
    width: 320px;
    height: 350px;
    display: block;
    margin: unset;
  }

  .episodes-in-channel {
    margin-left: -1em
  }

  .share-like-mobile {
    padding-top: 9px;
    margin-left: -5px
  }
}

.btn-like {
  background-color: white;
}
.btn-like:hover {
  color: white;
  background-color: #6c757d;
}

.breadcrumb-active {
  color: #f58a2c !important;
}

.btn-update-status {
  font-size:12px; 
  width: 100%
}
.comment-username {
  font-size:10px;
  margin-left:7px;
  color:#666;
  margin:2px;
}
.asset-list {
  font-size: 0.75rem;
  color: #212529;
}
.asset-list:hover {
  color: #f37322;
}
.card-status {
  font-size: 10px;
  padding: 5px;
}

/*@media (max-width: 768px) {*/
.grecaptcha-badge {
  display: none!important;
  /*visibility: hidden!important;*/
}
/*}*/

.btn-banner {
  color: white;
  border-color: white;
  background-image: transparent;
}
.btn-banner:hover {
  color: #f37322;
  border-color: #f37322;
  background-image: transparent;
}

.btn-outline-warning:disabled {
  color: grey;
  border-color: grey;
  background-color: transparent;
}

.banner-overlay {
  position: absolute;
  width: 100%;
  height: 400px;
  background: rgba(0, 0, 0, 0);
}

.banner-content {
  z-index: 999;
}


.breadcrumb {
  display: flex;
  border-radius: 10px;
  margin: auto;
  margin-top: 120px;
  text-align: center;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  z-index: 1;
}

.breadcrumb__item {
  height: 100%;
  background-color: white;
  color: #252525;
  font-family: 'Oswald', sans-serif;
  border-radius: 7px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  /*transform: skew(-21deg);*/
  /*box-shadow: 0 2px 5px rgba(0,0,0,0.26);*/
  box-shadow: inset 0px 0px 2px 0px rgb(0 0 0 / 26%);
  margin: 5px;
  padding: 10px 40px;
  cursor: pointer;
}

.breadcrumb__item:hover {
  color: #f58a2c;
}

.breadcrumb__inner {
  display: flex;
  flex-direction: column;
  margin: auto;
  z-index: 2;
  /*transform: skew(21deg);*/
}

.breadcrumb__title {
  font-size: 16px;
  white-space: break-spaces;
}

.breadcrumb__item-lastChild {
  color: #f58a2c;
  cursor: auto;
}

@media all and (max-width: 1000px) {
  .breadcrumb__title {
    font-size: 11px;
  }
  .breadcrumb__item {
    padding: 8px 30px;
  }
}

@media all and (max-width: 710px) {
  .breadcrumb__item {
    padding: 5px 20px;
  }
}

.rtl .chosen-container .chosen-choices li {
  float: right!important;
}
